Android Question Google Map Markers below the point

Andrew (Digitwell)

Well-Known Member
Licensed User
Longtime User
Hi all,
Does anyone know of a way to display Google Map Markers below or to the side of the point that is being marked?
The google Maps app seems to be able to do it, but I can't see how this was done from the API's.
upload_2019-3-27_9-35-44.png
 

DonManfred

Expert
Licensed User
Longtime User
Maybe this is of help

B4X:
Dim MarkerOptions1 As MarkerOptions
            MarkerOptions1.Initialize
            MarkerOptions1.Position2(mylat,mylon).Snippet("").Title("Hello World").Visible(True)
            MarkerOptions1.Icon(BitmapDescriptor1)
            MarkerOptions1.Anchor(0.5,0.5)
            Dim Marker1 As Marker=GoogleMapsExtras1.AddMarker(GoogleMap1, MarkerOptions1)
Try playing with the Anchor values....

Needs Googlemapextra.
 
Upvote 0
Top