Android Question Lat/Long and Intent

omoba

Active Member
Licensed User
Longtime User
Hi,

I am trying to plot/display multiple locations on the map --not sure if there is something in the forum already.

Eg, 4 lat/long coordinates, when I use intent I want to see all locations on the map

Currently using code below to display one lat/long coordinate.

Sub btnPlot_Click

Dim Intent1 As Intent
lat = lblLat.Text
lon = lblLon.Text

URI= "geo:" & lat & "," & lon & "?q=" & lat & "," & lon

Intent1.Initialize(Intent1.ACTION_VIEW,URI)
Intent1.SetComponent("googlemaps")
StartActivity(Intent1)

End Sub
 

Attachments

  • Plot.jpg
    Plot.jpg
    57 KB · Views: 213
Top