0

Any tips on how i can set Text Over android google maps (v2) default marker? for example i want to set the char 'A' inside(over) the marker (not snippest and not title).

roeybh
  • 69
  • 5

1 Answers1

0

You can use :

new MarkerOptions().icon(BitmapDescriptorFactory.fromBitmap( YOUR_MODIFIED_BITMAP ))

Where YOUR_MODIFIED_BITMAP is loaded bitmap with some custom content drawn with canvas on its top. Hope it helps.

Pawel Cala
  • 685
  • 9
  • 14