Google maps circle fillColor & fillOpacity properties missing?

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.

Solved!

fillColor -> fill_color
fillOpacity -> fill_opacity

I had only tried 2 or 3 of the obvious options . .

1 Like