Android Question [SOLVED] GoogleMapsExtras - Any way to set marker ground anchor?

Andris

Active Member
Licensed User
Longtime User
I've created custom marker icons for a Google map application and now need to set the ground anchors so that the markers appear at the precise locations. For the GoogleMapsExtras library, I've seen various discussions referring to .SetGroundAnchor for B4i but not for B4A/B4X. It doesn't exist in GoogleMapsExtras for B4A. Any suggestions?
 
Last edited:

roumei

Active Member
Licensed User
You can use MarkerExtras (GoogleMapsExtras) for this:
B4X:
Dim mx As MarkerExtras
mx.SetAnchor(Marker, 0.5, 1.0)
 
Upvote 0
Top