/* Karte klein */ $(function() { $('#map_canvas').gmap({'center': '46.8502915,17.8791926', 'zoom': 12, 'callback': function() { var self = this; self.addMarker({'icon':'layout/pin_classic_orange-1.png', 'position': '47.502359,19.035187'}) .click(function() {window.location='budapest_sehenswertes.shtml';}); self.addMarker({'icon':'layout/pin_classic_orange-2.png', 'position': '47.50004,19.04271'}) .click(function() {window.location='budapest_sehenswertes.shtml';}); self.addMarker({'icon':'layout/pin_classic_orange-3.png', 'position': '47.527199,19.048362'}).click(function() { window.location='budapest_sehenswertes.shtml';}); self.addMarker({'icon':'layout/pin_classic_orange-4.png', 'position': '47.514954,19.081643'}).click(function() { window.location='budapest_sehenswertes.shtml';}); self.addMarker({'icon':'layout/pin_classic_orange-5.png', 'position': '47.513578,19.090848'}).click(function() { window.location='budapest_sehenswertes.shtml';}); self.addMarker({'icon':'layout/pin_classic_orange-6.png', 'position': '47.507055,19.045336'}).click(function() { window.location='budapest_sehenswertes.shtml';}); }}); }); /* Karte gross */ $(document).ready(function() { $("#getMapZoom").click(function(){ $("#map_outliner").show(); $("#map_zoom").fadeIn('slow'); $('#map_big').gmap({'center': '46.8502915,17.8791926', 'zoom': 13, 'callback': function() { var self = this; self.addMarker({'icon':'layout/pin_classic_orange-1.png', 'position': '47.502359,19.035187'}).click(function() { self.openInfoWindow({ 'content': '
Fischerbastei
Szentháromság tér 5,
1014 Budapest

Batthyány tér'}, this);}); self.addMarker({'icon':'layout/pin_classic_orange-2.png', 'position': '47.498778,19.04377'}).click(function() { self.openInfoWindow({ 'content': '
Kettenbrücke
Lánchid,
1011 Budapest'}, this);}); self.addMarker({'icon':'layout/pin_classic_orange-3.png', 'position': '47.527199,19.048362'}).click(function() { self.openInfoWindow({ 'content': '
Margareteninsel
Margitsziget,
1030 Budapest'}, this);}); self.addMarker({'icon':'layout/pin_classic_orange-4.png', 'position': '47.514954,19.081643'}).click(function() { self.openInfoWindow({ 'content': '
Heldenplatz
Hosök tere,
1046 Budapest'}, this);}); self.addMarker({'icon':'layout/pin_classic_orange-5.png', 'position': '47.513578,19.090848'}).click(function() { self.openInfoWindow({ 'content': '
Stadtwäldchen
Paál László utca,
1040 Budapest'}, this);}); self.addMarker({'icon':'layout/pin_classic_orange-6.png', 'position': '47.507055,19.045336'}).click(function() { self.openInfoWindow({ 'content': '
Parlament
Kossuth Lajos tér 1-3,
1055 Budapest
Tel.: +36 1 441 4000'}, this);}); }}); }); }); /* umgebender div zum schliessen */ jQuery("#map_outliner").click(function(){ $("#map_zoom").fadeOut('slow'); $("#map_outliner").hide(); });