I CAN draw Google map circles.
But they are BLACK.
I can’t seem to use known Google maps circle properties:
my_color = '#f725f5'
circle = GoogleMap.Circle(
center=GoogleMap.LatLng(latitude, longitude),
radius=5000,
clickable=True,
# fillColor=my_color,
# fillOpacity=0.4
)
self.map.add_component(circle)
If I UNcomment the fillColor & fillOpacity Anvil doesn’t know about them.
Otherwise it works.