I'm trying to create a polyline icon with dashed symbol. But could'nt achieve it
https://developers.google.com/maps/documentation/javascript/examples/overlay-symbol-dashed ? --> something like this
Is it possible with the current version?
<agm-polyline>
<agm-polyline-point [latitude]="lat" [longitude]="lng">
</agm-polyline-point>
<agm-polyline-point
[latitude]="latA"
[longitude]="lngB"
>
</agm-polyline-point>
<agm-icon-sequence [strokeColor]="'black'" [repeat]="'10px'" [offset]="0" [strokeWeight]="3" [scale]="2" [strokeOpacity]="100" [path]="'M 0,-1 0,1'">
</agm-icon-sequence>
</agm-polyline>
This worked for me to achieve
Most helpful comment
This worked for me to achieve