B4J Question google map problem

Nkalampika

Active Member
Licensed User
i'm having trouble with markers when a marker changes its position it leaves some sort of drags behind.
 

Nkalampika

Active Member
Licensed User
I corrected this problem by this trick:
If gmap.IsReady Then


m.Visible = False '<<<<<<<<<<<<<<<<<<<<<<<

Dim LL As LatLng


LL.Initialize (latitudes, longitudes)
m.Position = LL
AttachInfoWindow (m, "Nkala mpika raphael archangel")
'm.Title = "nkala mpika"
Sleep (60) '<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
m.Visible = True'<<<<<<<<<<<<<<<<<<<<<<<<<<<<
End If
:)
 
Upvote 0
Top