window.mapLoadedCallback = function() {
var latLngs = [
[54.695152593, 25.2943746694],
[54.694695305, 25.2946723946],
[54.6947325083, 25.2950076708],
[54.6945798196, 25.2950814315],
[54.694638725, 25.2953925678],
[54.6947301831, 25.295344288],
[54.6947526601, 25.2954703518],
[54.6950961981, 25.2953080782],
[54.6951481272, 25.2956916341],
[54.6953116645, 25.2956299433],
[54.6953031389, 25.2955575236],
[54.6953496423, 25.2955253371],
];
var map = L.map('citynow_map').setView([54.6949575471, 25.2952546575], 13);
L.tileLayer('https://api.maptiler.com/maps/pastel/{z}/{x}/{y}.png?key=YwXY4ZdPMyu7tgIGUuPk',{
tileSize: 512,
zoomOffset: -1,
minZoom: 10,
zoom: 15,
attribution: '© MapTiler © OpenStreetMap contributors',
crossOrigin: true
}).addTo(map);
var polygon = L.polygon(latLngs, {color: '#6200ff'});
polygon.addTo(map);
map.setZoom(15);
}
window.loadCityNowMap = function(){
var script_tag = document.createElement('script');
script_tag.setAttribute("type","text/javascript");
script_tag.setAttribute("src","https://www.citynow.org/static/leaflet.js");
script_tag.onload = function() {
mapLoadedCallback();
};
(document.getElementsByTagName("head")[0] || document.documentElement).appendChild(script_tag);
}
window.onload = function(){
loadCityNowMap();
}