0

可能重复:
俄罗斯的 Google Places Api 地铁和火车站搜索停止工作

几天前,我正在测试(使用)一个应用程序,在该应用程序中,我使用 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'
  ]
}

谁能告诉我我的错误是什么?

非常感谢。

4

3 回答 3

0

此问题已在此处的 Google Places API 问题跟踪器上报告:http ://code.google.com/p/gmaps-api-issues/issues/detail?id=4061

请单击“星号”图标以获取有关未来更改的通知,并让我们知道您有兴趣看到它得到解决。

于 2012-04-10T04:27:31.547 回答
0

我正在测试这个:

https://maps.googleapis.com/maps/api/place/search/json?language=ru&location=4.647604837557583,-74.07900810241699&radius=1000&sensor=false&types=subway_station|train_station&key=xxxxxxxx

结果:

{ "html_attributions" : [], "results" : [], "status" : "REQUEST_DENIED" }

我认为现在谷歌不允许地铁站的地方服务。

在另一个帖子中有人说:

俄罗斯的 Google Places Api 地铁和火车站搜索停止工作

谢谢!!!

于 2012-04-09T19:36:26.393 回答
0

我想这可能是因为根据它的 Github 页面:

对于盯着旧金山的徒步旅行,兴趣点来自谷歌 Fusion 表,其中包含在加利福尼亚州旧金山精心挑选的兴趣点

尝试选择 SF 以外的地点——它对我有用。(也许您还应该添加transit_station)

于 2012-04-09T03:10:04.200 回答