Android Question Draw Text in OsmDroid

js486dog

Active Member
Licensed User
Longtime User
Please I would like to draw the text in OsmDroid:

Dim Font As Typeface
Font = Typeface.DEFAULT_BOLD
Canvas.Initialize(MapView1)
Canvas.DrawColor(Colors.red)
Canvas.DrawText("AAAAAA",daj_lat,daj_lon,Font, 30, Colors.Blue, "CENTER")
MapView1.Invalidate


but it do not work. There is not text on daj_lat,daj_lon coordinate.


Please how can I draw the text in OsmDroid ?
 
Top