0

我想从谷歌地图等地图服务中检索包含医院名称、长/纬度的列表。你能帮帮我吗?

4

1 回答 1

1

The google geocode API is the way to do this:

https://developers.google.com/maps/documentation/geocoding/

to get a list i.e. for all hospitals in Oregon, USA you can use the following request:

http://maps.googleapis.com/maps/api/geocode/json?address=hospital,oregon,usa&sensor=false

This results in a long response with all information about a dozen hospitals.

There a various ways to modify the results.

于 2012-08-28T08:11:33.610 回答