Android Question Cannot Show Label on GoogleMap

mauro vicamini

Active Member
Licensed User
Longtime User
Hi Evryone,
I cannot show label on google map position.
Here the code I use:
B4X:
Sub ShowPos()
    Dim Intent1 As Intent
    Intent1.Initialize(Intent1.ACTION_VIEW, "geo:0,0?q=45.5063434,9.1742423(my+work)" )
    'I've try both setComponent
    Intent1.SetComponent("googlemaps")
    'Intent1.SetComponent("com.google.android.apps.maps")
    
    StartActivity(Intent1)
End Sub
It show GoogleMaps at the right position but with no label near the marker.

What I'm doing wrong?

Thanks for the attention.
 

DonManfred

Expert
Licensed User
Longtime User
Upvote 0

MarkusR

Well-Known Member
Licensed User
Longtime User
Last edited:
Upvote 0
Top