1
選擇所有城市,我認爲一個可行的辦法是:如何使用谷歌地圖API V3
service.search({
types: ["city"],
bounds: founded_bounds
}, function(places, status) {});
- 選擇國家/國家界限使用通常的Geocoder service
- 讓place search request
但有在available places types中不是「城市」類型。如何獲得所選國家/州的所有城市?
UPD 由於bweaver,當地< =>城市
但現在我有另一個麻煩: 谷歌地圖的地方尋找工作真正荒唐!我做了一些小小的demo來顯示問題。我也會將它發佈到google api bugtracker。
*see console F12
Search for places in Hawaii (all types): 21
Search for places in Honolulu (all types): 22
這是不真實的。
(administrative_area_level_1 == state)和(locality == city)如果我沒有弄錯。 –