In B4A i was able to change a bitmap and add a number, before i used this bitmap for a marker.
In B4I i tried this code:
but i got this error: Expected: UIView, object type: UIImage
So my question: is it possible and which type of object has to be used?
In B4I i tried this code:
B4X:
Dim Bitm As B4XBitmap = LoadBitmap(File.DirAssets,"Markerg.png")
Cv.Initialize(Bitm)
Cv.DrawCircle(25dip,39dip,14dip,Colors.DarkGray,True,0)
Dim f As Font=Font.CreateNewBold(14)
Cv.DrawText("1",25dip, 45dip, f,Colors.Yellow,"CENTER")
m1= gmap.AddMarker3(48.54, 16.132, "Marker Nr.1", Bitm)
but i got this error: Expected: UIView, object type: UIImage
So my question: is it possible and which type of object has to be used?