var map = null; var geocoder = null; function initialize() { if (GBrowserIsCompatible()) { map = new GMap2(document.getElementById("map_canvas")); map.setCenter(new GLatLng(37.4419, -122.1419), 14); geocoder = new GClientGeocoder(); } } function showAddress(address,address_city , address_state , company) { address_found = false; if (GBrowserIsCompatible()) { geocoder = new GClientGeocoder(); if (geocoder) { geocoder.getLatLng( address, function(point) { if (!point) { //alert(address + " not found"); } else { address_found = true; var mapOptions = { googleBarOptions : { style : "new" } } map = new GMap2(document.getElementById("map_canvas"), mapOptions); map.setCenter(point, 14); map.setUIToDefault(); map.disableScrollWheelZoom(); map.enableGoogleBar(); var marker = new GMarker(point); map.addOverlay(marker); marker.openInfoWindowHtml(company); //map.addControl(new GSmallMapControl()); } } ); /* if (address_found == false){ geocoder.getLatLng( address_city, function(point) { if (!point) { //alert(address + " not found"); } else { address_found = true; var mapOptions = { googleBarOptions : { style : "new" } } //map = new GMap2(document.getElementById("map_canvas"), mapOptions); map.setCenter(point, 14); map.setUIToDefault(); map.disableScrollWheelZoom(); map.enableGoogleBar(); var marker = new GMarker(point); map.addOverlay(marker); marker.openInfoWindowHtml(company); } } ); }// end of city_address found if (address_found == false){ alert(address_found); geocoder.getLatLng( address_state, function(point) { if (!point) { //alert(address + " not found"); } else { address_found = true; var mapOptions = { googleBarOptions : { style : "new" } } //map = new GMap2(document.getElementById("map_canvas"), mapOptions); map.setCenter(point, 14); map.setUIToDefault(); map.disableScrollWheelZoom(); map.enableGoogleBar(); var marker = new GMarker(point); map.addOverlay(marker); marker.openInfoWindowHtml(company); //map.addControl(new GSmallMapControl()); } } ); }// end ofaddress_state found */ } // if (geocoder) } // if (GBrowserIsCompatible()) }