Hi,
I am using Intent to link to Google Maps and I pass the lat,lng and marker label to google maps - this works fine. I now want to pass multiple markers with labels to the google map. Is this possible? If so how do I do it?
Thank You,
Regards,
Tom
I am using Intent to link to Google Maps and I pass the lat,lng and marker label to google maps - this works fine. I now want to pass multiple markers with labels to the google map. Is this possible? If so how do I do it?
B4X:
Dim Intent1 As Intent
Dim label_name As String = "Marker label name"
Dim URI As String = "geo:" & lat & "," & lng & "?q=" & lat & "," & lng & "(" & label_name & ")"
Intent1.Initialize(Intent1.ACTION_VIEW,URI)
Intent1.SetComponent("com.google.android.apps.maps")
StartActivity(Intent1)
Thank You,
Regards,
Tom