几天前,我正在测试(使用)一个应用程序,在该应用程序中,我使用 google places API 获得了最近的地铁站,但是昨天和今天我再次测试了我的应用程序,现在我无法让地铁站靠近我。
我正在阅读 https://developers.google.com/maps/documentation/places/supported_types和 google 允许使用地铁站类型,当我使用医院、商店和公园应用程序等其他类型时!!!
我下载了这个-> http://github.com/brendannee/walksy
在我写的 Jscript 文件上
placesService.search({
radius: 4000
, location: trip.start
, types: [
'train_station'
, 'bus_station '
, 'subway_station'
]
}
代替
placesService.search({
radius: 5000
, location: trip.start
, types: [
'amusement_park'
, 'aquarium'
, 'bowling_alley'
, 'casino'
, 'cemetery'
, 'city_hall'
, 'embassy'
, 'museum'
, 'natural_feature'
, 'park'
, 'stadium'
, 'zoo'
, 'point_of_interest'
]
}
谁能告诉我我的错误是什么?
非常感谢。