I started working on google maps from 10 days ago. Am facing problem in google directions. I want google directions on each marker on map. I tried to implement last night but it giving me entitled Error 602. My code is as under:

var mapAll; var gdir; var geo; function loadAllMap(divMapId){ mapAll = new GMap2(document.getElementById(divMapId)); gdir = new GDirections(map, document.getElementById("directions")); GEvent.addListener(gdir, "load", onGDirectionsLoad); GEvent.addListener(gdir, "error", handleErrors); mapAll.addControl(new GLargeMapControl()); mapAll.addControl(new GMapTypeControl()); mapAll.setCenter(new GLatLng(45, -75), 7); mapAll.setMapType(G_NORMAL_MAP); mapAll.setUIToDefault(); } loadAllMap('AllPointsMap'); function showLocationOnMap(address, title, logo){ geo = new GClientGeocoder(); showAddress(address, title, logo); } function showAddress(address,title,logo) { geo.getLatLng( address, function(point) { mark =new GMarker(point); mapAll.addOverlay(mark); var markerHtml=''+title + '
' +address; var logoImgTag=''; markerHtml = markerHtml+''; markerHtml = markerHtml; markerHtml = markerHtml+""; markerHtml = markerHtml+" To here:"; markerHtml = markerHtml+""; markerHtml = markerHtml+""; markerHtml = markerHtml+""; markerHtml = markerHtml+" From here:"; markerHtml = markerHtml+""; markerHtml = markerHtml+""; markerHtml = markerHtml+""; markerHtml = markerHtml+""; if(logo!=null && logo!='') markerHtml=logoImgTag+markerHtml; GEvent.addListener(mark, "click", function() { this.openInfoWindowHtml(markerHtml); } ); } ); } function getVal(id) { return document.getElementById(id).value; } function setDirections(fromAddress, toAddress) { gdir.load("from: " + fromAddress + " to: " +toAddress, { "locale": "en_US" }); } 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)

in Body section :

my testing values are:

to here: San Francisco

from here: Mountain View

link|improve this question

43% accept rate
feedback

1 Answer

You should use just name town

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.