<embeded> Google Map </embeded> on your detail page.
Geocoder takes the address input and
Code:<script src="http://maps.google.com/maps?file=api&v=2&key=abcdefg" type="text/javascript"></script>Code:<script type="text/javascript"> //<![CDATA[ var geocoder; var map; var address = "<%$street%> <%$city%> <%$province%> <%$postal%>"; function load() { map = new GMap2(document.getElementById("map")); map.addControl(new GSmallMapControl()); map.addControl(new GMapTypeControl()); geocoder = new GClientGeocoder(); geocoder.getLocations(address, addToMap); } function addToMap(response) { place = response.Placemark[0]; point = new GLatLng(place.Point.coordinates[1], place.Point.coordinates[0]); map.setCenter(point, 13); marker = new GMarker(point); map.addOverlay(marker); } //]]> </script>Code:<body onload="load()" onunload="GUnload()">Sample Ad: Calgary Business Directory : Carmen's Meat & Deli (phone: (403) 946-0223)Code:<div id="map" style="width: 370px; height: 270px"></div>
WANT A YAHOO DIRECTIONS FORM ON YOUR SITE??
http://www.nicecoder.com/community/b...html#post22561




