Android Question how to display multiple addresses in google map

Roberto P.

Well-Known Member
Licensed User
Longtime User
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
 

DonManfred

Expert
Licensed User
Longtime User
i dont know whether there is a way with google maps app started by an intent...

But using a webview with google maps and using the googlemapsextras lib you should be enabled to put infowindows and/or markers in the map
 
Upvote 0
Top