Tagged Questions
0
votes
0answers
132 views
create polylines with different colors in leaflet
I have one function which creates poly line & adds that polyline to map
function makeRoute(e)
{
if(pointsSelection.length > 0)
{
pointsSelection.push(e.target.getLatLng());
...