
robin
User
/ Moderator

Oct 12, 2011, 9:05 AM
Post #4 of 4
(4885 views)
Shortcut
|
|
Re: [nmsinc] Geocoder - Maps for multiple Addresses
[In reply to]
|
Can't Post
|
|
That gets much more tricky if they are all one record because it's not automatic. But you can still find the latitude and longitude of any address with the geocodeAddress() function. Here is an example:
list($myLat, $myLng) = geocodeAddress( "1313 South Harbor Boulevard, Anaheim, CA" ); echo $myLat . " " . $myLng; Hope that helps, Robin
|