我创建了一个获取 gpslocation 并创建 url 的 android 应用程序: https ://maps.googleapis.com/maps/api/geocode/xml?latlng=00.00,00.00&sensor=true
示例: https ://maps.googleapis.com/maps/api/geocode/xml?latlng=42.120636,-72.568731&sensor=true
这将返回(仅一部分):
<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> ...
我对这部分感兴趣:17 Dorchester Street, Springfield, Massachusetts 01109, United States
。
我想创建一个包含邮政编码“01109”的新网址,例如 http://mysite.com?process=01109并打开此站点。
谁能帮我!