
var map;
var geocoder;

function loadMap() {
    map = new GMap2(document.getElementById("map_canvas"));
    map.setMapType(G_HYBRID_MAP);
    map.setUIToDefault();
    geocoder = new GClientGeocoder();
    geocoder.setBaseCountryCode('es')
    showAddress('calle del maestrat 71');
}

function showAddress(address) {
  geocoder.getLatLng(
    address,
    function(point) {
      if (!point) {
        alert(address + " not found");
      } else {
        map.setCenter(point, 15);
        var marker = new GMarker(point);
        map.addOverlay(marker);
        marker.openInfoWindowHtml("<b>Victor Lleó</b><br/>Calle del Maestrat, 71<br/>Tel.: + 00 34 96 153 44 50<br/>Fax: + 00 34 96 152 56 97<br/><a href='mailto:info@victorlleo.com'>info@victorlleo.com</a>");
      }
    }
  );
}
