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());
    map.addControl(new GMapTypeControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Pin';
    var markerColor = 'Nautica';
    icon.image = 'http://google.webassist.com/google/markers/pin/nautica.png';
    icon.shadow = 'http://google.webassist.com/google/markers/pin/shadow.png';
    icon.iconSize = new GSize(31,23);
    icon.shadowSize = new GSize(31,23);
    icon.iconAnchor = new GPoint(17,22);
    icon.infoWindowAnchor = new GPoint(17,0);
    icon.printImage = 'http://google.webassist.com/google/markers/pin/nautica.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/pin/nautica_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/pin/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/pin/nautica_transparent.png';

    var address_0 = {
      street: 'Bacino Stazione Marittima',
      city: '',
      state: '',
      zip: '', 
      country: 'Italy',
      infowindow: 'default',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Address:</strong><br />Stazione Marittima San Basilio<br />Venezia, Italy 30100 Italy</span>',
      full: 'Stazione Marittima San Basilio, Venezia, Italy, 30100, Italy',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_0.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          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(45.437972, 12.310309), 13);
        }
      }
    );

  }
}
