added first path and coordinates
This commit is contained in:
parent
108c69eb49
commit
2c36df3d6b
@ -8,11 +8,22 @@
|
|||||||
let div = null;
|
let div = null;
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
let map = L.map(div, {
|
let map = L.map(div, {
|
||||||
center: [17.385044, 78.486671],
|
center: [49.41607523, 8.67220049],
|
||||||
zoom: 10
|
zoom: 44
|
||||||
|
|
||||||
});
|
});
|
||||||
|
var latlngs = [
|
||||||
|
[49.41607523, 8.67220049],
|
||||||
|
[49.416224, 8.67174849],
|
||||||
|
[49.41601524,8.67263096],
|
||||||
|
[49.41615261,8.67304132],
|
||||||
|
[49.41592224,8.67258877]
|
||||||
|
];
|
||||||
|
|
||||||
L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png').addTo(map);
|
L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png').addTo(map);
|
||||||
|
//var marker = L.marker([49.41607523,8.67220049]).addTo(map);
|
||||||
|
var polyline = L.polyline(latlngs, {color: 'red'}).addTo(map);
|
||||||
|
map.fitBounds(polyline.getBounds());
|
||||||
});
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user