mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
722 B
JavaScript
23 lines
722 B
JavaScript
8 months ago
|
import L from 'leaflet';
|
||
|
|
||
|
var map,marker ;
|
||
|
window.addEventListener('load',function () {
|
||
|
const lat = parseFloat(document.querySelector('#maplat').value);
|
||
|
const lng = parseFloat(document.querySelector('#maplng').value);
|
||
|
const zoom = parseInt(document.querySelector('#mapzoom').value);
|
||
|
map = L.map(document.querySelector('#mapContainer')).setView([lat,lng], zoom);
|
||
|
|
||
|
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
||
|
attribution: '© openstreetmap',
|
||
|
attributionControl: false,
|
||
|
}).addTo(map);
|
||
|
|
||
|
map.attributionControl.setPrefix('xShop');
|
||
|
|
||
|
if (this.marker) {
|
||
|
map.removeLayer(marker);
|
||
|
}
|
||
|
|
||
|
marker = L.marker({lat: lat, lng: lng}).addTo(map);
|
||
|
});
|