premiumroute_mbn/drive_tsp
自動車ルート検索2.0(最適巡回考慮)
複数地点の緯度経度を最適な順番で経由するための自動車の経路を返却します。
時空間データベースを最大限に活用し、
鮮度、精度が向上し対象道路を拡充したネットワークデータとそれを用いた経路探索エンジンにより
従来に比べて現実世界に即したきめ細やかなルート探索を可能とします。
指定する地点の緯度経度や数によって処理時間が異なります。
指定可能な上限内であってもタイムアウトが発生する可能性がございます。
※本APIを利用するには別途契約が必要です。
HTTP request method
POST/GET
ContentType
application/x-www-form-urlencoded
Parameters
*requiredは必須
| 名前 | 説明 |
|---|---|
| search_type*required integer |
探索タイプ ルート探索の探索タイプを指定します。(1のみ指定可能) 1
推奨
|
| from*required array[number] ※カンマ区切り |
出発地点 検索するルートの出発地点を経度緯度のカンマ区切りで指定します。 経度,緯度 例)139.77165,35.6797777 |
| to*required array[number] ※カンマ区切り |
終了地点 検索するルートの終了地点を経度緯度のカンマ区切りで指定します。 経度,緯度 例)139.77165,35.6797777 |
| waypoint array[number] ※カンマ区切り |
経由地点 検索するルートの経由地点を経度緯度のカンマ区切りで指定します。 指定できる経由地点数の上限は100点となります。 3点指定する場合の例: 139.75595083333,35.664024722222,139.75588416667,35.663896944444,139.7558175,35.663763611111 |
| llunit string default dec |
緯度経度形式 緯度経度形式を指定します。 dec
10進度形式
msec
ミリ秒形式
|
| datum string default JGD |
測地系 入出力緯度経度の測地系を指定します。 JGD
世界測地系
TOKYO
日本測地系
TOKYO_NAVI
日本測地系(ゼンリン ナビ地図)
|
| from_type integer default 0 |
出発地点引き込み優先タイプ 引き込みを優先する出発地点の道路を指定します。 0
一般道路を優先して引き込む
1
高速道路を優先して引き込む
2
全ての道路に引き込む
|
| to_type integer default 0 |
終了点引き込み優先タイプ 引き込みを優先する終了地点の道路を指定します。 0
一般道路を優先して引き込む
1
高速道路を優先して引き込む
2
全ての道路に引き込む
|
| waypoint_type array[integer] default 0 ※カンマ区切り |
経由地点引き込み優先タイプ waypointで指定した各経由地点の引き込みタイプを","で値を区切って指定します 本パラメータを指定する場合、waypointと指定数を合わせる必要があります waypointが3点指定されたときの例: 0,0,2 0
一般道路を優先して引き込む
1
高速道路を優先して引き込む
2
全ての道路に引き込む
|
| height integer |
車高 車高を0~2540の整数で指定します。(単位:cm) 本パラメータを指定すると道路情報を考慮し、高さ制限規制情報を加味したルート検索を行います。 入力された車高値が現地の規制値より10(cm)以上小さい場合は通行できると判定されます。 無指定時は高さ制限規制情報は加味されません。 ※目的地までの通行可能な経路がない場合、通行不可な道路を含む経路を返します。 |
| width integer |
車幅 車幅を0~2540の整数で指定します。(単位:cm) 本パラメータを指定すると道路情報を考慮し、車幅による車両制限を加味したルート検索を行います。 入力された車幅値が現地の規制値より10(cm)以上小さい場合は通行できると判定されます。 無指定時は車幅による車両制限は加味されません。 ※目的地までの通行可能な経路がない場合、通行不可な道路を含む経路を返します。 |
| weight integer |
車重 車重を0~50000の整数で指定します。(単位:kg) 本パラメータを指定すると道路情報を考慮し、車重による車両制限を加味したルート検索を行います。 入力された車重値が現地の規制値より100(kg)以上小さい場合は通行できると判定されます。 無指定時は車重による車両制限は加味されません。 ※目的地までの通行可能な経路がない場合、通行不可な道路を含む経路を返します。 |
| toll_type string default normal |
料金計算用車種 指定された車種で通行料金算出を行います。 本パラメータで指定された値はルート検索時の車種別規制考慮には影響しません。 light
軽自動車
normal
普通車
middle
中型車
large
大型車
big
特大車
|
| regulation_type integer default 122200 |
ルート探索用車種 指定された車種の規制情報を考慮してルート探索を行います。 本パラメータで指定された値は料金算出には影響しません。
|
| heading integer |
進行方向 進行方向の角度を指定します。 角度は真北を0度とし、0~359までの整数で指定します。 未指定の場合、進行方向は無視されます。 また、範囲外の値を指定した場合、エラーとなります。 |
| pass_left integer default 0 |
左横付け考慮指定 開始地点、経由地、終了地点に左横付けしたルートを作成するかどうかを指定します。 ルートによっては左横付けしない場合もあります。 0
横付けを考慮しない。
1
推奨(レーン数を考慮した横付けをする)
2
必須(必ず横付けする)
|
| two_uturn boolean default false |
2段階右折でのUターン回避 近距離で2度の右折をする地点を回避するかどうかを指定します。 true
利用する
false
利用しない
|
| smartic boolean default false |
スマートIC/ETC専用料金所利用指定 スマートIC/ETC専用料金所を利用するかどうかを指定します。 true
利用する
false
利用しない
|
| ferry boolean default true |
フェリー利用指定 フェリーを利用するかどうかを指定します。 falseを指定した場合でもフェリーを利用しないと終了地点に到達不可能な場合は、フェリーを利用するルートを作成します。 true
利用する
false
利用しない
|
| vics boolean default false |
premium
VICS情報考慮指定VICS情報考慮を利用するかどうかを指定します。 規制や渋滞を加味した探索をします。 ※departure_timeを指定し、本パラメータにtrueを指定した場合、エラーとなります。 true
利用する
false
利用しない
|
| avoid_area string |
迂回エリア 迂回するエリアを経度緯度矩形範囲で指定します。 南西経度,南西緯度,北東経度,北東緯度で指定します。 10件まで複数指定可能です。 1辺の長さが10kmを超える矩形が指定された場合、エラーとなります。 ※該当エリアを通過しないとルートが作成できない場合、該当エリアを迂回せず通過するルートが作成されます。 ※緯度経度形式(llunit)で指定した値と異なる形式の緯度経度を指定した場合、動作保証対象外です。 |
| time_restriction boolean default false |
規制考慮 規制情報を考慮してルート検索を行います。 departure_timeで指定された日時の規制を考慮します。 departure_timeの指定がない場合、現在日時で動作します。 true
利用する
false
利用しない
|
| departure_time string default 現在日時 |
出発時刻指定 出発時刻を日時で指定します。 "YYYYMMDDhhmmss"で指定します。 時刻(hh)以降は省略可能です。 規制考慮(time_restriction)と時刻を加味したETC割引料金計算で使用します。 |
| waypoint_arrival_time string |
到着希望日時 経由地点毎の到着希望日時を日時で指定します。 経由地1の到着希望日時・開始,経由地1の到着希望日時・終了,経由地2の到着希望日時・開始,経由地2の到着希望日時・終了,…の順番で指定します。 日時の形式はYYYYMMDDhhmmです。 waypointで指定した経由地数×2までの件数を指定可能です。それ以上指定した場合はエラーとなります。 必ず開始日時と終了日時をセットで指定してください。片方のみ指定した場合はエラーとなります。 departure_timeより前の日時を指定した場合はエラーとなります。 departure_timeを指定せずに本パラメータを指定した場合はエラーとなります。 終了日時に開始日時より前の日時を指定した場合はエラーとなります。 例) 前提:経由地を3件指定 ・全ての経由地に開始/終了日時を指定する場合 202204271000,202204271100,202204271100,202204271200,202204271200,202204271300 ・経由地1と3に開始/終了日時を指定する場合 202204271000,202204271100,,,202204271200,202204271300 ・経由地2のみに開始/終了日時を指定する場合(末尾のカンマは省略可) ,,202204271100,202204271200,, ,,202204271100,202204271200" |
| waypoint_stay_time string |
滞在時間 経由地点毎に滞在する時間を整数値で指定します。 経由地1の滞在時間,経由地2の滞在時間,経由地3の滞在時間,…の順番で指定します。 単位は分です。 waypointで指定した経由地数まで指定可能です。それ以上指定した場合はエラーとなります。 本パラメータが未指定の場合は滞在時間0分として動作します。 例) 前提:経由地を3件指定 ・全ての経由地に滞在時間を指定する場合 30,30,30 ・経由地1と3に滞在時間を指定する場合 30,,30 ・経由地2のみに滞在時間を指定する場合(末尾のカンマは省略可) ,30, ,30 |
| load integer |
最大積載量 最大積載量を0~32767の整数で指定します。(単位:kg) 最大積載量による車両制限を加味したルート検索を行います。 入力された最大積載量値が現地の規制値より1(kg)以上小さい場合は通行できると判定されます。 無指定時は最大積載量による車両制限は加味されません。 ※目的地までの通行可能な経路がない場合、通行不可な道路を含む経路を返します。 |
| danger boolean default false |
危険物積載車両規制考慮 火薬類、爆発物、毒物、劇物などの危険物を積載する車両制限を加味したルート検索を行います。 true
利用する
false
利用しない
|
| names boolean default false |
道路名称詳細出力指定 正式名称や一般名称などの、道路名称詳細情報を出力するかどうかを指定します。 通常レスポンスされる一般名称[road_name]とは別に、整備されている全呼び名種別の全名称をレスポンスします。 true
利用する
false
利用しない
|
Responses
エラーについては「 エラーメッセージ一覧 」を参照してください。
Media type:application/json
| キー名 | 説明 | ||||||
|---|---|---|---|---|---|---|---|
| status string |
ステータス情報 | ||||||
| result object |
ルート探索結果 | ||||||
| info object |
探索結果の情報 | ||||||
| hit integer |
探索結果総数(1固定) | ||||||
| item array[object] |
探索結果の配列 | ||||||
| status object |
ルート探索の成否情報 | ||||||
| result boolean |
ルート探索の成否情報
|
||||||
| code string |
エラーコード | ||||||
| header object |
ルート探索ヘッダ情報 | ||||||
| search_type integer |
ルート探索種別
|
||||||
| llunit string |
入出力経度緯度形式
|
||||||
| datum string |
入出力経度緯度形式
|
||||||
| vics_time_stamp string |
VICS情報生成日時 形式:YYYYMMDDhhmmss ※VICS情報が取得されていない場合nullが格納されます。 |
||||||
| route object |
探索結果情報 | ||||||
| distance number |
ルート全体の距離(単位:m) | ||||||
| time number |
ルート全体の旅行時間(単位:分) | ||||||
| toll integer |
ルート全体の現金料金 | ||||||
| toll_result boolean |
現金料金計算の成否
|
||||||
| toll_etc integer |
ルート全体のETC考慮料金 | ||||||
| toll_result_etc boolean |
ETC考慮料金計算の成否 1区間でも料金計算に失敗した場合、falseが格納されます。
|
||||||
| etc_item array[object] |
区間ごとのETC料金 区間ごとの結果オブジェクトが配列で入ります 区間ごとのETC料金が存在しない場合は空配列 ETC考慮料金計算が失敗しても区間があれば格納されます。 |
||||||
| toll integer |
1区間分のETC料金 料金計算に失敗した場合、0が格納されます |
||||||
| toll_result boolean |
1区間分の料金計算の成否
|
||||||
| ic object |
IC名 | ||||||
| from string |
進入IC名 | ||||||
| to string |
退出IC名 | ||||||
| detailed_time array[object] |
区間ごとの所要時間情報の配列 | ||||||
| time number |
当該区間の旅行時間 | ||||||
| link_offset integer |
当該区間に対応するlinkの開始リンク位置(インデックス値) | ||||||
| link_length integer |
当該区間に対応するlinkの数 | ||||||
| passage boolean |
ルート全体で規制を回避できているかどうかを示すフラグ
|
||||||
| waypoint_order string |
最適巡回並び替え後の経由地順 最適巡回並び替え後の順番を経由地番号を使用して出力 例えば、3件目、1件目、2件目、の順に並び替えた場合、「"3,1,2"」と出力 |
||||||
| link array[object] |
リンク情報の配列 | ||||||
| road_type integer |
道路種別
|
||||||
| toll_flag boolean |
当該リンクが有料道路かどうかを示すフラグ
|
||||||
| toll integer |
料金 | ||||||
| toll_result boolean |
料金計算の成否
|
||||||
| distance number |
距離 | ||||||
| line object |
ルート全体の大まかな形状点列 形式:GeoJSONのGeometry形式 |
||||||
| type string |
LineString固定 | ||||||
| coordinates array[array[number]] |
形状点列 | ||||||
| guidance object |
案内情報 該当リンクに案内情報が存在しない場合はnullが格納されます |
||||||
| direction_code integer |
右左折情報
|
||||||
| point_name string |
交差点名称 存在しない場合はnull |
||||||
| road_name string |
道路名称 リンクに紐づく一般名称を1件のみレスポンスする。 存在しない場合はnull |
||||||
| direction_name string |
方面名称 存在しない場合はnull |
||||||
| point_flag object |
高速道路上の施設への接続の可否 高速道路施設情報が存在する場合のみ格納されます |
||||||
| ic boolean |
ICに接続可能かどうかを示すフラグ
|
||||||
| jct boolean |
JCTに接続可能かどうかを示すフラグ
|
||||||
| sa boolean |
SAに接続可能かどうかを示すフラグ
|
||||||
| pa boolean |
PAに接続可能かどうかを示すフラグ
|
names_mst array[object] |
道路名称詳細情報 道路名称詳細情報が入ります 道路名称詳細情報[names]でtrueが指定されたときのみ出力されます 道路名称詳細情報が存在しない場合は空配列 |
||||
| nickname_type integer |
呼び名種別
|
||||||
| road_type_mst integer |
道路種別
|
||||||
| name_mst string |
道路名称
道路名称を出力 |
||||||
| link_id string |
MBリンクID リンクにふられるID。 複数のリンク間でIDが重複する場合があり、パーマネントなIDではありません。 |
||||||
| facility_info array[object] |
高速施設情報の配列 高速施設情報が存在しない場合は空配列 |
||||||
| name string |
高速施設名称 名称が存在しない場合はnullが格納されます |
||||||
| type array[string] |
高速施設タイプ
|
||||||
| regulation object |
道路の規制情報 | ||||||
| height integer |
高さ制限規制情報(単位:1cm単位) 規制情報が存在しない場合はnullが格納されます |
||||||
| width integer |
最大幅規制情報(単位:1cm単位) 規制情報が存在しない場合はnullが格納されます |
||||||
| weight integer |
重量制限規制情報(単位:1kg単位) 規制情報が存在しない場合はnullが格納されます |
||||||
| load integer |
最大積載量規制情報(単位:1kg単位) 規制情報が存在しない場合はnullが格納されます |
||||||
| danger boolean |
危険物積載車両規制情報
|
||||||
| passage_link boolean |
当該リンクが規制を回避できているかどうかを示すフラグ
|
||||||
Media typetext/plain
| キー名 | 説明 | |||
|---|---|---|---|---|
| status string |
ステータス | |||
| result object |
ルート探索結果 | |||
| info object |
探索結果の情報 | |||
| hit integer |
探索結果総数(1固定) | |||
| item array |
探索結果の配列 | |||
| status object |
ルート探索の成否情報 | |||
| result boolean |
ルート探索の成否情報
|
|||
| code string |
エラーコード
|
|||
| header object |
ルート探索ヘッダ情報 | |||
| search_type integer |
ルート探索種別
|
|||
Example
https://[domain]/route/route_mbn/drive_tsp?search_type=1&from=139.81529769415968,35.69409113032383&to=139.5284909891764,35.661657890443514&waypoint=139.76807083349087,35.69737006782594,139.7453648994145,35.701757532194854,139.79539673708715,35.67310768374787&llunit=dec&datum=JGD&vics=true
{
"status": "OK",
"result": {
"info": {
"hit": 1
},
"item": [
{
"header": {
"datum": "JGD",
"llunit": "dec",
"search_type": 1,
"vics_time_stamp": "20260216175512"
},
"route": {
"waypoint_order": "3,1,2",
"detailed_time": [
{
"link_length": 1,
"link_offset": 0,
"time": 0.4216666666666667
},
{
"link_length": 1,
"link_offset": 1,
"time": 0.08166666666666667
},
{
"link_length": 1,
"link_offset": 2,
"time": 0.43
},
{
"link_length": 1,
"link_offset": 3,
"time": 0.015
},
{
"link_length": 1,
"link_offset": 4,
"time": 0.02
},
{
"link_length": 1,
"link_offset": 5,
"time": 0.041666666666666664
},
{
"link_length": 1,
"link_offset": 6,
"time": 0.4683333333333333
},
{
"link_length": 1,
"link_offset": 7,
"time": 0.08666666666666667
},
{
"link_length": 1,
"link_offset": 8,
"time": 0.05333333333333334
},
{
"link_length": 1,
"link_offset": 9,
"time": 0.06
},
{
"link_length": 1,
"link_offset": 10,
"time": 0.015
},
{
"link_length": 1,
"link_offset": 11,
"time": 0.48333333333333334
},
{
"link_length": 1,
"link_offset": 12,
"time": 0.075
},
{
"link_length": 1,
"link_offset": 13,
"time": 0.06
},
{
"link_length": 1,
"link_offset": 14,
"time": 0.5266666666666666
},
{
"link_length": 1,
"link_offset": 15,
"time": 0.013333333333333334
},
{
"link_length": 1,
"link_offset": 16,
"time": 0.051666666666666666
},
{
"link_length": 1,
"link_offset": 17,
"time": 0.06333333333333334
},
{
"link_length": 1,
"link_offset": 18,
"time": 0.04666666666666667
},
{
"link_length": 1,
"link_offset": 19,
"time": 0.045
},
{
"link_length": 1,
"link_offset": 20,
"time": 0.42333333333333334
},
{
"link_length": 1,
"link_offset": 21,
"time": 0.02
},
{
"link_length": 1,
"link_offset": 22,
"time": 0.043333333333333335
},
{
"link_length": 1,
"link_offset": 23,
"time": 0.01
},
{
"link_length": 1,
"link_offset": 24,
"time": 0.03166666666666667
},
{
"link_length": 1,
"link_offset": 25,
"time": 0.041666666666666664
},
{
"link_length": 1,
"link_offset": 26,
"time": 0.016666666666666666
},
{
"link_length": 1,
"link_offset": 27,
"time": 0.48
},
{
"link_length": 3,
"link_offset": 28,
"time": 0.3616666666666667
},
{
"link_length": 1,
"link_offset": 31,
"time": 0.065
},
{
"link_length": 1,
"link_offset": 32,
"time": 0.02
},
{
"link_length": 2,
"link_offset": 33,
"time": 0.045
},
{
"link_length": 2,
"link_offset": 35,
"time": 0.46166666666666667
},
{
"link_length": 1,
"link_offset": 37,
"time": 0.011666666666666667
},
{
"link_length": 1,
"link_offset": 38,
"time": 0.015
},
{
"link_length": 1,
"link_offset": 39,
"time": 0.26
},
{
"link_length": 1,
"link_offset": 40,
"time": 0.06833333333333333
},
{
"link_length": 1,
"link_offset": 41,
"time": 0.04
},
{
"link_length": 2,
"link_offset": 42,
"time": 0.5
},
{
"link_length": 2,
"link_offset": 44,
"time": 0.19666666666666666
},
{
"link_length": 4,
"link_offset": 46,
"time": 0.575
},
{
"link_length": 1,
"link_offset": 50,
"time": 0.075
},
{
"link_length": 3,
"link_offset": 51,
"time": 0.175
},
{
"link_length": 1,
"link_offset": 54,
"time": 0.485
},
{
"link_length": 4,
"link_offset": 55,
"time": 1.1316666666666666
},
{
"link_length": 1,
"link_offset": 59,
"time": 0.013333333333333334
},
{
"link_length": 5,
"link_offset": 60,
"time": 0.2816666666666667
},
{
"link_length": 3,
"link_offset": 65,
"time": 0.5183333333333333
},
{
"link_length": 5,
"link_offset": 68,
"time": 0.6916666666666667
},
{
"link_length": 3,
"link_offset": 73,
"time": 0.48833333333333334
},
{
"link_length": 2,
"link_offset": 76,
"time": 0.16
},
{
"link_length": 2,
"link_offset": 78,
"time": 0.545
},
{
"link_length": 1,
"link_offset": 80,
"time": 0.21666666666666667
},
{
"link_length": 2,
"link_offset": 81,
"time": 0.635
},
{
"link_length": 1,
"link_offset": 83,
"time": 0.475
},
{
"link_length": 1,
"link_offset": 84,
"time": 0.08
},
{
"link_length": 1,
"link_offset": 85,
"time": 0.4583333333333333
},
{
"link_length": 1,
"link_offset": 86,
"time": 0.47833333333333333
},
{
"link_length": 1,
"link_offset": 87,
"time": 0.09333333333333334
},
{
"link_length": 1,
"link_offset": 88,
"time": 0.015
},
{
"link_length": 1,
"link_offset": 89,
"time": 0.05
},
{
"link_length": 1,
"link_offset": 90,
"time": 0.041666666666666664
},
{
"link_length": 1,
"link_offset": 91,
"time": 0.065
},
{
"link_length": 1,
"link_offset": 92,
"time": 0.42833333333333334
},
{
"link_length": 1,
"link_offset": 93,
"time": 0.05333333333333334
},
{
"link_length": 1,
"link_offset": 94,
"time": 0.12666666666666668
},
{
"link_length": 1,
"link_offset": 95,
"time": 0.056666666666666664
},
{
"link_length": 1,
"link_offset": 96,
"time": 0.025
},
{
"link_length": 1,
"link_offset": 97,
"time": 0.47
},
{
"link_length": 1,
"link_offset": 98,
"time": 0.013333333333333334
},
{
"link_length": 1,
"link_offset": 99,
"time": 0.09333333333333334
},
{
"link_length": 1,
"link_offset": 100,
"time": 0.06166666666666667
},
{
"link_length": 1,
"link_offset": 101,
"time": 0.4716666666666667
},
{
"link_length": 1,
"link_offset": 102,
"time": 0.05
},
{
"link_length": 1,
"link_offset": 103,
"time": 0.02666666666666667
},
{
"link_length": 1,
"link_offset": 104,
"time": 0.06
},
{
"link_length": 1,
"link_offset": 105,
"time": 0.008333333333333333
},
{
"link_length": 1,
"link_offset": 106,
"time": 0.06666666666666667
},
{
"link_length": 1,
"link_offset": 107,
"time": 0.028333333333333332
},
{
"link_length": 1,
"link_offset": 108,
"time": 0.42
},
{
"link_length": 1,
"link_offset": 109,
"time": 0.016666666666666666
},
{
"link_length": 1,
"link_offset": 110,
"time": 0.018333333333333333
},
{
"link_length": 1,
"link_offset": 111,
"time": 0.24833333333333332
},
{
"link_length": 1,
"link_offset": 112,
"time": 0
},
{
"link_length": 1,
"link_offset": 113,
"time": 0.051666666666666666
},
{
"link_length": 1,
"link_offset": 114,
"time": 0.06166666666666667
},
{
"link_length": 1,
"link_offset": 115,
"time": 0.4633333333333333
},
{
"link_length": 1,
"link_offset": 116,
"time": 0.07333333333333333
},
{
"link_length": 1,
"link_offset": 117,
"time": 0.055
},
{
"link_length": 1,
"link_offset": 118,
"time": 0.03333333333333333
},
{
"link_length": 1,
"link_offset": 119,
"time": 0.41833333333333333
},
{
"link_length": 1,
"link_offset": 120,
"time": 0.01
},
{
"link_length": 1,
"link_offset": 121,
"time": 0.015
},
{
"link_length": 1,
"link_offset": 122,
"time": 0.025
},
{
"link_length": 1,
"link_offset": 123,
"time": 0.005
},
{
"link_length": 1,
"link_offset": 124,
"time": 0.02
},
{
"link_length": 1,
"link_offset": 125,
"time": 0.028333333333333332
},
{
"link_length": 1,
"link_offset": 126,
"time": 0.023333333333333334
},
{
"link_length": 1,
"link_offset": 127,
"time": 0.03
},
{
"link_length": 1,
"link_offset": 128,
"time": 0.025
},
{
"link_length": 1,
"link_offset": 129,
"time": 0.021666666666666667
},
{
"link_length": 1,
"link_offset": 130,
"time": 0.08166666666666667
},
{
"link_length": 1,
"link_offset": 131,
"time": 0.043333333333333335
},
{
"link_length": 1,
"link_offset": 132,
"time": 0.005
},
{
"link_length": 1,
"link_offset": 133,
"time": 0.01
},
{
"link_length": 1,
"link_offset": 134,
"time": 0.41
},
{
"link_length": 1,
"link_offset": 135,
"time": 0.051666666666666666
},
{
"link_length": 1,
"link_offset": 136,
"time": 0.01
},
{
"link_length": 1,
"link_offset": 137,
"time": 0.015
},
{
"link_length": 1,
"link_offset": 138,
"time": 0.03166666666666667
},
{
"link_length": 1,
"link_offset": 139,
"time": 0.04833333333333333
},
{
"link_length": 1,
"link_offset": 140,
"time": 0.04833333333333333
},
{
"link_length": 6,
"link_offset": 141,
"time": 0.775
},
{
"link_length": 6,
"link_offset": 147,
"time": 0.67
},
{
"link_length": 2,
"link_offset": 153,
"time": 0.49666666666666665
},
{
"link_length": 4,
"link_offset": 155,
"time": 0.605
},
{
"link_length": 4,
"link_offset": 159,
"time": 0.06333333333333334
},
{
"link_length": 4,
"link_offset": 163,
"time": 0.15833333333333333
},
{
"link_length": 2,
"link_offset": 167,
"time": 0.10166666666666667
},
{
"link_length": 2,
"link_offset": 169,
"time": 0.4583333333333333
},
{
"link_length": 1,
"link_offset": 171,
"time": 0.02
},
{
"link_length": 1,
"link_offset": 172,
"time": 0.016666666666666666
},
{
"link_length": 4,
"link_offset": 173,
"time": 0.225
},
{
"link_length": 2,
"link_offset": 177,
"time": 0.08833333333333333
},
{
"link_length": 2,
"link_offset": 179,
"time": 0.5383333333333333
},
{
"link_length": 2,
"link_offset": 181,
"time": 0.5666666666666667
},
{
"link_length": 4,
"link_offset": 183,
"time": 0.17666666666666667
},
{
"link_length": 10,
"link_offset": 187,
"time": 0.5383333333333333
},
{
"link_length": 3,
"link_offset": 197,
"time": 0.05333333333333334
},
{
"link_length": 2,
"link_offset": 200,
"time": 0.065
},
{
"link_length": 2,
"link_offset": 202,
"time": 0.04833333333333333
},
{
"link_length": 3,
"link_offset": 204,
"time": 0.6216666666666667
},
{
"link_length": 1,
"link_offset": 207,
"time": 0.055
},
{
"link_length": 2,
"link_offset": 208,
"time": 0.06166666666666667
},
{
"link_length": 1,
"link_offset": 210,
"time": 0.5033333333333333
},
{
"link_length": 1,
"link_offset": 211,
"time": 0.035
},
{
"link_length": 6,
"link_offset": 212,
"time": 1.095
},
{
"link_length": 1,
"link_offset": 218,
"time": 0.016666666666666666
},
{
"link_length": 1,
"link_offset": 219,
"time": 0.011666666666666667
},
{
"link_length": 2,
"link_offset": 220,
"time": 0.20166666666666666
},
{
"link_length": 2,
"link_offset": 222,
"time": 0.48333333333333334
},
{
"link_length": 2,
"link_offset": 224,
"time": 0.5233333333333333
},
{
"link_length": 2,
"link_offset": 226,
"time": 0.1
},
{
"link_length": 2,
"link_offset": 228,
"time": 0.5033333333333333
},
{
"link_length": 2,
"link_offset": 230,
"time": 0.06833333333333333
},
{
"link_length": 2,
"link_offset": 232,
"time": 0.49833333333333335
},
{
"link_length": 1,
"link_offset": 234,
"time": 0.013333333333333334
},
{
"link_length": 2,
"link_offset": 235,
"time": 0.07
},
{
"link_length": 8,
"link_offset": 237,
"time": 0.5083333333333333
},
{
"link_length": 4,
"link_offset": 245,
"time": 0.08333333333333333
},
{
"link_length": 6,
"link_offset": 249,
"time": 0.49833333333333335
},
{
"link_length": 2,
"link_offset": 255,
"time": 0.125
},
{
"link_length": 2,
"link_offset": 257,
"time": 0.4483333333333333
},
{
"link_length": 4,
"link_offset": 259,
"time": 0.5433333333333333
},
{
"link_length": 2,
"link_offset": 263,
"time": 0.42
},
{
"link_length": 6,
"link_offset": 265,
"time": 0.5833333333333334
},
{
"link_length": 1,
"link_offset": 271,
"time": 0.055
},
{
"link_length": 1,
"link_offset": 272,
"time": 0.005
},
{
"link_length": 1,
"link_offset": 273,
"time": 0.043333333333333335
},
{
"link_length": 1,
"link_offset": 274,
"time": 0.028333333333333332
},
{
"link_length": 1,
"link_offset": 275,
"time": 0.028333333333333332
},
{
"link_length": 1,
"link_offset": 276,
"time": 0.03166666666666667
},
{
"link_length": 1,
"link_offset": 277,
"time": 0.4533333333333333
},
{
"link_length": 1,
"link_offset": 278,
"time": 0.02
},
{
"link_length": 1,
"link_offset": 279,
"time": 0.49666666666666665
},
{
"link_length": 1,
"link_offset": 280,
"time": 0.08
},
{
"link_length": 1,
"link_offset": 281,
"time": 0.03833333333333333
},
{
"link_length": 1,
"link_offset": 282,
"time": 0.005
},
{
"link_length": 1,
"link_offset": 283,
"time": 0.11
},
{
"link_length": 1,
"link_offset": 284,
"time": 0.49666666666666665
},
{
"link_length": 1,
"link_offset": 285,
"time": 0.15333333333333332
},
{
"link_length": 1,
"link_offset": 286,
"time": 0.028333333333333332
},
{
"link_length": 1,
"link_offset": 287,
"time": 0.06166666666666667
},
{
"link_length": 1,
"link_offset": 288,
"time": 0.023333333333333334
},
{
"link_length": 1,
"link_offset": 289,
"time": 0.008333333333333333
},
{
"link_length": 1,
"link_offset": 290,
"time": 0.47833333333333333
},
{
"link_length": 1,
"link_offset": 291,
"time": 0.05333333333333334
},
{
"link_length": 1,
"link_offset": 292,
"time": 0.016666666666666666
},
{
"link_length": 1,
"link_offset": 293,
"time": 0.06
},
{
"link_length": 1,
"link_offset": 294,
"time": 0.03333333333333333
},
{
"link_length": 1,
"link_offset": 295,
"time": 0.445
},
{
"link_length": 5,
"link_offset": 296,
"time": 0.185
},
{
"link_length": 2,
"link_offset": 301,
"time": 0.07
},
{
"link_length": 4,
"link_offset": 303,
"time": 0.5816666666666667
},
{
"link_length": 1,
"link_offset": 307,
"time": 0.435
},
{
"link_length": 4,
"link_offset": 308,
"time": 0.23833333333333334
},
{
"link_length": 4,
"link_offset": 312,
"time": 0.54
},
{
"link_length": 2,
"link_offset": 316,
"time": 0.19
},
{
"link_length": 4,
"link_offset": 318,
"time": 0.14833333333333334
},
{
"link_length": 2,
"link_offset": 322,
"time": 0.45166666666666666
},
{
"link_length": 1,
"link_offset": 324,
"time": 0.016666666666666666
},
{
"link_length": 2,
"link_offset": 325,
"time": 0.52
},
{
"link_length": 6,
"link_offset": 327,
"time": 1.0966666666666667
},
{
"link_length": 1,
"link_offset": 333,
"time": 0.011666666666666667
},
{
"link_length": 2,
"link_offset": 334,
"time": 0.26
},
{
"link_length": 2,
"link_offset": 336,
"time": 0.4666666666666667
},
{
"link_length": 2,
"link_offset": 338,
"time": 0.14
},
{
"link_length": 2,
"link_offset": 340,
"time": 0.23
},
{
"link_length": 6,
"link_offset": 342,
"time": 1
},
{
"link_length": 1,
"link_offset": 348,
"time": 0.02666666666666667
},
{
"link_length": 6,
"link_offset": 349,
"time": 0.905
},
{
"link_length": 1,
"link_offset": 355,
"time": 0.013333333333333334
},
{
"link_length": 2,
"link_offset": 356,
"time": 0.13833333333333334
},
{
"link_length": 2,
"link_offset": 358,
"time": 0.45166666666666666
},
{
"link_length": 2,
"link_offset": 360,
"time": 0.8483333333333334
},
{
"link_length": 5,
"link_offset": 362,
"time": 0.7466666666666667
},
{
"link_length": 1,
"link_offset": 367,
"time": 0.18
},
{
"link_length": 1,
"link_offset": 368,
"time": 0.455
},
{
"link_length": 1,
"link_offset": 369,
"time": 0.011666666666666667
},
{
"link_length": 1,
"link_offset": 370,
"time": 0.215
},
{
"link_length": 1,
"link_offset": 371,
"time": 0.07333333333333333
},
{
"link_length": 1,
"link_offset": 372,
"time": 0.16666666666666666
},
{
"link_length": 1,
"link_offset": 373,
"time": 0.07666666666666666
},
{
"link_length": 1,
"link_offset": 374,
"time": 0.4816666666666667
},
{
"link_length": 1,
"link_offset": 375,
"time": 0.765
},
{
"link_length": 1,
"link_offset": 376,
"time": 0.3
},
{
"link_length": 1,
"link_offset": 377,
"time": 0.10333333333333333
},
{
"link_length": 1,
"link_offset": 378,
"time": 0.10833333333333334
},
{
"link_length": 1,
"link_offset": 379,
"time": 0.54
},
{
"link_length": 1,
"link_offset": 380,
"time": 0.215
},
{
"link_length": 1,
"link_offset": 381,
"time": 0.12666666666666668
},
{
"link_length": 1,
"link_offset": 382,
"time": 0.5533333333333333
},
{
"link_length": 1,
"link_offset": 383,
"time": 0.19166666666666668
},
{
"link_length": 1,
"link_offset": 384,
"time": 0.46166666666666667
},
{
"link_length": 1,
"link_offset": 385,
"time": 0.15
},
{
"link_length": 1,
"link_offset": 386,
"time": 0.5066666666666667
},
{
"link_length": 3,
"link_offset": 387,
"time": 1.0366666666666666
},
{
"link_length": 1,
"link_offset": 390,
"time": 0.008333333333333333
},
{
"link_length": 3,
"link_offset": 391,
"time": 0.5566666666666666
},
{
"link_length": 10,
"link_offset": 394,
"time": 3.27
},
{
"link_length": 1,
"link_offset": 404,
"time": 0.02666666666666667
},
{
"link_length": 3,
"link_offset": 405,
"time": 0.6833333333333333
},
{
"link_length": 1,
"link_offset": 408,
"time": 0.02
},
{
"link_length": 2,
"link_offset": 409,
"time": 0.6733333333333333
},
{
"link_length": 1,
"link_offset": 411,
"time": 0.015
},
{
"link_length": 1,
"link_offset": 412,
"time": 0.035
},
{
"link_length": 6,
"link_offset": 413,
"time": 2.2783333333333333
},
{
"link_length": 1,
"link_offset": 419,
"time": 0.02
},
{
"link_length": 1,
"link_offset": 420,
"time": 0.055
},
{
"link_length": 1,
"link_offset": 421,
"time": 0.49
},
{
"link_length": 1,
"link_offset": 422,
"time": 0.24833333333333332
},
{
"link_length": 1,
"link_offset": 423,
"time": 0.5266666666666666
},
{
"link_length": 1,
"link_offset": 424,
"time": 0.015
},
{
"link_length": 1,
"link_offset": 425,
"time": 0.2
},
{
"link_length": 1,
"link_offset": 426,
"time": 0.06166666666666667
},
{
"link_length": 3,
"link_offset": 427,
"time": 1.2716666666666667
},
{
"link_length": 1,
"link_offset": 430,
"time": 0.12666666666666668
},
{
"link_length": 2,
"link_offset": 431,
"time": 0.62
},
{
"link_length": 4,
"link_offset": 433,
"time": 0.9416666666666667
},
{
"link_length": 1,
"link_offset": 437,
"time": 0.585
},
{
"link_length": 1,
"link_offset": 438,
"time": 0.016666666666666666
},
{
"link_length": 2,
"link_offset": 439,
"time": 0.205
},
{
"link_length": 2,
"link_offset": 441,
"time": 0.475
},
{
"link_length": 1,
"link_offset": 443,
"time": 0.09333333333333334
},
{
"link_length": 1,
"link_offset": 444,
"time": 2.0183333333333335
},
{
"link_length": 2,
"link_offset": 445,
"time": 0.021666666666666667
},
{
"link_length": 1,
"link_offset": 447,
"time": 0.195
},
{
"link_length": 2,
"link_offset": 448,
"time": 6.65
},
{
"link_length": 1,
"link_offset": 450,
"time": 2.545
},
{
"link_length": 4,
"link_offset": 451,
"time": 4.8116666666666665
},
{
"link_length": 2,
"link_offset": 455,
"time": 3.45
},
{
"link_length": 1,
"link_offset": 457,
"time": 0.14
},
{
"link_length": 4,
"link_offset": 458,
"time": 7.111666666666666
},
{
"link_length": 2,
"link_offset": 462,
"time": 0.8716666666666667
},
{
"link_length": 7,
"link_offset": 464,
"time": 2.3666666666666667
},
{
"link_length": 3,
"link_offset": 471,
"time": 0.6633333333333333
},
{
"link_length": 8,
"link_offset": 474,
"time": 3.111666666666667
},
{
"link_length": 1,
"link_offset": 482,
"time": 2.0566666666666666
},
{
"link_length": 1,
"link_offset": 483,
"time": 0.055
},
{
"link_length": 4,
"link_offset": 484,
"time": 0.6216666666666667
},
{
"link_length": 7,
"link_offset": 488,
"time": 1.915
},
{
"link_length": 3,
"link_offset": 495,
"time": 0.3933333333333333
},
{
"link_length": 1,
"link_offset": 498,
"time": 0.013333333333333334
},
{
"link_length": 2,
"link_offset": 499,
"time": 0.6583333333333333
},
{
"link_length": 1,
"link_offset": 501,
"time": 0.02
},
{
"link_length": 1,
"link_offset": 502,
"time": 0.008333333333333333
},
{
"link_length": 1,
"link_offset": 503,
"time": 0.023333333333333334
},
{
"link_length": 1,
"link_offset": 504,
"time": 0.04666666666666667
},
{
"link_length": 1,
"link_offset": 505,
"time": 0.03
},
{
"link_length": 1,
"link_offset": 506,
"time": 0.415
},
{
"link_length": 1,
"link_offset": 507,
"time": 0.05333333333333334
},
{
"link_length": 1,
"link_offset": 508,
"time": 0.008333333333333333
},
{
"link_length": 1,
"link_offset": 509,
"time": 0.025
},
{
"link_length": 1,
"link_offset": 510,
"time": 0.016666666666666666
},
{
"link_length": 1,
"link_offset": 511,
"time": 0.016666666666666666
},
{
"link_length": 1,
"link_offset": 512,
"time": 0.015
},
{
"link_length": 1,
"link_offset": 513,
"time": 0.08333333333333333
},
{
"link_length": 1,
"link_offset": 514,
"time": 0.085
},
{
"link_length": 1,
"link_offset": 515,
"time": 0.04
},
{
"link_length": 1,
"link_offset": 516,
"time": 0.04666666666666667
},
{
"link_length": 1,
"link_offset": 517,
"time": 0.0033333333333333335
},
{
"link_length": 1,
"link_offset": 518,
"time": 0.0033333333333333335
},
{
"link_length": 1,
"link_offset": 519,
"time": 0.025
},
{
"link_length": 1,
"link_offset": 520,
"time": 0.025
},
{
"link_length": 1,
"link_offset": 521,
"time": 0.03
},
{
"link_length": 1,
"link_offset": 522,
"time": 0.043333333333333335
},
{
"link_length": 1,
"link_offset": 523,
"time": 0.03333333333333333
},
{
"link_length": 1,
"link_offset": 524,
"time": 0.015
},
{
"link_length": 1,
"link_offset": 525,
"time": 0.0033333333333333335
}
],
"distance": 35578.799999999996,
"etc_item": [
{
"ic": {
"from": "外苑",
"to": "高井戸(都心発着)"
},
"toll": 510,
"toll_result": true
},
{
"ic": {
"from": "高井戸(都心発着)",
"to": "調布"
},
"toll": 420,
"toll_result": true
}
],
"link": [
{
"distance": 23.5,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": null,
"road_name": "都道465号線"
},
"line": {
"coordinates": [
[
139.81528083333333,
35.69408889
],
[
139.8153025,
35.69387722
]
],
"type": "LineString"
},
"link_id": "5150010000050277969",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 49.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.8153025,
35.69387722
],
[
139.8153413888889,
35.69343583
]
],
"type": "LineString"
},
"link_id": "5150010000050277936",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 28.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.8153413888889,
35.69343583
],
[
139.81536694444443,
35.69318111
]
],
"type": "LineString"
},
"link_id": "5150010000050277919",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 9.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81536694444443,
35.69318111
],
[
139.815375,
35.6930925
]
],
"type": "LineString"
},
"link_id": "5150010000080517177",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 12,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.815375,
35.6930925
],
[
139.81538694444444,
35.69298389
]
],
"type": "LineString"
},
"link_id": "5150010000072045852",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 25.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81538694444444,
35.69298389
],
[
139.81542055555556,
35.69275583
]
],
"type": "LineString"
},
"link_id": "5150010000050277896",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 51.3,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "毛利二丁目",
"road_name": "都道465号線"
},
"line": {
"coordinates": [
[
139.81542055555556,
35.69275583
],
[
139.81549583333333,
35.69229861
]
],
"type": "LineString"
},
"link_id": "5150010000050277827",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 52.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81549583333333,
35.69229861
],
[
139.8155277777778,
35.69182389
]
],
"type": "LineString"
},
"link_id": "5150010000050277805",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 33,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.8155277777778,
35.69182389
],
[
139.81554916666667,
35.6915275
]
],
"type": "LineString"
},
"link_id": "5150010000050277792",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 36.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81554916666667,
35.6915275
],
[
139.8155775,
35.69119889
]
],
"type": "LineString"
},
"link_id": "5150010000050277785",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 9.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.8155775,
35.69119889
],
[
139.81558555555554,
35.69111694
]
],
"type": "LineString"
},
"link_id": "5150010000050277778",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 60.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81558555555554,
35.69111694
],
[
139.81563111111112,
35.69057389
]
],
"type": "LineString"
},
"link_id": "5150010000050277769",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 45.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81563111111112,
35.69057389
],
[
139.81566722222223,
35.69016194
]
],
"type": "LineString"
},
"link_id": "5150010000050277757",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 36.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81566722222223,
35.69016194
],
[
139.81569416666667,
35.68983222
]
],
"type": "LineString"
},
"link_id": "5150010000050277742",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 86.7,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "住吉二丁目",
"road_name": "都道465号線"
},
"line": {
"coordinates": [
[
139.81569416666667,
35.68983222
],
[
139.81576,
35.68905306
]
],
"type": "LineString"
},
"link_id": "5150010000050277715",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 8.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81576,
35.68905306
],
[
139.81576638888887,
35.68897667
]
],
"type": "LineString"
},
"link_id": "5150010000050277847",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 31.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81576638888887,
35.68897667
],
[
139.81579194444444,
35.68869778
]
],
"type": "LineString"
},
"link_id": "5150010000050277672",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 38.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81579194444444,
35.68869778
],
[
139.81582277777778,
35.6883475
]
],
"type": "LineString"
},
"link_id": "5150010000050277665",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 28.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81582277777778,
35.6883475
],
[
139.81584555555557,
35.68809028
]
],
"type": "LineString"
},
"link_id": "5150010000050277659",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 28,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81584555555557,
35.68809028
],
[
139.8158672222222,
35.68783944
]
],
"type": "LineString"
},
"link_id": "5150010000050277641",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 24.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.8158672222222,
35.68783944
],
[
139.81588722222222,
35.68761806
]
],
"type": "LineString"
},
"link_id": "5150010000050277635",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 12.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81588722222222,
35.68761806
],
[
139.8158938888889,
35.68750694
]
],
"type": "LineString"
},
"link_id": "5150010000050277632",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 26.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.8158938888889,
35.68750694
],
[
139.81591277777778,
35.68726556
]
],
"type": "LineString"
},
"link_id": "5150010000050277593",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81591277777778,
35.68726556
],
[
139.8159222222222,
35.68720361
]
],
"type": "LineString"
},
"link_id": "5150010000050277586",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 19.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.8159222222222,
35.68720361
],
[
139.81593944444444,
35.68702944
]
],
"type": "LineString"
},
"link_id": "5150010000050277575",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 26,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81593944444444,
35.68702944
],
[
139.81595972222223,
35.68679583
]
],
"type": "LineString"
},
"link_id": "5150010000050277566",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 10.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81595972222223,
35.68679583
],
[
139.8159677777778,
35.68670194
]
],
"type": "LineString"
},
"link_id": "5150010000050277561",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 58.8,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "江東西税務署入口",
"road_name": "都道465号線"
},
"line": {
"coordinates": [
[
139.8159677777778,
35.68670194
],
[
139.81601472222223,
35.68617361
]
],
"type": "LineString"
},
"link_id": "5150010000050277536",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 132,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81601472222223,
35.68617361
],
[
139.81612055555556,
35.68498694
]
],
"type": "LineString"
},
"link_id": "5150010000050277518",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 60.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81612055555556,
35.68498694
],
[
139.8161663888889,
35.68444111
]
],
"type": "LineString"
},
"link_id": "5150010000050277512",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 24.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.8161663888889,
35.68444111
],
[
139.8161822222222,
35.68422111
]
],
"type": "LineString"
},
"link_id": "5150010000050277503",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 39.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.8161822222222,
35.68422111
],
[
139.81617416666666,
35.68386444
]
],
"type": "LineString"
},
"link_id": "5150010000050232990",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 12.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81617416666666,
35.68386444
],
[
139.81616888888888,
35.68375167
]
],
"type": "LineString"
},
"link_id": "5150010000050232979",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 17.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81616888888888,
35.68375167
],
[
139.816165,
35.68359361
]
],
"type": "LineString"
},
"link_id": "5150010000052337695",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 10.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.816165,
35.68359361
],
[
139.81615944444445,
35.68350083
]
],
"type": "LineString"
},
"link_id": "5150010000052337695",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 18.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81615944444445,
35.68350083
],
[
139.81615277777777,
35.68333583
]
],
"type": "LineString"
},
"link_id": "5150010000034541830",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 28.8,
"facility_info": [],
"guidance": {
"direction_code": 3,
"direction_name": null,
"point_name": "扇橋二丁目",
"road_name": "都道474号線"
},
"line": {
"coordinates": [
[
139.81615277777777,
35.68333583
],
[
139.81615555555555,
35.68307722
]
],
"type": "LineString"
},
"link_id": "5150010000034541821",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 7.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81615555555555,
35.68307722
],
[
139.81615277777777,
35.68300611
]
],
"type": "LineString"
},
"link_id": "5150010000034541852",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 9.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81615277777777,
35.68300611
],
[
139.81604805555557,
35.68299917
]
],
"type": "LineString"
},
"link_id": "5150010000034541850",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 56.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81604805555557,
35.68299917
],
[
139.81542611111112,
35.68296444
]
],
"type": "LineString"
},
"link_id": "5150010000034541790",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 41,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81542611111112,
35.68296444
],
[
139.8149738888889,
35.68294028
]
],
"type": "LineString"
},
"link_id": "5150010000034541786",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 24,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.8149738888889,
35.68294028
],
[
139.81471,
35.68292556
]
],
"type": "LineString"
},
"link_id": "5150010000034541783",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 13.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81471,
35.68292556
],
[
139.81455833333334,
35.6829175
]
],
"type": "LineString"
},
"link_id": "5150010000034541780",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 56.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81455833333334,
35.6829175
],
[
139.81393333333332,
35.6828825
]
],
"type": "LineString"
},
"link_id": "5150010000034541777",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 54.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81393333333332,
35.6828825
],
[
139.81333361111112,
35.68284917
]
],
"type": "LineString"
},
"link_id": "5150010000034541774",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 64.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81333361111112,
35.68284917
],
[
139.81262166666667,
35.68281278
]
],
"type": "LineString"
},
"link_id": "5150010000034541771",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 39.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81262166666667,
35.68281278
],
[
139.81218305555555,
35.68278889
]
],
"type": "LineString"
},
"link_id": "5150010000034513340",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 15.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81218305555555,
35.68278889
],
[
139.81201166666668,
35.68277944
]
],
"type": "LineString"
},
"link_id": "5150010000052335345",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 22.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81201166666668,
35.68277944
],
[
139.8117675,
35.68276611
]
],
"type": "LineString"
},
"link_id": "5150010000052335345",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 38,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "扇橋一丁目",
"road_name": "都道474号線"
},
"line": {
"coordinates": [
[
139.8117675,
35.68276611
],
[
139.8113488888889,
35.68274194
]
],
"type": "LineString"
},
"link_id": "5150010000038055992",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 45.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.8113488888889,
35.68274194
],
[
139.8108447222222,
35.68271639
]
],
"type": "LineString"
},
"link_id": "5150010000038055989",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 6.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.8108447222222,
35.68271639
],
[
139.810775,
35.68271361
]
],
"type": "LineString"
},
"link_id": "5150010000038055986",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 38.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.810775,
35.68271361
],
[
139.81034722222222,
35.68268806
]
],
"type": "LineString"
},
"link_id": "5150010000038055983",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 60.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.81034722222222,
35.68268806
],
[
139.80968333333334,
35.68265056
]
],
"type": "LineString"
},
"link_id": "5150010000038055977",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 61.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.80968333333334,
35.68265056
],
[
139.80900222222223,
35.68261056
]
],
"type": "LineString"
},
"link_id": "5150010000038055974",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 26,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.80900222222223,
35.68261056
],
[
139.80871611111112,
35.68259278
]
],
"type": "LineString"
},
"link_id": "5150010000038055971",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 98.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.80871611111112,
35.68259278
],
[
139.8076313888889,
35.68253
]
],
"type": "LineString"
},
"link_id": "5150010000038055969",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 37.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.8076313888889,
35.68253
],
[
139.80721277777778,
35.68250583
]
],
"type": "LineString"
},
"link_id": "5150010000038055967",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 56.7,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "白河三丁目",
"road_name": "都道474号線"
},
"line": {
"coordinates": [
[
139.80721277777778,
35.68250583
],
[
139.80658805555555,
35.68246833
]
],
"type": "LineString"
},
"link_id": "5150010000038055964",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 8.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.80658805555555,
35.68246833
],
[
139.80649527777777,
35.68246306
]
],
"type": "LineString"
},
"link_id": "5150010000038058027",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 55.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.80649527777777,
35.68246306
],
[
139.8058838888889,
35.68242806
]
],
"type": "LineString"
},
"link_id": "5150010000038055962",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 40.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.8058838888889,
35.68242806
],
[
139.80544277777778,
35.6824025
]
],
"type": "LineString"
},
"link_id": "5150010000038055960",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.80544277777778,
35.6824025
],
[
139.80537694444445,
35.68239861
]
],
"type": "LineString"
},
"link_id": "5150010000038055957",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 31.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.80537694444445,
35.68239861
],
[
139.8050325,
35.68237972
]
],
"type": "LineString"
},
"link_id": "5150010000038055954",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 37.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.8050325,
35.68237972
],
[
139.80462333333332,
35.68235694
]
],
"type": "LineString"
},
"link_id": "5150010000038055717",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 39.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.80462333333332,
35.68235694
],
[
139.80419277777779,
35.68233417
]
],
"type": "LineString"
},
"link_id": "5150010000038055714",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 10.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.80419277777779,
35.68233417
],
[
139.80408027777779,
35.68232861
]
],
"type": "LineString"
},
"link_id": "5150010000038055711",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 31.8,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "東深川橋",
"road_name": "都道474号線"
},
"line": {
"coordinates": [
[
139.80408027777779,
35.68232861
],
[
139.80373,
35.68230444
]
],
"type": "LineString"
},
"link_id": "5150010000038055708",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 46.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.80373,
35.68230444
],
[
139.80321666666666,
35.6822725
]
],
"type": "LineString"
},
"link_id": "5150010000038055705",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 39.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.80321666666666,
35.6822725
],
[
139.80278611111112,
35.68224694
]
],
"type": "LineString"
},
"link_id": "5150010000038055702",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 22.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.80278611111112,
35.68224694
],
[
139.8025377777778,
35.68223361
]
],
"type": "LineString"
},
"link_id": "5150010000038055699",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 24.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.8025377777778,
35.68223361
],
[
139.80226444444443,
35.6822175
]
],
"type": "LineString"
},
"link_id": "5150010000038055696",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 52.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.80226444444443,
35.6822175
],
[
139.80168361111112,
35.68218139
]
],
"type": "LineString"
},
"link_id": "5150010000038055693",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 29.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.80168361111112,
35.68218139
],
[
139.80136027777777,
35.68216111
]
],
"type": "LineString"
},
"link_id": "5150010000038055690",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 30.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.80136027777777,
35.68216111
],
[
139.80102527777777,
35.68214361
]
],
"type": "LineString"
},
"link_id": "5150010000051091707",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 3.6,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": null,
"road_name": "都道474号線"
},
"line": {
"coordinates": [
[
139.80102527777777,
35.68214361
],
[
139.80098611111111,
35.68214111
]
],
"type": "LineString"
},
"link_id": "5150010000051091707",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 27.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.80098611111111,
35.68214111
],
[
139.8006886111111,
35.68211806
]
],
"type": "LineString"
},
"link_id": "5150010000048879803",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 69.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.8006886111111,
35.68211806
],
[
139.7999213888889,
35.68207139
]
],
"type": "LineString"
},
"link_id": "5150010000048879799",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 56.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7999213888889,
35.68207139
],
[
139.79930194444444,
35.6820325
]
],
"type": "LineString"
},
"link_id": "5150010000048879796",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 41.5,
"facility_info": [],
"guidance": {
"direction_code": 4,
"direction_name": null,
"point_name": "清澄三丁目",
"road_name": "都道463号線"
},
"line": {
"coordinates": [
[
139.79930194444444,
35.6820325
],
[
139.79884444444446,
35.68200417
]
],
"type": "LineString"
},
"link_id": "5150010000048879793",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 80.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79884444444446,
35.68200417
],
[
139.79893694444445,
35.68128667
]
],
"type": "LineString"
},
"link_id": "5150010000048879767",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 71.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79893694444445,
35.68128667
],
[
139.79902,
35.68064833
]
],
"type": "LineString"
},
"link_id": "5150010000048879753",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 80.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79902,
35.68064833
],
[
139.79911277777776,
35.67992694
]
],
"type": "LineString"
},
"link_id": "5150010000048879743",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 55.2,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": null,
"road_name": "都道463号線"
},
"line": {
"coordinates": [
[
139.79911277777776,
35.67992694
],
[
139.79913944444445,
35.67963306
],
[
139.79903638888888,
35.67944944
]
],
"type": "LineString"
},
"link_id": "5150010000048879737",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 48.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79903638888888,
35.67944944
],
[
139.79875194444443,
35.67907806
]
],
"type": "LineString"
},
"link_id": "5150010000048879730",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 45.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79875194444443,
35.67907806
],
[
139.79846916666668,
35.67874278
]
],
"type": "LineString"
},
"link_id": "5150010000048879722",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 57.3,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": null,
"road_name": "都道463号線"
},
"line": {
"coordinates": [
[
139.79846916666668,
35.67874278
],
[
139.79812444444445,
35.67831083
]
],
"type": "LineString"
},
"link_id": "5150010000048879711",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 56.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79812444444445,
35.67831083
],
[
139.79778083333332,
35.67788194
]
],
"type": "LineString"
},
"link_id": "5150010000048879700",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 9.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79778083333332,
35.67788194
],
[
139.79772472222223,
35.67780944
]
],
"type": "LineString"
},
"link_id": "5150010000048879695",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 30.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79772472222223,
35.67780944
],
[
139.79753166666666,
35.67758111
]
],
"type": "LineString"
},
"link_id": "5150010000048879690",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 25.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79753166666666,
35.67758111
],
[
139.7973786111111,
35.67738528
]
],
"type": "LineString"
},
"link_id": "5150010000048879683",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 39.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7973786111111,
35.67738528
],
[
139.79713583333333,
35.67708778
]
],
"type": "LineString"
},
"link_id": "5150010000048879566",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 27.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79713583333333,
35.67708778
],
[
139.79696944444444,
35.67688
]
],
"type": "LineString"
},
"link_id": "5150010000048850422",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 32.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79696944444444,
35.67688
],
[
139.7967686111111,
35.67664278
]
],
"type": "LineString"
},
"link_id": "5150010000048850415",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 76.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7967686111111,
35.67664278
],
[
139.7964022222222,
35.67616889
],
[
139.796365,
35.67604306
]
],
"type": "LineString"
},
"link_id": "5150010000048850388",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 34.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.796365,
35.67604306
],
[
139.79630583333332,
35.67573194
]
],
"type": "LineString"
},
"link_id": "5150010000048850360",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 15.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79630583333332,
35.67573194
],
[
139.79627333333335,
35.675595
]
],
"type": "LineString"
},
"link_id": "5150010000076574352",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 52.6,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "深川一丁目",
"road_name": "都道463号線"
},
"line": {
"coordinates": [
[
139.79627333333335,
35.675595
],
[
139.79619583333334,
35.67512444
]
],
"type": "LineString"
},
"link_id": "5150010000048850340",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 8.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79619583333334,
35.67512444
],
[
139.7961836111111,
35.67504778
]
],
"type": "LineString"
},
"link_id": "5150010000048850447",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 56.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7961836111111,
35.67504778
],
[
139.79610055555557,
35.674545
]
],
"type": "LineString"
},
"link_id": "5150010000048850299",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 37,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79610055555557,
35.674545
],
[
139.79604833333335,
35.674215
]
],
"type": "LineString"
},
"link_id": "5150010000048850276",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 53,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79604833333335,
35.674215
],
[
139.7958297222222,
35.67377278
]
],
"type": "LineString"
},
"link_id": "5150010000048850234",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 30.6,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": null,
"road_name": "都道463号線"
},
"line": {
"coordinates": [
[
139.7958297222222,
35.67377278
],
[
139.79566888888888,
35.67353
]
],
"type": "LineString"
},
"link_id": "5150010000048850222",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 16.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79566888888888,
35.67353
],
[
139.79558555555556,
35.67339833
]
],
"type": "LineString"
},
"link_id": "5150010000048850202",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 36.6,
"facility_info": [],
"guidance": {
"direction_code": 11,
"direction_name": null,
"point_name": null,
"road_name": null
},
"line": {
"coordinates": [
[
139.79558555555556,
35.67339833
],
[
139.79539861111112,
35.67310556
]
],
"type": "LineString"
},
"link_id": "5150010000048850172",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 5.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79539861111112,
35.67310556
],
[
139.79537222222223,
35.67306444
]
],
"type": "LineString"
},
"link_id": "5150010000048850172",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 40.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79537222222223,
35.67306444
],
[
139.79515361111112,
35.67274528
]
],
"type": "LineString"
},
"link_id": "5150010000048850147",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 17.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79515361111112,
35.67274528
],
[
139.79506388888888,
35.67260722
]
],
"type": "LineString"
},
"link_id": "5150010000052326528",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 22.5,
"facility_info": [],
"guidance": {
"direction_code": 3,
"direction_name": null,
"point_name": "門前仲町",
"road_name": "都道10号線"
},
"line": {
"coordinates": [
[
139.79506388888888,
35.67260722
],
[
139.79495666666668,
35.67242472
]
],
"type": "LineString"
},
"link_id": "5150010000052326528",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 10.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79495666666668,
35.67242472
],
[
139.79490583333333,
35.67233639
]
],
"type": "LineString"
},
"link_id": "5150010000039446856",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 12,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79490583333333,
35.67233639
],
[
139.7947863888889,
35.67238583
]
],
"type": "LineString"
},
"link_id": "5150010000039446855",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 52.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7947863888889,
35.67238583
],
[
139.79427388888888,
35.67260333
]
],
"type": "LineString"
},
"link_id": "5150010000039446846",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 0.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79427388888888,
35.67260333
],
[
139.7942647222222,
35.67260722
]
],
"type": "LineString"
},
"link_id": "5150010000052324338",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 33.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7942647222222,
35.67260722
],
[
139.7939413888889,
35.67274667
]
],
"type": "LineString"
},
"link_id": "5150010000052324338",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 39.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7939413888889,
35.67274667
],
[
139.79356472222221,
35.67291806
]
],
"type": "LineString"
},
"link_id": "5150010000048850144",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 51.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79356472222221,
35.67291806
],
[
139.7930697222222,
35.67314778
]
],
"type": "LineString"
},
"link_id": "5150010000048850145",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 47.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7930697222222,
35.67314778
],
[
139.7926097222222,
35.67335278
]
],
"type": "LineString"
},
"link_id": "5150010000048850178",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 35.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7926097222222,
35.67335278
],
[
139.79226083333333,
35.67350444
]
],
"type": "LineString"
},
"link_id": "5150010000048850179",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 21.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79226083333333,
35.67350444
],
[
139.79205027777778,
35.67359278
]
],
"type": "LineString"
},
"link_id": "5150010000048850207",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 22.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79205027777778,
35.67359278
],
[
139.7918411111111,
35.67370167
]
],
"type": "LineString"
},
"link_id": "5150010000048850213",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 6.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7918411111111,
35.67370167
],
[
139.79177972222223,
35.673735
]
],
"type": "LineString"
},
"link_id": "5150010000080088257",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 10.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79177972222223,
35.673735
],
[
139.79168972222223,
35.67379139
]
],
"type": "LineString"
},
"link_id": "5150010000080088258",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 16,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79168972222223,
35.67379139
],
[
139.79154888888888,
35.67387833
]
],
"type": "LineString"
},
"link_id": "5150010000080088254",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 4.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79154888888888,
35.67387833
],
[
139.79151277777777,
35.6739025
]
],
"type": "LineString"
},
"link_id": "5150010000071131605",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 13.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79151277777777,
35.6739025
],
[
139.7914025,
35.67398056
]
],
"type": "LineString"
},
"link_id": "5150010000071131602",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 18.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7914025,
35.67398056
],
[
139.79124861111111,
35.67408778
]
],
"type": "LineString"
},
"link_id": "5150010000048850243",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 15.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79124861111111,
35.67408778
],
[
139.79111694444444,
35.67417778
]
],
"type": "LineString"
},
"link_id": "5150010000048850263",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 19.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79111694444444,
35.67417778
],
[
139.79094666666666,
35.67429028
]
],
"type": "LineString"
},
"link_id": "5150010000048850264",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 16.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79094666666666,
35.67429028
],
[
139.7908072222222,
35.67438139
]
],
"type": "LineString"
},
"link_id": "5150010000048850273",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 14.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7908072222222,
35.67438139
],
[
139.790685,
35.6744675
]
],
"type": "LineString"
},
"link_id": "5150010000048850274",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 52.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.790685,
35.6744675
],
[
139.7902586111111,
35.67478917
]
],
"type": "LineString"
},
"link_id": "5150010000048850289",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 27.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7902586111111,
35.67478917
],
[
139.7900388888889,
35.67496222
]
],
"type": "LineString"
},
"link_id": "5150010000052326534",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 3.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7900388888889,
35.67496222
],
[
139.79000944444445,
35.674985
]
],
"type": "LineString"
},
"link_id": "5150010000052326534",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 6.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.79000944444445,
35.674985
],
[
139.78995833333335,
35.67502639
]
],
"type": "LineString"
},
"link_id": "5150010000038146373",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 17.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78995833333335,
35.67502639
],
[
139.78981611111112,
35.6751325
]
],
"type": "LineString"
},
"link_id": "5150010000038146374",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 33.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78981611111112,
35.6751325
],
[
139.78953611111112,
35.67533222
]
],
"type": "LineString"
},
"link_id": "5150010000038146377",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 6.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78953611111112,
35.67533222
],
[
139.78947833333334,
35.67537389
]
],
"type": "LineString"
},
"link_id": "5150010000038146378",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 9.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78947833333334,
35.67537389
],
[
139.78940305555557,
35.67543833
]
],
"type": "LineString"
},
"link_id": "5150010000038146380",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 20.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78940305555557,
35.67543833
],
[
139.78925694444445,
35.67558167
]
],
"type": "LineString"
},
"link_id": "5150010000038146381",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 31.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78925694444445,
35.67558167
],
[
139.78901555555555,
35.67578028
]
],
"type": "LineString"
},
"link_id": "5150010000038146243",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 31.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78901555555555,
35.67578028
],
[
139.78875666666667,
35.67596944
]
],
"type": "LineString"
},
"link_id": "5150010000038146244",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 23,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78875666666667,
35.67596944
],
[
139.7885261111111,
35.67605111
]
],
"type": "LineString"
},
"link_id": "5150010000038146266",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 57.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7885261111111,
35.67605111
],
[
139.78791333333334,
35.67618389
]
],
"type": "LineString"
},
"link_id": "5150010000038146268",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 74.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78791333333334,
35.67618389
],
[
139.78712055555556,
35.67635556
]
],
"type": "LineString"
},
"link_id": "5150010000038181028",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 47.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78712055555556,
35.67635556
],
[
139.7866136111111,
35.67646556
]
],
"type": "LineString"
},
"link_id": "5150010000038181027",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 6.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7866136111111,
35.67646556
],
[
139.78653972222222,
35.6764775
]
],
"type": "LineString"
},
"link_id": "5150010000038146297",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 40.2,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "永代橋西",
"road_name": "都道10号線"
},
"line": {
"coordinates": [
[
139.78653972222222,
35.6764775
],
[
139.78611333333333,
35.67657944
]
],
"type": "LineString"
},
"link_id": "5150010000038146299",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 64.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78611333333333,
35.67657944
],
[
139.78579277777777,
35.67667611
],
[
139.78548444444445,
35.67683972
]
],
"type": "LineString"
},
"link_id": "5150010000038146310",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 31.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78548444444445,
35.67683972
],
[
139.7851961111111,
35.6769925
]
],
"type": "LineString"
},
"link_id": "5150010000038146311",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 25.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7851961111111,
35.6769925
],
[
139.7849613888889,
35.6771175
]
],
"type": "LineString"
},
"link_id": "5150010000038146333",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 25.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7849613888889,
35.6771175
],
[
139.78472666666667,
35.67724472
]
],
"type": "LineString"
},
"link_id": "5150010000038146334",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 10.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78472666666667,
35.67724472
],
[
139.7846275,
35.67729972
]
],
"type": "LineString"
},
"link_id": "5150010000038177512",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 25.4,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": null,
"road_name": "都道10号線"
},
"line": {
"coordinates": [
[
139.7846275,
35.67729972
],
[
139.78439944444443,
35.67743222
]
],
"type": "LineString"
},
"link_id": "5150010000038177513",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 35.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78439944444443,
35.67743222
],
[
139.7840775,
35.67762167
]
],
"type": "LineString"
},
"link_id": "5150010000038177522",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 36,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7840775,
35.67762167
],
[
139.78375305555556,
35.67781083
]
],
"type": "LineString"
},
"link_id": "5150010000038177523",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 51.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78375305555556,
35.67781083
],
[
139.78329166666666,
35.67808139
]
],
"type": "LineString"
},
"link_id": "5150010000038177532",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 34.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78329166666666,
35.67808139
],
[
139.7829886111111,
35.67826778
]
],
"type": "LineString"
},
"link_id": "5150010000038177533",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 17.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7829886111111,
35.67826778
],
[
139.78283555555555,
35.67836444
]
],
"type": "LineString"
},
"link_id": "5150010000038177545",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 37.9,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "新川一丁目",
"road_name": "都道10号線"
},
"line": {
"coordinates": [
[
139.78283555555555,
35.67836444
],
[
139.78250027777779,
35.67856833
]
],
"type": "LineString"
},
"link_id": "5150010000038177546",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 23.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78250027777779,
35.67856833
],
[
139.7822925,
35.67869833
]
],
"type": "LineString"
},
"link_id": "5150010000038177554",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 4.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7822925,
35.67869833
],
[
139.78225111111112,
35.67872389
]
],
"type": "LineString"
},
"link_id": "5150010000038177555",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 6.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78225111111112,
35.67872389
],
[
139.78219472222221,
35.67876028
]
],
"type": "LineString"
},
"link_id": "5150010000038177563",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 5.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78219472222221,
35.67876028
],
[
139.782145,
35.6787925
]
],
"type": "LineString"
},
"link_id": "5150010000038177564",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 12.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.782145,
35.6787925
],
[
139.78204027777778,
35.67886361
]
],
"type": "LineString"
},
"link_id": "5150010000038177568",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 10,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78204027777778,
35.67886361
],
[
139.78195472222222,
35.67891972
]
],
"type": "LineString"
},
"link_id": "5150010000038177569",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 37.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78195472222222,
35.67891972
],
[
139.78160472222223,
35.67910611
]
],
"type": "LineString"
},
"link_id": "5150010000038146428",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 40.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78160472222223,
35.67910611
],
[
139.78123583333334,
35.67930722
]
],
"type": "LineString"
},
"link_id": "5150010000038146429",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 35.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78123583333334,
35.67930722
],
[
139.78091416666666,
35.67948444
]
],
"type": "LineString"
},
"link_id": "5150010000038146438",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 30.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78091416666666,
35.67948444
],
[
139.780635,
35.67963444
]
],
"type": "LineString"
},
"link_id": "5150010000038146439",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 16.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.780635,
35.67963444
],
[
139.78048722222223,
35.679715
]
],
"type": "LineString"
},
"link_id": "5150010000038146447",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 32.1,
"facility_info": [],
"guidance": {
"direction_code": 3,
"direction_name": null,
"point_name": "茅場町",
"road_name": "都道50号線"
},
"line": {
"coordinates": [
[
139.78048722222223,
35.679715
],
[
139.78018555555556,
35.67986778
]
],
"type": "LineString"
},
"link_id": "5150010000038146448",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 12.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78018555555556,
35.67986778
],
[
139.78006083333332,
35.67992278
]
],
"type": "LineString"
},
"link_id": "5150010000038177504",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 11.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78006083333332,
35.67992278
],
[
139.78011722222223,
35.68001389
]
],
"type": "LineString"
},
"link_id": "5150010000038177502",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 21.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78011722222223,
35.68001389
],
[
139.78022305555555,
35.68018972
]
],
"type": "LineString"
},
"link_id": "5150010000038146461",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78022305555555,
35.68018972
],
[
139.78024472222222,
35.68023139
]
],
"type": "LineString"
},
"link_id": "5150010000038146462",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 3.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78024472222222,
35.68023139
],
[
139.78026222222223,
35.68026361
]
],
"type": "LineString"
},
"link_id": "5150010000038146465",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 7.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78026222222223,
35.68026361
],
[
139.78029694444444,
35.68032
]
],
"type": "LineString"
},
"link_id": "5150010000038146466",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 23.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78029694444444,
35.68032
],
[
139.7804138888889,
35.68051028
]
],
"type": "LineString"
},
"link_id": "5150010000038146471",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 33.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7804138888889,
35.68051028
],
[
139.7805852777778,
35.68077333
]
],
"type": "LineString"
},
"link_id": "5150010000038146472",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 48.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7805852777778,
35.68077333
],
[
139.78083083333334,
35.68116194
]
],
"type": "LineString"
},
"link_id": "5150010000038146477",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 50.3,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": null,
"road_name": "都道50号線"
},
"line": {
"coordinates": [
[
139.78083083333334,
35.68116194
],
[
139.78108277777778,
35.68156556
]
],
"type": "LineString"
},
"link_id": "5150010000038146478",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 53.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78108277777778,
35.68156556
],
[
139.7813538888889,
35.6819975
]
],
"type": "LineString"
},
"link_id": "5150010000038146485",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 63.1,
"facility_info": [],
"guidance": {
"direction_code": 4,
"direction_name": null,
"point_name": "蛎殻町",
"road_name": null
},
"line": {
"coordinates": [
[
139.7813538888889,
35.6819975
],
[
139.7815977777778,
35.68237556
],
[
139.78170138888888,
35.68248833
]
],
"type": "LineString"
},
"link_id": "5150010000038146486",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 25.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78170138888888,
35.68248833
],
[
139.78152416666666,
35.68266806
]
],
"type": "LineString"
},
"link_id": "5150010000038177943",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 2.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78152416666666,
35.68266806
],
[
139.78150527777777,
35.68268944
]
],
"type": "LineString"
},
"link_id": "5150010000038177944",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 11,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78150527777777,
35.68268944
],
[
139.78143305555557,
35.68276861
]
],
"type": "LineString"
},
"link_id": "5150010000038177947",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 16.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78143305555557,
35.68276861
],
[
139.78132694444446,
35.68289083
]
],
"type": "LineString"
},
"link_id": "5150010000038177948",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 12.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78132694444446,
35.68289083
],
[
139.78125305555557,
35.68298333
]
],
"type": "LineString"
},
"link_id": "5150010000038177889",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 6.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78125305555557,
35.68298333
],
[
139.78121555555555,
35.68303167
]
],
"type": "LineString"
},
"link_id": "5150010000038177890",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 9.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78121555555555,
35.68303167
],
[
139.78116194444445,
35.6831025
]
],
"type": "LineString"
},
"link_id": "5150010000038177892",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 9.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78116194444445,
35.6831025
],
[
139.78110444444445,
35.68317361
]
],
"type": "LineString"
},
"link_id": "5150010000038177893",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 10.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78110444444445,
35.68317361
],
[
139.7810225,
35.68323667
]
],
"type": "LineString"
},
"link_id": "5150010000038177895",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 14.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7810225,
35.68323667
],
[
139.78090194444445,
35.68332
]
],
"type": "LineString"
},
"link_id": "5150010000038177896",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 2.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78090194444445,
35.68332
],
[
139.78088166666666,
35.68333333
]
],
"type": "LineString"
},
"link_id": "5150010000064250182",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 5.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78088166666666,
35.68333333
],
[
139.78083333333333,
35.68336417
]
],
"type": "LineString"
},
"link_id": "5150010000064250183",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78083333333333,
35.68336417
],
[
139.78079861111112,
35.68338694
]
],
"type": "LineString"
},
"link_id": "5150010000038177902",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 19.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78079861111112,
35.68338694
],
[
139.7806322222222,
35.68349806
]
],
"type": "LineString"
},
"link_id": "5150010000038177903",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 15.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7806322222222,
35.68349806
],
[
139.78050083333332,
35.68358806
]
],
"type": "LineString"
},
"link_id": "5150010000038177904",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 0.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78050083333332,
35.68358806
],
[
139.78049277777777,
35.68359361
]
],
"type": "LineString"
},
"link_id": "5150010000051716211",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 15.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78049277777777,
35.68359361
],
[
139.7803586111111,
35.68368333
]
],
"type": "LineString"
},
"link_id": "5150010000051716211",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 29.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7803586111111,
35.68368333
],
[
139.78010277777778,
35.68384694
]
],
"type": "LineString"
},
"link_id": "5150010000048955348",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 9.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78010277777778,
35.68384694
],
[
139.78001527777778,
35.68390056
]
],
"type": "LineString"
},
"link_id": "5150010000048955349",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 15.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.78001527777778,
35.68390056
],
[
139.7798813888889,
35.68398361
]
],
"type": "LineString"
},
"link_id": "5150010000048955352",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 14,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7798813888889,
35.68398361
],
[
139.77975916666668,
35.68406028
]
],
"type": "LineString"
},
"link_id": "5150010000048955353",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 70.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77975916666668,
35.68406028
],
[
139.77915166666668,
35.68445333
]
],
"type": "LineString"
},
"link_id": "5150010000048955356",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 11.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77915166666668,
35.68445333
],
[
139.7790525,
35.6845175
]
],
"type": "LineString"
},
"link_id": "5150010000051687945",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 62.1,
"facility_info": [],
"guidance": {
"direction_code": 4,
"direction_name": null,
"point_name": null,
"road_name": null
},
"line": {
"coordinates": [
[
139.7790525,
35.6845175
],
[
139.7786086111111,
35.68480722
],
[
139.77859666666666,
35.68490389
]
],
"type": "LineString"
},
"link_id": "5150010000051687945",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 33.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77859666666666,
35.68490389
],
[
139.778225,
35.68489167
]
],
"type": "LineString"
},
"link_id": "5150010000048969614",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 21.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.778225,
35.68489167
],
[
139.77799166666668,
35.68488361
]
],
"type": "LineString"
},
"link_id": "5150010000048969611",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 16.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77799166666668,
35.68488361
],
[
139.77780805555557,
35.6848825
]
],
"type": "LineString"
},
"link_id": "5150010000048969608",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 72,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "江戸橋北",
"road_name": null
},
"line": {
"coordinates": [
[
139.77780805555557,
35.6848825
],
[
139.7770138888889,
35.68485417
]
],
"type": "LineString"
},
"link_id": "5150010000048969605",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 21.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7770138888889,
35.68485417
],
[
139.7767822222222,
35.68482333
]
],
"type": "LineString"
},
"link_id": "5150010000048969742",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 14,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7767822222222,
35.68482333
],
[
139.77662916666668,
35.68480056
]
],
"type": "LineString"
},
"link_id": "5150010000048969601",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 35.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77662916666668,
35.68480056
],
[
139.77624694444444,
35.68474139
]
],
"type": "LineString"
},
"link_id": "5150010000048969598",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 18.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77624694444444,
35.68474139
],
[
139.77604166666666,
35.68471472
]
],
"type": "LineString"
},
"link_id": "5150010000048969595",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 19.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77604166666666,
35.68471472
],
[
139.77583361111112,
35.68467833
]
],
"type": "LineString"
},
"link_id": "5150010000048969592",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 42.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77583361111112,
35.68467833
],
[
139.7753725,
35.68460611
]
],
"type": "LineString"
},
"link_id": "5150010000048969589",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 67.8,
"facility_info": [],
"guidance": {
"direction_code": 3,
"direction_name": null,
"point_name": null,
"road_name": "国道4号線"
},
"line": {
"coordinates": [
[
139.7753725,
35.68460611
],
[
139.77481583333332,
35.68451889
],
[
139.7746402777778,
35.68455639
]
],
"type": "LineString"
},
"link_id": "5150010000048969582",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 10.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7746402777778,
35.68455639
],
[
139.77453583333335,
35.68458583
]
],
"type": "LineString"
},
"link_id": "5150010000048969737",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 8.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77453583333335,
35.68458583
],
[
139.7745275,
35.68465972
]
],
"type": "LineString"
},
"link_id": "5150010000048969735",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 21.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7745275,
35.68465972
],
[
139.7744911111111,
35.68484889
]
],
"type": "LineString"
},
"link_id": "5150010000048969618",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 2.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7744911111111,
35.68484889
],
[
139.7744847222222,
35.68487278
]
],
"type": "LineString"
},
"link_id": "5150010000048969619",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 31.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7744847222222,
35.68487278
],
[
139.77438138888888,
35.68514639
]
],
"type": "LineString"
},
"link_id": "5150010000048969623",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 35.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77438138888888,
35.68514639
],
[
139.77425916666667,
35.68544694
]
],
"type": "LineString"
},
"link_id": "5150010000048969624",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 51.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77425916666667,
35.68544694
],
[
139.77407166666666,
35.68588417
]
],
"type": "LineString"
},
"link_id": "5150010000048969648",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 42.9,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "室町二丁目",
"road_name": "国道4号線"
},
"line": {
"coordinates": [
[
139.77407166666666,
35.68588417
],
[
139.77391333333333,
35.6862475
]
],
"type": "LineString"
},
"link_id": "5150010000048969649",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 41.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77391333333333,
35.6862475
],
[
139.77376305555555,
35.68660028
]
],
"type": "LineString"
},
"link_id": "5150010000048969686",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 26.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77376305555555,
35.68660028
],
[
139.77366916666668,
35.68682417
]
],
"type": "LineString"
},
"link_id": "5150010000048969687",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 35.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77366916666668,
35.68682417
],
[
139.77354166666666,
35.6871275
]
],
"type": "LineString"
},
"link_id": "5150010000048969534",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 45.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77354166666666,
35.6871275
],
[
139.77338083333333,
35.68751194
]
],
"type": "LineString"
},
"link_id": "5150010000048969535",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 29.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77338083333333,
35.68751194
],
[
139.7732736111111,
35.68776583
]
],
"type": "LineString"
},
"link_id": "5150010000048969754",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 16.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7732736111111,
35.68776583
],
[
139.77321472222224,
35.68790778
]
],
"type": "LineString"
},
"link_id": "5150010000048969755",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 32.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77321472222224,
35.68790778
],
[
139.77310083333333,
35.68818528
]
],
"type": "LineString"
},
"link_id": "5150010000048969777",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 44.5,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "室町3丁目",
"road_name": "国道17号線"
},
"line": {
"coordinates": [
[
139.77310083333333,
35.68818528
],
[
139.77294083333334,
35.68856472
]
],
"type": "LineString"
},
"link_id": "5150010000048969783",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 9.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77294083333334,
35.68856472
],
[
139.7729061111111,
35.68864806
]
],
"type": "LineString"
},
"link_id": "5150010000048983071",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 33.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7729061111111,
35.68864806
],
[
139.77278694444445,
35.68892972
]
],
"type": "LineString"
},
"link_id": "5150010000048969808",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 14,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77278694444445,
35.68892972
],
[
139.77273861111112,
35.68904917
]
],
"type": "LineString"
},
"link_id": "5150010000048969809",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 10.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77273861111112,
35.68904917
],
[
139.77270222222222,
35.68913889
]
],
"type": "LineString"
},
"link_id": "5150010000048969826",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 8.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77270222222222,
35.68913889
],
[
139.77267166666667,
35.68921278
]
],
"type": "LineString"
},
"link_id": "5150010000048969827",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 11.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77267166666667,
35.68921278
],
[
139.7726311111111,
35.68931194
]
],
"type": "LineString"
},
"link_id": "5150010000048969836",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 12,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7726311111111,
35.68931194
],
[
139.77258972222222,
35.68941528
]
],
"type": "LineString"
},
"link_id": "5150010000048969837",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 2.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77258972222222,
35.68941528
],
[
139.7725802777778,
35.68943528
]
],
"type": "LineString"
},
"link_id": "5150010000048969853",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 2.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7725802777778,
35.68943528
],
[
139.77257083333333,
35.68945556
]
],
"type": "LineString"
},
"link_id": "5150010000048969854",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 12.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77257083333333,
35.68945556
],
[
139.7725252777778,
35.68956528
]
],
"type": "LineString"
},
"link_id": "5150010000048969860",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 23,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "室町四丁目",
"road_name": "国道17号線"
},
"line": {
"coordinates": [
[
139.7725252777778,
35.68956528
],
[
139.77244194444444,
35.68976111
]
],
"type": "LineString"
},
"link_id": "5150010000048969861",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 24.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77244194444444,
35.68976111
],
[
139.772355,
35.68996917
]
],
"type": "LineString"
},
"link_id": "5150010000048969882",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 7.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.772355,
35.68996917
],
[
139.77232805555556,
35.69003361
]
],
"type": "LineString"
},
"link_id": "5150010000048969883",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 9.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77232805555556,
35.69003361
],
[
139.77229333333332,
35.69011528
]
],
"type": "LineString"
},
"link_id": "5150010000048969893",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 14.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77229333333332,
35.69011528
],
[
139.77224388888888,
35.69023583
]
],
"type": "LineString"
},
"link_id": "5150010000048969894",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 19.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77224388888888,
35.69023583
],
[
139.77217916666666,
35.69040361
]
],
"type": "LineString"
},
"link_id": "5150010000048969907",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 10.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77217916666666,
35.69040361
],
[
139.77214305555555,
35.690495
]
],
"type": "LineString"
},
"link_id": "5150010000048969908",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 4.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77214305555555,
35.690495
],
[
139.77212694444444,
35.69053639
]
],
"type": "LineString"
},
"link_id": "5150010000048969918",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 5.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77212694444444,
35.69053639
],
[
139.77210666666667,
35.69058056
]
],
"type": "LineString"
},
"link_id": "5150010000048969919",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 8.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77210666666667,
35.69058056
],
[
139.77207611111112,
35.69065306
]
],
"type": "LineString"
},
"link_id": "5150010000048969925",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 28.7,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "今川橋",
"road_name": "国道17号線"
},
"line": {
"coordinates": [
[
139.77207611111112,
35.69065306
],
[
139.77197,
35.69089583
]
],
"type": "LineString"
},
"link_id": "5150010000048969926",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 49.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77197,
35.69089583
],
[
139.77179833333332,
35.69131833
]
],
"type": "LineString"
},
"link_id": "5150010000048969948",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 34.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77179833333332,
35.69131833
],
[
139.77168444444445,
35.69161056
]
],
"type": "LineString"
},
"link_id": "5150010000048969949",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 16.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77168444444445,
35.69161056
],
[
139.77163083333335,
35.69174861
]
],
"type": "LineString"
},
"link_id": "5150010000048969979",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 28,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77163083333335,
35.69174861
],
[
139.77153555555554,
35.69198889
]
],
"type": "LineString"
},
"link_id": "5150010000048969980",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 23.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77153555555554,
35.69198889
],
[
139.7714552777778,
35.6921875
]
],
"type": "LineString"
},
"link_id": "5150010000048983003",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 11.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7714552777778,
35.6921875
],
[
139.7714161111111,
35.69228528
]
],
"type": "LineString"
},
"link_id": "5150010000048983004",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 35.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7714161111111,
35.69228528
],
[
139.77129027777778,
35.69258417
]
],
"type": "LineString"
},
"link_id": "5150010000048983031",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 37.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77129027777778,
35.69258417
],
[
139.77115722222223,
35.69290222
]
],
"type": "LineString"
},
"link_id": "5150010000048983032",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 6.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77115722222223,
35.69290222
],
[
139.77113583333335,
35.69295972
]
],
"type": "LineString"
},
"link_id": "5150010000048983331",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 18.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77113583333335,
35.69295972
],
[
139.77107555555557,
35.69312083
]
],
"type": "LineString"
},
"link_id": "5150010000048983332",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 30.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77107555555557,
35.69312083
],
[
139.77097361111112,
35.69338611
]
],
"type": "LineString"
},
"link_id": "5150010000048983345",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 13.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77097361111112,
35.69338611
],
[
139.77092416666667,
35.69350306
]
],
"type": "LineString"
},
"link_id": "5150010000048983346",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 15.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77092416666667,
35.69350306
],
[
139.77087166666666,
35.69363167
]
],
"type": "LineString"
},
"link_id": "5150010000048983355",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 15.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77087166666666,
35.69363167
],
[
139.77081527777779,
35.69376722
]
],
"type": "LineString"
},
"link_id": "5150010000048983356",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 22.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77081527777779,
35.69376722
],
[
139.77073777777778,
35.69395639
]
],
"type": "LineString"
},
"link_id": "5150010000048983377",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 36,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77073777777778,
35.69395639
],
[
139.7706088888889,
35.69426333
]
],
"type": "LineString"
},
"link_id": "5150010000048983378",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 37.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7706088888889,
35.69426333
],
[
139.77047472222222,
35.69458
]
],
"type": "LineString"
},
"link_id": "5150010000051131114",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 4.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77047472222222,
35.69458
],
[
139.77046,
35.69461611
]
],
"type": "LineString"
},
"link_id": "5150010000051131114",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 29.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77046,
35.69461611
],
[
139.77035555555557,
35.69486417
]
],
"type": "LineString"
},
"link_id": "5150010000039554174",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 19.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77035555555557,
35.69486417
],
[
139.7702872222222,
35.69503194
]
],
"type": "LineString"
},
"link_id": "5150010000039554192",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 19.7,
"facility_info": [],
"guidance": {
"direction_code": 2,
"direction_name": null,
"point_name": null,
"road_name": null
},
"line": {
"coordinates": [
[
139.7702872222222,
35.69503194
],
[
139.77022527777777,
35.69520083
]
],
"type": "LineString"
},
"link_id": "5150010000039554193",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 19.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77022527777777,
35.69520083
],
[
139.77013833333334,
35.69536444
]
],
"type": "LineString"
},
"link_id": "5150010000039554216",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 42.9,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "須田町",
"road_name": null
},
"line": {
"coordinates": [
[
139.77013833333334,
35.69536444
],
[
139.77000388888888,
35.69573583
]
],
"type": "LineString"
},
"link_id": "5150010000039554223",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 12.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77000388888888,
35.69573583
],
[
139.77002027777777,
35.69584833
]
],
"type": "LineString"
},
"link_id": "5150010000039554360",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 68.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77002027777777,
35.69584833
],
[
139.76979333333333,
35.69643472
]
],
"type": "LineString"
},
"link_id": "5150010000039554270",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 48.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76979333333333,
35.69643472
],
[
139.76965944444444,
35.69680194
],
[
139.7696552777778,
35.69685167
]
],
"type": "LineString"
},
"link_id": "5150010000039554299",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 23.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7696552777778,
35.69685167
],
[
139.76964583333333,
35.69694306
],
[
139.76960166666666,
35.69705556
]
],
"type": "LineString"
},
"link_id": "5150010000039554320",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 3.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76960166666666,
35.69705556
],
[
139.7695911111111,
35.69708889
]
],
"type": "LineString"
},
"link_id": "5150010000075700699",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 66.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7695911111111,
35.69708889
],
[
139.769485,
35.69736944
],
[
139.76923583333334,
35.69759444
]
],
"type": "LineString"
},
"link_id": "5150010000039554325",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 68.6,
"facility_info": [],
"guidance": {
"direction_code": 4,
"direction_name": null,
"point_name": "神田郵便局前",
"road_name": "都道405号線"
},
"line": {
"coordinates": [
[
139.76923583333334,
35.69759444
],
[
139.76872722222222,
35.69805472
]
],
"type": "LineString"
},
"link_id": "5150010000039554338",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 42.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76872722222222,
35.69805472
],
[
139.76847916666668,
35.6977275
]
],
"type": "LineString"
},
"link_id": "5150010000039554350",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 17.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76847916666668,
35.6977275
],
[
139.7683825,
35.69758917
]
],
"type": "LineString"
},
"link_id": "5150010000039554339",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 37.5,
"facility_info": [],
"guidance": {
"direction_code": 11,
"direction_name": null,
"point_name": null,
"road_name": null
},
"line": {
"coordinates": [
[
139.7683825,
35.69758917
],
[
139.76817555555556,
35.69729528
]
],
"type": "LineString"
},
"link_id": "5150010000039554328",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 14.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76817555555556,
35.69729528
],
[
139.76809555555556,
35.69718167
]
],
"type": "LineString"
},
"link_id": "5150010000039554328",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 5.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76809555555556,
35.69718167
],
[
139.76806638888888,
35.69714
]
],
"type": "LineString"
},
"link_id": "5150010000052970623",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 57,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76806638888888,
35.69714
],
[
139.76775388888888,
35.69669472
]
],
"type": "LineString"
},
"link_id": "5150010000052970623",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 32.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76775388888888,
35.69669472
],
[
139.76764083333333,
35.69641194
]
],
"type": "LineString"
},
"link_id": "5150010000052953865",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 10.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76764083333333,
35.69641194
],
[
139.7676088888889,
35.69632194
]
],
"type": "LineString"
},
"link_id": "5150010000052953860",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 36.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7676088888889,
35.69632194
],
[
139.7675311111111,
35.6961075
],
[
139.7675136111111,
35.69600694
]
],
"type": "LineString"
},
"link_id": "5150010000052953848",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 20.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7675136111111,
35.69600694
],
[
139.76750972222223,
35.69582056
]
],
"type": "LineString"
},
"link_id": "5150010000052953837",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 37.5,
"facility_info": [],
"guidance": {
"direction_code": 4,
"direction_name": null,
"point_name": "淡路町",
"road_name": "都道302号線"
},
"line": {
"coordinates": [
[
139.76750972222223,
35.69582056
],
[
139.76751638888888,
35.6954825
]
],
"type": "LineString"
},
"link_id": "5150010000052953827",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 27.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76751638888888,
35.6954825
],
[
139.7677872222222,
35.69559083
]
],
"type": "LineString"
},
"link_id": "5150010000052953820",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 12.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7677872222222,
35.69559083
],
[
139.76790777777776,
35.69563917
]
],
"type": "LineString"
},
"link_id": "5150010000052953821",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 12.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76790777777776,
35.69563917
],
[
139.7680286111111,
35.6956875
]
],
"type": "LineString"
},
"link_id": "5150010000052953824",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 3.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7680286111111,
35.6956875
],
[
139.76806638888888,
35.6957025
]
],
"type": "LineString"
},
"link_id": "5150010000053024062",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 9.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76806638888888,
35.6957025
],
[
139.7681638888889,
35.6957425
]
],
"type": "LineString"
},
"link_id": "5150010000053024062",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 10.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7681638888889,
35.6957425
],
[
139.76827277777778,
35.69578417
]
],
"type": "LineString"
},
"link_id": "5150010000039554235",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 34.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76827277777778,
35.69578417
],
[
139.76842166666665,
35.69583778
],
[
139.76862944444446,
35.69587389
]
],
"type": "LineString"
},
"link_id": "5150010000039554236",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 25.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76862944444446,
35.69587389
],
[
139.768915,
35.69588472
]
],
"type": "LineString"
},
"link_id": "5150010000039554262",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 18.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.768915,
35.69588472
],
[
139.7691175,
35.6958875
]
],
"type": "LineString"
},
"link_id": "5150010000039554263",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 45.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7691175,
35.6958875
],
[
139.76961527777777,
35.69586861
]
],
"type": "LineString"
},
"link_id": "5150010000039554258",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 36.7,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "須田町",
"road_name": "都道302号線"
},
"line": {
"coordinates": [
[
139.76961527777777,
35.69586861
],
[
139.77002027777777,
35.69584833
]
],
"type": "LineString"
},
"link_id": "5150010000039554252",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 33,
"facility_info": [],
"guidance": {
"direction_code": 4,
"direction_name": null,
"point_name": null,
"road_name": "国道17号線"
},
"line": {
"coordinates": [
[
139.77002027777777,
35.69584833
],
[
139.77038472222222,
35.69583361
]
],
"type": "LineString"
},
"link_id": "5150010000039554257",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 44.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77038472222222,
35.69583361
],
[
139.77052972222222,
35.69622
]
],
"type": "LineString"
},
"link_id": "5150010000039554274",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 29.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77052972222222,
35.69622
],
[
139.77063027777777,
35.69647194
]
],
"type": "LineString"
},
"link_id": "5150010000039554275",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 13.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77063027777777,
35.69647194
],
[
139.77067166666666,
35.696585
]
],
"type": "LineString"
},
"link_id": "5150010000039554298",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 16.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77067166666666,
35.696585
],
[
139.77072555555554,
35.69672444
]
],
"type": "LineString"
},
"link_id": "5150010000039554304",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 5.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77072555555554,
35.69672444
],
[
139.77074833333333,
35.69677389
]
],
"type": "LineString"
},
"link_id": "5150010000039554310",
"passage_link": true,
"regulation": {
"danger": false,
"height": 390,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 15.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77074833333333,
35.69677389
],
[
139.7708047222222,
35.69690944
]
],
"type": "LineString"
},
"link_id": "5150010000039554311",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 35.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7708047222222,
35.69690944
],
[
139.77092555555555,
35.697215
]
],
"type": "LineString"
},
"link_id": "5150010000039554322",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 47.9,
"facility_info": [],
"guidance": {
"direction_code": 4,
"direction_name": null,
"point_name": "万世橋",
"road_name": "国道17号線"
},
"line": {
"coordinates": [
[
139.77092555555555,
35.697215
],
[
139.77107944444444,
35.69762806
]
],
"type": "LineString"
},
"link_id": "5150010000039554323",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 49.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77107944444444,
35.69762806
],
[
139.7706088888889,
35.69785194
]
],
"type": "LineString"
},
"link_id": "5150010000039554345",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 22.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7706088888889,
35.69785194
],
[
139.7704011111111,
35.69795944
]
],
"type": "LineString"
},
"link_id": "5150010000039554346",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 19.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7704011111111,
35.69795944
],
[
139.77021583333334,
35.69805056
]
],
"type": "LineString"
},
"link_id": "5150010000039579543",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 13.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.77021583333334,
35.69805056
],
[
139.7700913888889,
35.69811361
]
],
"type": "LineString"
},
"link_id": "5150010000039579544",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 30.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7700913888889,
35.69811361
],
[
139.76980166666667,
35.69825722
]
],
"type": "LineString"
},
"link_id": "5150010000039579550",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 35.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76980166666667,
35.69825722
],
[
139.7694663888889,
35.698425
]
],
"type": "LineString"
},
"link_id": "5150010000039579551",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 14,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7694663888889,
35.698425
],
[
139.76933472222223,
35.69849194
]
],
"type": "LineString"
},
"link_id": "5150010000039579564",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 32.2,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "昌平橋",
"road_name": "都道405号線"
},
"line": {
"coordinates": [
[
139.76933472222223,
35.69849194
],
[
139.76903027777777,
35.69864333
]
],
"type": "LineString"
},
"link_id": "5150010000039579565",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 11.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76903027777777,
35.69864333
],
[
139.76892444444445,
35.69869694
]
],
"type": "LineString"
},
"link_id": "5150010000076129880",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 47.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76892444444445,
35.69869694
],
[
139.76848194444443,
35.698925
]
],
"type": "LineString"
},
"link_id": "5150010000039579582",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 35.2,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "外神田二丁目",
"road_name": "都道405号線"
},
"line": {
"coordinates": [
[
139.76848194444443,
35.698925
],
[
139.76815611111113,
35.69909778
]
],
"type": "LineString"
},
"link_id": "5150010000039579583",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 9.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76815611111113,
35.69909778
],
[
139.76806638888888,
35.69914472
]
],
"type": "LineString"
},
"link_id": "5150010000052970628",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 57.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76806638888888,
35.69914472
],
[
139.76752305555556,
35.69941306
]
],
"type": "LineString"
},
"link_id": "5150010000052970628",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 51.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76752305555556,
35.69941306
],
[
139.7670186111111,
35.69962361
]
],
"type": "LineString"
},
"link_id": "5150010000052956126",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 119,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7670186111111,
35.69962361
],
[
139.76651055555556,
35.69977528
],
[
139.76577416666666,
35.69996694
]
],
"type": "LineString"
},
"link_id": "5150010000052956128",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 47.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76577416666666,
35.69996694
],
[
139.7652875,
35.7001225
]
],
"type": "LineString"
},
"link_id": "5150010000052956011",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 143.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7652875,
35.7001225
],
[
139.763815,
35.70060806
]
],
"type": "LineString"
},
"link_id": "5150010000052956016",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 7.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.763815,
35.70060806
],
[
139.76373583333333,
35.700635
]
],
"type": "LineString"
},
"link_id": "5150010000052956109",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 85.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76373583333333,
35.700635
],
[
139.76312027777777,
35.70087917
],
[
139.76297277777778,
35.70105083
]
],
"type": "LineString"
},
"link_id": "5150010000052956032",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 71.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76297277777778,
35.70105083
],
[
139.7625488888889,
35.70154278
],
[
139.76250055555556,
35.70156417
]
],
"type": "LineString"
},
"link_id": "5150010000052956033",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 19.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76250055555556,
35.70156417
],
[
139.76230611111112,
35.70162861
]
],
"type": "LineString"
},
"link_id": "5150010000052956039",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 31.5,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "順天堂前",
"road_name": "都道405号線"
},
"line": {
"coordinates": [
[
139.76230611111112,
35.70162861
],
[
139.76198694444443,
35.70174278
]
],
"type": "LineString"
},
"link_id": "5150010000052956040",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 55.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76198694444443,
35.70174278
],
[
139.76177916666666,
35.70180556
],
[
139.76139555555557,
35.70186444
]
],
"type": "LineString"
},
"link_id": "5150010000052956046",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 29.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76139555555557,
35.70186444
],
[
139.76107888888887,
35.70191278
]
],
"type": "LineString"
},
"link_id": "5150010000052956047",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 92.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.76107888888887,
35.70191278
],
[
139.7600611111111,
35.70195333
]
],
"type": "LineString"
},
"link_id": "5150010000052956052",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 46.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7600611111111,
35.70195333
],
[
139.75954611111112,
35.70195472
]
],
"type": "LineString"
},
"link_id": "5150010000052956057",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 50.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.75954611111112,
35.70195472
],
[
139.75898833333332,
35.7019425
]
],
"type": "LineString"
},
"link_id": "5150010000052956053",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 35.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.75898833333332,
35.7019425
],
[
139.7585938888889,
35.70193694
]
],
"type": "LineString"
},
"link_id": "5150010000052956423",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 78.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7585938888889,
35.70193694
],
[
139.75773138888889,
35.70190639
]
],
"type": "LineString"
},
"link_id": "5150010000052953915",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 59.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.75773138888889,
35.70190639
],
[
139.75708,
35.70195972
]
],
"type": "LineString"
},
"link_id": "5150010000053024068",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 33.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.75708,
35.70195972
],
[
139.7567163888889,
35.70202028
]
],
"type": "LineString"
},
"link_id": "5150010000053024068",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 113.3,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "水道橋",
"road_name": "都道405号線"
},
"line": {
"coordinates": [
[
139.7567163888889,
35.70202028
],
[
139.7563275,
35.70209944
],
[
139.75552027777778,
35.70231667
]
],
"type": "LineString"
},
"link_id": "5150010000038004982",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 16.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.75552027777778,
35.70231667
],
[
139.75534166666668,
35.70234889
]
],
"type": "LineString"
},
"link_id": "5150010000038005055",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 68.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.75534166666668,
35.70234889
],
[
139.75506833333333,
35.70239833
],
[
139.75460944444444,
35.70251361
]
],
"type": "LineString"
},
"link_id": "5150010000038004994",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 78.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.75460944444444,
35.70251361
],
[
139.75378583333332,
35.70272833
]
],
"type": "LineString"
},
"link_id": "5150010000038005002",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 40.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.75378583333332,
35.70272833
],
[
139.7533488888889,
35.7028075
]
],
"type": "LineString"
},
"link_id": "5150010000038005005",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 58.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7533488888889,
35.7028075
],
[
139.75270805555556,
35.7028625
]
],
"type": "LineString"
},
"link_id": "5150010000038005007",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 26.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.75270805555556,
35.7028625
],
[
139.75241416666665,
35.70288667
]
],
"type": "LineString"
},
"link_id": "5150010000038005009",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 40.9,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "後楽橋",
"road_name": "都道405号線"
},
"line": {
"coordinates": [
[
139.75241416666665,
35.70288667
],
[
139.751965,
35.70292417
]
],
"type": "LineString"
},
"link_id": "5150010000038005010",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 8.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.751965,
35.70292417
],
[
139.75186833333333,
35.70293361
]
],
"type": "LineString"
},
"link_id": "5150010000038005057",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 43.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.75186833333333,
35.70293361
],
[
139.75138555555554,
35.70297639
]
],
"type": "LineString"
},
"link_id": "5150010000038005015",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 39.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.75138555555554,
35.70297639
],
[
139.7509536111111,
35.7030125
]
],
"type": "LineString"
},
"link_id": "5150010000038005016",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 14.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7509536111111,
35.7030125
],
[
139.7507913888889,
35.70302611
]
],
"type": "LineString"
},
"link_id": "5150010000038005018",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 26.5,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "小石川橋",
"road_name": "都道405号線"
},
"line": {
"coordinates": [
[
139.7507913888889,
35.70302611
],
[
139.7504988888889,
35.70305028
]
],
"type": "LineString"
},
"link_id": "5150010000038005019",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 139.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7504988888889,
35.70305028
],
[
139.74896194444443,
35.70317639
]
],
"type": "LineString"
},
"link_id": "5150010000038005022",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 140,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "飯田橋職安前",
"road_name": "都道405号線"
},
"line": {
"coordinates": [
[
139.74896194444443,
35.70317639
],
[
139.74741583333332,
35.70319778
]
],
"type": "LineString"
},
"link_id": "5150010000038005023",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 58.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.74741583333332,
35.70319778
],
[
139.74676527777777,
35.70318556
]
],
"type": "LineString"
},
"link_id": "5150010000038005323",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 61.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.74676527777777,
35.70318556
],
[
139.74646083333334,
35.7031575
],
[
139.74609361111112,
35.70308639
]
],
"type": "LineString"
},
"link_id": "5150010000052984146",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 1.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.74609361111112,
35.70308639
],
[
139.74608,
35.70308361
]
],
"type": "LineString"
},
"link_id": "5150010000052984146",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 49.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.74608,
35.70308361
],
[
139.74556527777779,
35.702935
]
],
"type": "LineString"
},
"link_id": "5150010000052748919",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 47.1,
"facility_info": [],
"guidance": {
"direction_code": 4,
"direction_name": null,
"point_name": null,
"road_name": "都道8号線"
},
"line": {
"coordinates": [
[
139.74556527777779,
35.702935
],
[
139.7451011111111,
35.70274444
]
],
"type": "LineString"
},
"link_id": "5150010000052748911",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 61.7,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": null,
"road_name": "都道8号線"
},
"line": {
"coordinates": [
[
139.7451011111111,
35.70274444
],
[
139.74529555555554,
35.70234889
],
[
139.745305,
35.70221889
]
],
"type": "LineString"
},
"link_id": "5150010000052748896",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 46.2,
"facility_info": [],
"guidance": {
"direction_code": 3,
"direction_name": null,
"point_name": "飯田橋駅東口",
"road_name": null
},
"line": {
"coordinates": [
[
139.745305,
35.70221889
],
[
139.745695,
35.70195056
]
],
"type": "LineString"
},
"link_id": "5150010000052748887",
"passage_link": true,
"regulation": {
"danger": false,
"height": 400,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 7.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.745695,
35.70195056
],
[
139.74563083333334,
35.70191278
]
],
"type": "LineString"
},
"link_id": "5150010000052748932",
"passage_link": false,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 29.7,
"facility_info": [],
"guidance": {
"direction_code": 11,
"direction_name": null,
"point_name": null,
"road_name": null
},
"line": {
"coordinates": [
[
139.74563083333334,
35.70191278
],
[
139.74536527777778,
35.70175556
]
],
"type": "LineString"
},
"link_id": "5150010000052748880",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 44.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.74536527777778,
35.70175556
],
[
139.74529833333332,
35.70171583
],
[
139.7450002777778,
35.70148778
]
],
"type": "LineString"
},
"link_id": "5150010000052748880",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 100.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7450002777778,
35.70148778
],
[
139.74476833333333,
35.70129083
],
[
139.74461805555555,
35.70112556
],
[
139.74446,
35.70071917
]
],
"type": "LineString"
},
"link_id": "5150010000052748866",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 47,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.74446,
35.70071917
],
[
139.74428972222222,
35.70031833
]
],
"type": "LineString"
},
"link_id": "5150010000052748859",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 59.3,
"facility_info": [],
"guidance": {
"direction_code": 3,
"direction_name": null,
"point_name": null,
"road_name": null
},
"line": {
"coordinates": [
[
139.74428972222222,
35.70031833
],
[
139.74412611111111,
35.69996167
],
[
139.74400527777777,
35.699845
]
],
"type": "LineString"
},
"link_id": "5150010000052748854",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 129.5,
"facility_info": [],
"guidance": {
"direction_code": 4,
"direction_name": null,
"point_name": "神楽坂下",
"road_name": "都道405号線"
},
"line": {
"coordinates": [
[
139.74400527777777,
35.699845
],
[
139.7427622222222,
35.70042167
]
],
"type": "LineString"
},
"link_id": "5150010000065405128",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 70,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 130.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7427622222222,
35.70042167
],
[
139.74192666666667,
35.69946
]
],
"type": "LineString"
},
"link_id": "5150010000052748673",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 62.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.74192666666667,
35.69946
],
[
139.74152305555555,
35.69900417
]
],
"type": "LineString"
},
"link_id": "5150010000052748665",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 65.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.74152305555555,
35.69900417
],
[
139.74110444444443,
35.69852111
]
],
"type": "LineString"
},
"link_id": "5150010000052748660",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 94.1,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": null,
"road_name": "都道405号線"
},
"line": {
"coordinates": [
[
139.74110444444443,
35.69852111
],
[
139.74054944444444,
35.697805
]
],
"type": "LineString"
},
"link_id": "5150010000052748619",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 129.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.74054944444444,
35.697805
],
[
139.73969888888888,
35.69686361
]
],
"type": "LineString"
},
"link_id": "5150010000052748605",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 76.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.73969888888888,
35.69686361
],
[
139.73926722222222,
35.69626972
]
],
"type": "LineString"
},
"link_id": "5150010000052748594",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 102,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.73926722222222,
35.69626972
],
[
139.73874555555557,
35.69545556
]
],
"type": "LineString"
},
"link_id": "5150010000052748580",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 115.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.73874555555557,
35.69545556
],
[
139.73865972222222,
35.69532278
],
[
139.7380575,
35.69458
]
],
"type": "LineString"
},
"link_id": "5150010000052989041",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 47.5,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": null,
"road_name": "都道405号線"
},
"line": {
"coordinates": [
[
139.7380575,
35.69458
],
[
139.7377611111111,
35.69422972
]
],
"type": "LineString"
},
"link_id": "5150010000052989041",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 90.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7377611111111,
35.69422972
],
[
139.7371536111111,
35.6935875
]
],
"type": "LineString"
},
"link_id": "5150010000052909751",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 74.4,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": null,
"road_name": "都道405号線"
},
"line": {
"coordinates": [
[
139.7371536111111,
35.6935875
],
[
139.73657416666666,
35.69311139
]
],
"type": "LineString"
},
"link_id": "5150010000052909742",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 48.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.73657416666666,
35.69311139
],
[
139.7361813888889,
35.69280833
]
],
"type": "LineString"
},
"link_id": "5150010000052909734",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 65.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7361813888889,
35.69280833
],
[
139.73565027777778,
35.69240611
]
],
"type": "LineString"
},
"link_id": "5150010000052909602",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 47.9,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": null,
"road_name": "都道302号線"
},
"line": {
"coordinates": [
[
139.73565027777778,
35.69240611
],
[
139.73522111111112,
35.69215361
]
],
"type": "LineString"
},
"link_id": "5150010000052909599",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 6.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.73522111111112,
35.69215361
],
[
139.7351647222222,
35.69212139
]
],
"type": "LineString"
},
"link_id": "5150010000052909621",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 6.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7351647222222,
35.69212139
],
[
139.7351072222222,
35.69208667
]
],
"type": "LineString"
},
"link_id": "5150010000053015581",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 82.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7351072222222,
35.69208667
],
[
139.73454805555556,
35.69179417
],
[
139.73432111111111,
35.69170861
]
],
"type": "LineString"
},
"link_id": "5150010000053015581",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 21.1,
"facility_info": [],
"guidance": {
"direction_code": 2,
"direction_name": null,
"point_name": "市谷八幡町",
"road_name": "都道405号線"
},
"line": {
"coordinates": [
[
139.73432111111111,
35.69170861
],
[
139.7340986111111,
35.69165361
]
],
"type": "LineString"
},
"link_id": "5150010000049064278",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 40,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 148.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7340986111111,
35.69165361
],
[
139.7337875,
35.69132778
],
[
139.7332188888889,
35.69091194
],
[
139.7329638888889,
35.69068917
]
],
"type": "LineString"
},
"link_id": "5150010000049064250",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 64.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7329638888889,
35.69068917
],
[
139.73248527777778,
35.69025472
]
],
"type": "LineString"
},
"link_id": "5150010000049064235",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 180.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.73248527777778,
35.69025472
],
[
139.7323738888889,
35.6901825
],
[
139.73132388888888,
35.68990194
],
[
139.73092444444444,
35.68976389
],
[
139.7308036111111,
35.68969
],
[
139.7307377777778,
35.68956944
]
],
"type": "LineString"
},
"link_id": "5150010000049064222",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 59.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7307377777778,
35.68956944
],
[
139.73051944444444,
35.68906361
]
],
"type": "LineString"
},
"link_id": "5150010000049064211",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 126.7,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "本塩町南",
"road_name": "都道405号線"
},
"line": {
"coordinates": [
[
139.73051944444444,
35.68906361
],
[
139.73018416666667,
35.68795472
]
],
"type": "LineString"
},
"link_id": "5150010000049064193",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 52,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.73018416666667,
35.68795472
],
[
139.730035,
35.68750278
]
],
"type": "LineString"
},
"link_id": "5150010000049064081",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 97.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.730035,
35.68750278
],
[
139.72977777777777,
35.68664722
]
],
"type": "LineString"
},
"link_id": "5150010000049064069",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 22.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.72977777777777,
35.68664722
],
[
139.72973222222222,
35.68645139
]
],
"type": "LineString"
},
"link_id": "5150010000049064056",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 20.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.72973222222222,
35.68645139
],
[
139.72967694444444,
35.68627028
]
],
"type": "LineString"
},
"link_id": "5150010000049064038",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 39.6,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "四谷見附",
"road_name": "都道405号線"
},
"line": {
"coordinates": [
[
139.72967694444444,
35.68627028
],
[
139.72958444444444,
35.68592167
]
],
"type": "LineString"
},
"link_id": "5150010000049064021",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 16.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.72958444444444,
35.68592167
],
[
139.7295536111111,
35.68577667
]
],
"type": "LineString"
},
"link_id": "5150010000049064090",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 47.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7295536111111,
35.68577667
],
[
139.7294811111111,
35.68535583
]
],
"type": "LineString"
},
"link_id": "5150010000049025997",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 23.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7294811111111,
35.68535583
],
[
139.72945305555555,
35.68514778
]
],
"type": "LineString"
},
"link_id": "5150010000067915909",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 110.4,
"facility_info": [],
"guidance": {
"direction_code": 1,
"direction_name": null,
"point_name": "四谷中学校前",
"road_name": "都道414号線"
},
"line": {
"coordinates": [
[
139.72945305555555,
35.68514778
],
[
139.7293486111111,
35.68438611
],
[
139.72932166666666,
35.68426528
],
[
139.7292775,
35.68416722
]
],
"type": "LineString"
},
"link_id": "5150010000067915912",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 12.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7292775,
35.68416722
],
[
139.729225,
35.68406694
]
],
"type": "LineString"
},
"link_id": "5150010000076430270",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 61.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.729225,
35.68406694
],
[
139.72909638888888,
35.68386694
],
[
139.72886444444444,
35.68359361
]
],
"type": "LineString"
},
"link_id": "5150010000062505527",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 112.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.72886444444444,
35.68359361
],
[
139.72814555555556,
35.68277
]
],
"type": "LineString"
},
"link_id": "5150010000062505527",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 9.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.72814555555556,
35.68277
],
[
139.72808527777778,
35.68270028
]
],
"type": "LineString"
},
"link_id": "5150010000070418388",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 21.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.72808527777778,
35.68270028
],
[
139.72795222222223,
35.68253944
]
],
"type": "LineString"
},
"link_id": "5150010000070418384",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 171.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.72795222222223,
35.68253944
],
[
139.72751222222223,
35.68196694
],
[
139.727145,
35.68114861
]
],
"type": "LineString"
},
"link_id": "5150010000037897278",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 150.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.727145,
35.68114861
],
[
139.72664472222223,
35.68009444
],
[
139.72652277777777,
35.67989083
]
],
"type": "LineString"
},
"link_id": "5150010000037897222",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 127.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.72652277777777,
35.67989083
],
[
139.72638333333333,
35.67972833
],
[
139.72610833333334,
35.67954056
],
[
139.72591138888887,
35.67944667
],
[
139.7257275,
35.67939028
],
[
139.72535194444444,
35.67931694
]
],
"type": "LineString"
},
"link_id": "5150010000037897215",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 131.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.72535194444444,
35.67931694
],
[
139.72505555555554,
35.67924806
],
[
139.72450972222222,
35.67892361
],
[
139.72412083333333,
35.67871583
]
],
"type": "LineString"
},
"link_id": "5150010000052337541",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 84.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.72412083333333,
35.67871583
],
[
139.7233375,
35.67829861
]
],
"type": "LineString"
},
"link_id": "5150010000052337541",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 241.6,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "権田原",
"road_name": "都道414号線"
},
"line": {
"coordinates": [
[
139.7233375,
35.67829861
],
[
139.72104972222223,
35.67717611
]
],
"type": "LineString"
},
"link_id": "5150010000037897577",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 12.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.72104972222223,
35.67717611
],
[
139.72093166666667,
35.67712
]
],
"type": "LineString"
},
"link_id": "5150010000037897700",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 33.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.72093166666667,
35.67712
],
[
139.72060166666665,
35.67699528
]
],
"type": "LineString"
},
"link_id": "5150010000037882500",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 64.4,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": null,
"road_name": "都道414号線"
},
"line": {
"coordinates": [
[
139.72060166666665,
35.67699528
],
[
139.7205172222222,
35.67694694
],
[
139.72033222222223,
35.67668139
],
[
139.72016444444444,
35.67654861
]
],
"type": "LineString"
},
"link_id": "5150010000037882498",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 99.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.72016444444444,
35.67654861
],
[
139.7202436111111,
35.67635806
],
[
139.72025555555555,
35.67618667
],
[
139.72021972222223,
35.6759225
],
[
139.72010944444443,
35.67567972
]
],
"type": "LineString"
},
"link_id": "5150010000076414173",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 86.4,
"facility_info": [],
"guidance": {
"direction_code": 1,
"direction_name": null,
"point_name": null,
"road_name": "都道414号線"
},
"line": {
"coordinates": [
[
139.72010944444443,
35.67567972
],
[
139.72004916666666,
35.67558444
],
[
139.7199325,
35.67545972
],
[
139.71978638888888,
35.67533889
],
[
139.71943638888888,
35.67514861
]
],
"type": "LineString"
},
"link_id": "5150010000076414174",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 9.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.71943638888888,
35.67514861
],
[
139.71934,
35.675115
]
],
"type": "LineString"
},
"link_id": "5150010000037897508",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 120.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.71934,
35.675115
],
[
139.71919916666667,
35.67508278
],
[
139.71874583333334,
35.67506556
],
[
139.71856194444445,
35.67508972
],
[
139.71836611111112,
35.67514306
],
[
139.7180711111111,
35.67528139
]
],
"type": "LineString"
},
"link_id": "5150010000037882456",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 37.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7180711111111,
35.67528139
],
[
139.71786583333332,
35.67542861
],
[
139.7177786111111,
35.67551889
]
],
"type": "LineString"
},
"link_id": "5150010000076414171",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 124.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7177786111111,
35.67551889
],
[
139.71765,
35.67569306
],
[
139.71724111111112,
35.67654472
]
],
"type": "LineString"
},
"link_id": "5150010000076414170",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 113,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.71724111111112,
35.67654472
],
[
139.7167797222222,
35.67749139
]
],
"type": "LineString"
},
"link_id": "5150010000076414172",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 66.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7167797222222,
35.67749139
],
[
139.71650861111112,
35.67805083
]
],
"type": "LineString"
},
"link_id": "5150010000037897510",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 76.8,
"facility_info": [],
"guidance": {
"direction_code": 2,
"direction_name": null,
"point_name": null,
"road_name": "都道414号線"
},
"line": {
"coordinates": [
[
139.71650861111112,
35.67805083
],
[
139.7163786111111,
35.6783175
],
[
139.71631694444446,
35.67849472
],
[
139.71627,
35.67871194
]
],
"type": "LineString"
},
"link_id": "5150010000076414177",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 85.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.71627,
35.67871194
],
[
139.7161947222222,
35.67907
],
[
139.71592916666665,
35.67941194
]
],
"type": "LineString"
},
"link_id": "5150010000076414179",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 57,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.71592916666665,
35.67941194
],
[
139.71566388888888,
35.67955694
],
[
139.71538083333334,
35.67966139
]
],
"type": "LineString"
},
"link_id": "5150010000076414178",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 15.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.71538083333334,
35.67966139
],
[
139.7152211111111,
35.67971083
]
],
"type": "LineString"
},
"link_id": "5150010000070916921",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7152211111111,
35.67971083
],
[
139.71514888888888,
35.679735
]
],
"type": "LineString"
},
"link_id": "5150010000070916922",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 33.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.71514888888888,
35.679735
],
[
139.71480305555556,
35.67984111
]
],
"type": "LineString"
},
"link_id": "5150010000066847219",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 49.4,
"facility_info": [],
"guidance": {
"direction_code": 4,
"direction_name": null,
"point_name": null,
"road_name": "都道414号線"
},
"line": {
"coordinates": [
[
139.71480305555556,
35.67984111
],
[
139.714485,
35.67993778
],
[
139.71430138888888,
35.68001389
]
],
"type": "LineString"
},
"link_id": "5150010000066847220",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 71.7,
"facility_info": [],
"guidance": {
"direction_code": 3,
"direction_name": null,
"point_name": "外苑橋第二",
"road_name": "都道418号線"
},
"line": {
"coordinates": [
[
139.71430138888888,
35.68001389
],
[
139.71423027777777,
35.67986111
],
[
139.71416833333333,
35.67981972
],
[
139.71405305555555,
35.67977806
],
[
139.71367361111112,
35.67972306
]
],
"type": "LineString"
},
"link_id": "5150010000069087359",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 10.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.71367361111112,
35.67972306
],
[
139.71355972222221,
35.67970694
]
],
"type": "LineString"
},
"link_id": "5150010000074333775",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 18.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.71355972222221,
35.67970694
],
[
139.7135625,
35.67987306
]
],
"type": "LineString"
},
"link_id": "5150010000074333772",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 4.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7135625,
35.67987306
],
[
139.7135638888889,
35.67991611
]
],
"type": "LineString"
},
"link_id": "5150010000074333773",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 26.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7135638888889,
35.67991611
],
[
139.71358111111113,
35.6801575
]
],
"type": "LineString"
},
"link_id": "5150010000074333770",
"passage_link": true,
"regulation": {
"danger": false,
"height": 430,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 29,
"facility_info": [],
"guidance": {
"direction_code": 4,
"direction_name": null,
"point_name": null,
"road_name": "首都高速4号新宿線"
},
"line": {
"coordinates": [
[
139.71358111111113,
35.6801575
],
[
139.7136025,
35.6804175
]
],
"type": "LineString"
},
"link_id": "5150010000037897532",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 60,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 13.2,
"facility_info": [],
"guidance": {
"direction_code": 4,
"direction_name": null,
"point_name": null,
"road_name": "首都高速4号新宿線"
},
"line": {
"coordinates": [
[
139.7136025,
35.6804175
],
[
139.71345916666667,
35.68043806
]
],
"type": "LineString"
},
"link_id": "5150010000037897547",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 24.2,
"facility_info": [
{
"name": "外苑料金所",
"type": [
"tollgate"
]
}
],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_flag": {
"ic": false,
"jct": false,
"pa": false,
"sa": false
},
"point_name": "外苑料金所",
"road_name": "首都高速4号新宿線"
},
"line": {
"coordinates": [
[
139.71345916666667,
35.68043806
],
[
139.71320666666668,
35.68050778
]
],
"type": "LineString"
},
"link_id": "5150010000037897549",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 510,
"toll_flag": true,
"toll_result": true
},
{
"distance": 6.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.71320666666668,
35.68050778
],
[
139.71313472222224,
35.68053056
]
],
"type": "LineString"
},
"link_id": "5150010000069233899",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 22.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.71313472222224,
35.68053056
],
[
139.7129011111111,
35.68060028
]
],
"type": "LineString"
},
"link_id": "5150010000069233899",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 252.2,
"facility_info": [
{
"name": "外苑出入口",
"type": [
"ic"
]
}
],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_flag": {
"ic": true,
"jct": false,
"pa": false,
"sa": false
},
"point_name": null,
"road_name": "首都高速4号新宿線"
},
"line": {
"coordinates": [
[
139.7129011111111,
35.68060028
],
[
139.7120013888889,
35.68085083
],
[
139.71108527777778,
35.68101056
],
[
139.7102213888889,
35.68121167
]
],
"type": "LineString"
},
"link_id": "5150010000068864988",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 762.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.7102213888889,
35.68121167
],
[
139.70932166666665,
35.68136861
],
[
139.70634194444443,
35.68124111
],
[
139.70595555555556,
35.68114861
],
[
139.70511055555556,
35.68068583
],
[
139.70469222222223,
35.68052917
],
[
139.70428583333333,
35.6804525
],
[
139.70214833333333,
35.6801375
]
],
"type": "LineString"
},
"link_id": "5150010000051678406",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 518.8,
"facility_info": [
{
"name": "代々木出入口",
"type": [
"ic"
]
}
],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_flag": {
"ic": true,
"jct": false,
"pa": false,
"sa": false
},
"point_name": "首都高代々木",
"road_name": "首都高速4号新宿線"
},
"line": {
"coordinates": [
[
139.70214833333333,
35.6801375
],
[
139.70106055555556,
35.67997667
],
[
139.70078166666667,
35.67997667
],
[
139.70054944444445,
35.68003306
],
[
139.6991522222222,
35.68072222
],
[
139.69876861111112,
35.68086167
],
[
139.69855,
35.68091417
],
[
139.6983072222222,
35.68094083
],
[
139.69806694444443,
35.68094083
],
[
139.69778416666668,
35.68091
],
[
139.6975336111111,
35.68085083
],
[
139.69731222222222,
35.68076778
],
[
139.69683333333333,
35.68047528
]
],
"type": "LineString"
},
"link_id": "5150010000051678406",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 490.8,
"facility_info": [
{
"name": "新宿出入口",
"type": [
"ic"
]
}
],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_flag": {
"ic": true,
"jct": false,
"pa": false,
"sa": false
},
"point_name": "首都高新宿",
"road_name": "首都高速4号新宿線"
},
"line": {
"coordinates": [
[
139.69683333333333,
35.68047528
],
[
139.6964325,
35.68021944
],
[
139.6960261111111,
35.67998722
],
[
139.6955913888889,
35.67985583
],
[
139.69455888888888,
35.67966806
],
[
139.69438194444444,
35.67966139
],
[
139.69412027777778,
35.67969083
],
[
139.6939875,
35.67972833
],
[
139.69379166666667,
35.67982222
],
[
139.69354777777778,
35.68002222
],
[
139.69267333333335,
35.68124806
]
],
"type": "LineString"
},
"link_id": "5150010000037976035",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 249.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.69267333333335,
35.68124806
],
[
139.6922172222222,
35.681775
],
[
139.69116194444445,
35.68327694
]
],
"type": "LineString"
},
"link_id": "5150010000052971537",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 68.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.69116194444445,
35.68327694
],
[
139.69101833333335,
35.68340556
],
[
139.6908897222222,
35.68348611
],
[
139.69072472222223,
35.68355583
],
[
139.69055555555556,
35.68359361
]
],
"type": "LineString"
},
"link_id": "5150010000052971537",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 29.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.69055555555556,
35.68359361
],
[
139.69026055555557,
35.68359361
]
],
"type": "LineString"
},
"link_id": "5150010000052971537",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 580.9,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": null,
"road_name": "首都高速4号新宿線"
},
"line": {
"coordinates": [
[
139.69026055555557,
35.68359361
],
[
139.6900675,
35.68354639
],
[
139.6897175,
35.68337361
],
[
139.68880416666667,
35.68275667
],
[
139.68525694444443,
35.68049
]
],
"type": "LineString"
},
"link_id": "5150010000052971537",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 526.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.68525694444443,
35.68049
],
[
139.68470444444444,
35.68016694
],
[
139.68403388888888,
35.67983306
],
[
139.68203833333334,
35.67897472
],
[
139.6804613888889,
35.67824361
],
[
139.68017555555556,
35.67814194
]
],
"type": "LineString"
},
"link_id": "5150010000052974054",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 138.9,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": null,
"road_name": "首都高速4号新宿線"
},
"line": {
"coordinates": [
[
139.68017555555556,
35.67814194
],
[
139.67962833333334,
35.67795556
],
[
139.67875666666666,
35.67773417
]
],
"type": "LineString"
},
"link_id": "5150010000052974054",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 27.2,
"facility_info": [
{
"name": "幡ヶ谷出入口",
"type": [
"ic"
]
}
],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_flag": {
"ic": true,
"jct": false,
"pa": false,
"sa": false
},
"point_name": "首都高幡ヶ谷",
"road_name": "首都高速4号新宿線"
},
"line": {
"coordinates": [
[
139.67875666666666,
35.67773417
],
[
139.67847777777777,
35.67764306
]
],
"type": "LineString"
},
"link_id": "5150010000038003061",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 891.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.67847777777777,
35.67764306
],
[
139.6774086111111,
35.67731306
],
[
139.6744625,
35.67648028
],
[
139.66918944444444,
35.67493111
]
],
"type": "LineString"
},
"link_id": "5150010000052295181",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 786.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.66918944444444,
35.67493111
],
[
139.66265944444444,
35.67304028
],
[
139.66097888888888,
35.67260722
]
],
"type": "LineString"
},
"link_id": "5150010000052295181",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 263.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.66097888888888,
35.67260722
],
[
139.65820305555556,
35.67189083
]
],
"type": "LineString"
},
"link_id": "5150010000052295181",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 773.5,
"facility_info": [
{
"name": "永福出入口",
"type": [
"ic"
]
}
],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_flag": {
"ic": true,
"jct": false,
"pa": false,
"sa": false
},
"point_name": "首都高永福",
"road_name": "首都高速4号新宿線"
},
"line": {
"coordinates": [
[
139.65820305555556,
35.67189083
],
[
139.6575725,
35.67172861
],
[
139.65691944444444,
35.67151139
],
[
139.6555325,
35.67098556
],
[
139.6551638888889,
35.67087167
],
[
139.65443694444446,
35.67072417
],
[
139.65335611111112,
35.67064667
],
[
139.65272166666668,
35.67056194
],
[
139.65070222222224,
35.67023194
],
[
139.6500436111111,
35.67006444
]
],
"type": "LineString"
},
"link_id": "5150010000052295181",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 296.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.6500436111111,
35.67006444
],
[
139.64987583333334,
35.67000806
],
[
139.64949083333335,
35.66982694
],
[
139.64898944444445,
35.66956278
],
[
139.64790333333335,
35.66894194
],
[
139.6475075,
35.66875972
],
[
139.64721666666668,
35.66865083
]
],
"type": "LineString"
},
"link_id": "5150010000051093254",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 263.9,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": null,
"road_name": "首都高速4号新宿線"
},
"line": {
"coordinates": [
[
139.64721666666668,
35.66865083
],
[
139.6468075,
35.66849917
],
[
139.6455202777778,
35.66808083
],
[
139.64520777777778,
35.66801528
],
[
139.64451027777778,
35.66790639
]
],
"type": "LineString"
},
"link_id": "5150010000051093254",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 769.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.64451027777778,
35.66790639
],
[
139.64184277777778,
35.66756472
],
[
139.64102888888888,
35.66748139
],
[
139.63932944444446,
35.66739833
],
[
139.63835333333333,
35.66746
],
[
139.63763583333332,
35.66763583
],
[
139.63623027777777,
35.66810222
]
],
"type": "LineString"
},
"link_id": "5150010000051095099",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 748.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.63623027777777,
35.66810222
],
[
139.6331602777778,
35.66912028
],
[
139.6325475,
35.66929583
],
[
139.63209694444444,
35.66938194
],
[
139.63068083333334,
35.66955194
],
[
139.6282813888889,
35.6699075
]
],
"type": "LineString"
},
"link_id": "5150010000051095099",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 281.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.6282813888889,
35.6699075
],
[
139.6255402777778,
35.67031389
],
[
139.6252438888889,
35.67038222
]
],
"type": "LineString"
},
"link_id": "5150010000052299477",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 56,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.6252438888889,
35.67038222
],
[
139.62507888888888,
35.67042111
],
[
139.62466722222223,
35.67058194
]
],
"type": "LineString"
},
"link_id": "5150010000052299477",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 326.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.62466722222223,
35.67058194
],
[
139.62440027777777,
35.67071222
],
[
139.62392416666665,
35.67104194
],
[
139.62296388888888,
35.67181333
],
[
139.62206555555557,
35.67260722
]
],
"type": "LineString"
},
"link_id": "5150010000051689659",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 12.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.62206555555557,
35.67260722
],
[
139.62197277777778,
35.67268889
]
],
"type": "LineString"
},
"link_id": "5150010000051689659",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 18.1,
"facility_info": [
{
"name": "高井戸出入口",
"type": [
"ic",
"jct"
]
}
],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_flag": {
"ic": false,
"jct": true,
"pa": false,
"sa": false
},
"point_name": "首都高高井戸",
"road_name": null
},
"line": {
"coordinates": [
[
139.62197277777778,
35.67268889
],
[
139.62184027777778,
35.67281111
]
],
"type": "LineString"
},
"link_id": "5150010000048932960",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 20,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 482.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.62184027777778,
35.67281111
],
[
139.6210986111111,
35.67345056
],
[
139.6201047222222,
35.67436
],
[
139.61957361111112,
35.67477028
],
[
139.61888972222224,
35.67519556
],
[
139.6179,
35.67570389
]
],
"type": "LineString"
},
"link_id": "5150010000048963010",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 368.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.6179,
35.67570389
],
[
139.61687416666666,
35.67621722
],
[
139.61621944444445,
35.67651111
],
[
139.61574194444444,
35.67668694
],
[
139.61425777777777,
35.67716306
]
],
"type": "LineString"
},
"link_id": "5150010000069238347",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 1.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.61425777777777,
35.67716306
],
[
139.61423722222221,
35.67716944
]
],
"type": "LineString"
},
"link_id": "5150010000069238347",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 1077.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.61423722222221,
35.67716944
],
[
139.61368222222222,
35.67740722
],
[
139.61260805555557,
35.67801306
],
[
139.61128305555556,
35.67859389
],
[
139.60882055555555,
35.67945222
],
[
139.60723305555555,
35.67994278
],
[
139.60607555555555,
35.68026083
],
[
139.60552694444445,
35.68036139
],
[
139.60490055555556,
35.68041528
],
[
139.60457888888888,
35.6804125
],
[
139.60419805555554,
35.68037889
],
[
139.60346833333332,
35.68024889
],
[
139.60327138888888,
35.68017778
]
],
"type": "LineString"
},
"link_id": "5150010000078119534",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 70.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.60327138888888,
35.68017778
],
[
139.60277222222223,
35.67999806
],
[
139.60257666666666,
35.67988417
]
],
"type": "LineString"
},
"link_id": "5150010000078119534",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 246.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.60257666666666,
35.67988417
],
[
139.60206416666668,
35.67959444
],
[
139.6015211111111,
35.67923222
],
[
139.60109055555554,
35.67889694
],
[
139.60054083333333,
35.67842222
]
],
"type": "LineString"
},
"link_id": "5150010000078106276",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 846.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.60054083333333,
35.67842222
],
[
139.5991836111111,
35.67724056
],
[
139.59856916666666,
35.676805
],
[
139.5979763888889,
35.67645083
],
[
139.59724555555556,
35.67609
],
[
139.59657388888888,
35.67582306
],
[
139.59577305555555,
35.67556833
],
[
139.59458083333334,
35.67527194
],
[
139.5934288888889,
35.67503861
],
[
139.592285,
35.67484417
]
],
"type": "LineString"
},
"link_id": "5150010000078113557",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 1016.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.592285,
35.67484417
],
[
139.59106833333334,
35.67467528
],
[
139.5898588888889,
35.67454222
],
[
139.5886088888889,
35.674435
],
[
139.58697694444444,
35.67432889
],
[
139.5840211111111,
35.67418167
],
[
139.58197972222223,
35.67405139
],
[
139.58129861111112,
35.6739925
]
],
"type": "LineString"
},
"link_id": "5150010000078113557",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 636.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.58129861111112,
35.6739925
],
[
139.5794813888889,
35.67379417
],
[
139.57813222222222,
35.673585
],
[
139.57691027777778,
35.67334611
],
[
139.5757397222222,
35.67306056
],
[
139.57453,
35.672705
]
],
"type": "LineString"
},
"link_id": "5150010000078113557",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 29.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.57453,
35.672705
],
[
139.57423222222224,
35.67260722
]
],
"type": "LineString"
},
"link_id": "5150010000051076875",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 72.2,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": null,
"road_name": null
},
"line": {
"coordinates": [
[
139.57423222222224,
35.67260722
],
[
139.5735013888889,
35.67234556
]
],
"type": "LineString"
},
"link_id": "5150010000051076875",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 74.2,
"facility_info": [
{
"name": "三鷹本線料金所",
"type": [
"tollgate"
]
}
],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_flag": {
"ic": false,
"jct": false,
"pa": false,
"sa": false
},
"point_name": "三鷹本線料金所",
"road_name": null
},
"line": {
"coordinates": [
[
139.5735013888889,
35.67234556
],
[
139.57288444444444,
35.67219833
],
[
139.57272361111112,
35.67213639
]
],
"type": "LineString"
},
"link_id": "5150010000044907002",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 72.2,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": null,
"road_name": null
},
"line": {
"coordinates": [
[
139.57272361111112,
35.67213639
],
[
139.5720061111111,
35.67185472
]
],
"type": "LineString"
},
"link_id": "5150010000044907001",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 107.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.5720061111111,
35.67185472
],
[
139.57100694444443,
35.67132778
]
],
"type": "LineString"
},
"link_id": "5150010000044879855",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 74.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.57100694444443,
35.67132778
],
[
139.5703125,
35.67097361
]
],
"type": "LineString"
},
"link_id": "5150010000051085755",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 212.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.5703125,
35.67097361
],
[
139.56951166666667,
35.67056472
],
[
139.56836777777778,
35.669905
]
],
"type": "LineString"
},
"link_id": "5150010000051085755",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 404.8,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.56836777777778,
35.669905
],
[
139.56483527777777,
35.66767056
]
],
"type": "LineString"
},
"link_id": "5150010000044818274",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 178.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.56483527777777,
35.66767056
],
[
139.56324444444445,
35.6667225
]
],
"type": "LineString"
},
"link_id": "5150010000044818221",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 408,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.56324444444445,
35.6667225
],
[
139.56230722222222,
35.66621139
],
[
139.56121666666667,
35.66568167
],
[
139.56022444444446,
35.66525639
],
[
139.55932611111112,
35.66491972
]
],
"type": "LineString"
},
"link_id": "5150010000063752093",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 259.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.55932611111112,
35.66491972
],
[
139.55803583333332,
35.66449472
],
[
139.5570875,
35.664225
],
[
139.55663555555554,
35.6641325
]
],
"type": "LineString"
},
"link_id": "5150010000063846024",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 555.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.55663555555554,
35.6641325
],
[
139.5553238888889,
35.66384972
],
[
139.55407166666666,
35.66364472
],
[
139.55290194444444,
35.66351028
],
[
139.55058472222223,
35.66337222
]
],
"type": "LineString"
},
"link_id": "5150010000065438192",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 20.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.55058472222223,
35.66337222
],
[
139.55035805555556,
35.66334806
]
],
"type": "LineString"
},
"link_id": "5150010000037964107",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 183.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.55035805555556,
35.66334806
],
[
139.5483397222222,
35.66328389
]
],
"type": "LineString"
},
"link_id": "5150010000052290289",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 854.3,
"facility_info": [
{
"name": "調布IC",
"type": [
"ic"
]
}
],
"guidance": {
"direction_code": 2,
"direction_name": null,
"point_flag": {
"ic": true,
"jct": false,
"pa": false,
"sa": false
},
"point_name": "高速調布IC",
"road_name": null
},
"line": {
"coordinates": [
[
139.5483397222222,
35.66328389
],
[
139.54585972222222,
35.66320333
],
[
139.544795,
35.66314944
],
[
139.54307972222222,
35.66302361
],
[
139.54221055555556,
35.66293639
],
[
139.54079444444446,
35.66274861
],
[
139.53985166666666,
35.662585
],
[
139.53898527777778,
35.66240556
]
],
"type": "LineString"
},
"link_id": "5150010000052290289",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 169.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.53898527777778,
35.66240556
],
[
139.53808555555557,
35.66217861
],
[
139.53735333333333,
35.66194417
]
],
"type": "LineString"
},
"link_id": "5150010000051692518",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 91,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.53735333333333,
35.66194417
],
[
139.53656333333333,
35.66165694
],
[
139.53650305555556,
35.66162083
]
],
"type": "LineString"
},
"link_id": "5150010000051692518",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 245,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": null,
"road_name": null
},
"line": {
"coordinates": [
[
139.53650305555556,
35.66162083
],
[
139.5362613888889,
35.66142111
],
[
139.5361863888889,
35.66133111
],
[
139.5360875,
35.66115694
],
[
139.53602416666666,
35.66097444
],
[
139.53589555555556,
35.66028917
],
[
139.53576666666666,
35.65983833
],
[
139.5355575,
35.65942528
]
],
"type": "LineString"
},
"link_id": "5150010000051692518",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 17.7,
"facility_info": [
{
"name": "料金所",
"type": [
"tollgate"
]
}
],
"guidance": {
"direction_code": 1,
"direction_name": "立川・府中方面",
"point_flag": {
"ic": false,
"jct": false,
"pa": false,
"sa": false
},
"point_name": null,
"road_name": null
},
"line": {
"coordinates": [
[
139.5355575,
35.65942528
],
[
139.53547444444445,
35.65928056
]
],
"type": "LineString"
},
"link_id": "5150010000043323485",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 182.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.53547444444445,
35.65928056
],
[
139.5353252777778,
35.65914917
],
[
139.535025,
35.65858194
],
[
139.53481861111112,
35.65835917
],
[
139.534525,
35.65821167
],
[
139.53431166666667,
35.6581675
],
[
139.5341813888889,
35.65817028
]
],
"type": "LineString"
},
"link_id": "5150010000043323449",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 170.3,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": null,
"road_name": "国道20号線"
},
"line": {
"coordinates": [
[
139.5341813888889,
35.65817028
],
[
139.5340163888889,
35.65820389
],
[
139.53392527777777,
35.65824111
],
[
139.5338461111111,
35.65828806
],
[
139.5337175,
35.65841306
],
[
139.53363972222223,
35.6586075
],
[
139.53357666666668,
35.65900028
],
[
139.53351361111112,
35.65913833
],
[
139.53331666666668,
35.65941472
]
],
"type": "LineString"
},
"link_id": "5150010000043323448",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 10,
"toll": 0,
"toll_flag": true,
"toll_result": true
},
{
"distance": 13.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.53331666666668,
35.65941472
],
[
139.5331825,
35.65947222
]
],
"type": "LineString"
},
"link_id": "5150010000071804341",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 6.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.5331825,
35.65947222
],
[
139.53312083333333,
35.65949917
]
],
"type": "LineString"
},
"link_id": "5150010000071804342",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 16.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.53312083333333,
35.65949917
],
[
139.53296361111111,
35.65957167
]
],
"type": "LineString"
},
"link_id": "5150010000071804339",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 32,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.53296361111111,
35.65957167
],
[
139.5326552777778,
35.65971083
]
],
"type": "LineString"
},
"link_id": "5150010000043323493",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 20.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.5326552777778,
35.65971083
],
[
139.53246083333335,
35.65980111
]
],
"type": "LineString"
},
"link_id": "5150010000043323496",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 22.1,
"facility_info": [],
"guidance": {
"direction_code": 0,
"direction_name": null,
"point_name": "上石原",
"road_name": "国道20号線"
},
"line": {
"coordinates": [
[
139.53246083333335,
35.65980111
],
[
139.5322502777778,
35.65990278
]
],
"type": "LineString"
},
"link_id": "5150010000043323497",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 35.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.5322502777778,
35.65990278
],
[
139.53191083333334,
35.66006917
]
],
"type": "LineString"
},
"link_id": "5150010000043323506",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 6.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.53191083333334,
35.66006917
],
[
139.53184944444445,
35.66010139
]
],
"type": "LineString"
},
"link_id": "5150010000043323507",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 17.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.53184944444445,
35.66010139
],
[
139.53168861111112,
35.66018833
]
],
"type": "LineString"
},
"link_id": "5150010000043323513",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 11.5,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.53168861111112,
35.66018833
],
[
139.5315825,
35.66024472
]
],
"type": "LineString"
},
"link_id": "5150010000043323514",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 11.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.5315825,
35.66024472
],
[
139.5314686111111,
35.66029861
]
],
"type": "LineString"
},
"link_id": "5150010000043323521",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 11,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.5314686111111,
35.66029861
],
[
139.5313625,
35.66034694
]
],
"type": "LineString"
},
"link_id": "5150010000043323522",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 56,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.5313625,
35.66034694
],
[
139.5308261111111,
35.66059889
]
],
"type": "LineString"
},
"link_id": "5150010000043323319",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 57.2,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.5308261111111,
35.66059889
],
[
139.53027777777777,
35.66085528
]
],
"type": "LineString"
},
"link_id": "5150010000043323320",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 27.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.53027777777777,
35.66085528
],
[
139.53001194444445,
35.66097694
]
],
"type": "LineString"
},
"link_id": "5150010000043323329",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 31.6,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.53001194444445,
35.66097694
],
[
139.52971055555557,
35.66111944
]
],
"type": "LineString"
},
"link_id": "5150010000043323330",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 3.3,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.52971055555557,
35.66111944
],
[
139.52967805555556,
35.66113417
]
],
"type": "LineString"
},
"link_id": "5150010000043323336",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 2.9,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.52967805555556,
35.66113417
],
[
139.52965138888888,
35.66114583
]
],
"type": "LineString"
},
"link_id": "5150010000043323337",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 17,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.52965138888888,
35.66114583
],
[
139.52948777777777,
35.6612225
]
],
"type": "LineString"
},
"link_id": "5150010000043323339",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 16.7,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.52948777777777,
35.6612225
],
[
139.52932833333332,
35.6612975
]
],
"type": "LineString"
},
"link_id": "5150010000043323340",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 21,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.52932833333332,
35.6612975
],
[
139.52912694444444,
35.66139
]
],
"type": "LineString"
},
"link_id": "5150010000043323342",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 29.1,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.52912694444444,
35.66139
],
[
139.52884666666668,
35.66152028
]
],
"type": "LineString"
},
"link_id": "5150010000043323343",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 22.4,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.52884666666668,
35.66152028
],
[
139.52863222222223,
35.66162083
]
],
"type": "LineString"
},
"link_id": "5150010000051675926",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 11,
"facility_info": [],
"guidance": null,
"line": {
"coordinates": [
[
139.52863222222223,
35.66162083
],
[
139.5285275,
35.66167028
]
],
"type": "LineString"
},
"link_id": "5150010000051675926",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
},
{
"distance": 2.6,
"facility_info": [],
"guidance": {
"direction_code": 11,
"direction_name": null,
"point_name": null,
"road_name": null
},
"line": {
"coordinates": [
[
139.5285275,
35.66167028
],
[
139.52850194444446,
35.66168194
]
],
"type": "LineString"
},
"link_id": "5150010000043364029",
"passage_link": true,
"regulation": {
"danger": false,
"height": null,
"load": null,
"weight": null,
"width": null
},
"road_type": 30,
"toll": 0,
"toll_flag": false,
"toll_result": true
}
],
"passage": false,
"time": 106.50000000000004,
"toll": 1510,
"toll_etc": 930,
"toll_result": true,
"toll_result_etc": true
},
"status": {
"code": "0000",
"result": true
}
}
]
}
}