I use the google map api and wondered if there was anything at all to create a dashed or dashed line stroke of the polyline. There would also be an easy way to create a curved line between two destination points, not a straight line: the code I'm drawing now has a straight gray line,
polyline = new google.maps.Polyline( { path: route, strokeColor: "#7d7d7d", strokeOpacity: 0.6, strokeWeight: 5 } ); polyline.setMap( map );
Any advice or help would be appreciated, thanks.
source share