Google maps Google Places API中的缺失数据问题

Google maps Google Places API中的缺失数据问题,google-maps,google-maps-api-3,google-places-api,google-places,Google Maps,Google Maps Api 3,Google Places Api,Google Places,我在Google Places API中遇到了数据丢失问题!如下面的示例所示,Google Place附加信息(如手机号码、备用电话、传真电话)会显示在Google地图搜索结果中,但不会通过Google Places API显示 通过此链接,您可以注意到添加的备用电话号码, 流动电话: www.google.com/maps/place?cid=4256683212236351718&q=hamza+kamaleddine+home&hl=en&ved=0cbqgswaa&sa=X&ei=cO4

我在Google Places API中遇到了数据丢失问题!如下面的示例所示,Google Place附加信息(如手机号码、备用电话、传真电话)会显示在Google地图搜索结果中,但不会通过Google Places API显示

通过此链接,您可以注意到添加的备用电话号码, 流动电话:

www.google.com/maps/place?cid=4256683212236351718&q=hamza+kamaleddine+home&hl=en&ved=0cbqgswaa&sa=X&ei=cO4wT4arE8Wp8QOZqITuDA

但是使用Google Places API(使用下面的HTTP请求),我正在检索以下Json对象:

地点搜索请求:

地点详情要求:

位置详细信息响应(JSON):

正如您所注意到的,手机号码、备用号码和传真号码丢失了

请问如何解决这个问题


非常感谢

Google Places API目前不支持此功能

此处的Places API issue tracker中有此功能请求:

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

干杯


Chris

我也有类似的问题,但在这种情况下,郊区和城市缺少特定的地址。这当然应该得到PlacesAPI的支持吗?大多数地址都报告子本地性和本地性。我在这里提出了一个问题:
{ 
   "html_attributions" : [], 
   "result" : { 
      "address_components" : [ 
         { 
            "long_name" : "Aley", 
            "short_name" : "Aley", 
            "types" : [ "locality", "political" ] 
         }, 
         { 
            "long_name" : "LB", 
            "short_name" : "LB", 
            "types" : [ "country", "political" ] 
         }, 
         { 
            "long_name" : "1000", 
            "short_name" : "1000", 
            "types" : [ "postal_code" ] 
         } 
      ], 
      "formatted_address" : "Ain Al Jdide Road, طريق عين الجديدة, Aley, Lebanon", 
      "formatted_phone_number" : "70 975 590", 
      "geometry" : { 
         "location" : { 
            "lat" : 33.8113420, 
            "lng" : 35.619370 
         } 
      }, 
      "icon" : "http://maps.gstatic.com/mapfiles/place_api/icons/generic_business-71.png", 
      "id" : "a1063b63d187a576cf420e459aca9141e46bb8b6", 
      "international_phone_number" : "+961 70 975 590", 
      "name" : "Hamza Kamaleddine - Home", 
      "reference" : "...", 
      "types" : [ "establishment" ], 
      "url" : "http://maps.google.com/maps/place?cid=4256683212236351718", 
      "vicinity" : "Ain Al Jdide Road, طريق عين الجديدة, Aley", 
      "website" : "http://lb.linkedin.com/in/hkamaleddine" 
   }, 
   "status" : "OK" 

}