if (document.getElementById("map") !== null) { let map = L.map("map", { attributionControl: false, zoomControl: false, }); map.setView([6.974937761495073, 80.11819078162874], 12); map.dragging.disable(); map.touchZoom.disable(); map.doubleClickZoom.disable(); map.scrollWheelZoom.disable(); map.boxZoom.disable(); map.keyboard.disable(); L.marker([6.975031890091555, 80.1180883647877], { icon: L.icon({ iconUrl: "../images/leaflet/map-marker-1.webp", iconSize: [32, 32], iconAnchor: [16, 32], }), }).addTo(map); L.tileLayer.provider("CartoDB.Positron").addTo(map); L.control .zoom({ zoomInTitle: "Zoom In", zoomOutTitle: "Zoom Out", position: "bottomleft", }) .addTo(map); }