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 GLargeMapControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Google Traditional (flat)';
    var markerColor = 'Deep Jungle';
    icon.image = 'http://google.webassist.com/google/markers/traditionalflat/deepjungle.png';
    icon.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon.iconSize = new GSize(34,35);
    icon.shadowSize = new GSize(34,35);
    icon.iconAnchor = new GPoint(9,23);
    icon.infoWindowAnchor = new GPoint(19,0);
    icon.printImage = 'http://google.webassist.com/google/markers/traditionalflat/deepjungle.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/deepjungle_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalflat/deepjungle_transparent.png';

    var address_0 = {
      street: 'Carrer Longitudinal 5',
      city: 'Barcelona',
      state: 'Barcelona',
      zip: '08040',
      country: 'España',
      infowindow: 'default',
      infowindowtext: '<span style="color: #605342;"><strong style="font: bold 1.5em/1.2em Arial, Helvetica, sans-serif; color:#B1C000;">Barcelona</strong><br /><h3 style="font: bold 1.3em/1.38em Arial, Helvetica, sans-serif;">Guzmán Gastronomía</h3><br /><span style="font: normal 1.3em/1.38em Arial, Helvetica, sans-serif;">Mercabarna, Longitudinal 5 nº 53</span><br /><span style="font: normal 1.3em/1.38em Arial, Helvetica, sans-serif;">08040 - Barcelona</span></span>',
      full: 'Carrer Longitudinal 5, Barcelona, Barcelona, 08040, España',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_0.full,
      function(point) {
        if(point) {
          map.setCenter(point, 11);
          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(38.4419, -122.1419), 11);
        }
      }
    );

  }
}