Batch Geocoder API 開発者ガイド

リバース ジオ コーディング

ユーザーが、一連の場所のデータに対応するアドレスのセットを要求しようとしています。

リクエスト

以下の POST リクエスト には、 mode=retrieveAddresses リクエストがリバースジオ コーディング用であることを示すキー / 値のペアが含まれています。 HTTP-Header も指定 Content-Type=text/plainします。

https://batch.geocoder.ls.hereapi.com/6.2/jobs
?apiKey={YOUR_API_KEY}
&action=run
&header=true
&indelim=%7C
&outdelim=%7C
&outcols=displayLatitude%2CdisplayLongitude%2ClocationLabel%2ChouseNumber%2Cstreet%2Cdistrict%2Ccity%2CpostalCode%2Ccounty%2Cstate%2Ccountry
&outputCombined=false
&mode=retrieveAddresses
注 : この例 では、 HERE API キー を使用してリクエストを認証します。 使用可能な認証オプションについて は、『 Identity & Access Management 開発者ガイド』を参照してください。
この POST ボディ には次の場所が含まれています
recId|prox
0001|52.505308,13.327739,250
0002|49.917257,8.486488,250
0003|51.119593,7.399356,250
0004|49.20012,8.12326,250
0005|51.116845,7.397318,250
0006|52.265938,7.976922,250
0007|48.143131,10.829233,250
0008|51.770237,7.442682,250
0009|51.511877,7.461382,250
0010|52.53,13.391389,250

レスポンス

応答には RequestID が含まれています。 RequestID を、このジョブで実行するすべてのアクションに使用します。

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns2:SearchBatch xmlns:ns2="http://www.navteq.com/lbsp/Search-Batch/1">
  <Response>
    <MetaInfo>
      <RequestId>E2bc948zBsMCG4QclFKCq3tddWYCsE9g</RequestId>
    </MetaInfo>
    <Status>accepted</Status>
    <TotalCount>0</TotalCount>
    <ValidCount>0</ValidCount>
    <InvalidCount>0</InvalidCount>
    <ProcessedCount>0</ProcessedCount>
    <PendingCount>0</PendingCount>
    <SuccessCount>0</SuccessCount>
    <ErrorCount>0</ErrorCount>
  </Response>
</ns2:SearchBatch>

ジョブ要求の結果を zip ファイルでダウンロードできます。 結果のダウンロード方法の例について は、「ジョブの結果を取得」を参照してください。