function StartGoogleMap() {var GoogleMapOptions = {mapTypeId: google.maps.MapTypeId.ROADMAP,scaleControl: true,};var GoogleMap = new google.maps.Map(document.getElementById('GoogleMapPZ'), GoogleMapOptions);var bounds = new google.maps.LatLngBounds(new google.maps.LatLng(48.8455652,12.6201733));bounds.extend(new google.maps.LatLng(48.8809149,12.5763302));bounds.extend(new google.maps.LatLng(48.8824638,12.5756882));GoogleMap.fitBounds(bounds);var DorfIconImage = new google.maps.MarkerImage ('https://maps.gstatic.com/mapfiles/ridefinder-images/mm_20_red.png', new google.maps.Size(12, 20), new google.maps.Point(0,0), new google.maps.Point(6,25));var MarkerDorf = new google.maps.Marker ({position: new google.maps.LatLng(48.8455652,12.6201733),map: GoogleMap,icon: DorfIconImage,animation: google.maps.Animation.DROP,});var InfoWindow = new google.maps.InfoWindow ({content: '',size: new google.maps.Size(250,250)}); google.maps.event.addListener (MarkerDorf, 'mouseover', function() { InfoWindow.setContent('
Aiterhofen
'); InfoWindow.open(GoogleMap,MarkerDorf); });var ShopIconImage = new google.maps.MarkerImage ('/GMimg/PZ.png', new google.maps.Size(25,35), new google.maps.Point(0,0), new google.maps.Point(13,35)); var Marker1 = new google.maps.Marker ({ position: new google.maps.LatLng(48.8809149,12.5763302), map: GoogleMap, icon: ShopIconImage,title: 'Der Pizza-Service Straubing' }); google.maps.event.addListener (Marker1, 'mouseover', function() { InfoWindow.setContent('
Der Pizza-Service StraubingMühlsteingasse 24
94315 Straubing
Mindestbestellwert: 20.00 €
'); InfoWindow.open (GoogleMap,Marker1); }); google.maps.event.addListener (Marker1, 'click', function() { CallShop('Straubing', '0'); }); google.maps.event.addListener (Marker1, 'mouseout', function() { InfoWindow.close(); }); var Marker2 = new google.maps.Marker ({ position: new google.maps.LatLng(48.8824638,12.5756882), map: GoogleMap, icon: ShopIconImage,title: 'Flying Pizza' }); google.maps.event.addListener (Marker2, 'mouseover', function() { InfoWindow.setContent('
Flying PizzaKrankenhausgasse 12
94315 Straubing
Liefergebühr: 1.50 €
Mindestbestellwert: 25.00 €
'); InfoWindow.open (GoogleMap,Marker2); }); google.maps.event.addListener (Marker2, 'click', function() { CallShop('FlyingPizzaStraubing', '0'); }); google.maps.event.addListener (Marker2, 'mouseout', function() { InfoWindow.close(); });}document.getElementById('GoogleMapsContainer').style.height='52px';if (! document.getElementById('GoogleMapPZ').innerHTML) { document.getElementById('GoogleMapBalken').addEventListener('click', function() { if (! document.getElementById('GoogleMapPZ').innerHTML) { StartGoogleMap(); } OpenCloseMap(); }); }else { StartGoogleMap(); }if(MapOffen == 1) { MapOffen=0; OpenCloseMap(1); }