xxxxxxxxxx
var map = L.map('map').setView([0, 0], 2);
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
const market = L.marker([0 , 0]).addTo(map);
navigator.geolocation.getCurrentPosition(function (pos){
const lat = pos.coords.latitude;
const lng = pos.coords.longitude;
market.setLatLng([lat , lng]).update();
map.setView([lat, lng],13)
})