I am using the built in cfajax proxy in ColdFusion 9.0.1 cfmap. For one address it is failing. I am not sure why because when I go to the regular map API on Google it can be seen.
Here is the link.
http://www.renaudconsulting.net/map/capital-corner-shopping-center/hybrid
I am using the built in cfajax proxy in ColdFusion 9.0.1 cfmap. For one
Share
Google Maps is different to the Maps API, and in particular the geocoder uses a lot more information to do its stuff. The API geocoder doesn’t know about 6505 Annapolis Road; the Maps geocoder could be using that address to find a record of the shopping centre and other associated data. The API geocoder does know about “Annapolis Road, Landover Hills, MD, 20784”.
Standard advice is not to use the client to geocode an address every time the page is viewed. Geocode the location yourself, store those coordinates, and use the coordinates to position a marker (retrieving them from the database in much the same way as you currently get your address).
Not only does doing that save Google’s resources, it makes the map load more quickly and it protects you against changes in the geocoder — it’s not unknown for addresses which are successfully found one day not to work the next.