function wagt_map_1() { if(GBrowserIsCompatible()) { if(!document.getElementById('wagt_map_1')) return false; var map = new GMap2(document.getElementById('wagt_map_1')); map.enableContinuousZoom(); map.enableDoubleClickZoom(); map.addControl(new GSmallMapControl()); var geocoder = new GClientGeocoder(); var icon = new GIcon(); var markerStyle = 'Push-Pin'; var markerColor = 'Pacifica'; icon.image = 'http://google.webassist.com/google/markers/pushpin/pacifica.png'; icon.shadow = 'http://google.webassist.com/google/markers/pushpin/shadow.png'; icon.iconSize = new GSize(40,41); icon.shadowSize = new GSize(40,41); icon.iconAnchor = new GPoint(7,38); icon.infoWindowAnchor = new GPoint(26,4); icon.printImage = 'http://google.webassist.com/google/markers/pushpin/pacifica.gif'; icon.mozPrintImage = 'http://google.webassist.com/google/markers/pushpin/pacifica_mozprint.png'; icon.printShadow = 'http://google.webassist.com/google/markers/pushpin/shadow.gif'; icon.transparent = 'http://google.webassist.com/google/markers/pushpin/pacifica_transparent.png'; var address_0 = { street: 'C/ Doctor Luis Rivera 94', city: 'Guardamar Del Segura', state: 'Alicante', zip: '03140', country: 'Spain', infowindow: 'custom', infowindowtext: 'Dirección:
C/ Doctor Luis Rivera 94
Guardamar Del Segura, Alicante 03140 Spain
', full: 'C/ Doctor Luis Rivera 94, Guardamar Del Segura, Alicante, 03140, Spain', isdefault: true }; geocoder.getLatLng ( address_0.full, function(point) { if(point) { map.setCenter(point, 16); var marker = new GMarker(point, icon); GEvent.addListener(marker, 'click', function() { marker.openInfoWindowHtml(address_0.infowindowtext); }); map.addOverlay(marker); marker.openInfoWindowHtml(address_0.infowindowtext); } else { map.setCenter(new GLatLng(43.229695, -2.845287), 16); } } ); } }