Re: Parsing a geocode response

2010-01-27 Thread Dave l
Not quite sure what you are doing but I needed to get lat & lon off an address for a dealer locator I was fixing last night and came up with a jquery version which might be simpler then doing what you are asking... using google geocoder http://www.deliciouscoding.com/post.cfm?entry=jquery-getti

Re: Parsing a geocode response

2010-01-26 Thread Paul Hastings
On 1/27/2010 12:36 PM, Les Irvin wrote: > (38.780144, -104.815308) actually that's a strange result format from the geocode API. not json, xml, kml nor csv. http://code.google.com/apis/maps/documentation/geocoding/index.html#Responses ~~

Re: Parsing a geocode response

2010-01-26 Thread Kym Kovan
Les Irvin wrote: > I'm rather lousy at the whole string parsing thing... Problem (for me) is that one cannot count on a set number of > digits returned after the decimal. > -- Yours, Kym Kovan mbcomms.net.au ~| Want

Re: Parsing a geocode response

2010-01-26 Thread Azadi Saryev
if you are parsing in in cf, then just treat it as multi-delimiter list: Azadi Saryev On 27/01/2010 13:36, Les Irvin wrote: > I'm rather lousy at the whole string parsing thing... how would I > separate this example response from the google geocoder api into two > values? Problem (for me

Parsing a geocode response

2010-01-26 Thread Les Irvin
I'm rather lousy at the whole string parsing thing... how would I separate this example response from the google geocoder api into two values? Problem (for me) is that one cannot count on a set number of digits returned after the decimal. (38.780144, -104.815308) Any help would be greatly appr