Files
backend/public/version2/js/dashboard_pages/contact_us.js

20 lines
526 B
JavaScript

const MAP_ENDPOINT = "https://rmsmap.rmto.ir";
(() => {
const bounds = [
[42.9130026312, 75.6166317076],
[20.5782370061, 30.5092252948],
];
var map = L.map("map", {
maxBounds: bounds,
zoomControl: false,
attributionControl: false
}).setView([35.5468992, 51.7300532], 5);
L.tileLayer(MAP_ENDPOINT + "/141map/{z}/{x}/{y}.png").addTo(map);
L.marker([35.7093552, 51.4049619])
.addTo(map)
map.flyTo([35.7093552, 51.4049619], 16, { duration: .7 })
})()