I have some google gecode example code I'm using to geocode via PHP/
SQL and I'm having some issues with accuracy. approx. 75% is
accurate, others are way off. For instance if I geocode
1236 C St
Sacramento, CA 95814
I get a marker placed clear up in Alaska!
I've also notice a few discrepancies between the example code I'm
using and google's own documentation and I wonder if this could be the
reason. The documentation states that geocode requests must be in the
following form:
http://maps.googleapis.com/maps/api/geocode/output?parameters
While the example software uses:
define("MAPS_HOST", "
maps.google.com");
.
.
.
$base_url = "http://" . MAPS_HOST . "/maps/geo?output=xml" . "&key=" .
KEY;
Which should I in fact use, and if this isn't the cause of my accuracy
issues, what can I do to help correct it?