how do I display a google map, many addresses in a display?
I have to show you on a map the addresses of my clients.
To view an address using the following code:
Dim Longitude,Latitude As Double
Longitude=0
Latitude=0
Dim Intent1 As Intent
URI= "geo:" & Latitude & "," & Longitude & "?q=" & eCitta.Text & "," & eIndirizzo.Text
Intent1.Initialize(Intent1.ACTION_VIEW,URI)
Intent1.SetComponent("googlemaps")
StartActivity(Intent1)
thanks
I have to show you on a map the addresses of my clients.
To view an address using the following code:
Dim Longitude,Latitude As Double
Longitude=0
Latitude=0
Dim Intent1 As Intent
URI= "geo:" & Latitude & "," & Longitude & "?q=" & eCitta.Text & "," & eIndirizzo.Text
Intent1.Initialize(Intent1.ACTION_VIEW,URI)
Intent1.SetComponent("googlemaps")
StartActivity(Intent1)
thanks