B4J Question [SOLVED] Marker move in jgooglemaps...

Magma

Expert
Licensed User
Longtime User

Magma

Expert
Licensed User
Longtime User
moving-point.jpg attaching the googleexample wiht moving a marker... to see what i mean...
 

Attachments

  • jgooglemap-example-moving.zip
    2.7 KB · Views: 268
Upvote 0

Magma

Expert
Licensed User
Longtime User
Just found a better solution !!!!! :)

USE .visible /// first false / then change position / then make it visible again!!!!

B4X:
Sub bam_tick
    boom.Enabled=False
    mark(hr).Visible=false
    Dim NewPosition As LatLng
    NewPosition.Initialize(ooo,15)
    ooo=10+NewPosition.Latitude+0.0001
    m(1).Position=NewPosition
     Sleep(50)
     mark(hr).Visible=True
    boom.Enabled=True
End Sub

YES!
 
Upvote 0
Top