2022-09-29T01:35:57+03:00
2024-08-30T16:32:55+03:00
E
var map = $("#map_contact_1");
if (map.length > 0) {
map.gmap3({
center: [42.14126, 24.751134],
zoom: 18,
zoomControl: true,
mapTypeControl: true,
scrollwheel: false,
styles: [{
stylers: [{
hue: '#2b2b2b'
}, {
saturation: -100,
}, {
lightness: 10
}]
}],
}).marker([{
position: [42.14126, 24.751134],
icon: "https://sellavi-bulgaria.github.io/BG100130/images/map_marker.png"
}, ]).on({
click: function (circle, event) {
window.open('https://maps.apple.com/maps?q=' + event.latLng.lat() + ',' + event.latLng
.lng() + '(Алтънбаш)', '_blank');
}
});
}