0

次の住所をジオコーディングしようとしています。

333111 ハイウェイ 2、スイート A
ニューポート、ワシントン州 99156

何らかの理由で、ジオコーダーは 2 つの場所 (ミネソタ州と実際のビジネスの近く)で応答しますが、どちらも正しくありません。

正しい地図の場所は、次のビジネス Web サイトに表示されます:
http://www.a-1team.net/index.php?option=com_content&view=article&id=81&Itemid=194

スイートの削除、略語の変更などを試みましたが、このアドレスを適切にジオコーディングするためにどのようにフォーマットすればよいかまだわかりません。

これはジオコーダー自体の問題ですか、それともこの特定の住所をフォーマットする方法の問題ですか? (同じプロセスの一環として適切にジオコーディングされた住所が他に約 200 あるので、それらを適切に送信していると確信しています)

4

2 に答える 2

3

When I use Google Maps to troubleshoot this, I too notice that typing in any form of the address you gave us was inaccurate. It would always take me near, but not exactly to the actual location.

However, when I examined the address Google Maps gave me, it stated that "Placement on map is approximate."

After that, I examined the website link you gave me, because surely they could not have it working, while we did not, right? Sure enough, when I examined the code for the embedded maps, here is what I find:

window.addEvent('load', function() { var yoomap1 = new YOOmaps('yoo-maps-1', 
{ lat:48.175156, lng:-117.063497...

Notice they give Latitude and Longitude coordinates.

IF you want to map this correctly, you can:

  • Do what the website you linked did, and use "lat:48.175156, lng:-117.063497"
  • Or, you could just use the address

1600 7th St, Newport, WA

While this address is not entirely accurate, it is very close to the actual address.

This could just possibly be a bug in Google Maps and its API. If anyone is more knowledgeable about this than me, please share.

于 2012-10-20T22:42:39.037 に答える
1

これはジオコーダーの問題のようです。マップメーカーを使用してこのビジネスを手動で追加することを提案するつもりでしたが(私は過去にこれを成功させました)、Google は既にそれを認識しており、正しい場所にプロットできるようです。

API のバグとして報告することを検討してください。それは他の人がしているように見えることです。

于 2012-10-29T14:22:04.357 に答える