|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/demo.aadityaguptaclasses.com/resources/js/parts/ |
Upload File : |
(function ($) {
"use strict";
const mapContainer = $('#contactMap');
if (mapContainer && mapContainer.length) {
const mapOption = {
dragging: false,
zoomControl: false,
scrollWheelZoom: false,
};
const lat = mapContainer.attr('data-latitude');
const lng = mapContainer.attr('data-longitude');
const zoom = mapContainer.attr('data-zoom');
const contactMap = L.map('contactMap', mapOption).setView([lat, lng], zoom);
L.tileLayer(leafletApiPath, {
maxZoom: 18,
tileSize: 512,
zoomOffset: -1,
attribution: '© <a target="_blank" rel="nofollow" href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>'
}).addTo(contactMap);
var myIcon = L.icon({
iconUrl: '/assets/default/img/location.png',
iconAnchor: [lat - 14, lng + 10],
});
L.marker([lat, lng], {color: '#43d477', icon: myIcon}).addTo(contactMap);
}
})(jQuery);