var geodecoder=null; var map=null; function load() { if (GBrowserIsCompatible()) { map = new GMap2(document.getElementById("map")); geocoder=new GClientGeocoder(); showAddress("Staszica, Leżajsk, PL"); map.setCenter(new GLatLng(50.26268, 22.418633), 13); map.addControl(new GLargeMapControl()); } } function showAddress(address){ geocoder.getLatLng( address, function(point){ map.setCenter(point,15); var marker=new GMarker(point); map.addOverlay(marker); } ); }