5

Google は、Google Places API ( https://developers.google.com/places/documentation/ ) を提供して、ローカル リスティング情報を取得します。

例 : http://www.google.com/maps/place?source=uds&q=Priority+Computer+Solutions,&cid=13222445107995448542

リスティング情報を提供する Bing の同様のメカニズムはありますか? Bing を使用してみMaps REST Locations APIましたが、それでも電話番号、ビジネス URL などの情報が不足しています....

Bing でさえ、以下の URL を使用して適切な情報を提供します。

http://www.bing.com/local/details.aspx?lid=YN873x102579773&q=Ace%20Auto%20Detailing%2c%2020165&qt=yp&tid=6fa705c250b34f5184fae60

bing local には、上記の URL のような情報を提供する API はありますか?

基本的に、電話番号と URL を含むビジネス リスティング アドレスが必要です。Bingだけでやってみたい。

ありがとう!

4

2 に答える 2

0

https://msdn.microsoft.com/en-us/library/gg585126.aspx 地域別、ID がある場合は ID でローカル リストを照会できます。1) エリアごとにクエリを実行してエンティティの完全なリストを取得し、特定の ID の詳細を検索します。

<entry xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns="http://www.w3.org/2005/Atom">
  <id>https://spatial.virtualearth.net/REST/v1/data/20181f26d9e94c81acdf9496133d4f23/FourthCoffeeSample/FourthCoffeeShops('-22067')</id>
  <title type="text" />
  <updated>2011-01-11T02:22:18Z</updated>
  <content type="application/xml">
    <m:properties>
      <d:EntityID>-22067</d:EntityID>
      <d:Latitude m:type="Edm.Double">57.003766</d:Latitude>
      <d:Longitude m:type="Edm.Double">9.874434</d:Longitude>
      <d:AddressLine>Løven</d:AddressLine>
      <d:PrimaryCity>Aalborg</d:PrimaryCity>
      <d:Subdivision>Nordjyllands Amt</d:Subdivision>
      <d:PostalCode>9200</d:PostalCode>
      <d:Phone>0800-XXXXX</d:Phone>
      <d:SecondaryCity />
      <d:CountryRegion>Danmark</d:CountryRegion>
      <d:Name>Fourth Coffee Store #22067</d:Name>
      <d:DisplayName>Fourth Coffee Store #22067, Aalborg, Nordjyllands Amt, Danmark</d:DisplayName>
      <d:Manager>Alan Steiner</d:Manager>
      <d:StoreOpen>Y</d:StoreOpen>
      <d:StoreType>Drive-Thru</d:StoreType>
      <d:SeatingCapacity m:type="Edm.Int64" m:null="true" />
      <d:Open m:type="Edm.Int64">700</d:Open>
      <d:Close m:type="Edm.Int64">1800</d:Close>
      <d:IsWiFiHotSpot m:type="Edm.Boolean">0</d:IsWiFiHotSpot>
      <d:IsWheelchairAccessible m:type="Edm.Boolean">0</d:IsWheelchairAccessible>
      <d:AcceptsOnlineOrders m:type="Edm.Boolean">0</d:AcceptsOnlineOrders>
      <d:AcceptsCoffeeCards m:type="Edm.Boolean">1</d:AcceptsCoffeeCards>
      <d:CreatedDate m:type="Edm.DateTime">2010-11-03T00:00:00</d:CreatedDate>
      <d:LastUpdatedDate m:type="Edm.DateTime">2010-11-03T23:31:36</d:LastUpdatedDate>
    </m:properties>
  </content>
  <rights type="text">© 2011 Microsoft and its suppliers. This API and any results cannot be used or accessed without Microsoft’s express written permission.</rights>
</entry>
于 2015-05-18T13:19:34.320 に答える