Hello,
in another thread I found the solution for creating permanent labels for marker in jGoogleMaps.
How can I change the color of the "text" displayed in this label?
Benedikt
in another thread I found the solution for creating permanent labels for marker in jGoogleMaps.
You can use this code:
B4X:Sub SetMarkerLabel(m As Marker, text As String) Dim r As Reflector 'jReflection library r.Target = m r.RunMethod4("invokeJavascript", Array("setLabel", Array(text)), Array As String("java.lang.String", "[Ljava.lang.Object;")) End Sub
How can I change the color of the "text" displayed in this label?
Benedikt