W jaki sposób mogę za pomocą map.setCenter() wyśrodkować mapę nie na podstawie współrzędnych, ale na podstawie adresu typu: "Kłodzko,Polska".
Z góry dziękuję.
Kod:
<style type="text/css"> body { font-family: Verdana, Arial, sans serif; font-size: 11px; margin: 2px; } table.directions th { background-color:#EEEEEE; } img { color: #000000; } </style> <script type="text/javascript"> var map; var gdir; var geocoder = null; // ? var addressMarker; // ? function initialize() { if (GBrowserIsCompatible()) { map = new GMap2(document.getElementById("map_canvas")); gdir = new GDirections(map, document.getElementById("directions")); GEvent.addListener(gdir, "load", onGDirectionsLoad); GEvent.addListener(gdir, "error", handleErrors); GEvent.addListener(gdir, "addoverlay", onGDirectionsAddOverlay); // added to trigger marker swap map.setCenter(new GLatLng(50.297046,16.652175),14); //Inital setCenter() added. Esa. map.addControl(new GLargeMapControl ()); map.addControl(new GOverviewMapControl()); map.addControl(new GScaleControl()); map.addControl(new GMapTypeControl()); map.hideControls(); GEvent.addListener(map, "mouseover", function(){map.showControls();}); GEvent.addListener(map, "mouseout", function(){map.hideControls();}); // setDirections("Warszawa", "Poland", "pl_PL"); } } function setDirections(fromAddress, toAddress, locale) { gdir.load("from: " + fromAddress + " to: " + toAddress, { "locale": locale , "getSteps":true}); } function handleErrors(){ if (gdir.getStatus().code == G_GEO_UNKNOWN_ADDRESS) alert("No corresponding geographic location could be found for one of the specified addresses. This may be due to the fact that the address is relatively new, or it may be incorrect.\nError code: " + gdir.getStatus().code); else if (gdir.getStatus().code == G_GEO_SERVER_ERROR) alert("A geocoding or directions request could not be successfully processed, yet the exact reason for the failure is not known.\n Error code: " + gdir.getStatus().code); else if (gdir.getStatus().code == G_GEO_MISSING_QUERY) alert("The HTTP q parameter was either missing or had no value. For geocoder requests, this means that an empty address was specified as input. For directions requests, this means that no query was specified in the input.\n Error code: " + gdir.getStatus().code); // else if (gdir.getStatus().code == G_UNAVAILABLE_ADDRESS) <--- Doc bug... this is either not defined, or Doc is wrong // alert("The geocode for the given address or the route for the given directions query cannot be returned due to legal or contractual reasons.\n Error code: " + gdir.getStatus().code); else if (gdir.getStatus().code == G_GEO_BAD_KEY) alert("The given key is either invalid or does not match the domain for which it was given. \n Error code: " + gdir.getStatus().code); else if (gdir.getStatus().code == G_GEO_BAD_REQUEST) alert("A directions request could not be successfully parsed.\n Error code: " + gdir.getStatus().code); else alert("An unknown error occurred."); } function onGDirectionsLoad(){ // Use this function to access information about the latest load() results. } /////////////////////////////////////////////////////////////////////// // The add-on code for draggable markers // Esa 2008 // var newMarkers = []; var latLngs = []; var icons = []; // Note the 'addoverlay' GEvent listener added inside initialize() function function onGDirectionsAddOverlay(){ // Remove the draggable markers from previous function call. for (var i=0; i<newMarkers.length; i++) {map.removeOverlay(newMarkers[i]); } // Loop through the markers and create draggable copies for (var i=0; i<=gdir.getNumRoutes(); i++) { var originalMarker = gdir.getMarker(i); latLngs[i] = originalMarker.getLatLng(); icons[i] = originalMarker.getIcon(); newMarkers[i] = new GMarker(latLngs[i],{icon:icons[i], draggable:true, title:'Draggable'}); map.addOverlay(newMarkers[i]); // Get the new waypoints from the newMarkers array and call loadFromWaypoints by dragend GEvent.addListener(newMarkers[i], "dragend", function() { var points = []; for (var i=0; i<newMarkers.length; i++) { points[i]= newMarkers[i].getLatLng(); } gdir.loadFromWaypoints(points); }); //Bind 'click' event to original hidden marker copyClick(newMarkers[i],originalMarker); // hide or remove the original marker //originalMarker.hide(); map.removeOverlay(originalMarker); } function copyClick(newMarker,oldMarker){ GEvent.addListener(newMarker, 'click', function() {GEvent.trigger(oldMarker,'click'); }); } // End of draggable markers code // Esa 2008 /////////////////////////////////////////////////////////////////////// } </script> </head> <body onload="initialize()" onunload="GUnload()"> <form action="#" onsubmit="setDirections(this.from.value, this.to.value, this.locale.value); return false"> <table> value="San Francisco"/></td> </select> <input name="submit" type="submit" value="Get Directions!" /> </table> </form> <br/> <table class="directions"> <tr> </tr> </table> </body> </html>