• 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 shows null. What should I do to show the address for specific Lattitude and longitude using this techinique?