0

テキスト検索とルートAPIを使用するJavaプログラムに取り組んでいますが、どういうわけかAPIが正しく機能しない場合があります。

例:の近くの「レストラン」を検索する必要がありHyundai Car Center,Sector 63, Noidaます。

このために、テキスト検索APIを使用して、必要なレストランのフォーマットされたアドレスを取得しました。ここで、方向APIを使用して場所間の最短時間と距離を計算したところ、結果が見つかりませんでした。

String addressFrom = "Mother Dairy, Bhim Nagri, Hauz Khas, New Delhi, India";
String addressTo = "Hyundai Car Center,Sector 63,Noida";
String urlString = "http://maps.googleapis.com/maps/api/directions/xml?sensor=true&origin="
                + addressFrom + "&destination=" + addressTo;
System.out.println(urlString);

次の出力が表示されます。

http://maps.googleapis.com/maps/api/directions/xml?sensor=true&origin=Mother+Dairy%2C+Bhim+Nagri%2C+Hauz+Khas%2C+New+Delhi%2C+India&destination=Hyundai+Car+Center%2CSector+63%2CNoida
<?xml version="1.0" encoding="UTF-8"?>
<DirectionsResponse>
 <status>NOT_FOUND</status>
</DirectionsResponse>
4

1 に答える 1

1

問題は、「Mother Dairy、Bhim Nagri、Hauz Khas、ニューデリー、インド」が見つからないことです。エンドポイントを (一度に 1 つずつ) Google Geocoder サンプル ページに入力することで、エンドポイントが見つかるかどうかをテストできます。

ただし、「Bhim Nagri、Hauz Khas、ニューデリー、インド」見つかり、マップ上で「Mother Dairy」とマークされている場所のかなり近くにあります。

于 2013-02-05T10:16:59.583 に答える