// function changeCenter(map,breitengrad,laengengrad,zoom){ alert('BING'); gmap1.setCenter(new GLatLng(breitengrad, laengengrad),zoom); } function load() { if (GBrowserIsCompatible()) { function createMarker(point,html,oicon) { var marker = new GMarker(point,oicon); // marker.openInfoWindowHtml(html); // Zeige Info Fenster bei Klick GEvent.addListener(marker, 'mouseover', function() { //var tabs = []; //tabs.push(new GInfoWindowTab('Adresse', html)); //tabs.push(new showMapBlowup()); //marker.openInfoWindowTabsHtml(tabs); //marker.showMapBlowup(7); //marker.openInfoWindowHtml(html); }); // GEvent.addListener(marker, 'mouseout', function() { //marker.closeInfoWindow(); // }); return marker; } if (document.getElementById("gmap2")){ var gmap2 = new GMap2(document.getElementById("gmap2")); gmap2.setCenter(new GLatLng(49.67253, 9.638486), 10); /* Setzt eigenen Marker auf die Karte */ var gmapicon4 = new GIcon(); gmapicon4.image = ""; gmapicon4.iconSize = new GSize(20, 24); gmapicon4.iconAnchor = new GPoint(10, 24); gmapicon4.infoWindowAnchor = new GPoint(20, 1); gmapicon4.shadow = ""; gmapicon4.shadowSize = new GSize(90, 60); var pos4 = new GLatLng(49.67253, 9.638486) var html='ROFA FASHION GROUP
Oberes Tor 4
97956 Werbach

Zoom / Straßenansicht
 



'; point4=createMarker(pos4,html,gmapicon4, gmap2); gmap2.addOverlay(point4); } } } //