MicheleBertoli / react-gmaps

A Google Maps component for React.js

Home Page:http://react-gmaps.herokuapp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Change Circle color

IronTony opened this issue · comments

Hello,

is there a way to change the Circle and the border color?
Best and thank you in advance.

Sure @IronTony,
all the options of the Circle class work.

<Circle
  fillColor="green"
  lat={coords.lat}
  lng={coords.lng}
  radius={500}
  strokeColor="blue"
/>

screen shot 2017-03-25 at 13 17 52

Awesome, thank you!
Another question I forgot. Is it also possibile to change the style of the external line in dashed, dotted style?

You can apply all the style changes allowed by the Google Maps SDK.