mirror of
https://github.com/derf/travelynx
synced 2024-12-02 09:19:11 +00:00
map: improve line color
This commit is contained in:
parent
d8fb9f6e98
commit
0ec82a5102
1 changed files with 6 additions and 5 deletions
|
@ -31,18 +31,19 @@ var routes = [
|
||||||
% }
|
% }
|
||||||
];
|
];
|
||||||
|
|
||||||
|
var pl = L.polyline(routes, {color: '#673ab7', opacity: 0.6}).addTo(map);
|
||||||
|
if (routes.length) {
|
||||||
|
map.fitBounds(pl.getBounds());
|
||||||
|
}
|
||||||
|
|
||||||
for (var station_id in stations) {
|
for (var station_id in stations) {
|
||||||
L.circle(stations[station_id][0], {
|
L.circle(stations[station_id][0], {
|
||||||
color: '#f03',
|
color: '#f03',
|
||||||
|
opacity: 0.7,
|
||||||
fillColor: '#f03',
|
fillColor: '#f03',
|
||||||
fillOpacity: 0.5,
|
fillOpacity: 0.5,
|
||||||
radius: 250
|
radius: 250
|
||||||
}).bindPopup(stations[station_id][1]).addTo(map);
|
}).bindPopup(stations[station_id][1]).addTo(map);
|
||||||
}
|
}
|
||||||
|
|
||||||
var pl = L.polyline(routes, {color: '#f09', opacity: 0.5}).addTo(map);
|
|
||||||
if (routes.length) {
|
|
||||||
map.fitBounds(pl.getBounds());
|
|
||||||
}
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue