Hey Guys,
I've got a place I want to add on my map at a particular lat / lng. I'd like to display that on my map when the activity starts. How would I do this?
Thanks.
Hey Guys,
I've got a place I want to add on my map at a particular lat / lng. I'd like to display that on my map when the activity starts. How would I do this?
Thanks.
This Google/Android tutorial should provide exactly the information you need.
Basically you create an custom ItemizedOverlay
, grab a list of overlays from the MapView
(getOverlays
), create some GeoPoint
s and your set.
The Google Maps library documentation is a great reference for map related questions.