Creating circles
Circles are pretty much markers with a radius. Use the circle component to create a circle.
<GMap
@lat="51.507568"
@lng="-0.127762"
@zoom=
@styles= as |map|>
<map.circle
@lat="51.507568"
@lng="-0.127762"
@radius=
@fillColor="green"
@fillOpacity=
@strokeColor="darkgreen"
@strokeOpacity=
@strokeWeight= />
</GMap>
Test Modify the radius and fill color of the circle.
Onto polylines!
Polylines ›