I have created a android app that gets the gpslocation and creates a url: https://maps.googleapis.com/maps/api/geocode/xml?latlng=00.00,00.00&sensor=true
Example: https://maps.googleapis.com/maps/api/geocode/xml?latlng=42.120636,-72.568731&sensor=true
This returns (only a part):
<GeocodeResponse>
<status>OK</status>
<result>
<type>street_address</type>
<formatted_address>
17 Dorchester Street, Springfield, Massachusetts 01109, United States
</formatted_address>
<address_component>
<long_name>17</long_name>
<short_name>17</short_name>
<type> ...
And i'm interested in this part: 17 Dorchester Street, Springfield, Massachusetts 01109, United States
.
And I would like to create a new url that contains the zip number code "01109" like http://mysite.com?process=01109 and open this site.
Can anyone help me!