function initialize()
{
var mapPageElement = document.getElementById("mapa");
if(!mapPageElement)
return;
var map =
new google.maps.Map(
mapPageElement,
{
zoom: 17,
center: new google.maps.LatLng(51.11434011824965, 17.035105999999984),
mapTypeControlOptions:
{
style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
},
scaleControl: true,
mapTypeId: google.maps.MapTypeId.HYBRID
}
);
var kosciolInfoWindow =
new google.maps.InfoWindow(
{
content:
'
' +
'
' +
'
' +
'
' +
'
' +
'
Kościół Parafialny
' +
'
' +
'Kościół Uniwersytecki' +
'pl. Uniwersytecki 1' +
'50-137 Wrocław' +
'' +
'
' +
'
'
}
);
var kosciolMarker =
new google.maps.Marker(
{
position: new google.maps.LatLng(51.11384, 17.034958),
map: map,
title: "Kościół Uniwersytecki"
}
);
google.maps.event.addListener(
kosciolMarker,
'click',
function() { kosciolInfoWindow.open(map, kosciolMarker); }
);
var plebaniaInfoWindow =
new google.maps.InfoWindow(
{
content:
'' +
'
' +
'
' +
'
' +
'
' +
'
Plebania
' +
'
' +
'Parafia rzymskokatolicka pw. Najświętszego Imienia Jezus' +
'pl. Biskupa Nankiera 16a' +
'50-140 Wrocław' +
'telefon: (71) 344 94 23' +
'' +
'
' +
'
'
}
);
var plebaniaMarker =
new google.maps.Marker(
{
position: new google.maps.LatLng(51.112884, 17.036841),
map: map,
title: "Plebania"
}
);
google.maps.event.addListener(
plebaniaMarker,
'click',
function() { plebaniaInfoWindow.open(map, plebaniaMarker); }
);
var caritasInfoWindow =
new google.maps.InfoWindow(
{
content:
'' +
'
Biuro parafialnego zespołu Caritas
' +
'
Patrz też:
' +
'
' +
'
'
}
);
var caritasMarker =
new google.maps.Marker(
{
position: new google.maps.LatLng(51.1141524, 17.0355051),
map: map,
title: "Biuro parafialnego zespołu Caritas"
}
);
google.maps.event.addListener(
caritasMarker,
'click',
function() { caritasInfoWindow.open(map, caritasMarker); }
);
}
google.maps.event.addDomListener(window, 'load', initialize);