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={{9}}
  @styles={{this.myMapStyle}} as |map|>

  <map.circle
    @lat="51.507568"
    @lng="-0.127762"
    @radius={{1000}}
    @fillColor="green"
    @fillOpacity={{0.3}}
    @strokeColor="darkgreen"
    @strokeOpacity={{0.5}}
    @strokeWeight={{1}} />

</GMap>

Test Modify the radius and fill color of the circle.

Onto polylines!

Polylines ›