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(49.0129388,9.1525950));bounds.extend(new google.maps.LatLng(48.9474165,9.1464416));bounds.extend(new google.maps.LatLng(48.9609086,9.1851843));bounds.extend(new google.maps.LatLng(48.9475996,9.2426076));bounds.extend(new google.maps.LatLng(48.9511736,9.1345623));bounds.extend(new google.maps.LatLng(48.9551762,9.1346925));bounds.extend(new google.maps.LatLng(48.9982000,9.1484800));bounds.extend(new google.maps.LatLng(48.9466062,9.1296030));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(49.0129388,9.1525950),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('
Walheim
'); 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.9474165,9.1464416), map: GoogleMap, icon: ShopIconImage,title: 'Amore Pizza & China' }); google.maps.event.addListener (Marker1, 'mouseover', function() { InfoWindow.setContent('
Amore Pizza & ChinaBuchstr. 4
74321 Bietigheim-Bissingen
Mindestbestellwert: 14.00 €
'); InfoWindow.open (GoogleMap,Marker1); }); google.maps.event.addListener (Marker1, 'click', function() { CallShop('PizzeriaAmore', '0'); }); google.maps.event.addListener (Marker1, 'mouseout', function() { InfoWindow.close(); }); var Marker2 = new google.maps.Marker ({ position: new google.maps.LatLng(48.9609086,9.1851843), map: GoogleMap, icon: ShopIconImage,title: 'Star Pizza Ingersheim' }); google.maps.event.addListener (Marker2, 'mouseover', function() { InfoWindow.setContent('
Star Pizza IngersheimPleidelsheimer Str. 12
74379 Ingersheim
Mindestbestellwert: 15.00 €
'); InfoWindow.open (GoogleMap,Marker2); }); google.maps.event.addListener (Marker2, 'click', function() { CallShop('Duomo', '0'); }); google.maps.event.addListener (Marker2, 'mouseout', function() { InfoWindow.close(); }); var Marker3 = new google.maps.Marker ({ position: new google.maps.LatLng(48.9475996,9.2426076), map: GoogleMap, icon: ShopIconImage,title: 'Lindi`s La Luna' }); google.maps.event.addListener (Marker3, 'mouseover', function() { InfoWindow.setContent('
Lindi`s La LunaMarbacher Str. 2
71726 Benningen
Mindestbestellwert: 25.00 €
'); InfoWindow.open (GoogleMap,Marker3); }); google.maps.event.addListener (Marker3, 'click', function() { CallShop('LindisBenningen', '0'); }); google.maps.event.addListener (Marker3, 'mouseout', function() { InfoWindow.close(); }); var Marker4 = new google.maps.Marker ({ position: new google.maps.LatLng(48.9511736,9.1345623), map: GoogleMap, icon: ShopIconImage,title: 'Pizza Venedig Night' }); google.maps.event.addListener (Marker4, 'mouseover', function() { InfoWindow.setContent('
Pizza Venedig NightWilhelmstr. 11
74321 Bietigheim
Mindestbestellwert: 12.00 €
'); InfoWindow.open (GoogleMap,Marker4); }); google.maps.event.addListener (Marker4, 'click', function() { CallShop('VenedigBietigheim', '0'); }); google.maps.event.addListener (Marker4, 'mouseout', function() { InfoWindow.close(); }); var Marker5 = new google.maps.Marker ({ position: new google.maps.LatLng(48.9551762,9.1346925), map: GoogleMap, icon: ShopIconImage,title: 'Hot and Spicy' }); google.maps.event.addListener (Marker5, 'mouseover', function() { InfoWindow.setContent('
Hot and SpicyStuttgarterstr. 47
74321 Bietigheim
Mindestbestellwert: 12.00 €
'); InfoWindow.open (GoogleMap,Marker5); }); google.maps.event.addListener (Marker5, 'click', function() { CallShop('HotAndSpicyBietigheim', '0'); }); google.maps.event.addListener (Marker5, 'mouseout', function() { InfoWindow.close(); }); var Marker6 = new google.maps.Marker ({ position: new google.maps.LatLng(48.9982000,9.1484800), map: GoogleMap, icon: ShopIconImage,title: 'Day and Night' }); google.maps.event.addListener (Marker6, 'mouseover', function() { InfoWindow.setContent('
Day and NightJahnstr. 3
74354 Besigheim
Mindestbestellwert: 8.50 €
'); InfoWindow.open (GoogleMap,Marker6); }); google.maps.event.addListener (Marker6, 'click', function() { CallShop('Pizza4YouBesigheim', '0'); }); google.maps.event.addListener (Marker6, 'mouseout', function() { InfoWindow.close(); }); var Marker7 = new google.maps.Marker ({ position: new google.maps.LatLng(48.9466062,9.1296030), map: GoogleMap, icon: ShopIconImage,title: 'Pronta Pizza' }); google.maps.event.addListener (Marker7, 'mouseover', function() { InfoWindow.setContent('
Pronta PizzaBahnhofstr. 141
74321 Bietigheim-Bissingen
Mindestbestellwert: 20.00 €
'); InfoWindow.open (GoogleMap,Marker7); }); google.maps.event.addListener (Marker7, 'click', function() { CallShop('ProntaBietigheim', '0'); }); google.maps.event.addListener (Marker7, '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); }