|
|
@ -90,8 +90,10 @@ |
|
|
|
|
|
|
|
|
|
|
|
if (locations.length > 0) { |
|
|
|
if (locations.length > 0) { |
|
|
|
var polyline = L.polyline(locations.map(l => [l.latitude, l.longitude]), { |
|
|
|
var polyline = L.polyline(locations.map(l => [l.latitude, l.longitude]), { |
|
|
|
color: 'red' |
|
|
|
color: 'blue', |
|
|
|
|
|
|
|
opacity: 0.6, |
|
|
|
}).addTo(map); |
|
|
|
}).addTo(map); |
|
|
|
|
|
|
|
|
|
|
|
// zoom the map to the polyline |
|
|
|
// zoom the map to the polyline |
|
|
|
map.fitBounds(polyline.getBounds(), { |
|
|
|
map.fitBounds(polyline.getBounds(), { |
|
|
|
maxZoom : 13 |
|
|
|
maxZoom : 13 |
|
|
|