Hi.. I did this for reverse geocoding. I changed the url to:
DECLARE @URL varchar(MAX)
SET @URL = 'http://maps.google.com/maps/api/geocode/xml?sensor=false&latlng=' +
CAST(@GPSLatitude AS VARCHAR(20)) +
',' + CAST(@GPSLongitude AS VARCHAR(20))
But it...