Heart rails 位置情報取得 APIをlaravelで使う
郵便番号から最寄り駅が現在地を取得できるサービス。
まずは、POST、GET通信をするためにヘッダに以下を読み込む
use Illuminate\Support\Facades\Http;
//郵便番号から住所を
//都道府県・最寄り駅を取得
$postal = 3790111;
$response = Http::get('http://geoapi.heartrails.com/api/json', [
'method' => 'searchByPostal',
'postal' => $postal
]);
$json = $response->json();
pr($json['response']['location'][0]['prefecture']);//都道府県名
pr($json['response']['location'][0]['city']);//町名
$response = Http::get('http://geoapi.heartrails.com/api/json', [
'method' => 'getStations',
'postal' => $postal
]);
$json = $response->json();
pr($json['response']['station'][0]['name']);//最寄り駅の名前
pr($json['response']['station'][0]['line']);//最寄り駅が何線か
pr($json['response']['station'][0]['y']);//最寄り駅の y 軸
pr($json['response']['station'][0]['x']);//最寄り駅の x 軸
以上
Author And Source
この問題について(Heart rails 位置情報取得 APIをlaravelで使う), 我々は、より多くの情報をここで見つけました https://qiita.com/ma7ma7pipipi/items/443a1832d2518af4835a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .