Skontaktuj się z nami
dane firmy
Poltra Sp. z o.o.
ul. Grabskiego 42
37-450 Stalowa Wola
NIP 865 22 31 787
REGON 831205730
SEKRETARIAT
function initMap() {
const map = new google.maps.Map(document.getElementById("map"), {
zoom: 6,
center: { lat: 52.0, lng: 19.0 },
minZoom: 5,
maxZoom: 12,
styles: [
{
featureType: "administrative.country",
elementType: "geometry",
stylers: [{ visibility: "on" }, { color: "#000000" }]
},
{
featureType: "all",
elementType: "geometry",
stylers: [{ saturation: -100 }, { lightness: 80 }]
},
{
featureType: "water",
elementType: "geometry",
stylers: [{ color: "#e0e0e0" }]
}
]
});
const markers = [
{ position: { lat: 50.573, lng: 22.048 }, title: "Siedziba główna" }
];
const iconUrl = "https://poltra.pl/wp-content/uploads/2023/07/favicon.svg";
markers.forEach(m => {
new google.maps.Marker({
position: m.position,
map: map,
title: m.title,
icon: {
url: iconUrl,
scaledSize: new google.maps.Size(36, 36)
}
});
});
}