Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Geocode Addresses in T-SQL

    thanx for the reply. I solved it with a little modification before seeing the reply... anywz, thnx again...:-)

  • RE: Geocode Addresses in T-SQL

    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...

Viewing 2 posts - 1 through 2 (of 2 total)