Plot A Different Marker For Each Place Googlemap V2 Android
I have managed to place a marker for each item in my database using their stored title and coordinates. I am now trying to change the content of each InfoWindow so that it shows in
Solution 1:
Google covers most of what you want to do in their Google Maps API v2 documentation.
Info Window Customization and Customizing a MArker have code example how-to's. For your marker icons, are they just a different colour marker or are they completely customized? Storing them in drawable is ok and can be accessed easily using
.icon(BitmapDescriptorFactory.fromResource(R.drawable.your_custom_marker))
when creating/adding the Marker.
Post a Comment for "Plot A Different Marker For Each Place Googlemap V2 Android"