I am building a Google maps app. I have different objects with coordinates but each object has a unique int value which I would like to be shown next to a marker. For example for an object with specific coordinates and value 123, I would like to put on the map(at those coords) the marker and next to it the value 123.
I've been doing some research and the only way I found plausible is to use an Android API to create your own bitmap image from a base image and some string that is "attached" and use that for the marker icon.
Is there a better way of doing that?
On the same topic, can you show the title of every marker on your map at the same time?