Hi, I am building a directory with a google map, and geocoding the addresses and saving the coordinates in database table (PHP and MySQL).
Everything works as expected, except when I try geocoding street intersections, using the ampersand (&). The request does not fail, but returns a set of coordinates that are off (usually not by much), it seems that only the first street address is taken into account. Please note: - I have tried replacing with "and", but it still does not work - I have also tried: removing ampersand, replacing with "/", "," - All requests are done with url encoded strings, e.g. "&" = "%26" in the url - I am using this url: http://maps.google.com/maps/geo?q=[Street Addresss]&key=[my google map key]&sensor=false&format=json and requesting using PHP cURL. - The map displays correct result when using the exact string with http://www.google.com.au/maps Any help would be much appreciated, thank you. -- You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.
