Last active
June 1, 2025 07:07
-
-
Save deton/8c4bd41faa4060dfa4a68066a5403be3 to your computer and use it in GitHub Desktop.
Display GTFS stop_times.txt using gtfs_kit and kepler.gl Trip Layer, pydeck TripsLayer, or folium TimestampedGeoJson
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"## Display moving bus from GTFS shapes.txt using folium TimestampedGeoJson\n", | |
"https://colab.research.google.com/drive/1YlOCyCRecKIRe2AU_oIn2fbHehfWU5OG?usp=sharing" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"%pip install gtfs_kit" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 1, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"<div>\n", | |
"<style scoped>\n", | |
" .dataframe tbody tr th:only-of-type {\n", | |
" vertical-align: middle;\n", | |
" }\n", | |
"\n", | |
" .dataframe tbody tr th {\n", | |
" vertical-align: top;\n", | |
" }\n", | |
"\n", | |
" .dataframe thead th {\n", | |
" text-align: right;\n", | |
" }\n", | |
"</style>\n", | |
"<table border=\"1\" class=\"dataframe\">\n", | |
" <thead>\n", | |
" <tr style=\"text-align: right;\">\n", | |
" <th></th>\n", | |
" <th>indicator</th>\n", | |
" <th>value</th>\n", | |
" </tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr>\n", | |
" <th>0</th>\n", | |
" <td>agencies</td>\n", | |
" <td>[日本中央バス株式会社]</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>1</th>\n", | |
" <td>timezone</td>\n", | |
" <td>Asia/Tokyo</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>2</th>\n", | |
" <td>start_date</td>\n", | |
" <td>20250401</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>3</th>\n", | |
" <td>end_date</td>\n", | |
" <td>20260331</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>4</th>\n", | |
" <td>num_routes</td>\n", | |
" <td>33</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>5</th>\n", | |
" <td>num_trips</td>\n", | |
" <td>534</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>6</th>\n", | |
" <td>num_stops</td>\n", | |
" <td>411</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>7</th>\n", | |
" <td>num_shapes</td>\n", | |
" <td>68</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>8</th>\n", | |
" <td>sample_date</td>\n", | |
" <td>20250410</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>9</th>\n", | |
" <td>num_routes_active_on_sample_date</td>\n", | |
" <td>31</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>10</th>\n", | |
" <td>num_trips_active_on_sample_date</td>\n", | |
" <td>244</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>11</th>\n", | |
" <td>num_stops_active_on_sample_date</td>\n", | |
" <td>406</td>\n", | |
" </tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</div>" | |
], | |
"text/plain": [ | |
" indicator value\n", | |
"0 agencies [日本中央バス株式会社]\n", | |
"1 timezone Asia/Tokyo\n", | |
"2 start_date 20250401\n", | |
"3 end_date 20260331\n", | |
"4 num_routes 33\n", | |
"5 num_trips 534\n", | |
"6 num_stops 411\n", | |
"7 num_shapes 68\n", | |
"8 sample_date 20250410\n", | |
"9 num_routes_active_on_sample_date 31\n", | |
"10 num_trips_active_on_sample_date 244\n", | |
"11 num_stops_active_on_sample_date 406" | |
] | |
}, | |
"execution_count": 1, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"import gtfs_kit as gk\n", | |
"\n", | |
"# https://bustime.jp/GtfsAgency/gtfs_list?p1=10\n", | |
"#url = 'https://api.gtfs-data.jp/v2/organizations/nagai-unyu/feeds/Nagaibus/files/feed.zip'\n", | |
"#fname = 'Kan_etsuTransportation-AllLines-20250426.zip'\n", | |
"#fname = 'GunmaBus-AllLines-20250507.zip'\n", | |
"fname = 'NipponChuoBus-Maebashi_Area-20250401.zip'\n", | |
"#fname = 'feed_nagai-unyu_Nagaibus_20250517_20250517150252.zip'\n", | |
"#fname = 'GunmachuoBus-AllLines-20250401.zip'\n", | |
"feed = gk.read_feed(fname, dist_units='m')\n", | |
"feed.describe()" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 2, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"week = feed.get_first_week()\n", | |
"date = week[0] # Monday\n", | |
"date = '20250526' # XXX" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 10, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"name": "stderr", | |
"output_type": "stream", | |
"text": [ | |
"d:\\deton\\work\\gtfs_kit\\notebooks\\.venv\\Lib\\site-packages\\shapely\\linear.py:88: RuntimeWarning: invalid value encountered in line_locate_point\n", | |
" return lib.line_locate_point(line, other)\n", | |
"d:\\deton\\work\\gtfs_kit\\notebooks\\.venv\\Lib\\site-packages\\shapely\\linear.py:88: RuntimeWarning: invalid value encountered in line_locate_point\n", | |
" return lib.line_locate_point(line, other)\n", | |
"d:\\deton\\work\\gtfs_kit\\notebooks\\.venv\\Lib\\site-packages\\shapely\\linear.py:88: RuntimeWarning: invalid value encountered in line_locate_point\n", | |
" return lib.line_locate_point(line, other)\n", | |
"d:\\deton\\work\\gtfs_kit\\notebooks\\.venv\\Lib\\site-packages\\shapely\\linear.py:88: RuntimeWarning: invalid value encountered in line_locate_point\n", | |
" return lib.line_locate_point(line, other)\n", | |
"d:\\deton\\work\\gtfs_kit\\notebooks\\.venv\\Lib\\site-packages\\shapely\\linear.py:88: RuntimeWarning: invalid value encountered in line_locate_point\n", | |
" return lib.line_locate_point(line, other)\n", | |
"d:\\deton\\work\\gtfs_kit\\notebooks\\.venv\\Lib\\site-packages\\shapely\\linear.py:88: RuntimeWarning: invalid value encountered in line_locate_point\n", | |
" return lib.line_locate_point(line, other)\n", | |
"d:\\deton\\work\\gtfs_kit\\notebooks\\.venv\\Lib\\site-packages\\shapely\\linear.py:88: RuntimeWarning: invalid value encountered in line_locate_point\n", | |
" return lib.line_locate_point(line, other)\n", | |
"d:\\deton\\work\\gtfs_kit\\notebooks\\.venv\\Lib\\site-packages\\shapely\\linear.py:88: RuntimeWarning: invalid value encountered in line_locate_point\n", | |
" return lib.line_locate_point(line, other)\n", | |
"d:\\deton\\work\\gtfs_kit\\notebooks\\.venv\\Lib\\site-packages\\shapely\\linear.py:88: RuntimeWarning: invalid value encountered in line_locate_point\n", | |
" return lib.line_locate_point(line, other)\n" | |
] | |
} | |
], | |
"source": [ | |
"feed = feed.append_dist_to_stop_times().append_dist_to_shapes()" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 11, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"<div>\n", | |
"<style scoped>\n", | |
" .dataframe tbody tr th:only-of-type {\n", | |
" vertical-align: middle;\n", | |
" }\n", | |
"\n", | |
" .dataframe tbody tr th {\n", | |
" vertical-align: top;\n", | |
" }\n", | |
"\n", | |
" .dataframe thead th {\n", | |
" text-align: right;\n", | |
" }\n", | |
"</style>\n", | |
"<table border=\"1\" class=\"dataframe\">\n", | |
" <thead>\n", | |
" <tr style=\"text-align: right;\">\n", | |
" <th></th>\n", | |
" <th>stop_id</th>\n", | |
" <th>stop_code</th>\n", | |
" <th>stop_name</th>\n", | |
" <th>stop_desc</th>\n", | |
" <th>stop_lat</th>\n", | |
" <th>stop_lon</th>\n", | |
" <th>zone_id</th>\n", | |
" <th>stop_url</th>\n", | |
" <th>location_type</th>\n", | |
" <th>platform_code</th>\n", | |
" <th>parent_station</th>\n", | |
" </tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr>\n", | |
" <th>0</th>\n", | |
" <td>6_01</td>\n", | |
" <td><NA></td>\n", | |
" <td>青梨子</td>\n", | |
" <td><NA></td>\n", | |
" <td>36.416349</td>\n", | |
" <td>139.018920</td>\n", | |
" <td>6_01</td>\n", | |
" <td><NA></td>\n", | |
" <td>0</td>\n", | |
" <td><NA></td>\n", | |
" <td><NA></td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>1</th>\n", | |
" <td>6_02</td>\n", | |
" <td><NA></td>\n", | |
" <td>青梨子</td>\n", | |
" <td><NA></td>\n", | |
" <td>36.416408</td>\n", | |
" <td>139.018923</td>\n", | |
" <td>6_02</td>\n", | |
" <td><NA></td>\n", | |
" <td>0</td>\n", | |
" <td><NA></td>\n", | |
" <td><NA></td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>2</th>\n", | |
" <td>7_01</td>\n", | |
" <td><NA></td>\n", | |
" <td>青柳</td>\n", | |
" <td><NA></td>\n", | |
" <td>36.421296</td>\n", | |
" <td>139.068284</td>\n", | |
" <td>7_01</td>\n", | |
" <td><NA></td>\n", | |
" <td>0</td>\n", | |
" <td><NA></td>\n", | |
" <td><NA></td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>3</th>\n", | |
" <td>7_02</td>\n", | |
" <td><NA></td>\n", | |
" <td>青柳</td>\n", | |
" <td><NA></td>\n", | |
" <td>36.421370</td>\n", | |
" <td>139.068420</td>\n", | |
" <td>7_02</td>\n", | |
" <td><NA></td>\n", | |
" <td>0</td>\n", | |
" <td><NA></td>\n", | |
" <td><NA></td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>4</th>\n", | |
" <td>8_01</td>\n", | |
" <td><NA></td>\n", | |
" <td>青柳大師入口</td>\n", | |
" <td><NA></td>\n", | |
" <td>36.413454</td>\n", | |
" <td>139.071328</td>\n", | |
" <td>8_01</td>\n", | |
" <td><NA></td>\n", | |
" <td>0</td>\n", | |
" <td><NA></td>\n", | |
" <td><NA></td>\n", | |
" </tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</div>" | |
], | |
"text/plain": [ | |
" stop_id stop_code stop_name stop_desc stop_lat stop_lon zone_id \\\n", | |
"0 6_01 <NA> 青梨子 <NA> 36.416349 139.018920 6_01 \n", | |
"1 6_02 <NA> 青梨子 <NA> 36.416408 139.018923 6_02 \n", | |
"2 7_01 <NA> 青柳 <NA> 36.421296 139.068284 7_01 \n", | |
"3 7_02 <NA> 青柳 <NA> 36.421370 139.068420 7_02 \n", | |
"4 8_01 <NA> 青柳大師入口 <NA> 36.413454 139.071328 8_01 \n", | |
"\n", | |
" stop_url location_type platform_code parent_station \n", | |
"0 <NA> 0 <NA> <NA> \n", | |
"1 <NA> 0 <NA> <NA> \n", | |
"2 <NA> 0 <NA> <NA> \n", | |
"3 <NA> 0 <NA> <NA> \n", | |
"4 <NA> 0 <NA> <NA> " | |
] | |
}, | |
"execution_count": 11, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"dfstops = feed.get_stops(date)\n", | |
"dfstops.head()" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 12, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"# color = '#FF6600' # kan-etsu\n", | |
"# color = '#00A2E8' # '#005BAC' # GunmaBus\n", | |
"color = '#FFFFFF' # '#DFB134' # NipponChuoBus\n", | |
"# color = '#36A563' # NagaiBus\n", | |
"# color = '#FEFE3A' # GunmachuoBus\n", | |
"features_stops = []\n", | |
"for st in dfstops.to_dict(orient='records'):\n", | |
" features_stops.append({\n", | |
" 'type': 'Feature',\n", | |
" 'properties': {\n", | |
" 'name': f\"{st['stop_id']} {st['stop_name']}\",\n", | |
" 'icon': 'circle',\n", | |
" 'iconstyle': {\n", | |
" 'color': color, # '#ff00ff',\n", | |
" # 'radius': 4,\n", | |
" }\n", | |
" },\n", | |
" 'geometry': {\n", | |
" 'type': 'Point',\n", | |
" 'coordinates': [st['stop_lon'], st['stop_lat']],\n", | |
" }\n", | |
" })" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 13, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"<div>\n", | |
"<style scoped>\n", | |
" .dataframe tbody tr th:only-of-type {\n", | |
" vertical-align: middle;\n", | |
" }\n", | |
"\n", | |
" .dataframe tbody tr th {\n", | |
" vertical-align: top;\n", | |
" }\n", | |
"\n", | |
" .dataframe thead th {\n", | |
" text-align: right;\n", | |
" }\n", | |
"</style>\n", | |
"<table border=\"1\" class=\"dataframe\">\n", | |
" <thead>\n", | |
" <tr style=\"text-align: right;\">\n", | |
" <th></th>\n", | |
" <th>trip_id</th>\n", | |
" <th>arrival_time</th>\n", | |
" <th>departure_time</th>\n", | |
" <th>stop_id</th>\n", | |
" <th>stop_sequence</th>\n", | |
" <th>stop_headsign</th>\n", | |
" <th>pickup_type</th>\n", | |
" <th>drop_off_type</th>\n", | |
" <th>timepoint</th>\n", | |
" <th>shape_dist_traveled</th>\n", | |
" <th>stop_code</th>\n", | |
" <th>stop_name</th>\n", | |
" <th>stop_desc</th>\n", | |
" <th>stop_lat</th>\n", | |
" <th>stop_lon</th>\n", | |
" <th>zone_id</th>\n", | |
" <th>stop_url</th>\n", | |
" <th>location_type</th>\n", | |
" <th>platform_code</th>\n", | |
" <th>parent_station</th>\n", | |
" </tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr>\n", | |
" <th>0</th>\n", | |
" <td>土月行_19時40分_系統H252</td>\n", | |
" <td>19:40:00</td>\n", | |
" <td>19:40:00</td>\n", | |
" <td>H0028_08</td>\n", | |
" <td>1</td>\n", | |
" <td>前橋バスセンター(高崎駅 経由)</td>\n", | |
" <td>0</td>\n", | |
" <td>1</td>\n", | |
" <td>1</td>\n", | |
" <td>2.164539</td>\n", | |
" <td>(OCATビル2階)</td>\n", | |
" <td>大阪OCAT</td>\n", | |
" <td><NA></td>\n", | |
" <td>34.666565</td>\n", | |
" <td>135.495141</td>\n", | |
" <td>H0028_08</td>\n", | |
" <td><NA></td>\n", | |
" <td>0</td>\n", | |
" <td><NA></td>\n", | |
" <td><NA></td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>1</th>\n", | |
" <td>土月行_19時40分_系統H252</td>\n", | |
" <td>20:25:00</td>\n", | |
" <td>20:25:00</td>\n", | |
" <td>H0026_04</td>\n", | |
" <td>2</td>\n", | |
" <td>前橋バスセンター(高崎駅 経由)</td>\n", | |
" <td>0</td>\n", | |
" <td>1</td>\n", | |
" <td>1</td>\n", | |
" <td>34615.802689</td>\n", | |
" <td>(4番のりば)</td>\n", | |
" <td>JR奈良駅東口</td>\n", | |
" <td><NA></td>\n", | |
" <td>34.681456</td>\n", | |
" <td>135.819996</td>\n", | |
" <td>H0026_04</td>\n", | |
" <td><NA></td>\n", | |
" <td>0</td>\n", | |
" <td><NA></td>\n", | |
" <td><NA></td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>2</th>\n", | |
" <td>土月行_19時40分_系統H252</td>\n", | |
" <td>23:45:00</td>\n", | |
" <td>23:45:00</td>\n", | |
" <td>H0025_01</td>\n", | |
" <td>3</td>\n", | |
" <td>前橋バスセンター(高崎駅 経由)</td>\n", | |
" <td>0</td>\n", | |
" <td>1</td>\n", | |
" <td>1</td>\n", | |
" <td>177646.245545</td>\n", | |
" <td><NA></td>\n", | |
" <td>名古屋駅太閤通口</td>\n", | |
" <td><NA></td>\n", | |
" <td>35.169631</td>\n", | |
" <td>136.880252</td>\n", | |
" <td>H0025_01</td>\n", | |
" <td><NA></td>\n", | |
" <td>0</td>\n", | |
" <td><NA></td>\n", | |
" <td><NA></td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>3</th>\n", | |
" <td>土月行_19時40分_系統H252</td>\n", | |
" <td>23:59:00</td>\n", | |
" <td>23:59:00</td>\n", | |
" <td>H0024_01</td>\n", | |
" <td>4</td>\n", | |
" <td>前橋バスセンター(高崎駅 経由)</td>\n", | |
" <td>0</td>\n", | |
" <td>1</td>\n", | |
" <td>1</td>\n", | |
" <td>183909.143719</td>\n", | |
" <td><NA></td>\n", | |
" <td>金山駅南口</td>\n", | |
" <td><NA></td>\n", | |
" <td>35.142232</td>\n", | |
" <td>136.900482</td>\n", | |
" <td>H0024_01</td>\n", | |
" <td><NA></td>\n", | |
" <td>0</td>\n", | |
" <td><NA></td>\n", | |
" <td><NA></td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>4</th>\n", | |
" <td>土月行_19時40分_系統H252</td>\n", | |
" <td>29:00:00</td>\n", | |
" <td>29:00:00</td>\n", | |
" <td>H0008_03</td>\n", | |
" <td>5</td>\n", | |
" <td>前橋バスセンター</td>\n", | |
" <td>1</td>\n", | |
" <td>0</td>\n", | |
" <td>1</td>\n", | |
" <td>568406.089271</td>\n", | |
" <td>(3番のりば)</td>\n", | |
" <td>藤岡インター</td>\n", | |
" <td><NA></td>\n", | |
" <td>36.272687</td>\n", | |
" <td>139.073687</td>\n", | |
" <td>H0008_03</td>\n", | |
" <td><NA></td>\n", | |
" <td>0</td>\n", | |
" <td><NA></td>\n", | |
" <td><NA></td>\n", | |
" </tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</div>" | |
], | |
"text/plain": [ | |
" trip_id arrival_time departure_time stop_id stop_sequence \\\n", | |
"0 土月行_19時40分_系統H252 19:40:00 19:40:00 H0028_08 1 \n", | |
"1 土月行_19時40分_系統H252 20:25:00 20:25:00 H0026_04 2 \n", | |
"2 土月行_19時40分_系統H252 23:45:00 23:45:00 H0025_01 3 \n", | |
"3 土月行_19時40分_系統H252 23:59:00 23:59:00 H0024_01 4 \n", | |
"4 土月行_19時40分_系統H252 29:00:00 29:00:00 H0008_03 5 \n", | |
"\n", | |
" stop_headsign pickup_type drop_off_type timepoint \\\n", | |
"0 前橋バスセンター(高崎駅 経由) 0 1 1 \n", | |
"1 前橋バスセンター(高崎駅 経由) 0 1 1 \n", | |
"2 前橋バスセンター(高崎駅 経由) 0 1 1 \n", | |
"3 前橋バスセンター(高崎駅 経由) 0 1 1 \n", | |
"4 前橋バスセンター 1 0 1 \n", | |
"\n", | |
" shape_dist_traveled stop_code stop_name stop_desc stop_lat stop_lon \\\n", | |
"0 2.164539 (OCATビル2階) 大阪OCAT <NA> 34.666565 135.495141 \n", | |
"1 34615.802689 (4番のりば) JR奈良駅東口 <NA> 34.681456 135.819996 \n", | |
"2 177646.245545 <NA> 名古屋駅太閤通口 <NA> 35.169631 136.880252 \n", | |
"3 183909.143719 <NA> 金山駅南口 <NA> 35.142232 136.900482 \n", | |
"4 568406.089271 (3番のりば) 藤岡インター <NA> 36.272687 139.073687 \n", | |
"\n", | |
" zone_id stop_url location_type platform_code parent_station \n", | |
"0 H0028_08 <NA> 0 <NA> <NA> \n", | |
"1 H0026_04 <NA> 0 <NA> <NA> \n", | |
"2 H0025_01 <NA> 0 <NA> <NA> \n", | |
"3 H0024_01 <NA> 0 <NA> <NA> \n", | |
"4 H0008_03 <NA> 0 <NA> <NA> " | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"dfst = feed.get_stop_times(date)\n", | |
"#display(dfst)\n", | |
"dfst = dfst.merge(dfstops)\n", | |
"display(dfst.head())\n", | |
"tripsdict = dfst.groupby('trip_id').apply(lambda x: x.to_dict(orient='records'), include_groups=False).to_dict()\n", | |
"#tripsdict" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 15, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"tripId2ShapeId = feed.trips[['trip_id', 'shape_id']].set_index('trip_id')['shape_id'].to_dict()\n", | |
"#tripId2ShapeId" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 16, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"<div>\n", | |
"<style scoped>\n", | |
" .dataframe tbody tr th:only-of-type {\n", | |
" vertical-align: middle;\n", | |
" }\n", | |
"\n", | |
" .dataframe tbody tr th {\n", | |
" vertical-align: top;\n", | |
" }\n", | |
"\n", | |
" .dataframe thead th {\n", | |
" text-align: right;\n", | |
" }\n", | |
"</style>\n", | |
"<table border=\"1\" class=\"dataframe\">\n", | |
" <thead>\n", | |
" <tr style=\"text-align: right;\">\n", | |
" <th></th>\n", | |
" <th>shape_id</th>\n", | |
" <th>shape_pt_lat</th>\n", | |
" <th>shape_pt_lon</th>\n", | |
" <th>shape_pt_sequence</th>\n", | |
" <th>shape_dist_traveled</th>\n", | |
" </tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr>\n", | |
" <th>7427</th>\n", | |
" <td>10321</td>\n", | |
" <td>36.383658</td>\n", | |
" <td>139.072229</td>\n", | |
" <td>1</td>\n", | |
" <td>0.000000</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>7428</th>\n", | |
" <td>10321</td>\n", | |
" <td>36.383763</td>\n", | |
" <td>139.072288</td>\n", | |
" <td>2</td>\n", | |
" <td>12.791218</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>7429</th>\n", | |
" <td>10321</td>\n", | |
" <td>36.383951</td>\n", | |
" <td>139.072379</td>\n", | |
" <td>3</td>\n", | |
" <td>35.173134</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>7430</th>\n", | |
" <td>10321</td>\n", | |
" <td>36.384059</td>\n", | |
" <td>139.072644</td>\n", | |
" <td>4</td>\n", | |
" <td>61.811211</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>7431</th>\n", | |
" <td>10321</td>\n", | |
" <td>36.384517</td>\n", | |
" <td>139.072651</td>\n", | |
" <td>5</td>\n", | |
" <td>112.657840</td>\n", | |
" </tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</div>" | |
], | |
"text/plain": [ | |
" shape_id shape_pt_lat shape_pt_lon shape_pt_sequence \\\n", | |
"7427 10321 36.383658 139.072229 1 \n", | |
"7428 10321 36.383763 139.072288 2 \n", | |
"7429 10321 36.383951 139.072379 3 \n", | |
"7430 10321 36.384059 139.072644 4 \n", | |
"7431 10321 36.384517 139.072651 5 \n", | |
"\n", | |
" shape_dist_traveled \n", | |
"7427 0.000000 \n", | |
"7428 12.791218 \n", | |
"7429 35.173134 \n", | |
"7430 61.811211 \n", | |
"7431 112.657840 " | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"dfshapes = feed.get_shapes()\n", | |
"display(dfshapes.head())" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 17, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"import datetime\n", | |
"datesec = int(datetime.datetime.fromisoformat(date).timestamp())\n", | |
"features_lines = []\n", | |
"for trip_id, stop_times_list in tripsdict.items():\n", | |
" shape_id = tripId2ShapeId[trip_id]\n", | |
" ptlist = dfshapes[dfshapes['shape_id']==shape_id].to_dict(orient='records')\n", | |
" ptidx = 0\n", | |
" coords = []\n", | |
" times = []\n", | |
" stop_times_list.sort(key=lambda x: x['arrival_time'])\n", | |
" timesecprev = gk.helpers.timestr_to_seconds(stop_times_list[0]['arrival_time'])\n", | |
" stopdistprev = stop_times_list[0]['shape_dist_traveled']\n", | |
" for st in stop_times_list:\n", | |
" timesec = gk.helpers.timestr_to_seconds(st['arrival_time'])\n", | |
" stopdist = st['shape_dist_traveled']\n", | |
" while ptidx < len(ptlist) and ptlist[ptidx]['shape_dist_traveled'] < stopdist:\n", | |
" dist = ptlist[ptidx]['shape_dist_traveled']\n", | |
" if stopdist - stopdistprev != 0:\n", | |
" frac = (dist - stopdistprev) / (stopdist - stopdistprev)\n", | |
" t = (timesec - timesecprev) * frac + timesecprev\n", | |
" elif stopdist != 0:\n", | |
" frac = dist / stopdist\n", | |
" t = timesec * frac + timesecprev\n", | |
" else:\n", | |
" t = timesecprev\n", | |
" times.append(int((t + datesec) * 1000))\n", | |
" coords.append([ptlist[ptidx]['shape_pt_lon'], ptlist[ptidx]['shape_pt_lat']])\n", | |
" ptidx += 1\n", | |
" # XXX: avoid jump back\n", | |
" # times.append((timesec + datesec) * 1000)\n", | |
" # coords.append([st['stop_lon'], st['stop_lat']])\n", | |
" # if st.get('departure_time') and st['departure_time'] != st['arrival_time']:\n", | |
" # timesec = gk.helpers.timestr_to_seconds(st['departure_time'])\n", | |
" # times.append((timesec + datesec) * 1000)\n", | |
" # coords.append([st['stop_lon'], st['stop_lat']])\n", | |
" timesecprev = timesec\n", | |
" stopdistprev = stopdist\n", | |
" features_lines.append({\n", | |
" 'type': 'Feature',\n", | |
" 'properties': {\n", | |
" 'name': trip_id,\n", | |
" 'times': times,\n", | |
" \"icon\": \"marker\",\n", | |
" \"iconstyle\": {\n", | |
" \"iconUrl\": 'https://deton.github.io/folium_tripslayer/bus.svg',\n", | |
" \"iconSize\": [24, 24],\n", | |
" \"iconAnchor\": [12, 12]\n", | |
" },\n", | |
" \"style\": {\n", | |
" \"color\": color,\n", | |
" },\n", | |
" 'tooltip': trip_id,\n", | |
" # 'popup': trip_id,\n", | |
" },\n", | |
" 'geometry': {\n", | |
" 'type': 'LineString',\n", | |
" 'coordinates': coords,\n", | |
" }\n", | |
" })\n", | |
"geojson = {\n", | |
" 'type': 'FeatureCollection',\n", | |
" 'features': features_stops + features_lines,\n", | |
"}\n", | |
"#geojson" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"import json\n", | |
"with open('NipponChuoBus.json', 'w', encoding='utf-8') as f:\n", | |
" json.dump(geojson['features'], f, ensure_ascii=False)\n", | |
"\n", | |
"# merge:\n", | |
"# jq -c -s add NagaiBus.json GunmachuoBus.json GunmaBus.json NipponChuoBus.json kan-etsu.json >merged.json\n", | |
"# cat geojson.header merged.json geojson.footer >gunmaGtfsTimestamped.geojson" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"%pip install git+https://github.com/deton/folium_tripslayer.git" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"<div style=\"width:100%;\"><div style=\"position:relative;width:100%;height:0;padding-bottom:60%;\"><span style=\"color:#565656\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\"<!DOCTYPE html>\n", | |
"<html>\n", | |
"<head>\n", | |
" \n", | |
" <meta http-equiv="content-type" content="text/html; charset=UTF-8" />\n", | |
" \n", | |
" <script>\n", | |
" L_NO_TOUCH = false;\n", | |
" L_DISABLE_3D = false;\n", | |
" </script>\n", | |
" \n", | |
" <style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>\n", | |
" <style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>\n", | |
" <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>\n", | |
" <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>\n", | |
" <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>\n", | |
" <script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>\n", | |
" <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/>\n", | |
" <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"/>\n", | |
" <link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/>\n", | |
" <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css"/>\n", | |
" <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>\n", | |
" <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>\n", | |
" \n", | |
" <meta name="viewport" content="width=device-width,\n", | |
" initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />\n", | |
" <style>\n", | |
" #map_5e3acb5baf12781a71043db9bc2571a3 {\n", | |
" position: relative;\n", | |
" width: 100.0%;\n", | |
" height: 100.0%;\n", | |
" left: 0.0%;\n", | |
" top: 0.0%;\n", | |
" }\n", | |
" .leaflet-container { font-size: 1rem; }\n", | |
" </style>\n", | |
" \n", | |
" <script src="https://cdn.jsdelivr.net/npm/[email protected]/iso8601.min.js"></script>\n", | |
" <script src="https://deton.github.io/Leaflet.TimeDimension/dist/leaflet.timedimension.min.js"></script>\n", | |
" <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>\n", | |
" <script src="https://deton.github.io/folium_tripslayer/leaflet.timedimension.layer.geojsonwhole.js"></script>\n", | |
" <script src="https://deton.github.io/folium_tripslayer/leaflet.timedimension.layer.trips.js"></script>\n", | |
" <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/styles/default.min.css"/>\n", | |
" <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.timedimension.control.css"/>\n", | |
"</head>\n", | |
"<body>\n", | |
" \n", | |
" \n", | |
" <div class="folium-map" id="map_5e3acb5baf12781a71043db9bc2571a3" ></div>\n", | |
" \n", | |
"</body>\n", | |
"<script>\n", | |
" \n", | |
" \n", | |
" var map_5e3acb5baf12781a71043db9bc2571a3 = L.map(\n", | |
" "map_5e3acb5baf12781a71043db9bc2571a3",\n", | |
" {\n", | |
" center: [36.3707846666667, 139.108661190476],\n", | |
" crs: L.CRS.EPSG3857,\n", | |
" ...{\n", | |
" "zoom": 15,\n", | |
" "zoomControl": true,\n", | |
" "preferCanvas": false,\n", | |
"}\n", | |
"\n", | |
" }\n", | |
" );\n", | |
"\n", | |
" \n", | |
"\n", | |
" \n", | |
" \n", | |
" var tile_layer_afb83ba727bd69ea729eee2d08d820f0 = L.tileLayer(\n", | |
" "https://tile.openstreetmap.org/{z}/{x}/{y}.png",\n", | |
" {\n", | |
" "minZoom": 0,\n", | |
" "maxZoom": 19,\n", | |
" "maxNativeZoom": 19,\n", | |
" "noWrap": false,\n", | |
" "attribution": "\\u0026copy; \\u003ca href=\\"https://www.openstreetmap.org/copyright\\"\\u003eOpenStreetMap\\u003c/a\\u003e contributors",\n", | |
" "subdomains": "abc",\n", | |
" "detectRetina": false,\n", | |
" "tms": false,\n", | |
" "opacity": 1,\n", | |
"}\n", | |
"\n", | |
" );\n", | |
" \n", | |
" \n", | |
" tile_layer_afb83ba727bd69ea729eee2d08d820f0.addTo(map_5e3acb5baf12781a71043db9bc2571a3);\n", | |
" \n", | |
" \n", | |
" L.Control.TimeDimensionCustom = L.Control.TimeDimension.extend({\n", | |
" _getDisplayDateFormat: function(date){\n", | |
" var newdate = new moment(date);\n", | |
" //console.log(newdate)\n", | |
" return newdate.format("YYYY-MM-DD HH:mm:ss");\n", | |
" }\n", | |
" });\n", | |
" map_5e3acb5baf12781a71043db9bc2571a3.timeDimension = L.timeDimension(\n", | |
" {\n", | |
" period: "PT1M",\n", | |
" }\n", | |
" );\n", | |
" var timeDimensionControl = new L.Control.TimeDimensionCustom(\n", | |
" {"auto_play": true, "loop_button": false, "max_speed": 10, "min_speed": 1, "player_options": {"loop": false, "startOver": true, "transitionTime": 400}, "position": "bottomleft", "speed_slider": true, "time_slider_drag_update": false}\n", | |
" );\n", | |
" map_5e3acb5baf12781a71043db9bc2571a3.addControl(this.timeDimensionControl);\n", | |
"\n", | |
" var tripsLayer = L.timeDimension.layer.trips();\n", | |
" tripsLayer.addTripsLayers(\n", | |
" map_5e3acb5baf12781a71043db9bc2571a3,\n", | |
" {"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {"name": "001001_01 \\u524d\\u6a4b\\u516c\\u5712", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.059257, 36.395815]}}, {"type": "Feature", "properties": {"name": "001001_02 \\u524d\\u6a4b\\u516c\\u5712", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.059219, 36.397003]}}, {"type": "Feature", "properties": {"name": "001002_01 \\u770c\\u5e81\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.061917, 36.390819]}}, {"type": "Feature", "properties": {"name": "001002_02 \\u770c\\u5e81\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.061748, 36.391019]}}, {"type": "Feature", "properties": {"name": "001003_01 \\u5e02\\u5f79\\u6240\\u30fb\\u5408\\u5e81\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.06347, 36.390698]}}, {"type": "Feature", "properties": {"name": "001003_02 \\u5e02\\u5f79\\u6240\\u30fb\\u5408\\u5e81\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.064445, 36.390637]}}, {"type": "Feature", "properties": {"name": "001004_01 \\u65e5\\u9280\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.066303, 36.391013]}}, {"type": "Feature", "properties": {"name": "001005_01 \\u672c\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.070069, 36.390089]}}, {"type": "Feature", "properties": {"name": "001005_02 \\u672c\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.06939, 36.390253]}}, {"type": "Feature", "properties": {"name": "001006_01 \\u8868\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072657, 36.387243]}}, {"type": "Feature", "properties": {"name": "001006_02 \\u8868\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072448, 36.387243]}}, {"type": "Feature", "properties": {"name": "001007_01 \\u524d\\u6a4b\\u99c5", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072904, 36.383564]}}, {"type": "Feature", "properties": {"name": "001007_03 \\u524d\\u6a4b\\u99c5", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072229, 36.383658]}}, {"type": "Feature", "properties": {"name": "001007_04 \\u524d\\u6a4b\\u99c5", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072197, 36.383792]}}, {"type": "Feature", "properties": {"name": "001007_06 \\u524d\\u6a4b\\u99c5", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072342, 36.384085]}}, {"type": "Feature", "properties": {"name": "001007_10 \\u524d\\u6a4b\\u99c5", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072867, 36.383714]}}, {"type": "Feature", "properties": {"name": "001008_01 \\u6c38\\u5bff\\u5bfa\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.074836, 36.384465]}}, {"type": "Feature", "properties": {"name": "001008_02 \\u6c38\\u5bff\\u5bfa\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.075652, 36.384414]}}, {"type": "Feature", "properties": {"name": "001009_01 \\u4e09\\u6cb3\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.07881, 36.385421]}}, {"type": "Feature", "properties": {"name": "001009_02 \\u4e09\\u6cb3\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.078517, 36.385351]}}, {"type": "Feature", "properties": {"name": "001010_01 \\u5883\\u6a4b", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.081566, 36.384963]}}, {"type": "Feature", "properties": {"name": "001010_02 \\u5883\\u6a4b", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.081641, 36.384842]}}, {"type": "Feature", "properties": {"name": "001011_01 \\u30b3\\u30b3\\u30eb\\u30f3\\u30b7\\u30c6\\u30a3\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.086358, 36.384166]}}, {"type": "Feature", "properties": {"name": "001011_02 \\u30b3\\u30b3\\u30eb\\u30f3\\u30b7\\u30c6\\u30a3\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.085372, 36.384208]}}, {"type": "Feature", "properties": {"name": "001012_01 \\u671d\\u65e5\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.089288, 36.383677]}}, {"type": "Feature", "properties": {"name": "001012_02 \\u671d\\u65e5\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.089454, 36.383513]}}, {"type": "Feature", "properties": {"name": "001013_01 \\u671d\\u65e5\\u753a\\u56e3\\u5730", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.092342, 36.383141]}}, {"type": "Feature", "properties": {"name": "001013_02 \\u671d\\u65e5\\u753a\\u56e3\\u5730", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.092481, 36.382989]}}, {"type": "Feature", "properties": {"name": "001014_01 \\u524d\\u6a4b\\u6771\\u8b66\\u5bdf\\u7f72\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.096668, 36.382404]}}, {"type": "Feature", "properties": {"name": "001014_02 \\u524d\\u6a4b\\u6771\\u8b66\\u5bdf\\u7f72\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.096765, 36.382249]}}, {"type": "Feature", "properties": {"name": "001015_01 \\u5929\\u5ddd\\u5927\\u5cf6\\u753a\\u4e09\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.102, 36.381536]}}, {"type": "Feature", "properties": {"name": "001015_02 \\u5929\\u5ddd\\u5927\\u5cf6\\u753a\\u4e09\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.102022, 36.381351]}}, {"type": "Feature", "properties": {"name": "001016_01 \\u770c\\u52e4\\u52b4\\u798f\\u7949\\u30bb\\u30f3\\u30bf\\u30fc\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.108513, 36.380059]}}, {"type": "Feature", "properties": {"name": "001016_02 \\u770c\\u52e4\\u52b4\\u798f\\u7949\\u30bb\\u30f3\\u30bf\\u30fc\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.108094, 36.380003]}}, {"type": "Feature", "properties": {"name": "001017_01 \\u91ce\\u4e2d\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.113845, 36.37806]}}, {"type": "Feature", "properties": {"name": "001017_02 \\u91ce\\u4e2d\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.111844, 36.378578]}}, {"type": "Feature", "properties": {"name": "001018_01 \\u4e0a\\u9577\\u78ef\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.11944, 36.375969]}}, {"type": "Feature", "properties": {"name": "001018_02 \\u4e0a\\u9577\\u78ef\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.119397, 36.375744]}}, {"type": "Feature", "properties": {"name": "001019_01 \\u5973\\u5c4b\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.129906, 36.372976]}}, {"type": "Feature", "properties": {"name": "001019_02 \\u5973\\u5c4b\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.128581, 36.373049]}}, {"type": "Feature", "properties": {"name": "001020_01 \\u524d\\u6a4b\\u6771\\u9ad8\\u6821\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.138747, 36.371006]}}, {"type": "Feature", "properties": {"name": "001020_02 \\u524d\\u6a4b\\u6771\\u9ad8\\u6821\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.136955, 36.371183]}}, {"type": "Feature", "properties": {"name": "001021_01 \\u4eca\\u4e95\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.142595, 36.370337]}}, {"type": "Feature", "properties": {"name": "001021_02 \\u4eca\\u4e95\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.142617, 36.370129]}}, {"type": "Feature", "properties": {"name": "001022_01 \\u5fa1\\u8535\\u6a4b", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.149435, 36.369309]}}, {"type": "Feature", "properties": {"name": "001022_02 \\u5fa1\\u8535\\u6a4b", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.149371, 36.369093]}}, {"type": "Feature", "properties": {"name": "001023_01 \\u57ce\\u5357\\u652f\\u6240\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.156753, 36.368875]}}, {"type": "Feature", "properties": {"name": "001023_02 \\u57ce\\u5357\\u652f\\u6240\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.156642, 36.368657]}}, {"type": "Feature", "properties": {"name": "001024_01 \\u7dcf\\u5408\\u904b\\u52d5\\u516c\\u5712\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.161131, 36.368632]}}, {"type": "Feature", "properties": {"name": "001024_02 \\u7dcf\\u5408\\u904b\\u52d5\\u516c\\u5712\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.160165, 36.36855]}}, {"type": "Feature", "properties": {"name": "001025_01 \\u4e8c\\u4e4b\\u5bae\\u753a\\u795e\\u793e\\u88cf", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.166322, 36.368876]}}, {"type": "Feature", "properties": {"name": "001025_02 \\u4e8c\\u4e4b\\u5bae\\u753a\\u795e\\u793e\\u88cf", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.166078, 36.368758]}}, {"type": "Feature", "properties": {"name": "001026_01 \\u4e8c\\u4e4b\\u5bae\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.173127, 36.370186]}}, {"type": "Feature", "properties": {"name": "001026_02 \\u4e8c\\u4e4b\\u5bae\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.172929, 36.370056]}}, {"type": "Feature", "properties": {"name": "001027_01 \\u98ef\\u571f\\u4e95\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.183507, 36.372599]}}, {"type": "Feature", "properties": {"name": "001027_02 \\u98ef\\u571f\\u4e95\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.182654, 36.372262]}}, {"type": "Feature", "properties": {"name": "001028_01 \\u57ce\\u5357\\u5de5\\u696d\\u56e3\\u5730\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.186645, 36.373588]}}, {"type": "Feature", "properties": {"name": "001028_02 \\u57ce\\u5357\\u5de5\\u696d\\u56e3\\u5730\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.186093, 36.373312]}}, {"type": "Feature", "properties": {"name": "001029_01 \\u6771\\u5927\\u5ba4", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.193544, 36.376037]}}, {"type": "Feature", "properties": {"name": "002001_01 \\u8868\\u753a\\u4e8c\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.070716, 36.384125]}}, {"type": "Feature", "properties": {"name": "002001_02 \\u8868\\u753a\\u4e8c\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.071458, 36.384309]}}, {"type": "Feature", "properties": {"name": "002002_01 \\u524d\\u6a4b\\u99c5\\u5357\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072316, 36.381921]}}, {"type": "Feature", "properties": {"name": "002002_02 \\u524d\\u6a4b\\u99c5\\u5357\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072091, 36.381942]}}, {"type": "Feature", "properties": {"name": "002003_01 \\u5357\\u753a\\u56db\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072488, 36.378185]}}, {"type": "Feature", "properties": {"name": "002003_02 \\u5357\\u753a\\u56db\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072257, 36.379195]}}, {"type": "Feature", "properties": {"name": "002004_01 \\u524d\\u5546\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072584, 36.376742]}}, {"type": "Feature", "properties": {"name": "002004_02 \\u524d\\u5546\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072386, 36.376531]}}, {"type": "Feature", "properties": {"name": "002005_01 \\u57ce\\u5357\\u5c0f\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072906, 36.374747]}}, {"type": "Feature", "properties": {"name": "002005_02 \\u57ce\\u5357\\u5c0f\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072676, 36.375304]}}, {"type": "Feature", "properties": {"name": "002006_01 \\u516d\\u4f9b\\u516b\\u5e61\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.073303, 36.373356]}}, {"type": "Feature", "properties": {"name": "002006_02 \\u516d\\u4f9b\\u516b\\u5e61\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.073219, 36.373307]}}, {"type": "Feature", "properties": {"name": "002007_01 \\u516d\\u4f9b\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.073718, 36.369338]}}, {"type": "Feature", "properties": {"name": "002007_02 \\u516d\\u4f9b\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.07361, 36.369303]}}, {"type": "Feature", "properties": {"name": "002008_01 \\u516d\\u4f9b\\u5357", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.076668, 36.36701]}}, {"type": "Feature", "properties": {"name": "002008_02 \\u516d\\u4f9b\\u5357", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.076325, 36.366936]}}, {"type": "Feature", "properties": {"name": "002009_01 \\u5e02\\u6c11\\u4f53\\u80b2\\u9928\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.081448, 36.365429]}}, {"type": "Feature", "properties": {"name": "002009_02 \\u5e02\\u6c11\\u4f53\\u80b2\\u9928\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.081544, 36.365282]}}, {"type": "Feature", "properties": {"name": "002010_01 \\u524d\\u6a4b\\u5de5\\u79d1\\u5927\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.083218, 36.363476]}}, {"type": "Feature", "properties": {"name": "002011_01 \\u4e0a\\u4f50\\u9ce5\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.084388, 36.361156]}}, {"type": "Feature", "properties": {"name": "002011_02 \\u4e0a\\u4f50\\u9ce5\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.084414, 36.360962]}}, {"type": "Feature", "properties": {"name": "002012_01 \\u5f8c\\u9591\\u753a\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.085825, 36.357394]}}, {"type": "Feature", "properties": {"name": "002012_02 \\u5f8c\\u9591\\u753a\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.085772, 36.357363]}}, {"type": "Feature", "properties": {"name": "002013_01 \\u5357\\u9ad8\\u6821\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.0873, 36.35322]}}, {"type": "Feature", "properties": {"name": "002013_02 \\u5357\\u9ad8\\u6821\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.087719, 36.351855]}}, {"type": "Feature", "properties": {"name": "002014_01 \\u4e80\\u91cc\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.091415, 36.34406]}}, {"type": "Feature", "properties": {"name": "002014_02 \\u4e80\\u91cc\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.090793, 36.34476]}}, {"type": "Feature", "properties": {"name": "002015_01 \\u9db4\\u4e80", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.092928, 36.341788]}}, {"type": "Feature", "properties": {"name": "002015_02 \\u9db4\\u4e80", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.09289, 36.341718]}}, {"type": "Feature", "properties": {"name": "002016_01 \\u8fb2\\u5354\\u30d3\\u30eb\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.09509, 36.338594]}}, {"type": "Feature", "properties": {"name": "002016_02 \\u8fb2\\u5354\\u30d3\\u30eb\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.094945, 36.338676]}}, {"type": "Feature", "properties": {"name": "002017_01 \\u9db4\\u5149\\u8def\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.096854, 36.334766]}}, {"type": "Feature", "properties": {"name": "002017_02 \\u9db4\\u5149\\u8def\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.09679, 36.334766]}}, {"type": "Feature", "properties": {"name": "002018_01 \\u4e0b\\u5ddd\\u6df5\\u516c\\u6c11\\u9928\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.091925, 36.333642]}}, {"type": "Feature", "properties": {"name": "002018_02 \\u4e0b\\u5ddd\\u6df5\\u516c\\u6c11\\u9928\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.092965, 36.333772]}}, {"type": "Feature", "properties": {"name": "002019_01 \\u7523\\u696d\\u6280\\u8853\\u30bb\\u30f3\\u30bf\\u30fc\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.088212, 36.333426]}}, {"type": "Feature", "properties": {"name": "002019_02 \\u7523\\u696d\\u6280\\u8853\\u30bb\\u30f3\\u30bf\\u30fc\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.088202, 36.333512]}}, {"type": "Feature", "properties": {"name": "002020_01 \\u6771\\u6a2a\\u624b", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.085804, 36.331883]}}, {"type": "Feature", "properties": {"name": "002020_02 \\u6771\\u6a2a\\u624b", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.085691, 36.33187]}}, {"type": "Feature", "properties": {"name": "002021_01 \\u897f\\u901a\\u308a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.086238, 36.330422]}}, {"type": "Feature", "properties": {"name": "002021_02 \\u897f\\u901a\\u308a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.086254, 36.330059]}}, {"type": "Feature", "properties": {"name": "002022_01 \\u6cb9\\u7530\\u6a4b", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.087585, 36.32907]}}, {"type": "Feature", "properties": {"name": "002022_02 \\u6cb9\\u7530\\u6a4b", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.087585, 36.328979]}}, {"type": "Feature", "properties": {"name": "002023_01 \\u30b0\\u30e9\\u30f3\\u30c9\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.090669, 36.329269]}}, {"type": "Feature", "properties": {"name": "002023_02 \\u30b0\\u30e9\\u30f3\\u30c9\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.090669, 36.329204]}}, {"type": "Feature", "properties": {"name": "002024_01 \\u4e2d\\u592e\\u901a\\u308a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.094398, 36.3291]}}, {"type": "Feature", "properties": {"name": "002024_02 \\u4e2d\\u592e\\u901a\\u308a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.093469, 36.329018]}}, {"type": "Feature", "properties": {"name": "002025_01 \\u65b0\\u5800\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.099082, 36.327245]}}, {"type": "Feature", "properties": {"name": "002025_02 \\u65b0\\u5800\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.099093, 36.32715]}}, {"type": "Feature", "properties": {"name": "002026_01 \\u7fa4\\u99ac\\u30d8\\u30ea\\u30dd\\u30fc\\u30c8\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.108835, 36.322093]}}, {"type": "Feature", "properties": {"name": "002026_02 \\u7fa4\\u99ac\\u30d8\\u30ea\\u30dd\\u30fc\\u30c8\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.108829, 36.322046]}}, {"type": "Feature", "properties": {"name": "002027_01 \\u4e0a\\u798f\\u5cf6", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.115486, 36.318584]}}, {"type": "Feature", "properties": {"name": "002027_02 \\u4e0a\\u798f\\u5cf6", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.115304, 36.318635]}}, {"type": "Feature", "properties": {"name": "002028_01 \\u798f\\u5cf6\\u6a4b", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.120497, 36.314966]}}, {"type": "Feature", "properties": {"name": "002028_02 \\u798f\\u5cf6\\u6a4b", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.12032, 36.31497]}}, {"type": "Feature", "properties": {"name": "002029_01 \\u798f\\u5cf6\\u516c\\u6c11\\u9928", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.119288, 36.3109]}}, {"type": "Feature", "properties": {"name": "002029_02 \\u798f\\u5cf6\\u516c\\u6c11\\u9928", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.118476, 36.310988]}}, {"type": "Feature", "properties": {"name": "002030_01 \\u798f\\u5cf6", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.116823, 36.307344]}}, {"type": "Feature", "properties": {"name": "002030_02 \\u798f\\u5cf6", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.116732, 36.307261]}}, {"type": "Feature", "properties": {"name": "002031_01 \\u7389\\u6751\\u753a\\u5f79\\u5834\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.116705, 36.303985]}}, {"type": "Feature", "properties": {"name": "002031_02 \\u7389\\u6751\\u753a\\u5f79\\u5834\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.116663, 36.303985]}}, {"type": "Feature", "properties": {"name": "002032_01 \\u7389\\u6751\\u753a\\u5f79\\u5834", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.115536, 36.303985]}}, {"type": "Feature", "properties": {"name": "002033_01 \\u5973\\u5b50\\u5927\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.115604, 36.302887]}}, {"type": "Feature", "properties": {"name": "002033_02 \\u5973\\u5b50\\u5927\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.115984, 36.302933]}}, {"type": "Feature", "properties": {"name": "002034_01 \\u7389\\u6751\\u516d\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.112202, 36.302983]}}, {"type": "Feature", "properties": {"name": "002034_02 \\u7389\\u6751\\u516d\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.112552, 36.303023]}}, {"type": "Feature", "properties": {"name": "002035_01 \\u7389\\u6751\\u4e94\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.10951, 36.30305]}}, {"type": "Feature", "properties": {"name": "002035_02 \\u7389\\u6751\\u4e94\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.109437095238, 36.3031273333333]}}, {"type": "Feature", "properties": {"name": "002036_01 \\u7389\\u6751\\u56db\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.107189, 36.303141]}}, {"type": "Feature", "properties": {"name": "002036_02 \\u7389\\u6751\\u56db\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.107479, 36.303179]}}, {"type": "Feature", "properties": {"name": "002037_01 \\u7389\\u6751\\u4e09\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.102334, 36.303286]}}, {"type": "Feature", "properties": {"name": "002037_02 \\u7389\\u6751\\u4e09\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.102325, 36.303338]}}, {"type": "Feature", "properties": {"name": "002038_01 \\u753a\\u55b6\\u4e0a\\u65b0\\u7530\\u56e3\\u5730", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.099718, 36.301652]}}, {"type": "Feature", "properties": {"name": "002038_02 \\u753a\\u55b6\\u4e0a\\u65b0\\u7530\\u56e3\\u5730", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.099664, 36.30173]}}, {"type": "Feature", "properties": {"name": "002039_01 \\u7dcf\\u5408\\u904b\\u52d5\\u516c\\u5712", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.1005, 36.296835]}}, {"type": "Feature", "properties": {"name": "002039_02 \\u7dcf\\u5408\\u904b\\u52d5\\u516c\\u5712", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.100441, 36.296783]}}, {"type": "Feature", "properties": {"name": "002040_01 \\u4e0a\\u4e4b\\u624b\\u56e3\\u5730", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.106465857143, 36.296677]}}, {"type": "Feature", "properties": {"name": "002040_02 \\u4e0a\\u4e4b\\u624b\\u56e3\\u5730", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.106479142857, 36.296642]}}, {"type": "Feature", "properties": {"name": "002041_01 \\u4e0a\\u4e4b\\u624b\\u516c\\u6c11\\u9928\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.109286, 36.296636]}}, {"type": "Feature", "properties": {"name": "002041_02 \\u4e0a\\u4e4b\\u624b\\u516c\\u6c11\\u9928\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.109442, 36.296563]}}, {"type": "Feature", "properties": {"name": "002042_01 \\u30c0\\u30a4\\u30e4\\u30d1\\u30ec\\u30b9\\u897f", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.113583, 36.296497]}}, {"type": "Feature", "properties": {"name": "002042_02 \\u30c0\\u30a4\\u30e4\\u30d1\\u30ec\\u30b9\\u897f", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.113571571429, 36.296462]}}, {"type": "Feature", "properties": {"name": "002043_01 \\u770c\\u7acb\\u5973\\u5b50\\u5927\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.113932, 36.29805]}}, {"type": "Feature", "properties": {"name": "002043_02 \\u770c\\u7acb\\u5973\\u5b50\\u5927\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.114002, 36.29805]}}, {"type": "Feature", "properties": {"name": "002044_01 \\u4e0a\\u4e4b\\u624b", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.11789, 36.297661]}}, {"type": "Feature", "properties": {"name": "002044_02 \\u4e0a\\u4e4b\\u624b", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.117729, 36.297721]}}, {"type": "Feature", "properties": {"name": "002045_01 \\u4e0a\\u4e4b\\u624b\\u5357", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.118625, 36.293363]}}, {"type": "Feature", "properties": {"name": "002045_02 \\u4e0a\\u4e4b\\u624b\\u5357", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.118533, 36.293363]}}, {"type": "Feature", "properties": {"name": "002046_01 \\u89d2\\u6e15\\u5317", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.11871, 36.290505]}}, {"type": "Feature", "properties": {"name": "002046_02 \\u89d2\\u6e15\\u5317", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.11863, 36.290505]}}, {"type": "Feature", "properties": {"name": "002047_01 \\u89d2\\u6e15\\u5357", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.118984, 36.286717]}}, {"type": "Feature", "properties": {"name": "002047_02 \\u89d2\\u6e15\\u5357", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.118925, 36.286717]}}, {"type": "Feature", "properties": {"name": "002048_01 \\u4e0a\\u6b66\\u5927\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.116785, 36.277917]}}, {"type": "Feature", "properties": {"name": "002048_02 \\u4e0a\\u6b66\\u5927\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.116602, 36.277917]}}, {"type": "Feature", "properties": {"name": "002049_01 \\u81ea\\u885b\\u968a\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.114285, 36.273476]}}, {"type": "Feature", "properties": {"name": "002049_02 \\u81ea\\u885b\\u968a\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.114145, 36.273385]}}, {"type": "Feature", "properties": {"name": "002050_01 \\u65b0\\u753a\\u90f5\\u4fbf\\u5c40\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.11113, 36.274159]}}, {"type": "Feature", "properties": {"name": "002050_02 \\u65b0\\u753a\\u90f5\\u4fbf\\u5c40\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.111163, 36.274228]}}, {"type": "Feature", "properties": {"name": "002051_01 \\u6a4b\\u5834\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.108041, 36.27598]}}, {"type": "Feature", "properties": {"name": "002051_02 \\u6a4b\\u5834\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.108293, 36.276391]}}, {"type": "Feature", "properties": {"name": "002052_01 \\u65b0\\u753a\\u99c5", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.105525, 36.273268]}}, {"type": "Feature", "properties": {"name": "003002_01 \\u5742\\u4e0b", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072981, 36.389716]}}, {"type": "Feature", "properties": {"name": "003002_02 \\u5742\\u4e0b", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.073116, 36.389655]}}, {"type": "Feature", "properties": {"name": "003003_01 \\u4e2d\\u592e\\u99c5", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.07436, 36.392186]}}, {"type": "Feature", "properties": {"name": "003003_02 \\u4e2d\\u592e\\u99c5", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.074473, 36.392186]}}, {"type": "Feature", "properties": {"name": "003004_01 \\u57ce\\u6771\\u753a\\u4e8c\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.073759, 36.393524]}}, {"type": "Feature", "properties": {"name": "003004_02 \\u57ce\\u6771\\u753a\\u4e8c\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.073781, 36.393762]}}, {"type": "Feature", "properties": {"name": "003005_01 \\u57ce\\u6771\\u753a\\u4e00\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.073142, 36.394876]}}, {"type": "Feature", "properties": {"name": "003005_02 \\u57ce\\u6771\\u753a\\u4e00\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.073057, 36.395433]}}, {"type": "Feature", "properties": {"name": "003006_01 \\u770c\\u6c11\\u4f1a\\u9928\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072225, 36.397035]}}, {"type": "Feature", "properties": {"name": "003006_02 \\u770c\\u6c11\\u4f1a\\u9928\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072483, 36.396711]}}, {"type": "Feature", "properties": {"name": "003007_01 \\u82e5\\u5bae\\u753a\\u4e00\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072096, 36.398861]}}, {"type": "Feature", "properties": {"name": "003007_02 \\u82e5\\u5bae\\u753a\\u4e00\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072214, 36.398728]}}, {"type": "Feature", "properties": {"name": "003008_01 \\u9644\\u5c5e\\u5c0f\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.073057, 36.401228]}}, {"type": "Feature", "properties": {"name": "003008_02 \\u9644\\u5c5e\\u5c0f\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.073046, 36.401007]}}, {"type": "Feature", "properties": {"name": "003009_01 \\u307f\\u305a\\u304d\\u4e2d\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.077048, 36.402117]}}, {"type": "Feature", "properties": {"name": "003009_02 \\u307f\\u305a\\u304d\\u4e2d\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.077182, 36.402048]}}, {"type": "Feature", "properties": {"name": "003010_01 \\u65e5\\u5409\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.080266, 36.402082]}}, {"type": "Feature", "properties": {"name": "003010_02 \\u65e5\\u5409\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.080309, 36.402026]}}, {"type": "Feature", "properties": {"name": "003011_01 \\u4e0a\\u4e09\\u4fe3\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.081779, 36.401685]}}, {"type": "Feature", "properties": {"name": "003011_02 \\u4e0a\\u4e09\\u4fe3\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.081688, 36.401452]}}, {"type": "Feature", "properties": {"name": "003109_01 \\u307f\\u305a\\u304d\\u4e2d\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.076919, 36.400956]}}, {"type": "Feature", "properties": {"name": "003109_02 \\u307f\\u305a\\u304d\\u4e2d\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.076855, 36.400865]}}, {"type": "Feature", "properties": {"name": "003110_01 \\u65e5\\u5409\\u5150\\u7ae5\\u9928\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.077166, 36.399347]}}, {"type": "Feature", "properties": {"name": "003110_02 \\u65e5\\u5409\\u5150\\u7ae5\\u9928\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.077091, 36.399347]}}, {"type": "Feature", "properties": {"name": "003111_01 \\u7dcf\\u5408\\u798f\\u7949\\u4f1a\\u9928", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.079805, 36.398799]}}, {"type": "Feature", "properties": {"name": "003012_01 \\u4e09\\u4fe3\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.083399, 36.399101]}}, {"type": "Feature", "properties": {"name": "003012_02 \\u4e09\\u4fe3\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.083437, 36.399032]}}, {"type": "Feature", "properties": {"name": "003013_01 \\u5e78\\u585a\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.087074, 36.399304]}}, {"type": "Feature", "properties": {"name": "003013_02 \\u5e78\\u585a\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.087074, 36.399235]}}, {"type": "Feature", "properties": {"name": "003014_01 \\u970a\\u5712\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.091524, 36.400647]}}, {"type": "Feature", "properties": {"name": "003014_02 \\u970a\\u5712\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.091524, 36.400586]}}, {"type": "Feature", "properties": {"name": "003015_01 \\u4e0b\\u6c96\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.094265, 36.401269]}}, {"type": "Feature", "properties": {"name": "003015_02 \\u4e0b\\u6c96\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.094377, 36.401221]}}, {"type": "Feature", "properties": {"name": "003016_01 \\u770c\\u6c11\\u5065\\u5eb7\\u79d1\\u5b66\\u5927\\u5b66\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.096743, 36.403509]}}, {"type": "Feature", "properties": {"name": "003016_02 \\u770c\\u6c11\\u5065\\u5eb7\\u79d1\\u5b66\\u5927\\u5b66\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.096802, 36.403466]}}, {"type": "Feature", "properties": {"name": "003116_01 \\u770c\\u6c11\\u5065\\u5eb7\\u79d1\\u5b66\\u5927\\u5b66", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.095987, 36.403613]}}, {"type": "Feature", "properties": {"name": "003017_01 \\u4e0a\\u6c96\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.097387, 36.405854]}}, {"type": "Feature", "properties": {"name": "003017_02 \\u4e0a\\u6c96\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.097612, 36.406074]}}, {"type": "Feature", "properties": {"name": "003018_01 \\u7aef\\u6c17\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.098658, 36.410465]}}, {"type": "Feature", "properties": {"name": "003018_02 \\u7aef\\u6c17\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.098706, 36.410344]}}, {"type": "Feature", "properties": {"name": "003019_01 \\u82b3\\u8cc0\\u5de5\\u696d\\u56e3\\u5730", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.100933, 36.414238]}}, {"type": "Feature", "properties": {"name": "003019_02 \\u82b3\\u8cc0\\u5de5\\u696d\\u56e3\\u5730", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.10104, 36.414259]}}, {"type": "Feature", "properties": {"name": "003020_01 \\u9ce5\\u53d6\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.102708, 36.416716]}}, {"type": "Feature", "properties": {"name": "003020_02 \\u9ce5\\u53d6\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.1028, 36.416379]}}, {"type": "Feature", "properties": {"name": "003021_01 \\u6771\\u90e8\\u4f4f\\u5b85\\u56e3\\u5730\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.105117, 36.421447]}}, {"type": "Feature", "properties": {"name": "003021_02 \\u6771\\u90e8\\u4f4f\\u5b85\\u56e3\\u5730\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.105171, 36.421486]}}, {"type": "Feature", "properties": {"name": "003022_01 \\u82b3\\u8cc0\\u5c0f\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.106201, 36.424002]}}, {"type": "Feature", "properties": {"name": "003022_02 \\u82b3\\u8cc0\\u5c0f\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.10604, 36.423299]}}, {"type": "Feature", "properties": {"name": "003023_01 \\u9ad8\\u82b1\\u53f0\\u56e3\\u5730", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.106855, 36.426735]}}, {"type": "Feature", "properties": {"name": "003023_02 \\u9ad8\\u82b1\\u53f0\\u56e3\\u5730", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.106785, 36.426074]}}, {"type": "Feature", "properties": {"name": "003024_01 \\u56e3\\u5730\\u4e2d\\u592e", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.107134, 36.427779]}}, {"type": "Feature", "properties": {"name": "003024_02 \\u56e3\\u5730\\u4e2d\\u592e", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.107214, 36.427758]}}, {"type": "Feature", "properties": {"name": "003025_01 \\u56e3\\u5730\\u5317", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.108277, 36.430369]}}, {"type": "Feature", "properties": {"name": "003025_02 \\u56e3\\u5730\\u5317", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.108314, 36.430257]}}, {"type": "Feature", "properties": {"name": "003026_01 \\u516c\\u7530", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.109022, 36.431957]}}, {"type": "Feature", "properties": {"name": "003026_02 \\u516c\\u7530", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.109113, 36.431948]}}, {"type": "Feature", "properties": {"name": "003027_01 \\u897f\\u65b0\\u4e95", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.113126, 36.431487]}}, {"type": "Feature", "properties": {"name": "003027_02 \\u897f\\u65b0\\u4e95", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.113088, 36.431439]}}, {"type": "Feature", "properties": {"name": "003028_01 \\u96c6\\u8377\\u6240", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.115481, 36.429618]}}, {"type": "Feature", "properties": {"name": "003028_02 \\u96c6\\u8377\\u6240", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.115787, 36.429514]}}, {"type": "Feature", "properties": {"name": "003029_01 \\u5c0f\\u5742\\u5b50", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.118185, 36.429014]}}, {"type": "Feature", "properties": {"name": "004001_01 \\u5c0f\\u5742\\u5b50\\u6771", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.123422285714, 36.427031]}}, {"type": "Feature", "properties": {"name": "004001_02 \\u5c0f\\u5742\\u5b50\\u6771", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.123353714286, 36.427014]}}, {"type": "Feature", "properties": {"name": "004002_01 \\u837b\\u7aaa\\u516c\\u5712", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.129493, 36.424663]}}, {"type": "Feature", "properties": {"name": "005001_01 \\u82e5\\u5bae\\u753a\\u4e09\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.074068, 36.403294]}}, {"type": "Feature", "properties": {"name": "005001_02 \\u82e5\\u5bae\\u753a\\u4e09\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.074261, 36.403561]}}, {"type": "Feature", "properties": {"name": "005002_01 \\u82e5\\u5bae\\u5341\\u5b57\\u8def", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.074985, 36.405694]}}, {"type": "Feature", "properties": {"name": "005002_02 \\u82e5\\u5bae\\u5341\\u5b57\\u8def", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.075082, 36.405694]}}, {"type": "Feature", "properties": {"name": "005003_01 \\u5317\\u4ee3\\u7530\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.077394, 36.409498]}}, {"type": "Feature", "properties": {"name": "005003_02 \\u5317\\u4ee3\\u7530\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.077281, 36.40945]}}, {"type": "Feature", "properties": {"name": "005004_01 \\u4e0b\\u7d30\\u4e95\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.080956, 36.410909]}}, {"type": "Feature", "properties": {"name": "005004_02 \\u4e0b\\u7d30\\u4e95\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.081052, 36.410957]}}, {"type": "Feature", "properties": {"name": "005005_01 \\u770c\\u55b6\\u4f4f\\u5b85\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.082833, 36.412619]}}, {"type": "Feature", "properties": {"name": "005005_02 \\u770c\\u55b6\\u4f4f\\u5b85\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.082839, 36.412515]}}, {"type": "Feature", "properties": {"name": "005006_01 \\u5b66\\u6821\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.083919857143, 36.4134649999999]}}, {"type": "Feature", "properties": {"name": "005006_02 \\u5b66\\u6821\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.085236, 36.414786]}}, {"type": "Feature", "properties": {"name": "005007_01 \\u938c\\u5009\\u5742", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.088562, 36.415732]}}, {"type": "Feature", "properties": {"name": "005007_02 \\u938c\\u5009\\u5742", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.088541, 36.415684]}}, {"type": "Feature", "properties": {"name": "005008_01 \\u5c0f\\u795e\\u660e\\u4e09\\u53c9\\u8def", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.091566, 36.416655]}}, {"type": "Feature", "properties": {"name": "005008_02 \\u5c0f\\u795e\\u660e\\u4e09\\u53c9\\u8def", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.091684, 36.416711]}}, {"type": "Feature", "properties": {"name": "005009_01 \\u5bcc\\u58eb\\u585a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.093272, 36.420329]}}, {"type": "Feature", "properties": {"name": "005009_02 \\u5bcc\\u58eb\\u585a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.093342, 36.420329]}}, {"type": "Feature", "properties": {"name": "005010_01 \\u52dd\\u6ca2\\u5341\\u5b57\\u8def", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.095965, 36.424697]}}, {"type": "Feature", "properties": {"name": "005010_02 \\u52dd\\u6ca2\\u5341\\u5b57\\u8def", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.096083, 36.424814]}}, {"type": "Feature", "properties": {"name": "005011_01 \\u52dd\\u6ca2\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.099388, 36.42853]}}, {"type": "Feature", "properties": {"name": "005011_02 \\u52dd\\u6ca2\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.099441, 36.428534]}}, {"type": "Feature", "properties": {"name": "005012_01 \\u5929\\u6cbc\\u96c6\\u8377\\u6240", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.101737, 36.432989]}}, {"type": "Feature", "properties": {"name": "005012_02 \\u5929\\u6cbc\\u96c6\\u8377\\u6240", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.101764, 36.432954]}}, {"type": "Feature", "properties": {"name": "005013_01 \\u5dba\\u5341\\u5b57\\u8def", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.104371, 36.436394]}}, {"type": "Feature", "properties": {"name": "005013_02 \\u5dba\\u5341\\u5b57\\u8def", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.104414, 36.436377]}}, {"type": "Feature", "properties": {"name": "005014_01 \\u5dba\\u516c\\u6c11\\u9928\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.10538, 36.438534]}}, {"type": "Feature", "properties": {"name": "005014_02 \\u5dba\\u516c\\u6c11\\u9928\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.105433, 36.438517]}}, {"type": "Feature", "properties": {"name": "005015_01 \\u5dba\\u5c0f\\u5b66\\u6821\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.111898, 36.448007]}}, {"type": "Feature", "properties": {"name": "005015_02 \\u5dba\\u5c0f\\u5b66\\u6821\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.111844, 36.447683]}}, {"type": "Feature", "properties": {"name": "005016_01 \\u5dba\\u516c\\u5712\\u7ba1\\u7406\\u4e8b\\u52d9\\u6240", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.120266, 36.454147]}}, {"type": "Feature", "properties": {"name": "005016_02 \\u5dba\\u516c\\u5712\\u7ba1\\u7406\\u4e8b\\u52d9\\u6240", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.120325, 36.454086]}}, {"type": "Feature", "properties": {"name": "005017_01 \\u5dba\\u516c\\u5712", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.123801, 36.458699]}}, {"type": "Feature", "properties": {"name": "006003_01 \\u3051\\u3084\\u304d\\u30a6\\u30a9\\u30fc\\u30af\\u5357", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.076803714286, 36.376687]}}, {"type": "Feature", "properties": {"name": "006003_02 \\u3051\\u3084\\u304d\\u30a6\\u30a9\\u30fc\\u30af\\u5357", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.076702, 36.376749]}}, {"type": "Feature", "properties": {"name": "006009_01 \\u5354\\u7acb\\u75c5\\u9662\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.086524, 36.370404]}}, {"type": "Feature", "properties": {"name": "008001_01 \\u65b0\\u524d\\u6a4b\\u99c5", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.047567, 36.378982]}}, {"type": "Feature", "properties": {"name": "008002_01 \\u6edd\\u5ddd\\u6a4b", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.050647, 36.380485]}}, {"type": "Feature", "properties": {"name": "008002_02 \\u6edd\\u5ddd\\u6a4b", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.050657, 36.380368]}}, {"type": "Feature", "properties": {"name": "008003_01 \\u308f\\u304b\\u3070\\u75c5\\u9662", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.054402, 36.380895]}}, {"type": "Feature", "properties": {"name": "008003_02 \\u308f\\u304b\\u3070\\u75c5\\u9662", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.054321, 36.380947]}}, {"type": "Feature", "properties": {"name": "008004_01 \\u53e4\\u5e02\\u753a\\u4e00\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.054005, 36.378865]}}, {"type": "Feature", "properties": {"name": "008004_02 \\u53e4\\u5e02\\u753a\\u4e00\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.053855, 36.379029]}}, {"type": "Feature", "properties": {"name": "008005_01 \\u5c0f\\u76f8\\u6728\\u753a\\u5317", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.054734, 36.375064]}}, {"type": "Feature", "properties": {"name": "008005_02 \\u5c0f\\u76f8\\u6728\\u753a\\u5317", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.054616, 36.375267]}}, {"type": "Feature", "properties": {"name": "008006_01 \\u6771\\u516c\\u6c11\\u9928", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.051553, 36.37306]}}, {"type": "Feature", "properties": {"name": "008007_01 \\u6771\\u4fdd\\u80b2\\u6240\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.053726, 36.372114]}}, {"type": "Feature", "properties": {"name": "008007_02 \\u6771\\u4fdd\\u80b2\\u6240\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.053667, 36.372131]}}, {"type": "Feature", "properties": {"name": "008008_01 \\u6771\\u7bb1\\u7530\\u5f8c\\u5bb6\\u753a\\u516c\\u6c11\\u9928", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.053034, 36.369134]}}, {"type": "Feature", "properties": {"name": "008008_02 \\u6771\\u7bb1\\u7530\\u5f8c\\u5bb6\\u753a\\u516c\\u6c11\\u9928", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.052986, 36.369065]}}, {"type": "Feature", "properties": {"name": "008009_01 \\u6771\\u5c0f\\u5b66\\u6821", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.053002, 36.366728]}}, {"type": "Feature", "properties": {"name": "008009_02 \\u6771\\u5c0f\\u5b66\\u6821", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.052975, 36.366529]}}, {"type": "Feature", "properties": {"name": "008010_01 \\u7bb1\\u7530\\u753a\\u5357", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.053232, 36.361756]}}, {"type": "Feature", "properties": {"name": "008010_02 \\u7bb1\\u7530\\u753a\\u5357", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.053114, 36.361967]}}, {"type": "Feature", "properties": {"name": "008011_01 \\u5927\\u5229\\u6839\\u753a\\u897f", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.056365, 36.361168]}}, {"type": "Feature", "properties": {"name": "008011_02 \\u5927\\u5229\\u6839\\u753a\\u897f", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.056016, 36.361099]}}, {"type": "Feature", "properties": {"name": "008012_01 \\u5b66\\u6821\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.059723, 36.360732]}}, {"type": "Feature", "properties": {"name": "008012_02 \\u5b66\\u6821\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.059616, 36.360823]}}, {"type": "Feature", "properties": {"name": "008013_01 \\u5927\\u5229\\u6839\\u56e3\\u5730", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.060093, 36.358192]}}, {"type": "Feature", "properties": {"name": "008013_02 \\u5927\\u5229\\u6839\\u56e3\\u5730", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.060008, 36.358257]}}, {"type": "Feature", "properties": {"name": "008014_01 \\u65e7\\u5378\\u58f2\\u30bb\\u30f3\\u30bf\\u30fc", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.062829, 36.356541]}}, {"type": "Feature", "properties": {"name": "008014_02 \\u65e7\\u5378\\u58f2\\u30bb\\u30f3\\u30bf\\u30fc", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.062749, 36.356503]}}, {"type": "Feature", "properties": {"name": "008015_01 \\u7b2c\\u4e8c\\u56e3\\u5730", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.062872, 36.353146]}}, {"type": "Feature", "properties": {"name": "008015_02 \\u7b2c\\u4e8c\\u56e3\\u5730", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.062792, 36.353189]}}, {"type": "Feature", "properties": {"name": "008016_01 \\u5927\\u5229\\u6839\\u7b2c\\u4e8c\\u56e3\\u5730\\u897f", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.064819, 36.352709]}}, {"type": "Feature", "properties": {"name": "008016_02 \\u5927\\u5229\\u6839\\u7b2c\\u4e8c\\u56e3\\u5730\\u897f", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.064583, 36.352679]}}, {"type": "Feature", "properties": {"name": "008017_01 \\u5927\\u5229\\u6839\\u7b2c\\u4e8c\\u56e3\\u5730\\u6771", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.06836, 36.352593]}}, {"type": "Feature", "properties": {"name": "008017_02 \\u5927\\u5229\\u6839\\u7b2c\\u4e8c\\u56e3\\u5730\\u6771", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.068242, 36.352558]}}, {"type": "Feature", "properties": {"name": "008018_01 \\u5927\\u5229\\u6839\\u7dd1\\u5730", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.069422, 36.354455]}}, {"type": "Feature", "properties": {"name": "008018_02 \\u5927\\u5229\\u6839\\u7dd1\\u5730", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.069444, 36.354355]}}, {"type": "Feature", "properties": {"name": "008019_01 \\u4e0b\\u65b0\\u7530\\u753a\\u516c\\u6c11\\u9928", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.069149, 36.356075]}}, {"type": "Feature", "properties": {"name": "008019_02 \\u4e0b\\u65b0\\u7530\\u753a\\u516c\\u6c11\\u9928", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.069052, 36.356196]}}, {"type": "Feature", "properties": {"name": "008020_01 \\u4e0b\\u65b0\\u7530\\u753a\\u5357", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.066236, 36.356904]}}, {"type": "Feature", "properties": {"name": "008020_02 \\u4e0b\\u65b0\\u7530\\u753a\\u5357", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.066032, 36.356939]}}, {"type": "Feature", "properties": {"name": "008021_01 \\u6bbf\\u7530\\u7528\\u6c34", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.062706, 36.359453]}}, {"type": "Feature", "properties": {"name": "008021_02 \\u6bbf\\u7530\\u7528\\u6c34", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.062776, 36.359665]}}, {"type": "Feature", "properties": {"name": "008022_01 \\u4e0b\\u65b0\\u7530\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.062695, 36.361095]}}, {"type": "Feature", "properties": {"name": "008022_02 \\u4e0b\\u65b0\\u7530\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.062572, 36.361151]}}, {"type": "Feature", "properties": {"name": "008023_01 \\u5927\\u5229\\u6839\\u30b7\\u30e7\\u30c3\\u30d4\\u30f3\\u30b0\\u30bb\\u30f3\\u30bf\\u30fc", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.059509, 36.361475]}}, {"type": "Feature", "properties": {"name": "008023_02 \\u5927\\u5229\\u6839\\u30b7\\u30e7\\u30c3\\u30d4\\u30f3\\u30b0\\u30bb\\u30f3\\u30bf\\u30fc", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.059605, 36.361419]}}, {"type": "Feature", "properties": {"name": "008024_01 \\u5927\\u5229\\u6839\\u4e2d\\u592e\\u516c\\u5712", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.059147834778, 36.363712157599]}}, {"type": "Feature", "properties": {"name": "008024_02 \\u5927\\u5229\\u6839\\u4e2d\\u592e\\u516c\\u5712", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.059246, 36.363665]}}, {"type": "Feature", "properties": {"name": "008025_01 \\u5927\\u5229\\u6839\\u56e3\\u5730\\u5317", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.058962, 36.365021]}}, {"type": "Feature", "properties": {"name": "008025_02 \\u5927\\u5229\\u6839\\u56e3\\u5730\\u5317", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.059042, 36.365021]}}, {"type": "Feature", "properties": {"name": "008026_01 \\u6e08\\u751f\\u4f1a\\u75c5\\u9662", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.061075, 36.367276]}}, {"type": "Feature", "properties": {"name": "008027_01 \\u80b2\\u82f1\\u9ad8\\u6821", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.062658, 36.368551]}}, {"type": "Feature", "properties": {"name": "008027_02 \\u80b2\\u82f1\\u9ad8\\u6821", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.062642, 36.368853]}}, {"type": "Feature", "properties": {"name": "008028_01 \\u5c0f\\u76f8\\u6728\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.061102, 36.371237]}}, {"type": "Feature", "properties": {"name": "008028_02 \\u5c0f\\u76f8\\u6728\\u753a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.061102, 36.371276]}}, {"type": "Feature", "properties": {"name": "008029_01 \\u5149\\u304c\\u4e18\\u56e3\\u5730", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.057953, 36.371592]}}, {"type": "Feature", "properties": {"name": "008029_02 \\u5149\\u304c\\u4e18\\u56e3\\u5730", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.058007, 36.371592]}}, {"type": "Feature", "properties": {"name": "008030_01 \\u5357\\u90e8\\u5927\\u6a4b\\u897f\\u8a70", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.060287, 36.373302]}}, {"type": "Feature", "properties": {"name": "008030_02 \\u5357\\u90e8\\u5927\\u6a4b\\u897f\\u8a70", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.060367, 36.373224]}}, {"type": "Feature", "properties": {"name": "008031_01 \\u5357\\u753a\\u4e8c\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.065613, 36.375323]}}, {"type": "Feature", "properties": {"name": "008031_02 \\u5357\\u753a\\u4e8c\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.065683, 36.375233]}}, {"type": "Feature", "properties": {"name": "008032_01 \\u751f\\u5ddd", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.068639, 36.376066]}}, {"type": "Feature", "properties": {"name": "008032_02 \\u751f\\u5ddd", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.068296, 36.37595]}}, {"type": "Feature", "properties": {"name": "008033_01 \\u524d\\u6a4b\\u5546\\u696d\\u9ad8\\u6821\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.073054, 36.376084]}}, {"type": "Feature", "properties": {"name": "008033_02 \\u524d\\u6a4b\\u5546\\u696d\\u9ad8\\u6821\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.072984, 36.375954]}}, {"type": "Feature", "properties": {"name": "008034_01 \\u3051\\u3084\\u304d\\u30a6\\u30a9\\u30fc\\u30af", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.077066, 36.379344]}}, {"type": "Feature", "properties": {"name": "008035_01 \\u9759\\u548c\\u5e7c\\u7a1a\\u5712\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.076444, 36.381573]}}, {"type": "Feature", "properties": {"name": "008035_02 \\u9759\\u548c\\u5e7c\\u7a1a\\u5712\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.076562, 36.38191]}}, {"type": "Feature", "properties": {"name": "008036_01 \\u5357\\u53e3\\u6539\\u826f\\u4f4f\\u5b85\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.076348, 36.38324]}}, {"type": "Feature", "properties": {"name": "008036_02 \\u5357\\u53e3\\u6539\\u826f\\u4f4f\\u5b85\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.076444, 36.38403]}}, {"type": "Feature", "properties": {"name": "008037_01 \\u4e2d\\u592e\\u5c0f\\u5b66\\u6821\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.068585, 36.383978]}}, {"type": "Feature", "properties": {"name": "008037_02 \\u4e2d\\u592e\\u5c0f\\u5b66\\u6821\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.068617, 36.384052]}}, {"type": "Feature", "properties": {"name": "008038_01 \\u524d\\u6a4b\\u5973\\u5b50\\u9ad8\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.065629, 36.383637]}}, {"type": "Feature", "properties": {"name": "008038_02 \\u524d\\u6a4b\\u5973\\u5b50\\u9ad8\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.065576, 36.383698]}}, {"type": "Feature", "properties": {"name": "008039_01 \\u7d05\\u96f2\\u753a\\u4e00\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.061381, 36.38318]}}, {"type": "Feature", "properties": {"name": "008039_02 \\u7d05\\u96f2\\u753a\\u4e00\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.061241, 36.38324]}}, {"type": "Feature", "properties": {"name": "008040_01 \\u5229\\u6839\\u6a4b\\u897f\\u8a70", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.05725, 36.383287]}}, {"type": "Feature", "properties": {"name": "008040_02 \\u5229\\u6839\\u6a4b\\u897f\\u8a70", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.057277, 36.383357]}}, {"type": "Feature", "properties": {"name": "008041_01 \\u77f3\\u5009\\u90f5\\u4fbf\\u5c40", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.054627, 36.383465]}}, {"type": "Feature", "properties": {"name": "008041_02 \\u77f3\\u5009\\u90f5\\u4fbf\\u5c40", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.05437, 36.383521]}}, {"type": "Feature", "properties": {"name": "010001_01 \\u3048\\u3073\\u3059\\u901a\\u308a", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.069154, 36.388707]}}, {"type": "Feature", "properties": {"name": "010002_01 \\u4e2d\\u592e\\u524d\\u6a4b\\u99c5", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.074615, 36.391048]}}, {"type": "Feature", "properties": {"name": "010003_01 \\u57ce\\u6771\\u753a\\u4e09\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.076085, 36.392235]}}, {"type": "Feature", "properties": {"name": "010003_02 \\u57ce\\u6771\\u753a\\u4e09\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.076101, 36.392145]}}, {"type": "Feature", "properties": {"name": "010004_01 \\u524d\\u6a4b\\u5354\\u7acb\\u8a3a\\u7642\\u6240\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.07924, 36.392455]}}, {"type": "Feature", "properties": {"name": "010004_02 \\u524d\\u6a4b\\u5354\\u7acb\\u8a3a\\u7642\\u6240\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.079173, 36.392438]}}, {"type": "Feature", "properties": {"name": "010005_01 \\u57ce\\u6771\\u99c5\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.080391, 36.391419]}}, {"type": "Feature", "properties": {"name": "010005_02 \\u57ce\\u6771\\u99c5\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.080466, 36.391242]}}, {"type": "Feature", "properties": {"name": "010006_01 \\u5150\\u7ae5\\u6587\\u5316\\u30bb\\u30f3\\u30bf\\u30fc", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.084361, 36.39053]}}, {"type": "Feature", "properties": {"name": "010007_01 \\u6797\\u6b6f\\u79d1\\u533b\\u9662\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.089108, 36.391942]}}, {"type": "Feature", "properties": {"name": "010007_02 \\u6797\\u6b6f\\u79d1\\u533b\\u9662\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.089253, 36.391881]}}, {"type": "Feature", "properties": {"name": "010008_01 \\u897f\\u7247\\u8c9d\\u4e94\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.090916, 36.38942]}}, {"type": "Feature", "properties": {"name": "010008_02 \\u897f\\u7247\\u8c9d\\u4e94\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.090616, 36.389502]}}, {"type": "Feature", "properties": {"name": "010009_01 \\u4fdd\\u5065\\u6240\\u30fb\\u4fdd\\u5065\\u30bb\\u30f3\\u30bf\\u30fc", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.089629, 36.386418]}}, {"type": "Feature", "properties": {"name": "010010_01 \\u671d\\u65e5\\u753a\\u770c\\u55b6\\u4f4f\\u5b85\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.087198, 36.386298]}}, {"type": "Feature", "properties": {"name": "010010_02 \\u671d\\u65e5\\u753a\\u770c\\u55b6\\u4f4f\\u5b85\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.087284, 36.386328]}}, {"type": "Feature", "properties": {"name": "010011_01 \\u671d\\u8c9d\\u6a4b", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.086034, 36.386885]}}, {"type": "Feature", "properties": {"name": "010011_02 \\u671d\\u8c9d\\u6a4b", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.086211, 36.38682]}}, {"type": "Feature", "properties": {"name": "010012_01 \\u65e7\\u65e5\\u8d64\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.084886, 36.385335]}}, {"type": "Feature", "properties": {"name": "010012_02 \\u65e7\\u65e5\\u8d64\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.084742, 36.385011]}}, {"type": "Feature", "properties": {"name": "010013_01 \\u30b5\\u30fc\\u30d1\\u30b9\\u6587\\u4eac\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.085863, 36.382126]}}, {"type": "Feature", "properties": {"name": "010013_02 \\u30b5\\u30fc\\u30d1\\u30b9\\u6587\\u4eac\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.085798, 36.382108]}}, {"type": "Feature", "properties": {"name": "010014_01 \\u4e94\\u4e2d\\u6771", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.089156, 36.379025]}}, {"type": "Feature", "properties": {"name": "010014_02 \\u4e94\\u4e2d\\u6771", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.089274, 36.378753]}}, {"type": "Feature", "properties": {"name": "010015_01 \\u6587\\u4eac\\u4e09\\u81ea\\u6cbb\\u4f1a\\u9928\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.087628, 36.377777]}}, {"type": "Feature", "properties": {"name": "010015_02 \\u6587\\u4eac\\u4e09\\u81ea\\u6cbb\\u4f1a\\u9928\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.087477, 36.37782]}}, {"type": "Feature", "properties": {"name": "010016_01 \\u751f\\u6daf\\u5b66\\u7fd2\\u30bb\\u30f3\\u30bf\\u30fc\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.084827, 36.377172]}}, {"type": "Feature", "properties": {"name": "010016_02 \\u751f\\u6daf\\u5b66\\u7fd2\\u30bb\\u30f3\\u30bf\\u30fc\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.084731, 36.376852]}}, {"type": "Feature", "properties": {"name": "010017_01 \\u5929\\u5ddd\\u539f\\u4e00\\u81ea\\u6cbb\\u4f1a\\u9928\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.084688, 36.374265]}}, {"type": "Feature", "properties": {"name": "010017_02 \\u5929\\u5ddd\\u539f\\u4e00\\u81ea\\u6cbb\\u4f1a\\u9928\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.084607, 36.374174]}}, {"type": "Feature", "properties": {"name": "010018_01 \\u5929\\u5ddd\\u5909\\u96fb\\u6240\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.084366, 36.371985]}}, {"type": "Feature", "properties": {"name": "010018_02 \\u5929\\u5ddd\\u5909\\u96fb\\u6240\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.084355, 36.372231]}}, {"type": "Feature", "properties": {"name": "010019_01 \\u5929\\u5ddd\\u539f\\u753a\\u5357", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.082714, 36.371186]}}, {"type": "Feature", "properties": {"name": "010019_02 \\u5929\\u5ddd\\u539f\\u753a\\u5357", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.082435, 36.371233]}}, {"type": "Feature", "properties": {"name": "010020_01 \\u516d\\u4f9b\\u5929\\u795e\\u516c\\u5712", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.080611, 36.372205]}}, {"type": "Feature", "properties": {"name": "010020_02 \\u516d\\u4f9b\\u5929\\u795e\\u516c\\u5712", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.08065, 36.372095]}}, {"type": "Feature", "properties": {"name": "010021_01 \\u807e\\u5b66\\u6821\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.080746, 36.374634]}}, {"type": "Feature", "properties": {"name": "010021_02 \\u807e\\u5b66\\u6821\\u5165\\u53e3", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.080795, 36.374526]}}, {"type": "Feature", "properties": {"name": "010022_01 \\u6587\\u4eac\\u753a\\u4e8c\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.08058, 36.377092]}}, {"type": "Feature", "properties": {"name": "010022_02 \\u6587\\u4eac\\u753a\\u4e8c\\u4e01\\u76ee", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.080623, 36.377127]}}, {"type": "Feature", "properties": {"name": "010023_01 \\u3051\\u3084\\u304d\\u30a6\\u30a9\\u30fc\\u30af\\u524d\\u6a4b\\u6771", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.080231, 36.37863]}}, {"type": "Feature", "properties": {"name": "010023_02 \\u3051\\u3084\\u304d\\u30a6\\u30a9\\u30fc\\u30af\\u524d\\u6a4b\\u6771", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.080124, 36.379368]}}, {"type": "Feature", "properties": {"name": "010024_01 \\u6587\\u4e00\\u677e\\u524d\\u516c\\u5712\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.07763, 36.382327]}}, {"type": "Feature", "properties": {"name": "010024_02 \\u6587\\u4e00\\u677e\\u524d\\u516c\\u5712\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.07763, 36.382352]}}, {"type": "Feature", "properties": {"name": "002101_01 \\u807e\\u5b66\\u6821\\u897f", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.07691560343, 36.3746614978989]}}, {"type": "Feature", "properties": {"name": "002101_02 \\u807e\\u5b66\\u6821\\u897f", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.076806215864, 36.3746592209199]}}, {"type": "Feature", "properties": {"name": "002102_01 \\u516d\\u4f9b\\u753a\\u5317", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.077064990997, 36.3719193423341]}}, {"type": "Feature", "properties": {"name": "002102_02 \\u516d\\u4f9b\\u753a\\u5317", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.076979160309, 36.3719020648639]}}, {"type": "Feature", "properties": {"name": "002103_01 \\u516d\\u4f9b\\u4e2d\\u592e\\u516c\\u5712", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.077325398407, 36.3682314567737]}}, {"type": "Feature", "properties": {"name": "002103_02 \\u516d\\u4f9b\\u4e2d\\u592e\\u516c\\u5712", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.077311754227, 36.3675912373365]}}, {"type": "Feature", "properties": {"name": "009001_01 \\u524d\\u6a4b\\u5927\\u5cf6\\u99c5", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.108661190476, 36.3707846666667]}}, {"type": "Feature", "properties": {"name": "009002_01 \\u5927\\u5cf6\\u516c\\u5712\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.107681, 36.370488]}}, {"type": "Feature", "properties": {"name": "009002_02 \\u5927\\u5cf6\\u516c\\u5712\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.107665, 36.370557]}}, {"type": "Feature", "properties": {"name": "009003_01 \\u6728\\u5de5\\u56e3\\u5730", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.109033, 36.373261]}}, {"type": "Feature", "properties": {"name": "009003_02 \\u6728\\u5de5\\u56e3\\u5730", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.109162, 36.373347]}}, {"type": "Feature", "properties": {"name": "009004_01 \\u770c\\u52e4\\u52b4\\u798f\\u7949\\u30bb\\u30f3\\u30bf\\u30fc\\u6771", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.111603, 36.37596]}}, {"type": "Feature", "properties": {"name": "009004_02 \\u770c\\u52e4\\u52b4\\u798f\\u7949\\u30bb\\u30f3\\u30bf\\u30fc\\u6771", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.111656, 36.375939]}}, {"type": "Feature", "properties": {"name": "009005_01 \\u91ce\\u4e2d\\u753a\\u5341\\u5b57\\u8def", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.112514, 36.379554]}}, {"type": "Feature", "properties": {"name": "009005_02 \\u91ce\\u4e2d\\u753a\\u5341\\u5b57\\u8def", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.112574, 36.379554]}}, {"type": "Feature", "properties": {"name": "009006_01 \\u9752\\u679c\\u5e02\\u5834\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.112026, 36.386909]}}, {"type": "Feature", "properties": {"name": "009006_02 \\u9752\\u679c\\u5e02\\u5834\\u524d", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.112085, 36.386909]}}, {"type": "Feature", "properties": {"name": "009007_01 \\u77f3\\u95a2\\u753a\\u5b66\\u5712\\u4e2d\\u592e", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.117702, 36.386501]}}, {"type": "Feature", "properties": {"name": "009008_01 \\u77f3\\u95a2\\u753a\\u5357", "icon": "circle", "iconstyle": {"color": "#ff00ff", "radius": 4}}, "geometry": {"type": "Point", "coordinates": [139.119483, 36.387287]}}, {"type": "Feature", "properties": {"name": "ABC_08\\u664203\\u5206_\\u7cfb\\u7d71150", "times": [1747609380000, 1747609384179, 1747609391727, 1747609398703, 1747609407312, 1747609420895, 1747609440000, 1747609451210, 1747609500000, 1747609529344, 1747609548749, 1747609560000, 1747609608701, 1747609634575, 1747609650303, 1747609680000, 1747609695919, 1747609712493, 1747609747631, 1747609766958, 1747609800000, 1747609816874, 1747609873461, 1747609894850, 1747609943073, 1747609980000, 1747609987956, 1747610005631, 1747610021028, 1747610064746, 1747610083626, 1747610095217, 1747610097124, 1747610100000, 1747610100860, 1747610101581, 1747610105996, 1747610119527, 1747610133340, 1747610139243, 1747610155302, 1747610160000, 1747610177485, 1747610186252, 1747610204100, 1747610212001, 1747610220000, 1747610246958, 1747610291299, 1747610340000, 1747610352341, 1747610371173, 1747610400000, 1747610450179, 1747610460000, 1747610579202], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "ABC_08\\u664203\\u5206_\\u7cfb\\u7d71150", "popup": "ABC_08\\u664203\\u5206_\\u7cfb\\u7d71150"}, "geometry": {"type": "LineString", "coordinates": [[139.108661190476, 36.3707846666667], [139.108819752475, 36.3707710468028], [139.109064591762, 36.3706485334222], [139.108907943616, 36.3704745476345], [139.10859899322, 36.3705646320767], [139.108323454857, 36.3702097566609], [139.107681, 36.370488], [139.106979870197, 36.3708499080063], [139.109033, 36.373261], [139.110209660557, 36.3746415476373], [139.110984060696, 36.3755565561863], [139.111603, 36.37596], [139.113437090464, 36.3770485325244], [139.112886825262, 36.377918778873], [139.112517029626, 36.3784321926837], [139.112514, 36.379554], [139.112536155946, 36.3805361087322], [139.112157642719, 36.381511953357], [139.112132220759, 36.3836800403149], [139.112146419171, 36.3848725542627], [139.112026, 36.386909], [139.112005017063, 36.3875100086863], [139.114496208872, 36.3875979828842], [139.115432912581, 36.3876826567465], [139.117552035604, 36.3878110643603], [139.117702, 36.386501], [139.117745558766, 36.3859344244471], [139.116189958246, 36.3858432089753], [139.116510775703, 36.3847756979981], [139.120358909961, 36.3849955575993], [139.119844679152, 36.3862768773452], [139.119681560761, 36.387093318771], [139.11951374727, 36.3870833317699], [139.119483, 36.387287], [139.119536226763, 36.3873846980651], [139.119646868297, 36.3873841328375], [139.11957745097, 36.3879292491327], [139.117507571329, 36.3877905088819], [139.11539399722, 36.3876554721526], [139.114493702916, 36.3875734545645], [139.11203087883, 36.387490366589], [139.112085, 36.386909], [139.112184028298, 36.384753403226], [139.11218047142, 36.3836719358833], [139.112202278301, 36.3814702735118], [139.112564872878, 36.3805406375906], [139.112574, 36.379554], [139.112540207536, 36.3785310551739], [139.113496157265, 36.3770358789164], [139.111656, 36.375939], [139.110986159243, 36.3755256626288], [139.110274470084, 36.3746597965508], [139.109162, 36.373347], [139.107035263716, 36.3708588093517], [139.107665, 36.370557], [139.108303368214, 36.3702479774046]]}}, {"type": "Feature", "properties": {"name": "ABC_08\\u664240\\u5206_\\u7cfb\\u7d71150", "times": [1747611600000, 1747611604179, 1747611611727, 1747611618703, 1747611627312, 1747611640895, 1747611660000, 1747611671210, 1747611720000, 1747611749344, 1747611768749, 1747611780000, 1747611828701, 1747611854575, 1747611870303, 1747611900000, 1747611915919, 1747611932493, 1747611967631, 1747611986958, 1747612020000, 1747612036874, 1747612093461, 1747612114850, 1747612163073, 1747612200000, 1747612207956, 1747612225631, 1747612241028, 1747612284746, 1747612303626, 1747612315217, 1747612317124, 1747612320000, 1747612320860, 1747612321581, 1747612325996, 1747612339527, 1747612353340, 1747612359243, 1747612375302, 1747612380000, 1747612397485, 1747612406252, 1747612424100, 1747612432001, 1747612440000, 1747612466958, 1747612511299, 1747612560000, 1747612572341, 1747612591173, 1747612620000, 1747612670179, 1747612680000, 1747612799202], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "ABC_08\\u664240\\u5206_\\u7cfb\\u7d71150", "popup": "ABC_08\\u664240\\u5206_\\u7cfb\\u7d71150"}, "geometry": {"type": "LineString", "coordinates": [[139.108661190476, 36.3707846666667], [139.108819752475, 36.3707710468028], [139.109064591762, 36.3706485334222], [139.108907943616, 36.3704745476345], [139.10859899322, 36.3705646320767], [139.108323454857, 36.3702097566609], [139.107681, 36.370488], [139.106979870197, 36.3708499080063], [139.109033, 36.373261], [139.110209660557, 36.3746415476373], [139.110984060696, 36.3755565561863], [139.111603, 36.37596], [139.113437090464, 36.3770485325244], [139.112886825262, 36.377918778873], [139.112517029626, 36.3784321926837], [139.112514, 36.379554], [139.112536155946, 36.3805361087322], [139.112157642719, 36.381511953357], [139.112132220759, 36.3836800403149], [139.112146419171, 36.3848725542627], [139.112026, 36.386909], [139.112005017063, 36.3875100086863], [139.114496208872, 36.3875979828842], [139.115432912581, 36.3876826567465], [139.117552035604, 36.3878110643603], [139.117702, 36.386501], [139.117745558766, 36.3859344244471], [139.116189958246, 36.3858432089753], [139.116510775703, 36.3847756979981], [139.120358909961, 36.3849955575993], [139.119844679152, 36.3862768773452], [139.119681560761, 36.387093318771], [139.11951374727, 36.3870833317699], [139.119483, 36.387287], [139.119536226763, 36.3873846980651], [139.119646868297, 36.3873841328375], [139.11957745097, 36.3879292491327], [139.117507571329, 36.3877905088819], [139.11539399722, 36.3876554721526], [139.114493702916, 36.3875734545645], [139.11203087883, 36.387490366589], [139.112085, 36.386909], [139.112184028298, 36.384753403226], [139.11218047142, 36.3836719358833], [139.112202278301, 36.3814702735118], [139.112564872878, 36.3805406375906], [139.112574, 36.379554], [139.112540207536, 36.3785310551739], [139.113496157265, 36.3770358789164], [139.111656, 36.375939], [139.110986159243, 36.3755256626288], [139.110274470084, 36.3746597965508], [139.109162, 36.373347], [139.107035263716, 36.3708588093517], [139.107665, 36.370557], [139.108303368214, 36.3702479774046]]}}, {"type": "Feature", "properties": {"name": "ABC_16\\u664205\\u5206_\\u7cfb\\u7d71150", "times": [1747638300000, 1747638304179, 1747638311727, 1747638318703, 1747638327312, 1747638340895, 1747638360000, 1747638371210, 1747638420000, 1747638449344, 1747638468749, 1747638480000, 1747638528701, 1747638554575, 1747638570303, 1747638600000, 1747638615919, 1747638632493, 1747638667631, 1747638686958, 1747638720000, 1747638736874, 1747638793461, 1747638814850, 1747638863073, 1747638900000, 1747638927846, 1747638989708, 1747639043598, 1747639196611, 1747639262691, 1747639303261, 1747639309935, 1747639320000, 1747639320860, 1747639321581, 1747639325996, 1747639339527, 1747639353340, 1747639359243, 1747639375302, 1747639380000, 1747639397485, 1747639406252, 1747639424100, 1747639432001, 1747639440000, 1747639466958, 1747639511299, 1747639560000, 1747639572341, 1747639591173, 1747639620000, 1747639670179, 1747639680000, 1747639799202], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "ABC_16\\u664205\\u5206_\\u7cfb\\u7d71150", "popup": "ABC_16\\u664205\\u5206_\\u7cfb\\u7d71150"}, "geometry": {"type": "LineString", "coordinates": [[139.108661190476, 36.3707846666667], [139.108819752475, 36.3707710468028], [139.109064591762, 36.3706485334222], [139.108907943616, 36.3704745476345], [139.10859899322, 36.3705646320767], [139.108323454857, 36.3702097566609], [139.107681, 36.370488], [139.106979870197, 36.3708499080063], [139.109033, 36.373261], [139.110209660557, 36.3746415476373], [139.110984060696, 36.3755565561863], [139.111603, 36.37596], [139.113437090464, 36.3770485325244], [139.112886825262, 36.377918778873], [139.112517029626, 36.3784321926837], [139.112514, 36.379554], [139.112536155946, 36.3805361087322], [139.112157642719, 36.381511953357], [139.112132220759, 36.3836800403149], [139.112146419171, 36.3848725542627], [139.112026, 36.386909], [139.112005017063, 36.3875100086863], [139.114496208872, 36.3875979828842], [139.115432912581, 36.3876826567465], [139.117552035604, 36.3878110643603], [139.117702, 36.386501], [139.117745558766, 36.3859344244471], [139.116189958246, 36.3858432089753], [139.116510775703, 36.3847756979981], [139.120358909961, 36.3849955575993], [139.119844679152, 36.3862768773452], [139.119681560761, 36.387093318771], [139.11951374727, 36.3870833317699], [139.119483, 36.387287], [139.119536226763, 36.3873846980651], [139.119646868297, 36.3873841328375], [139.11957745097, 36.3879292491327], [139.117507571329, 36.3877905088819], [139.11539399722, 36.3876554721526], [139.114493702916, 36.3875734545645], [139.11203087883, 36.387490366589], [139.112085, 36.386909], [139.112184028298, 36.384753403226], [139.11218047142, 36.3836719358833], [139.112202278301, 36.3814702735118], [139.112564872878, 36.3805406375906], [139.112574, 36.379554], [139.112540207536, 36.3785310551739], [139.113496157265, 36.3770358789164], [139.111656, 36.375939], [139.110986159243, 36.3755256626288], [139.110274470084, 36.3746597965508], [139.109162, 36.373347], [139.107035263716, 36.3708588093517], [139.107665, 36.370557], [139.108303368214, 36.3702479774046]]}}, {"type": "Feature", "properties": {"name": "ABC_16\\u664235\\u5206_\\u7cfb\\u7d71150", "times": [1747640100000, 1747640104179, 1747640111727, 1747640118703, 1747640127312, 1747640140895, 1747640160000, 1747640171210, 1747640220000, 1747640249344, 1747640268749, 1747640280000, 1747640328701, 1747640354575, 1747640370303, 1747640400000, 1747640415919, 1747640432493, 1747640467631, 1747640486958, 1747640520000, 1747640536874, 1747640593461, 1747640614850, 1747640663073, 1747640700000, 1747640727846, 1747640789708, 1747640843598, 1747640996611, 1747641062691, 1747641103261, 1747641109935, 1747641120000, 1747641120860, 1747641121581, 1747641125996, 1747641139527, 1747641153340, 1747641159243, 1747641175302, 1747641180000, 1747641197485, 1747641206252, 1747641224100, 1747641232001, 1747641240000, 1747641266958, 1747641311299, 1747641360000, 1747641372341, 1747641391173, 1747641420000, 1747641470179, 1747641480000, 1747641599202], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "ABC_16\\u664235\\u5206_\\u7cfb\\u7d71150", "popup": "ABC_16\\u664235\\u5206_\\u7cfb\\u7d71150"}, "geometry": {"type": "LineString", "coordinates": [[139.108661190476, 36.3707846666667], [139.108819752475, 36.3707710468028], [139.109064591762, 36.3706485334222], [139.108907943616, 36.3704745476345], [139.10859899322, 36.3705646320767], [139.108323454857, 36.3702097566609], [139.107681, 36.370488], [139.106979870197, 36.3708499080063], [139.109033, 36.373261], [139.110209660557, 36.3746415476373], [139.110984060696, 36.3755565561863], [139.111603, 36.37596], [139.113437090464, 36.3770485325244], [139.112886825262, 36.377918778873], [139.112517029626, 36.3784321926837], [139.112514, 36.379554], [139.112536155946, 36.3805361087322], [139.112157642719, 36.381511953357], [139.112132220759, 36.3836800403149], [139.112146419171, 36.3848725542627], [139.112026, 36.386909], [139.112005017063, 36.3875100086863], [139.114496208872, 36.3875979828842], [139.115432912581, 36.3876826567465], [139.117552035604, 36.3878110643603], [139.117702, 36.386501], [139.117745558766, 36.3859344244471], [139.116189958246, 36.3858432089753], [139.116510775703, 36.3847756979981], [139.120358909961, 36.3849955575993], [139.119844679152, 36.3862768773452], [139.119681560761, 36.387093318771], [139.11951374727, 36.3870833317699], [139.119483, 36.387287], [139.119536226763, 36.3873846980651], [139.119646868297, 36.3873841328375], [139.11957745097, 36.3879292491327], [139.117507571329, 36.3877905088819], [139.11539399722, 36.3876554721526], [139.114493702916, 36.3875734545645], [139.11203087883, 36.387490366589], [139.112085, 36.386909], [139.112184028298, 36.384753403226], [139.11218047142, 36.3836719358833], [139.112202278301, 36.3814702735118], [139.112564872878, 36.3805406375906], [139.112574, 36.379554], [139.112540207536, 36.3785310551739], [139.113496157265, 36.3770358789164], [139.111656, 36.375939], [139.110986159243, 36.3755256626288], [139.110274470084, 36.3746597965508], [139.109162, 36.373347], [139.107035263716, 36.3708588093517], [139.107665, 36.370557], [139.108303368214, 36.3702479774046]]}}, {"type": "Feature", "properties": {"name": "ABC_17\\u664220\\u5206_\\u7cfb\\u7d71150", "times": [1747642800000, 1747642804179, 1747642811727, 1747642818703, 1747642827312, 1747642840895, 1747642860000, 1747642871210, 1747642920000, 1747642949344, 1747642968749, 1747642980000, 1747643028701, 1747643054575, 1747643070303, 1747643100000, 1747643115919, 1747643132493, 1747643167631, 1747643186958, 1747643220000, 1747643236874, 1747643293461, 1747643314850, 1747643363073, 1747643400000, 1747643427846, 1747643489708, 1747643543598, 1747643696611, 1747643762691, 1747643803261, 1747643809935, 1747643820000, 1747643820860, 1747643821581, 1747643825996, 1747643839527, 1747643853340, 1747643859243, 1747643875302, 1747643880000, 1747643897485, 1747643906252, 1747643924100, 1747643932001, 1747643940000, 1747643966958, 1747644011299, 1747644060000, 1747644072341, 1747644091173, 1747644120000, 1747644170179, 1747644180000, 1747644299202], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "ABC_17\\u664220\\u5206_\\u7cfb\\u7d71150", "popup": "ABC_17\\u664220\\u5206_\\u7cfb\\u7d71150"}, "geometry": {"type": "LineString", "coordinates": [[139.108661190476, 36.3707846666667], [139.108819752475, 36.3707710468028], [139.109064591762, 36.3706485334222], [139.108907943616, 36.3704745476345], [139.10859899322, 36.3705646320767], [139.108323454857, 36.3702097566609], [139.107681, 36.370488], [139.106979870197, 36.3708499080063], [139.109033, 36.373261], [139.110209660557, 36.3746415476373], [139.110984060696, 36.3755565561863], [139.111603, 36.37596], [139.113437090464, 36.3770485325244], [139.112886825262, 36.377918778873], [139.112517029626, 36.3784321926837], [139.112514, 36.379554], [139.112536155946, 36.3805361087322], [139.112157642719, 36.381511953357], [139.112132220759, 36.3836800403149], [139.112146419171, 36.3848725542627], [139.112026, 36.386909], [139.112005017063, 36.3875100086863], [139.114496208872, 36.3875979828842], [139.115432912581, 36.3876826567465], [139.117552035604, 36.3878110643603], [139.117702, 36.386501], [139.117745558766, 36.3859344244471], [139.116189958246, 36.3858432089753], [139.116510775703, 36.3847756979981], [139.120358909961, 36.3849955575993], [139.119844679152, 36.3862768773452], [139.119681560761, 36.387093318771], [139.11951374727, 36.3870833317699], [139.119483, 36.387287], [139.119536226763, 36.3873846980651], [139.119646868297, 36.3873841328375], [139.11957745097, 36.3879292491327], [139.117507571329, 36.3877905088819], [139.11539399722, 36.3876554721526], [139.114493702916, 36.3875734545645], [139.11203087883, 36.387490366589], [139.112085, 36.386909], [139.112184028298, 36.384753403226], [139.11218047142, 36.3836719358833], [139.112202278301, 36.3814702735118], [139.112564872878, 36.3805406375906], [139.112574, 36.379554], [139.112540207536, 36.3785310551739], [139.113496157265, 36.3770358789164], [139.111656, 36.375939], [139.110986159243, 36.3755256626288], [139.110274470084, 36.3746597965508], [139.109162, 36.373347], [139.107035263716, 36.3708588093517], [139.107665, 36.370557], [139.108303368214, 36.3702479774046]]}}, {"type": "Feature", "properties": {"name": "AB_07\\u664246\\u5206_\\u7cfb\\u7d71150", "times": [1747608360000, 1747608364179, 1747608371727, 1747608378703, 1747608387312, 1747608400895, 1747608420000, 1747608431210, 1747608480000, 1747608509344, 1747608528749, 1747608540000, 1747608588701, 1747608614575, 1747608630303, 1747608660000, 1747608675919, 1747608692493, 1747608727631, 1747608746958, 1747608780000, 1747608796874, 1747608853461, 1747608874850, 1747608923073, 1747608960000, 1747608967956, 1747608985631, 1747609001028, 1747609044746, 1747609063626, 1747609075217, 1747609077124, 1747609080000, 1747609080860, 1747609081581, 1747609085996, 1747609099527, 1747609113340, 1747609119243, 1747609135302, 1747609140000, 1747609157485, 1747609166252, 1747609184100, 1747609192001, 1747609200000, 1747609226958, 1747609271299, 1747609320000, 1747609332341, 1747609351173, 1747609380000, 1747609430179, 1747609440000, 1747609559202], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "AB_07\\u664246\\u5206_\\u7cfb\\u7d71150", "popup": "AB_07\\u664246\\u5206_\\u7cfb\\u7d71150"}, "geometry": {"type": "LineString", "coordinates": [[139.108661190476, 36.3707846666667], [139.108819752475, 36.3707710468028], [139.109064591762, 36.3706485334222], [139.108907943616, 36.3704745476345], [139.10859899322, 36.3705646320767], [139.108323454857, 36.3702097566609], [139.107681, 36.370488], [139.106979870197, 36.3708499080063], [139.109033, 36.373261], [139.110209660557, 36.3746415476373], [139.110984060696, 36.3755565561863], [139.111603, 36.37596], [139.113437090464, 36.3770485325244], [139.112886825262, 36.377918778873], [139.112517029626, 36.3784321926837], [139.112514, 36.379554], [139.112536155946, 36.3805361087322], [139.112157642719, 36.381511953357], [139.112132220759, 36.3836800403149], [139.112146419171, 36.3848725542627], [139.112026, 36.386909], [139.112005017063, 36.3875100086863], [139.114496208872, 36.3875979828842], [139.115432912581, 36.3876826567465], [139.117552035604, 36.3878110643603], [139.117702, 36.386501], [139.117745558766, 36.3859344244471], [139.116189958246, 36.3858432089753], [139.116510775703, 36.3847756979981], [139.120358909961, 36.3849955575993], [139.119844679152, 36.3862768773452], [139.119681560761, 36.387093318771], [139.11951374727, 36.3870833317699], [139.119483, 36.387287], [139.119536226763, 36.3873846980651], [139.119646868297, 36.3873841328375], [139.11957745097, 36.3879292491327], [139.117507571329, 36.3877905088819], [139.11539399722, 36.3876554721526], [139.114493702916, 36.3875734545645], [139.11203087883, 36.387490366589], [139.112085, 36.386909], [139.112184028298, 36.384753403226], [139.11218047142, 36.3836719358833], [139.112202278301, 36.3814702735118], [139.112564872878, 36.3805406375906], [139.112574, 36.379554], [139.112540207536, 36.3785310551739], [139.113496157265, 36.3770358789164], [139.111656, 36.375939], [139.110986159243, 36.3755256626288], [139.110274470084, 36.3746597965508], [139.109162, 36.373347], [139.107035263716, 36.3708588093517], [139.107665, 36.370557], [139.108303368214, 36.3702479774046]]}}, {"type": "Feature", "properties": {"name": "AB_08\\u664222\\u5206_\\u7cfb\\u7d71150", "times": [1747610520000, 1747610524179, 1747610531727, 1747610538703, 1747610547312, 1747610560895, 1747610580000, 1747610591210, 1747610640000, 1747610669344, 1747610688749, 1747610700000, 1747610748701, 1747610774575, 1747610790303, 1747610820000, 1747610835919, 1747610852493, 1747610887631, 1747610906958, 1747610940000, 1747610956874, 1747611013461, 1747611034850, 1747611083073, 1747611120000, 1747611127956, 1747611145631, 1747611161028, 1747611204746, 1747611223626, 1747611235217, 1747611237124, 1747611240000, 1747611240860, 1747611241581, 1747611245996, 1747611259527, 1747611273340, 1747611279243, 1747611295302, 1747611300000, 1747611317485, 1747611326252, 1747611344100, 1747611352001, 1747611360000, 1747611386958, 1747611431299, 1747611480000, 1747611492341, 1747611511173, 1747611540000, 1747611590179, 1747611600000, 1747611719202], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "AB_08\\u664222\\u5206_\\u7cfb\\u7d71150", "popup": "AB_08\\u664222\\u5206_\\u7cfb\\u7d71150"}, "geometry": {"type": "LineString", "coordinates": [[139.108661190476, 36.3707846666667], [139.108819752475, 36.3707710468028], [139.109064591762, 36.3706485334222], [139.108907943616, 36.3704745476345], [139.10859899322, 36.3705646320767], [139.108323454857, 36.3702097566609], [139.107681, 36.370488], [139.106979870197, 36.3708499080063], [139.109033, 36.373261], [139.110209660557, 36.3746415476373], [139.110984060696, 36.3755565561863], [139.111603, 36.37596], [139.113437090464, 36.3770485325244], [139.112886825262, 36.377918778873], [139.112517029626, 36.3784321926837], [139.112514, 36.379554], [139.112536155946, 36.3805361087322], [139.112157642719, 36.381511953357], [139.112132220759, 36.3836800403149], [139.112146419171, 36.3848725542627], [139.112026, 36.386909], [139.112005017063, 36.3875100086863], [139.114496208872, 36.3875979828842], [139.115432912581, 36.3876826567465], [139.117552035604, 36.3878110643603], [139.117702, 36.386501], [139.117745558766, 36.3859344244471], [139.116189958246, 36.3858432089753], [139.116510775703, 36.3847756979981], [139.120358909961, 36.3849955575993], [139.119844679152, 36.3862768773452], [139.119681560761, 36.387093318771], [139.11951374727, 36.3870833317699], [139.119483, 36.387287], [139.119536226763, 36.3873846980651], [139.119646868297, 36.3873841328375], [139.11957745097, 36.3879292491327], [139.117507571329, 36.3877905088819], [139.11539399722, 36.3876554721526], [139.114493702916, 36.3875734545645], [139.11203087883, 36.387490366589], [139.112085, 36.386909], [139.112184028298, 36.384753403226], [139.11218047142, 36.3836719358833], [139.112202278301, 36.3814702735118], [139.112564872878, 36.3805406375906], [139.112574, 36.379554], [139.112540207536, 36.3785310551739], [139.113496157265, 36.3770358789164], [139.111656, 36.375939], [139.110986159243, 36.3755256626288], [139.110274470084, 36.3746597965508], [139.109162, 36.373347], [139.107035263716, 36.3708588093517], [139.107665, 36.370557], [139.108303368214, 36.3702479774046]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_06\\u664245\\u5206_\\u7cfb\\u7d71117", "times": [1747604700000, 1747604700000, 1747604700000, 1747604700000, 1747604702502, 1747604714216, 1747604729706, 1747604745989, 1747604756848, 1747604760000, 1747604760000, 1747604760000, 1747604760000, 1747604760000, 1747604764475, 1747604815702, 1747604820000, 1747604820000, 1747604820000, 1747604820000, 1747604820000, 1747604820000, 1747604820000, 1747604820000, 1747604822009, 1747604827675, 1747604854646, 1747604877504, 1747604880000, 1747604882401, 1747604890355, 1747604901962, 1747604912119, 1747604928579, 1747604934362, 1747604935858, 1747604937899, 1747604940000, 1747604941221, 1747604949781, 1747604958508, 1747604965813, 1747604971173, 1747604977291, 1747604998182, 1747605000000, 1747605000000, 1747605000000, 1747605000000, 1747605000000, 1747605002138, 1747605044237, 1747605045399, 1747605057356, 1747605060000, 1747605060895, 1747605062645, 1747605065562, 1747605076126, 1747605080608, 1747605092612, 1747605100865, 1747605114090, 1747605119143, 1747605120000, 1747605120884, 1747605130655, 1747605155222, 1747605176571, 1747605178993, 1747605180000, 1747605180000, 1747605180000, 1747605180000, 1747605180000, 1747605180000, 1747605187433, 1747605256564, 1747605326854, 1747605338489, 1747605350313, 1747605356234, 1747605360000, 1747605360000, 1747605360000, 1747605360000, 1747605360000, 1747605360000, 1747605360000, 1747605360000, 1747605360000, 1747605360000, 1747605361806, 1747605375490, 1747605391434, 1747605396366, 1747605402213, 1747605418620, 1747605420000, 1747605420985, 1747605443520, 1747605447234, 1747605478767, 1747605480000, 1747605481468, 1747605509485, 1747605525442, 1747605533576, 1747605537789, 1747605540000, 1747605540000, 1747605540000, 1747605540000, 1747605544854, 1747605570365, 1747605577633, 1747605595228, 1747605600000, 1747605600000, 1747605600000, 1747605600000, 1747605605218, 1747605668588, 1747605676068, 1747605715150, 1747605720000, 1747605721202, 1747605725283, 1747605742551, 1747605752345, 1747605766564, 1747605778717, 1747605780000, 1747605801362, 1747605968021, 1747606014815, 1747606045535], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_06\\u664245\\u5206_\\u7cfb\\u7d71117", "popup": "\\u5e73\\u65e5_06\\u664245\\u5206_\\u7cfb\\u7d71117"}, "geometry": {"type": "LineString", "coordinates": [[139.093469, 36.329018], [139.093340985167, 36.3290530238325], [139.090807580387, 36.3292199626756], [139.090669, 36.329204], [139.090540758956, 36.329223606137], [139.089932130645, 36.3292668234438], [139.089124666361, 36.3292452147904], [139.088286070448, 36.3291367453688], [139.087733651793, 36.3290357369098], [139.087585, 36.328979], [139.087428346895, 36.3289998846007], [139.086644557871, 36.3288919795936], [139.086321061173, 36.3299685460852], [139.086254, 36.330059], [139.086229166331, 36.3301971679133], [139.085768176248, 36.3317513438277], [139.085691, 36.33187], [139.085692490403, 36.332010208995], [139.085308349533, 36.3332616111747], [139.085737739078, 36.3332598077818], [139.08617633697, 36.3332709870895], [139.087328872027, 36.3333874167937], [139.08804303936, 36.333469953131], [139.088202, 36.333512], [139.088361755633, 36.3335038464979], [139.088810266881, 36.3335440968944], [139.090954518879, 36.3336484910542], [139.092772006989, 36.3337335637288], [139.092965, 36.333772], [139.093164424983, 36.3337554942259], [139.093827978564, 36.3337779944471], [139.094794041399, 36.3338394229239], [139.095639871428, 36.3338877801668], [139.097004653173, 36.3340179944471], [139.096893279506, 36.3343981370961], [139.096892229903, 36.3344991369636], [139.09685071403, 36.3346328511358], [139.09679, 36.334766], [139.096788440219, 36.3348521365662], [139.096628440879, 36.3354418801682], [139.096463193523, 36.3360427990889], [139.096327683602, 36.3365462875786], [139.096172581749, 36.3369029194732], [139.095920920372, 36.3372834426481], [139.095038590339, 36.3385725267231], [139.094945, 36.338676], [139.094908794703, 36.3387719797491], [139.093799059906, 36.3404219776188], [139.092972589662, 36.3416168754602], [139.09289, 36.341718], [139.092839178946, 36.3418353950332], [139.09138402219, 36.3439831582059], [139.091324780126, 36.34403087472], [139.090916384621, 36.344643021041], [139.090793, 36.34476], [139.090772828402, 36.344871220346], [139.09063731848, 36.3450616412636], [139.090440700754, 36.3453915112376], [139.089907757628, 36.3466457088437], [139.089700994399, 36.3471828401887], [139.089113473892, 36.348612983835], [139.088716506958, 36.3495980840402], [139.088045604837, 36.3511671193998], [139.087799541343, 36.3517694630865], [139.087719, 36.351855], [139.087734002321, 36.3519386895964], [139.087384381948, 36.3528291357286], [139.086592897154, 36.3550893546806], [139.085906251646, 36.3570536981394], [139.085814356804, 36.3572731056224], [139.085772, 36.357363], [139.085769225851, 36.3574279935823], [139.08523604926, 36.35891814756], [139.084799315791, 36.36012983825], [139.084496459307, 36.3608546746923], [139.084414, 36.360962], [139.084385555867, 36.3610897525255], [139.083885265519, 36.3622270494804], [139.083368415647, 36.363381053379], [139.083126783371, 36.3633255143926], [139.083045188797, 36.3635211563914], [139.083172497657, 36.363530486028], [139.083218, 36.363476], [139.083247483106, 36.3633734817274], [139.083349524111, 36.3634157610394], [139.083208649772, 36.3637167518245], [139.083022877285, 36.3641149843554], [139.082754889188, 36.3644505656826], [139.082457864053, 36.3647568621082], [139.081973667619, 36.3650961134748], [139.08166917754, 36.3652620317061], [139.081544, 36.365282], [139.081443405713, 36.3653997863997], [139.080344048565, 36.3660205672377], [139.079069065753, 36.3667507661141], [139.078629651724, 36.3669134751788], [139.078063121959, 36.3669823841368], [139.07645554391, 36.3669642198625], [139.076325, 36.366936], [139.076239104086, 36.3669553430683], [139.074200508831, 36.3669246627121], [139.073864526705, 36.366917891314], [139.073649955918, 36.3692187930818], [139.07361, 36.369303], [139.073639926818, 36.3693986431033], [139.073494737663, 36.3712770969986], [139.073404942028, 36.3723465165336], [139.073350248244, 36.3728911947818], [139.073289490307, 36.3731699055123], [139.073219, 36.373307], [139.073200044539, 36.3734283813148], [139.072713398372, 36.3752090241486], [139.072676, 36.375304], [139.072650774694, 36.3754036200868], [139.072521328926, 36.375927599253], [139.072450192021, 36.3760685342994], [139.07242651874, 36.3764365716041], [139.072386, 36.376531], [139.07242150419, 36.3766434407146], [139.072286344136, 36.3790993655748], [139.072257, 36.379195], [139.072281329586, 36.3793132699209], [139.072210776013, 36.3807680983048], [139.072165527998, 36.3809360256327], [139.072120746912, 36.3818332099839], [139.072091, 36.381942], [139.072112117282, 36.3820330182553], [139.072095324293, 36.3823469138213], [139.070451009478, 36.382346259113], [139.070287280633, 36.3830886063431], [139.070195502194, 36.3841809525908], [139.071347920848, 36.3842662465333], [139.071458, 36.384309], [139.071602264105, 36.3842707852729], [139.072784887123, 36.384322137398], [139.072782785939, 36.3840532694448], [139.072735322315, 36.3838809736949]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_06\\u664250\\u5206_\\u7cfb\\u7d71123", "times": [1747605000000, 1747605001775, 1747605020821, 1747605041867, 1747605058057, 1747605060000, 1747605060000, 1747605060000, 1747605060000, 1747605062076, 1747605116931, 1747605120000, 1747605120000, 1747605120000, 1747605120000, 1747605121188, 1747605132171, 1747605154593, 1747605178437, 1747605180000, 1747605181799, 1747605212947, 1747605228650, 1747605238878, 1747605240000, 1747605241022, 1747605256927, 1747605265407, 1747605291222, 1747605299275, 1747605300000, 1747605300906, 1747605326022, 1747605348623, 1747605360000, 1747605360000, 1747605360000, 1747605362086, 1747605366979, 1747605416343, 1747605420000, 1747605428113, 1747605476810, 1747605480000, 1747605481566, 1747605485269, 1747605528829, 1747605538778, 1747605540000, 1747605541404, 1747605550329, 1747605556759, 1747605559917, 1747605562390, 1747605569174, 1747605598114, 1747605600000, 1747605602257, 1747605616533, 1747605631381, 1747605657972, 1747605660000, 1747605661581, 1747605668509, 1747605672012, 1747605680778, 1747605689757, 1747605697132, 1747605700643, 1747605706556, 1747605714584, 1747605718714, 1747605720000, 1747605720663, 1747605722135, 1747605729775, 1747605731270, 1747605732564, 1747605734897, 1747605737000, 1747605743703, 1747605746506, 1747605748376, 1747605755682, 1747605759447, 1747605765449, 1747605771470, 1747605777785, 1747605780000, 1747605781491, 1747605789851, 1747605799205, 1747605806756, 1747605811063, 1747605815305, 1747605838314, 1747605840000, 1747605841019, 1747605856936, 1747605861957, 1747605865370, 1747605869227, 1747605872406, 1747605883867, 1747605898838, 1747605900000, 1747605901605, 1747605904875, 1747605910477, 1747605918123, 1747605933926, 1747605948221, 1747605957624, 1747605960000, 1747605966411, 1747606131114, 1747606147961, 1747606169380, 1747606183335, 1747606190572], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_06\\u664250\\u5206_\\u7cfb\\u7d71123", "popup": "\\u5e73\\u65e5_06\\u664250\\u5206_\\u7cfb\\u7d71123"}, "geometry": {"type": "LineString", "coordinates": [[139.115536, 36.303985], [139.11554827634, 36.3039003183803], [139.116677955573, 36.3038923927042], [139.116675853729, 36.3028818908447], [139.115716088512, 36.3029085719264], [139.115604, 36.302887], [139.115447402, 36.3029174580902], [139.112341403961, 36.3029936594257], [139.112202, 36.302983], [139.112112483324, 36.3030045982771], [139.109646366904, 36.303067152838], [139.10951, 36.30305], [139.109354122854, 36.3030780916894], [139.107298032237, 36.3031672619599], [139.107189, 36.303141], [139.107100017678, 36.3031709082437], [139.106209874153, 36.3031941396627], [139.104392152579, 36.3032280479398], [139.102460378756, 36.3032933099331], [139.102334, 36.303286], [139.102194491185, 36.3033065413521], [139.09974201301, 36.3033740305409], [139.099735021591, 36.3023727344807], [139.099696071194, 36.3017212824818], [139.099718, 36.301652], [139.099689307305, 36.3015587657811], [139.099624117492, 36.3000649382355], [139.099602309292, 36.2992681727762], [139.099483824506, 36.2968439232594], [139.100418285484, 36.2968188361705], [139.1005, 36.296835], [139.100588313926, 36.2968201891506], [139.103086266327, 36.296755071931], [139.105334424411, 36.2967058957713], [139.106465857143, 36.296677], [139.109145960154, 36.2966136017313], [139.109286, 36.296636], [139.109434355659, 36.2966206312014], [139.109784208837, 36.2965996901415], [139.113321459525, 36.296511602392], [139.113583, 36.296497], [139.113885657278, 36.2964818368311], [139.113947114291, 36.297954294139], [139.113932, 36.29805], [139.113939183736, 36.2981534693172], [139.113959241938, 36.2983979086358], [139.117517953595, 36.2983240299985], [139.117810661278, 36.2977100030907], [139.11789, 36.297661], [139.117875734029, 36.2975585665185], [139.118205879533, 36.2969605709401], [139.118425470805, 36.296523454381], [139.118502554801, 36.2963002795426], [139.118538356389, 36.2961211308145], [139.118542671204, 36.2956232436834], [139.118600280331, 36.2934999272028], [139.118625, 36.293363], [139.118598530993, 36.293257268622], [139.118644245278, 36.2925760880446], [139.118665702951, 36.2918667841757], [139.11866931803, 36.2905961128636], [139.11871, 36.290505], [139.118679347131, 36.290407214474], [139.118686460887, 36.2899652356462], [139.1186997552, 36.2897420283579], [139.118809026364, 36.2891897610866], [139.118979171867, 36.2886337583195], [139.119091124911, 36.2881720222739], [139.119091124911, 36.2879480426714], [139.119040862345, 36.2875730021989], [139.11899153298, 36.2870623570294], [139.118981853747, 36.2867989967479], [139.118984, 36.286717], [139.118961795545, 36.2866187380176], [139.118960745942, 36.2863968589771], [139.119032116972, 36.2852473112724], [139.119016839196, 36.2850224611012], [139.118953749248, 36.2848342399146], [139.118795265121, 36.2845070700744], [139.11863748139, 36.2842170849566], [139.118335907974, 36.2832372357443], [139.118209027683, 36.2828276459855], [139.118108853079, 36.2825577820009], [139.117785238658, 36.2814887263897], [139.117624655985, 36.2809366929237], [139.117375327279, 36.2800551824428], [139.117103607701, 36.2791751539875], [139.116846115635, 36.278247004722], [139.116785, 36.277917], [139.116668390105, 36.2778398213182], [139.116359002538, 36.2772041458708], [139.115923902005, 36.2765255563764], [139.115542095124, 36.275991338351], [139.115343728719, 36.2756780526286], [139.115173116946, 36.2753600526234], [139.114319824611, 36.2736108258997], [139.114285, 36.273476], [139.114212303445, 36.2733979795348], [139.113506534915, 36.2719836897926], [139.113272713492, 36.2715413304716], [139.113076679099, 36.271255339636], [139.112803909917, 36.2715517939178], [139.112559129492, 36.2717830620193], [139.111980704885, 36.2727766440814], [139.111210211492, 36.2740685792912], [139.11113, 36.274159], [139.11108601374, 36.2742606218729], [139.110935693632, 36.2744430802864], [139.110662690986, 36.2747468892265], [139.110242866908, 36.275130811857], [139.109369283567, 36.2759202084716], [139.108576981315, 36.2766326760108], [139.108105962132, 36.2761303643197], [139.108041, 36.27598], [139.107932901944, 36.2759465850998], [139.106155996508, 36.2740172288873], [139.106032731955, 36.2737921938315], [139.105838679706, 36.2735215011016], [139.105803461451, 36.2733195859971], [139.105694890022, 36.2732607908439]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_06\\u664255\\u5206_\\u7cfb\\u7d71113", "times": [1747605300000, 1747605300000, 1747605300000, 1747605300000, 1747605300000, 1747605300000, 1747605302957, 1747605312815, 1747605318482, 1747605324417, 1747605358762, 1747605360000, 1747605361905, 1747605367861, 1747605371674, 1747605375115, 1747605378568, 1747605383483, 1747605389246, 1747605393020, 1747605395815, 1747605399059, 1747605401658, 1747605404620, 1747605413484, 1747605415171, 1747605418609, 1747605420000, 1747605420000, 1747605420000, 1747605420000, 1747605420000, 1747605420000, 1747605420000, 1747605420000, 1747605423991, 1747605432026, 1747605476679, 1747605480000, 1747605481916, 1747605521008, 1747605534609, 1747605540000, 1747605540000, 1747605540000, 1747605540000, 1747605540000, 1747605540000, 1747605540000, 1747605540000, 1747605541978, 1747605547855, 1747605553613, 1747605574126, 1747605586058, 1747605596967, 1747605600207, 1747605603384, 1747605616690, 1747605638768, 1747605643322, 1747605657863, 1747605660000, 1747605661911, 1747605667987, 1747605674122, 1747605699613, 1747605705824, 1747605718025, 1747605720000, 1747605721689, 1747605731010, 1747605740764, 1747605750380, 1747605756295, 1747605767155, 1747605778572, 1747605780000, 1747605781306, 1747605788686, 1747605793999, 1747605801276, 1747605807698, 1747605814537, 1747605822125, 1747605828866, 1747605833352, 1747605836029, 1747605840000, 1747605842921, 1747605853423, 1747605863930, 1747605897944, 1747605900000, 1747605906598, 1747605915293, 1747605928867, 1747605933504, 1747605938471, 1747605944211, 1747605950028, 1747605954086, 1747605957754, 1747605960000, 1747605962613, 1747605979987, 1747605984247, 1747605989650, 1747606003664, 1747606017408, 1747606020000, 1747606021207, 1747606027554, 1747606037527, 1747606042780, 1747606049086, 1747606053653, 1747606056576, 1747606078219, 1747606080000, 1747606081592, 1747606138223, 1747606140000, 1747606144251, 1747606170346, 1747606256279, 1747606260000, 1747606262575, 1747606284881, 1747606316774, 1747606320000, 1747606323022, 1747606350974, 1747606376573, 1747606380000, 1747606384703, 1747606393234, 1747606451210, 1747606464284, 1747606495967, 1747606500000, 1747606504085, 1747606526540, 1747606535349, 1747606544057, 1747606554596, 1747606560000, 1747606563587, 1747606595998, 1747606607148, 1747606617870, 1747606620000, 1747606624075, 1747606675667, 1747606680000, 1747606684423, 1747606737807, 1747606740000, 1747606744303, 1747606795089, 1747606800000, 1747606802819, 1747606811043, 1747606857822, 1747606860000, 1747606861822, 1747606879947, 1747606917130, 1747606920000, 1747606933313, 1747607351509, 1747607367919, 1747607385637], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_06\\u664255\\u5206_\\u7cfb\\u7d71113", "popup": "\\u5e73\\u65e5_06\\u664255\\u5206_\\u7cfb\\u7d71113"}, "geometry": {"type": "LineString", "coordinates": [[139.118185, 36.429014], [139.118053809428, 36.4290362581146], [139.117773576622, 36.4291878388312], [139.117440166566, 36.4292639038476], [139.115925997913, 36.4295106975675], [139.115787, 36.429514], [139.115611949621, 36.4295618858933], [139.115013233348, 36.4296786347664], [139.114692767737, 36.429800215483], [139.114413351729, 36.4299972222062], [139.113141401983, 36.4313937950322], [139.113088, 36.431439], [139.112998778965, 36.4315616955436], [139.112656271689, 36.4319098081983], [139.112366826581, 36.4320720942235], [139.11207178227, 36.432167920853], [139.111752832532, 36.4321609164641], [139.111322747868, 36.4320429427963], [139.110905372865, 36.4317757262643], [139.110643682387, 36.4315894534052], [139.110415694291, 36.4314913883005], [139.110117269685, 36.4315141242187], [139.109898844419, 36.4315948081982], [139.109747474709, 36.4317790766688], [139.109352023648, 36.4323587694257], [139.109216513726, 36.4322965272873], [139.109121353673, 36.4320516223871], [139.109113, 36.431948], [139.10902444428, 36.4318599252416], [139.108320306048, 36.4303554139378], [139.108314, 36.430257], [139.108235524962, 36.4301702937614], [139.107351795458, 36.4281325908495], [139.107232028923, 36.4278572505436], [139.107214, 36.427758], [139.107128355642, 36.427665539637], [139.107040659212, 36.4274440847376], [139.106775703523, 36.4261697960339], [139.106785, 36.426074], [139.106733837782, 36.4259930816872], [139.106312147963, 36.424171056811], [139.106092323227, 36.4235510701943], [139.10604, 36.423299], [139.105961711453, 36.4232196741506], [139.105786784864, 36.4229608990194], [139.105280895974, 36.4224512982928], [139.105165911184, 36.4222122341022], [139.105112034198, 36.42196877881], [139.105125561976, 36.4216186689564], [139.105171, 36.421486], [139.1051730256, 36.4213921922495], [139.105206145309, 36.4211148122941], [139.105171626129, 36.4208432291202], [139.104700139356, 36.4199483312256], [139.104435767659, 36.4194244142907], [139.104309704165, 36.4189173109249], [139.10424719689, 36.4187721876189], [139.104123465407, 36.4186595486467], [139.103598102308, 36.4181928415526], [139.102790988551, 36.4173741127467], [139.102735247143, 36.4171629262713], [139.102755188942, 36.4164735960583], [139.1028, 36.416379], [139.102774081138, 36.4162968221224], [139.10280008709, 36.4160279988279], [139.102560903887, 36.4158363381212], [139.101536414467, 36.4150656823413], [139.101356941577, 36.4148313377552], [139.101063997792, 36.4143444475218], [139.10104, 36.414259], [139.10093665123, 36.4141640354025], [139.100549363529, 36.4135405569585], [139.099963241833, 36.4129850220309], [139.099310065242, 36.4124958032694], [139.099128259021, 36.4120781906608], [139.098857472643, 36.4112952713682], [139.098697239838, 36.4104506447942], [139.098706, 36.410344], [139.098672167086, 36.4102518337912], [139.098563129387, 36.4097161920842], [139.098521497111, 36.4093268182686], [139.098398931634, 36.4088007524653], [139.098243479914, 36.4083453868027], [139.098032518272, 36.4078720690861], [139.097734792742, 36.4073685234404], [139.097581207422, 36.4068883909356], [139.097624239829, 36.4065602840122], [139.097650012316, 36.4063644123495], [139.097612, 36.406074], [139.0975156684, 36.4059676690241], [139.097308555303, 36.4055245565731], [139.097163716016, 36.4050653146646], [139.096805116147, 36.4035586878638], [139.096802, 36.403466], [139.096685000403, 36.4031239880097], [139.096460977255, 36.402692883812], [139.096066226589, 36.4020363797424], [139.095927918385, 36.4018134820247], [139.095689550661, 36.4016284930885], [139.095359173012, 36.4014737500323], [139.09500908571, 36.4013405732431], [139.094763605548, 36.4012496768209], [139.094519757663, 36.4012564994176], [139.094377, 36.401221], [139.094246055941, 36.401233097832], [139.09337013861, 36.4012246962463], [139.093160810563, 36.4011858268706], [139.092909732519, 36.401100378506], [139.092256323122, 36.4008829027877], [139.091623671662, 36.4006542867324], [139.091524, 36.400586], [139.091426237798, 36.4005756609644], [139.090952069806, 36.4004065868318], [139.090218893214, 36.4001202320251], [139.089883501015, 36.3999041176326], [139.089494347572, 36.3996316385366], [139.08919335683, 36.3994537018545], [139.088973066483, 36.399379400776], [139.087210737108, 36.3992748667236], [139.087074, 36.399235], [139.086978785384, 36.3992500996974], [139.083535527425, 36.399068293087], [139.083437, 36.399032], [139.083290631916, 36.3990471212073], [139.082386608767, 36.3990023541812], [139.081738798572, 36.4013560316276], [139.081688, 36.401452], [139.081685037989, 36.4015255621794], [139.081539149099, 36.4021521395102], [139.080418218536, 36.4020525427598], [139.080309, 36.402026], [139.080151280703, 36.4020386836495], [139.078692975796, 36.4019209543652], [139.077361316397, 36.4020566366863], [139.077182, 36.402048], [139.076990938748, 36.4020848245393], [139.076637237026, 36.4021189184658], [139.07422067882, 36.4020016477501], [139.073686106714, 36.4020912113091], [139.073081094142, 36.4011401446109], [139.073046, 36.401007], [139.072930890437, 36.4008699495667], [139.072417538583, 36.4000595752187], [139.072290075618, 36.3997175620703], [139.072202379188, 36.3993716967607], [139.072175906966, 36.3989448964238], [139.072214, 36.398728], [139.07219701477, 36.3986049174553], [139.072206694003, 36.397486098013], [139.072248909612, 36.3971027385708], [139.072411941359, 36.3967568510205], [139.072483, 36.396711], [139.072481328926, 36.396617993455], [139.072985584221, 36.3955132664518], [139.073057, 36.395433], [139.07308505909, 36.3953041836083], [139.073737535945, 36.3938164875693], [139.073781, 36.393762], [139.073813104068, 36.3936446731693], [139.074390595474, 36.3923058102549], [139.074473, 36.392186], [139.074500916241, 36.3920519417878], [139.074629196004, 36.391669212523], [139.073151531312, 36.3897559741612], [139.073116, 36.389655], [139.073037129195, 36.389609831756], [139.072522610675, 36.3889532188468], [139.072610424826, 36.3873601599962], [139.072657, 36.387243], [139.072620453927, 36.3871478730884], [139.072791415569, 36.3840221057418], [139.072735322315, 36.3839080177105], [139.072759229061, 36.3837768751115]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_06\\u664258\\u5206_\\u7cfb\\u7d71109", "times": [1747605480000, 1747605482164, 1747605483017, 1747605488200, 1747605497381, 1747605504618, 1747605507253, 1747605525382, 1747605528286, 1747605538149, 1747605540000, 1747605544799, 1747605577720, 1747605598074, 1747605600000, 1747605601282, 1747605608308, 1747605615386, 1747605618693, 1747605633728, 1747605650519, 1747605658918, 1747605660000, 1747605661810, 1747605684192, 1747605688414, 1747605711098, 1747605718482, 1747605720000, 1747605725791, 1747605737160, 1747605741399, 1747605745793, 1747605767368, 1747605777735, 1747605780000, 1747605783641, 1747605818233, 1747605837202, 1747605840000, 1747605856327, 1747605878662, 1747605883961, 1747605888037, 1747605894177, 1747605898664, 1747605900000, 1747605902052, 1747605940497, 1747605956737, 1747605958725, 1747605960000, 1747605968973, 1747605997684, 1747606022690, 1747606061425, 1747606077246, 1747606080000, 1747606081382, 1747606118634, 1747606133381, 1747606137975, 1747606140000, 1747606141744, 1747606161362, 1747606167864, 1747606177327, 1747606198978, 1747606200000, 1747606203925, 1747606209291, 1747606243624, 1747606301116, 1747606315921, 1747606320000, 1747606325113, 1747606370740, 1747606378270, 1747606380000, 1747606381818, 1747606389409, 1747606397488, 1747606404659, 1747606429306, 1747606438748, 1747606440000, 1747606441538, 1747606445785, 1747606480579, 1747606497754, 1747606500000, 1747606502719, 1747606557503, 1747606560000, 1747606562896, 1747606615835, 1747606620000, 1747606622658, 1747606677445, 1747606680000, 1747606682313, 1747606736910, 1747606740000, 1747606743515, 1747606797538, 1747606800000, 1747606802942, 1747606814544, 1747606818356, 1747606842377, 1747606846512, 1747606857303, 1747606860000, 1747606892303, 1747607028060, 1747607056885, 1747607165056, 1747607203493, 1747607294317, 1747607331334, 1747607358669, 1747607386889, 1747607400000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_06\\u664258\\u5206_\\u7cfb\\u7d71109", "popup": "\\u5e73\\u65e5_06\\u664258\\u5206_\\u7cfb\\u7d71109"}, "geometry": {"type": "LineString", "coordinates": [[139.193544, 36.376037], [139.193791696238, 36.375847386113], [139.19384312415, 36.3757468970472], [139.193864231954, 36.3750866416201], [139.192420501131, 36.3750107899051], [139.191283011703, 36.3749439600732], [139.190877766326, 36.3748707685467], [139.188215261688, 36.3740334236243], [139.187787749094, 36.3739015500094], [139.186351479258, 36.3734211523327], [139.186093, 36.373312], [139.185810140626, 36.3732456102968], [139.183910317868, 36.3726903031889], [139.182748807269, 36.3723190038283], [139.182654, 36.372262], [139.182445484516, 36.372215339744], [139.181334348929, 36.371882120965], [139.18022449707, 36.37152636407], [139.179695637272, 36.3713828578841], [139.177224034756, 36.3709239565386], [139.174467311178, 36.3703987156873], [139.173093204683, 36.3701202009675], [139.172929, 36.370056], [139.172716529416, 36.3700554090731], [139.170159563141, 36.3695674225822], [139.169675953996, 36.3694795598611], [139.167089600814, 36.3689679054182], [139.166247157674, 36.3688029947526], [139.166078, 36.368758], [139.165513164945, 36.3686682019372], [139.164410427502, 36.3684681724746], [139.163992819034, 36.3684224330705], [139.16355609084, 36.3684224330705], [139.161415914257, 36.3685337940285], [139.160386996918, 36.368580184449], [139.160165, 36.36855], [139.159938135801, 36.3685931430121], [139.157727295178, 36.3686884091218], [139.156516453236, 36.3687602433741], [139.156642, 36.368657], [139.154663163539, 36.3688051324162], [139.151947367227, 36.368903468047], [139.151303873825, 36.3689387341567], [139.150809645653, 36.3689734975095], [139.150068306362, 36.3690503317618], [139.149529531887, 36.3691221660142], [139.149371, 36.369093], [139.149160320244, 36.3691783197875], [139.144826220343, 36.3698501166318], [139.142991122447, 36.3701147285327], [139.142763018608, 36.3701224788061], [139.142617, 36.370129], [139.142208267942, 36.3702504652969], [139.140842205767, 36.3704723269244], [139.139649906153, 36.3706551304134], [139.137829500721, 36.3710342675465], [139.1370878142, 36.3711948194056], [139.136955, 36.371183], [139.136780293034, 36.3712623327862], [139.131578207016, 36.3724333485757], [139.129511856471, 36.3728759598536], [139.128873373664, 36.3730289417399], [139.128581, 36.373049], [139.128330868367, 36.3731596705842], [139.125236759894, 36.3738374656621], [139.124223590557, 36.3740958441421], [139.122782193723, 36.3745486354135], [139.119563659968, 36.3757364075515], [139.119397, 36.375744], [139.119174622928, 36.3758716629786], [139.118843078613, 36.3760096624781], [139.116674916573, 36.3768140215848], [139.113047757803, 36.3781673640932], [139.112120413219, 36.3785274341161], [139.111844, 36.378578], [139.111548053425, 36.3787349773816], [139.108683687003, 36.3798099282778], [139.108212667819, 36.379990192538], [139.108094, 36.380003], [139.107931269668, 36.3800852084934], [139.107199959477, 36.3803497916607], [139.106407541482, 36.380604372986], [139.105676347694, 36.3807623587322], [139.103130931669, 36.3811958375268], [139.102154024255, 36.381354953662], [139.102022, 36.381351], [139.101896065919, 36.38139677981], [139.101523944207, 36.381462978494], [139.098468319201, 36.3819804983747], [139.09696616509, 36.3822587127249], [139.096765, 36.382249], [139.096586458075, 36.3823200884101], [139.092663669025, 36.3829917697659], [139.092481, 36.382989], [139.092343203414, 36.3830365506088], [139.089669390564, 36.3835154667262], [139.089454, 36.383513], [139.089283735798, 36.3835718411834], [139.085549866725, 36.3842055440907], [139.085372, 36.384208], [139.085234999657, 36.3842514666115], [139.081836990373, 36.3848306179552], [139.081641, 36.384842], [139.081464513517, 36.3848926716632], [139.078646910983, 36.385365443269], [139.078517, 36.385351], [139.078364229764, 36.3854088502688], [139.077702305821, 36.3854620362693], [139.077610645762, 36.3853015850697], [139.076641549862, 36.3845104340677], [139.076418112025, 36.3844462676375], [139.075799454613, 36.3844514877156], [139.075652, 36.384414], [139.075438639794, 36.3844435211792], [139.074530419551, 36.3844016972417], [139.074343481718, 36.3843623891323], [139.073619634492, 36.3843316866897], [139.073369956578, 36.3842805651948], [139.072763192689, 36.3842423574761], [139.072777421521, 36.3840421268459], [139.072731707235, 36.3838987096011], [139.072794914246, 36.3837546004657], [139.072867, 36.383714]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_06\\u664258\\u5206_\\u7cfb\\u7d71122", "times": [1747605480000, 1747605480000, 1747605480000, 1747605480000, 1747605485347, 1747605530361, 1747605538152, 1747605540000, 1747605541688, 1747605582413, 1747605588844, 1747605626656, 1747605641252, 1747605658430, 1747605660000, 1747605662312, 1747605694667, 1747605709722, 1747605726306, 1747605772082, 1747605780000, 1747605781248, 1747605786365, 1747605789708, 1747605793586, 1747605814948, 1747605829167, 1747605839049, 1747605840000, 1747605841239, 1747605862681, 1747605899151, 1747605900000, 1747605900721, 1747605909399, 1747605930675, 1747605958939, 1747605960000, 1747605966012, 1747605974298, 1747605983949, 1747606044442, 1747606089026, 1747606145322, 1747606191427, 1747606200000, 1747606200000, 1747606200000, 1747606200000, 1747606202502, 1747606214216, 1747606229706, 1747606245989, 1747606256848, 1747606260000, 1747606260000, 1747606260000, 1747606260000, 1747606260000, 1747606264475, 1747606315702, 1747606320000, 1747606320000, 1747606320000, 1747606320000, 1747606320000, 1747606320000, 1747606320000, 1747606320000, 1747606322009, 1747606327675, 1747606354646, 1747606377504, 1747606380000, 1747606382401, 1747606390355, 1747606401962, 1747606412119, 1747606428579, 1747606434362, 1747606435858, 1747606437899, 1747606440000, 1747606441221, 1747606449781, 1747606458508, 1747606465813, 1747606471173, 1747606477291, 1747606498182, 1747606500000, 1747606500000, 1747606500000, 1747606500000, 1747606500000, 1747606502138, 1747606544237, 1747606545399, 1747606557356, 1747606560000, 1747606560895, 1747606562645, 1747606565562, 1747606576126, 1747606580608, 1747606592612, 1747606600865, 1747606614090, 1747606619143, 1747606620000, 1747606620884, 1747606630655, 1747606655222, 1747606676571, 1747606678993, 1747606680000, 1747606681035, 1747606705724, 1747606725811, 1747606737988, 1747606740000, 1747606747433, 1747606816564, 1747606886854, 1747606898489, 1747606910313, 1747606916234, 1747606920000, 1747606920000, 1747606920000, 1747606920000, 1747606920000, 1747606920000, 1747606920000, 1747606920000, 1747606920000, 1747606920000, 1747606921806, 1747606935490, 1747606951434, 1747606956366, 1747606962213, 1747606978620, 1747606980000, 1747606981970, 1747607027040, 1747607034469, 1747607097534, 1747607100000, 1747607101468, 1747607129485, 1747607145442, 1747607153576, 1747607157789, 1747607160000, 1747607160000, 1747607160000, 1747607160000, 1747607164854, 1747607190365, 1747607197633, 1747607215228, 1747607220000, 1747607222604, 1747607277788, 1747607280000, 1747607285218, 1747607348588, 1747607356068, 1747607395150, 1747607400000, 1747607402405, 1747607410566, 1747607445103, 1747607464690, 1747607493129, 1747607517435, 1747607520000, 1747607544710, 1747607725333, 1747607776214, 1747607808546, 1747607880000, 1747607886712, 1747607892141, 1747607894758, 1747607896761, 1747607916901, 1747607938101, 1747607940000, 1747607942810, 1747607967814, 1747607984345, 1747608049081, 1747608060000, 1747608065971, 1747608087854, 1747608097690, 1747608106687, 1747608118771, 1747608123645, 1747608176442, 1747608180000, 1747608191996, 1747608365547, 1747608409652, 1747608420000, 1747608446619, 1747608476307, 1747608523543, 1747608593252, 1747608612139, 1747608631612, 1747608640511, 1747608688637, 1747608744398, 1747608832250, 1747608866521, 1747608941471], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_06\\u664258\\u5206_\\u7cfb\\u7d71122", "popup": "\\u5e73\\u65e5_06\\u664258\\u5206_\\u7cfb\\u7d71122"}, "geometry": {"type": "LineString", "coordinates": [[139.115536, 36.303985], [139.11555048997, 36.3039052746306], [139.116663492617, 36.3038936589211], [139.116663, 36.303985], [139.116692296851, 36.3042762759094], [139.116753054788, 36.3067356093039], [139.116752005185, 36.3071613448129], [139.116732, 36.307261], [139.116748506508, 36.3073343673407], [139.116718769073, 36.3091332564008], [139.116702323973, 36.3094170122703], [139.116670836541, 36.3110871840294], [139.117462440376, 36.3110146011779], [139.118397599111, 36.3109600194783], [139.118476, 36.310988], [139.11860704422, 36.3109630276496], [139.120490892105, 36.3109560954607], [139.12051456143, 36.3116652988937], [139.12051957598, 36.3124468005976], [139.12039187955, 36.3146014732496], [139.12032, 36.31497], [139.120373921215, 36.3150813395516], [139.120390713545, 36.3155713395517], [139.120106750576, 36.3157943148945], [139.11973963616, 36.3160171880212], [139.117697542229, 36.317223819556], [139.116333347113, 36.3180213301214], [139.115408101736, 36.3186003572136], [139.115304, 36.318635], [139.115178364961, 36.3187146039654], [139.112864201584, 36.3199339038468], [139.108916456184, 36.3219930377514], [139.108829, 36.322046], [139.108721121526, 36.3221177007173], [139.107304215431, 36.3228447459193], [139.103853495167, 36.3246574506048], [139.099266917752, 36.3270620394544], [139.099093, 36.32715], [139.098959280183, 36.3272572010045], [139.098839864834, 36.3274435441329], [139.098729076478, 36.327670990151], [139.098335026207, 36.3291698862795], [139.096940159798, 36.3291287801768], [139.095180280816, 36.3290512411393], [139.093737252366, 36.3290250586405], [139.093469, 36.329018], [139.093340985167, 36.3290530238325], [139.090807580387, 36.3292199626756], [139.090669, 36.329204], [139.090540758956, 36.329223606137], [139.089932130645, 36.3292668234438], [139.089124666361, 36.3292452147904], [139.088286070448, 36.3291367453688], [139.087733651793, 36.3290357369098], [139.087585, 36.328979], [139.087428346895, 36.3289998846007], [139.086644557871, 36.3288919795936], [139.086321061173, 36.3299685460852], [139.086254, 36.330059], [139.086229166331, 36.3301971679133], [139.085768176248, 36.3317513438277], [139.085691, 36.33187], [139.085692490403, 36.332010208995], [139.085308349533, 36.3332616111747], [139.085737739078, 36.3332598077818], [139.08617633697, 36.3332709870895], [139.087328872027, 36.3333874167937], [139.08804303936, 36.333469953131], [139.088202, 36.333512], [139.088361755633, 36.3335038464979], [139.088810266881, 36.3335440968944], [139.090954518879, 36.3336484910542], [139.092772006989, 36.3337335637288], [139.092965, 36.333772], [139.093164424983, 36.3337554942259], [139.093827978564, 36.3337779944471], [139.094794041399, 36.3338394229239], [139.095639871428, 36.3338877801668], [139.097004653173, 36.3340179944471], [139.096893279506, 36.3343981370961], [139.096892229903, 36.3344991369636], [139.09685071403, 36.3346328511358], [139.09679, 36.334766], [139.096788440219, 36.3348521365662], [139.096628440879, 36.3354418801682], [139.096463193523, 36.3360427990889], [139.096327683602, 36.3365462875786], [139.096172581749, 36.3369029194732], [139.095920920372, 36.3372834426481], [139.095038590339, 36.3385725267231], [139.094945, 36.338676], [139.094908794703, 36.3387719797491], [139.093799059906, 36.3404219776188], [139.092972589662, 36.3416168754602], [139.09289, 36.341718], [139.092839178946, 36.3418353950332], [139.09138402219, 36.3439831582059], [139.091324780126, 36.34403087472], [139.090916384621, 36.344643021041], [139.090793, 36.34476], [139.090772828402, 36.344871220346], [139.09063731848, 36.3450616412636], [139.090440700754, 36.3453915112376], [139.089907757628, 36.3466457088437], [139.089700994399, 36.3471828401887], [139.089113473892, 36.348612983835], [139.088716506958, 36.3495980840402], [139.088045604837, 36.3511671193998], [139.087799541343, 36.3517694630865], [139.087719, 36.351855], [139.087734002321, 36.3519386895964], [139.087384381948, 36.3528291357286], [139.086592897154, 36.3550893546806], [139.085906251646, 36.3570536981394], [139.085814356804, 36.3572731056224], [139.085772, 36.357363], [139.085769225851, 36.3574279935823], [139.08523604926, 36.35891814756], [139.084799315791, 36.36012983825], [139.084496459307, 36.3608546746923], [139.084414, 36.360962], [139.084385555867, 36.3610897525255], [139.083885265519, 36.3622270494804], [139.083368415647, 36.363381053379], [139.083126783371, 36.3633255143926], [139.083045188797, 36.3635211563914], [139.083172497657, 36.363530486028], [139.083218, 36.363476], [139.083247483106, 36.3633734817274], [139.083349524111, 36.3634157610394], [139.083208649772, 36.3637167518245], [139.083022877285, 36.3641149843554], [139.082754889188, 36.3644505656826], [139.082457864053, 36.3647568621082], [139.081973667619, 36.3650961134748], [139.08166917754, 36.3652620317061], [139.081544, 36.365282], [139.081443405713, 36.3653997863997], [139.080344048565, 36.3660205672377], [139.079069065753, 36.3667507661141], [139.078629651724, 36.3669134751788], [139.078063121959, 36.3669823841368], [139.07645554391, 36.3669642198625], [139.076325, 36.366936], [139.076239104086, 36.3669553430683], [139.074200508831, 36.3669246627121], [139.073864526705, 36.366917891314], [139.073649955918, 36.3692187930818], [139.07361, 36.369303], [139.073639926818, 36.3693986431033], [139.073494737663, 36.3712770969986], [139.073404942028, 36.3723465165336], [139.073350248244, 36.3728911947818], [139.073289490307, 36.3731699055123], [139.073219, 36.373307], [139.073200044539, 36.3734283813148], [139.072713398372, 36.3752090241486], [139.072676, 36.375304], [139.072650774694, 36.3754036200868], [139.072521328926, 36.375927599253], [139.072450192021, 36.3760685342994], [139.07242651874, 36.3764365716041], [139.072386, 36.376531], [139.07242150419, 36.3766434407146], [139.072286344136, 36.3790993655748], [139.072257, 36.379195], [139.072281329586, 36.3793132699209], [139.072210776013, 36.3807680983048], [139.072165527998, 36.3809360256327], [139.072120746912, 36.3818332099839], [139.072091, 36.381942], [139.072112117282, 36.3820330182553], [139.072095324293, 36.3823469138213], [139.070451009478, 36.382346259113], [139.070287280633, 36.3830886063431], [139.070195502194, 36.3841809525908], [139.071347920848, 36.3842662465333], [139.071458, 36.384309], [139.071615908285, 36.3842916866896], [139.072779755511, 36.3843303029085], [139.072788500225, 36.3840650828303], [139.072720395066, 36.3839057325126], [139.072904, 36.383564], [139.072299792553, 36.3834730910698], [139.072271727735, 36.3838743791595], [139.072454973766, 36.383999251887], [139.072628734349, 36.3840465362867], [139.07255421517, 36.3855363732718], [139.072479113317, 36.387104688316], [139.072448, 36.387243], [139.072460106697, 36.3873452054921], [139.072410075618, 36.3882577198371], [139.072338939373, 36.3888588229485], [139.069835621234, 36.3900818956805], [139.06939, 36.390253], [139.069187693318, 36.3903830418832], [139.068377199266, 36.3907791902159], [139.067965771353, 36.3908675987508], [139.067578131806, 36.390897591411], [139.06706070058, 36.3909589670579], [139.066850089466, 36.3909487414533], [139.064589219742, 36.3906805536298], [139.064445, 36.390637], [139.064277501482, 36.3906487341135], [139.061863277926, 36.3904091951091], [139.061776049745, 36.3909039670579], [139.061748, 36.391019], [139.061734767336, 36.3914014780677], [139.061829694585, 36.3918212567325], [139.061708295114, 36.3924930820858], [139.060470044452, 36.3924510393823], [139.060161942591, 36.3925589931268], [139.059930223013, 36.3927669481482], [139.059811739545, 36.3928517204461], [139.059698620496, 36.3935374007438], [139.059544801712, 36.3943292071023], [139.059236696554, 36.3955671678543], [139.059136172741, 36.3960530236138], [139.058920779223, 36.3971161690065]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_07\\u664210\\u5206_\\u7cfb\\u7d71116", "times": [1747606200000, 1747606200000, 1747606200000, 1747606200000, 1747606200000, 1747606200000, 1747606206585, 1747606210921, 1747606239238, 1747606264491, 1747606306356, 1747606316640, 1747606320000, 1747606323113, 1747606337486, 1747606378775, 1747606380000, 1747606380000, 1747606380000, 1747606380000, 1747606383215, 1747606400850, 1747606406067, 1747606437284, 1747606440000, 1747606444557, 1747606470771, 1747606500000, 1747606506683, 1747606554193, 1747606560000, 1747606563522, 1747606584627, 1747606590938, 1747606617136, 1747606620000, 1747606627312, 1747606634974, 1747606640160, 1747606645626, 1747606648337, 1747606653711, 1747606678331, 1747606680000, 1747606688168, 1747606741995, 1747606773684, 1747606808934, 1747606833264, 1747606877089, 1747606891731, 1747606909712, 1747606920000, 1747606920000, 1747606920000, 1747606920000, 1747606920000, 1747606938230, 1747606947906, 1747606955852, 1747606977647, 1747606980000, 1747606983518, 1747606990578, 1747607013344, 1747607035650, 1747607039549, 1747607040000, 1747607040648, 1747607042759, 1747607048287, 1747607054921, 1747607063616, 1747607070033, 1747607079319, 1747607082245, 1747607084697, 1747607090137, 1747607091692, 1747607094659, 1747607099560, 1747607100000, 1747607100000, 1747607100000, 1747607100000, 1747607100000, 1747607101098, 1747607125820, 1747607149617, 1747607158851, 1747607160000, 1747607161489, 1747607182753, 1747607186510, 1747607190085, 1747607196087, 1747607214468, 1747607220000, 1747607222267, 1747607229512, 1747607241464, 1747607251701, 1747607278635, 1747607280000, 1747607283561, 1747607335909, 1747607340000, 1747607343236, 1747607364198, 1747607380775, 1747607393976, 1747607404433, 1747607415591, 1747607457478, 1747607460000, 1747607460000, 1747607460000, 1747607460000, 1747607460000, 1747607464732, 1747607500148, 1747607505186, 1747607513376, 1747607517015, 1747607520000, 1747607522865, 1747607533024, 1747607546404, 1747607556790, 1747607565200, 1747607577475, 1747607580000, 1747607593335, 1747607708355, 1747607817047, 1747607838370, 1747607870975, 1747607880000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_07\\u664210\\u5206_\\u7cfb\\u7d71116", "popup": "\\u5e73\\u65e5_07\\u664210\\u5206_\\u7cfb\\u7d71116"}, "geometry": {"type": "LineString", "coordinates": [[139.072197, 36.383792], [139.072289027334, 36.3839720323823], [139.07261291424, 36.3840619674873], [139.072583486993, 36.3842736440307], [139.070979447301, 36.3842186539073], [139.070716, 36.384125], [139.070444676136, 36.3841687811798], [139.070263374547, 36.3841542420104], [139.070314567675, 36.3831931748125], [139.070494705237, 36.3823477374193], [139.072253111322, 36.3823799243851], [139.072279230379, 36.3820311928442], [139.072316, 36.381921], [139.072275226411, 36.3817295447412], [139.072335673501, 36.3808339675651], [139.072468034613, 36.3782596753776], [139.072488, 36.378185], [139.072481678794, 36.3780634928244], [139.07254694599, 36.376863266178], [139.072584, 36.376742], [139.072534973106, 36.3766400161632], [139.072568520065, 36.3760406020472], [139.072562805779, 36.3758631600947], [139.072847158955, 36.3748262148956], [139.072906, 36.374747], [139.072895788585, 36.3746384463335], [139.073070365306, 36.3740283750264], [139.073303, 36.373356], [139.073406341498, 36.3729142209198], [139.073640198644, 36.369723555249], [139.073718, 36.369338], [139.073722530656, 36.3690647723321], [139.073834211873, 36.3674300564334], [139.07388400553, 36.3669420968556], [139.076396498929, 36.3669764915005], [139.076668, 36.36701], [139.077320422218, 36.3669838126897], [139.078004774075, 36.3669965027487], [139.078466037303, 36.3669617344164], [139.078932856097, 36.3668456592953], [139.079146385193, 36.3667532323924], [139.079521894455, 36.366511334058], [139.081311282022, 36.365477083046], [139.081448, 36.365429], [139.08153961537, 36.3653486637464], [139.082263579657, 36.3649294065477], [139.082627542627, 36.3646242749457], [139.082952595538, 36.3642327383123], [139.083145558504, 36.3639470832035], [139.083372147789, 36.3633901170829], [139.083141010884, 36.3633316075762], [139.083092497657, 36.3635689583984], [139.083218, 36.363476], [139.083241807182, 36.3633803427552], [139.083356792632, 36.3634468377844], [139.083884215916, 36.3622411256014], [139.084388, 36.361156], [139.084850394494, 36.3600189127137], [139.085082812489, 36.3594119880879], [139.085242774128, 36.3589065435092], [139.085745824396, 36.3575345916174], [139.085825, 36.357394], [139.085884210641, 36.3571436319018], [139.086046115403, 36.3566492011493], [139.086611245037, 36.3550643536985], [139.087178784725, 36.3535148629043], [139.087270563164, 36.3532423387193], [139.0873, 36.35322], [139.087307880625, 36.3531142808382], [139.087429746366, 36.3527841357286], [139.087773535391, 36.3519256785506], [139.088182630632, 36.3508947352456], [139.088744028784, 36.3495499832363], [139.089151141221, 36.3485556475598], [139.089753355511, 36.3471203681178], [139.089928865433, 36.3466643503411], [139.090084899826, 36.3462844261661], [139.090432187527, 36.3454420604015], [139.090559417686, 36.3452100950355], [139.090850495731, 36.3447868403018], [139.091333876686, 36.3440890148523], [139.091415, 36.34406], [139.091438482508, 36.3439540834348], [139.092386818493, 36.3425254579724], [139.092868916381, 36.3418329259698], [139.092928, 36.341788], [139.092932939529, 36.3417212591254], [139.09382879734, 36.3404033353848], [139.094687104225, 36.3391329222661], [139.095030426979, 36.3386446291119], [139.09509, 36.338594], [139.095132350922, 36.3384977090478], [139.095973049338, 36.3372074010796], [139.096123602251, 36.3369802733018], [139.096258295375, 36.3367605402556], [139.096382260323, 36.3363612621896], [139.096736428315, 36.3351333150762], [139.096854, 36.334766], [139.096885466014, 36.3345809940497], [139.09703800305, 36.333997243884], [139.095829725266, 36.3338825297703], [139.094792526845, 36.333801600859], [139.092055040714, 36.3336814555098], [139.091925, 36.333642], [139.091703788065, 36.3336482406577], [139.088456915686, 36.3334810597641], [139.088212, 36.333426], [139.08809073579, 36.3334453085747], [139.087298084989, 36.3333550581783], [139.086672780751, 36.3332754862966], [139.0861705076, 36.3332409144149], [139.08577144146, 36.3332299855036], [139.085346946765, 36.3331999855036], [139.085750333655, 36.3319476719826], [139.085804, 36.331883], [139.085790799926, 36.3318132023866], [139.085866601513, 36.3315748367849], [139.086183801913, 36.3304923980879], [139.086238, 36.330422], [139.086270448739, 36.3302430979292], [139.086667065146, 36.3289286658311], [139.086904383267, 36.3289418413337], [139.087282224541, 36.3290084499871], [139.087450854171, 36.3290350586405], [139.087585, 36.32907], [139.08773306912, 36.3290762411393], [139.088250502325, 36.3291514932541], [139.088932716615, 36.3292469974836], [139.089468691488, 36.3292791103665], [139.089903791362, 36.3292870755585], [139.090538426944, 36.3292657190199], [139.090669, 36.329269], [139.090830668357, 36.329236571329], [139.09226203543, 36.3291376757529], [139.093617719296, 36.3290801367154], [139.093883374062, 36.3290648846007], [139.094290487159, 36.3290725976779], [139.094398, 36.3291]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_07\\u664215\\u5206_\\u7cfb\\u7d71105", "times": [1747606500000, 1747606504328, 1747606506035, 1747606516401, 1747606534763, 1747606549237, 1747606554507, 1747606590765, 1747606596572, 1747606616299, 1747606620000, 1747606624799, 1747606657720, 1747606678074, 1747606680000, 1747606681282, 1747606688308, 1747606695386, 1747606698693, 1747606713728, 1747606730519, 1747606738918, 1747606740000, 1747606741810, 1747606764192, 1747606768414, 1747606791098, 1747606798482, 1747606800000, 1747606805791, 1747606817160, 1747606821399, 1747606825793, 1747606847368, 1747606857735, 1747606860000, 1747606863641, 1747606898233, 1747606917202, 1747606920000, 1747606936327, 1747606958662, 1747606963961, 1747606968037, 1747606974177, 1747606978664, 1747606980000, 1747606982052, 1747607020497, 1747607036737, 1747607038725, 1747607040000, 1747607048973, 1747607077684, 1747607102690, 1747607141425, 1747607157246, 1747607160000, 1747607162764, 1747607237269, 1747607266763, 1747607275951, 1747607280000, 1747607283489, 1747607322725, 1747607335728, 1747607354655, 1747607397956, 1747607400000, 1747607403925, 1747607409291, 1747607443624, 1747607501116, 1747607515921, 1747607520000, 1747607525113, 1747607570740, 1747607578270, 1747607580000, 1747607585454, 1747607608227, 1747607632464, 1747607653978, 1747607727918, 1747607756244, 1747607760000, 1747607764616, 1747607777355, 1747607881737, 1747607933262, 1747607940000, 1747607942719, 1747607997503, 1747608000000, 1747608002896, 1747608055835, 1747608060000, 1747608062658, 1747608117445, 1747608120000, 1747608122313, 1747608176910, 1747608180000, 1747608183515, 1747608237538, 1747608240000, 1747608245884, 1747608269088, 1747608276713, 1747608324754, 1747608333025, 1747608354607, 1747608360000, 1747608377672, 1747608489889, 1747608503169, 1747608600774, 1747608618899, 1747608680078, 1747608713865, 1747608732897, 1747608750406, 1747608780000, 1747608786712, 1747608792141, 1747608794758, 1747608796761, 1747608816901, 1747608838101, 1747608840000, 1747608842810, 1747608867814, 1747608884345, 1747608949081, 1747608960000, 1747608965971, 1747608987854, 1747608997690, 1747609006687, 1747609018771, 1747609023645, 1747609076442, 1747609080000, 1747609091996, 1747609265547, 1747609309652, 1747609320000, 1747609343661, 1747609370051, 1747609412038, 1747609474002, 1747609490790, 1747609508099, 1747609516010, 1747609558788, 1747609608354, 1747609686445, 1747609716908, 1747609783529, 1747609800000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_07\\u664215\\u5206_\\u7cfb\\u7d71105", "popup": "\\u5e73\\u65e5_07\\u664215\\u5206_\\u7cfb\\u7d71105"}, "geometry": {"type": "LineString", "coordinates": [[139.193544, 36.376037], [139.193791696238, 36.375847386113], [139.19384312415, 36.3757468970472], [139.193864231954, 36.3750866416201], [139.192420501131, 36.3750107899051], [139.191283011703, 36.3749439600732], [139.190877766326, 36.3748707685467], [139.188215261688, 36.3740334236243], [139.187787749094, 36.3739015500094], [139.186351479258, 36.3734211523327], [139.186093, 36.373312], [139.185810140626, 36.3732456102968], [139.183910317868, 36.3726903031889], [139.182748807269, 36.3723190038283], [139.182654, 36.372262], [139.182445484516, 36.372215339744], [139.181334348929, 36.371882120965], [139.18022449707, 36.37152636407], [139.179695637272, 36.3713828578841], [139.177224034756, 36.3709239565386], [139.174467311178, 36.3703987156873], [139.173093204683, 36.3701202009675], [139.172929, 36.370056], [139.172716529416, 36.3700554090731], [139.170159563141, 36.3695674225822], [139.169675953996, 36.3694795598611], [139.167089600814, 36.3689679054182], [139.166247157674, 36.3688029947526], [139.166078, 36.368758], [139.165513164945, 36.3686682019372], [139.164410427502, 36.3684681724746], [139.163992819034, 36.3684224330705], [139.16355609084, 36.3684224330705], [139.161415914257, 36.3685337940285], [139.160386996918, 36.368580184449], [139.160165, 36.36855], [139.159938135801, 36.3685931430121], [139.157727295178, 36.3686884091218], [139.156516453236, 36.3687602433741], [139.156642, 36.368657], [139.154663163539, 36.3688051324162], [139.151947367227, 36.368903468047], [139.151303873825, 36.3689387341567], [139.150809645653, 36.3689734975095], [139.150068306362, 36.3690503317618], [139.149529531887, 36.3691221660142], [139.149371, 36.369093], [139.149160320244, 36.3691783197875], [139.144826220343, 36.3698501166318], [139.142991122447, 36.3701147285327], [139.142763018608, 36.3701224788061], [139.142617, 36.370129], [139.142208267942, 36.3702504652969], [139.140842205767, 36.3704723269244], [139.139649906153, 36.3706551304134], [139.137829500721, 36.3710342675465], [139.1370878142, 36.3711948194056], [139.136955, 36.371183], [139.136780293034, 36.3712623327862], [139.131578207016, 36.3724333485757], [139.129511856471, 36.3728759598536], [139.128873373664, 36.3730289417399], [139.128581, 36.373049], [139.128330868367, 36.3731596705842], [139.125236759894, 36.3738374656621], [139.124223590557, 36.3740958441421], [139.122782193723, 36.3745486354135], [139.119563659968, 36.3757364075515], [139.119397, 36.375744], [139.119174622928, 36.3758716629786], [139.118843078613, 36.3760096624781], [139.116674916573, 36.3768140215848], [139.113047757803, 36.3781673640932], [139.112120413219, 36.3785274341161], [139.111844, 36.378578], [139.111548053425, 36.3787349773816], [139.108683687003, 36.3798099282778], [139.108212667819, 36.379990192538], [139.108094, 36.380003], [139.107931269668, 36.3800852084934], [139.107199959477, 36.3803497916607], [139.106407541482, 36.380604372986], [139.105676347694, 36.3807623587322], [139.103130931669, 36.3811958375268], [139.102154024255, 36.381354953662], [139.102022, 36.381351], [139.101896065919, 36.38139677981], [139.101523944207, 36.381462978494], [139.098468319201, 36.3819804983747], [139.09696616509, 36.3822587127249], [139.096765, 36.382249], [139.096586458075, 36.3823200884101], [139.092663669025, 36.3829917697659], [139.092481, 36.382989], [139.092343203414, 36.3830365506088], [139.089669390564, 36.3835154667262], [139.089454, 36.383513], [139.089283735798, 36.3835718411834], [139.085549866725, 36.3842055440907], [139.085372, 36.384208], [139.085234999657, 36.3842514666115], [139.081836990373, 36.3848306179552], [139.081641, 36.384842], [139.081464513517, 36.3848926716632], [139.078646910983, 36.385365443269], [139.078517, 36.385351], [139.078364229764, 36.3854088502688], [139.077702305821, 36.3854620362693], [139.077610645762, 36.3853015850697], [139.076641549862, 36.3845104340677], [139.076418112025, 36.3844462676375], [139.075799454613, 36.3844514877156], [139.075652, 36.384414], [139.075494266118, 36.3844330704709], [139.074482838206, 36.3843914771636], [139.074369837538, 36.3843592025177], [139.073489838197, 36.3843276720178], [139.073333338852, 36.3842892025177], [139.072782473773, 36.3842591048612], [139.072778781971, 36.3840125753437], [139.072733106706, 36.383878699049], [139.072798529325, 36.383762398688], [139.072904, 36.383564], [139.072299792553, 36.3834730910698], [139.072271727735, 36.3838743791595], [139.072454973766, 36.383999251887], [139.072628734349, 36.3840465362867], [139.07255421517, 36.3855363732718], [139.072479113317, 36.387104688316], [139.072448, 36.387243], [139.072460106697, 36.3873452054921], [139.072410075618, 36.3882577198371], [139.072338939373, 36.3888588229485], [139.069835621234, 36.3900818956805], [139.06939, 36.390253], [139.069187693318, 36.3903830418832], [139.068377199266, 36.3907791902159], [139.067965771353, 36.3908675987508], [139.067578131806, 36.390897591411], [139.06706070058, 36.3909589670579], [139.066850089466, 36.3909487414533], [139.064589219742, 36.3906805536298], [139.064445, 36.390637], [139.064277501482, 36.3906487341135], [139.061863277926, 36.3904091951091], [139.061776049745, 36.3909039670579], [139.061748, 36.391019], [139.061734767336, 36.3914014780677], [139.061829694585, 36.3918212567325], [139.061708295114, 36.3924930820858], [139.060470044452, 36.3924510393823], [139.060161942591, 36.3925589931268], [139.059930223013, 36.3927669481482], [139.059811739545, 36.3928517204461], [139.059698620496, 36.3935374007438], [139.059544801712, 36.3943292071023], [139.059236696554, 36.3955671678543], [139.059136172741, 36.3960530236138], [139.058920779223, 36.3971161690065], [139.059219, 36.397003]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_07\\u664215\\u5206_\\u7cfb\\u7d71111", "times": [1747606500000, 1747606501807, 1747606502710, 1747606516175, 1747606521535, 1747606525752, 1747606531839, 1747606540016, 1747606541681, 1747606547344, 1747606556717, 1747606559286, 1747606560000, 1747606560651, 1747606567541, 1747606571091, 1747606575512, 1747606580435, 1747606585411, 1747606589658, 1747606591158, 1747606595176, 1747606601078, 1747606603426, 1747606605385, 1747606608658, 1747606610231, 1747606612165, 1747606613731, 1747606614769, 1747606616601, 1747606619458, 1747606620000, 1747606622917, 1747606627160, 1747606629843, 1747606634157, 1747606637722, 1747606642974, 1747606650978, 1747606658076, 1747606663405, 1747606668024, 1747606670125, 1747606672178, 1747606681323, 1747606690915, 1747606698840, 1747606706960, 1747606716791, 1747606721457, 1747606729141, 1747606737935, 1747606740000, 1747606749154, 1747606756168, 1747606783622, 1747606800000, 1747606812094, 1747606820711, 1747606845671, 1747606851902, 1747606855885, 1747606860000, 1747606861326, 1747606868273, 1747606875109, 1747606879571, 1747606891147, 1747606896843, 1747606912110, 1747606920000, 1747606921198, 1747606933731, 1747606944574, 1747606948410, 1747606963694, 1747606974996, 1747606978063, 1747606980000, 1747606981084, 1747606983770, 1747606990644, 1747606993835, 1747607006015, 1747607011399, 1747607013857, 1747607021842, 1747607028105, 1747607032705, 1747607039154, 1747607040000, 1747607041094, 1747607045547, 1747607053513, 1747607078766, 1747607088674, 1747607094938, 1747607098616, 1747607100000, 1747607100000, 1747607100000, 1747607100000, 1747607100000, 1747607100000, 1747607100000, 1747607104929, 1747607135532, 1747607140199, 1747607151820, 1747607157333, 1747607169250, 1747607216965, 1747607220000, 1747607221972, 1747607242215, 1747607244269, 1747607256752, 1747607270022, 1747607277933, 1747607280000, 1747607284226, 1747607295195, 1747607307795, 1747607337045, 1747607340000, 1747607341601, 1747607354815, 1747607363978, 1747607382622, 1747607386199, 1747607399120, 1747607400000, 1747607402763, 1747607416767, 1747607448713, 1747607464237, 1747607504330, 1747607517601, 1747607520000, 1747607521899, 1747607550317, 1747607577200, 1747607580000, 1747607584584, 1747607651072, 1747607695691, 1747607700000, 1747607704085, 1747607726540, 1747607735349, 1747607744057, 1747607754596, 1747607760000, 1747607763587, 1747607795998, 1747607807148, 1747607817870, 1747607820000, 1747607824075, 1747607875667, 1747607880000, 1747607884423, 1747607937807, 1747607940000, 1747607944303, 1747607995089, 1747608000000, 1747608002819, 1747608011043, 1747608057822, 1747608060000, 1747608061822, 1747608079947, 1747608117130, 1747608120000, 1747608133313, 1747608551509, 1747608567919, 1747608585637], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_07\\u664215\\u5206_\\u7cfb\\u7d71111", "popup": "\\u5e73\\u65e5_07\\u664215\\u5206_\\u7cfb\\u7d71111"}, "geometry": {"type": "LineString", "coordinates": [[139.123801, 36.458699], [139.123819937116, 36.4585079461785], [139.123933601136, 36.4584806589363], [139.123742541613, 36.4570608365528], [139.123840267803, 36.4564978318543], [139.123800617671, 36.4560517261105], [139.123584058146, 36.455430259238], [139.122722367668, 36.4549127757033], [139.1225202711, 36.4548456933523], [139.121825111046, 36.4546325460505], [139.120674559451, 36.4542796263114], [139.120379634181, 36.4541475163135], [139.120325, 36.454086], [139.120199576639, 36.4540583506904], [139.119118878882, 36.4533712609039], [139.118594449643, 36.4529864986619], [139.117961447656, 36.4524898668899], [139.117311653339, 36.4518943428888], [139.116666173837, 36.451284774172], [139.116094046849, 36.4507794483664], [139.115874923167, 36.450614666707], [139.115235740623, 36.4502233034133], [139.114133001202, 36.4498891986102], [139.11370256601, 36.4497395422259], [139.113350964154, 36.4496012580356], [139.112843675793, 36.4492688595321], [139.112671548805, 36.4490566708282], [139.112530558063, 36.4487663966304], [139.112348517718, 36.4485611887217], [139.112174057399, 36.4484710508548], [139.112013474726, 36.4482056394707], [139.111829685042, 36.4477696083023], [139.111844, 36.447683], [139.111664554089, 36.4474540564092], [139.111284962817, 36.4472063103482], [139.111077616915, 36.4470217823636], [139.110798550775, 36.4466904701204], [139.110597501831, 36.4464018284892], [139.110195986617, 36.4460374369583], [139.10963248794, 36.4454495564145], [139.109165084495, 36.4449090513892], [139.108630042163, 36.4446677143794], [139.108161821921, 36.444465164118], [139.107954009748, 36.4443657863553], [139.107759607631, 36.4442575925923], [139.107129637391, 36.4435773227617], [139.10644649056, 36.4428778780112], [139.106159611587, 36.4421790494766], [139.105787134072, 36.4414874138813], [139.105898971372, 36.4405785746737], [139.106048242536, 36.4401622842177], [139.105841011718, 36.4394683513742], [139.105538155894, 36.4386889356679], [139.105433, 36.438517], [139.105158797427, 36.4382347313351], [139.104985737239, 36.4379979565885], [139.104816524936, 36.4369304926401], [139.104414, 36.436377], [139.10383087083, 36.4357007195462], [139.103275536831, 36.4353219794822], [139.102411981272, 36.4337707659685], [139.102187610234, 36.4333867876904], [139.101982712746, 36.4331717236033], [139.101764, 36.432954], [139.101658048722, 36.4328871309225], [139.101172101631, 36.4324751766025], [139.100721490516, 36.4320497350417], [139.100495835751, 36.4317329208529], [139.100157061277, 36.4308249703726], [139.099990764318, 36.4303781496103], [139.099620969342, 36.4291637356912], [139.099441, 36.428534], [139.099370241165, 36.428460622411], [139.098578522246, 36.4277281047068], [139.097784704121, 36.4271835305793], [139.09754610557, 36.4269567322411], [139.096830889953, 36.425920881487], [139.096277887306, 36.4251661750921], [139.096134097622, 36.42495851953], [139.096083, 36.424814], [139.096020978573, 36.4247374853542], [139.095930133335, 36.4245230312807], [139.095798355555, 36.4239530065745], [139.095654448809, 36.423710133402], [139.094892817192, 36.4228872292575], [139.094562555945, 36.4225196789952], [139.094454685571, 36.4223315479033], [139.094138417053, 36.42170827601], [139.093805356865, 36.4212535591028], [139.093575969958, 36.4209125797902], [139.093349964665, 36.4204000165052], [139.093342, 36.420329], [139.093295270882, 36.420269184767], [139.093174571806, 36.419998448746], [139.0929643099, 36.4195124297469], [139.092346351563, 36.4179586167684], [139.092127227222, 36.4173432418136], [139.091924079072, 36.4169732039667], [139.091738190182, 36.4167889464956], [139.091684, 36.416711], [139.091514867428, 36.4165564894401], [139.091253060548, 36.4163479129387], [139.090393003006, 36.4158986533177], [139.090139710672, 36.4158412821515], [139.088665077068, 36.4157147261332], [139.088541, 36.415684], [139.08836070603, 36.4156777042373], [139.0872585506, 36.4155148079685], [139.087091204698, 36.4155427587942], [139.086716977844, 36.415706392678], [139.086526541334, 36.4157604364698], [139.086255871359, 36.4160370211793], [139.085269751641, 36.4148715563484], [139.085236, 36.414786], [139.085155233122, 36.4147084414864], [139.084420773462, 36.4138542025714], [139.084486547269, 36.4137630180679], [139.083857394486, 36.413372046261], [139.083265092234, 36.4128864370531], [139.082895180195, 36.4126110227226], [139.082839, 36.412515], [139.082654481119, 36.4124851694858], [139.082305561142, 36.4122088967592], [139.081958624627, 36.4118525182453], [139.081115709283, 36.4110500291818], [139.081052, 36.410957], [139.080960258222, 36.4108975838651], [139.080295885865, 36.4103264822998], [139.079838161654, 36.4099281992931], [139.078545217868, 36.4095657711203], [139.078288078308, 36.4095231222045], [139.07734230714, 36.4094663152165], [139.077281, 36.40945], [139.077154553168, 36.4094733839916], [139.076498926844, 36.4094343080076], [139.076037588212, 36.4082808674902], [139.075849017443, 36.4077118831224], [139.075274791249, 36.4062630636844], [139.075079106723, 36.405784971264], [139.075082, 36.405694], [139.075030826961, 36.4056363665092], [139.07461811664, 36.4046285639691], [139.074265930792, 36.4036655123029], [139.074261, 36.403561], [139.074193977748, 36.4034712336499], [139.073621034622, 36.402022968137], [139.07307642946, 36.4011024155723], [139.073046, 36.401007], [139.072930890437, 36.4008699495667], [139.072417538583, 36.4000595752187], [139.072290075618, 36.3997175620703], [139.072202379188, 36.3993716967607], [139.072175906966, 36.3989448964238], [139.072214, 36.398728], [139.07219701477, 36.3986049174553], [139.072206694003, 36.397486098013], [139.072248909612, 36.3971027385708], [139.072411941359, 36.3967568510205], [139.072483, 36.396711], [139.072481328926, 36.396617993455], [139.072985584221, 36.3955132664518], [139.073057, 36.395433], [139.07308505909, 36.3953041836083], [139.073737535945, 36.3938164875693], [139.073781, 36.393762], [139.073813104068, 36.3936446731693], [139.074390595474, 36.3923058102549], [139.074473, 36.392186], [139.074500916241, 36.3920519417878], [139.074629196004, 36.391669212523], [139.073151531312, 36.3897559741612], [139.073116, 36.389655], [139.073037129195, 36.389609831756], [139.072522610675, 36.3889532188468], [139.072610424826, 36.3873601599962], [139.072657, 36.387243], [139.072620453927, 36.3871478730884], [139.072791415569, 36.3840221057418], [139.072735322315, 36.3839080177105], [139.072759229061, 36.3837768751115]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_07\\u664217\\u5206_\\u7cfb\\u7d71114", "times": [1747606620000, 1747606620000, 1747606620000, 1747606620000, 1747606620000, 1747606620000, 1747606622957, 1747606632815, 1747606638482, 1747606644417, 1747606678762, 1747606680000, 1747606681905, 1747606687861, 1747606691674, 1747606695115, 1747606698568, 1747606703483, 1747606709246, 1747606713020, 1747606715815, 1747606719059, 1747606721658, 1747606724620, 1747606733484, 1747606735171, 1747606738609, 1747606740000, 1747606740000, 1747606740000, 1747606740000, 1747606740000, 1747606740000, 1747606740000, 1747606740000, 1747606743991, 1747606752026, 1747606796679, 1747606800000, 1747606801916, 1747606841008, 1747606854609, 1747606860000, 1747606862982, 1747606871648, 1747606890851, 1747606898389, 1747606905658, 1747606915954, 1747606920000, 1747606921978, 1747606927855, 1747606933613, 1747606954126, 1747606966058, 1747606976967, 1747606980207, 1747606983384, 1747606996690, 1747607018768, 1747607023322, 1747607037863, 1747607040000, 1747607041911, 1747607047987, 1747607054122, 1747607079613, 1747607085824, 1747607098025, 1747607100000, 1747607101689, 1747607111010, 1747607120764, 1747607130380, 1747607136295, 1747607147155, 1747607158572, 1747607160000, 1747607161306, 1747607168686, 1747607173999, 1747607181276, 1747607187698, 1747607194537, 1747607202125, 1747607208866, 1747607213352, 1747607216029, 1747607220000, 1747607222921, 1747607233423, 1747607243930, 1747607277944, 1747607280000, 1747607286598, 1747607295293, 1747607308867, 1747607313504, 1747607318471, 1747607324211, 1747607330028, 1747607334086, 1747607337754, 1747607340000, 1747607342613, 1747607359987, 1747607364247, 1747607369650, 1747607383664, 1747607397408, 1747607400000, 1747607401207, 1747607407554, 1747607417527, 1747607422780, 1747607429086, 1747607433653, 1747607436576, 1747607458219, 1747607460000, 1747607461592, 1747607518223, 1747607520000, 1747607524251, 1747607550346, 1747607636279, 1747607640000, 1747607642575, 1747607664881, 1747607696774, 1747607700000, 1747607703022, 1747607730974, 1747607756573, 1747607760000, 1747607764703, 1747607773234, 1747607831210, 1747607844284, 1747607875967, 1747607880000, 1747607884085, 1747607906540, 1747607915349, 1747607924057, 1747607934596, 1747607940000, 1747607943587, 1747607975998, 1747607987148, 1747607997870, 1747608000000, 1747608004075, 1747608055667, 1747608060000, 1747608064423, 1747608117807, 1747608120000, 1747608124303, 1747608175089, 1747608180000, 1747608182819, 1747608191043, 1747608237822, 1747608240000, 1747608241822, 1747608259947, 1747608297130, 1747608300000, 1747608305387, 1747608532895, 1747608561228, 1747608574434, 1747608600000, 1747608606712, 1747608612141, 1747608614758, 1747608616761, 1747608636901, 1747608658101, 1747608660000, 1747608662810, 1747608687814, 1747608704345, 1747608769081, 1747608780000, 1747608785971, 1747608807854, 1747608817690, 1747608826687, 1747608838771, 1747608843645, 1747608896442, 1747608900000, 1747608911996, 1747609085547, 1747609129652, 1747609140000, 1747609172535, 1747609208820, 1747609266553, 1747609351753, 1747609374837, 1747609398637, 1747609409514, 1747609468334, 1747609536487, 1747609643862, 1747609685748, 1747609777353, 1747609800000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_07\\u664217\\u5206_\\u7cfb\\u7d71114", "popup": "\\u5e73\\u65e5_07\\u664217\\u5206_\\u7cfb\\u7d71114"}, "geometry": {"type": "LineString", "coordinates": [[139.118185, 36.429014], [139.118053809428, 36.4290362581146], [139.117773576622, 36.4291878388312], [139.117440166566, 36.4292639038476], [139.115925997913, 36.4295106975675], [139.115787, 36.429514], [139.115611949621, 36.4295618858933], [139.115013233348, 36.4296786347664], [139.114692767737, 36.429800215483], [139.114413351729, 36.4299972222062], [139.113141401983, 36.4313937950322], [139.113088, 36.431439], [139.112998778965, 36.4315616955436], [139.112656271689, 36.4319098081983], [139.112366826581, 36.4320720942235], [139.11207178227, 36.432167920853], [139.111752832532, 36.4321609164641], [139.111322747868, 36.4320429427963], [139.110905372865, 36.4317757262643], [139.110643682387, 36.4315894534052], [139.110415694291, 36.4314913883005], [139.110117269685, 36.4315141242187], [139.109898844419, 36.4315948081982], [139.109747474709, 36.4317790766688], [139.109352023648, 36.4323587694257], [139.109216513726, 36.4322965272873], [139.109121353673, 36.4320516223871], [139.109113, 36.431948], [139.10902444428, 36.4318599252416], [139.108320306048, 36.4303554139378], [139.108314, 36.430257], [139.108235524962, 36.4301702937614], [139.107351795458, 36.4281325908495], [139.107232028923, 36.4278572505436], [139.107214, 36.427758], [139.107128355642, 36.427665539637], [139.107040659212, 36.4274440847376], [139.106775703523, 36.4261697960339], [139.106785, 36.426074], [139.106733837782, 36.4259930816872], [139.106312147963, 36.424171056811], [139.106092323227, 36.4235510701943], [139.10604, 36.423299], [139.105961711453, 36.4232196741506], [139.105786784864, 36.4229608990194], [139.105280895974, 36.4224512982928], [139.105165911184, 36.4222122341022], [139.105112034198, 36.42196877881], [139.105125561976, 36.4216186689564], [139.105171, 36.421486], [139.1051730256, 36.4213921922495], [139.105206145309, 36.4211148122941], [139.105171626129, 36.4208432291202], [139.104700139356, 36.4199483312256], [139.104435767659, 36.4194244142907], [139.104309704165, 36.4189173109249], [139.10424719689, 36.4187721876189], [139.104123465407, 36.4186595486467], [139.103598102308, 36.4181928415526], [139.102790988551, 36.4173741127467], [139.102735247143, 36.4171629262713], [139.102755188942, 36.4164735960583], [139.1028, 36.416379], [139.102774081138, 36.4162968221224], [139.10280008709, 36.4160279988279], [139.102560903887, 36.4158363381212], [139.101536414467, 36.4150656823413], [139.101356941577, 36.4148313377552], [139.101063997792, 36.4143444475218], [139.10104, 36.414259], [139.10093665123, 36.4141640354025], [139.100549363529, 36.4135405569585], [139.099963241833, 36.4129850220309], [139.099310065242, 36.4124958032694], [139.099128259021, 36.4120781906608], [139.098857472643, 36.4112952713682], [139.098697239838, 36.4104506447942], [139.098706, 36.410344], [139.098672167086, 36.4102518337912], [139.098563129387, 36.4097161920842], [139.098521497111, 36.4093268182686], [139.098398931634, 36.4088007524653], [139.098243479914, 36.4083453868027], [139.098032518272, 36.4078720690861], [139.097734792742, 36.4073685234404], [139.097581207422, 36.4068883909356], [139.097624239829, 36.4065602840122], [139.097650012316, 36.4063644123495], [139.097612, 36.406074], [139.0975156684, 36.4059676690241], [139.097308555303, 36.4055245565731], [139.097163716016, 36.4050653146646], [139.096805116147, 36.4035586878638], [139.096802, 36.403466], [139.096685000403, 36.4031239880097], [139.096460977255, 36.402692883812], [139.096066226589, 36.4020363797424], [139.095927918385, 36.4018134820247], [139.095689550661, 36.4016284930885], [139.095359173012, 36.4014737500323], [139.09500908571, 36.4013405732431], [139.094763605548, 36.4012496768209], [139.094519757663, 36.4012564994176], [139.094377, 36.401221], [139.094246055941, 36.401233097832], [139.09337013861, 36.4012246962463], [139.093160810563, 36.4011858268706], [139.092909732519, 36.401100378506], [139.092256323122, 36.4008829027877], [139.091623671662, 36.4006542867324], [139.091524, 36.400586], [139.091426237798, 36.4005756609644], [139.090952069806, 36.4004065868318], [139.090218893214, 36.4001202320251], [139.089883501015, 36.3999041176326], [139.089494347572, 36.3996316385366], [139.08919335683, 36.3994537018545], [139.088973066483, 36.399379400776], [139.087210737108, 36.3992748667236], [139.087074, 36.399235], [139.086978785384, 36.3992500996974], [139.083535527425, 36.399068293087], [139.083437, 36.399032], [139.083290631916, 36.3990471212073], [139.082386608767, 36.3990023541812], [139.081738798572, 36.4013560316276], [139.081688, 36.401452], [139.081685037989, 36.4015255621794], [139.081539149099, 36.4021521395102], [139.080418218536, 36.4020525427598], [139.080309, 36.402026], [139.080151280703, 36.4020386836495], [139.078692975796, 36.4019209543652], [139.077361316397, 36.4020566366863], [139.077182, 36.402048], [139.076990938748, 36.4020848245393], [139.076637237026, 36.4021189184658], [139.07422067882, 36.4020016477501], [139.073686106714, 36.4020912113091], [139.073081094142, 36.4011401446109], [139.073046, 36.401007], [139.072930890437, 36.4008699495667], [139.072417538583, 36.4000595752187], [139.072290075618, 36.3997175620703], [139.072202379188, 36.3993716967607], [139.072175906966, 36.3989448964238], [139.072214, 36.398728], [139.07219701477, 36.3986049174553], [139.072206694003, 36.397486098013], [139.072248909612, 36.3971027385708], [139.072411941359, 36.3967568510205], [139.072483, 36.396711], [139.072481328926, 36.396617993455], [139.072985584221, 36.3955132664518], [139.073057, 36.395433], [139.07308505909, 36.3953041836083], [139.073737535945, 36.3938164875693], [139.073781, 36.393762], [139.073813104068, 36.3936446731693], [139.074390595474, 36.3923058102549], [139.074473, 36.392186], [139.074500916241, 36.3920519417878], [139.074629196004, 36.391669212523], [139.073151531312, 36.3897559741612], [139.073116, 36.389655], [139.073037129195, 36.389609831756], [139.072522610675, 36.3889532188468], [139.072610424826, 36.3873601599962], [139.072657, 36.387243], [139.072626168213, 36.3871810578609], [139.07276284414, 36.3843637518094], [139.072777071653, 36.3840128081844], [139.072740336865, 36.3838518751115], [139.072904, 36.383564], [139.072299792553, 36.3834730910698], [139.072271727735, 36.3838743791595], [139.072454973766, 36.383999251887], [139.072628734349, 36.3840465362867], [139.07255421517, 36.3855363732718], [139.072479113317, 36.387104688316], [139.072448, 36.387243], [139.072460106697, 36.3873452054921], [139.072410075618, 36.3882577198371], [139.072338939373, 36.3888588229485], [139.069835621234, 36.3900818956805], [139.06939, 36.390253], [139.069187693318, 36.3903830418832], [139.068377199266, 36.3907791902159], [139.067965771353, 36.3908675987508], [139.067578131806, 36.390897591411], [139.06706070058, 36.3909589670579], [139.066850089466, 36.3909487414533], [139.064589219742, 36.3906805536298], [139.064445, 36.390637], [139.064277501482, 36.3906487341135], [139.061863277926, 36.3904091951091], [139.061776049745, 36.3909039670579], [139.061748, 36.391019], [139.061734767336, 36.3914014780677], [139.061829694585, 36.3918212567325], [139.061708295114, 36.3924930820858], [139.060470044452, 36.3924510393823], [139.060161942591, 36.3925589931268], [139.059930223013, 36.3927669481482], [139.059811739545, 36.3928517204461], [139.059698620496, 36.3935374007438], [139.059544801712, 36.3943292071023], [139.059236696554, 36.3955671678543], [139.059136172741, 36.3960530236138], [139.058920779223, 36.3971161690065], [139.059219, 36.397003]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_07\\u664225\\u5206_\\u7cfb\\u7d71170", "times": [1747607100000, 1747607100000, 1747607100000, 1747607100000, 1747607102502, 1747607114216, 1747607129706, 1747607145989, 1747607156848, 1747607160000, 1747607160000, 1747607160000, 1747607160000, 1747607160000, 1747607164475, 1747607215702, 1747607220000, 1747607220000, 1747607220000, 1747607220000, 1747607220000, 1747607220000, 1747607220000, 1747607220000, 1747607222009, 1747607227675, 1747607254646, 1747607277504, 1747607280000, 1747607282401, 1747607290355, 1747607301962, 1747607312119, 1747607328579, 1747607334362, 1747607335858, 1747607337899, 1747607340000, 1747607341221, 1747607349781, 1747607358508, 1747607365813, 1747607371173, 1747607377291, 1747607398182, 1747607400000, 1747607401735, 1747607434222, 1747607457903, 1747607460000, 1747607462138, 1747607504237, 1747607505399, 1747607517356, 1747607520000, 1747607521790, 1747607525291, 1747607531125, 1747607552253, 1747607561216, 1747607585224, 1747607601731, 1747607628180, 1747607638287, 1747607640000, 1747607640884, 1747607650655, 1747607675222, 1747607696571, 1747607698993, 1747607700000, 1747607701035, 1747607725724, 1747607745811, 1747607757988, 1747607760000, 1747607769911, 1747607862085, 1747607955805, 1747607971319, 1747607987085, 1747607994979, 1747608000000, 1747608000000, 1747608000000, 1747608000000, 1747608000000, 1747608000000, 1747608000000, 1747608000000, 1747608000000, 1747608000000, 1747608002493, 1747608019018, 1747608030975, 1747608036206, 1747608039073, 1747608040882, 1747608044438, 1747608051581, 1747608060000, 1747608120000, 1747608176909, 1747608180000, 1747608182474, 1747608218889, 1747608240000, 1747608259808, 1747608339437, 1747608357618, 1747608360000, 1747608363283, 1747608416520, 1747608420000, 1747608423654, 1747608461445, 1747608477657, 1747608480000, 1747608495147, 1747608591334, 1747608602716, 1747608686378, 1747608701913, 1747608754352, 1747608783313, 1747608799626, 1747608814633, 1747608840000, 1747608846712, 1747608852141, 1747608854758, 1747608856761, 1747608876901, 1747608898101, 1747608900000, 1747608902810, 1747608927814, 1747608944345, 1747609009081, 1747609020000, 1747609025971, 1747609047854, 1747609057690, 1747609066687, 1747609078771, 1747609083645, 1747609136442, 1747609140000, 1747609151996, 1747609325547, 1747609369652, 1747609380000, 1747609406619, 1747609436307, 1747609483543, 1747609553252, 1747609572139, 1747609591612, 1747609600511, 1747609648637, 1747609704398, 1747609792250, 1747609826521, 1747609901471, 1747609920000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_07\\u664225\\u5206_\\u7cfb\\u7d71170", "popup": "\\u5e73\\u65e5_07\\u664225\\u5206_\\u7cfb\\u7d71170"}, "geometry": {"type": "LineString", "coordinates": [[139.093469, 36.329018], [139.093340985167, 36.3290530238325], [139.090807580387, 36.3292199626756], [139.090669, 36.329204], [139.090540758956, 36.329223606137], [139.089932130645, 36.3292668234438], [139.089124666361, 36.3292452147904], [139.088286070448, 36.3291367453688], [139.087733651793, 36.3290357369098], [139.087585, 36.328979], [139.087428346895, 36.3289998846007], [139.086644557871, 36.3288919795936], [139.086321061173, 36.3299685460852], [139.086254, 36.330059], [139.086229166331, 36.3301971679133], [139.085768176248, 36.3317513438277], [139.085691, 36.33187], [139.085692490403, 36.332010208995], [139.085308349533, 36.3332616111747], [139.085737739078, 36.3332598077818], [139.08617633697, 36.3332709870895], [139.087328872027, 36.3333874167937], [139.08804303936, 36.333469953131], [139.088202, 36.333512], [139.088361755633, 36.3335038464979], [139.088810266881, 36.3335440968944], [139.090954518879, 36.3336484910542], [139.092772006989, 36.3337335637288], [139.092965, 36.333772], [139.093164424983, 36.3337554942259], [139.093827978564, 36.3337779944471], [139.094794041399, 36.3338394229239], [139.095639871428, 36.3338877801668], [139.097004653173, 36.3340179944471], [139.096893279506, 36.3343981370961], [139.096892229903, 36.3344991369636], [139.09685071403, 36.3346328511358], [139.09679, 36.334766], [139.096788440219, 36.3348521365662], [139.096628440879, 36.3354418801682], [139.096463193523, 36.3360427990889], [139.096327683602, 36.3365462875786], [139.096172581749, 36.3369029194732], [139.095920920372, 36.3372834426481], [139.095038590339, 36.3385725267231], [139.094945, 36.338676], [139.094908794703, 36.3387719797491], [139.093799059906, 36.3404219776188], [139.092972589662, 36.3416168754602], [139.09289, 36.341718], [139.092839178946, 36.3418353950332], [139.09138402219, 36.3439831582059], [139.091324780126, 36.34403087472], [139.090916384621, 36.344643021041], [139.090793, 36.34476], [139.090772828402, 36.344871220346], [139.09063731848, 36.3450616412636], [139.090440700754, 36.3453915112376], [139.089907757628, 36.3466457088437], [139.089700994399, 36.3471828401887], [139.089113473892, 36.348612983835], [139.088716506958, 36.3495980840402], [139.088045604837, 36.3511671193998], [139.087799541343, 36.3517694630865], [139.087719, 36.351855], [139.087734002321, 36.3519386895964], [139.087384381948, 36.3528291357286], [139.086592897154, 36.3550893546806], [139.085906251646, 36.3570536981394], [139.085814356804, 36.3572731056224], [139.085772, 36.357363], [139.085769225851, 36.3574279935823], [139.08523604926, 36.35891814756], [139.084799315791, 36.36012983825], [139.084496459307, 36.3608546746923], [139.084414, 36.360962], [139.084385555867, 36.3610897525255], [139.083885265519, 36.3622270494804], [139.083368415647, 36.363381053379], [139.083126783371, 36.3633255143926], [139.083045188797, 36.3635211563914], [139.083172497657, 36.363530486028], [139.083218, 36.363476], [139.083247483106, 36.3633734817274], [139.083349524111, 36.3634157610394], [139.083208649772, 36.3637167518245], [139.083022877285, 36.3641149843554], [139.082754889188, 36.3644505656826], [139.082457864053, 36.3647568621082], [139.081973667619, 36.3650961134748], [139.08166917754, 36.3652620317061], [139.081544, 36.365282], [139.081388711929, 36.3654227748551], [139.080122709274, 36.3661398473303], [139.079221487045, 36.3666754793564], [139.078792333603, 36.3668655423334], [139.078534841537, 36.3669260169169], [139.078370206615, 36.3669577323559], [139.078037670898, 36.3669635169169], [139.0773695955, 36.366956142871], [139.077311754227, 36.3675912373365], [139.076979160309, 36.3719020648639], [139.07683968544, 36.3745195506978], [139.076806215864, 36.3746592209199], [139.076821784646, 36.3747446074708], [139.076759160968, 36.3760139815694], [139.076702, 36.376749], [139.076700123269, 36.3775462317379], [139.076517820358, 36.3807475906518], [139.076453447342, 36.3814774755689], [139.076444, 36.381573], [139.076454846813, 36.3816640961819], [139.076380094828, 36.3831465625117], [139.076348, 36.38324], [139.07637473041, 36.3833461361004], [139.076318754218, 36.3844652475691], [139.075724819031, 36.3844508063771], [139.075652, 36.384414], [139.075494266118, 36.3844330704709], [139.074482838206, 36.3843914771636], [139.074369837538, 36.3843592025177], [139.073489838197, 36.3843276720178], [139.073333338852, 36.3842892025177], [139.072782473773, 36.3842591048612], [139.072778781971, 36.3840125753437], [139.072733106706, 36.383878699049], [139.072798529325, 36.383762398688], [139.072904, 36.383564], [139.072299792553, 36.3834730910698], [139.072271727735, 36.3838743791595], [139.072454973766, 36.383999251887], [139.072628734349, 36.3840465362867], [139.07255421517, 36.3855363732718], [139.072479113317, 36.387104688316], [139.072448, 36.387243], [139.072460106697, 36.3873452054921], [139.072410075618, 36.3882577198371], [139.072338939373, 36.3888588229485], [139.069835621234, 36.3900818956805], [139.06939, 36.390253], [139.069187693318, 36.3903830418832], [139.068377199266, 36.3907791902159], [139.067965771353, 36.3908675987508], [139.067578131806, 36.390897591411], [139.06706070058, 36.3909589670579], [139.066850089466, 36.3909487414533], [139.064589219742, 36.3906805536298], [139.064445, 36.390637], [139.064277501482, 36.3906487341135], [139.061863277926, 36.3904091951091], [139.061776049745, 36.3909039670579], [139.061748, 36.391019], [139.061734767336, 36.3914014780677], [139.061829694585, 36.3918212567325], [139.061708295114, 36.3924930820858], [139.060470044452, 36.3924510393823], [139.060161942591, 36.3925589931268], [139.059930223013, 36.3927669481482], [139.059811739545, 36.3928517204461], [139.059698620496, 36.3935374007438], [139.059544801712, 36.3943292071023], [139.059236696554, 36.3955671678543], [139.059136172741, 36.3960530236138], [139.058920779223, 36.3971161690065], [139.059219, 36.397003]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_07\\u664226\\u5206_\\u7cfb\\u7d71124", "times": [1747607160000, 1747607161791, 1747607163499, 1747607165018, 1747607174579, 1747607218692, 1747607220000, 1747607225935, 1747607267281, 1747607278986, 1747607280000, 1747607281958, 1747607296745, 1747607336252, 1747607341997, 1747607351598, 1747607373691, 1747607398187, 1747607400000, 1747607401397, 1747607431302, 1747607436945, 1747607449489, 1747607459116, 1747607460000, 1747607460900, 1747607465185, 1747607473877, 1747607482857, 1747607491458, 1747607499874, 1747607502781, 1747607507269, 1747607509874, 1747607511666, 1747607514224, 1747607519365, 1747607520000, 1747607521979, 1747607528840, 1747607541758, 1747607547148, 1747607559188, 1747607566821, 1747607577383, 1747607580000, 1747607587505, 1747607607615, 1747607630242, 1747607638036, 1747607640000, 1747607643378, 1747607648723, 1747607652345, 1747607670116, 1747607676916, 1747607680479, 1747607688711, 1747607698414, 1747607700000, 1747607701685, 1747607709964, 1747607754543, 1747607758743, 1747607760000, 1747607762773, 1747607811023, 1747607816604, 1747607820000, 1747607821758, 1747607827122, 1747607877996, 1747607880000, 1747607880000, 1747607880000, 1747607880000, 1747607880981, 1747607938591, 1747607940000, 1747607940814, 1747607948441, 1747607980121, 1747607997075, 1747608000000, 1747608001059, 1747608011452, 1747608026512, 1747608058208, 1747608060000, 1747608061369, 1747608097458, 1747608108995, 1747608118965, 1747608120000, 1747608123310, 1747608178497, 1747608180000, 1747608185423, 1747608237665, 1747608240000, 1747608241796, 1747608297976, 1747608300000, 1747608315571, 1747608367034, 1747608490823, 1747608616037, 1747608637075, 1747608649592, 1747608660000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_07\\u664226\\u5206_\\u7cfb\\u7d71124", "popup": "\\u5e73\\u65e5_07\\u664226\\u5206_\\u7cfb\\u7d71124"}, "geometry": {"type": "LineString", "coordinates": [[139.105525, 36.273268], [139.105525094386, 36.2733843124108], [139.105594870842, 36.2734797286104], [139.105712382747, 36.2735055523133], [139.106112031561, 36.2740353313107], [139.108260954176, 36.2763101506978], [139.108293, 36.276391], [139.108572434355, 36.2766620266652], [139.110607650632, 36.2748361825029], [139.111114353681, 36.2742736723767], [139.111163, 36.274228], [139.111190502499, 36.2741396734526], [139.111574991918, 36.2735266291309], [139.112543735972, 36.2718654418121], [139.112722743912, 36.2716410564559], [139.113087874865, 36.2713065636052], [139.113606706881, 36.2722440508311], [139.114128804768, 36.2733017396322], [139.114145, 36.273385], [139.114219300139, 36.2734836547367], [139.115372650016, 36.2757740006809], [139.115646585203, 36.2761847149741], [139.116259762454, 36.2770956978859], [139.116595271056, 36.2778441458709], [139.116602, 36.277917], [139.116699410608, 36.2780280837474], [139.116916552146, 36.2786520756035], [139.117314103072, 36.2799272091525], [139.117671886144, 36.2812546726021], [139.118075150697, 36.2825144029115], [139.118471651361, 36.2837465541989], [139.118599580596, 36.2841740871899], [139.118924711549, 36.284799889904], [139.119014973455, 36.2851873038377], [139.119010425175, 36.2854583792925], [139.11897928827, 36.2858445530247], [139.118939638138, 36.2866217102037], [139.118925, 36.286717], [139.118953165915, 36.2868411539268], [139.118993515783, 36.2872774661889], [139.119066402027, 36.2880991782874], [139.119011824646, 36.2884400856347], [139.118791300174, 36.2891869159347], [139.118684361681, 36.2896659117682], [139.118631767104, 36.2903381577422], [139.11863, 36.290505], [139.118634566046, 36.2908629637369], [139.118624886813, 36.2918220508925], [139.118588035622, 36.2929008180633], [139.118559464193, 36.2932718581741], [139.118533, 36.293363], [139.118545120277, 36.2936154589189], [139.118567161282, 36.2940147126482], [139.118565645409, 36.294285526672], [139.118510135487, 36.2956135086826], [139.118498590513, 36.2961218669617], [139.118453226095, 36.296385748421], [139.118162147391, 36.2969543653103], [139.117805996595, 36.2976201837617], [139.117729, 36.297721], [139.117714918551, 36.2978274451558], [139.117474802148, 36.2983162079231], [139.113977316017, 36.29839493829], [139.113981866275, 36.2981281727762], [139.114002, 36.29805], [139.113968222095, 36.2979665879335], [139.113921458866, 36.2964400418003], [139.113703966141, 36.2964540437822], [139.113571571429, 36.296462], [139.113451838493, 36.2964770143121], [139.113083101692, 36.2964978080217], [139.109578728676, 36.2965784845118], [139.109442, 36.296563], [139.109350631431, 36.2965872487513], [139.106562060002, 36.2966572487513], [139.106479142857, 36.296642], [139.106382585133, 36.2966592782214], [139.100582249772, 36.2967933070308], [139.100441, 36.296783], [139.100348897918, 36.2968042480907], [139.099453037469, 36.2968282166387], [139.099613739183, 36.2998395594324], [139.099672397913, 36.301451847396], [139.099664, 36.30173], [139.099688955459, 36.3017934527572], [139.099719390651, 36.3024461459765], [139.099726971997, 36.3033926100415], [139.102186560631, 36.3033268033454], [139.102325, 36.303338], [139.102438688278, 36.3033131570616], [139.105540957473, 36.3032233099331], [139.106532903262, 36.303201170237], [139.10739004612, 36.3031791396627], [139.107479, 36.303179], [139.107591794799, 36.3031718470951], [139.10947575513, 36.3030999693922], [139.109437095238, 36.3031273333333], [139.109716454206, 36.3030963231084], [139.112430733327, 36.3030185065542], [139.112552, 36.303023], [139.112653239942, 36.3030082445609], [139.115868625548, 36.3029240741064], [139.115984, 36.302933], [139.116131948961, 36.3029090305408], [139.116630607692, 36.302911847095], [139.116627691689, 36.3038827421969], [139.115414515097, 36.3038971523334], [139.115415214833, 36.3040621523334], [139.115536380839, 36.3040666283468], [139.115536, 36.303985]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_07\\u664237\\u5206_\\u7cfb\\u7d71162", "times": [1747607820000, 1747607821807, 1747607822710, 1747607836175, 1747607841535, 1747607845752, 1747607851839, 1747607860016, 1747607861681, 1747607867344, 1747607876717, 1747607879286, 1747607880000, 1747607881302, 1747607895083, 1747607902182, 1747607911024, 1747607920871, 1747607930822, 1747607939316, 1747607942316, 1747607950353, 1747607962156, 1747607966852, 1747607970770, 1747607977316, 1747607980463, 1747607984331, 1747607987462, 1747607989538, 1747607993202, 1747607998916, 1747608000000, 1747608002917, 1747608007160, 1747608009843, 1747608014157, 1747608017722, 1747608022974, 1747608030978, 1747608038076, 1747608043405, 1747608048024, 1747608050125, 1747608052178, 1747608061323, 1747608070915, 1747608078840, 1747608086960, 1747608096791, 1747608101457, 1747608109141, 1747608117935, 1747608120000, 1747608129154, 1747608136168, 1747608163622, 1747608180000, 1747608192484, 1747608198928, 1747608206403, 1747608212944, 1747608218147, 1747608228498, 1747608238616, 1747608244738, 1747608249610, 1747608255966, 1747608266658, 1747608272532, 1747608277680, 1747608285064, 1747608299850, 1747608303650, 1747608308494, 1747608348771, 1747608357634, 1747608360000, 1747608360000, 1747608360000, 1747608360000, 1747608362424, 1747608411150, 1747608417736, 1747608420000, 1747608423991, 1747608432026, 1747608476679, 1747608480000, 1747608483832, 1747608562016, 1747608589219, 1747608600000, 1747608600000, 1747608600000, 1747608600000, 1747608600000, 1747608600000, 1747608600000, 1747608600000, 1747608601978, 1747608607855, 1747608613613, 1747608634126, 1747608646058, 1747608656967, 1747608660207, 1747608663384, 1747608676690, 1747608698768, 1747608703322, 1747608717863, 1747608720000, 1747608721911, 1747608727987, 1747608734122, 1747608759613, 1747608765824, 1747608778025, 1747608780000, 1747608781689, 1747608791010, 1747608800764, 1747608810380, 1747608816295, 1747608827155, 1747608838572, 1747608840000, 1747608841306, 1747608848686, 1747608853999, 1747608861276, 1747608867698, 1747608874537, 1747608882125, 1747608888866, 1747608893352, 1747608896029, 1747608900000, 1747608902921, 1747608913423, 1747608923930, 1747608957944, 1747608960000, 1747608966598, 1747608975293, 1747608988867, 1747608993504, 1747608998471, 1747609004211, 1747609010028, 1747609014086, 1747609017754, 1747609020000, 1747609022613, 1747609039987, 1747609044247, 1747609049650, 1747609063664, 1747609077408, 1747609080000, 1747609081207, 1747609087554, 1747609097527, 1747609102780, 1747609109086, 1747609113653, 1747609116576, 1747609138219, 1747609140000, 1747609141592, 1747609198223, 1747609200000, 1747609204251, 1747609230346, 1747609316279, 1747609320000, 1747609325150, 1747609369762, 1747609433548, 1747609440000, 1747609443022, 1747609470974, 1747609496573, 1747609500000, 1747609504703, 1747609513234, 1747609571210, 1747609584284, 1747609615967, 1747609620000, 1747609624085, 1747609646540, 1747609655349, 1747609664057, 1747609674596, 1747609680000, 1747609683587, 1747609715998, 1747609727148, 1747609737870, 1747609740000, 1747609744075, 1747609795667, 1747609800000, 1747609804423, 1747609857807, 1747609860000, 1747609864303, 1747609915089, 1747609920000, 1747609922819, 1747609931043, 1747609977822, 1747609980000, 1747609981822, 1747609999947, 1747610037130, 1747610040000, 1747610049698, 1747610459211, 1747610510211, 1747610533981, 1747610580000, 1747610586712, 1747610592141, 1747610594758, 1747610596761, 1747610616901, 1747610638101, 1747610640000, 1747610642810, 1747610667814, 1747610684345, 1747610749081, 1747610760000, 1747610765971, 1747610787854, 1747610797690, 1747610806687, 1747610818771, 1747610823645, 1747610876442, 1747610880000, 1747610891996, 1747611065547, 1747611109652, 1747611120000, 1747611146619, 1747611176307, 1747611223543, 1747611293252, 1747611312139, 1747611331612, 1747611340511, 1747611388637, 1747611444398, 1747611532250, 1747611566521, 1747611641471], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_07\\u664237\\u5206_\\u7cfb\\u7d71162", "popup": "\\u5e73\\u65e5_07\\u664237\\u5206_\\u7cfb\\u7d71162"}, "geometry": {"type": "LineString", "coordinates": [[139.123801, 36.458699], [139.123819937116, 36.4585079461785], [139.123933601136, 36.4584806589363], [139.123742541613, 36.4570608365528], [139.123840267803, 36.4564978318543], [139.123800617671, 36.4560517261105], [139.123584058146, 36.455430259238], [139.122722367668, 36.4549127757033], [139.1225202711, 36.4548456933523], [139.121825111046, 36.4546325460505], [139.120674559451, 36.4542796263114], [139.120379634181, 36.4541475163135], [139.120325, 36.454086], [139.120199576639, 36.4540583506904], [139.119118878882, 36.4533712609039], [139.118594449643, 36.4529864986619], [139.117961447656, 36.4524898668899], [139.117311653339, 36.4518943428888], [139.116666173837, 36.451284774172], [139.116094046849, 36.4507794483664], [139.115874923167, 36.450614666707], [139.115235740623, 36.4502233034133], [139.114133001202, 36.4498891986102], [139.11370256601, 36.4497395422259], [139.113350964154, 36.4496012580356], [139.112843675793, 36.4492688595321], [139.112671548805, 36.4490566708282], [139.112530558063, 36.4487663966304], [139.112348517718, 36.4485611887217], [139.112174057399, 36.4484710508548], [139.112013474726, 36.4482056394707], [139.111829685042, 36.4477696083023], [139.111844, 36.447683], [139.111664554089, 36.4474540564092], [139.111284962817, 36.4472063103482], [139.111077616915, 36.4470217823636], [139.110798550775, 36.4466904701204], [139.110597501831, 36.4464018284892], [139.110195986617, 36.4460374369583], [139.10963248794, 36.4454495564145], [139.109165084495, 36.4449090513892], [139.108630042163, 36.4446677143794], [139.108161821921, 36.444465164118], [139.107954009748, 36.4443657863553], [139.107759607631, 36.4442575925923], [139.107129637391, 36.4435773227617], [139.10644649056, 36.4428778780112], [139.106159611587, 36.4421790494766], [139.105787134072, 36.4414874138813], [139.105898971372, 36.4405785746737], [139.106048242536, 36.4401622842177], [139.105841011718, 36.4394683513742], [139.105538155894, 36.4386889356679], [139.105433, 36.438517], [139.105158797427, 36.4382347313351], [139.104985737239, 36.4379979565885], [139.104816524936, 36.4369304926401], [139.104414, 36.436377], [139.103997399935, 36.4359194556061], [139.104360199536, 36.4359251938827], [139.104639499141, 36.4361796674313], [139.104827720043, 36.436435456167], [139.105079731287, 36.4365562449027], [139.105642179042, 36.4364326663096], [139.106144684999, 36.4362157195463], [139.106359611588, 36.4359979296888], [139.10648789069, 36.4358019834865], [139.106525674422, 36.4355144020751], [139.106373604317, 36.4350436618723], [139.106433663177, 36.4347808691779], [139.106620018997, 36.4346014456981], [139.106996345057, 36.4344585487499], [139.107790745855, 36.4342572205274], [139.107971618876, 36.434164795907], [139.108160656575, 36.4340059025757], [139.109317973377, 36.4324298831934], [139.109138146662, 36.4320536743258], [139.109113, 36.431948], [139.10902444428, 36.4318599252416], [139.108320306048, 36.4303554139378], [139.108314, 36.430257], [139.108235524962, 36.4301702937614], [139.107351795458, 36.4281325908495], [139.107232028923, 36.4278572505436], [139.107214, 36.427758], [139.107128355642, 36.427665539637], [139.107040659212, 36.4274440847376], [139.106775703523, 36.4261697960339], [139.106785, 36.426074], [139.106733837782, 36.4259930816872], [139.106312147963, 36.424171056811], [139.106092323227, 36.4235510701943], [139.10604, 36.423299], [139.105961711453, 36.4232196741506], [139.105786784864, 36.4229608990194], [139.105280895974, 36.4224512982928], [139.105165911184, 36.4222122341022], [139.105112034198, 36.42196877881], [139.105125561976, 36.4216186689564], [139.105171, 36.421486], [139.1051730256, 36.4213921922495], [139.105206145309, 36.4211148122941], [139.105171626129, 36.4208432291202], [139.104700139356, 36.4199483312256], [139.104435767659, 36.4194244142907], [139.104309704165, 36.4189173109249], [139.10424719689, 36.4187721876189], [139.104123465407, 36.4186595486467], [139.103598102308, 36.4181928415526], [139.102790988551, 36.4173741127467], [139.102735247143, 36.4171629262713], [139.102755188942, 36.4164735960583], [139.1028, 36.416379], [139.102774081138, 36.4162968221224], [139.10280008709, 36.4160279988279], [139.102560903887, 36.4158363381212], [139.101536414467, 36.4150656823413], [139.101356941577, 36.4148313377552], [139.101063997792, 36.4143444475218], [139.10104, 36.414259], [139.10093665123, 36.4141640354025], [139.100549363529, 36.4135405569585], [139.099963241833, 36.4129850220309], [139.099310065242, 36.4124958032694], [139.099128259021, 36.4120781906608], [139.098857472643, 36.4112952713682], [139.098697239838, 36.4104506447942], [139.098706, 36.410344], [139.098672167086, 36.4102518337912], [139.098563129387, 36.4097161920842], [139.098521497111, 36.4093268182686], [139.098398931634, 36.4088007524653], [139.098243479914, 36.4083453868027], [139.098032518272, 36.4078720690861], [139.097734792742, 36.4073685234404], [139.097581207422, 36.4068883909356], [139.097624239829, 36.4065602840122], [139.097650012316, 36.4063644123495], [139.097612, 36.406074], [139.0975156684, 36.4059676690241], [139.097308555303, 36.4055245565731], [139.097163716016, 36.4050653146646], [139.096805116147, 36.4035586878638], [139.096802, 36.403466], [139.096685000403, 36.4031239880097], [139.096460977255, 36.402692883812], [139.096066226589, 36.4020363797424], [139.095927918385, 36.4018134820247], [139.095689550661, 36.4016284930885], [139.095359173012, 36.4014737500323], [139.09500908571, 36.4013405732431], [139.094763605548, 36.4012496768209], [139.094519757663, 36.4012564994176], [139.094377, 36.401221], [139.094246055941, 36.401233097832], [139.09337013861, 36.4012246962463], [139.093160810563, 36.4011858268706], [139.092909732519, 36.401100378506], [139.092256323122, 36.4008829027877], [139.091623671662, 36.4006542867324], [139.091524, 36.400586], [139.091426237798, 36.4005756609644], [139.090952069806, 36.4004065868318], [139.090218893214, 36.4001202320251], [139.089883501015, 36.3999041176326], [139.089494347572, 36.3996316385366], [139.08919335683, 36.3994537018545], [139.088973066483, 36.399379400776], [139.087210737108, 36.3992748667236], [139.087074, 36.399235], [139.086978785384, 36.3992500996974], [139.083535527425, 36.399068293087], [139.083437, 36.399032], [139.083290631916, 36.3990471212073], [139.082386608767, 36.3990023541812], [139.081738798572, 36.4013560316276], [139.081688, 36.401452], [139.081685037989, 36.4015255621794], [139.081539149099, 36.4021521395102], [139.080418218536, 36.4020525427598], [139.080309, 36.402026], [139.080151280703, 36.4020386836495], [139.078692975796, 36.4019209543652], [139.077361316397, 36.4020566366863], [139.077182, 36.402048], [139.076990938748, 36.4020848245393], [139.076637237026, 36.4021189184658], [139.07422067882, 36.4020016477501], [139.073686106714, 36.4020912113091], [139.073081094142, 36.4011401446109], [139.073046, 36.401007], [139.072930890437, 36.4008699495667], [139.072417538583, 36.4000595752187], [139.072290075618, 36.3997175620703], [139.072202379188, 36.3993716967607], [139.072175906966, 36.3989448964238], [139.072214, 36.398728], [139.07219701477, 36.3986049174553], [139.072206694003, 36.397486098013], [139.072248909612, 36.3971027385708], [139.072411941359, 36.3967568510205], [139.072483, 36.396711], [139.072481328926, 36.396617993455], [139.072985584221, 36.3955132664518], [139.073057, 36.395433], [139.07308505909, 36.3953041836083], [139.073737535945, 36.3938164875693], [139.073781, 36.393762], [139.073813104068, 36.3936446731693], [139.074390595474, 36.3923058102549], [139.074473, 36.392186], [139.074500916241, 36.3920519417878], [139.074629196004, 36.391669212523], [139.073151531312, 36.3897559741612], [139.073116, 36.389655], [139.073037129195, 36.389609831756], [139.072522610675, 36.3889532188468], [139.072610424826, 36.3873601599962], [139.072657, 36.387243], [139.072626168213, 36.3871810578609], [139.07276284414, 36.3843637518094], [139.072777071653, 36.3840128081844], [139.072740336865, 36.3838518751115], [139.072904, 36.383564], [139.072299792553, 36.3834730910698], [139.072271727735, 36.3838743791595], [139.072454973766, 36.383999251887], [139.072628734349, 36.3840465362867], [139.07255421517, 36.3855363732718], [139.072479113317, 36.387104688316], [139.072448, 36.387243], [139.072460106697, 36.3873452054921], [139.072410075618, 36.3882577198371], [139.072338939373, 36.3888588229485], [139.069835621234, 36.3900818956805], [139.06939, 36.390253], [139.069187693318, 36.3903830418832], [139.068377199266, 36.3907791902159], [139.067965771353, 36.3908675987508], [139.067578131806, 36.390897591411], [139.06706070058, 36.3909589670579], [139.066850089466, 36.3909487414533], [139.064589219742, 36.3906805536298], [139.064445, 36.390637], [139.064277501482, 36.3906487341135], [139.061863277926, 36.3904091951091], [139.061776049745, 36.3909039670579], [139.061748, 36.391019], [139.061734767336, 36.3914014780677], [139.061829694585, 36.3918212567325], [139.061708295114, 36.3924930820858], [139.060470044452, 36.3924510393823], [139.060161942591, 36.3925589931268], [139.059930223013, 36.3927669481482], [139.059811739545, 36.3928517204461], [139.059698620496, 36.3935374007438], [139.059544801712, 36.3943292071023], [139.059236696554, 36.3955671678543], [139.059136172741, 36.3960530236138], [139.058920779223, 36.3971161690065]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_07\\u664238\\u5206_\\u7cfb\\u7d71108", "times": [1747607880000, 1747607880000, 1747607880000, 1747607880000, 1747607880000, 1747607924816, 1747607945384, 1747607961925, 1747607969515, 1747608000000, 1747608060000, 1747608120000, 1747608180000, 1747608240000, 1747608300000, 1747608352462, 1747608360000, 1747608400362, 1747608428330, 1747608446450, 1747608473916, 1747608480000, 1747608483582, 1747608504678, 1747608525436, 1747608537542, 1747608540000, 1747608543221, 1747608570905, 1747608594033, 1747608598301, 1747608600000, 1747608603085, 1747608636718, 1747608648708, 1747608668932, 1747608716401, 1747608720000, 1747608725355, 1747608782534, 1747608827862, 1747608838005, 1747608840000, 1747608842720, 1747608868816, 1747608898407, 1747608900000, 1747608901616, 1747608919873, 1747608942505, 1747608958748, 1747608960000, 1747608962057, 1747608965760, 1747608977286, 1747608992185, 1747609000582, 1747609018427, 1747609020000, 1747609026266, 1747609062893, 1747609111603, 1747609136725, 1747609140000, 1747609142940, 1747609170938, 1747609174704, 1747609180747, 1747609190132, 1747609200000, 1747609201328, 1747609225684, 1747609241883, 1747609249699, 1747609259143, 1747609260000, 1747609261183, 1747609263678, 1747609279815, 1747609290957, 1747609298323, 1747609304658, 1747609311670, 1747609320000, 1747609327152, 1747609357897, 1747609377441, 1747609380000, 1747609395959, 1747609483922, 1747609604864, 1747609626123, 1747609650722, 1747609671618, 1747609822218, 1747609864516, 1747609877189, 1747609901213, 1747609908747, 1747609914020, 1747609920000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_07\\u664238\\u5206_\\u7cfb\\u7d71108", "popup": "\\u5e73\\u65e5_07\\u664238\\u5206_\\u7cfb\\u7d71108"}, "geometry": {"type": "LineString", "coordinates": [[139.072197, 36.383792], [139.072286188053, 36.3839648301134], [139.072593476414, 36.3840381832001], [139.072595030648, 36.3843418303382], [139.074836, 36.384465], [139.076554012153, 36.3845202229314], [139.07712827539, 36.3849578112592], [139.077568157668, 36.3853276938634], [139.077651927512, 36.3855531744472], [139.07881, 36.385421], [139.081566, 36.384963], [139.086358, 36.384166], [139.089288, 36.383677], [139.092342, 36.383141], [139.096668, 36.382404], [139.101322889328, 36.3816113572056], [139.102, 36.381536], [139.10422398856, 36.3811221669423], [139.105774384072, 36.3808704544357], [139.10675370022, 36.3806270752623], [139.108181532233, 36.3801332776599], [139.108513, 36.380059], [139.108790392031, 36.3798841145181], [139.110668753161, 36.3791783607915], [139.11254043174, 36.3785261382287], [139.113611644709, 36.3781095789406], [139.113845, 36.37806], [139.114116482017, 36.3779060303392], [139.11670224791, 36.3769379612674], [139.118854546865, 36.3761157027948], [139.119268733379, 36.3759973074122], [139.11944, 36.375969], [139.119662550844, 36.3758227130704], [139.12251592122, 36.3747894804846], [139.123537605104, 36.3744294074176], [139.125308835275, 36.373920041693], [139.129573359099, 36.3730041735722], [139.129906, 36.372976], [139.13028250331, 36.3728456063935], [139.134495128995, 36.3718958693428], [139.137839648862, 36.3711577776003], [139.138594749396, 36.3710141120425], [139.138747, 36.371006], [139.138906818183, 36.3709411270866], [139.140577484861, 36.3706260468028], [139.142490366489, 36.3703402853033], [139.142595, 36.370337], [139.142771998106, 36.3702866182721], [139.14485514164, 36.3699722144767], [139.147436826183, 36.3695800604079], [139.149290116539, 36.3693002122896], [139.149435, 36.369309], [139.149674138369, 36.3692395030234], [139.150126495525, 36.3691853612244], [139.15153990624, 36.3690503612244], [139.153377802418, 36.3689825803834], [139.1544041556, 36.3688630242151], [139.156604966463, 36.3687734385844], [139.156753, 36.368875], [139.156941175461, 36.3687661605003], [139.15829044069, 36.368694326248], [139.160086590167, 36.3686238529536], [139.161013818348, 36.3686079358275], [139.161131, 36.368632], [139.161377549171, 36.3685702139116], [139.163830957249, 36.3684522553485], [139.164160048534, 36.3684776991803], [139.16468622909, 36.3685324625331], [139.165484827641, 36.3686961310377], [139.166322, 36.368876], [139.166477008874, 36.3688760417033], [139.169241786003, 36.3694084068859], [139.171078166308, 36.3697705609547], [139.171966676897, 36.3699369782593], [139.173035829021, 36.3701529512409], [139.173127, 36.370186], [139.173340084316, 36.3701982155703], [139.173773666998, 36.3702964648556], [139.176612615417, 36.3708228795817], [139.178567129321, 36.3712057090338], [139.179862284099, 36.3714488005436], [139.180927237151, 36.3717852381017], [139.182107759645, 36.372154188365], [139.183507, 36.372599], [139.183884895908, 36.3727089417398], [139.18549492303, 36.3732124175423], [139.186517311265, 36.3735347668238], [139.186645, 36.373588], [139.186901450157, 36.3736582185663], [139.188292701487, 36.3740946489411], [139.19021083113, 36.3746836581227], [139.190545056005, 36.3747932572535], [139.190941089739, 36.374899662279], [139.191282546752, 36.3749767261795], [139.193832050062, 36.3751113007592], [139.193835427061, 36.3756915775448], [139.193749596372, 36.3758509821312], [139.193433212111, 36.3760587679382], [139.19348359108, 36.3761537479306], [139.193561258409, 36.3761178333216], [139.193544, 36.376037]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_07\\u664240\\u5206_\\u7cfb\\u7d71237", "times": [1747608000000, 1747608002424, 1747608005361, 1747608057805, 1747608060000, 1747608062315, 1747608098874, 1747608118340, 1747608120000, 1747608122061, 1747608144370, 1747608169725, 1747608178194, 1747608180000, 1747608180000, 1747608180000, 1747608180000, 1747608182805, 1747608235475, 1747608240000, 1747608242548, 1747608274278, 1747608297900, 1747608300000, 1747608300000, 1747608300000, 1747608300000, 1747608302900, 1747608312768, 1747608316642, 1747608325006, 1747608334386, 1747608360000, 1747608361954, 1747608373080, 1747608379384, 1747608404801, 1747608418711, 1747608420000, 1747608420000, 1747608420000, 1747608420000, 1747608422428, 1747608433218, 1747608456014, 1747608474232, 1747608476470, 1747608480000, 1747608485203, 1747608489856, 1747608530427, 1747608570860, 1747608595186, 1747608600000, 1747608602208, 1747608658172, 1747608660000, 1747608661436, 1747608676334, 1747608683546, 1747608687184, 1747608691849, 1747608698809, 1747608703950, 1747608712280, 1747608718402, 1747608720000, 1747608723712, 1747608754156, 1747608759123, 1747608777256, 1747608780000, 1747608782614, 1747608790141, 1747608797392, 1747608804354, 1747608811480, 1747608818014, 1747608824309, 1747608850951, 1747608857202, 1747608861682, 1747608881346, 1747608884826, 1747608886735, 1747608889412, 1747608891284, 1747608893192, 1747608895063, 1747608896436, 1747608900000, 1747608903221, 1747608924588, 1747608969310, 1747608987367, 1747609020000, 1747609022620, 1747609025127, 1747609027171, 1747609030255, 1747609033704, 1747609037922, 1747609044335, 1747609050125, 1747609056177, 1747609064902, 1747609071098, 1747609079127, 1747609080000, 1747609080000, 1747609080000, 1747609080000, 1747609080000, 1747609080000, 1747609080000, 1747609080000, 1747609080000, 1747609081432, 1747609092659, 1747609098638, 1747609109751, 1747609119415, 1747609126862, 1747609137722, 1747609140000, 1747609143253, 1747609146092, 1747609147956, 1747609156984, 1747609162253, 1747609166453, 1747609168721, 1747609171987, 1747609176623, 1747609186253, 1747609194452, 1747609198754, 1747609200000, 1747609206316, 1747609213401, 1747609217900, 1747609222834, 1747609235813, 1747609243629, 1747609260000, 1747609261935, 1747609318186, 1747609320000, 1747609320000, 1747609320000, 1747609320000, 1747609320000, 1747609321804, 1747609356131, 1747609378317, 1747609380000, 1747609384008, 1747609436857, 1747609440000, 1747609441094, 1747609446169, 1747609447192, 1747609457193, 1747609460215, 1747609463652, 1747609466441, 1747609476178, 1747609479498, 1747609484256, 1747609488816, 1747609492569, 1747609498901, 1747609500000, 1747609501842, 1747609542594, 1747609549651, 1747609556080, 1747609560000, 1747609589544, 1747609943235], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_07\\u664240\\u5206_\\u7cfb\\u7d71237", "popup": "\\u5e73\\u65e5_07\\u664240\\u5206_\\u7cfb\\u7d71237"}, "geometry": {"type": "LineString", "coordinates": [[139.072342, 36.384085], [139.072460425486, 36.38398089795], [139.072648034613, 36.3840606725959], [139.07248016292, 36.3871176437477], [139.072448, 36.387243], [139.072467684746, 36.3873415230417], [139.072445526679, 36.3889175063718], [139.072959345463, 36.3896466520092], [139.072981, 36.389716], [139.073086692025, 36.389768026693], [139.073778467827, 36.3906951097604], [139.074604706585, 36.3917285329458], [139.074409604073, 36.3921080798945], [139.07436, 36.392186], [139.074368787934, 36.3922530820858], [139.073835611343, 36.3934378556375], [139.073759, 36.393524], [139.073766807109, 36.3935917175436], [139.073229432106, 36.3947921550034], [139.073142, 36.394876], [139.07315281438, 36.3949730549069], [139.072672932761, 36.3961227632447], [139.072280979718, 36.3969686625439], [139.072225, 36.397035], [139.072159463844, 36.3974268197045], [139.072125061727, 36.3987815067711], [139.072096, 36.398861], [139.072114332891, 36.3989819358238], [139.072150484347, 36.3993953243097], [139.072191650352, 36.3995546170266], [139.072283311729, 36.3998979945715], [139.072492990303, 36.4002536433234], [139.073057, 36.401228], [139.073171936743, 36.4013497629632], [139.073653570998, 36.4021296768209], [139.074248205261, 36.402015965429], [139.076707446006, 36.4021330234561], [139.076881201314, 36.4010522011026], [139.076919, 36.400956], [139.076924466525, 36.400815407644], [139.07711828531, 36.3994373541812], [139.077166, 36.399347], [139.077168313751, 36.3992328201289], [139.077225339546, 36.3987276038782], [139.078544637173, 36.3988335391606], [139.079602710593, 36.3988789962554], [139.07960212726, 36.3987737642027], [139.079805, 36.398799], [139.079968307157, 36.398796267708], [139.079951397105, 36.3989135391606], [139.081223578998, 36.3989598894133], [139.082489467228, 36.3990330680449], [139.083251214589, 36.3990755645396], [139.083399, 36.399101], [139.083533428219, 36.3990860146238], [139.086963041998, 36.3992898667236], [139.087074, 36.399304], [139.087190096234, 36.3992891761638], [139.088405953385, 36.3993623290964], [139.088993124684, 36.3994109814231], [139.089265077068, 36.3995089348284], [139.089562102203, 36.3997027866825], [139.089988340301, 36.4000082191838], [139.090333412394, 36.4002027448746], [139.090958833694, 36.4004220351964], [139.091416558565, 36.4005867915887], [139.091524, 36.400647], [139.091683146531, 36.4007124641357], [139.093038012941, 36.4011613043734], [139.093263667047, 36.4012246865336], [139.094135268903, 36.4012494526386], [139.094265, 36.401269], [139.094389962027, 36.4012494526386], [139.094756491792, 36.4012508074452], [139.095074042059, 36.4013755732431], [139.095376667715, 36.4014989848486], [139.09567544021, 36.4016416256225], [139.095896081085, 36.4018268936301], [139.096060278178, 36.4020361338624], [139.096596954106, 36.4029908614944], [139.096688382018, 36.4032255760972], [139.096735031482, 36.4033978341523], [139.0958113, 36.4036014569724], [139.095658297354, 36.4035425984149], [139.095592291401, 36.403595526069], [139.095558821166, 36.4036973626774], [139.095641970634, 36.4037275596347], [139.095730366799, 36.4037507489616], [139.095778530159, 36.4036882420786], [139.095817946826, 36.4036446069664], [139.095987, 36.403613], [139.096083485189, 36.4035813763413], [139.096744009661, 36.403418423673], [139.097024591015, 36.4045646921983], [139.097109372101, 36.4050314572126], [139.097387, 36.405854], [139.097505872765, 36.4060394617547], [139.097573161125, 36.4062316985509], [139.097613977263, 36.4063912215485], [139.097596600941, 36.4066366162088], [139.097570828454, 36.4069106951409], [139.097645114168, 36.4072415290148], [139.097902723296, 36.4077082661984], [139.098142139304, 36.4081271945278], [139.098315550019, 36.4085887427382], [139.098482546714, 36.4092709147746], [139.098554499757, 36.4097612536504], [139.098659922376, 36.4103954463545], [139.098658, 36.410465], [139.098747385341, 36.410900116675], [139.098827384682, 36.4113145223217], [139.099040795397, 36.4119103089559], [139.099304585081, 36.4125422414548], [139.099926042094, 36.4129913879014], [139.100573271594, 36.4136045339731], [139.10088440652, 36.4141497183992], [139.100933, 36.414238], [139.100999624775, 36.4142866896079], [139.101316825175, 36.4147947803242], [139.101507378088, 36.4150557641766], [139.102010351634, 36.4154457096198], [139.102466909839, 36.4157678951836], [139.102769534177, 36.4160553522391], [139.102749824524, 36.4166056167871], [139.102708, 36.416716], [139.102719970027, 36.4170036694144], [139.102711106932, 36.4172546981187], [139.10279962016, 36.4174032717946], [139.103410931669, 36.4180306668609], [139.103784690933, 36.4183856351632], [139.104096526914, 36.4186586167686], [139.104246031544, 36.418818771407], [139.10432719623, 36.4191000975944], [139.104432852315, 36.4195012800126], [139.104858741205, 36.4202804659738], [139.105170693588, 36.4209605296945], [139.105153433669, 36.4213408253961], [139.105117, 36.421447], [139.105094541473, 36.4217393523831], [139.105096290812, 36.4220679147566], [139.10516847732, 36.4222682406235], [139.105292208802, 36.4224740322452], [139.105730342402, 36.4229607201741], [139.105973023622, 36.423265536484], [139.106201, 36.424002], [139.106261302725, 36.4240777152423], [139.106849989237, 36.4266507451235], [139.106855, 36.426735], [139.106902933682, 36.426811132795], [139.107051038181, 36.4275303679175], [139.107134303393, 36.4276893860327], [139.107134, 36.427779], [139.107199376144, 36.4278429342774], [139.107843106308, 36.4293324912873], [139.10827086028, 36.4302918279725], [139.108277, 36.430369], [139.108339897979, 36.4304705803127], [139.109001820602, 36.4318694534052], [139.109022, 36.431957], [139.109078787536, 36.4320264577939], [139.109260828541, 36.4323834621826], [139.109357038198, 36.4323807956349], [139.109825724711, 36.4317208433077], [139.110021292174, 36.4315538645255], [139.110341292834, 36.4315152800346], [139.110594819952, 36.4315707518709], [139.111278317969, 36.432064383912], [139.111560648003, 36.4321727306531], [139.11200601308, 36.4322116699372], [139.112413940997, 36.4321036267758], [139.112682744571, 36.4319182500394], [139.113038778305, 36.4315318601369], [139.113126, 36.431487], [139.11316262619, 36.4314069552368], [139.114561923817, 36.4298955341143], [139.114903846441, 36.4297209441865], [139.115257665225, 36.4296377379064], [139.115481, 36.429618], [139.115649850415, 36.4295848791702], [139.117683318013, 36.4292310787271]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_07\\u664243\\u5206_\\u7cfb\\u7d71119", "times": [1747608180000, 1747608180000, 1747608180000, 1747608180000, 1747608182502, 1747608194216, 1747608209706, 1747608225989, 1747608236848, 1747608240000, 1747608240000, 1747608240000, 1747608240000, 1747608240000, 1747608244475, 1747608295702, 1747608300000, 1747608302219, 1747608322627, 1747608328126, 1747608333745, 1747608348619, 1747608357858, 1747608360000, 1747608362009, 1747608367675, 1747608394646, 1747608417504, 1747608420000, 1747608422401, 1747608430355, 1747608441962, 1747608452119, 1747608468579, 1747608474362, 1747608475858, 1747608477899, 1747608480000, 1747608481221, 1747608489781, 1747608498508, 1747608505813, 1747608511173, 1747608517291, 1747608538182, 1747608540000, 1747608541735, 1747608574222, 1747608597903, 1747608600000, 1747608602138, 1747608644237, 1747608645399, 1747608657356, 1747608660000, 1747608661790, 1747608665291, 1747608671125, 1747608692253, 1747608701216, 1747608725224, 1747608741731, 1747608768180, 1747608778287, 1747608780000, 1747608780884, 1747608790655, 1747608815222, 1747608836571, 1747608838993, 1747608840000, 1747608841035, 1747608865724, 1747608885811, 1747608897988, 1747608900000, 1747608907433, 1747608976564, 1747609046854, 1747609058489, 1747609070313, 1747609076234, 1747609080000, 1747609080000, 1747609080000, 1747609080000, 1747609080000, 1747609080000, 1747609080000, 1747609080000, 1747609080000, 1747609080000, 1747609081806, 1747609095490, 1747609111434, 1747609116366, 1747609122213, 1747609138620, 1747609140000, 1747609141970, 1747609187040, 1747609194469, 1747609257534, 1747609260000, 1747609261468, 1747609289485, 1747609305442, 1747609313576, 1747609317789, 1747609320000, 1747609323588, 1747609377076, 1747609380000, 1747609384854, 1747609410365, 1747609417633, 1747609435228, 1747609440000, 1747609442604, 1747609497788, 1747609500000, 1747609507827, 1747609602882, 1747609614103, 1747609672725, 1747609680000, 1747609682405, 1747609690566, 1747609725103, 1747609744690, 1747609773129, 1747609797435, 1747609800000, 1747609820591, 1747609971111, 1747610013511, 1747610040455, 1747610100000, 1747610106712, 1747610112141, 1747610114758, 1747610116761, 1747610136901, 1747610158101, 1747610160000, 1747610161405, 1747610173907, 1747610182172, 1747610214540, 1747610220000, 1747610228957, 1747610261781, 1747610276535, 1747610290031, 1747610308156, 1747610315468, 1747610394664, 1747610400000, 1747610408997, 1747610539160, 1747610572239, 1747610580000, 1747610600704, 1747610623795, 1747610660533, 1747610714751, 1747610729442, 1747610744587, 1747610751508, 1747610788940, 1747610832310, 1747610900639, 1747610927294, 1747610985588, 1747611000000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_07\\u664243\\u5206_\\u7cfb\\u7d71119", "popup": "\\u5e73\\u65e5_07\\u664243\\u5206_\\u7cfb\\u7d71119"}, "geometry": {"type": "LineString", "coordinates": [[139.093469, 36.329018], [139.093340985167, 36.3290530238325], [139.090807580387, 36.3292199626756], [139.090669, 36.329204], [139.090540758956, 36.329223606137], [139.089932130645, 36.3292668234438], [139.089124666361, 36.3292452147904], [139.088286070448, 36.3291367453688], [139.087733651793, 36.3290357369098], [139.087585, 36.328979], [139.087428346895, 36.3289998846007], [139.086644557871, 36.3288919795936], [139.086321061173, 36.3299685460852], [139.086254, 36.330059], [139.086229166331, 36.3301971679133], [139.085768176248, 36.3317513438277], [139.085691, 36.33187], [139.085692490403, 36.332010208995], [139.085308349533, 36.3332616111747], [139.085737739078, 36.3332598077818], [139.08617633697, 36.3332709870895], [139.087328872027, 36.3333874167937], [139.08804303936, 36.333469953131], [139.088202, 36.333512], [139.088361755633, 36.3335038464979], [139.088810266881, 36.3335440968944], [139.090954518879, 36.3336484910542], [139.092772006989, 36.3337335637288], [139.092965, 36.333772], [139.093164424983, 36.3337554942259], [139.093827978564, 36.3337779944471], [139.094794041399, 36.3338394229239], [139.095639871428, 36.3338877801668], [139.097004653173, 36.3340179944471], [139.096893279506, 36.3343981370961], [139.096892229903, 36.3344991369636], [139.09685071403, 36.3346328511358], [139.09679, 36.334766], [139.096788440219, 36.3348521365662], [139.096628440879, 36.3354418801682], [139.096463193523, 36.3360427990889], [139.096327683602, 36.3365462875786], [139.096172581749, 36.3369029194732], [139.095920920372, 36.3372834426481], [139.095038590339, 36.3385725267231], [139.094945, 36.338676], [139.094908794703, 36.3387719797491], [139.093799059906, 36.3404219776188], [139.092972589662, 36.3416168754602], [139.09289, 36.341718], [139.092839178946, 36.3418353950332], [139.09138402219, 36.3439831582059], [139.091324780126, 36.34403087472], [139.090916384621, 36.344643021041], [139.090793, 36.34476], [139.090772828402, 36.344871220346], [139.09063731848, 36.3450616412636], [139.090440700754, 36.3453915112376], [139.089907757628, 36.3466457088437], [139.089700994399, 36.3471828401887], [139.089113473892, 36.348612983835], [139.088716506958, 36.3495980840402], [139.088045604837, 36.3511671193998], [139.087799541343, 36.3517694630865], [139.087719, 36.351855], [139.087734002321, 36.3519386895964], [139.087384381948, 36.3528291357286], [139.086592897154, 36.3550893546806], [139.085906251646, 36.3570536981394], [139.085814356804, 36.3572731056224], [139.085772, 36.357363], [139.085769225851, 36.3574279935823], [139.08523604926, 36.35891814756], [139.084799315791, 36.36012983825], [139.084496459307, 36.3608546746923], [139.084414, 36.360962], [139.084385555867, 36.3610897525255], [139.083885265519, 36.3622270494804], [139.083368415647, 36.363381053379], [139.083126783371, 36.3633255143926], [139.083045188797, 36.3635211563914], [139.083172497657, 36.363530486028], [139.083218, 36.363476], [139.083247483106, 36.3633734817274], [139.083349524111, 36.3634157610394], [139.083208649772, 36.3637167518245], [139.083022877285, 36.3641149843554], [139.082754889188, 36.3644505656826], [139.082457864053, 36.3647568621082], [139.081973667619, 36.3650961134748], [139.08166917754, 36.3652620317061], [139.081544, 36.365282], [139.081443405713, 36.3653997863997], [139.080344048565, 36.3660205672377], [139.079069065753, 36.3667507661141], [139.078629651724, 36.3669134751788], [139.078063121959, 36.3669823841368], [139.07645554391, 36.3669642198625], [139.076325, 36.366936], [139.076239104086, 36.3669553430683], [139.074200508831, 36.3669246627121], [139.073864526705, 36.366917891314], [139.073649955918, 36.3692187930818], [139.07361, 36.369303], [139.073639926818, 36.3693986431033], [139.073494737663, 36.3712770969986], [139.073404942028, 36.3723465165336], [139.073350248244, 36.3728911947818], [139.073289490307, 36.3731699055123], [139.073219, 36.373307], [139.073200044539, 36.3734283813148], [139.072713398372, 36.3752090241486], [139.072676, 36.375304], [139.072650774694, 36.3754036200868], [139.072521328926, 36.375927599253], [139.072450192021, 36.3760685342994], [139.07242651874, 36.3764365716041], [139.072386, 36.376531], [139.07242150419, 36.3766434407146], [139.072286344136, 36.3790993655748], [139.072257, 36.379195], [139.072281329586, 36.3793132699209], [139.072210776013, 36.3807680983048], [139.072165527998, 36.3809360256327], [139.072120746912, 36.3818332099839], [139.072091, 36.381942], [139.072112117282, 36.3820330182553], [139.072095324293, 36.3823469138213], [139.070451009478, 36.382346259113], [139.070287280633, 36.3830886063431], [139.070195502194, 36.3841809525908], [139.071347920848, 36.3842662465333], [139.071458, 36.384309], [139.071615908285, 36.3842916866896], [139.072779755511, 36.3843303029085], [139.072788500225, 36.3840650828303], [139.072720395066, 36.3839057325126], [139.072904, 36.383564], [139.072299792553, 36.3834730910698], [139.072271727735, 36.3838743791595], [139.072454973766, 36.383999251887], [139.072628734349, 36.3840465362867], [139.07255421517, 36.3855363732718], [139.072479113317, 36.387104688316], [139.072448, 36.387243], [139.072460106697, 36.3873452054921], [139.072410075618, 36.3882577198371], [139.072338939373, 36.3888588229485], [139.069835621234, 36.3900818956805], [139.06939, 36.390253], [139.069187693318, 36.3903830418832], [139.068377199266, 36.3907791902159], [139.067965771353, 36.3908675987508], [139.067578131806, 36.390897591411], [139.06706070058, 36.3909589670579], [139.066850089466, 36.3909487414533], [139.064589219742, 36.3906805536298], [139.064445, 36.390637], [139.064277501482, 36.3906487341135], [139.061863277926, 36.3904091951091], [139.061776049745, 36.3909039670579], [139.061748, 36.391019], [139.061734767336, 36.3914014780677], [139.061829694585, 36.3918212567325], [139.061708295114, 36.3924930820858], [139.060470044452, 36.3924510393823], [139.060161942591, 36.3925589931268], [139.059930223013, 36.3927669481482], [139.059811739545, 36.3928517204461], [139.059698620496, 36.3935374007438], [139.059544801712, 36.3943292071023], [139.059236696554, 36.3955671678543], [139.059136172741, 36.3960530236138], [139.058920779223, 36.3971161690065], [139.059219, 36.397003]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_07\\u664258\\u5206_\\u7cfb\\u7d71121", "times": [1747609080000, 1747609083171, 1747609096174, 1747609108579, 1747609111221, 1747609114509, 1747609123745, 1747609130840, 1747609134057, 1747609140000, 1747609152910, 1747609189150, 1747609200000, 1747609200000, 1747609200000, 1747609200000, 1747609221659, 1747609240638, 1747609261236, 1747609276339, 1747609308177, 1747609320000, 1747609327961, 1747609355067, 1747609377757, 1747609380000, 1747609418625, 1747609756635, 1747609779965, 1747609813811, 1747609849509, 1747609882357, 1747609927507, 1747609946472, 1747609980000, 1747609980000, 1747609980000, 1747609980000, 1747609980000, 1747609980000, 1747609986585, 1747609990921, 1747610019238, 1747610044491, 1747610086356, 1747610096640, 1747610100000, 1747610103113, 1747610117486, 1747610158775, 1747610160000, 1747610160000, 1747610160000, 1747610160000, 1747610163215, 1747610180850, 1747610186067, 1747610217284, 1747610220000, 1747610224557, 1747610250771, 1747610280000, 1747610286683, 1747610334193, 1747610340000, 1747610343522, 1747610364627, 1747610370938, 1747610397136, 1747610400000, 1747610407312, 1747610414974, 1747610420160, 1747610425626, 1747610428337, 1747610433711, 1747610458331, 1747610460000, 1747610470210, 1747610537494, 1747610577106, 1747610621168, 1747610651580, 1747610706362, 1747610724663, 1747610747140, 1747610760000, 1747610760000, 1747610760000, 1747610760000, 1747610760000, 1747610778230, 1747610787906, 1747610795852, 1747610817647, 1747610820000, 1747610823518, 1747610830578, 1747610853344, 1747610875650, 1747610879549, 1747610880000, 1747610881297, 1747610885519, 1747610896575, 1747610909842, 1747610927233, 1747610940067, 1747610958638, 1747610964490, 1747610969395, 1747610980275, 1747610983385, 1747610989319, 1747610999120, 1747611000000, 1747611002493, 1747611040064, 1747611058480, 1747611060000, 1747611061098, 1747611085820, 1747611109617, 1747611118851, 1747611120000, 1747611121489, 1747611142753, 1747611146510, 1747611150085, 1747611156087, 1747611174468, 1747611180000, 1747611182267, 1747611189512, 1747611201464, 1747611211701, 1747611238635, 1747611240000, 1747611243561, 1747611295909, 1747611300000, 1747611303236, 1747611324198, 1747611340775, 1747611353976, 1747611364433, 1747611375591, 1747611417478, 1747611420000, 1747611422801, 1747611432567, 1747611476709, 1747611480000, 1747611484732, 1747611520148, 1747611525186, 1747611533376, 1747611537015, 1747611540000, 1747611540000, 1747611540000, 1747611540000, 1747611540000, 1747611540000, 1747611540000, 1747611540000, 1747611542667, 1747611565671, 1747611587409, 1747611591674, 1747611598195, 1747611600000, 1747611601595, 1747611608832, 1747611624583, 1747611636505, 1747611654630, 1747611657293, 1747611660000, 1747611660784, 1747611663029, 1747611674772, 1747611689290, 1747611696325, 1747611697046, 1747611703396, 1747611710619, 1747611719315, 1747611720000, 1747611721168, 1747611734962, 1747611778776, 1747611780000, 1747611782517, 1747611810804, 1747611828141, 1747611849639, 1747611870754, 1747611878607, 1747611887353, 1747611897823, 1747611900000, 1747611901559, 1747611905965, 1747611930394, 1747611939820, 1747611948131, 1747611960000, 1747611979296, 1747611991605, 1747612003371, 1747612036286, 1747612077143, 1747612080000, 1747612082095, 1747612090024, 1747612095232, 1747612138127, 1747612140000, 1747612156643, 1747612320936, 1747612348479, 1747612365112, 1747612380000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_07\\u664258\\u5206_\\u7cfb\\u7d71121", "popup": "\\u5e73\\u65e5_07\\u664258\\u5206_\\u7cfb\\u7d71121"}, "geometry": {"type": "LineString", "coordinates": [[139.059257, 36.395815], [139.059270672081, 36.3954753068441], [139.059596227646, 36.3941070167822], [139.059887268648, 36.3927986834488], [139.060138112568, 36.3926011050108], [139.060545344046, 36.3924756581939], [139.061768316273, 36.3925195908254], [139.061910937972, 36.3917680748688], [139.061765787179, 36.3914439755871], [139.061917, 36.390819], [139.061943590092, 36.3904756280848], [139.063123180044, 36.3906275944005], [139.06347, 36.390698], [139.065312095406, 36.3908819951024], [139.066081072925, 36.390957601485], [139.066303, 36.391013], [139.067029407592, 36.3910312326963], [139.067661710503, 36.3909700234733], [139.068333039874, 36.3908371404991], [139.068796673475, 36.3906716865977], [139.069706098084, 36.3902184986611], [139.070069, 36.390089], [139.070587067668, 36.3897766469739], [139.072480785933, 36.388871115803], [139.072613729059, 36.3873859244999], [139.072657, 36.387243], [139.072621815037, 36.3869571255136], [139.072755613981, 36.3844454008148], [139.072777578263, 36.3842727816293], [139.072766226414, 36.3840212126052], [139.072667256837, 36.3837680460509], [139.072831571652, 36.3835630065444], [139.072425546519, 36.3834923880745], [139.072265702602, 36.3835488963651], [139.072197, 36.383792], [139.072289027334, 36.3839720323823], [139.07261291424, 36.3840619674873], [139.072583486993, 36.3842736440307], [139.070979447301, 36.3842186539073], [139.070716, 36.384125], [139.070444676136, 36.3841687811798], [139.070263374547, 36.3841542420104], [139.070314567675, 36.3831931748125], [139.070494705237, 36.3823477374193], [139.072253111322, 36.3823799243851], [139.072279230379, 36.3820311928442], [139.072316, 36.381921], [139.072275226411, 36.3817295447412], [139.072335673501, 36.3808339675651], [139.072468034613, 36.3782596753776], [139.072488, 36.378185], [139.072481678794, 36.3780634928244], [139.07254694599, 36.376863266178], [139.072584, 36.376742], [139.072534973106, 36.3766400161632], [139.072568520065, 36.3760406020472], [139.072562805779, 36.3758631600947], [139.072847158955, 36.3748262148956], [139.072906, 36.374747], [139.072895788585, 36.3746384463335], [139.073070365306, 36.3740283750264], [139.073303, 36.373356], [139.073406341498, 36.3729142209198], [139.073640198644, 36.369723555249], [139.073718, 36.369338], [139.073722530656, 36.3690647723321], [139.073834211873, 36.3674300564334], [139.07388400553, 36.3669420968556], [139.076396498929, 36.3669764915005], [139.076668, 36.36701], [139.077320422218, 36.3669838126897], [139.078004774075, 36.3669965027487], [139.078466037303, 36.3669617344164], [139.078932856097, 36.3668456592953], [139.079146385193, 36.3667532323924], [139.079521894455, 36.366511334058], [139.081311282022, 36.365477083046], [139.081448, 36.365429], [139.08153961537, 36.3653486637464], [139.082263579657, 36.3649294065477], [139.082627542627, 36.3646242749457], [139.082952595538, 36.3642327383123], [139.083145558504, 36.3639470832035], [139.083372147789, 36.3633901170829], [139.083141010884, 36.3633316075762], [139.083092497657, 36.3635689583984], [139.083218, 36.363476], [139.083241807182, 36.3633803427552], [139.083356792632, 36.3634468377844], [139.083884215916, 36.3622411256014], [139.084388, 36.361156], [139.084850394494, 36.3600189127137], [139.085082812489, 36.3594119880879], [139.085242774128, 36.3589065435092], [139.085745824396, 36.3575345916174], [139.085825, 36.357394], [139.085884210641, 36.3571436319018], [139.086046115403, 36.3566492011493], [139.086611245037, 36.3550643536985], [139.087178784725, 36.3535148629043], [139.087270563164, 36.3532423387193], [139.0873, 36.35322], [139.087307880625, 36.3531142808382], [139.087429746366, 36.3527841357286], [139.087773535391, 36.3519256785506], [139.088182630632, 36.3508947352456], [139.088744028784, 36.3495499832363], [139.089151141221, 36.3485556475598], [139.089753355511, 36.3471203681178], [139.089928865433, 36.3466643503411], [139.090084899826, 36.3462844261661], [139.090432187527, 36.3454420604015], [139.090559417686, 36.3452100950355], [139.090850495731, 36.3447868403018], [139.091333876686, 36.3440890148523], [139.091415, 36.34406], [139.091438482508, 36.3439540834348], [139.092386818493, 36.3425254579724], [139.092868916381, 36.3418329259698], [139.092928, 36.341788], [139.092932939529, 36.3417212591254], [139.09382879734, 36.3404033353848], [139.094687104225, 36.3391329222661], [139.095030426979, 36.3386446291119], [139.09509, 36.338594], [139.095132350922, 36.3384977090478], [139.095973049338, 36.3372074010796], [139.096123602251, 36.3369802733018], [139.096258295375, 36.3367605402556], [139.096382260323, 36.3363612621896], [139.096736428315, 36.3351333150762], [139.096854, 36.334766], [139.096885466014, 36.3345809940497], [139.09703800305, 36.333997243884], [139.095829725266, 36.3338825297703], [139.094792526845, 36.333801600859], [139.092055040714, 36.3336814555098], [139.091925, 36.333642], [139.091703788065, 36.3336482406577], [139.088456915686, 36.3334810597641], [139.088212, 36.333426], [139.08809073579, 36.3334453085747], [139.087298084989, 36.3333550581783], [139.086672780751, 36.3332754862966], [139.0861705076, 36.3332409144149], [139.08577144146, 36.3332299855036], [139.085346946765, 36.3331999855036], [139.085750333655, 36.3319476719826], [139.085804, 36.331883], [139.085790799926, 36.3318132023866], [139.085866601513, 36.3315748367849], [139.086183801913, 36.3304923980879], [139.086238, 36.330422], [139.086270448739, 36.3302430979292], [139.086667065146, 36.3289286658311], [139.086904383267, 36.3289418413337], [139.087282224541, 36.3290084499871], [139.087450854171, 36.3290350586405], [139.087585, 36.32907], [139.08773306912, 36.3290762411393], [139.088250502325, 36.3291514932541], [139.088932716615, 36.3292469974836], [139.089468691488, 36.3292791103665], [139.089903791362, 36.3292870755585], [139.090538426944, 36.3292657190199], [139.090669, 36.329269], [139.090830668357, 36.329236571329], [139.09226203543, 36.3291376757529], [139.093617719296, 36.3290801367154], [139.093883374062, 36.3290648846007], [139.094290487159, 36.3290725976779], [139.094398, 36.3291], [139.094567687558, 36.3290693803712], [139.095356371433, 36.3290824236381], [139.097071354245, 36.3291483540222], [139.098368968648, 36.3292043982611], [139.098778288781, 36.3276404850624], [139.098883594998, 36.3274216826283], [139.099082, 36.327245], [139.09918411881, 36.3271534765226], [139.099533855585, 36.326942636826], [139.101453268956, 36.325944956186], [139.103828423075, 36.3247144812685], [139.104969525604, 36.3241060182376], [139.105076932346, 36.3240333058024], [139.106110048757, 36.3234879670875], [139.107296052072, 36.3228813564136], [139.108715757108, 36.3221404984968], [139.108835, 36.322093], [139.108950741899, 36.3220099029378], [139.110473187016, 36.3211943738941], [139.115354807423, 36.3186608691748], [139.115486, 36.318584], [139.115593990626, 36.3185045892717], [139.116905707566, 36.3177082532001], [139.117724946992, 36.3172371855937], [139.118723778349, 36.3166340815843], [139.119705350445, 36.3160423254619], [139.120081209575, 36.3158344523353], [139.120452755209, 36.315555292863], [139.120462433123, 36.3150642123102], [139.120497, 36.314966], [139.12042231672, 36.3148496029091], [139.120423017115, 36.3144790291636], [139.120546634832, 36.3124269863271], [139.120568790262, 36.311634499075], [139.120520393437, 36.3109366134349], [139.119288, 36.3109], [139.118136141439, 36.3109482065688], [139.117402614321, 36.3109937405288], [139.116702441036, 36.3110470692902], [139.116744891428, 36.3094551776963], [139.116786407302, 36.3074789505127], [139.116823, 36.307344], [139.116798885476, 36.3072282203071], [139.116800984682, 36.3067838933955], [139.116777777672, 36.3064926404303], [139.116696261798, 36.3040897065262], [139.116705, 36.303985], [139.116693230051, 36.3038802746306], [139.115411015761, 36.3038995977725], [139.115417078596, 36.3040735497993], [139.115546759807, 36.3040786589211], [139.115536, 36.303985]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_08\\u664200\\u5206_\\u7cfb\\u7d71123", "times": [1747609200000, 1747609201775, 1747609220821, 1747609241867, 1747609258057, 1747609260000, 1747609260000, 1747609260000, 1747609260000, 1747609262076, 1747609316931, 1747609320000, 1747609320000, 1747609320000, 1747609320000, 1747609321188, 1747609332171, 1747609354593, 1747609378437, 1747609380000, 1747609381799, 1747609412947, 1747609428650, 1747609438878, 1747609440000, 1747609441022, 1747609456927, 1747609465407, 1747609491222, 1747609499275, 1747609500000, 1747609500906, 1747609526022, 1747609548623, 1747609560000, 1747609560000, 1747609560000, 1747609562086, 1747609566979, 1747609616343, 1747609620000, 1747609628113, 1747609676810, 1747609680000, 1747609681566, 1747609685269, 1747609728829, 1747609738778, 1747609740000, 1747609741404, 1747609750329, 1747609756759, 1747609759917, 1747609762390, 1747609769174, 1747609798114, 1747609800000, 1747609802257, 1747609816533, 1747609831381, 1747609857972, 1747609860000, 1747609861581, 1747609868509, 1747609872012, 1747609880778, 1747609889757, 1747609897132, 1747609900643, 1747609906556, 1747609914584, 1747609918714, 1747609920000, 1747609920663, 1747609922135, 1747609929775, 1747609931270, 1747609932564, 1747609934897, 1747609937000, 1747609943703, 1747609946506, 1747609948376, 1747609955682, 1747609959447, 1747609965449, 1747609971470, 1747609977785, 1747609980000, 1747609981491, 1747609989851, 1747609999205, 1747610006756, 1747610011063, 1747610015305, 1747610038314, 1747610040000, 1747610041019, 1747610056936, 1747610061957, 1747610065370, 1747610069227, 1747610072406, 1747610083867, 1747610098838, 1747610100000, 1747610101605, 1747610104875, 1747610110477, 1747610118123, 1747610133926, 1747610148221, 1747610157624, 1747610160000, 1747610174425, 1747610545007, 1747610582912, 1747610631105, 1747610662504, 1747610678789], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_08\\u664200\\u5206_\\u7cfb\\u7d71123", "popup": "\\u5e73\\u65e5_08\\u664200\\u5206_\\u7cfb\\u7d71123"}, "geometry": {"type": "LineString", "coordinates": [[139.115536, 36.303985], [139.11554827634, 36.3039003183803], [139.116677955573, 36.3038923927042], [139.116675853729, 36.3028818908447], [139.115716088512, 36.3029085719264], [139.115604, 36.302887], [139.115447402, 36.3029174580902], [139.112341403961, 36.3029936594257], [139.112202, 36.302983], [139.112112483324, 36.3030045982771], [139.109646366904, 36.303067152838], [139.10951, 36.30305], [139.109354122854, 36.3030780916894], [139.107298032237, 36.3031672619599], [139.107189, 36.303141], [139.107100017678, 36.3031709082437], [139.106209874153, 36.3031941396627], [139.104392152579, 36.3032280479398], [139.102460378756, 36.3032933099331], [139.102334, 36.303286], [139.102194491185, 36.3033065413521], [139.09974201301, 36.3033740305409], [139.099735021591, 36.3023727344807], [139.099696071194, 36.3017212824818], [139.099718, 36.301652], [139.099689307305, 36.3015587657811], [139.099624117492, 36.3000649382355], [139.099602309292, 36.2992681727762], [139.099483824506, 36.2968439232594], [139.100418285484, 36.2968188361705], [139.1005, 36.296835], [139.100588313926, 36.2968201891506], [139.103086266327, 36.296755071931], [139.105334424411, 36.2967058957713], [139.106465857143, 36.296677], [139.109145960154, 36.2966136017313], [139.109286, 36.296636], [139.109434355659, 36.2966206312014], [139.109784208837, 36.2965996901415], [139.113321459525, 36.296511602392], [139.113583, 36.296497], [139.113885657278, 36.2964818368311], [139.113947114291, 36.297954294139], [139.113932, 36.29805], [139.113939183736, 36.2981534693172], [139.113959241938, 36.2983979086358], [139.117517953595, 36.2983240299985], [139.117810661278, 36.2977100030907], [139.11789, 36.297661], [139.117875734029, 36.2975585665185], [139.118205879533, 36.2969605709401], [139.118425470805, 36.296523454381], [139.118502554801, 36.2963002795426], [139.118538356389, 36.2961211308145], [139.118542671204, 36.2956232436834], [139.118600280331, 36.2934999272028], [139.118625, 36.293363], [139.118598530993, 36.293257268622], [139.118644245278, 36.2925760880446], [139.118665702951, 36.2918667841757], [139.11866931803, 36.2905961128636], [139.11871, 36.290505], [139.118679347131, 36.290407214474], [139.118686460887, 36.2899652356462], [139.1186997552, 36.2897420283579], [139.118809026364, 36.2891897610866], [139.118979171867, 36.2886337583195], [139.119091124911, 36.2881720222739], [139.119091124911, 36.2879480426714], [139.119040862345, 36.2875730021989], [139.11899153298, 36.2870623570294], [139.118981853747, 36.2867989967479], [139.118984, 36.286717], [139.118961795545, 36.2866187380176], [139.118960745942, 36.2863968589771], [139.119032116972, 36.2852473112724], [139.119016839196, 36.2850224611012], [139.118953749248, 36.2848342399146], [139.118795265121, 36.2845070700744], [139.11863748139, 36.2842170849566], [139.118335907974, 36.2832372357443], [139.118209027683, 36.2828276459855], [139.118108853079, 36.2825577820009], [139.117785238658, 36.2814887263897], [139.117624655985, 36.2809366929237], [139.117375327279, 36.2800551824428], [139.117103607701, 36.2791751539875], [139.116846115635, 36.278247004722], [139.116785, 36.277917], [139.116668390105, 36.2778398213182], [139.116359002538, 36.2772041458708], [139.115923902005, 36.2765255563764], [139.115542095124, 36.275991338351], [139.115343728719, 36.2756780526286], [139.115173116946, 36.2753600526234], [139.114319824611, 36.2736108258997], [139.114285, 36.273476], [139.114212303445, 36.2733979795348], [139.113506534915, 36.2719836897926], [139.113272713492, 36.2715413304716], [139.113076679099, 36.271255339636], [139.112803909917, 36.2715517939178], [139.112559129492, 36.2717830620193], [139.111980704885, 36.2727766440814], [139.111210211492, 36.2740685792912], [139.11113, 36.274159], [139.11108601374, 36.2742606218729], [139.110935693632, 36.2744430802864], [139.110662690986, 36.2747468892265], [139.110242866908, 36.275130811857], [139.109369283567, 36.2759202084716], [139.108576981315, 36.2766326760108], [139.108105962132, 36.2761303643197], [139.108041, 36.27598], [139.107932901944, 36.2759465850998], [139.106155996508, 36.2740172288873], [139.106032731955, 36.2737921938315], [139.105838679706, 36.2735215011016], [139.105803461451, 36.2733195859971], [139.105694890022, 36.2732607908439]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_08\\u664200\\u5206_\\u7cfb\\u7d71160", "times": [1747609200000, 1747609207214, 1747609213332, 1747609219659, 1747609257186, 1747609260000, 1747609266188, 1747609346933, 1747609373832, 1747609380000, 1747609384955, 1747609457878, 1747609500000, 1747609515601, 1747609542465, 1747609544059, 1747609558572, 1747609560000, 1747609564906, 1747609649564, 1747609674664, 1747609680000, 1747609682305, 1747609707800, 1747609738291, 1747609740000, 1747609742519, 1747609800000, 1747609842612, 1747609920000, 1747610016496, 1747610103337, 1747610189230, 1747610223623, 1747610233794, 1747610264418, 1747610271724, 1747610280000, 1747610283988, 1747610285683, 1747610290789, 1747610295308, 1747610342724, 1747610377601, 1747610404636, 1747610407036, 1747610410177, 1747610423620, 1747610437972, 1747610449761, 1747610460000, 1747610461787, 1747610498639, 1747610517924, 1747610520000, 1747610521760, 1747610538099, 1747610578137, 1747610580000, 1747610581688, 1747610619005, 1747610629641, 1747610640000, 1747610640930, 1747610660820, 1747610681519, 1747610700000, 1747610740638, 1747610850937, 1747610876013, 1747610880000, 1747610881127, 1747610917752, 1747610922709, 1747610938532, 1747610940000, 1747610946144, 1747610973362, 1747611000000, 1747611015064, 1747611036613, 1747611056498, 1747611066617, 1747611081151, 1747611104533, 1747611107582, 1747611120000, 1747611124262, 1747611131032, 1747611159235, 1747611180000, 1747611184009, 1747611226180, 1747611240000, 1747611317019, 1747611340156, 1747611351484, 1747611364840, 1747611467902, 1747611474165, 1747611480000, 1747611483349, 1747611487492, 1747611516422, 1747611524897, 1747611537377, 1747611555307, 1747611561715, 1747611600000, 1747611604824, 1747611619826, 1747611641049, 1747611660000, 1747611662975, 1747611700016, 1747611778292, 1747611780000, 1747611822128, 1747611897861, 1747611925339, 1747611950961, 1747611960000, 1747611964493, 1747611971311, 1747612017133, 1747612020000, 1747612026899, 1747612068845, 1747612093525, 1747612229338, 1747612260000, 1747612263851, 1747612296686, 1747612334019, 1747612339172, 1747612376822, 1747612380000, 1747612395923, 1747612450135, 1747612495515, 1747612500000, 1747612507845, 1747612718843, 1747612726239, 1747612753309, 1747612785706], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_08\\u664200\\u5206_\\u7cfb\\u7d71160", "popup": "\\u5e73\\u65e5_08\\u664200\\u5206_\\u7cfb\\u7d71160"}, "geometry": {"type": "LineString", "coordinates": [[139.072229, 36.383658], [139.072303254187, 36.3839700617261], [139.072625352075, 36.3840393698354], [139.07265007364, 36.3843173680282], [139.074689953281, 36.3844273996844], [139.074836, 36.384465], [139.074940795882, 36.3844362359813], [139.076382195353, 36.3845041919657], [139.076415896416, 36.3841162254292], [139.076444, 36.38403], [139.076421492321, 36.3839240565602], [139.076499976447, 36.3823433752831], [139.07763, 36.382352], [139.07898906971, 36.3823327337505], [139.079870348821, 36.380579372986], [139.079850639828, 36.3804682279924], [139.080085158348, 36.3794635182257], [139.080124, 36.379368], [139.080127024089, 36.3792748484394], [139.080470696711, 36.3776911420771], [139.080584049225, 36.3772233249118], [139.080623, 36.377127], [139.080626964569, 36.3770264179962], [139.080862416289, 36.3759298758636], [139.080786497639, 36.3746002541929], [139.080795, 36.374526], [139.080765389835, 36.3744265703465], [139.08065, 36.372095], [139.080597575684, 36.3712775154491], [139.082435, 36.371233], [139.084148821738, 36.3711572525025], [139.083873018172, 36.3699281688918], [139.08533785614, 36.3702791042162], [139.085927942783, 36.370409576651], [139.086108816463, 36.3704125631418], [139.086626483133, 36.3705496320768], [139.086660653103, 36.3704482436822], [139.086524, 36.370404], [139.086342401782, 36.370390020974], [139.086317212628, 36.3704493404336], [139.086096221886, 36.3703882155703], [139.085889575059, 36.3703923269244], [139.083810276772, 36.3698936317813], [139.08410053736, 36.3711622525025], [139.084344856131, 36.3721425916808], [139.084355, 36.372231], [139.08440024965, 36.3723412811757], [139.084500074387, 36.372831947686], [139.084564447403, 36.3733602843087], [139.084602698065, 36.3737952843087], [139.084607, 36.374174], [139.084618441451, 36.3742533554967], [139.084707420949, 36.3758989609477], [139.084748237087, 36.3767602698098], [139.084731, 36.376852], [139.084755582989, 36.3769403298329], [139.084813541984, 36.3777794349861], [139.087360008932, 36.3778050320028], [139.087477, 36.37782], [139.087579250336, 36.3778129890924], [139.089846770843, 36.377831235362], [139.089560936857, 36.3782999600753], [139.089274, 36.378753], [139.089249217279, 36.3788240981832], [139.088426828384, 36.3802552404042], [139.087552659732, 36.3817376526496], [139.085798, 36.382108], [139.084860771484, 36.3823228774542], [139.084673018172, 36.3844554429203], [139.084764330341, 36.3849358576638], [139.084742, 36.385011], [139.084781239733, 36.3850708760662], [139.085151733785, 36.3872507284924], [139.085279081007, 36.3875301469974], [139.086114764214, 36.3868614884569], [139.086211, 36.38682], [139.086304384586, 36.3867498879134], [139.086769922289, 36.3864916789759], [139.087284, 36.386328], [139.08780840114, 36.3861421306667], [139.088571316485, 36.3859012194348], [139.089204902464, 36.385568026198], [139.08945971199, 36.3858009739636], [139.089874755641, 36.3860957363427], [139.089135746384, 36.3864948486618], [139.089198137915, 36.3865738051837], [139.089629, 36.386418], [139.090047932892, 36.386190111482], [139.090643500356, 36.3866244519232], [139.092843382634, 36.3886576827442], [139.090616, 36.389502], [139.090369098238, 36.3895996365318], [139.090198136597, 36.3919325938576], [139.089253, 36.391881], [139.087478722567, 36.3918453484384], [139.086953945438, 36.3917692114274], [139.086706715938, 36.3917014843538], [139.086437095566, 36.3915814832582], [139.084308820419, 36.3907294182671], [139.084394180881, 36.3906353451514], [139.084361, 36.39053], [139.084234186156, 36.3905512328902], [139.084145206659, 36.3906589597181], [139.083137744353, 36.390265781681], [139.082878270803, 36.3904275914109], [139.082469408368, 36.3906348645831], [139.081791159025, 36.3905185085089], [139.08156375558, 36.3904389621647], [139.080466, 36.391242], [139.080366557819, 36.3913417108795], [139.080011805834, 36.3916180755119], [139.079533789297, 36.3920280787989], [139.079173, 36.392438], [139.079143703314, 36.3925192201924], [139.078437814424, 36.3934042212881], [139.07613519668, 36.3921849008652], [139.076101, 36.392145], [139.075602603422, 36.3919185329459], [139.074655082915, 36.3915967108795], [139.074405638466, 36.3913726134304], [139.074613335555, 36.391147157328], [139.074615, 36.391048], [139.074442256851, 36.3909787414533], [139.074188846136, 36.391096921937], [139.073139752873, 36.3897525659334], [139.073116, 36.389655], [139.072992581575, 36.3895680153003], [139.072475498897, 36.3888802735278], [139.07246290432, 36.388406840233], [139.069258821651, 36.3881248279584], [139.069154, 36.388707], [139.069151540544, 36.3888011792427], [139.069023493587, 36.3895975545407], [139.068857546496, 36.3905007494777], [139.068994457207, 36.3905610023924], [139.069972880494, 36.3900896260603], [139.070069, 36.390089], [139.070587067668, 36.3897766469739], [139.072480785933, 36.388871115803], [139.072613729059, 36.3873859244999], [139.072657, 36.387243], [139.07262605181, 36.3871296345919], [139.072791416888, 36.3840103767728], [139.072714564378, 36.3839202923563], [139.072877014111, 36.3835418856636], [139.072294390433, 36.3834532156406]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_08\\u664210\\u5206_\\u7cfb\\u7d71110", "times": [1747609800000, 1747609802424, 1747609805361, 1747609857805, 1747609860000, 1747609862315, 1747609898874, 1747609918340, 1747609920000, 1747609922061, 1747609944370, 1747609969725, 1747609978194, 1747609980000, 1747609980000, 1747609980000, 1747609980000, 1747609982805, 1747610035475, 1747610040000, 1747610042548, 1747610074278, 1747610097900, 1747610100000, 1747610100000, 1747610100000, 1747610100000, 1747610102900, 1747610112768, 1747610116642, 1747610125006, 1747610134386, 1747610160000, 1747610162802, 1747610185890, 1747610217318, 1747610220000, 1747610223159, 1747610280000, 1747610281620, 1747610326638, 1747610345408, 1747610380924, 1747610397747, 1747610400000, 1747610401644, 1747610412642, 1747610416685, 1747610428185, 1747610429903, 1747610436876, 1747610460000, 1747610469384, 1747610492471, 1747610504630, 1747610520000, 1747610520000, 1747610520000, 1747610520000, 1747610520000, 1747610523346, 1747610530428, 1747610532397, 1747610558761, 1747610593543, 1747610602600, 1747610608848, 1747610613961, 1747610619892, 1747610631351, 1747610640000, 1747610640000, 1747610640000, 1747610640000, 1747610640000, 1747610640000, 1747610640000, 1747610640000, 1747610641079, 1747610646823, 1747610650950, 1747610664159, 1747610676173, 1747610687917, 1747610698254, 1747610700000, 1747610701007, 1747610706020, 1747610708106, 1747610716106, 1747610719169, 1747610722875, 1747610725201, 1747610728743, 1747610731926, 1747610737157, 1747610742973, 1747610746708, 1747610749877, 1747610760000, 1747610762356, 1747610767010, 1747610784288, 1747610793848, 1747610797123, 1747610806822, 1747610816148, 1747610819550, 1747610820000, 1747610821430, 1747610828188, 1747610849127, 1747610857399, 1747610861427, 1747610864010, 1747610872735, 1747610879017, 1747610880000, 1747610881084, 1747610886716, 1747610919232, 1747610923302, 1747610928879, 1747610932643, 1747610938618, 1747610940000, 1747610940000, 1747610940000, 1747610940000, 1747610940000, 1747610940000, 1747610940843, 1747610942508, 1747610948340, 1747610956612, 1747610958964, 1747610962609, 1747610966743, 1747610970299, 1747610972511, 1747610979668, 1747610988546, 1747610993397, 1747610998289, 1747611004003, 1747611005557, 1747611006932, 1747611010824, 1747611019151, 1747611028363, 1747611034258, 1747611038953, 1747611043488, 1747611048179, 1747611051795, 1747611055195, 1747611060000, 1747611066329, 1747611068865, 1747611074688, 1747611079530, 1747611085398, 1747611089811, 1747611093412, 1747611099660, 1747611106441, 1747611130814, 1747611134118, 1747611144623, 1747611154399, 1747611163849, 1747611184548, 1747611191764, 1747611205555, 1747611214558, 1747611238536, 1747611240000, 1747611250325, 1747611263645, 1747611319724, 1747611344451, 1747611391184, 1747611410066, 1747611429581, 1747611444825, 1747611463864, 1747611475922, 1747611542487, 1747611557530, 1747611575464, 1747611582068], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_08\\u664210\\u5206_\\u7cfb\\u7d71110", "popup": "\\u5e73\\u65e5_08\\u664210\\u5206_\\u7cfb\\u7d71110"}, "geometry": {"type": "LineString", "coordinates": [[139.072342, 36.384085], [139.072460425486, 36.38398089795], [139.072648034613, 36.3840606725959], [139.07248016292, 36.3871176437477], [139.072448, 36.387243], [139.072467684746, 36.3873415230417], [139.072445526679, 36.3889175063718], [139.072959345463, 36.3896466520092], [139.072981, 36.389716], [139.073086692025, 36.389768026693], [139.073778467827, 36.3906951097604], [139.074604706585, 36.3917285329458], [139.074409604073, 36.3921080798945], [139.07436, 36.392186], [139.074368787934, 36.3922530820858], [139.073835611343, 36.3934378556375], [139.073759, 36.393524], [139.073766807109, 36.3935917175436], [139.073229432106, 36.3947921550034], [139.073142, 36.394876], [139.07315281438, 36.3949730549069], [139.072672932761, 36.3961227632447], [139.072280979718, 36.3969686625439], [139.072225, 36.397035], [139.072159463844, 36.3974268197045], [139.072125061727, 36.3987815067711], [139.072096, 36.398861], [139.072114332891, 36.3989819358238], [139.072150484347, 36.3993953243097], [139.072191650352, 36.3995546170266], [139.072283311729, 36.3998979945715], [139.072492990303, 36.4002536433234], [139.073057, 36.401228], [139.073126225095, 36.4013160096842], [139.07361776941, 36.402077968137], [139.074040508832, 36.4031967175397], [139.074068, 36.403294], [139.074127738991, 36.4034171393549], [139.074985, 36.405694], [139.07502942749, 36.4057460983262], [139.075703711226, 36.4074168040764], [139.075951640461, 36.4081216076923], [139.076476303166, 36.4094416179863], [139.07728738121, 36.4094806324655], [139.077394, 36.409498], [139.077507088225, 36.4094851294134], [139.07826860212, 36.4095325781083], [139.07854358757, 36.4095785226463], [139.079303236384, 36.4097777988513], [139.079409357419, 36.4098218543132], [139.079863584933, 36.4099575575862], [139.080956, 36.410909], [139.081242238388, 36.4111821609189], [139.08194871061, 36.4118526006851], [139.082309291965, 36.4122133640948], [139.082833, 36.412619], [139.082941594216, 36.412658949341], [139.083306606129, 36.4129375800214], [139.083554419621, 36.4131814589783], [139.083919857143, 36.4134649999999], [139.084080191449, 36.4135392291772], [139.084394564465, 36.4137271801871], [139.084373281397, 36.4138133271573], [139.085189984447, 36.414787266685], [139.086275230484, 36.4160678679079], [139.086578435516, 36.4157464716851], [139.086900651125, 36.4156467753076], [139.087148463298, 36.4155374583657], [139.087475693457, 36.4155470484576], [139.08809621727, 36.4156470211792], [139.088562, 36.415732], [139.088713008281, 36.4157365289445], [139.089840002997, 36.4158269080116], [139.090142392551, 36.415850105446], [139.090419942818, 36.4159173729679], [139.090959883298, 36.4162011676326], [139.091308104199, 36.4164029415685], [139.091566, 36.416655], [139.091627870075, 36.4167055595276], [139.09190716968, 36.4170092926332], [139.092064136614, 36.4172497659465], [139.092392181593, 36.4180785794811], [139.092672764925, 36.4188368763183], [139.092967341646, 36.4195730149992], [139.093244075775, 36.4202162348627], [139.093272, 36.420329], [139.093325824454, 36.4203994815129], [139.093499118107, 36.4207870107627], [139.093589730541, 36.4209420447979], [139.09397421996, 36.4215215088229], [139.094137018242, 36.4217361158765], [139.094299583059, 36.4220109743301], [139.094379233191, 36.4221909743301], [139.094512177636, 36.4224615869837], [139.094674742453, 36.4226877706383], [139.095004771554, 36.423024999948], [139.095360805288, 36.4234067918333], [139.095574682274, 36.4236605637087], [139.095736664418, 36.4238857407726], [139.095965, 36.424697], [139.096065176326, 36.4248662539738], [139.096282785454, 36.4251923275906], [139.097137594321, 36.4263817959271], [139.097611528189, 36.4270395093202], [139.097815026207, 36.4272418196728], [139.09856511285, 36.4277201119104], [139.099162661798, 36.4282841283779], [139.099368375424, 36.4284978872301], [139.099388, 36.42853], [139.09946318561, 36.4286312192156], [139.099624118151, 36.4291736104772], [139.100147264982, 36.4308492124765], [139.100417701492, 36.4314959640141], [139.100527322524, 36.4318163407506], [139.100656768292, 36.4320020942235], [139.101245338402, 36.4325427499548], [139.101687553351, 36.4329184501029], [139.101737, 36.432989], [139.101820730602, 36.4330183522999], [139.102127669095, 36.4333103555214], [139.103266443569, 36.4353215261543], [139.103527665138, 36.4355006671935], [139.10388090059, 36.4357505620796], [139.104045331808, 36.4359694040521], [139.104322298742, 36.4363086654682], [139.104371, 36.436394], [139.10444626303, 36.4364758184875], [139.104804979962, 36.4369068684523], [139.104989702187, 36.438045966934], [139.105304337109, 36.4384419939425], [139.10538, 36.438534], [139.105445327851, 36.4385950391417], [139.10553570616, 36.4387366021137], [139.105760428385, 36.439264054696], [139.106016171771, 36.44002799012], [139.106009524285, 36.4402529103258], [139.105860253121, 36.4405800557159], [139.105832148623, 36.4409748806272], [139.10579156529, 36.4413134261156], [139.105775705501, 36.4415246757514], [139.106137337118, 36.4421437814894], [139.106475645981, 36.4429479144339], [139.106842875481, 36.4433046875277], [139.107197510403, 36.4436747713943], [139.107615118212, 36.4441048117111], [139.107720657234, 36.4442265334287], [139.107828994538, 36.44432470476], [139.108233892027, 36.4445025868398], [139.109103162532, 36.4448784147692], [139.10975073992, 36.4455874906463], [139.110166831856, 36.4460402523804], [139.110536511089, 36.446375665485], [139.110818025643, 36.4467450669132], [139.111134759772, 36.447113703936], [139.111461872869, 36.4473369287146], [139.11175143504, 36.4475629593253], [139.111898, 36.448007], [139.112053007796, 36.4483106394707], [139.112109216793, 36.44843420406], [139.112390383459, 36.4486335191589], [139.112557846423, 36.4488452325202], [139.112703851716, 36.4491259858656], [139.112874696955, 36.4493087234471], [139.113053471429, 36.4494273512531], [139.113373704234, 36.4496227617769], [139.113760874873, 36.449784058966], [139.115221399346, 36.4502397439902], [139.115401220785, 36.4503307613946], [139.115931131504, 36.4506683536788], [139.116367049495, 36.4510335585107], [139.116763083888, 36.4514051942154], [139.117628038259, 36.4522210612226], [139.117944655326, 36.4524946054117], [139.11858523668, 36.4529889620457], [139.118998413271, 36.4533159284055], [139.120205642112, 36.4540887779847], [139.120266, 36.454147], [139.120508847144, 36.4542023671449], [139.120783015137, 36.4543441197013], [139.122070478101, 36.4547235616066], [139.122633507211, 36.45490079583], [139.123556654702, 36.4554439943708], [139.123704174549, 36.4557971898389], [139.123787556163, 36.4561765234294], [139.123817643465, 36.4564764942463], [139.123748022434, 36.4568481127453], [139.123726564762, 36.4570855397562], [139.123899975477, 36.4583921693062], [139.123936126932, 36.4586876947766], [139.124025962248, 36.4590342302175], [139.123865612381, 36.4590491317312]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_08\\u664215\\u5206_\\u7cfb\\u7d71152", "times": [1747610100000, 1747610102081, 1747610104964, 1747610108540, 1747610116000, 1747610158535, 1747610160000, 1747610161063, 1747610197446, 1747610211712, 1747610213533, 1747610218867, 1747610220000, 1747610222807, 1747610234619, 1747610242980, 1747610278935, 1747610280000, 1747610283631, 1747610298502, 1747610380191, 1747610397216, 1747610400000, 1747610402196, 1747610407398, 1747610458369, 1747610460000, 1747610462531, 1747610507872, 1747610518041, 1747610520000, 1747610524932, 1747610554251, 1747610569081, 1747610646838, 1747610657843, 1747610663385, 1747610675881, 1747610693401, 1747610700000, 1747610707214, 1747610713332, 1747610719659, 1747610757186, 1747610760000, 1747610763094, 1747610803466, 1747610816916, 1747610820000, 1747610822357, 1747610877970, 1747610880000, 1747610922651, 1747611249344, 1747611300000, 1747611304150, 1747611314921, 1747611322959, 1747611354977, 1747611377111, 1747611381733, 1747611406973, 1747611478560, 1747611480000, 1747611481611, 1747611491227, 1747611538725, 1747611540000, 1747611541917, 1747611564867, 1747611574221, 1747611599107, 1747611600000, 1747611602685, 1747611610232, 1747611621731, 1747611658155, 1747611660000, 1747611661179, 1747611719275, 1747611720000, 1747611729339, 1747611735413, 1747611757672, 1747611777512, 1747611780000, 1747611782306, 1747611791003, 1747611840000, 1747611853068, 1747611859384, 1747611900000, 1747611909066, 1747611983063, 1747612035458, 1747612121339, 1747612132874, 1747612162267, 1747612187645, 1747612193040, 1747612200000, 1747612200979, 1747612203563, 1747612208532, 1747612221552, 1747612237875, 1747612246554, 1747612249268, 1747612253483, 1747612267173, 1747612268187, 1747612280471, 1747612286470, 1747612299629, 1747612301160, 1747612302505, 1747612319025, 1747612320000, 1747612322589, 1747612377651, 1747612380000, 1747612382683, 1747612386115, 1747612440000, 1747612454032, 1747612483009, 1747612495875, 1747612500000, 1747612500796, 1747612528774, 1747612543068, 1747612556232, 1747612560000, 1747612564645, 1747612574860, 1747612588338, 1747612594997, 1747612599317, 1747612608870, 1747612616652, 1747612620000, 1747612624706, 1747612631934, 1747612654665, 1747612670826, 1747612680000, 1747612682171, 1747612720775, 1747612738000, 1747612740000, 1747612742600, 1747612800000, 1747612802779, 1747612845940, 1747612860000, 1747612863106, 1747612879870, 1747612892910, 1747612918481, 1747612920000, 1747612921353, 1747612931185, 1747612963107, 1747612978595, 1747612980000, 1747612982112, 1747612999731, 1747613037743, 1747613040000, 1747613045520, 1747613062554, 1747613276303, 1747613280000, 1747613283125, 1747613302029, 1747613308969, 1747613313285, 1747613318369, 1747613323604, 1747613338287, 1747613340000, 1747613341272, 1747613344467, 1747613349904, 1747613355674, 1747613357655, 1747613368340, 1747613376103, 1747613382052, 1747613389630, 1747613395569, 1747613400000, 1747613407080, 1747613420841, 1747613436408, 1747613446151, 1747613460000, 1747613463476, 1747613471180, 1747613476892, 1747613493071, 1747613497864, 1747613503040, 1747613506295, 1747613518644, 1747613520000, 1747613525796, 1747613551730, 1747613638121, 1747613656909, 1747613667287, 1747613678486, 1747613686243, 1747613700000, 1747613703733, 1747613707265, 1747613733314, 1747613734286, 1747613744962, 1747613749177, 1747613758857, 1747613760000, 1747613761366, 1747613774629, 1747613795978, 1747613818245, 1747613820000, 1747613825356, 1747613882632, 1747613914806, 1747613936315, 1747613940000, 1747613941740, 1747613948866, 1747613952060, 1747613959377, 1747613974471, 1747613999071, 1747614000000, 1747614004610, 1747614106448, 1747614211363, 1747614278704], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_08\\u664215\\u5206_\\u7cfb\\u7d71152", "popup": "\\u5e73\\u65e5_08\\u664215\\u5206_\\u7cfb\\u7d71152"}, "geometry": {"type": "LineString", "coordinates": [[139.047567, 36.378982], [139.047734918687, 36.3789354948586], [139.047875443159, 36.3787723051739], [139.047778882975, 36.3785384171516], [139.048225996731, 36.3781724687285], [139.050596719633, 36.3803925160325], [139.050647, 36.380485], [139.050729193192, 36.3805250221413], [139.052872865813, 36.382534149197], [139.053703999421, 36.383328399089], [139.053796943866, 36.3834379607747], [139.054272628392, 36.3834959288462], [139.05437, 36.383521], [139.054506913447, 36.3835102475691], [139.055080089378, 36.3835754667262], [139.055489767952, 36.3835725224606], [139.057228309621, 36.3833418411834], [139.057277, 36.383357], [139.057388305005, 36.3833195424861], [139.057879494176, 36.3832790803661], [139.06059004643, 36.383203849306], [139.061155176724, 36.3832122556917], [139.061241, 36.38324], [139.061399956491, 36.3832227178118], [139.061778381756, 36.3832483990889], [139.065463854005, 36.3836657215921], [139.065576, 36.383698], [139.065704552421, 36.3836827765282], [139.068006004818, 36.3839589402313], [139.068520522679, 36.3840291708615], [139.068617, 36.384052], [139.068779063028, 36.3840430282626], [139.069733580889, 36.3841605229866], [139.070220808411, 36.3841875670022], [139.072777426137, 36.3843037096011], [139.072769141758, 36.3840107641688], [139.072729725091, 36.3838666761375], [139.072865469137, 36.383552545898], [139.072293690038, 36.383490259472], [139.072229, 36.383658], [139.072303254187, 36.3839700617261], [139.072625352075, 36.3840393698354], [139.07265007364, 36.3843173680282], [139.074689953281, 36.3844273996844], [139.074836, 36.384465], [139.074940795882, 36.3844362359813], [139.076382195353, 36.3845041919657], [139.076415896416, 36.3841162254292], [139.076444, 36.38403], [139.076419511495, 36.3839484789709], [139.076515021417, 36.3819714110803], [139.076562, 36.38191], [139.07652470065, 36.3816129652403], [139.076627955282, 36.3793276528183], [139.077066, 36.379344], [139.077318713219, 36.3792427387197], [139.077340674864, 36.3786512281365], [139.076795132544, 36.3786304744432], [139.076776435452, 36.3803895784298], [139.078280225136, 36.380372087676], [139.07827540503, 36.3806260092043], [139.076562055813, 36.3806868976751], [139.076757819699, 36.3767568652661], [139.076803714286, 36.376687], [139.076773912953, 36.3765884207069], [139.076775196681, 36.375982973437], [139.073076892433, 36.3759821524742], [139.072984, 36.375954], [139.072836663584, 36.3759785141689], [139.071036436713, 36.3759921524742], [139.070304307087, 36.375952386113], [139.068352471766, 36.3759835141689], [139.068296, 36.37595], [139.068174052435, 36.3759741522994], [139.067824547146, 36.375934641795], [139.067297551771, 36.375848471452], [139.065745832192, 36.3752807480626], [139.065683, 36.375233], [139.065567993556, 36.3752240241486], [139.060416519312, 36.3732651645004], [139.060367, 36.373224], [139.059756111902, 36.3730460320333], [139.059352265996, 36.372946146662], [139.057810808323, 36.3728348092728], [139.057955184637, 36.371725448049], [139.058007, 36.371592], [139.057994717707, 36.37147516187], [139.058036933316, 36.3710344548752], [139.061102, 36.371276], [139.061975000801, 36.3713405752275], [139.062042521308, 36.3710023060249], [139.062642, 36.368853], [139.062646601998, 36.3687565748696], [139.062835989565, 36.3679840601383], [139.062960538505, 36.3674355922137], [139.061865377132, 36.3672098193564], [139.061713775935, 36.3672033968949], [139.061331035854, 36.3672486339718], [139.061001941932, 36.3672026856642], [139.060985963762, 36.3672586339718], [139.061075, 36.367276], [139.06114818003, 36.367236324829], [139.061378617199, 36.3672604073345], [139.061823398285, 36.3672253752321], [139.062956691938, 36.3674637448492], [139.063179668122, 36.3662902254225], [139.062399487583, 36.3662718893197], [139.062159139034, 36.3662373643331], [139.061809402259, 36.3661191678949], [139.060578382416, 36.366101651813], [139.060489988888, 36.3660833889601], [139.059385266004, 36.3660854633589], [139.058845910176, 36.3660765524977], [139.059003345359, 36.3651279164228], [139.059042, 36.365021], [139.059029117846, 36.3649237341108], [139.059216522609, 36.3637317162228], [139.059246, 36.363665], [139.059236230943, 36.3635673239638], [139.059560894966, 36.3615003875026], [139.059605, 36.361419], [139.059606258725, 36.361300348586], [139.059625734253, 36.3611493899648], [139.062572, 36.361151], [139.063147242873, 36.3611470774008], [139.062823977002, 36.3602225582015], [139.06275027462, 36.3598001573515], [139.062776, 36.359665], [139.062753772637, 36.359599996283], [139.062783975023, 36.3572303862365], [139.064267820271, 36.3570720971579], [139.065637613929, 36.3569472942134], [139.066032, 36.356939], [139.066302450578, 36.3569251218466], [139.06689755243, 36.356899683417], [139.067682856669, 36.3568675553687], [139.068068629156, 36.356904683417], [139.068316558391, 36.356941087343], [139.068557723737, 36.356534683417], [139.068890783926, 36.3562851416278], [139.069052, 36.356196], [139.069175215144, 36.3560841316286], [139.069306176785, 36.3558798248296], [139.069390957871, 36.3551594003497], [139.069448916866, 36.3546470354853], [139.069444, 36.354355], [139.069413465146, 36.3542609725125], [139.069305361306, 36.3525344743177], [139.068352476382, 36.3525633083599], [139.068242, 36.352558], [139.068084955215, 36.3525769492436], [139.064583, 36.352679], [139.064479366564, 36.352699523824], [139.062823626475, 36.3527531158924], [139.062792, 36.353189], [139.062814531234, 36.3533601055674], [139.062836688641, 36.3542883874656], [139.062828875149, 36.3550105180305], [139.062792023959, 36.356426412598], [139.062749, 36.356503], [139.062769751467, 36.3565888508763], [139.062745377132, 36.3572237622392], [139.060195994181, 36.3571770896371], [139.060038328171, 36.3581696540894], [139.060008, 36.358257], [139.060018969705, 36.3583476989571], [139.059899436635, 36.3591014367929], [139.059636696554, 36.3607271163174], [139.059616, 36.360823], [139.059625734912, 36.3608960347908], [139.059581886368, 36.3611199143476], [139.056065158833, 36.3611279520331], [139.056016, 36.361099], [139.055861545732, 36.3611911515407], [139.054700965037, 36.361204467798], [139.054274844001, 36.3611996685367], [139.054009888971, 36.3611953875026], [139.053704816219, 36.3611419483397], [139.053387498757, 36.3611834702603], [139.053146800341, 36.3618862191054], [139.053114, 36.361967], [139.05309677124, 36.3620632080421], [139.053045692536, 36.3623036489272], [139.052958462377, 36.3627128798554], [139.052870182615, 36.3631477868425], [139.052860037112, 36.363298814457], [139.052891873752, 36.3641145481768], [139.05293723817, 36.364706250868], [139.052952281821, 36.3651604666944], [139.052996596636, 36.3657381175093], [139.05300767534, 36.3661916839769], [139.052975, 36.366529], [139.052961261319, 36.3668282376721], [139.052933039758, 36.3674098193565], [139.052933389626, 36.3680682000598], [139.052963360525, 36.3684795923577], [139.052986, 36.369065], [139.053025634335, 36.3692461006285], [139.052975021902, 36.3696516577061], [139.052953214362, 36.3699533674519], [139.053097121108, 36.3708014380944], [139.053151814891, 36.3710511538478], [139.053190881691, 36.3713232224144], [139.053255954443, 36.3714871772823], [139.053635662117, 36.3720639275966], [139.053667, 36.372131], [139.053742017937, 36.372220339744], [139.053976070186, 36.3726648944388], [139.051985753375, 36.3726648573925], [139.051968843983, 36.3730146224644], [139.051730010648, 36.3730234478237], [139.051726978902, 36.3728148092728], [139.051548786441, 36.3728037308715], [139.051553, 36.37306], [139.051999981548, 36.373065821165], [139.052008027186, 36.3727237789914], [139.055127326132, 36.3727242969674], [139.055121955779, 36.3728182850751], [139.054810002736, 36.3738209650946], [139.054736533819, 36.3742247397778], [139.054648137654, 36.3751594709274], [139.054616, 36.375267], [139.054622248764, 36.3753539395892], [139.054556826145, 36.3761971924897], [139.054251870455, 36.3775347428229], [139.053907847966, 36.3789256930255], [139.053855, 36.379029], [139.053851054976, 36.3791437018494], [139.053597643601, 36.3803533337425], [139.054446273231, 36.3804171268125], [139.05434528117, 36.3808705617934], [139.054321, 36.380947], [139.054309830769, 36.3810855617934], [139.054180383682, 36.381644228694], [139.053876827463, 36.3815758950856], [139.053394728916, 36.3811415763012], [139.05226901595, 36.3819296925333], [139.050697593313, 36.380434372986], [139.050657, 36.380368], [139.050580159449, 36.3803411538466], [139.049397226243, 36.379192158712], [139.048155794346, 36.3780240289584], [139.047317193156, 36.3787433998454]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_08\\u664217\\u5206_\\u7cfb\\u7d71105", "times": [1747610220000, 1747610222164, 1747610223017, 1747610228200, 1747610237381, 1747610244618, 1747610247253, 1747610265382, 1747610268286, 1747610278149, 1747610280000, 1747610284799, 1747610317720, 1747610338074, 1747610340000, 1747610341282, 1747610348308, 1747610355386, 1747610358693, 1747610373728, 1747610390519, 1747610398918, 1747610400000, 1747610401810, 1747610424192, 1747610428414, 1747610451098, 1747610458482, 1747610460000, 1747610465791, 1747610477160, 1747610481399, 1747610485793, 1747610507368, 1747610517735, 1747610520000, 1747610523641, 1747610558233, 1747610577202, 1747610580000, 1747610596327, 1747610618662, 1747610623961, 1747610628037, 1747610634177, 1747610638664, 1747610640000, 1747610642052, 1747610680497, 1747610696737, 1747610698725, 1747610700000, 1747610708973, 1747610737684, 1747610762690, 1747610801425, 1747610817246, 1747610820000, 1747610821382, 1747610858634, 1747610873381, 1747610877975, 1747610880000, 1747610881744, 1747610901362, 1747610907864, 1747610917327, 1747610938978, 1747610940000, 1747610943925, 1747610949291, 1747610983624, 1747611041116, 1747611055921, 1747611060000, 1747611065113, 1747611110740, 1747611118270, 1747611120000, 1747611121818, 1747611129409, 1747611137488, 1747611144659, 1747611169306, 1747611178748, 1747611180000, 1747611183077, 1747611191570, 1747611261158, 1747611295508, 1747611300000, 1747611302719, 1747611357503, 1747611360000, 1747611362896, 1747611415835, 1747611420000, 1747611422658, 1747611477445, 1747611480000, 1747611482313, 1747611536910, 1747611540000, 1747611543515, 1747611597538, 1747611600000, 1747611602942, 1747611614544, 1747611618356, 1747611642377, 1747611646512, 1747611657303, 1747611660000, 1747611675147, 1747611771334, 1747611782716, 1747611866378, 1747611881913, 1747611934352, 1747611963313, 1747611979626, 1747611994633, 1747612020000, 1747612026712, 1747612032141, 1747612034758, 1747612036761, 1747612056901, 1747612078101, 1747612080000, 1747612082810, 1747612107814, 1747612124345, 1747612189081, 1747612200000, 1747612202985, 1747612213927, 1747612218845, 1747612223343, 1747612229385, 1747612231822, 1747612258221, 1747612260000, 1747612265998, 1747612352773, 1747612374826, 1747612380000, 1747612406619, 1747612436307, 1747612483543, 1747612553252, 1747612572139, 1747612591612, 1747612600511, 1747612648637, 1747612704398, 1747612792250, 1747612826521, 1747612901471, 1747612920000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_08\\u664217\\u5206_\\u7cfb\\u7d71105", "popup": "\\u5e73\\u65e5_08\\u664217\\u5206_\\u7cfb\\u7d71105"}, "geometry": {"type": "LineString", "coordinates": [[139.193544, 36.376037], [139.193791696238, 36.375847386113], [139.19384312415, 36.3757468970472], [139.193864231954, 36.3750866416201], [139.192420501131, 36.3750107899051], [139.191283011703, 36.3749439600732], [139.190877766326, 36.3748707685467], [139.188215261688, 36.3740334236243], [139.187787749094, 36.3739015500094], [139.186351479258, 36.3734211523327], [139.186093, 36.373312], [139.185810140626, 36.3732456102968], [139.183910317868, 36.3726903031889], [139.182748807269, 36.3723190038283], [139.182654, 36.372262], [139.182445484516, 36.372215339744], [139.181334348929, 36.371882120965], [139.18022449707, 36.37152636407], [139.179695637272, 36.3713828578841], [139.177224034756, 36.3709239565386], [139.174467311178, 36.3703987156873], [139.173093204683, 36.3701202009675], [139.172929, 36.370056], [139.172716529416, 36.3700554090731], [139.170159563141, 36.3695674225822], [139.169675953996, 36.3694795598611], [139.167089600814, 36.3689679054182], [139.166247157674, 36.3688029947526], [139.166078, 36.368758], [139.165513164945, 36.3686682019372], [139.164410427502, 36.3684681724746], [139.163992819034, 36.3684224330705], [139.16355609084, 36.3684224330705], [139.161415914257, 36.3685337940285], [139.160386996918, 36.368580184449], [139.160165, 36.36855], [139.159938135801, 36.3685931430121], [139.157727295178, 36.3686884091218], [139.156516453236, 36.3687602433741], [139.156642, 36.368657], [139.154663163539, 36.3688051324162], [139.151947367227, 36.368903468047], [139.151303873825, 36.3689387341567], [139.150809645653, 36.3689734975095], [139.150068306362, 36.3690503317618], [139.149529531887, 36.3691221660142], [139.149371, 36.369093], [139.149160320244, 36.3691783197875], [139.144826220343, 36.3698501166318], [139.142991122447, 36.3701147285327], [139.142763018608, 36.3701224788061], [139.142617, 36.370129], [139.142208267942, 36.3702504652969], [139.140842205767, 36.3704723269244], [139.139649906153, 36.3706551304134], [139.137829500721, 36.3710342675465], [139.1370878142, 36.3711948194056], [139.136955, 36.371183], [139.136780293034, 36.3712623327862], [139.131578207016, 36.3724333485757], [139.129511856471, 36.3728759598536], [139.128873373664, 36.3730289417399], [139.128581, 36.373049], [139.128330868367, 36.3731596705842], [139.125236759894, 36.3738374656621], [139.124223590557, 36.3740958441421], [139.122782193723, 36.3745486354135], [139.119563659968, 36.3757364075515], [139.119397, 36.375744], [139.119174622928, 36.3758716629786], [139.118843078613, 36.3760096624781], [139.116674916573, 36.3768140215848], [139.113047757803, 36.3781673640932], [139.112120413219, 36.3785274341161], [139.111844, 36.378578], [139.111548053425, 36.3787349773816], [139.108683687003, 36.3798099282778], [139.108212667819, 36.379990192538], [139.108094, 36.380003], [139.107931269668, 36.3800852084934], [139.107199959477, 36.3803497916607], [139.106407541482, 36.380604372986], [139.105676347694, 36.3807623587322], [139.103130931669, 36.3811958375268], [139.102154024255, 36.381354953662], [139.102022, 36.381351], [139.101896065919, 36.38139677981], [139.101523944207, 36.381462978494], [139.098468319201, 36.3819804983747], [139.09696616509, 36.3822587127249], [139.096765, 36.382249], [139.096586458075, 36.3823200884101], [139.092663669025, 36.3829917697659], [139.092481, 36.382989], [139.092343203414, 36.3830365506088], [139.089669390564, 36.3835154667262], [139.089454, 36.383513], [139.089283735798, 36.3835718411834], [139.085549866725, 36.3842055440907], [139.085372, 36.384208], [139.085234999657, 36.3842514666115], [139.081836990373, 36.3848306179552], [139.081641, 36.384842], [139.081464513517, 36.3848926716632], [139.078646910983, 36.385365443269], [139.078517, 36.385351], [139.078364229764, 36.3854088502688], [139.077702305821, 36.3854620362693], [139.077610645762, 36.3853015850697], [139.076641549862, 36.3845104340677], [139.076418112025, 36.3844462676375], [139.075799454613, 36.3844514877156], [139.075652, 36.384414], [139.075494266118, 36.3844330704709], [139.074482838206, 36.3843914771636], [139.074369837538, 36.3843592025177], [139.073489838197, 36.3843276720178], [139.073333338852, 36.3842892025177], [139.072782473773, 36.3842591048612], [139.072778781971, 36.3840125753437], [139.072733106706, 36.383878699049], [139.072798529325, 36.383762398688], [139.072904, 36.383564], [139.072299792553, 36.3834730910698], [139.072271727735, 36.3838743791595], [139.072454973766, 36.383999251887], [139.072628734349, 36.3840465362867], [139.07255421517, 36.3855363732718], [139.072479113317, 36.387104688316], [139.072448, 36.387243], [139.072460106697, 36.3873452054921], [139.072410075618, 36.3882577198371], [139.072338939373, 36.3888588229485], [139.069835621234, 36.3900818956805], [139.06939, 36.390253], [139.069187693318, 36.3903830418832], [139.068377199266, 36.3907791902159], [139.067965771353, 36.3908675987508], [139.067578131806, 36.390897591411], [139.06706070058, 36.3909589670579], [139.066850089466, 36.3909487414533], [139.064589219742, 36.3906805536298], [139.064445, 36.390637], [139.064277501482, 36.3906487341135], [139.061863277926, 36.3904091951091], [139.061776049745, 36.3909039670579], [139.061748, 36.391019], [139.061734767336, 36.3914014780677], [139.061829694585, 36.3918212567325], [139.061708295114, 36.3924930820858], [139.060470044452, 36.3924510393823], [139.060161942591, 36.3925589931268], [139.059930223013, 36.3927669481482], [139.059811739545, 36.3928517204461], [139.059698620496, 36.3935374007438], [139.059544801712, 36.3943292071023], [139.059236696554, 36.3955671678543], [139.059136172741, 36.3960530236138], [139.058920779223, 36.3971161690065], [139.059219, 36.397003]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_08\\u664217\\u5206_\\u7cfb\\u7d71114", "times": [1747610220000, 1747610220000, 1747610220000, 1747610220000, 1747610220000, 1747610220000, 1747610222957, 1747610232815, 1747610238482, 1747610244417, 1747610278762, 1747610280000, 1747610281905, 1747610287861, 1747610291674, 1747610295115, 1747610298568, 1747610303483, 1747610309246, 1747610313020, 1747610315815, 1747610319059, 1747610321658, 1747610324620, 1747610333484, 1747610335171, 1747610338609, 1747610340000, 1747610340000, 1747610340000, 1747610340000, 1747610340000, 1747610340000, 1747610340000, 1747610340000, 1747610343991, 1747610352026, 1747610396679, 1747610400000, 1747610401916, 1747610441008, 1747610454609, 1747610460000, 1747610460000, 1747610460000, 1747610460000, 1747610460000, 1747610460000, 1747610460000, 1747610460000, 1747610460989, 1747610463927, 1747610466806, 1747610477063, 1747610483029, 1747610488483, 1747610490103, 1747610491692, 1747610498345, 1747610509384, 1747610511661, 1747610518931, 1747610520000, 1747610521911, 1747610527987, 1747610534122, 1747610559613, 1747610565824, 1747610578025, 1747610580000, 1747610581689, 1747610591010, 1747610600764, 1747610610380, 1747610616295, 1747610627155, 1747610638572, 1747610640000, 1747610641306, 1747610648686, 1747610653999, 1747610661276, 1747610667698, 1747610674537, 1747610682125, 1747610688866, 1747610693352, 1747610696029, 1747610700000, 1747610702921, 1747610713423, 1747610723930, 1747610757944, 1747610760000, 1747610766598, 1747610775293, 1747610788867, 1747610793504, 1747610798471, 1747610804211, 1747610810028, 1747610814086, 1747610817754, 1747610820000, 1747610820000, 1747610820000, 1747610820000, 1747610820000, 1747610820000, 1747610820000, 1747610820000, 1747610821207, 1747610827554, 1747610837527, 1747610842780, 1747610849086, 1747610853653, 1747610856576, 1747610878219, 1747610880000, 1747610881592, 1747610938223, 1747610940000, 1747610942125, 1747610955173, 1747610998139, 1747611000000, 1747611000000, 1747611000000, 1747611000000, 1747611000000, 1747611003022, 1747611030974, 1747611056573, 1747611060000, 1747611064703, 1747611073234, 1747611131210, 1747611144284, 1747611175967, 1747611180000, 1747611180000, 1747611180000, 1747611180000, 1747611180000, 1747611180000, 1747611180000, 1747611183587, 1747611215998, 1747611227148, 1747611237870, 1747611240000, 1747611240000, 1747611240000, 1747611240000, 1747611244423, 1747611297807, 1747611300000, 1747611304303, 1747611355089, 1747611360000, 1747611362819, 1747611371043, 1747611417822, 1747611420000, 1747611421822, 1747611439947, 1747611477130, 1747611480000, 1747611487542, 1747611806053, 1747611845720, 1747611864207, 1747611900000, 1747611906712, 1747611912141, 1747611914758, 1747611916761, 1747611936901, 1747611958101, 1747611960000, 1747611962810, 1747611987814, 1747612004345, 1747612069081, 1747612080000, 1747612082985, 1747612093927, 1747612098845, 1747612103343, 1747612109385, 1747612111822, 1747612138221, 1747612140000, 1747612145998, 1747612232773, 1747612254826, 1747612260000, 1747612286619, 1747612316307, 1747612363543, 1747612433252, 1747612452139, 1747612471612, 1747612480511, 1747612528637, 1747612584398, 1747612672250, 1747612706521, 1747612781471, 1747612800000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_08\\u664217\\u5206_\\u7cfb\\u7d71114", "popup": "\\u5e73\\u65e5_08\\u664217\\u5206_\\u7cfb\\u7d71114"}, "geometry": {"type": "LineString", "coordinates": [[139.118185, 36.429014], [139.118053809428, 36.4290362581146], [139.117773576622, 36.4291878388312], [139.117440166566, 36.4292639038476], [139.115925997913, 36.4295106975675], [139.115787, 36.429514], [139.115611949621, 36.4295618858933], [139.115013233348, 36.4296786347664], [139.114692767737, 36.429800215483], [139.114413351729, 36.4299972222062], [139.113141401983, 36.4313937950322], [139.113088, 36.431439], [139.112998778965, 36.4315616955436], [139.112656271689, 36.4319098081983], [139.112366826581, 36.4320720942235], [139.11207178227, 36.432167920853], [139.111752832532, 36.4321609164641], [139.111322747868, 36.4320429427963], [139.110905372865, 36.4317757262643], [139.110643682387, 36.4315894534052], [139.110415694291, 36.4314913883005], [139.110117269685, 36.4315141242187], [139.109898844419, 36.4315948081982], [139.109747474709, 36.4317790766688], [139.109352023648, 36.4323587694257], [139.109216513726, 36.4322965272873], [139.109121353673, 36.4320516223871], [139.109113, 36.431948], [139.10902444428, 36.4318599252416], [139.108320306048, 36.4303554139378], [139.108314, 36.430257], [139.108235524962, 36.4301702937614], [139.107351795458, 36.4281325908495], [139.107232028923, 36.4278572505436], [139.107214, 36.427758], [139.107128355642, 36.427665539637], [139.107040659212, 36.4274440847376], [139.106775703523, 36.4261697960339], [139.106785, 36.426074], [139.106733837782, 36.4259930816872], [139.106312147963, 36.424171056811], [139.106092323227, 36.4235510701943], [139.10604, 36.423299], [139.105961711453, 36.4232196741506], [139.105786784864, 36.4229608990194], [139.105280895974, 36.4224512982928], [139.105165911184, 36.4222122341022], [139.105112034198, 36.42196877881], [139.105125561976, 36.4216186689564], [139.105171, 36.421486], [139.1051730256, 36.4213921922495], [139.105206145309, 36.4211148122941], [139.105171626129, 36.4208432291202], [139.104700139356, 36.4199483312256], [139.104435767659, 36.4194244142907], [139.104309704165, 36.4189173109249], [139.10424719689, 36.4187721876189], [139.104123465407, 36.4186595486467], [139.103598102308, 36.4181928415526], [139.102790988551, 36.4173741127467], [139.102735247143, 36.4171629262713], [139.102755188942, 36.4164735960583], [139.1028, 36.416379], [139.102774081138, 36.4162968221224], [139.10280008709, 36.4160279988279], [139.102560903887, 36.4158363381212], [139.101536414467, 36.4150656823413], [139.101356941577, 36.4148313377552], [139.101063997792, 36.4143444475218], [139.10104, 36.414259], [139.10093665123, 36.4141640354025], [139.100549363529, 36.4135405569585], [139.099963241833, 36.4129850220309], [139.099310065242, 36.4124958032694], [139.099128259021, 36.4120781906608], [139.098857472643, 36.4112952713682], [139.098697239838, 36.4104506447942], [139.098706, 36.410344], [139.098672167086, 36.4102518337912], [139.098563129387, 36.4097161920842], [139.098521497111, 36.4093268182686], [139.098398931634, 36.4088007524653], [139.098243479914, 36.4083453868027], [139.098032518272, 36.4078720690861], [139.097734792742, 36.4073685234404], [139.097581207422, 36.4068883909356], [139.097624239829, 36.4065602840122], [139.097650012316, 36.4063644123495], [139.097612, 36.406074], [139.0975156684, 36.4059676690241], [139.097308555303, 36.4055245565731], [139.097163716016, 36.4050653146646], [139.096805116147, 36.4035586878638], [139.096802, 36.403466], [139.096685000403, 36.4031239880097], [139.096460977255, 36.402692883812], [139.096066226589, 36.4020363797424], [139.095927918385, 36.4018134820247], [139.095689550661, 36.4016284930885], [139.095359173012, 36.4014737500323], [139.09500908571, 36.4013405732431], [139.094763605548, 36.4012496768209], [139.094519757663, 36.4012564994176], [139.094377, 36.401221], [139.094246055941, 36.401233097832], [139.09337013861, 36.4012246962463], [139.093160810563, 36.4011858268706], [139.092909732519, 36.401100378506], [139.092256323122, 36.4008829027877], [139.091623671662, 36.4006542867324], [139.091524, 36.400586], [139.091426237798, 36.4005756609644], [139.090952069806, 36.4004065868318], [139.090218893214, 36.4001202320251], [139.089883501015, 36.3999041176326], [139.089494347572, 36.3996316385366], [139.08919335683, 36.3994537018545], [139.088973066483, 36.399379400776], [139.087210737108, 36.3992748667236], [139.087074, 36.399235], [139.086978785384, 36.3992500996974], [139.083535527425, 36.399068293087], [139.083437, 36.399032], [139.083290631916, 36.3990471212073], [139.082386608767, 36.3990023541812], [139.081738798572, 36.4013560316276], [139.081688, 36.401452], [139.081685037989, 36.4015255621794], [139.081539149099, 36.4021521395102], [139.080418218536, 36.4020525427598], [139.080309, 36.402026], [139.080151280703, 36.4020386836495], [139.078692975796, 36.4019209543652], [139.077361316397, 36.4020566366863], [139.077182, 36.402048], [139.076990938748, 36.4020848245393], [139.076637237026, 36.4021189184658], [139.07422067882, 36.4020016477501], [139.073686106714, 36.4020912113091], [139.073081094142, 36.4011401446109], [139.073046, 36.401007], [139.072930890437, 36.4008699495667], [139.072417538583, 36.4000595752187], [139.072290075618, 36.3997175620703], [139.072202379188, 36.3993716967607], [139.072175906966, 36.3989448964238], [139.072214, 36.398728], [139.07219701477, 36.3986049174553], [139.072206694003, 36.397486098013], [139.072248909612, 36.3971027385708], [139.072411941359, 36.3967568510205], [139.072483, 36.396711], [139.072481328926, 36.396617993455], [139.072985584221, 36.3955132664518], [139.073057, 36.395433], [139.07308505909, 36.3953041836083], [139.073737535945, 36.3938164875693], [139.073781, 36.393762], [139.073813104068, 36.3936446731693], [139.074390595474, 36.3923058102549], [139.074473, 36.392186], [139.074500916241, 36.3920519417878], [139.074629196004, 36.391669212523], [139.073151531312, 36.3897559741612], [139.073116, 36.389655], [139.073037129195, 36.389609831756], [139.072522610675, 36.3889532188468], [139.072610424826, 36.3873601599962], [139.072657, 36.387243], [139.072626168213, 36.3871810578609], [139.07276284414, 36.3843637518094], [139.072777071653, 36.3840128081844], [139.072740336865, 36.3838518751115], [139.072904, 36.383564], [139.072299792553, 36.3834730910698], [139.072271727735, 36.3838743791595], [139.072454973766, 36.383999251887], [139.072628734349, 36.3840465362867], [139.07255421517, 36.3855363732718], [139.072479113317, 36.387104688316], [139.072448, 36.387243], [139.072460106697, 36.3873452054921], [139.072410075618, 36.3882577198371], [139.072338939373, 36.3888588229485], [139.069835621234, 36.3900818956805], [139.06939, 36.390253], [139.069187693318, 36.3903830418832], [139.068377199266, 36.3907791902159], [139.067965771353, 36.3908675987508], [139.067578131806, 36.390897591411], [139.06706070058, 36.3909589670579], [139.066850089466, 36.3909487414533], [139.064589219742, 36.3906805536298], [139.064445, 36.390637], [139.064277501482, 36.3906487341135], [139.061863277926, 36.3904091951091], [139.061776049745, 36.3909039670579], [139.061748, 36.391019], [139.061734767336, 36.3914014780677], [139.061829694585, 36.3918212567325], [139.061708295114, 36.3924930820858], [139.060470044452, 36.3924510393823], [139.060161942591, 36.3925589931268], [139.059930223013, 36.3927669481482], [139.059811739545, 36.3928517204461], [139.059698620496, 36.3935374007438], [139.059544801712, 36.3943292071023], [139.059236696554, 36.3955671678543], [139.059136172741, 36.3960530236138], [139.058920779223, 36.3971161690065], [139.059219, 36.397003]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_08\\u664217\\u5206_\\u7cfb\\u7d71239", "times": [1747610220000, 1747610223171, 1747610236174, 1747610248579, 1747610251221, 1747610254509, 1747610263745, 1747610270840, 1747610274057, 1747610280000, 1747610292910, 1747610329150, 1747610340000, 1747610340000, 1747610340000, 1747610340000, 1747610361659, 1747610380638, 1747610401236, 1747610416339, 1747610448177, 1747610460000, 1747610467961, 1747610495067, 1747610517757, 1747610520000, 1747610531597, 1747610832712, 1747610843209, 1747610885019, 1747610933748, 1747610989114, 1747611000000, 1747611002424, 1747611005361, 1747611057805, 1747611060000, 1747611062315, 1747611098874, 1747611118340, 1747611120000, 1747611122061, 1747611144370, 1747611169725, 1747611178194, 1747611180000, 1747611180000, 1747611180000, 1747611180000, 1747611182805, 1747611235475, 1747611240000, 1747611242548, 1747611274278, 1747611297900, 1747611300000, 1747611300000, 1747611300000, 1747611300000, 1747611302900, 1747611312768, 1747611316642, 1747611325006, 1747611334386, 1747611360000, 1747611361954, 1747611373080, 1747611379384, 1747611404801, 1747611418711, 1747611420000, 1747611420000, 1747611420000, 1747611420000, 1747611427286, 1747611459656, 1747611528043, 1747611582697, 1747611589412, 1747611600000, 1747611605203, 1747611609856, 1747611650427, 1747611690860, 1747611715186, 1747611720000, 1747611722208, 1747611778172, 1747611780000, 1747611781436, 1747611796334, 1747611803546, 1747611807184, 1747611811849, 1747611818809, 1747611823950, 1747611832280, 1747611838402, 1747611840000, 1747611843712, 1747611874156, 1747611879123, 1747611897256, 1747611900000, 1747611903921, 1747611915212, 1747611926089, 1747611936531, 1747611947220, 1747611957021, 1747611966463, 1747612006426, 1747612015804, 1747612022524, 1747612052019, 1747612057239, 1747612060103, 1747612064118, 1747612066926, 1747612069789, 1747612072595, 1747612074654, 1747612080000, 1747612081610, 1747612092294, 1747612114655, 1747612123683, 1747612140000, 1747612142620, 1747612145127, 1747612147171, 1747612150255, 1747612153704, 1747612157922, 1747612164335, 1747612170125, 1747612176177, 1747612184902, 1747612191098, 1747612199127, 1747612200000, 1747612200000, 1747612200000, 1747612200000, 1747612200000, 1747612200000, 1747612200000, 1747612200000, 1747612200000, 1747612201432, 1747612212659, 1747612218638, 1747612229751, 1747612239415, 1747612246862, 1747612257722, 1747612260000, 1747612263253, 1747612266092, 1747612267956, 1747612276984, 1747612282253, 1747612286453, 1747612288721, 1747612291987, 1747612296623, 1747612306253, 1747612314452, 1747612318754, 1747612320000, 1747612326316, 1747612333401, 1747612337900, 1747612342834, 1747612355813, 1747612363629, 1747612380000, 1747612381935, 1747612438186, 1747612440000, 1747612440000, 1747612440000, 1747612440000, 1747612440000, 1747612441804, 1747612476131, 1747612498317, 1747612500000, 1747612504008, 1747612556857, 1747612560000, 1747612561094, 1747612566169, 1747612567192, 1747612577193, 1747612580215, 1747612583652, 1747612586441, 1747612596178, 1747612599498, 1747612604256, 1747612608816, 1747612612569, 1747612618901, 1747612620000, 1747612621842, 1747612662594, 1747612669651, 1747612676080, 1747612680000, 1747612705851, 1747613015330, 1747613100000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_08\\u664217\\u5206_\\u7cfb\\u7d71239", "popup": "\\u5e73\\u65e5_08\\u664217\\u5206_\\u7cfb\\u7d71239"}, "geometry": {"type": "LineString", "coordinates": [[139.059257, 36.395815], [139.059270672081, 36.3954753068441], [139.059596227646, 36.3941070167822], [139.059887268648, 36.3927986834488], [139.060138112568, 36.3926011050108], [139.060545344046, 36.3924756581939], [139.061768316273, 36.3925195908254], [139.061910937972, 36.3917680748688], [139.061765787179, 36.3914439755871], [139.061917, 36.390819], [139.061943590092, 36.3904756280848], [139.063123180044, 36.3906275944005], [139.06347, 36.390698], [139.065312095406, 36.3908819951024], [139.066081072925, 36.390957601485], [139.066303, 36.391013], [139.067029407592, 36.3910312326963], [139.067661710503, 36.3909700234733], [139.068333039874, 36.3908371404991], [139.068796673475, 36.3906716865977], [139.069706098084, 36.3902184986611], [139.070069, 36.390089], [139.070587067668, 36.3897766469739], [139.072480785933, 36.388871115803], [139.072613729059, 36.3873859244999], [139.072657, 36.387243], [139.072632232366, 36.3871262807022], [139.072794390433, 36.3840544489761], [139.07276243673, 36.3839504261375], [139.072887480381, 36.3835356462157], [139.072278646388, 36.3834634631428], [139.072224652999, 36.3840271162938], [139.072342, 36.384085], [139.072460425486, 36.38398089795], [139.072648034613, 36.3840606725959], [139.07248016292, 36.3871176437477], [139.072448, 36.387243], [139.072467684746, 36.3873415230417], [139.072445526679, 36.3889175063718], [139.072959345463, 36.3896466520092], [139.072981, 36.389716], [139.073086692025, 36.389768026693], [139.073778467827, 36.3906951097604], [139.074604706585, 36.3917285329458], [139.074409604073, 36.3921080798945], [139.07436, 36.392186], [139.074368787934, 36.3922530820858], [139.073835611343, 36.3934378556375], [139.073759, 36.393524], [139.073766807109, 36.3935917175436], [139.073229432106, 36.3947921550034], [139.073142, 36.394876], [139.07315281438, 36.3949730549069], [139.072672932761, 36.3961227632447], [139.072280979718, 36.3969686625439], [139.072225, 36.397035], [139.072159463844, 36.3974268197045], [139.072125061727, 36.3987815067711], [139.072096, 36.398861], [139.072114332891, 36.3989819358238], [139.072150484347, 36.3993953243097], [139.072191650352, 36.3995546170266], [139.072283311729, 36.3998979945715], [139.072492990303, 36.4002536433234], [139.073057, 36.401228], [139.073171936743, 36.4013497629632], [139.073653570998, 36.4021296768209], [139.074248205261, 36.402015965429], [139.076707446006, 36.4021330234561], [139.076881201314, 36.4010522011026], [139.076919, 36.400956], [139.076924466525, 36.400815407644], [139.07711828531, 36.3994373541812], [139.077166, 36.399347], [139.077168313751, 36.3992328201289], [139.077225339546, 36.3987276038782], [139.078544637173, 36.3988335391606], [139.079602710593, 36.3988789962554], [139.07960212726, 36.3987737642027], [139.079805, 36.398799], [139.079968307157, 36.398796267708], [139.079951397105, 36.3989135391606], [139.081223578998, 36.3989598894133], [139.082489467228, 36.3990330680449], [139.083251214589, 36.3990755645396], [139.083399, 36.399101], [139.083533428219, 36.3990860146238], [139.086963041998, 36.3992898667236], [139.087074, 36.399304], [139.087190096234, 36.3992891761638], [139.088405953385, 36.3993623290964], [139.088993124684, 36.3994109814231], [139.089265077068, 36.3995089348284], [139.089562102203, 36.3997027866825], [139.089988340301, 36.4000082191838], [139.090333412394, 36.4002027448746], [139.090958833694, 36.4004220351964], [139.091416558565, 36.4005867915887], [139.091524, 36.400647], [139.091683146531, 36.4007124641357], [139.093038012941, 36.4011613043734], [139.093263667047, 36.4012246865336], [139.094135268903, 36.4012494526386], [139.094265, 36.401269], [139.094389962027, 36.4012494526386], [139.094756491792, 36.4012508074452], [139.095074042059, 36.4013755732431], [139.095376667715, 36.4014989848486], [139.09567544021, 36.4016416256225], [139.095896081085, 36.4018268936301], [139.096060278178, 36.4020361338624], [139.096596954106, 36.4029908614944], [139.096688382018, 36.4032255760972], [139.096735031482, 36.4033978341523], [139.0958113, 36.4036014569724], [139.095658297354, 36.4035425984149], [139.095592291401, 36.403595526069], [139.095558821166, 36.4036973626774], [139.095641970634, 36.4037275596347], [139.095730366799, 36.4037507489616], [139.095778530159, 36.4036882420786], [139.095817946826, 36.4036446069664], [139.095987, 36.403613], [139.096083485189, 36.4035813763413], [139.096744009661, 36.403418423673], [139.097024591015, 36.4045646921983], [139.097109372101, 36.4050314572126], [139.097387, 36.405854], [139.097505872765, 36.4060394617547], [139.097573161125, 36.4062316985509], [139.097613977263, 36.4063912215485], [139.097596600941, 36.4066366162088], [139.097570828454, 36.4069106951409], [139.097645114168, 36.4072415290148], [139.097902723296, 36.4077082661984], [139.098142139304, 36.4081271945278], [139.098315550019, 36.4085887427382], [139.098482546714, 36.4092709147746], [139.098554499757, 36.4097612536504], [139.098659922376, 36.4103954463545], [139.098658, 36.410465], [139.098747385341, 36.410900116675], [139.098827384682, 36.4113145223217], [139.099040795397, 36.4119103089559], [139.099304585081, 36.4125422414548], [139.099926042094, 36.4129913879014], [139.100573271594, 36.4136045339731], [139.10088440652, 36.4141497183992], [139.100933, 36.414238], [139.100999624775, 36.4142866896079], [139.101316825175, 36.4147947803242], [139.101507378088, 36.4150557641766], [139.102010351634, 36.4154457096198], [139.102466909839, 36.4157678951836], [139.102769534177, 36.4160553522391], [139.102749824524, 36.4166056167871], [139.102708, 36.416716], [139.102719970027, 36.4170036694144], [139.102711106932, 36.4172546981187], [139.10279962016, 36.4174032717946], [139.103410931669, 36.4180306668609], [139.103784690933, 36.4183856351632], [139.104096526914, 36.4186586167686], [139.104246031544, 36.418818771407], [139.10432719623, 36.4191000975944], [139.104432852315, 36.4195012800126], [139.104858741205, 36.4202804659738], [139.105170693588, 36.4209605296945], [139.105153433669, 36.4213408253961], [139.105117, 36.421447], [139.105094541473, 36.4217393523831], [139.105096290812, 36.4220679147566], [139.10516847732, 36.4222682406235], [139.105292208802, 36.4224740322452], [139.105730342402, 36.4229607201741], [139.105973023622, 36.423265536484], [139.106201, 36.424002], [139.106261302725, 36.4240777152423], [139.106849989237, 36.4266507451235], [139.106855, 36.426735], [139.106902933682, 36.426811132795], [139.107051038181, 36.4275303679175], [139.107134303393, 36.4276893860327], [139.107134, 36.427779], [139.107199376144, 36.4278429342774], [139.107843106308, 36.4293324912873], [139.10827086028, 36.4302918279725], [139.108277, 36.430369], [139.108339897979, 36.4304705803127], [139.109001820602, 36.4318694534052], [139.109022, 36.431957], [139.109078787536, 36.4320264577939], [139.109260828541, 36.4323834621826], [139.109357038198, 36.4323807956349], [139.109825724711, 36.4317208433077], [139.110021292174, 36.4315538645255], [139.110341292834, 36.4315152800346], [139.110594819952, 36.4315707518709], [139.111278317969, 36.432064383912], [139.111560648003, 36.4321727306531], [139.11200601308, 36.4322116699372], [139.112413940997, 36.4321036267758], [139.112682744571, 36.4319182500394], [139.113038778305, 36.4315318601369], [139.113126, 36.431487], [139.11316262619, 36.4314069552368], [139.114561923817, 36.4298955341143], [139.114903846441, 36.4297209441865], [139.115257665225, 36.4296377379064], [139.115481, 36.429618], [139.115649850415, 36.4295848791702], [139.117683318013, 36.4292310787271], [139.118185, 36.429014]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_08\\u664219\\u5206_\\u7cfb\\u7d71104", "times": [1747610340000, 1747610343171, 1747610356174, 1747610368579, 1747610371221, 1747610374509, 1747610383745, 1747610390840, 1747610394057, 1747610400000, 1747610412910, 1747610449150, 1747610460000, 1747610460000, 1747610460000, 1747610460000, 1747610481659, 1747610500638, 1747610521236, 1747610536339, 1747610568177, 1747610580000, 1747610587961, 1747610615067, 1747610637757, 1747610640000, 1747610670900, 1747610941308, 1747610959972, 1747610987049, 1747611015607, 1747611041886, 1747611078005, 1747611093178, 1747611120000, 1747611120000, 1747611120000, 1747611120000, 1747611120000, 1747611164816, 1747611185384, 1747611201925, 1747611209515, 1747611240000, 1747611300000, 1747611360000, 1747611420000, 1747611480000, 1747611540000, 1747611592462, 1747611600000, 1747611640362, 1747611668330, 1747611686450, 1747611713916, 1747611720000, 1747611723582, 1747611744678, 1747611765436, 1747611777542, 1747611780000, 1747611783221, 1747611810905, 1747611834033, 1747611838301, 1747611840000, 1747611843085, 1747611876718, 1747611888708, 1747611908932, 1747611956401, 1747611960000, 1747611965355, 1747612022534, 1747612067862, 1747612078005, 1747612080000, 1747612082720, 1747612108816, 1747612138407, 1747612140000, 1747612141616, 1747612159873, 1747612182505, 1747612198748, 1747612200000, 1747612202057, 1747612205760, 1747612217286, 1747612232185, 1747612240582, 1747612258427, 1747612260000, 1747612266266, 1747612302893, 1747612351603, 1747612376725, 1747612380000, 1747612382940, 1747612410938, 1747612414704, 1747612420747, 1747612430132, 1747612440000, 1747612441328, 1747612465684, 1747612481883, 1747612489699, 1747612499143, 1747612500000, 1747612501183, 1747612503678, 1747612519815, 1747612530957, 1747612538323, 1747612544658, 1747612551670, 1747612560000, 1747612567152, 1747612597897, 1747612617441, 1747612620000, 1747612628866, 1747612677734, 1747612744924, 1747612756735, 1747612770401, 1747612782010, 1747612865677, 1747612889175, 1747612896216, 1747612909563, 1747612913748, 1747612916678, 1747612920000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_08\\u664219\\u5206_\\u7cfb\\u7d71104", "popup": "\\u5e73\\u65e5_08\\u664219\\u5206_\\u7cfb\\u7d71104"}, "geometry": {"type": "LineString", "coordinates": [[139.059257, 36.395815], [139.059270672081, 36.3954753068441], [139.059596227646, 36.3941070167822], [139.059887268648, 36.3927986834488], [139.060138112568, 36.3926011050108], [139.060545344046, 36.3924756581939], [139.061768316273, 36.3925195908254], [139.061910937972, 36.3917680748688], [139.061765787179, 36.3914439755871], [139.061917, 36.390819], [139.061943590092, 36.3904756280848], [139.063123180044, 36.3906275944005], [139.06347, 36.390698], [139.065312095406, 36.3908819951024], [139.066081072925, 36.390957601485], [139.066303, 36.391013], [139.067029407592, 36.3910312326963], [139.067661710503, 36.3909700234733], [139.068333039874, 36.3908371404991], [139.068796673475, 36.3906716865977], [139.069706098084, 36.3902184986611], [139.070069, 36.390089], [139.070587067668, 36.3897766469739], [139.072480785933, 36.388871115803], [139.072613729059, 36.3873859244999], [139.072657, 36.387243], [139.072621815037, 36.3869571255136], [139.072755613981, 36.3844454008148], [139.072777578263, 36.3842727816293], [139.072766226414, 36.3840212126052], [139.072667256837, 36.3837680460509], [139.072831571652, 36.3835630065444], [139.072425546519, 36.3834923880745], [139.072265702602, 36.3835488963651], [139.072197, 36.383792], [139.072286188053, 36.3839648301134], [139.072593476414, 36.3840381832001], [139.072595030648, 36.3843418303382], [139.074836, 36.384465], [139.076554012153, 36.3845202229314], [139.07712827539, 36.3849578112592], [139.077568157668, 36.3853276938634], [139.077651927512, 36.3855531744472], [139.07881, 36.385421], [139.081566, 36.384963], [139.086358, 36.384166], [139.089288, 36.383677], [139.092342, 36.383141], [139.096668, 36.382404], [139.101322889328, 36.3816113572056], [139.102, 36.381536], [139.10422398856, 36.3811221669423], [139.105774384072, 36.3808704544357], [139.10675370022, 36.3806270752623], [139.108181532233, 36.3801332776599], [139.108513, 36.380059], [139.108790392031, 36.3798841145181], [139.110668753161, 36.3791783607915], [139.11254043174, 36.3785261382287], [139.113611644709, 36.3781095789406], [139.113845, 36.37806], [139.114116482017, 36.3779060303392], [139.11670224791, 36.3769379612674], [139.118854546865, 36.3761157027948], [139.119268733379, 36.3759973074122], [139.11944, 36.375969], [139.119662550844, 36.3758227130704], [139.12251592122, 36.3747894804846], [139.123537605104, 36.3744294074176], [139.125308835275, 36.373920041693], [139.129573359099, 36.3730041735722], [139.129906, 36.372976], [139.13028250331, 36.3728456063935], [139.134495128995, 36.3718958693428], [139.137839648862, 36.3711577776003], [139.138594749396, 36.3710141120425], [139.138747, 36.371006], [139.138906818183, 36.3709411270866], [139.140577484861, 36.3706260468028], [139.142490366489, 36.3703402853033], [139.142595, 36.370337], [139.142771998106, 36.3702866182721], [139.14485514164, 36.3699722144767], [139.147436826183, 36.3695800604079], [139.149290116539, 36.3693002122896], [139.149435, 36.369309], [139.149674138369, 36.3692395030234], [139.150126495525, 36.3691853612244], [139.15153990624, 36.3690503612244], [139.153377802418, 36.3689825803834], [139.1544041556, 36.3688630242151], [139.156604966463, 36.3687734385844], [139.156753, 36.368875], [139.156941175461, 36.3687661605003], [139.15829044069, 36.368694326248], [139.160086590167, 36.3686238529536], [139.161013818348, 36.3686079358275], [139.161131, 36.368632], [139.161377549171, 36.3685702139116], [139.163830957249, 36.3684522553485], [139.164160048534, 36.3684776991803], [139.16468622909, 36.3685324625331], [139.165484827641, 36.3686961310377], [139.166322, 36.368876], [139.166477008874, 36.3688760417033], [139.169241786003, 36.3694084068859], [139.171078166308, 36.3697705609547], [139.171966676897, 36.3699369782593], [139.173035829021, 36.3701529512409], [139.173127, 36.370186], [139.173340084316, 36.3701982155703], [139.173773666998, 36.3702964648556], [139.176612615417, 36.3708228795817], [139.178567129321, 36.3712057090338], [139.179862284099, 36.3714488005436], [139.180927237151, 36.3717852381017], [139.182107759645, 36.372154188365], [139.183507, 36.372599], [139.183884895908, 36.3727089417398], [139.18549492303, 36.3732124175423], [139.186517311265, 36.3735347668238], [139.186645, 36.373588], [139.186901450157, 36.3736582185663], [139.188292701487, 36.3740946489411], [139.19021083113, 36.3746836581227], [139.190545056005, 36.3747932572535], [139.190941089739, 36.374899662279], [139.191282546752, 36.3749767261795], [139.193832050062, 36.3751113007592], [139.193835427061, 36.3756915775448], [139.193749596372, 36.3758509821312], [139.193433212111, 36.3760587679382], [139.19348359108, 36.3761537479306], [139.193561258409, 36.3761178333216], [139.193544, 36.376037]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_08\\u664222\\u5206_\\u7cfb\\u7d71169", "times": [1747610520000, 1747610523171, 1747610536174, 1747610548579, 1747610551221, 1747610554509, 1747610563745, 1747610570840, 1747610574057, 1747610580000, 1747610592910, 1747610629150, 1747610640000, 1747610640000, 1747610640000, 1747610640000, 1747610661659, 1747610680638, 1747610701236, 1747610716339, 1747610748177, 1747610760000, 1747610767961, 1747610795067, 1747610817757, 1747610820000, 1747610850900, 1747611121308, 1747611139972, 1747611167049, 1747611195607, 1747611221886, 1747611258005, 1747611273178, 1747611300000, 1747611300000, 1747611300000, 1747611300000, 1747611300000, 1747611303094, 1747611343466, 1747611356916, 1747611360000, 1747611362357, 1747611417970, 1747611420000, 1747611422675, 1747611451568, 1747611537907, 1747611540000, 1747611540000, 1747611540000, 1747611540000, 1747611542773, 1747611578573, 1747611597933, 1747611600000, 1747611600000, 1747611600000, 1747611630282, 1747611645379, 1747611652577, 1747611658177, 1747611665842, 1747611692872, 1747611711079, 1747611717588, 1747611720000, 1747611728168, 1747611781995, 1747611813684, 1747611848934, 1747611873264, 1747611917089, 1747611931731, 1747611949712, 1747611960000, 1747611960000, 1747611960000, 1747611960000, 1747611960000, 1747611978230, 1747611987906, 1747611995852, 1747612017647, 1747612020000, 1747612023518, 1747612030578, 1747612053344, 1747612075650, 1747612079549, 1747612080000, 1747612081297, 1747612085519, 1747612096575, 1747612109842, 1747612127233, 1747612140067, 1747612158638, 1747612164490, 1747612169395, 1747612180275, 1747612183385, 1747612189319, 1747612199120, 1747612200000, 1747612202493, 1747612240064, 1747612258480, 1747612260000, 1747612261098, 1747612285820, 1747612309617, 1747612318851, 1747612320000, 1747612321489, 1747612342753, 1747612346510, 1747612350085, 1747612356087, 1747612374468, 1747612380000, 1747612382267, 1747612389512, 1747612401464, 1747612411701, 1747612438635, 1747612440000, 1747612443561, 1747612495909, 1747612500000, 1747612503236, 1747612524198, 1747612540775, 1747612553976, 1747612564433, 1747612575591, 1747612617478, 1747612620000, 1747612622801, 1747612632567, 1747612676709, 1747612680000, 1747612684732, 1747612720148, 1747612725186, 1747612733376, 1747612737015, 1747612740000, 1747612740000, 1747612740000, 1747612740000, 1747612740000, 1747612740000, 1747612740000, 1747612740000, 1747612756002, 1747612894026, 1747613024456, 1747613050044, 1747613089170, 1747613100000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_08\\u664222\\u5206_\\u7cfb\\u7d71169", "popup": "\\u5e73\\u65e5_08\\u664222\\u5206_\\u7cfb\\u7d71169"}, "geometry": {"type": "LineString", "coordinates": [[139.059257, 36.395815], [139.059270672081, 36.3954753068441], [139.059596227646, 36.3941070167822], [139.059887268648, 36.3927986834488], [139.060138112568, 36.3926011050108], [139.060545344046, 36.3924756581939], [139.061768316273, 36.3925195908254], [139.061910937972, 36.3917680748688], [139.061765787179, 36.3914439755871], [139.061917, 36.390819], [139.061943590092, 36.3904756280848], [139.063123180044, 36.3906275944005], [139.06347, 36.390698], [139.065312095406, 36.3908819951024], [139.066081072925, 36.390957601485], [139.066303, 36.391013], [139.067029407592, 36.3910312326963], [139.067661710503, 36.3909700234733], [139.068333039874, 36.3908371404991], [139.068796673475, 36.3906716865977], [139.069706098084, 36.3902184986611], [139.070069, 36.390089], [139.070587067668, 36.3897766469739], [139.072480785933, 36.388871115803], [139.072613729059, 36.3873859244999], [139.072657, 36.387243], [139.072621815037, 36.3869571255136], [139.072755613981, 36.3844454008148], [139.072777578263, 36.3842727816293], [139.072766226414, 36.3840212126052], [139.072667256837, 36.3837680460509], [139.072831571652, 36.3835630065444], [139.072425546519, 36.3834923880745], [139.072265702602, 36.3835488963651], [139.072197, 36.383792], [139.072286188053, 36.3839648301134], [139.072593476414, 36.3840381832001], [139.072595030648, 36.3843418303382], [139.074836, 36.384465], [139.074940795882, 36.3844362359813], [139.076382195353, 36.3845041919657], [139.076415896416, 36.3841162254292], [139.076444, 36.38403], [139.076419511495, 36.3839484789709], [139.076515021417, 36.3819714110803], [139.076562, 36.38191], [139.076523272078, 36.3817975221413], [139.076569744301, 36.3805374418317], [139.076768198667, 36.3767736843573], [139.076803714286, 36.376687], [139.076778927503, 36.3765596607031], [139.076859364673, 36.3747359690427], [139.07691560343, 36.3746614978989], [139.076880880547, 36.3745372851962], [139.076963125256, 36.37289515565], [139.077022133855, 36.3720076648913], [139.077064990997, 36.3719193423341], [139.077047148405, 36.3718031834069], [139.077325398407, 36.3682314567737], [139.077412016133, 36.3669745763016], [139.0781877291, 36.3669917501654], [139.078554578972, 36.3669531430416], [139.078821137837, 36.3668652787406], [139.079175160326, 36.3667254793563], [139.080303728458, 36.3660700980756], [139.081066846848, 36.365632055174], [139.081335067749, 36.3654702957868], [139.081448, 36.365429], [139.08153961537, 36.3653486637464], [139.082263579657, 36.3649294065477], [139.082627542627, 36.3646242749457], [139.082952595538, 36.3642327383123], [139.083145558504, 36.3639470832035], [139.083372147789, 36.3633901170829], [139.083141010884, 36.3633316075762], [139.083092497657, 36.3635689583984], [139.083218, 36.363476], [139.083241807182, 36.3633803427552], [139.083356792632, 36.3634468377844], [139.083884215916, 36.3622411256014], [139.084388, 36.361156], [139.084850394494, 36.3600189127137], [139.085082812489, 36.3594119880879], [139.085242774128, 36.3589065435092], [139.085745824396, 36.3575345916174], [139.085825, 36.357394], [139.085884210641, 36.3571436319018], [139.086046115403, 36.3566492011493], [139.086611245037, 36.3550643536985], [139.087178784725, 36.3535148629043], [139.087270563164, 36.3532423387193], [139.0873, 36.35322], [139.087307880625, 36.3531142808382], [139.087429746366, 36.3527841357286], [139.087773535391, 36.3519256785506], [139.088182630632, 36.3508947352456], [139.088744028784, 36.3495499832363], [139.089151141221, 36.3485556475598], [139.089753355511, 36.3471203681178], [139.089928865433, 36.3466643503411], [139.090084899826, 36.3462844261661], [139.090432187527, 36.3454420604015], [139.090559417686, 36.3452100950355], [139.090850495731, 36.3447868403018], [139.091333876686, 36.3440890148523], [139.091415, 36.34406], [139.091438482508, 36.3439540834348], [139.092386818493, 36.3425254579724], [139.092868916381, 36.3418329259698], [139.092928, 36.341788], [139.092932939529, 36.3417212591254], [139.09382879734, 36.3404033353848], [139.094687104225, 36.3391329222661], [139.095030426979, 36.3386446291119], [139.09509, 36.338594], [139.095132350922, 36.3384977090478], [139.095973049338, 36.3372074010796], [139.096123602251, 36.3369802733018], [139.096258295375, 36.3367605402556], [139.096382260323, 36.3363612621896], [139.096736428315, 36.3351333150762], [139.096854, 36.334766], [139.096885466014, 36.3345809940497], [139.09703800305, 36.333997243884], [139.095829725266, 36.3338825297703], [139.094792526845, 36.333801600859], [139.092055040714, 36.3336814555098], [139.091925, 36.333642], [139.091703788065, 36.3336482406577], [139.088456915686, 36.3334810597641], [139.088212, 36.333426], [139.08809073579, 36.3334453085747], [139.087298084989, 36.3333550581783], [139.086672780751, 36.3332754862966], [139.0861705076, 36.3332409144149], [139.08577144146, 36.3332299855036], [139.085346946765, 36.3331999855036], [139.085750333655, 36.3319476719826], [139.085804, 36.331883], [139.085790799926, 36.3318132023866], [139.085866601513, 36.3315748367849], [139.086183801913, 36.3304923980879], [139.086238, 36.330422], [139.086270448739, 36.3302430979292], [139.086667065146, 36.3289286658311], [139.086904383267, 36.3289418413337], [139.087282224541, 36.3290084499871], [139.087450854171, 36.3290350586405], [139.087585, 36.32907], [139.08773306912, 36.3290762411393], [139.088250502325, 36.3291514932541], [139.088932716615, 36.3292469974836], [139.089468691488, 36.3292791103665], [139.089903791362, 36.3292870755585], [139.090538426944, 36.3292657190199], [139.090669, 36.329269], [139.090830668357, 36.329236571329], [139.09226203543, 36.3291376757529], [139.093617719296, 36.3290801367154], [139.093883374062, 36.3290648846007], [139.094290487159, 36.3290725976779], [139.094398, 36.3291]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_08\\u664230\\u5206_\\u7cfb\\u7d71159", "times": [1747611000000, 1747611004859, 1747611009788, 1747611058838, 1747611060000, 1747611064490, 1747611107998, 1747611214944, 1747611240000, 1747611243851, 1747611276686, 1747611314019, 1747611319172, 1747611356822, 1747611360000, 1747611365753, 1747611444982, 1747611477111, 1747611480000, 1747611488872, 1747611630591, 1747611652042, 1747611660000, 1747611667680, 1747611680836, 1747611709676, 1747611757081, 1747611780000, 1747611782177, 1747611819584, 1747611840000, 1747611861300, 1747611889539, 1747611900000, 1747611906718, 1747611940286, 1747611950098, 1747611954738, 1747611963324, 1747611982119, 1747612012899, 1747612017638, 1747612020000, 1747612021582, 1747612023455, 1747612042817, 1747612051058, 1747612055521, 1747612059492, 1747612075509, 1747612080000, 1747612082061, 1747612094450, 1747612132398, 1747612140000, 1747612164325, 1747612220480, 1747612287627, 1747612353809, 1747612362258, 1747612382081, 1747612416600, 1747612421400, 1747612440000, 1747612455473, 1747612470396, 1747612492414, 1747612512057, 1747612522217, 1747612541386, 1747612560000, 1747612589072, 1747612620000, 1747612635796, 1747612638589, 1747612678504, 1747612680000, 1747612682750, 1747612729523, 1747612821182, 1747612860000, 1747612879385, 1747612919215, 1747612920000, 1747612935216, 1747612945537, 1747612978970, 1747612980000, 1747613074878, 1747613100000, 1747613114557, 1747613132405, 1747613133516, 1747613134248, 1747613139804, 1747613146668, 1747613159112, 1747613160000, 1747613225746, 1747613321830, 1747613455970, 1747613464558, 1747613503983, 1747613509802, 1747613520000, 1747613525611, 1747613528211, 1747613537103, 1747613541038, 1747613609012, 1747613657567, 1747613700000, 1747613701420, 1747613738939, 1747613760000, 1747613817799, 1747613820000, 1747613822566, 1747613884232, 1747613935460, 1747613940000, 1747614000000, 1747614047003, 1747614050189, 1747614093680, 1747614120000, 1747614181953, 1747614233148, 1747614240000, 1747614243654, 1747614281445, 1747614297657, 1747614300000, 1747614309340, 1747614377158, 1747614386697, 1747614442179, 1747614457162, 1747614490036, 1747614507105, 1747614522694, 1747614549193, 1747614583980], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_08\\u664230\\u5206_\\u7cfb\\u7d71159", "popup": "\\u5e73\\u65e5_08\\u664230\\u5206_\\u7cfb\\u7d71159"}, "geometry": {"type": "LineString", "coordinates": [[139.072229, 36.383658], [139.072268851411, 36.3839664349553], [139.072645294533, 36.3840460053511], [139.07248016292, 36.3871735546112], [139.072448, 36.387243], [139.072461388446, 36.3873494849729], [139.072393516094, 36.3883851664957], [139.069258128509, 36.3881156956785], [139.069154, 36.388707], [139.069151540544, 36.3888011792427], [139.069023493587, 36.3895975545407], [139.068857546496, 36.3905007494777], [139.068994457207, 36.3905610023924], [139.069972880494, 36.3900896260603], [139.070069, 36.390089], [139.070196203248, 36.3899764425159], [139.072431652331, 36.3889077982119], [139.072969024696, 36.389640060237], [139.072981, 36.389716], [139.073093572317, 36.3897909779587], [139.07436587259, 36.3913687365602], [139.07459584283, 36.3911526109838], [139.074615, 36.391048], [139.074442606059, 36.3909860195186], [139.074161440053, 36.3911148841558], [139.074565171536, 36.3915855727728], [139.075629776698, 36.3919671694091], [139.076085, 36.392235], [139.07622102605, 36.3922910367806], [139.078443883193, 36.3934169461704], [139.07924, 36.392455], [139.07955256443, 36.3920205793467], [139.080126790624, 36.3915426191736], [139.080391, 36.391419], [139.080514544596, 36.3912142073421], [139.081557924892, 36.3904496536581], [139.081942996325, 36.3905671377552], [139.082136581644, 36.3905837316669], [139.08249179924, 36.390631686546], [139.083153139191, 36.390284641425], [139.084305907054, 36.3907548645831], [139.084385555867, 36.3906075963042], [139.084361, 36.39053], [139.084214360101, 36.3905546414251], [139.084103223196, 36.3906662328902], [139.085740307192, 36.3913312377834], [139.086429516858, 36.3916262524631], [139.086806191466, 36.3917805749641], [139.08717085483, 36.3918539859973], [139.08868478672, 36.3919112600194], [139.089108, 36.391942], [139.089261111461, 36.3919105727729], [139.090209216619, 36.391953075512], [139.090380641894, 36.3896057608704], [139.090916, 36.38942], [139.091500639915, 36.3891775424111], [139.092871020862, 36.38865185053], [139.091663788725, 36.3875574534035], [139.090487697449, 36.3864689688311], [139.090305306576, 36.3863580732998], [139.089895940828, 36.3860790450056], [139.089107524822, 36.3864814727563], [139.089165753006, 36.3865751469974], [139.089629, 36.386418], [139.090064376673, 36.3862125588066], [139.089705542019, 36.3859473124757], [139.089184727859, 36.3855484935894], [139.088646885926, 36.3858288870736], [139.088349512902, 36.3859464335047], [139.087766888564, 36.3861282481182], [139.087198, 36.386298], [139.086597211969, 36.3865344205219], [139.086034, 36.386885], [139.085349866725, 36.3874280654496], [139.085213075714, 36.3873471542177], [139.08487383431, 36.3854077268704], [139.084886, 36.385335], [139.084845378625, 36.3852857747209], [139.084694358782, 36.3842869700801], [139.08485832307, 36.3823195186802], [139.085863, 36.382126], [139.087568757602, 36.3817374890069], [139.08911254267, 36.3790711538466], [139.089156, 36.379025], [139.089567702064, 36.3783013394447], [139.089854814502, 36.3778135287876], [139.087690620046, 36.377795479764], [139.087628, 36.377777], [139.084821117396, 36.3777729517785], [139.084827, 36.377172], [139.084745788013, 36.3759089609477], [139.084664971875, 36.3743597397778], [139.084688, 36.374265], [139.08466065706, 36.3742053751454], [139.084634068435, 36.3737231463867], [139.084577975181, 36.3731284959435], [139.084359549915, 36.3720618856071], [139.084366, 36.371985], [139.084132145151, 36.3711564163968], [139.083859607456, 36.3699340867226], [139.085923862092, 36.370402951241], [139.086061120033, 36.3704032436822], [139.086667067125, 36.3705432436822], [139.086666483133, 36.3704680350856], [139.086524, 36.370404], [139.086342985115, 36.3703814101666], [139.086329224532, 36.3704491323281], [139.086053306541, 36.3703764101666], [139.085926309847, 36.3703918544896], [139.083796514871, 36.3698895485391], [139.084098093561, 36.3711477240778], [139.082714, 36.371186], [139.082638271463, 36.3712023327862], [139.080569820393, 36.3712659441754], [139.080611, 36.372205], [139.080763524094, 36.3745458895605], [139.080746, 36.374634], [139.08076702277, 36.3746842582172], [139.080828130575, 36.3759579819564], [139.080616935468, 36.3770030534679], [139.08058, 36.377092], [139.080231, 36.37863], [139.079815071705, 36.3805389510138], [139.079805743, 36.3806701125587], [139.078972274742, 36.3823322144401], [139.07763, 36.382327], [139.076418343511, 36.382326734057], [139.076385109378, 36.3831358812345], [139.076348, 36.38324], [139.07637473041, 36.3833461361004], [139.076318754218, 36.3844652475691], [139.075724819031, 36.3844508063771], [139.075652, 36.384414], [139.075513624584, 36.3844412570854], [139.074481557116, 36.3843883011011], [139.074343598121, 36.3843510264552], [139.073498352743, 36.3843219278719], [139.073273046526, 36.3842912465333], [139.072772522714, 36.3842689507834], [139.072793047845, 36.3840591603095], [139.072725758825, 36.383874809255], [139.07282779983, 36.3835586777606], [139.072308495608, 36.3834712359812]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_08\\u664238\\u5206_\\u7cfb\\u7d71124", "times": [1747611480000, 1747611481791, 1747611483499, 1747611485018, 1747611494579, 1747611538692, 1747611540000, 1747611545935, 1747611587281, 1747611598986, 1747611600000, 1747611600979, 1747611608372, 1747611628126, 1747611630998, 1747611635799, 1747611646845, 1747611659093, 1747611660000, 1747611661397, 1747611691302, 1747611696945, 1747611709489, 1747611719116, 1747611720000, 1747611720900, 1747611725185, 1747611733877, 1747611742857, 1747611751458, 1747611759874, 1747611762781, 1747611767269, 1747611769874, 1747611771666, 1747611774224, 1747611779365, 1747611780000, 1747611781979, 1747611788840, 1747611801758, 1747611807148, 1747611819188, 1747611826821, 1747611837383, 1747611840000, 1747611847505, 1747611867615, 1747611890242, 1747611898036, 1747611900000, 1747611903378, 1747611908723, 1747611912345, 1747611930116, 1747611936916, 1747611940479, 1747611948711, 1747611958414, 1747611960000, 1747611961685, 1747611969964, 1747612014543, 1747612018743, 1747612020000, 1747612022773, 1747612071023, 1747612076604, 1747612080000, 1747612081758, 1747612087122, 1747612137996, 1747612140000, 1747612140000, 1747612140000, 1747612140000, 1747612140981, 1747612198591, 1747612200000, 1747612200814, 1747612208441, 1747612240121, 1747612257075, 1747612260000, 1747612261059, 1747612271452, 1747612286512, 1747612318208, 1747612320000, 1747612321369, 1747612357458, 1747612368995, 1747612378965, 1747612380000, 1747612380000, 1747612380000, 1747612380000, 1747612385423, 1747612437665, 1747612440000, 1747612441796, 1747612497976, 1747612500000, 1747612507785, 1747612533517, 1747612595411, 1747612658018, 1747612668537, 1747612674796, 1747612680000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_08\\u664238\\u5206_\\u7cfb\\u7d71124", "popup": "\\u5e73\\u65e5_08\\u664238\\u5206_\\u7cfb\\u7d71124"}, "geometry": {"type": "LineString", "coordinates": [[139.105525, 36.273268], [139.105525094386, 36.2733843124108], [139.105594870842, 36.2734797286104], [139.105712382747, 36.2735055523133], [139.106112031561, 36.2740353313107], [139.108260954176, 36.2763101506978], [139.108293, 36.276391], [139.108572434355, 36.2766620266652], [139.110607650632, 36.2748361825029], [139.111114353681, 36.2742736723767], [139.111163, 36.274228], [139.111190502499, 36.2741396734526], [139.111574991918, 36.2735266291309], [139.112543735972, 36.2718654418121], [139.112722743912, 36.2716410564559], [139.113087874865, 36.2713065636052], [139.113606706881, 36.2722440508311], [139.114128804768, 36.2733017396322], [139.114145, 36.273385], [139.114219300139, 36.2734836547367], [139.115372650016, 36.2757740006809], [139.115646585203, 36.2761847149741], [139.116259762454, 36.2770956978859], [139.116595271056, 36.2778441458709], [139.116602, 36.277917], [139.116699410608, 36.2780280837474], [139.116916552146, 36.2786520756035], [139.117314103072, 36.2799272091525], [139.117671886144, 36.2812546726021], [139.118075150697, 36.2825144029115], [139.118471651361, 36.2837465541989], [139.118599580596, 36.2841740871899], [139.118924711549, 36.284799889904], [139.119014973455, 36.2851873038377], [139.119010425175, 36.2854583792925], [139.11897928827, 36.2858445530247], [139.118939638138, 36.2866217102037], [139.118925, 36.286717], [139.118953165915, 36.2868411539268], [139.118993515783, 36.2872774661889], [139.119066402027, 36.2880991782874], [139.119011824646, 36.2884400856347], [139.118791300174, 36.2891869159347], [139.118684361681, 36.2896659117682], [139.118631767104, 36.2903381577422], [139.11863, 36.290505], [139.118634566046, 36.2908629637369], [139.118624886813, 36.2918220508925], [139.118588035622, 36.2929008180633], [139.118559464193, 36.2932718581741], [139.118533, 36.293363], [139.118545120277, 36.2936154589189], [139.118567161282, 36.2940147126482], [139.118565645409, 36.294285526672], [139.118510135487, 36.2956135086826], [139.118498590513, 36.2961218669617], [139.118453226095, 36.296385748421], [139.118162147391, 36.2969543653103], [139.117805996595, 36.2976201837617], [139.117729, 36.297721], [139.117714918551, 36.2978274451558], [139.117474802148, 36.2983162079231], [139.113977316017, 36.29839493829], [139.113981866275, 36.2981281727762], [139.114002, 36.29805], [139.113968222095, 36.2979665879335], [139.113921458866, 36.2964400418003], [139.113703966141, 36.2964540437822], [139.113571571429, 36.296462], [139.113451838493, 36.2964770143121], [139.113083101692, 36.2964978080217], [139.109578728676, 36.2965784845118], [139.109442, 36.296563], [139.109350631431, 36.2965872487513], [139.106562060002, 36.2966572487513], [139.106479142857, 36.296642], [139.106382585133, 36.2966592782214], [139.100582249772, 36.2967933070308], [139.100441, 36.296783], [139.100348897918, 36.2968042480907], [139.099453037469, 36.2968282166387], [139.099613739183, 36.2998395594324], [139.099672397913, 36.301451847396], [139.099664, 36.30173], [139.099688955459, 36.3017934527572], [139.099719390651, 36.3024461459765], [139.099726971997, 36.3033926100415], [139.102186560631, 36.3033268033454], [139.102325, 36.303338], [139.102438688278, 36.3033131570616], [139.105540957473, 36.3032233099331], [139.106532903262, 36.303201170237], [139.10739004612, 36.3031791396627], [139.107479, 36.303179], [139.107591794799, 36.3031718470951], [139.10947575513, 36.3030999693922], [139.109437095238, 36.3031273333333], [139.109716454206, 36.3030963231084], [139.112430733327, 36.3030185065542], [139.112552, 36.303023], [139.112653239942, 36.3030082445609], [139.115868625548, 36.3029240741064], [139.115984, 36.302933], [139.116131948961, 36.3029090305408], [139.116630607692, 36.302911847095], [139.116627691689, 36.3038827421969], [139.115414515097, 36.3038971523334], [139.115415214833, 36.3040621523334], [139.115536380839, 36.3040666283468], [139.115536, 36.303985]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_08\\u664249\\u5206_\\u7cfb\\u7d71121", "times": [1747612140000, 1747612143171, 1747612156174, 1747612168579, 1747612171221, 1747612174509, 1747612183745, 1747612190840, 1747612194057, 1747612200000, 1747612212910, 1747612249150, 1747612260000, 1747612260000, 1747612260000, 1747612260000, 1747612281659, 1747612300638, 1747612321236, 1747612336339, 1747612368177, 1747612380000, 1747612387961, 1747612415067, 1747612437757, 1747612440000, 1747612463175, 1747612665981, 1747612679979, 1747612700286, 1747612721705, 1747612741414, 1747612768504, 1747612779883, 1747612800000, 1747612800000, 1747612800000, 1747612800000, 1747612800000, 1747612800000, 1747612806585, 1747612810921, 1747612839238, 1747612864491, 1747612906356, 1747612916640, 1747612920000, 1747612923113, 1747612937486, 1747612978775, 1747612980000, 1747612980000, 1747612980000, 1747612980000, 1747612983215, 1747613000850, 1747613006067, 1747613037284, 1747613040000, 1747613044557, 1747613070771, 1747613100000, 1747613106683, 1747613154193, 1747613160000, 1747613163522, 1747613184627, 1747613190938, 1747613217136, 1747613220000, 1747613227312, 1747613234974, 1747613240160, 1747613245626, 1747613248337, 1747613253711, 1747613278331, 1747613280000, 1747613288168, 1747613341995, 1747613373684, 1747613408934, 1747613433264, 1747613477089, 1747613491731, 1747613509712, 1747613520000, 1747613520000, 1747613520000, 1747613520000, 1747613520000, 1747613538230, 1747613547906, 1747613555852, 1747613577647, 1747613580000, 1747613583518, 1747613590578, 1747613613344, 1747613635650, 1747613639549, 1747613640000, 1747613640648, 1747613642759, 1747613648287, 1747613654921, 1747613663616, 1747613670033, 1747613679319, 1747613682245, 1747613684697, 1747613690137, 1747613691692, 1747613694659, 1747613699560, 1747613700000, 1747613700000, 1747613700000, 1747613700000, 1747613700000, 1747613701098, 1747613725820, 1747613749617, 1747613758851, 1747613760000, 1747613761489, 1747613782753, 1747613786510, 1747613790085, 1747613796087, 1747613814468, 1747613820000, 1747613822267, 1747613829512, 1747613841464, 1747613851701, 1747613878635, 1747613880000, 1747613883561, 1747613935909, 1747613940000, 1747613943236, 1747613964198, 1747613980775, 1747613993976, 1747614004433, 1747614015591, 1747614057478, 1747614060000, 1747614060000, 1747614060000, 1747614060000, 1747614060000, 1747614064732, 1747614100148, 1747614105186, 1747614113376, 1747614117015, 1747614120000, 1747614120000, 1747614120000, 1747614120000, 1747614120000, 1747614120000, 1747614120000, 1747614120000, 1747614122667, 1747614145671, 1747614167409, 1747614171674, 1747614178195, 1747614180000, 1747614181595, 1747614188832, 1747614204583, 1747614216505, 1747614234630, 1747614237293, 1747614240000, 1747614240784, 1747614243029, 1747614254772, 1747614269290, 1747614276325, 1747614277046, 1747614283396, 1747614290619, 1747614299315, 1747614300000, 1747614301168, 1747614314962, 1747614358776, 1747614360000, 1747614362517, 1747614390804, 1747614408141, 1747614429639, 1747614450754, 1747614458607, 1747614467353, 1747614477823, 1747614480000, 1747614481559, 1747614485965, 1747614510394, 1747614519820, 1747614528131, 1747614540000, 1747614549648, 1747614555802, 1747614561685, 1747614578143, 1747614598571, 1747614600000, 1747614602095, 1747614610024, 1747614615232, 1747614658127, 1747614660000, 1747614680804, 1747614886170, 1747614920599, 1747614941390, 1747614960000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_08\\u664249\\u5206_\\u7cfb\\u7d71121", "popup": "\\u5e73\\u65e5_08\\u664249\\u5206_\\u7cfb\\u7d71121"}, "geometry": {"type": "LineString", "coordinates": [[139.059257, 36.395815], [139.059270672081, 36.3954753068441], [139.059596227646, 36.3941070167822], [139.059887268648, 36.3927986834488], [139.060138112568, 36.3926011050108], [139.060545344046, 36.3924756581939], [139.061768316273, 36.3925195908254], [139.061910937972, 36.3917680748688], [139.061765787179, 36.3914439755871], [139.061917, 36.390819], [139.061943590092, 36.3904756280848], [139.063123180044, 36.3906275944005], [139.06347, 36.390698], [139.065312095406, 36.3908819951024], [139.066081072925, 36.390957601485], [139.066303, 36.391013], [139.067029407592, 36.3910312326963], [139.067661710503, 36.3909700234733], [139.068333039874, 36.3908371404991], [139.068796673475, 36.3906716865977], [139.069706098084, 36.3902184986611], [139.070069, 36.390089], [139.070587067668, 36.3897766469739], [139.072480785933, 36.388871115803], [139.072613729059, 36.3873859244999], [139.072657, 36.387243], [139.072621815037, 36.3869571255136], [139.072755613981, 36.3844454008148], [139.072777578263, 36.3842727816293], [139.072766226414, 36.3840212126052], [139.072667256837, 36.3837680460509], [139.072831571652, 36.3835630065444], [139.072425546519, 36.3834923880745], [139.072265702602, 36.3835488963651], [139.072197, 36.383792], [139.072289027334, 36.3839720323823], [139.07261291424, 36.3840619674873], [139.072583486993, 36.3842736440307], [139.070979447301, 36.3842186539073], [139.070716, 36.384125], [139.070444676136, 36.3841687811798], [139.070263374547, 36.3841542420104], [139.070314567675, 36.3831931748125], [139.070494705237, 36.3823477374193], [139.072253111322, 36.3823799243851], [139.072279230379, 36.3820311928442], [139.072316, 36.381921], [139.072275226411, 36.3817295447412], [139.072335673501, 36.3808339675651], [139.072468034613, 36.3782596753776], [139.072488, 36.378185], [139.072481678794, 36.3780634928244], [139.07254694599, 36.376863266178], [139.072584, 36.376742], [139.072534973106, 36.3766400161632], [139.072568520065, 36.3760406020472], [139.072562805779, 36.3758631600947], [139.072847158955, 36.3748262148956], [139.072906, 36.374747], [139.072895788585, 36.3746384463335], [139.073070365306, 36.3740283750264], [139.073303, 36.373356], [139.073406341498, 36.3729142209198], [139.073640198644, 36.369723555249], [139.073718, 36.369338], [139.073722530656, 36.3690647723321], [139.073834211873, 36.3674300564334], [139.07388400553, 36.3669420968556], [139.076396498929, 36.3669764915005], [139.076668, 36.36701], [139.077320422218, 36.3669838126897], [139.078004774075, 36.3669965027487], [139.078466037303, 36.3669617344164], [139.078932856097, 36.3668456592953], [139.079146385193, 36.3667532323924], [139.079521894455, 36.366511334058], [139.081311282022, 36.365477083046], [139.081448, 36.365429], [139.08153961537, 36.3653486637464], [139.082263579657, 36.3649294065477], [139.082627542627, 36.3646242749457], [139.082952595538, 36.3642327383123], [139.083145558504, 36.3639470832035], [139.083372147789, 36.3633901170829], [139.083141010884, 36.3633316075762], [139.083092497657, 36.3635689583984], [139.083218, 36.363476], [139.083241807182, 36.3633803427552], [139.083356792632, 36.3634468377844], [139.083884215916, 36.3622411256014], [139.084388, 36.361156], [139.084850394494, 36.3600189127137], [139.085082812489, 36.3594119880879], [139.085242774128, 36.3589065435092], [139.085745824396, 36.3575345916174], [139.085825, 36.357394], [139.085884210641, 36.3571436319018], [139.086046115403, 36.3566492011493], [139.086611245037, 36.3550643536985], [139.087178784725, 36.3535148629043], [139.087270563164, 36.3532423387193], [139.0873, 36.35322], [139.087307880625, 36.3531142808382], [139.087429746366, 36.3527841357286], [139.087773535391, 36.3519256785506], [139.088182630632, 36.3508947352456], [139.088744028784, 36.3495499832363], [139.089151141221, 36.3485556475598], [139.089753355511, 36.3471203681178], [139.089928865433, 36.3466643503411], [139.090084899826, 36.3462844261661], [139.090432187527, 36.3454420604015], [139.090559417686, 36.3452100950355], [139.090850495731, 36.3447868403018], [139.091333876686, 36.3440890148523], [139.091415, 36.34406], [139.091438482508, 36.3439540834348], [139.092386818493, 36.3425254579724], [139.092868916381, 36.3418329259698], [139.092928, 36.341788], [139.092932939529, 36.3417212591254], [139.09382879734, 36.3404033353848], [139.094687104225, 36.3391329222661], [139.095030426979, 36.3386446291119], [139.09509, 36.338594], [139.095132350922, 36.3384977090478], [139.095973049338, 36.3372074010796], [139.096123602251, 36.3369802733018], [139.096258295375, 36.3367605402556], [139.096382260323, 36.3363612621896], [139.096736428315, 36.3351333150762], [139.096854, 36.334766], [139.096885466014, 36.3345809940497], [139.09703800305, 36.333997243884], [139.095829725266, 36.3338825297703], [139.094792526845, 36.333801600859], [139.092055040714, 36.3336814555098], [139.091925, 36.333642], [139.091703788065, 36.3336482406577], [139.088456915686, 36.3334810597641], [139.088212, 36.333426], [139.08809073579, 36.3334453085747], [139.087298084989, 36.3333550581783], [139.086672780751, 36.3332754862966], [139.0861705076, 36.3332409144149], [139.08577144146, 36.3332299855036], [139.085346946765, 36.3331999855036], [139.085750333655, 36.3319476719826], [139.085804, 36.331883], [139.085790799926, 36.3318132023866], [139.085866601513, 36.3315748367849], [139.086183801913, 36.3304923980879], [139.086238, 36.330422], [139.086270448739, 36.3302430979292], [139.086667065146, 36.3289286658311], [139.086904383267, 36.3289418413337], [139.087282224541, 36.3290084499871], [139.087450854171, 36.3290350586405], [139.087585, 36.32907], [139.08773306912, 36.3290762411393], [139.088250502325, 36.3291514932541], [139.088932716615, 36.3292469974836], [139.089468691488, 36.3292791103665], [139.089903791362, 36.3292870755585], [139.090538426944, 36.3292657190199], [139.090669, 36.329269], [139.090830668357, 36.329236571329], [139.09226203543, 36.3291376757529], [139.093617719296, 36.3290801367154], [139.093883374062, 36.3290648846007], [139.094290487159, 36.3290725976779], [139.094398, 36.3291], [139.094567687558, 36.3290693803712], [139.095356371433, 36.3290824236381], [139.097071354245, 36.3291483540222], [139.098368968648, 36.3292043982611], [139.098778288781, 36.3276404850624], [139.098883594998, 36.3274216826283], [139.099082, 36.327245], [139.09918411881, 36.3271534765226], [139.099533855585, 36.326942636826], [139.101453268956, 36.325944956186], [139.103828423075, 36.3247144812685], [139.104969525604, 36.3241060182376], [139.105076932346, 36.3240333058024], [139.106110048757, 36.3234879670875], [139.107296052072, 36.3228813564136], [139.108715757108, 36.3221404984968], [139.108835, 36.322093], [139.108950741899, 36.3220099029378], [139.110473187016, 36.3211943738941], [139.115354807423, 36.3186608691748], [139.115486, 36.318584], [139.115593990626, 36.3185045892717], [139.116905707566, 36.3177082532001], [139.117724946992, 36.3172371855937], [139.118723778349, 36.3166340815843], [139.119705350445, 36.3160423254619], [139.120081209575, 36.3158344523353], [139.120452755209, 36.315555292863], [139.120462433123, 36.3150642123102], [139.120497, 36.314966], [139.12042231672, 36.3148496029091], [139.120423017115, 36.3144790291636], [139.120546634832, 36.3124269863271], [139.120568790262, 36.311634499075], [139.120520393437, 36.3109366134349], [139.119288, 36.3109], [139.118136141439, 36.3109482065688], [139.117402614321, 36.3109937405288], [139.116702441036, 36.3110470692902], [139.116744891428, 36.3094551776963], [139.116786407302, 36.3074789505127], [139.116823, 36.307344], [139.116798885476, 36.3072282203071], [139.116800984682, 36.3067838933955], [139.116777777672, 36.3064926404303], [139.116696261798, 36.3040897065262], [139.116705, 36.303985], [139.116693230051, 36.3038802746306], [139.115411015761, 36.3038995977725], [139.115417078596, 36.3040735497993], [139.115546759807, 36.3040786589211], [139.115536, 36.303985]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_08\\u664250\\u5206_\\u7cfb\\u7d71151", "times": [1747612200000, 1747612202081, 1747612204964, 1747612208540, 1747612216000, 1747612258535, 1747612260000, 1747612261720, 1747612284384, 1747612299679, 1747612307012, 1747612310382, 1747612318651, 1747612320000, 1747612323404, 1747612344713, 1747612375309, 1747612436514, 1747612440000, 1747612441602, 1747612482253, 1747612499035, 1747612500000, 1747612504409, 1747612542300, 1747612575459, 1747612599761, 1747612620769, 1747612747661, 1747612765287, 1747612774564, 1747612782720, 1747612788891, 1747612800000, 1747612813776, 1747612828400, 1747612894270, 1747612917189, 1747612920000, 1747612921379, 1747612929861, 1747612936293, 1747612938951, 1747612964907, 1747612968493, 1747612978010, 1747612980000, 1747612981799, 1747612999183, 1747613020390, 1747613038877, 1747613040000, 1747613040970, 1747613046553, 1747613049117, 1747613058841, 1747613071384, 1747613082361, 1747613095094, 1747613100000, 1747613101576, 1747613111847, 1747613116157, 1747613121764, 1747613137867, 1747613150848, 1747613152590, 1747613160000, 1747613161666, 1747613211742, 1747613219250, 1747613220000, 1747613222137, 1747613278424, 1747613280000, 1747613281787, 1747613295847, 1747613328815, 1747613340000, 1747613341516, 1747613398464, 1747613400000, 1747613411829, 1747613460000, 1747613461737, 1747613517806, 1747613520000, 1747613537083, 1747613578366, 1747613580000, 1747613586313, 1747613628473, 1747613636122, 1747613640000, 1747613643581, 1747613651970, 1747613655524, 1747613664032, 1747613674008, 1747613698529, 1747613700000, 1747613701323, 1747613706354, 1747613733397, 1747613758887, 1747613760000, 1747613774851, 1747613790353, 1747613809913, 1747613820000, 1747613821939, 1747613872389, 1747613880000, 1747613881052, 1747613916881, 1747613917880, 1747613918994, 1747613938586, 1747613940000, 1747613973931, 1747614016823, 1747614022446, 1747614030608, 1747614048168, 1747614057908, 1747614063252, 1747614067935, 1747614086293, 1747614123106, 1747614152500, 1747614166241, 1747614170001, 1747614173919, 1747614177338, 1747614180000, 1747614181415, 1747614184444, 1747614193909, 1747614206626, 1747614215041, 1747614237454, 1747614240000, 1747614244838, 1747614277426, 1747614288223, 1747614298850, 1747614300000, 1747614301860, 1747614348878, 1747614360000, 1747614383013, 1747614406719, 1747614417601, 1747614420000, 1747614422806, 1747614537601, 1747614540000, 1747614543381, 1747614574755, 1747614584969, 1747614596891, 1747614600000, 1747614601906, 1747614620730, 1747614657679, 1747614660000, 1747614661873, 1747614708456, 1747614718310, 1747614720000, 1747614733273, 1747614820764, 1747614910519, 1747614924469, 1747614973876, 1747615028991, 1747615061696, 1747615169145, 1747615200000, 1747615204218, 1747615214544, 1747615221974, 1747615252461, 1747615274044, 1747615278560, 1747615304241, 1747615318295, 1747615320000, 1747615323283, 1747615376520, 1747615380000, 1747615383654, 1747615421445, 1747615437657, 1747615440000, 1747615447472, 1747615501727, 1747615509358, 1747615553743, 1747615565730, 1747615592029, 1747615605684, 1747615618155, 1747615639354, 1747615667184, 1747615680000, 1747615684260, 1747615689060, 1747615692094, 1747615719416, 1747615721831, 1747615739053, 1747615740000, 1747615743148, 1747615797474, 1747615800000, 1747615801739, 1747615860000, 1747615920000, 1747615922489, 1747615958209, 1747615969334, 1747615977254, 1747615980000, 1747615981208, 1747615988665, 1747615991772, 1747616012275, 1747616038936, 1747616040000, 1747616045532, 1747616167738, 1747616293636, 1747616374445], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_08\\u664250\\u5206_\\u7cfb\\u7d71151", "popup": "\\u5e73\\u65e5_08\\u664250\\u5206_\\u7cfb\\u7d71151"}, "geometry": {"type": "LineString", "coordinates": [[139.047567, 36.378982], [139.047734918687, 36.3789354948586], [139.047875443159, 36.3787723051739], [139.047778882975, 36.3785384171516], [139.048225996731, 36.3781724687285], [139.050596719633, 36.3803925160325], [139.050647, 36.380485], [139.050771410778, 36.3805798368253], [139.05224464623, 36.3819575760473], [139.053397878385, 36.38115677981], [139.053879160135, 36.381599228694], [139.05420802257, 36.3816504175013], [139.054355660139, 36.3809967213916], [139.054402, 36.380895], [139.054401491487, 36.3808172039061], [139.054492686593, 36.3803359374525], [139.05362889625, 36.3803070194228], [139.053955078125, 36.3789336499309], [139.054005, 36.378865], [139.054013736856, 36.3787622532554], [139.054599625086, 36.3761925461748], [139.054693268607, 36.3751165134694], [139.054734, 36.375064], [139.054722656833, 36.3749751090578], [139.054770353922, 36.3742082572536], [139.054924989504, 36.3735480755799], [139.055079742148, 36.3730717849376], [139.05513338501, 36.3726482850752], [139.051953800332, 36.3726487308716], [139.051932109855, 36.3730054899973], [139.051699689881, 36.3730021104345], [139.051696308267, 36.3728368755063], [139.051541672685, 36.3728350923207], [139.051553, 36.37306], [139.051971177314, 36.3730582128955], [139.051994615151, 36.3726997607232], [139.053994029841, 36.3727067010704], [139.05374621569, 36.3721810204072], [139.053726, 36.372114], [139.053652221641, 36.3720743729018], [139.053398228253, 36.3716847419753], [139.053212688571, 36.3713862876541], [139.053180502723, 36.371250735795], [139.05296219386, 36.369914503334], [139.05295951198, 36.3697282550043], [139.053028433277, 36.3692372249393], [139.053034, 36.369134], [139.053004526531, 36.369065568409], [139.052959861848, 36.3683664266972], [139.052939453779, 36.3675125410268], [139.052977704441, 36.3667687126854], [139.053002, 36.366728], [139.053000211716, 36.3666470501388], [139.053033097959, 36.3661818893197], [139.052992398224, 36.3659704633589], [139.052953797695, 36.3651595819776], [139.052907383673, 36.3641135598473], [139.05287951198, 36.3631977653399], [139.053090123754, 36.3621489395479], [139.053232, 36.361756], [139.053240793729, 36.3616770633094], [139.053402892276, 36.3611777058539], [139.053667965028, 36.3611463911959], [139.054010121776, 36.3611997914422], [139.055010935276, 36.3612007111467], [139.055817696528, 36.361196391196], [139.055905393617, 36.3611450310975], [139.056365, 36.361168], [139.056464340717, 36.3611401929195], [139.059624103955, 36.3611380749386], [139.059688941263, 36.3607585153324], [139.059723, 36.360732], [139.059698970364, 36.36064275745], [139.060064800393, 36.3582553769226], [139.060093, 36.358192], [139.060096403569, 36.3580791722006], [139.060230863228, 36.3571981224867], [139.062803573549, 36.3572468557839], [139.062829, 36.356541], [139.062814647636, 36.3564559100686], [139.062848933351, 36.3532309311103], [139.062872, 36.353146], [139.062836804384, 36.3527531158923], [139.064819, 36.352709], [139.064919948578, 36.3526938442659], [139.068230494238, 36.3525887945456], [139.06836, 36.352593], [139.069302213816, 36.3525379707827], [139.069423494246, 36.3543819414464], [139.069422, 36.354455], [139.069433173479, 36.354629363781], [139.069313990277, 36.3557911843141], [139.069233640409, 36.3559924846712], [139.069149, 36.356075], [139.069011367918, 36.3561982992722], [139.068628977705, 36.3564342647686], [139.068510959849, 36.356568673602], [139.068292301777, 36.3569213928169], [139.067724839472, 36.3568631710726], [139.066320061684, 36.35690953068], [139.066236, 36.356904], [139.066098371865, 36.3569180626543], [139.065572074247, 36.3569432153912], [139.062755865909, 36.357198742458], [139.062715872503, 36.3593590355746], [139.062706, 36.359453], [139.062738729646, 36.3599570377643], [139.06287983745, 36.3604713980436], [139.063118554383, 36.3611075177947], [139.062695, 36.361095], [139.062580012714, 36.3611015919346], [139.05958188307, 36.3611139495708], [139.059509, 36.361475], [139.059509000124, 36.3615379069609], [139.059192149593, 36.3636644006954], [139.059147834778, 36.363712157599], [139.059161012688, 36.3637778739252], [139.058997980941, 36.3649416932264], [139.058962, 36.365021], [139.058832265995, 36.3660863849257], [139.060505499469, 36.3660867037806], [139.060722874472, 36.3661106894263], [139.061040541801, 36.3661279680016], [139.06172543929, 36.3661169858111], [139.062084621833, 36.3662172233178], [139.062286486914, 36.3662592643863], [139.062468293795, 36.366273789373], [139.063183395647, 36.3663054197559], [139.062931616549, 36.3674488858645], [139.061825027264, 36.3672057368509], [139.061291152916, 36.3672447577301], [139.061144797756, 36.3672367989828], [139.061004039159, 36.3671886339718], [139.060973485587, 36.3672936339718], [139.061075, 36.367276], [139.061145030561, 36.3672493760158], [139.061309344717, 36.3672656894264], [139.061824797096, 36.3672296948759], [139.062495581496, 36.367377097686], [139.062940246179, 36.3674723741454], [139.062701997495, 36.3684442313785], [139.062658, 36.368551], [139.062594940622, 36.3688299468551], [139.062085203187, 36.3706947847566], [139.061945846699, 36.3713174615288], [139.06117861654, 36.3712634849633], [139.061102, 36.371237], [139.060983635706, 36.3712392190876], [139.058004395621, 36.3710212876541], [139.057953, 36.371592], [139.057804629745, 36.3728763894808], [139.059437281206, 36.3730262429015], [139.060150048409, 36.373225821165], [139.060287, 36.373302], [139.060424099339, 36.3733140620393], [139.065526127815, 36.3752585987283], [139.065613, 36.375323], [139.065788632453, 36.3753561521244], [139.067306881136, 36.3759248331467], [139.067842739607, 36.3760039815694], [139.068477257467, 36.3760364915732], [139.068639, 36.376066], [139.068776965141, 36.376044448847], [139.070164133802, 36.3760530870295], [139.072887158955, 36.3760537679382], [139.073054, 36.376084], [139.073185933429, 36.3760376397596], [139.076762953949, 36.3760356770642], [139.076732746947, 36.3766470588895], [139.076702, 36.376749], [139.076693213217, 36.3768558715541], [139.076688198667, 36.3775618759077], [139.077582192715, 36.3776061637831], [139.077582268778, 36.377718736361], [139.077089440736, 36.3777304210093], [139.077026895759, 36.3781722849624], [139.076814961897, 36.3783729842002], [139.076786390468, 36.3792397407747], [139.077066, 36.379344], [139.077304174859, 36.3792083152697], [139.077337449991, 36.378632173992], [139.0768242939, 36.378634471562], [139.076806684113, 36.380337213547], [139.0782969447, 36.380368665529], [139.078306271428, 36.3806207435751], [139.076534962556, 36.3806976928839], [139.076474905014, 36.3814811132602], [139.076444, 36.381573], [139.076454846813, 36.3816640961819], [139.076380094828, 36.3831465625117], [139.076348, 36.38324], [139.07637473041, 36.3833461361004], [139.076318754218, 36.3844652475691], [139.075724819031, 36.3844508063771], [139.075652, 36.384414], [139.075513624584, 36.3844412570854], [139.074481557116, 36.3843883011011], [139.074343598121, 36.3843510264552], [139.073498352743, 36.3843219278719], [139.073273046526, 36.3842912465333], [139.072772522714, 36.3842689507834], [139.072793047845, 36.3840591603095], [139.072725758825, 36.383874809255], [139.07282779983, 36.3835586777606], [139.072308495608, 36.3834712359812], [139.072229, 36.383658], [139.072270135138, 36.3839470841464], [139.072648092815, 36.3840657641688], [139.072600862656, 36.3842694120438], [139.070297192671, 36.3841569173198], [139.070093925481, 36.3841707536167], [139.068652408948, 36.3840128081844], [139.068585, 36.383978], [139.068428045823, 36.3839855229865], [139.065740703877, 36.3836843590378], [139.065629, 36.383637], [139.065505719746, 36.3836502594721], [139.061381, 36.38318], [139.05725, 36.383287], [139.057148541107, 36.3833229488718], [139.055580381045, 36.3835322794976], [139.055085570199, 36.3835436539548], [139.054735600619, 36.3835102475691], [139.054627, 36.383465], [139.054511927997, 36.3834768173776], [139.053798925351, 36.3834263671604], [139.053627032487, 36.3832292995232], [139.052352633008, 36.3820168740599], [139.050685115138, 36.380447329523], [139.050657, 36.380368], [139.050580159449, 36.3803411538466], [139.049397226243, 36.379192158712], [139.048155794346, 36.3780240289584], [139.047317193156, 36.3787433998454]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_08\\u664252\\u5206_\\u7cfb\\u7d71139", "times": [1747612320000, 1747612323171, 1747612336174, 1747612348579, 1747612351221, 1747612354509, 1747612363745, 1747612370840, 1747612374057, 1747612380000, 1747612392910, 1747612429150, 1747612440000, 1747612440000, 1747612440000, 1747612440000, 1747612461659, 1747612480638, 1747612501236, 1747612516339, 1747612548177, 1747612560000, 1747612567961, 1747612595067, 1747612617757, 1747612620000, 1747612628698, 1747612854534, 1747612862406, 1747612893764, 1747612930311, 1747612971836, 1747612980000, 1747612982424, 1747612985361, 1747613037805, 1747613040000, 1747613042315, 1747613078874, 1747613098340, 1747613100000, 1747613102061, 1747613124370, 1747613149725, 1747613158194, 1747613160000, 1747613160000, 1747613160000, 1747613160000, 1747613162805, 1747613215475, 1747613220000, 1747613222548, 1747613254278, 1747613277900, 1747613280000, 1747613280000, 1747613280000, 1747613280000, 1747613282900, 1747613292768, 1747613296642, 1747613305006, 1747613314386, 1747613340000, 1747613341954, 1747613353080, 1747613359384, 1747613384801, 1747613398711, 1747613400000, 1747613400000, 1747613400000, 1747613400000, 1747613402428, 1747613413218, 1747613436014, 1747613454232, 1747613456470, 1747613460000, 1747613465203, 1747613469856, 1747613510427, 1747613550860, 1747613575186, 1747613580000, 1747613582208, 1747613638172, 1747613640000, 1747613641436, 1747613656334, 1747613663546, 1747613667184, 1747613671849, 1747613678809, 1747613683950, 1747613692280, 1747613698402, 1747613700000, 1747613703712, 1747613734156, 1747613739123, 1747613757256, 1747613760000, 1747613767356, 1747613777472, 1747613782903, 1747613787166, 1747613791333, 1747613803185, 1747613809445, 1747613813581, 1747613817950, 1747613820000, 1747613823074, 1747613849422, 1747613859903, 1747613877391, 1747613880000, 1747613882620, 1747613885127, 1747613887171, 1747613890255, 1747613893704, 1747613897922, 1747613904335, 1747613910125, 1747613916177, 1747613924902, 1747613931098, 1747613939127, 1747613940000, 1747613940000, 1747613940000, 1747613940000, 1747613940000, 1747613940000, 1747613940000, 1747613940000, 1747613940000, 1747613941432, 1747613952659, 1747613958638, 1747613969751, 1747613979415, 1747613986862, 1747613997722, 1747614000000, 1747614003253, 1747614006092, 1747614007956, 1747614016984, 1747614022253, 1747614026453, 1747614028721, 1747614031987, 1747614036623, 1747614046253, 1747614054452, 1747614058754, 1747614060000, 1747614066316, 1747614073401, 1747614077900, 1747614082834, 1747614095813, 1747614103629, 1747614120000, 1747614121935, 1747614178186, 1747614180000, 1747614180000, 1747614180000, 1747614180000, 1747614180000, 1747614181804, 1747614216131, 1747614238317, 1747614240000, 1747614244008, 1747614296857, 1747614300000, 1747614301094, 1747614306169, 1747614307192, 1747614317193, 1747614320215, 1747614323652, 1747614326441, 1747614336178, 1747614339498, 1747614344256, 1747614348816, 1747614352569, 1747614358901, 1747614360000, 1747614361842, 1747614402594, 1747614409651, 1747614416080, 1747614420000, 1747614442158, 1747614707426], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_08\\u664252\\u5206_\\u7cfb\\u7d71139", "popup": "\\u5e73\\u65e5_08\\u664252\\u5206_\\u7cfb\\u7d71139"}, "geometry": {"type": "LineString", "coordinates": [[139.059257, 36.395815], [139.059270672081, 36.3954753068441], [139.059596227646, 36.3941070167822], [139.059887268648, 36.3927986834488], [139.060138112568, 36.3926011050108], [139.060545344046, 36.3924756581939], [139.061768316273, 36.3925195908254], [139.061910937972, 36.3917680748688], [139.061765787179, 36.3914439755871], [139.061917, 36.390819], [139.061943590092, 36.3904756280848], [139.063123180044, 36.3906275944005], [139.06347, 36.390698], [139.065312095406, 36.3908819951024], [139.066081072925, 36.390957601485], [139.066303, 36.391013], [139.067029407592, 36.3910312326963], [139.067661710503, 36.3909700234733], [139.068333039874, 36.3908371404991], [139.068796673475, 36.3906716865977], [139.069706098084, 36.3902184986611], [139.070069, 36.390089], [139.070587067668, 36.3897766469739], [139.072480785933, 36.388871115803], [139.072613729059, 36.3873859244999], [139.072657, 36.387243], [139.072632232366, 36.3871262807022], [139.072794390433, 36.3840544489761], [139.07276243673, 36.3839504261375], [139.072887480381, 36.3835356462157], [139.072278646388, 36.3834634631428], [139.072224652999, 36.3840271162938], [139.072342, 36.384085], [139.072460425486, 36.38398089795], [139.072648034613, 36.3840606725959], [139.07248016292, 36.3871176437477], [139.072448, 36.387243], [139.072467684746, 36.3873415230417], [139.072445526679, 36.3889175063718], [139.072959345463, 36.3896466520092], [139.072981, 36.389716], [139.073086692025, 36.389768026693], [139.073778467827, 36.3906951097604], [139.074604706585, 36.3917285329458], [139.074409604073, 36.3921080798945], [139.07436, 36.392186], [139.074368787934, 36.3922530820858], [139.073835611343, 36.3934378556375], [139.073759, 36.393524], [139.073766807109, 36.3935917175436], [139.073229432106, 36.3947921550034], [139.073142, 36.394876], [139.07315281438, 36.3949730549069], [139.072672932761, 36.3961227632447], [139.072280979718, 36.3969686625439], [139.072225, 36.397035], [139.072159463844, 36.3974268197045], [139.072125061727, 36.3987815067711], [139.072096, 36.398861], [139.072114332891, 36.3989819358238], [139.072150484347, 36.3993953243097], [139.072191650352, 36.3995546170266], [139.072283311729, 36.3998979945715], [139.072492990303, 36.4002536433234], [139.073057, 36.401228], [139.073171936743, 36.4013497629632], [139.073653570998, 36.4021296768209], [139.074248205261, 36.402015965429], [139.076707446006, 36.4021330234561], [139.076881201314, 36.4010522011026], [139.076919, 36.400956], [139.076924466525, 36.400815407644], [139.07711828531, 36.3994373541812], [139.077166, 36.399347], [139.077168313751, 36.3992328201289], [139.077225339546, 36.3987276038782], [139.078544637173, 36.3988335391606], [139.079602710593, 36.3988789962554], [139.07960212726, 36.3987737642027], [139.079805, 36.398799], [139.079968307157, 36.398796267708], [139.079951397105, 36.3989135391606], [139.081223578998, 36.3989598894133], [139.082489467228, 36.3990330680449], [139.083251214589, 36.3990755645396], [139.083399, 36.399101], [139.083533428219, 36.3990860146238], [139.086963041998, 36.3992898667236], [139.087074, 36.399304], [139.087190096234, 36.3992891761638], [139.088405953385, 36.3993623290964], [139.088993124684, 36.3994109814231], [139.089265077068, 36.3995089348284], [139.089562102203, 36.3997027866825], [139.089988340301, 36.4000082191838], [139.090333412394, 36.4002027448746], [139.090958833694, 36.4004220351964], [139.091416558565, 36.4005867915887], [139.091524, 36.400647], [139.091683146531, 36.4007124641357], [139.093038012941, 36.4011613043734], [139.093263667047, 36.4012246865336], [139.094135268903, 36.4012494526386], [139.094265, 36.401269], [139.094769203431, 36.4012535041523], [139.095388561238, 36.4015064793167], [139.095710191536, 36.4016584267057], [139.095914739816, 36.4018273300711], [139.096056079766, 36.4020281567941], [139.096398237174, 36.4026242982367], [139.096573280166, 36.4029412708946], [139.096661559928, 36.4031592237471], [139.096716603579, 36.4033973750923], [139.096743, 36.403509], [139.096796719982, 36.4036243840738], [139.097048846969, 36.4046609367009], [139.097124765619, 36.4050766796753], [139.097348905171, 36.405754066296], [139.097387, 36.405854], [139.097505872765, 36.4060394617547], [139.097573161125, 36.4062316985509], [139.097613977263, 36.4063912215485], [139.097596600941, 36.4066366162088], [139.097570828454, 36.4069106951409], [139.097645114168, 36.4072415290148], [139.097902723296, 36.4077082661984], [139.098142139304, 36.4081271945278], [139.098315550019, 36.4085887427382], [139.098482546714, 36.4092709147746], [139.098554499757, 36.4097612536504], [139.098659922376, 36.4103954463545], [139.098658, 36.410465], [139.098747385341, 36.410900116675], [139.098827384682, 36.4113145223217], [139.099040795397, 36.4119103089559], [139.099304585081, 36.4125422414548], [139.099926042094, 36.4129913879014], [139.100573271594, 36.4136045339731], [139.10088440652, 36.4141497183992], [139.100933, 36.414238], [139.100999624775, 36.4142866896079], [139.101316825175, 36.4147947803242], [139.101507378088, 36.4150557641766], [139.102010351634, 36.4154457096198], [139.102466909839, 36.4157678951836], [139.102769534177, 36.4160553522391], [139.102749824524, 36.4166056167871], [139.102708, 36.416716], [139.102719970027, 36.4170036694144], [139.102711106932, 36.4172546981187], [139.10279962016, 36.4174032717946], [139.103410931669, 36.4180306668609], [139.103784690933, 36.4183856351632], [139.104096526914, 36.4186586167686], [139.104246031544, 36.418818771407], [139.10432719623, 36.4191000975944], [139.104432852315, 36.4195012800126], [139.104858741205, 36.4202804659738], [139.105170693588, 36.4209605296945], [139.105153433669, 36.4213408253961], [139.105117, 36.421447], [139.105094541473, 36.4217393523831], [139.105096290812, 36.4220679147566], [139.10516847732, 36.4222682406235], [139.105292208802, 36.4224740322452], [139.105730342402, 36.4229607201741], [139.105973023622, 36.423265536484], [139.106201, 36.424002], [139.106261302725, 36.4240777152423], [139.106849989237, 36.4266507451235], [139.106855, 36.426735], [139.106902933682, 36.426811132795], [139.107051038181, 36.4275303679175], [139.107134303393, 36.4276893860327], [139.107134, 36.427779], [139.107199376144, 36.4278429342774], [139.107843106308, 36.4293324912873], [139.10827086028, 36.4302918279725], [139.108277, 36.430369], [139.108339897979, 36.4304705803127], [139.109001820602, 36.4318694534052], [139.109022, 36.431957], [139.109078787536, 36.4320264577939], [139.109260828541, 36.4323834621826], [139.109357038198, 36.4323807956349], [139.109825724711, 36.4317208433077], [139.110021292174, 36.4315538645255], [139.110341292834, 36.4315152800346], [139.110594819952, 36.4315707518709], [139.111278317969, 36.432064383912], [139.111560648003, 36.4321727306531], [139.11200601308, 36.4322116699372], [139.112413940997, 36.4321036267758], [139.112682744571, 36.4319182500394], [139.113038778305, 36.4315318601369], [139.113126, 36.431487], [139.11316262619, 36.4314069552368], [139.114561923817, 36.4298955341143], [139.114903846441, 36.4297209441865], [139.115257665225, 36.4296377379064], [139.115481, 36.429618], [139.115649850415, 36.4295848791702], [139.117683318013, 36.4292310787271]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_09\\u664200\\u5206_\\u7cfb\\u7d71123", "times": [1747612800000, 1747612801775, 1747612820821, 1747612841867, 1747612858057, 1747612860000, 1747612860000, 1747612860000, 1747612860000, 1747612862076, 1747612916931, 1747612920000, 1747612920000, 1747612920000, 1747612920000, 1747612921188, 1747612932171, 1747612954593, 1747612978437, 1747612980000, 1747612981799, 1747613012947, 1747613028650, 1747613038878, 1747613040000, 1747613041022, 1747613056927, 1747613065407, 1747613091222, 1747613099275, 1747613100000, 1747613100906, 1747613126022, 1747613148623, 1747613160000, 1747613160000, 1747613160000, 1747613162086, 1747613166979, 1747613216343, 1747613220000, 1747613228113, 1747613276810, 1747613280000, 1747613281566, 1747613285269, 1747613328829, 1747613338778, 1747613340000, 1747613341404, 1747613350329, 1747613356759, 1747613359917, 1747613362390, 1747613369174, 1747613398114, 1747613400000, 1747613402257, 1747613416533, 1747613431381, 1747613457972, 1747613460000, 1747613461581, 1747613468509, 1747613472012, 1747613480778, 1747613489757, 1747613497132, 1747613500643, 1747613506556, 1747613514584, 1747613518714, 1747613520000, 1747613520663, 1747613522135, 1747613529775, 1747613531270, 1747613532564, 1747613534897, 1747613537000, 1747613543703, 1747613546506, 1747613548376, 1747613555682, 1747613559447, 1747613565449, 1747613571470, 1747613577785, 1747613580000, 1747613581491, 1747613589851, 1747613599205, 1747613606756, 1747613611063, 1747613615305, 1747613638314, 1747613640000, 1747613641019, 1747613656936, 1747613661957, 1747613665370, 1747613669227, 1747613672406, 1747613683867, 1747613698838, 1747613700000, 1747613701605, 1747613704875, 1747613710477, 1747613718123, 1747613733926, 1747613748221, 1747613757624, 1747613760000, 1747613766411, 1747613931114, 1747613947961, 1747613969380, 1747613983335, 1747613990572], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_09\\u664200\\u5206_\\u7cfb\\u7d71123", "popup": "\\u5e73\\u65e5_09\\u664200\\u5206_\\u7cfb\\u7d71123"}, "geometry": {"type": "LineString", "coordinates": [[139.115536, 36.303985], [139.11554827634, 36.3039003183803], [139.116677955573, 36.3038923927042], [139.116675853729, 36.3028818908447], [139.115716088512, 36.3029085719264], [139.115604, 36.302887], [139.115447402, 36.3029174580902], [139.112341403961, 36.3029936594257], [139.112202, 36.302983], [139.112112483324, 36.3030045982771], [139.109646366904, 36.303067152838], [139.10951, 36.30305], [139.109354122854, 36.3030780916894], [139.107298032237, 36.3031672619599], [139.107189, 36.303141], [139.107100017678, 36.3031709082437], [139.106209874153, 36.3031941396627], [139.104392152579, 36.3032280479398], [139.102460378756, 36.3032933099331], [139.102334, 36.303286], [139.102194491185, 36.3033065413521], [139.09974201301, 36.3033740305409], [139.099735021591, 36.3023727344807], [139.099696071194, 36.3017212824818], [139.099718, 36.301652], [139.099689307305, 36.3015587657811], [139.099624117492, 36.3000649382355], [139.099602309292, 36.2992681727762], [139.099483824506, 36.2968439232594], [139.100418285484, 36.2968188361705], [139.1005, 36.296835], [139.100588313926, 36.2968201891506], [139.103086266327, 36.296755071931], [139.105334424411, 36.2967058957713], [139.106465857143, 36.296677], [139.109145960154, 36.2966136017313], [139.109286, 36.296636], [139.109434355659, 36.2966206312014], [139.109784208837, 36.2965996901415], [139.113321459525, 36.296511602392], [139.113583, 36.296497], [139.113885657278, 36.2964818368311], [139.113947114291, 36.297954294139], [139.113932, 36.29805], [139.113939183736, 36.2981534693172], [139.113959241938, 36.2983979086358], [139.117517953595, 36.2983240299985], [139.117810661278, 36.2977100030907], [139.11789, 36.297661], [139.117875734029, 36.2975585665185], [139.118205879533, 36.2969605709401], [139.118425470805, 36.296523454381], [139.118502554801, 36.2963002795426], [139.118538356389, 36.2961211308145], [139.118542671204, 36.2956232436834], [139.118600280331, 36.2934999272028], [139.118625, 36.293363], [139.118598530993, 36.293257268622], [139.118644245278, 36.2925760880446], [139.118665702951, 36.2918667841757], [139.11866931803, 36.2905961128636], [139.11871, 36.290505], [139.118679347131, 36.290407214474], [139.118686460887, 36.2899652356462], [139.1186997552, 36.2897420283579], [139.118809026364, 36.2891897610866], [139.118979171867, 36.2886337583195], [139.119091124911, 36.2881720222739], [139.119091124911, 36.2879480426714], [139.119040862345, 36.2875730021989], [139.11899153298, 36.2870623570294], [139.118981853747, 36.2867989967479], [139.118984, 36.286717], [139.118961795545, 36.2866187380176], [139.118960745942, 36.2863968589771], [139.119032116972, 36.2852473112724], [139.119016839196, 36.2850224611012], [139.118953749248, 36.2848342399146], [139.118795265121, 36.2845070700744], [139.11863748139, 36.2842170849566], [139.118335907974, 36.2832372357443], [139.118209027683, 36.2828276459855], [139.118108853079, 36.2825577820009], [139.117785238658, 36.2814887263897], [139.117624655985, 36.2809366929237], [139.117375327279, 36.2800551824428], [139.117103607701, 36.2791751539875], [139.116846115635, 36.278247004722], [139.116785, 36.277917], [139.116668390105, 36.2778398213182], [139.116359002538, 36.2772041458708], [139.115923902005, 36.2765255563764], [139.115542095124, 36.275991338351], [139.115343728719, 36.2756780526286], [139.115173116946, 36.2753600526234], [139.114319824611, 36.2736108258997], [139.114285, 36.273476], [139.114212303445, 36.2733979795348], [139.113506534915, 36.2719836897926], [139.113272713492, 36.2715413304716], [139.113076679099, 36.271255339636], [139.112803909917, 36.2715517939178], [139.112559129492, 36.2717830620193], [139.111980704885, 36.2727766440814], [139.111210211492, 36.2740685792912], [139.11113, 36.274159], [139.11108601374, 36.2742606218729], [139.110935693632, 36.2744430802864], [139.110662690986, 36.2747468892265], [139.110242866908, 36.275130811857], [139.109369283567, 36.2759202084716], [139.108576981315, 36.2766326760108], [139.108105962132, 36.2761303643197], [139.108041, 36.27598], [139.107932901944, 36.2759465850998], [139.106155996508, 36.2740172288873], [139.106032731955, 36.2737921938315], [139.105838679706, 36.2735215011016], [139.105803461451, 36.2733195859971], [139.105694890022, 36.2732607908439]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_09\\u664200\\u5206_\\u7cfb\\u7d71160", "times": [1747612800000, 1747612807214, 1747612813332, 1747612819659, 1747612857186, 1747612860000, 1747612866188, 1747612946933, 1747612973832, 1747612980000, 1747612984955, 1747613057878, 1747613100000, 1747613115601, 1747613142465, 1747613144059, 1747613158572, 1747613160000, 1747613164906, 1747613249564, 1747613274664, 1747613280000, 1747613282305, 1747613307800, 1747613338291, 1747613340000, 1747613342519, 1747613400000, 1747613442612, 1747613520000, 1747613616496, 1747613703337, 1747613789230, 1747613823623, 1747613833794, 1747613864418, 1747613871724, 1747613880000, 1747613883988, 1747613885683, 1747613890789, 1747613895308, 1747613942724, 1747613977601, 1747614004636, 1747614007036, 1747614010177, 1747614023620, 1747614037972, 1747614049761, 1747614060000, 1747614061787, 1747614098639, 1747614117924, 1747614120000, 1747614121760, 1747614138099, 1747614178137, 1747614180000, 1747614181688, 1747614219005, 1747614229641, 1747614240000, 1747614240930, 1747614260820, 1747614281519, 1747614300000, 1747614340638, 1747614450937, 1747614476013, 1747614480000, 1747614481127, 1747614517752, 1747614522709, 1747614538532, 1747614540000, 1747614546144, 1747614573362, 1747614600000, 1747614615064, 1747614636613, 1747614656498, 1747614666617, 1747614681151, 1747614704533, 1747614707582, 1747614720000, 1747614724262, 1747614731032, 1747614759235, 1747614780000, 1747614784009, 1747614826180, 1747614840000, 1747614917019, 1747614940156, 1747614951484, 1747614964840, 1747615067902, 1747615074165, 1747615080000, 1747615083349, 1747615087492, 1747615116422, 1747615124897, 1747615137377, 1747615155307, 1747615161715, 1747615200000, 1747615204824, 1747615219826, 1747615241049, 1747615260000, 1747615262975, 1747615300016, 1747615378292, 1747615380000, 1747615422128, 1747615497861, 1747615525339, 1747615550961, 1747615560000, 1747615564493, 1747615571311, 1747615617133, 1747615620000, 1747615626899, 1747615668845, 1747615693525, 1747615829338, 1747615860000, 1747615863851, 1747615896686, 1747615934019, 1747615939172, 1747615976822, 1747615980000, 1747615995923, 1747616050135, 1747616095515, 1747616100000, 1747616107845, 1747616318843, 1747616326239, 1747616353309, 1747616385706], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_09\\u664200\\u5206_\\u7cfb\\u7d71160", "popup": "\\u5e73\\u65e5_09\\u664200\\u5206_\\u7cfb\\u7d71160"}, "geometry": {"type": "LineString", "coordinates": [[139.072229, 36.383658], [139.072303254187, 36.3839700617261], [139.072625352075, 36.3840393698354], [139.07265007364, 36.3843173680282], [139.074689953281, 36.3844273996844], [139.074836, 36.384465], [139.074940795882, 36.3844362359813], [139.076382195353, 36.3845041919657], [139.076415896416, 36.3841162254292], [139.076444, 36.38403], [139.076421492321, 36.3839240565602], [139.076499976447, 36.3823433752831], [139.07763, 36.382352], [139.07898906971, 36.3823327337505], [139.079870348821, 36.380579372986], [139.079850639828, 36.3804682279924], [139.080085158348, 36.3794635182257], [139.080124, 36.379368], [139.080127024089, 36.3792748484394], [139.080470696711, 36.3776911420771], [139.080584049225, 36.3772233249118], [139.080623, 36.377127], [139.080626964569, 36.3770264179962], [139.080862416289, 36.3759298758636], [139.080786497639, 36.3746002541929], [139.080795, 36.374526], [139.080765389835, 36.3744265703465], [139.08065, 36.372095], [139.080597575684, 36.3712775154491], [139.082435, 36.371233], [139.084148821738, 36.3711572525025], [139.083873018172, 36.3699281688918], [139.08533785614, 36.3702791042162], [139.085927942783, 36.370409576651], [139.086108816463, 36.3704125631418], [139.086626483133, 36.3705496320768], [139.086660653103, 36.3704482436822], [139.086524, 36.370404], [139.086342401782, 36.370390020974], [139.086317212628, 36.3704493404336], [139.086096221886, 36.3703882155703], [139.085889575059, 36.3703923269244], [139.083810276772, 36.3698936317813], [139.08410053736, 36.3711622525025], [139.084344856131, 36.3721425916808], [139.084355, 36.372231], [139.08440024965, 36.3723412811757], [139.084500074387, 36.372831947686], [139.084564447403, 36.3733602843087], [139.084602698065, 36.3737952843087], [139.084607, 36.374174], [139.084618441451, 36.3742533554967], [139.084707420949, 36.3758989609477], [139.084748237087, 36.3767602698098], [139.084731, 36.376852], [139.084755582989, 36.3769403298329], [139.084813541984, 36.3777794349861], [139.087360008932, 36.3778050320028], [139.087477, 36.37782], [139.087579250336, 36.3778129890924], [139.089846770843, 36.377831235362], [139.089560936857, 36.3782999600753], [139.089274, 36.378753], [139.089249217279, 36.3788240981832], [139.088426828384, 36.3802552404042], [139.087552659732, 36.3817376526496], [139.085798, 36.382108], [139.084860771484, 36.3823228774542], [139.084673018172, 36.3844554429203], [139.084764330341, 36.3849358576638], [139.084742, 36.385011], [139.084781239733, 36.3850708760662], [139.085151733785, 36.3872507284924], [139.085279081007, 36.3875301469974], [139.086114764214, 36.3868614884569], [139.086211, 36.38682], [139.086304384586, 36.3867498879134], [139.086769922289, 36.3864916789759], [139.087284, 36.386328], [139.08780840114, 36.3861421306667], [139.088571316485, 36.3859012194348], [139.089204902464, 36.385568026198], [139.08945971199, 36.3858009739636], [139.089874755641, 36.3860957363427], [139.089135746384, 36.3864948486618], [139.089198137915, 36.3865738051837], [139.089629, 36.386418], [139.090047932892, 36.386190111482], [139.090643500356, 36.3866244519232], [139.092843382634, 36.3886576827442], [139.090616, 36.389502], [139.090369098238, 36.3895996365318], [139.090198136597, 36.3919325938576], [139.089253, 36.391881], [139.087478722567, 36.3918453484384], [139.086953945438, 36.3917692114274], [139.086706715938, 36.3917014843538], [139.086437095566, 36.3915814832582], [139.084308820419, 36.3907294182671], [139.084394180881, 36.3906353451514], [139.084361, 36.39053], [139.084234186156, 36.3905512328902], [139.084145206659, 36.3906589597181], [139.083137744353, 36.390265781681], [139.082878270803, 36.3904275914109], [139.082469408368, 36.3906348645831], [139.081791159025, 36.3905185085089], [139.08156375558, 36.3904389621647], [139.080466, 36.391242], [139.080366557819, 36.3913417108795], [139.080011805834, 36.3916180755119], [139.079533789297, 36.3920280787989], [139.079173, 36.392438], [139.079143703314, 36.3925192201924], [139.078437814424, 36.3934042212881], [139.07613519668, 36.3921849008652], [139.076101, 36.392145], [139.075602603422, 36.3919185329459], [139.074655082915, 36.3915967108795], [139.074405638466, 36.3913726134304], [139.074613335555, 36.391147157328], [139.074615, 36.391048], [139.074442256851, 36.3909787414533], [139.074188846136, 36.391096921937], [139.073139752873, 36.3897525659334], [139.073116, 36.389655], [139.072992581575, 36.3895680153003], [139.072475498897, 36.3888802735278], [139.07246290432, 36.388406840233], [139.069258821651, 36.3881248279584], [139.069154, 36.388707], [139.069151540544, 36.3888011792427], [139.069023493587, 36.3895975545407], [139.068857546496, 36.3905007494777], [139.068994457207, 36.3905610023924], [139.069972880494, 36.3900896260603], [139.070069, 36.390089], [139.070587067668, 36.3897766469739], [139.072480785933, 36.388871115803], [139.072613729059, 36.3873859244999], [139.072657, 36.387243], [139.07262605181, 36.3871296345919], [139.072791416888, 36.3840103767728], [139.072714564378, 36.3839202923563], [139.072877014111, 36.3835418856636], [139.072294390433, 36.3834532156406]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_09\\u664210\\u5206_\\u7cfb\\u7d71105", "times": [1747613400000, 1747613402164, 1747613403017, 1747613408200, 1747613417381, 1747613424618, 1747613427253, 1747613445382, 1747613448286, 1747613458149, 1747613460000, 1747613464799, 1747613497720, 1747613518074, 1747613520000, 1747613521282, 1747613528308, 1747613535386, 1747613538693, 1747613553728, 1747613570519, 1747613578918, 1747613580000, 1747613581810, 1747613604192, 1747613608414, 1747613631098, 1747613638482, 1747613640000, 1747613645791, 1747613657160, 1747613661399, 1747613665793, 1747613687368, 1747613697735, 1747613700000, 1747613703641, 1747613738233, 1747613757202, 1747613760000, 1747613776327, 1747613798662, 1747613803961, 1747613808037, 1747613814177, 1747613818664, 1747613820000, 1747613822052, 1747613860497, 1747613876737, 1747613878725, 1747613880000, 1747613888973, 1747613917684, 1747613942690, 1747613981425, 1747613997246, 1747614000000, 1747614001382, 1747614038634, 1747614053381, 1747614057975, 1747614060000, 1747614061744, 1747614081362, 1747614087864, 1747614097327, 1747614118978, 1747614120000, 1747614121962, 1747614124645, 1747614141812, 1747614170558, 1747614177960, 1747614180000, 1747614185113, 1747614230740, 1747614238270, 1747614240000, 1747614241818, 1747614249409, 1747614257488, 1747614264659, 1747614289306, 1747614298748, 1747614300000, 1747614301538, 1747614305785, 1747614340579, 1747614357754, 1747614360000, 1747614362719, 1747614417503, 1747614420000, 1747614420000, 1747614420000, 1747614420000, 1747614425317, 1747614534890, 1747614540000, 1747614542313, 1747614596910, 1747614600000, 1747614603515, 1747614657538, 1747614660000, 1747614662942, 1747614674544, 1747614678356, 1747614702377, 1747614706512, 1747614717303, 1747614720000, 1747614727573, 1747614775667, 1747614781358, 1747614823189, 1747614830956, 1747614857176, 1747614871656, 1747614879813, 1747614887316, 1747614900000, 1747614906712, 1747614912141, 1747614914758, 1747614916761, 1747614936901, 1747614958101, 1747614960000, 1747614962810, 1747614987814, 1747615004345, 1747615069081, 1747615080000, 1747615082985, 1747615093927, 1747615098845, 1747615103343, 1747615109385, 1747615111822, 1747615138221, 1747615140000, 1747615142999, 1747615186386, 1747615197413, 1747615200000, 1747615223661, 1747615250051, 1747615292038, 1747615354002, 1747615370790, 1747615388099, 1747615396010, 1747615438788, 1747615488354, 1747615566445, 1747615596908, 1747615663529, 1747615680000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_09\\u664210\\u5206_\\u7cfb\\u7d71105", "popup": "\\u5e73\\u65e5_09\\u664210\\u5206_\\u7cfb\\u7d71105"}, "geometry": {"type": "LineString", "coordinates": [[139.193544, 36.376037], [139.193791696238, 36.375847386113], [139.19384312415, 36.3757468970472], [139.193864231954, 36.3750866416201], [139.192420501131, 36.3750107899051], [139.191283011703, 36.3749439600732], [139.190877766326, 36.3748707685467], [139.188215261688, 36.3740334236243], [139.187787749094, 36.3739015500094], [139.186351479258, 36.3734211523327], [139.186093, 36.373312], [139.185810140626, 36.3732456102968], [139.183910317868, 36.3726903031889], [139.182748807269, 36.3723190038283], [139.182654, 36.372262], [139.182445484516, 36.372215339744], [139.181334348929, 36.371882120965], [139.18022449707, 36.37152636407], [139.179695637272, 36.3713828578841], [139.177224034756, 36.3709239565386], [139.174467311178, 36.3703987156873], [139.173093204683, 36.3701202009675], [139.172929, 36.370056], [139.172716529416, 36.3700554090731], [139.170159563141, 36.3695674225822], [139.169675953996, 36.3694795598611], [139.167089600814, 36.3689679054182], [139.166247157674, 36.3688029947526], [139.166078, 36.368758], [139.165513164945, 36.3686682019372], [139.164410427502, 36.3684681724746], [139.163992819034, 36.3684224330705], [139.16355609084, 36.3684224330705], [139.161415914257, 36.3685337940285], [139.160386996918, 36.368580184449], [139.160165, 36.36855], [139.159938135801, 36.3685931430121], [139.157727295178, 36.3686884091218], [139.156516453236, 36.3687602433741], [139.156642, 36.368657], [139.154663163539, 36.3688051324162], [139.151947367227, 36.368903468047], [139.151303873825, 36.3689387341567], [139.150809645653, 36.3689734975095], [139.150068306362, 36.3690503317618], [139.149529531887, 36.3691221660142], [139.149371, 36.369093], [139.149160320244, 36.3691783197875], [139.144826220343, 36.3698501166318], [139.142991122447, 36.3701147285327], [139.142763018608, 36.3701224788061], [139.142617, 36.370129], [139.142208267942, 36.3702504652969], [139.140842205767, 36.3704723269244], [139.139649906153, 36.3706551304134], [139.137829500721, 36.3710342675465], [139.1370878142, 36.3711948194056], [139.136955, 36.371183], [139.136780293034, 36.3712623327862], [139.131578207016, 36.3724333485757], [139.129511856471, 36.3728759598536], [139.128873373664, 36.3730289417399], [139.128581, 36.373049], [139.128330868367, 36.3731596705842], [139.125236759894, 36.3738374656621], [139.124223590557, 36.3740958441421], [139.122782193723, 36.3745486354135], [139.119563659968, 36.3757364075515], [139.119397, 36.375744], [139.119174622928, 36.3758716629786], [139.118843078613, 36.3760096624781], [139.116674916573, 36.3768140215848], [139.113047757803, 36.3781673640932], [139.112120413219, 36.3785274341161], [139.111844, 36.378578], [139.111548053425, 36.3787349773816], [139.108683687003, 36.3798099282778], [139.108212667819, 36.379990192538], [139.108094, 36.380003], [139.107931269668, 36.3800852084934], [139.107199959477, 36.3803497916607], [139.106407541482, 36.380604372986], [139.105676347694, 36.3807623587322], [139.103130931669, 36.3811958375268], [139.102154024255, 36.381354953662], [139.102022, 36.381351], [139.101896065919, 36.38139677981], [139.101523944207, 36.381462978494], [139.098468319201, 36.3819804983747], [139.09696616509, 36.3822587127249], [139.096765, 36.382249], [139.096586458075, 36.3823200884101], [139.092663669025, 36.3829917697659], [139.092481, 36.382989], [139.092343203414, 36.3830365506088], [139.089669390564, 36.3835154667262], [139.089454, 36.383513], [139.089283735798, 36.3835718411834], [139.085549866725, 36.3842055440907], [139.085372, 36.384208], [139.085234999657, 36.3842514666115], [139.081836990373, 36.3848306179552], [139.081641, 36.384842], [139.081464513517, 36.3848926716632], [139.078646910983, 36.385365443269], [139.078517, 36.385351], [139.078364229764, 36.3854088502688], [139.077702305821, 36.3854620362693], [139.077610645762, 36.3853015850697], [139.076641549862, 36.3845104340677], [139.076418112025, 36.3844462676375], [139.075799454613, 36.3844514877156], [139.075652, 36.384414], [139.075494266118, 36.3844330704709], [139.074482838206, 36.3843914771636], [139.074369837538, 36.3843592025177], [139.073489838197, 36.3843276720178], [139.073333338852, 36.3842892025177], [139.072782473773, 36.3842591048612], [139.072778781971, 36.3840125753437], [139.072733106706, 36.383878699049], [139.072798529325, 36.383762398688], [139.072904, 36.383564], [139.072299792553, 36.3834730910698], [139.072271727735, 36.3838743791595], [139.072454973766, 36.383999251887], [139.072628734349, 36.3840465362867], [139.07255421517, 36.3855363732718], [139.072479113317, 36.387104688316], [139.072448, 36.387243], [139.072460106697, 36.3873452054921], [139.072410075618, 36.3882577198371], [139.072338939373, 36.3888588229485], [139.069835621234, 36.3900818956805], [139.06939, 36.390253], [139.069187693318, 36.3903830418832], [139.068377199266, 36.3907791902159], [139.067965771353, 36.3908675987508], [139.067578131806, 36.390897591411], [139.06706070058, 36.3909589670579], [139.066850089466, 36.3909487414533], [139.064589219742, 36.3906805536298], [139.064445, 36.390637], [139.064277501482, 36.3906487341135], [139.061863277926, 36.3904091951091], [139.061776049745, 36.3909039670579], [139.061748, 36.391019], [139.061734767336, 36.3914014780677], [139.061829694585, 36.3918212567325], [139.061708295114, 36.3924930820858], [139.060470044452, 36.3924510393823], [139.060161942591, 36.3925589931268], [139.059930223013, 36.3927669481482], [139.059811739545, 36.3928517204461], [139.059698620496, 36.3935374007438], [139.059544801712, 36.3943292071023], [139.059236696554, 36.3955671678543], [139.059136172741, 36.3960530236138], [139.058920779223, 36.3971161690065], [139.059219, 36.397003]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_09\\u664210\\u5206_\\u7cfb\\u7d71122", "times": [1747613400000, 1747613400000, 1747613400000, 1747613400000, 1747613405347, 1747613450361, 1747613458152, 1747613460000, 1747613461688, 1747613502413, 1747613508844, 1747613546656, 1747613561252, 1747613578430, 1747613580000, 1747613582312, 1747613614667, 1747613629722, 1747613646306, 1747613692082, 1747613700000, 1747613701248, 1747613706365, 1747613709708, 1747613713586, 1747613734948, 1747613749167, 1747613759049, 1747613760000, 1747613761239, 1747613782681, 1747613819151, 1747613820000, 1747613820721, 1747613829399, 1747613850675, 1747613878939, 1747613880000, 1747613883006, 1747613887149, 1747613891974, 1747613922221, 1747613944513, 1747613972661, 1747613995713, 1747614000000, 1747614000000, 1747614000000, 1747614000000, 1747614002502, 1747614014216, 1747614029706, 1747614045989, 1747614056848, 1747614060000, 1747614060000, 1747614060000, 1747614060000, 1747614060000, 1747614064475, 1747614115702, 1747614120000, 1747614120000, 1747614120000, 1747614120000, 1747614120000, 1747614120000, 1747614120000, 1747614120000, 1747614122009, 1747614127675, 1747614154646, 1747614177504, 1747614180000, 1747614182401, 1747614190355, 1747614201962, 1747614212119, 1747614228579, 1747614234362, 1747614235858, 1747614237899, 1747614240000, 1747614241221, 1747614249781, 1747614258508, 1747614265813, 1747614271173, 1747614277291, 1747614298182, 1747614300000, 1747614300000, 1747614300000, 1747614300000, 1747614300000, 1747614302138, 1747614344237, 1747614345399, 1747614357356, 1747614360000, 1747614360895, 1747614362645, 1747614365562, 1747614376126, 1747614380608, 1747614392612, 1747614400865, 1747614414090, 1747614419143, 1747614420000, 1747614420884, 1747614430655, 1747614455222, 1747614476571, 1747614478993, 1747614480000, 1747614480000, 1747614480000, 1747614480000, 1747614480000, 1747614480000, 1747614492389, 1747614607607, 1747614724757, 1747614744149, 1747614763856, 1747614773724, 1747614780000, 1747614780000, 1747614780000, 1747614780000, 1747614780000, 1747614780000, 1747614780000, 1747614780000, 1747614780000, 1747614780000, 1747614781806, 1747614795490, 1747614811434, 1747614816366, 1747614822213, 1747614838620, 1747614840000, 1747614840985, 1747614863520, 1747614867234, 1747614898767, 1747614900000, 1747614901468, 1747614929485, 1747614945442, 1747614953576, 1747614957789, 1747614960000, 1747614960000, 1747614960000, 1747614960000, 1747614964854, 1747614990365, 1747614997633, 1747615015228, 1747615020000, 1747615022604, 1747615077788, 1747615080000, 1747615085218, 1747615148588, 1747615156068, 1747615195150, 1747615200000, 1747615201202, 1747615205283, 1747615222551, 1747615232345, 1747615246564, 1747615258717, 1747615260000, 1747615276473, 1747615396888, 1747615430809, 1747615452364, 1747615500000, 1747615506712, 1747615512141, 1747615514758, 1747615516761, 1747615536901, 1747615558101, 1747615560000, 1747615562810, 1747615587814, 1747615604345, 1747615669081, 1747615680000, 1747615682985, 1747615693927, 1747615698845, 1747615703343, 1747615709385, 1747615711822, 1747615738221, 1747615740000, 1747615742999, 1747615786386, 1747615797413, 1747615800000, 1747615823661, 1747615850051, 1747615892038, 1747615954002, 1747615970790, 1747615988099, 1747615996010, 1747616038788, 1747616088354, 1747616166445, 1747616196908, 1747616263529], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_09\\u664210\\u5206_\\u7cfb\\u7d71122", "popup": "\\u5e73\\u65e5_09\\u664210\\u5206_\\u7cfb\\u7d71122"}, "geometry": {"type": "LineString", "coordinates": [[139.115536, 36.303985], [139.11555048997, 36.3039052746306], [139.116663492617, 36.3038936589211], [139.116663, 36.303985], [139.116692296851, 36.3042762759094], [139.116753054788, 36.3067356093039], [139.116752005185, 36.3071613448129], [139.116732, 36.307261], [139.116748506508, 36.3073343673407], [139.116718769073, 36.3091332564008], [139.116702323973, 36.3094170122703], [139.116670836541, 36.3110871840294], [139.117462440376, 36.3110146011779], [139.118397599111, 36.3109600194783], [139.118476, 36.310988], [139.11860704422, 36.3109630276496], [139.120490892105, 36.3109560954607], [139.12051456143, 36.3116652988937], [139.12051957598, 36.3124468005976], [139.12039187955, 36.3146014732496], [139.12032, 36.31497], [139.120373921215, 36.3150813395516], [139.120390713545, 36.3155713395517], [139.120106750576, 36.3157943148945], [139.11973963616, 36.3160171880212], [139.117697542229, 36.317223819556], [139.116333347113, 36.3180213301214], [139.115408101736, 36.3186003572136], [139.115304, 36.318635], [139.115178364961, 36.3187146039654], [139.112864201584, 36.3199339038468], [139.108916456184, 36.3219930377514], [139.108829, 36.322046], [139.108721121526, 36.3221177007173], [139.107304215431, 36.3228447459193], [139.103853495167, 36.3246574506048], [139.099266917752, 36.3270620394544], [139.099093, 36.32715], [139.098959280183, 36.3272572010045], [139.098839864834, 36.3274435441329], [139.098729076478, 36.327670990151], [139.098335026207, 36.3291698862795], [139.096940159798, 36.3291287801768], [139.095180280816, 36.3290512411393], [139.093737252366, 36.3290250586405], [139.093469, 36.329018], [139.093340985167, 36.3290530238325], [139.090807580387, 36.3292199626756], [139.090669, 36.329204], [139.090540758956, 36.329223606137], [139.089932130645, 36.3292668234438], [139.089124666361, 36.3292452147904], [139.088286070448, 36.3291367453688], [139.087733651793, 36.3290357369098], [139.087585, 36.328979], [139.087428346895, 36.3289998846007], [139.086644557871, 36.3288919795936], [139.086321061173, 36.3299685460852], [139.086254, 36.330059], [139.086229166331, 36.3301971679133], [139.085768176248, 36.3317513438277], [139.085691, 36.33187], [139.085692490403, 36.332010208995], [139.085308349533, 36.3332616111747], [139.085737739078, 36.3332598077818], [139.08617633697, 36.3332709870895], [139.087328872027, 36.3333874167937], [139.08804303936, 36.333469953131], [139.088202, 36.333512], [139.088361755633, 36.3335038464979], [139.088810266881, 36.3335440968944], [139.090954518879, 36.3336484910542], [139.092772006989, 36.3337335637288], [139.092965, 36.333772], [139.093164424983, 36.3337554942259], [139.093827978564, 36.3337779944471], [139.094794041399, 36.3338394229239], [139.095639871428, 36.3338877801668], [139.097004653173, 36.3340179944471], [139.096893279506, 36.3343981370961], [139.096892229903, 36.3344991369636], [139.09685071403, 36.3346328511358], [139.09679, 36.334766], [139.096788440219, 36.3348521365662], [139.096628440879, 36.3354418801682], [139.096463193523, 36.3360427990889], [139.096327683602, 36.3365462875786], [139.096172581749, 36.3369029194732], [139.095920920372, 36.3372834426481], [139.095038590339, 36.3385725267231], [139.094945, 36.338676], [139.094908794703, 36.3387719797491], [139.093799059906, 36.3404219776188], [139.092972589662, 36.3416168754602], [139.09289, 36.341718], [139.092839178946, 36.3418353950332], [139.09138402219, 36.3439831582059], [139.091324780126, 36.34403087472], [139.090916384621, 36.344643021041], [139.090793, 36.34476], [139.090772828402, 36.344871220346], [139.09063731848, 36.3450616412636], [139.090440700754, 36.3453915112376], [139.089907757628, 36.3466457088437], [139.089700994399, 36.3471828401887], [139.089113473892, 36.348612983835], [139.088716506958, 36.3495980840402], [139.088045604837, 36.3511671193998], [139.087799541343, 36.3517694630865], [139.087719, 36.351855], [139.087734002321, 36.3519386895964], [139.087384381948, 36.3528291357286], [139.086592897154, 36.3550893546806], [139.085906251646, 36.3570536981394], [139.085814356804, 36.3572731056224], [139.085772, 36.357363], [139.085769225851, 36.3574279935823], [139.08523604926, 36.35891814756], [139.084799315791, 36.36012983825], [139.084496459307, 36.3608546746923], [139.084414, 36.360962], [139.084385555867, 36.3610897525255], [139.083885265519, 36.3622270494804], [139.083368415647, 36.363381053379], [139.083126783371, 36.3633255143926], [139.083045188797, 36.3635211563914], [139.083172497657, 36.363530486028], [139.083218, 36.363476], [139.083247483106, 36.3633734817274], [139.083349524111, 36.3634157610394], [139.083208649772, 36.3637167518245], [139.083022877285, 36.3641149843554], [139.082754889188, 36.3644505656826], [139.082457864053, 36.3647568621082], [139.081973667619, 36.3650961134748], [139.08166917754, 36.3652620317061], [139.081544, 36.365282], [139.081443405713, 36.3653997863997], [139.080344048565, 36.3660205672377], [139.079069065753, 36.3667507661141], [139.078629651724, 36.3669134751788], [139.078063121959, 36.3669823841368], [139.07645554391, 36.3669642198625], [139.076325, 36.366936], [139.076239104086, 36.3669553430683], [139.074200508831, 36.3669246627121], [139.073864526705, 36.366917891314], [139.073649955918, 36.3692187930818], [139.07361, 36.369303], [139.073639926818, 36.3693986431033], [139.073494737663, 36.3712770969986], [139.073404942028, 36.3723465165336], [139.073350248244, 36.3728911947818], [139.073289490307, 36.3731699055123], [139.073219, 36.373307], [139.073200044539, 36.3734283813148], [139.072713398372, 36.3752090241486], [139.072676, 36.375304], [139.072650774694, 36.3754036200868], [139.072521328926, 36.375927599253], [139.072450192021, 36.3760685342994], [139.07242651874, 36.3764365716041], [139.072386, 36.376531], [139.07242150419, 36.3766434407146], [139.072286344136, 36.3790993655748], [139.072257, 36.379195], [139.072281329586, 36.3793132699209], [139.072210776013, 36.3807680983048], [139.072165527998, 36.3809360256327], [139.072120746912, 36.3818332099839], [139.072091, 36.381942], [139.072112117282, 36.3820330182553], [139.072095324293, 36.3823469138213], [139.070451009478, 36.382346259113], [139.070287280633, 36.3830886063431], [139.070195502194, 36.3841809525908], [139.071347920848, 36.3842662465333], [139.071458, 36.384309], [139.071615908285, 36.3842916866896], [139.072779755511, 36.3843303029085], [139.072788500225, 36.3840650828303], [139.072720395066, 36.3839057325126], [139.072904, 36.383564], [139.072299792553, 36.3834730910698], [139.072271727735, 36.3838743791595], [139.072454973766, 36.383999251887], [139.072628734349, 36.3840465362867], [139.07255421517, 36.3855363732718], [139.072479113317, 36.387104688316], [139.072448, 36.387243], [139.072460106697, 36.3873452054921], [139.072410075618, 36.3882577198371], [139.072338939373, 36.3888588229485], [139.069835621234, 36.3900818956805], [139.06939, 36.390253], [139.069187693318, 36.3903830418832], [139.068377199266, 36.3907791902159], [139.067965771353, 36.3908675987508], [139.067578131806, 36.390897591411], [139.06706070058, 36.3909589670579], [139.066850089466, 36.3909487414533], [139.064589219742, 36.3906805536298], [139.064445, 36.390637], [139.064277501482, 36.3906487341135], [139.061863277926, 36.3904091951091], [139.061776049745, 36.3909039670579], [139.061748, 36.391019], [139.061734767336, 36.3914014780677], [139.061829694585, 36.3918212567325], [139.061708295114, 36.3924930820858], [139.060470044452, 36.3924510393823], [139.060161942591, 36.3925589931268], [139.059930223013, 36.3927669481482], [139.059811739545, 36.3928517204461], [139.059698620496, 36.3935374007438], [139.059544801712, 36.3943292071023], [139.059236696554, 36.3955671678543], [139.059136172741, 36.3960530236138], [139.058920779223, 36.3971161690065]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_09\\u664210\\u5206_\\u7cfb\\u7d71172", "times": [1747613400000, 1747613400000, 1747613400000, 1747613400000, 1747613402502, 1747613414216, 1747613429706, 1747613445989, 1747613456848, 1747613460000, 1747613460000, 1747613460000, 1747613460000, 1747613460000, 1747613464475, 1747613515702, 1747613520000, 1747613520000, 1747613520000, 1747613520000, 1747613520000, 1747613520000, 1747613520000, 1747613520000, 1747613522009, 1747613527675, 1747613554646, 1747613577504, 1747613580000, 1747613582401, 1747613590355, 1747613601962, 1747613612119, 1747613628579, 1747613634362, 1747613635858, 1747613637899, 1747613640000, 1747613641221, 1747613649781, 1747613658508, 1747613665813, 1747613671173, 1747613677291, 1747613698182, 1747613700000, 1747613700000, 1747613700000, 1747613700000, 1747613700000, 1747613702138, 1747613744237, 1747613745399, 1747613757356, 1747613760000, 1747613760895, 1747613762645, 1747613765562, 1747613776126, 1747613780608, 1747613792612, 1747613800865, 1747613814090, 1747613819143, 1747613820000, 1747613820884, 1747613830655, 1747613855222, 1747613876571, 1747613878993, 1747613880000, 1747613880000, 1747613880000, 1747613880000, 1747613880000, 1747613880000, 1747613892389, 1747614007607, 1747614124757, 1747614144149, 1747614163856, 1747614173724, 1747614180000, 1747614180000, 1747614180000, 1747614180000, 1747614180000, 1747614180000, 1747614180000, 1747614180000, 1747614180000, 1747614180000, 1747614182493, 1747614199018, 1747614210975, 1747614216206, 1747614219073, 1747614220882, 1747614224438, 1747614231581, 1747614240000, 1747614300000, 1747614300000, 1747614300000, 1747614302474, 1747614338889, 1747614360000, 1747614369904, 1747614409718, 1747614418809, 1747614420000, 1747614420000, 1747614420000, 1747614420000, 1747614423654, 1747614461445, 1747614477657, 1747614480000, 1747614501535, 1747614592040, 1747614611257, 1747614683371, 1747614708995, 1747614769545, 1747614794222, 1747614812446, 1747614831259], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_09\\u664210\\u5206_\\u7cfb\\u7d71172", "popup": "\\u5e73\\u65e5_09\\u664210\\u5206_\\u7cfb\\u7d71172"}, "geometry": {"type": "LineString", "coordinates": [[139.093469, 36.329018], [139.093340985167, 36.3290530238325], [139.090807580387, 36.3292199626756], [139.090669, 36.329204], [139.090540758956, 36.329223606137], [139.089932130645, 36.3292668234438], [139.089124666361, 36.3292452147904], [139.088286070448, 36.3291367453688], [139.087733651793, 36.3290357369098], [139.087585, 36.328979], [139.087428346895, 36.3289998846007], [139.086644557871, 36.3288919795936], [139.086321061173, 36.3299685460852], [139.086254, 36.330059], [139.086229166331, 36.3301971679133], [139.085768176248, 36.3317513438277], [139.085691, 36.33187], [139.085692490403, 36.332010208995], [139.085308349533, 36.3332616111747], [139.085737739078, 36.3332598077818], [139.08617633697, 36.3332709870895], [139.087328872027, 36.3333874167937], [139.08804303936, 36.333469953131], [139.088202, 36.333512], [139.088361755633, 36.3335038464979], [139.088810266881, 36.3335440968944], [139.090954518879, 36.3336484910542], [139.092772006989, 36.3337335637288], [139.092965, 36.333772], [139.093164424983, 36.3337554942259], [139.093827978564, 36.3337779944471], [139.094794041399, 36.3338394229239], [139.095639871428, 36.3338877801668], [139.097004653173, 36.3340179944471], [139.096893279506, 36.3343981370961], [139.096892229903, 36.3344991369636], [139.09685071403, 36.3346328511358], [139.09679, 36.334766], [139.096788440219, 36.3348521365662], [139.096628440879, 36.3354418801682], [139.096463193523, 36.3360427990889], [139.096327683602, 36.3365462875786], [139.096172581749, 36.3369029194732], [139.095920920372, 36.3372834426481], [139.095038590339, 36.3385725267231], [139.094945, 36.338676], [139.094908794703, 36.3387719797491], [139.093799059906, 36.3404219776188], [139.092972589662, 36.3416168754602], [139.09289, 36.341718], [139.092839178946, 36.3418353950332], [139.09138402219, 36.3439831582059], [139.091324780126, 36.34403087472], [139.090916384621, 36.344643021041], [139.090793, 36.34476], [139.090772828402, 36.344871220346], [139.09063731848, 36.3450616412636], [139.090440700754, 36.3453915112376], [139.089907757628, 36.3466457088437], [139.089700994399, 36.3471828401887], [139.089113473892, 36.348612983835], [139.088716506958, 36.3495980840402], [139.088045604837, 36.3511671193998], [139.087799541343, 36.3517694630865], [139.087719, 36.351855], [139.087734002321, 36.3519386895964], [139.087384381948, 36.3528291357286], [139.086592897154, 36.3550893546806], [139.085906251646, 36.3570536981394], [139.085814356804, 36.3572731056224], [139.085772, 36.357363], [139.085769225851, 36.3574279935823], [139.08523604926, 36.35891814756], [139.084799315791, 36.36012983825], [139.084496459307, 36.3608546746923], [139.084414, 36.360962], [139.084385555867, 36.3610897525255], [139.083885265519, 36.3622270494804], [139.083368415647, 36.363381053379], [139.083126783371, 36.3633255143926], [139.083045188797, 36.3635211563914], [139.083172497657, 36.363530486028], [139.083218, 36.363476], [139.083247483106, 36.3633734817274], [139.083349524111, 36.3634157610394], [139.083208649772, 36.3637167518245], [139.083022877285, 36.3641149843554], [139.082754889188, 36.3644505656826], [139.082457864053, 36.3647568621082], [139.081973667619, 36.3650961134748], [139.08166917754, 36.3652620317061], [139.081544, 36.365282], [139.081388711929, 36.3654227748551], [139.080122709274, 36.3661398473303], [139.079221487045, 36.3666754793564], [139.078792333603, 36.3668655423334], [139.078534841537, 36.3669260169169], [139.078370206615, 36.3669577323559], [139.078037670898, 36.3669635169169], [139.0773695955, 36.366956142871], [139.077311754227, 36.3675912373365], [139.076979160309, 36.3719020648639], [139.07683968544, 36.3745195506978], [139.076806215864, 36.3746592209199], [139.076821784646, 36.3747446074708], [139.076759160968, 36.3760139815694], [139.076702, 36.376749], [139.076700123269, 36.3775462317379], [139.076517820358, 36.3807475906518], [139.076453447342, 36.3814774755689], [139.076444, 36.381573], [139.076454846813, 36.3816640961819], [139.076380094828, 36.3831465625117], [139.076348, 36.38324], [139.07637473041, 36.3833461361004], [139.076318754218, 36.3844652475691], [139.075724819031, 36.3844508063771], [139.075652, 36.384414], [139.075438639794, 36.3844435211792], [139.074530419551, 36.3844016972417], [139.074343481718, 36.3843623891323], [139.073619634492, 36.3843316866897], [139.073369956578, 36.3842805651948], [139.072763192689, 36.3842423574761], [139.072777421521, 36.3840421268459], [139.072731707235, 36.3838987096011], [139.072794914246, 36.3837546004657]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_09\\u664212\\u5206_\\u7cfb\\u7d71113", "times": [1747613520000, 1747613520000, 1747613520000, 1747613520000, 1747613520000, 1747613520000, 1747613522957, 1747613532815, 1747613538482, 1747613544417, 1747613578762, 1747613580000, 1747613581905, 1747613587861, 1747613591674, 1747613595115, 1747613598568, 1747613603483, 1747613609246, 1747613613020, 1747613615815, 1747613619059, 1747613621658, 1747613624620, 1747613633484, 1747613635171, 1747613638609, 1747613640000, 1747613640000, 1747613640000, 1747613640000, 1747613640000, 1747613640000, 1747613640000, 1747613640000, 1747613643991, 1747613652026, 1747613696679, 1747613700000, 1747613701916, 1747613741008, 1747613754609, 1747613760000, 1747613760000, 1747613760000, 1747613760000, 1747613760000, 1747613760000, 1747613760000, 1747613760000, 1747613760989, 1747613763927, 1747613766806, 1747613777063, 1747613783029, 1747613788483, 1747613790103, 1747613791692, 1747613798345, 1747613809384, 1747613811661, 1747613818931, 1747613820000, 1747613821911, 1747613827987, 1747613834122, 1747613859613, 1747613865824, 1747613878025, 1747613880000, 1747613881689, 1747613891010, 1747613900764, 1747613910380, 1747613916295, 1747613927155, 1747613938572, 1747613940000, 1747613941306, 1747613948686, 1747613953999, 1747613961276, 1747613967698, 1747613974537, 1747613982125, 1747613988866, 1747613993352, 1747613996029, 1747614000000, 1747614002921, 1747614013423, 1747614023930, 1747614057944, 1747614060000, 1747614066598, 1747614075293, 1747614088867, 1747614093504, 1747614098471, 1747614104211, 1747614110028, 1747614114086, 1747614117754, 1747614120000, 1747614120000, 1747614120000, 1747614120000, 1747614120000, 1747614120000, 1747614120000, 1747614120000, 1747614121207, 1747614127554, 1747614137527, 1747614142780, 1747614149086, 1747614153653, 1747614156576, 1747614178219, 1747614180000, 1747614181592, 1747614238223, 1747614240000, 1747614242125, 1747614255173, 1747614298139, 1747614300000, 1747614300000, 1747614300000, 1747614300000, 1747614300000, 1747614303022, 1747614330974, 1747614356573, 1747614360000, 1747614364703, 1747614373234, 1747614431210, 1747614444284, 1747614475967, 1747614480000, 1747614480000, 1747614480000, 1747614480000, 1747614480000, 1747614480000, 1747614480000, 1747614483587, 1747614515998, 1747614527148, 1747614537870, 1747614540000, 1747614540000, 1747614540000, 1747614540000, 1747614544423, 1747614597807, 1747614600000, 1747614604303, 1747614655089, 1747614660000, 1747614662819, 1747614671043, 1747614717822, 1747614720000, 1747614721822, 1747614739947, 1747614777130, 1747614780000, 1747614794978, 1747615265448, 1747615283909, 1747615303842], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_09\\u664212\\u5206_\\u7cfb\\u7d71113", "popup": "\\u5e73\\u65e5_09\\u664212\\u5206_\\u7cfb\\u7d71113"}, "geometry": {"type": "LineString", "coordinates": [[139.118185, 36.429014], [139.118053809428, 36.4290362581146], [139.117773576622, 36.4291878388312], [139.117440166566, 36.4292639038476], [139.115925997913, 36.4295106975675], [139.115787, 36.429514], [139.115611949621, 36.4295618858933], [139.115013233348, 36.4296786347664], [139.114692767737, 36.429800215483], [139.114413351729, 36.4299972222062], [139.113141401983, 36.4313937950322], [139.113088, 36.431439], [139.112998778965, 36.4315616955436], [139.112656271689, 36.4319098081983], [139.112366826581, 36.4320720942235], [139.11207178227, 36.432167920853], [139.111752832532, 36.4321609164641], [139.111322747868, 36.4320429427963], [139.110905372865, 36.4317757262643], [139.110643682387, 36.4315894534052], [139.110415694291, 36.4314913883005], [139.110117269685, 36.4315141242187], [139.109898844419, 36.4315948081982], [139.109747474709, 36.4317790766688], [139.109352023648, 36.4323587694257], [139.109216513726, 36.4322965272873], [139.109121353673, 36.4320516223871], [139.109113, 36.431948], [139.10902444428, 36.4318599252416], [139.108320306048, 36.4303554139378], [139.108314, 36.430257], [139.108235524962, 36.4301702937614], [139.107351795458, 36.4281325908495], [139.107232028923, 36.4278572505436], [139.107214, 36.427758], [139.107128355642, 36.427665539637], [139.107040659212, 36.4274440847376], [139.106775703523, 36.4261697960339], [139.106785, 36.426074], [139.106733837782, 36.4259930816872], [139.106312147963, 36.424171056811], [139.106092323227, 36.4235510701943], [139.10604, 36.423299], [139.105961711453, 36.4232196741506], [139.105786784864, 36.4229608990194], [139.105280895974, 36.4224512982928], [139.105165911184, 36.4222122341022], [139.105112034198, 36.42196877881], [139.105125561976, 36.4216186689564], [139.105171, 36.421486], [139.1051730256, 36.4213921922495], [139.105206145309, 36.4211148122941], [139.105171626129, 36.4208432291202], [139.104700139356, 36.4199483312256], [139.104435767659, 36.4194244142907], [139.104309704165, 36.4189173109249], [139.10424719689, 36.4187721876189], [139.104123465407, 36.4186595486467], [139.103598102308, 36.4181928415526], [139.102790988551, 36.4173741127467], [139.102735247143, 36.4171629262713], [139.102755188942, 36.4164735960583], [139.1028, 36.416379], [139.102774081138, 36.4162968221224], [139.10280008709, 36.4160279988279], [139.102560903887, 36.4158363381212], [139.101536414467, 36.4150656823413], [139.101356941577, 36.4148313377552], [139.101063997792, 36.4143444475218], [139.10104, 36.414259], [139.10093665123, 36.4141640354025], [139.100549363529, 36.4135405569585], [139.099963241833, 36.4129850220309], [139.099310065242, 36.4124958032694], [139.099128259021, 36.4120781906608], [139.098857472643, 36.4112952713682], [139.098697239838, 36.4104506447942], [139.098706, 36.410344], [139.098672167086, 36.4102518337912], [139.098563129387, 36.4097161920842], [139.098521497111, 36.4093268182686], [139.098398931634, 36.4088007524653], [139.098243479914, 36.4083453868027], [139.098032518272, 36.4078720690861], [139.097734792742, 36.4073685234404], [139.097581207422, 36.4068883909356], [139.097624239829, 36.4065602840122], [139.097650012316, 36.4063644123495], [139.097612, 36.406074], [139.0975156684, 36.4059676690241], [139.097308555303, 36.4055245565731], [139.097163716016, 36.4050653146646], [139.096805116147, 36.4035586878638], [139.096802, 36.403466], [139.096685000403, 36.4031239880097], [139.096460977255, 36.402692883812], [139.096066226589, 36.4020363797424], [139.095927918385, 36.4018134820247], [139.095689550661, 36.4016284930885], [139.095359173012, 36.4014737500323], [139.09500908571, 36.4013405732431], [139.094763605548, 36.4012496768209], [139.094519757663, 36.4012564994176], [139.094377, 36.401221], [139.094246055941, 36.401233097832], [139.09337013861, 36.4012246962463], [139.093160810563, 36.4011858268706], [139.092909732519, 36.401100378506], [139.092256323122, 36.4008829027877], [139.091623671662, 36.4006542867324], [139.091524, 36.400586], [139.091426237798, 36.4005756609644], [139.090952069806, 36.4004065868318], [139.090218893214, 36.4001202320251], [139.089883501015, 36.3999041176326], [139.089494347572, 36.3996316385366], [139.08919335683, 36.3994537018545], [139.088973066483, 36.399379400776], [139.087210737108, 36.3992748667236], [139.087074, 36.399235], [139.086978785384, 36.3992500996974], [139.083535527425, 36.399068293087], [139.083437, 36.399032], [139.083290631916, 36.3990471212073], [139.082386608767, 36.3990023541812], [139.081738798572, 36.4013560316276], [139.081688, 36.401452], [139.081685037989, 36.4015255621794], [139.081539149099, 36.4021521395102], [139.080418218536, 36.4020525427598], [139.080309, 36.402026], [139.080151280703, 36.4020386836495], [139.078692975796, 36.4019209543652], [139.077361316397, 36.4020566366863], [139.077182, 36.402048], [139.076990938748, 36.4020848245393], [139.076637237026, 36.4021189184658], [139.07422067882, 36.4020016477501], [139.073686106714, 36.4020912113091], [139.073081094142, 36.4011401446109], [139.073046, 36.401007], [139.072930890437, 36.4008699495667], [139.072417538583, 36.4000595752187], [139.072290075618, 36.3997175620703], [139.072202379188, 36.3993716967607], [139.072175906966, 36.3989448964238], [139.072214, 36.398728], [139.07219701477, 36.3986049174553], [139.072206694003, 36.397486098013], [139.072248909612, 36.3971027385708], [139.072411941359, 36.3967568510205], [139.072483, 36.396711], [139.072481328926, 36.396617993455], [139.072985584221, 36.3955132664518], [139.073057, 36.395433], [139.07308505909, 36.3953041836083], [139.073737535945, 36.3938164875693], [139.073781, 36.393762], [139.073813104068, 36.3936446731693], [139.074390595474, 36.3923058102549], [139.074473, 36.392186], [139.074500916241, 36.3920519417878], [139.074629196004, 36.391669212523], [139.073151531312, 36.3897559741612], [139.073116, 36.389655], [139.073037129195, 36.389609831756], [139.072522610675, 36.3889532188468], [139.072610424826, 36.3873601599962], [139.072657, 36.387243], [139.072620453927, 36.3871478730884], [139.072791415569, 36.3840221057418], [139.072735322315, 36.3839080177105], [139.072759229061, 36.3837768751115]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_09\\u664215\\u5206_\\u7cfb\\u7d71111", "times": [1747613700000, 1747613701807, 1747613702710, 1747613716175, 1747613721535, 1747613725752, 1747613731839, 1747613740016, 1747613741681, 1747613747344, 1747613756717, 1747613759286, 1747613760000, 1747613760651, 1747613767541, 1747613771091, 1747613775512, 1747613780435, 1747613785411, 1747613789658, 1747613791158, 1747613795176, 1747613801078, 1747613803426, 1747613805385, 1747613808658, 1747613810231, 1747613812165, 1747613813731, 1747613814769, 1747613816601, 1747613819458, 1747613820000, 1747613822917, 1747613827160, 1747613829843, 1747613834157, 1747613837722, 1747613842974, 1747613850978, 1747613858076, 1747613863405, 1747613868024, 1747613870125, 1747613872178, 1747613881323, 1747613890915, 1747613898840, 1747613906960, 1747613916791, 1747613921457, 1747613929141, 1747613937935, 1747613940000, 1747613949154, 1747613956168, 1747613983622, 1747614000000, 1747614012094, 1747614020711, 1747614045671, 1747614051902, 1747614055885, 1747614060000, 1747614061326, 1747614068273, 1747614075109, 1747614079571, 1747614091147, 1747614096843, 1747614112110, 1747614120000, 1747614121198, 1747614133731, 1747614144574, 1747614148410, 1747614163694, 1747614174996, 1747614178063, 1747614180000, 1747614181084, 1747614183770, 1747614190644, 1747614193835, 1747614206015, 1747614211399, 1747614213857, 1747614221842, 1747614228105, 1747614232705, 1747614239154, 1747614240000, 1747614241094, 1747614245547, 1747614253513, 1747614278766, 1747614288674, 1747614294938, 1747614298616, 1747614300000, 1747614300000, 1747614300000, 1747614300000, 1747614300000, 1747614300000, 1747614300000, 1747614304929, 1747614335532, 1747614340199, 1747614351820, 1747614357333, 1747614369250, 1747614416965, 1747614420000, 1747614421972, 1747614442215, 1747614444269, 1747614456752, 1747614470022, 1747614477933, 1747614480000, 1747614480000, 1747614480000, 1747614480000, 1747614480000, 1747614480000, 1747614481601, 1747614494815, 1747614503978, 1747614522622, 1747614526199, 1747614539120, 1747614540000, 1747614542763, 1747614556767, 1747614588713, 1747614604237, 1747614644330, 1747614657601, 1747614660000, 1747614661899, 1747614690317, 1747614717200, 1747614720000, 1747614722292, 1747614755536, 1747614777845, 1747614780000, 1747614780000, 1747614780000, 1747614780000, 1747614780000, 1747614780000, 1747614780000, 1747614783587, 1747614815998, 1747614827148, 1747614837870, 1747614840000, 1747614840000, 1747614840000, 1747614840000, 1747614844423, 1747614897807, 1747614900000, 1747614904303, 1747614955089, 1747614960000, 1747614962819, 1747614971043, 1747615017822, 1747615020000, 1747615021822, 1747615039947, 1747615077130, 1747615080000, 1747615091649, 1747615457571, 1747615471929, 1747615487432], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_09\\u664215\\u5206_\\u7cfb\\u7d71111", "popup": "\\u5e73\\u65e5_09\\u664215\\u5206_\\u7cfb\\u7d71111"}, "geometry": {"type": "LineString", "coordinates": [[139.123801, 36.458699], [139.123819937116, 36.4585079461785], [139.123933601136, 36.4584806589363], [139.123742541613, 36.4570608365528], [139.123840267803, 36.4564978318543], [139.123800617671, 36.4560517261105], [139.123584058146, 36.455430259238], [139.122722367668, 36.4549127757033], [139.1225202711, 36.4548456933523], [139.121825111046, 36.4546325460505], [139.120674559451, 36.4542796263114], [139.120379634181, 36.4541475163135], [139.120325, 36.454086], [139.120199576639, 36.4540583506904], [139.119118878882, 36.4533712609039], [139.118594449643, 36.4529864986619], [139.117961447656, 36.4524898668899], [139.117311653339, 36.4518943428888], [139.116666173837, 36.451284774172], [139.116094046849, 36.4507794483664], [139.115874923167, 36.450614666707], [139.115235740623, 36.4502233034133], [139.114133001202, 36.4498891986102], [139.11370256601, 36.4497395422259], [139.113350964154, 36.4496012580356], [139.112843675793, 36.4492688595321], [139.112671548805, 36.4490566708282], [139.112530558063, 36.4487663966304], [139.112348517718, 36.4485611887217], [139.112174057399, 36.4484710508548], [139.112013474726, 36.4482056394707], [139.111829685042, 36.4477696083023], [139.111844, 36.447683], [139.111664554089, 36.4474540564092], [139.111284962817, 36.4472063103482], [139.111077616915, 36.4470217823636], [139.110798550775, 36.4466904701204], [139.110597501831, 36.4464018284892], [139.110195986617, 36.4460374369583], [139.10963248794, 36.4454495564145], [139.109165084495, 36.4449090513892], [139.108630042163, 36.4446677143794], [139.108161821921, 36.444465164118], [139.107954009748, 36.4443657863553], [139.107759607631, 36.4442575925923], [139.107129637391, 36.4435773227617], [139.10644649056, 36.4428778780112], [139.106159611587, 36.4421790494766], [139.105787134072, 36.4414874138813], [139.105898971372, 36.4405785746737], [139.106048242536, 36.4401622842177], [139.105841011718, 36.4394683513742], [139.105538155894, 36.4386889356679], [139.105433, 36.438517], [139.105158797427, 36.4382347313351], [139.104985737239, 36.4379979565885], [139.104816524936, 36.4369304926401], [139.104414, 36.436377], [139.10383087083, 36.4357007195462], [139.103275536831, 36.4353219794822], [139.102411981272, 36.4337707659685], [139.102187610234, 36.4333867876904], [139.101982712746, 36.4331717236033], [139.101764, 36.432954], [139.101658048722, 36.4328871309225], [139.101172101631, 36.4324751766025], [139.100721490516, 36.4320497350417], [139.100495835751, 36.4317329208529], [139.100157061277, 36.4308249703726], [139.099990764318, 36.4303781496103], [139.099620969342, 36.4291637356912], [139.099441, 36.428534], [139.099370241165, 36.428460622411], [139.098578522246, 36.4277281047068], [139.097784704121, 36.4271835305793], [139.09754610557, 36.4269567322411], [139.096830889953, 36.425920881487], [139.096277887306, 36.4251661750921], [139.096134097622, 36.42495851953], [139.096083, 36.424814], [139.096020978573, 36.4247374853542], [139.095930133335, 36.4245230312807], [139.095798355555, 36.4239530065745], [139.095654448809, 36.423710133402], [139.094892817192, 36.4228872292575], [139.094562555945, 36.4225196789952], [139.094454685571, 36.4223315479033], [139.094138417053, 36.42170827601], [139.093805356865, 36.4212535591028], [139.093575969958, 36.4209125797902], [139.093349964665, 36.4204000165052], [139.093342, 36.420329], [139.093295270882, 36.420269184767], [139.093174571806, 36.419998448746], [139.0929643099, 36.4195124297469], [139.092346351563, 36.4179586167684], [139.092127227222, 36.4173432418136], [139.091924079072, 36.4169732039667], [139.091738190182, 36.4167889464956], [139.091684, 36.416711], [139.091514867428, 36.4165564894401], [139.091253060548, 36.4163479129387], [139.090393003006, 36.4158986533177], [139.090139710672, 36.4158412821515], [139.088665077068, 36.4157147261332], [139.088541, 36.415684], [139.08836070603, 36.4156777042373], [139.0872585506, 36.4155148079685], [139.087091204698, 36.4155427587942], [139.086716977844, 36.415706392678], [139.086526541334, 36.4157604364698], [139.086255871359, 36.4160370211793], [139.085269751641, 36.4148715563484], [139.085236, 36.414786], [139.085155233122, 36.4147084414864], [139.084420773462, 36.4138542025714], [139.084486547269, 36.4137630180679], [139.083857394486, 36.413372046261], [139.083265092234, 36.4128864370531], [139.082895180195, 36.4126110227226], [139.082839, 36.412515], [139.082654481119, 36.4124851694858], [139.082305561142, 36.4122088967592], [139.081958624627, 36.4118525182453], [139.081115709283, 36.4110500291818], [139.081052, 36.410957], [139.080960258222, 36.4108975838651], [139.080295885865, 36.4103264822998], [139.079838161654, 36.4099281992931], [139.078545217868, 36.4095657711203], [139.078288078308, 36.4095231222045], [139.07734230714, 36.4094663152165], [139.077281, 36.40945], [139.077154553168, 36.4094733839916], [139.076498926844, 36.4094343080076], [139.076037588212, 36.4082808674902], [139.075849017443, 36.4077118831224], [139.075274791249, 36.4062630636844], [139.075079106723, 36.405784971264], [139.075082, 36.405694], [139.075030826961, 36.4056363665092], [139.07461811664, 36.4046285639691], [139.074265930792, 36.4036655123029], [139.074261, 36.403561], [139.074193977748, 36.4034712336499], [139.073621034622, 36.402022968137], [139.07307642946, 36.4011024155723], [139.073046, 36.401007], [139.072930890437, 36.4008699495667], [139.072417538583, 36.4000595752187], [139.072290075618, 36.3997175620703], [139.072202379188, 36.3993716967607], [139.072175906966, 36.3989448964238], [139.072214, 36.398728], [139.07219701477, 36.3986049174553], [139.072206694003, 36.397486098013], [139.072248909612, 36.3971027385708], [139.072411941359, 36.3967568510205], [139.072483, 36.396711], [139.072481328926, 36.396617993455], [139.072985584221, 36.3955132664518], [139.073057, 36.395433], [139.07308505909, 36.3953041836083], [139.073737535945, 36.3938164875693], [139.073781, 36.393762], [139.073813104068, 36.3936446731693], [139.074390595474, 36.3923058102549], [139.074473, 36.392186], [139.074500916241, 36.3920519417878], [139.074629196004, 36.391669212523], [139.073151531312, 36.3897559741612], [139.073116, 36.389655], [139.073037129195, 36.389609831756], [139.072522610675, 36.3889532188468], [139.072610424826, 36.3873601599962], [139.072657, 36.387243], [139.072620453927, 36.3871478730884], [139.072791415569, 36.3840221057418], [139.072735322315, 36.3839080177105], [139.072759229061, 36.3837768751115]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_09\\u664224\\u5206_\\u7cfb\\u7d71104", "times": [1747614240000, 1747614243171, 1747614256174, 1747614268579, 1747614271221, 1747614274509, 1747614283745, 1747614290840, 1747614294057, 1747614300000, 1747614312910, 1747614349150, 1747614360000, 1747614360000, 1747614360000, 1747614360000, 1747614381659, 1747614400638, 1747614421236, 1747614436339, 1747614468177, 1747614480000, 1747614487961, 1747614515067, 1747614537757, 1747614540000, 1747614563175, 1747614765981, 1747614779979, 1747614800286, 1747614821705, 1747614841414, 1747614868504, 1747614879883, 1747614900000, 1747614900000, 1747614900000, 1747614900000, 1747614900000, 1747614922408, 1747614932692, 1747614940962, 1747614944757, 1747614960000, 1747615020000, 1747615080000, 1747615140000, 1747615200000, 1747615260000, 1747615312462, 1747615320000, 1747615340181, 1747615354165, 1747615363225, 1747615376958, 1747615380000, 1747615383582, 1747615404678, 1747615425436, 1747615437542, 1747615440000, 1747615443221, 1747615470905, 1747615494033, 1747615498301, 1747615500000, 1747615501542, 1747615518359, 1747615524354, 1747615534466, 1747615558200, 1747615560000, 1747615562677, 1747615591267, 1747615613931, 1747615619002, 1747615620000, 1747615622720, 1747615648816, 1747615678407, 1747615680000, 1747615681616, 1747615699873, 1747615722505, 1747615738748, 1747615740000, 1747615742057, 1747615745760, 1747615757286, 1747615772185, 1747615780582, 1747615798427, 1747615800000, 1747615803133, 1747615821446, 1747615845801, 1747615858362, 1747615860000, 1747615862940, 1747615890938, 1747615894704, 1747615900747, 1747615910132, 1747615920000, 1747615921328, 1747615945684, 1747615961883, 1747615969699, 1747615979143, 1747615980000, 1747615981183, 1747615983678, 1747615999815, 1747616010957, 1747616018323, 1747616024658, 1747616031670, 1747616040000, 1747616047152, 1747616077897, 1747616097441, 1747616100000, 1747616115959, 1747616203922, 1747616324864, 1747616346123, 1747616370722, 1747616391618, 1747616542218, 1747616584516, 1747616597189, 1747616621213, 1747616628747, 1747616634020, 1747616640000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_09\\u664224\\u5206_\\u7cfb\\u7d71104", "popup": "\\u5e73\\u65e5_09\\u664224\\u5206_\\u7cfb\\u7d71104"}, "geometry": {"type": "LineString", "coordinates": [[139.059257, 36.395815], [139.059270672081, 36.3954753068441], [139.059596227646, 36.3941070167822], [139.059887268648, 36.3927986834488], [139.060138112568, 36.3926011050108], [139.060545344046, 36.3924756581939], [139.061768316273, 36.3925195908254], [139.061910937972, 36.3917680748688], [139.061765787179, 36.3914439755871], [139.061917, 36.390819], [139.061943590092, 36.3904756280848], [139.063123180044, 36.3906275944005], [139.06347, 36.390698], [139.065312095406, 36.3908819951024], [139.066081072925, 36.390957601485], [139.066303, 36.391013], [139.067029407592, 36.3910312326963], [139.067661710503, 36.3909700234733], [139.068333039874, 36.3908371404991], [139.068796673475, 36.3906716865977], [139.069706098084, 36.3902184986611], [139.070069, 36.390089], [139.070587067668, 36.3897766469739], [139.072480785933, 36.388871115803], [139.072613729059, 36.3873859244999], [139.072657, 36.387243], [139.072621815037, 36.3869571255136], [139.072755613981, 36.3844454008148], [139.072777578263, 36.3842727816293], [139.072766226414, 36.3840212126052], [139.072667256837, 36.3837680460509], [139.072831571652, 36.3835630065444], [139.072425546519, 36.3834923880745], [139.072265702602, 36.3835488963651], [139.072197, 36.383792], [139.072286188053, 36.3839648301134], [139.072593476414, 36.3840381832001], [139.072595030648, 36.3843418303382], [139.074836, 36.384465], [139.076554012153, 36.3845202229314], [139.07712827539, 36.3849578112592], [139.077568157668, 36.3853276938634], [139.077651927512, 36.3855531744472], [139.07881, 36.385421], [139.081566, 36.384963], [139.086358, 36.384166], [139.089288, 36.383677], [139.092342, 36.383141], [139.096668, 36.382404], [139.101322889328, 36.3816113572056], [139.102, 36.381536], [139.10422398856, 36.3811221669423], [139.105774384072, 36.3808704544357], [139.10675370022, 36.3806270752623], [139.108181532233, 36.3801332776599], [139.108513, 36.380059], [139.108790392031, 36.3798841145181], [139.110668753161, 36.3791783607915], [139.11254043174, 36.3785261382287], [139.113611644709, 36.3781095789406], [139.113845, 36.37806], [139.114116482017, 36.3779060303392], [139.11670224791, 36.3769379612674], [139.118854546865, 36.3761157027948], [139.119268733379, 36.3759973074122], [139.11944, 36.375969], [139.119662550844, 36.3758227130704], [139.12251592122, 36.3747894804846], [139.123537605104, 36.3744294074176], [139.125308835275, 36.373920041693], [139.129573359099, 36.3730041735722], [139.129906, 36.372976], [139.13028250331, 36.3728456063935], [139.134495128995, 36.3718958693428], [139.137839648862, 36.3711577776003], [139.138594749396, 36.3710141120425], [139.138747, 36.371006], [139.138906818183, 36.3709411270866], [139.140577484861, 36.3706260468028], [139.142490366489, 36.3703402853033], [139.142595, 36.370337], [139.142771998106, 36.3702866182721], [139.14485514164, 36.3699722144767], [139.147436826183, 36.3695800604079], [139.149290116539, 36.3693002122896], [139.149435, 36.369309], [139.149674138369, 36.3692395030234], [139.150126495525, 36.3691853612244], [139.15153990624, 36.3690503612244], [139.153377802418, 36.3689825803834], [139.1544041556, 36.3688630242151], [139.156604966463, 36.3687734385844], [139.156753, 36.368875], [139.156941175461, 36.3687661605003], [139.15829044069, 36.368694326248], [139.160086590167, 36.3686238529536], [139.161013818348, 36.3686079358275], [139.161131, 36.368632], [139.161377549171, 36.3685702139116], [139.163830957249, 36.3684522553485], [139.164160048534, 36.3684776991803], [139.16468622909, 36.3685324625331], [139.165484827641, 36.3686961310377], [139.166322, 36.368876], [139.166477008874, 36.3688760417033], [139.169241786003, 36.3694084068859], [139.171078166308, 36.3697705609547], [139.171966676897, 36.3699369782593], [139.173035829021, 36.3701529512409], [139.173127, 36.370186], [139.173340084316, 36.3701982155703], [139.173773666998, 36.3702964648556], [139.176612615417, 36.3708228795817], [139.178567129321, 36.3712057090338], [139.179862284099, 36.3714488005436], [139.180927237151, 36.3717852381017], [139.182107759645, 36.372154188365], [139.183507, 36.372599], [139.183884895908, 36.3727089417398], [139.18549492303, 36.3732124175423], [139.186517311265, 36.3735347668238], [139.186645, 36.373588], [139.186901450157, 36.3736582185663], [139.188292701487, 36.3740946489411], [139.19021083113, 36.3746836581227], [139.190545056005, 36.3747932572535], [139.190941089739, 36.374899662279], [139.191282546752, 36.3749767261795], [139.193832050062, 36.3751113007592], [139.193835427061, 36.3756915775448], [139.193749596372, 36.3758509821312], [139.193433212111, 36.3760587679382], [139.19348359108, 36.3761537479306], [139.193561258409, 36.3761178333216], [139.193544, 36.376037]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_09\\u664227\\u5206_\\u7cfb\\u7d71139", "times": [1747614420000, 1747614423171, 1747614436174, 1747614448579, 1747614451221, 1747614454509, 1747614463745, 1747614470840, 1747614474057, 1747614480000, 1747614492910, 1747614529150, 1747614540000, 1747614540000, 1747614540000, 1747614540000, 1747614561659, 1747614580638, 1747614601236, 1747614616339, 1747614648177, 1747614660000, 1747614667961, 1747614695067, 1747614717757, 1747614720000, 1747614728698, 1747614954534, 1747614962406, 1747614993764, 1747615030311, 1747615071836, 1747615080000, 1747615082424, 1747615085361, 1747615137805, 1747615140000, 1747615142315, 1747615178874, 1747615198340, 1747615200000, 1747615202061, 1747615224370, 1747615249725, 1747615258194, 1747615260000, 1747615260000, 1747615260000, 1747615260000, 1747615262805, 1747615315475, 1747615320000, 1747615322548, 1747615354278, 1747615377900, 1747615380000, 1747615380000, 1747615380000, 1747615380000, 1747615382900, 1747615392768, 1747615396642, 1747615405006, 1747615414386, 1747615440000, 1747615441954, 1747615453080, 1747615459384, 1747615484801, 1747615498711, 1747615500000, 1747615500000, 1747615500000, 1747615500000, 1747615502428, 1747615513218, 1747615536014, 1747615554232, 1747615556470, 1747615560000, 1747615565203, 1747615569856, 1747615610427, 1747615650860, 1747615675186, 1747615680000, 1747615682208, 1747615738172, 1747615740000, 1747615741436, 1747615756334, 1747615763546, 1747615767184, 1747615771849, 1747615778809, 1747615783950, 1747615792280, 1747615798402, 1747615800000, 1747615803712, 1747615834156, 1747615839123, 1747615857256, 1747615860000, 1747615867356, 1747615877472, 1747615882903, 1747615887166, 1747615891333, 1747615903185, 1747615909445, 1747615913581, 1747615917950, 1747615920000, 1747615923074, 1747615949422, 1747615959903, 1747615977391, 1747615980000, 1747615982620, 1747615985127, 1747615987171, 1747615990255, 1747615993704, 1747615997922, 1747616004335, 1747616010125, 1747616016177, 1747616024902, 1747616031098, 1747616039127, 1747616040000, 1747616040000, 1747616040000, 1747616040000, 1747616040000, 1747616040000, 1747616040000, 1747616040000, 1747616040000, 1747616041432, 1747616052659, 1747616058638, 1747616069751, 1747616079415, 1747616086862, 1747616097722, 1747616100000, 1747616103253, 1747616106092, 1747616107956, 1747616116984, 1747616122253, 1747616126453, 1747616128721, 1747616131987, 1747616136623, 1747616146253, 1747616154452, 1747616158754, 1747616160000, 1747616166316, 1747616173401, 1747616177900, 1747616182834, 1747616195813, 1747616203629, 1747616220000, 1747616221935, 1747616278186, 1747616280000, 1747616280000, 1747616280000, 1747616280000, 1747616280000, 1747616281804, 1747616316131, 1747616338317, 1747616340000, 1747616344008, 1747616396857, 1747616400000, 1747616401094, 1747616406169, 1747616407192, 1747616417193, 1747616420215, 1747616423652, 1747616426441, 1747616436178, 1747616439498, 1747616444256, 1747616448816, 1747616452569, 1747616458901, 1747616460000, 1747616461842, 1747616502594, 1747616509651, 1747616516080, 1747616520000, 1747616542158, 1747616807426], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_09\\u664227\\u5206_\\u7cfb\\u7d71139", "popup": "\\u5e73\\u65e5_09\\u664227\\u5206_\\u7cfb\\u7d71139"}, "geometry": {"type": "LineString", "coordinates": [[139.059257, 36.395815], [139.059270672081, 36.3954753068441], [139.059596227646, 36.3941070167822], [139.059887268648, 36.3927986834488], [139.060138112568, 36.3926011050108], [139.060545344046, 36.3924756581939], [139.061768316273, 36.3925195908254], [139.061910937972, 36.3917680748688], [139.061765787179, 36.3914439755871], [139.061917, 36.390819], [139.061943590092, 36.3904756280848], [139.063123180044, 36.3906275944005], [139.06347, 36.390698], [139.065312095406, 36.3908819951024], [139.066081072925, 36.390957601485], [139.066303, 36.391013], [139.067029407592, 36.3910312326963], [139.067661710503, 36.3909700234733], [139.068333039874, 36.3908371404991], [139.068796673475, 36.3906716865977], [139.069706098084, 36.3902184986611], [139.070069, 36.390089], [139.070587067668, 36.3897766469739], [139.072480785933, 36.388871115803], [139.072613729059, 36.3873859244999], [139.072657, 36.387243], [139.072632232366, 36.3871262807022], [139.072794390433, 36.3840544489761], [139.07276243673, 36.3839504261375], [139.072887480381, 36.3835356462157], [139.072278646388, 36.3834634631428], [139.072224652999, 36.3840271162938], [139.072342, 36.384085], [139.072460425486, 36.38398089795], [139.072648034613, 36.3840606725959], [139.07248016292, 36.3871176437477], [139.072448, 36.387243], [139.072467684746, 36.3873415230417], [139.072445526679, 36.3889175063718], [139.072959345463, 36.3896466520092], [139.072981, 36.389716], [139.073086692025, 36.389768026693], [139.073778467827, 36.3906951097604], [139.074604706585, 36.3917285329458], [139.074409604073, 36.3921080798945], [139.07436, 36.392186], [139.074368787934, 36.3922530820858], [139.073835611343, 36.3934378556375], [139.073759, 36.393524], [139.073766807109, 36.3935917175436], [139.073229432106, 36.3947921550034], [139.073142, 36.394876], [139.07315281438, 36.3949730549069], [139.072672932761, 36.3961227632447], [139.072280979718, 36.3969686625439], [139.072225, 36.397035], [139.072159463844, 36.3974268197045], [139.072125061727, 36.3987815067711], [139.072096, 36.398861], [139.072114332891, 36.3989819358238], [139.072150484347, 36.3993953243097], [139.072191650352, 36.3995546170266], [139.072283311729, 36.3998979945715], [139.072492990303, 36.4002536433234], [139.073057, 36.401228], [139.073171936743, 36.4013497629632], [139.073653570998, 36.4021296768209], [139.074248205261, 36.402015965429], [139.076707446006, 36.4021330234561], [139.076881201314, 36.4010522011026], [139.076919, 36.400956], [139.076924466525, 36.400815407644], [139.07711828531, 36.3994373541812], [139.077166, 36.399347], [139.077168313751, 36.3992328201289], [139.077225339546, 36.3987276038782], [139.078544637173, 36.3988335391606], [139.079602710593, 36.3988789962554], [139.07960212726, 36.3987737642027], [139.079805, 36.398799], [139.079968307157, 36.398796267708], [139.079951397105, 36.3989135391606], [139.081223578998, 36.3989598894133], [139.082489467228, 36.3990330680449], [139.083251214589, 36.3990755645396], [139.083399, 36.399101], [139.083533428219, 36.3990860146238], [139.086963041998, 36.3992898667236], [139.087074, 36.399304], [139.087190096234, 36.3992891761638], [139.088405953385, 36.3993623290964], [139.088993124684, 36.3994109814231], [139.089265077068, 36.3995089348284], [139.089562102203, 36.3997027866825], [139.089988340301, 36.4000082191838], [139.090333412394, 36.4002027448746], [139.090958833694, 36.4004220351964], [139.091416558565, 36.4005867915887], [139.091524, 36.400647], [139.091683146531, 36.4007124641357], [139.093038012941, 36.4011613043734], [139.093263667047, 36.4012246865336], [139.094135268903, 36.4012494526386], [139.094265, 36.401269], [139.094769203431, 36.4012535041523], [139.095388561238, 36.4015064793167], [139.095710191536, 36.4016584267057], [139.095914739816, 36.4018273300711], [139.096056079766, 36.4020281567941], [139.096398237174, 36.4026242982367], [139.096573280166, 36.4029412708946], [139.096661559928, 36.4031592237471], [139.096716603579, 36.4033973750923], [139.096743, 36.403509], [139.096796719982, 36.4036243840738], [139.097048846969, 36.4046609367009], [139.097124765619, 36.4050766796753], [139.097348905171, 36.405754066296], [139.097387, 36.405854], [139.097505872765, 36.4060394617547], [139.097573161125, 36.4062316985509], [139.097613977263, 36.4063912215485], [139.097596600941, 36.4066366162088], [139.097570828454, 36.4069106951409], [139.097645114168, 36.4072415290148], [139.097902723296, 36.4077082661984], [139.098142139304, 36.4081271945278], [139.098315550019, 36.4085887427382], [139.098482546714, 36.4092709147746], [139.098554499757, 36.4097612536504], [139.098659922376, 36.4103954463545], [139.098658, 36.410465], [139.098747385341, 36.410900116675], [139.098827384682, 36.4113145223217], [139.099040795397, 36.4119103089559], [139.099304585081, 36.4125422414548], [139.099926042094, 36.4129913879014], [139.100573271594, 36.4136045339731], [139.10088440652, 36.4141497183992], [139.100933, 36.414238], [139.100999624775, 36.4142866896079], [139.101316825175, 36.4147947803242], [139.101507378088, 36.4150557641766], [139.102010351634, 36.4154457096198], [139.102466909839, 36.4157678951836], [139.102769534177, 36.4160553522391], [139.102749824524, 36.4166056167871], [139.102708, 36.416716], [139.102719970027, 36.4170036694144], [139.102711106932, 36.4172546981187], [139.10279962016, 36.4174032717946], [139.103410931669, 36.4180306668609], [139.103784690933, 36.4183856351632], [139.104096526914, 36.4186586167686], [139.104246031544, 36.418818771407], [139.10432719623, 36.4191000975944], [139.104432852315, 36.4195012800126], [139.104858741205, 36.4202804659738], [139.105170693588, 36.4209605296945], [139.105153433669, 36.4213408253961], [139.105117, 36.421447], [139.105094541473, 36.4217393523831], [139.105096290812, 36.4220679147566], [139.10516847732, 36.4222682406235], [139.105292208802, 36.4224740322452], [139.105730342402, 36.4229607201741], [139.105973023622, 36.423265536484], [139.106201, 36.424002], [139.106261302725, 36.4240777152423], [139.106849989237, 36.4266507451235], [139.106855, 36.426735], [139.106902933682, 36.426811132795], [139.107051038181, 36.4275303679175], [139.107134303393, 36.4276893860327], [139.107134, 36.427779], [139.107199376144, 36.4278429342774], [139.107843106308, 36.4293324912873], [139.10827086028, 36.4302918279725], [139.108277, 36.430369], [139.108339897979, 36.4304705803127], [139.109001820602, 36.4318694534052], [139.109022, 36.431957], [139.109078787536, 36.4320264577939], [139.109260828541, 36.4323834621826], [139.109357038198, 36.4323807956349], [139.109825724711, 36.4317208433077], [139.110021292174, 36.4315538645255], [139.110341292834, 36.4315152800346], [139.110594819952, 36.4315707518709], [139.111278317969, 36.432064383912], [139.111560648003, 36.4321727306531], [139.11200601308, 36.4322116699372], [139.112413940997, 36.4321036267758], [139.112682744571, 36.4319182500394], [139.113038778305, 36.4315318601369], [139.113126, 36.431487], [139.11316262619, 36.4314069552368], [139.114561923817, 36.4298955341143], [139.114903846441, 36.4297209441865], [139.115257665225, 36.4296377379064], [139.115481, 36.429618], [139.115649850415, 36.4295848791702], [139.117683318013, 36.4292310787271]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_09\\u664230\\u5206_\\u7cfb\\u7d71159", "times": [1747614600000, 1747614604859, 1747614609788, 1747614658838, 1747614660000, 1747614664490, 1747614707998, 1747614814944, 1747614840000, 1747614843851, 1747614876686, 1747614914019, 1747614919172, 1747614956822, 1747614960000, 1747614965753, 1747615044982, 1747615077111, 1747615080000, 1747615088872, 1747615230591, 1747615252042, 1747615260000, 1747615267680, 1747615280836, 1747615309676, 1747615357081, 1747615380000, 1747615382177, 1747615419584, 1747615440000, 1747615461300, 1747615489539, 1747615500000, 1747615506718, 1747615540286, 1747615550098, 1747615554738, 1747615563324, 1747615582119, 1747615612899, 1747615617638, 1747615620000, 1747615621582, 1747615623455, 1747615642817, 1747615651058, 1747615655521, 1747615659492, 1747615675509, 1747615680000, 1747615682061, 1747615694450, 1747615732398, 1747615740000, 1747615764325, 1747615820480, 1747615887627, 1747615953809, 1747615962258, 1747615982081, 1747616016600, 1747616021400, 1747616040000, 1747616055473, 1747616070396, 1747616092414, 1747616112057, 1747616122217, 1747616141386, 1747616160000, 1747616189072, 1747616220000, 1747616235796, 1747616238589, 1747616278504, 1747616280000, 1747616282750, 1747616329523, 1747616421182, 1747616460000, 1747616479385, 1747616519215, 1747616520000, 1747616535216, 1747616545537, 1747616578970, 1747616580000, 1747616674878, 1747616700000, 1747616714557, 1747616732405, 1747616733516, 1747616734248, 1747616739804, 1747616746668, 1747616759112, 1747616760000, 1747616825746, 1747616921830, 1747617055970, 1747617064558, 1747617103983, 1747617109802, 1747617120000, 1747617125611, 1747617128211, 1747617137103, 1747617141038, 1747617209012, 1747617257567, 1747617300000, 1747617301420, 1747617338939, 1747617360000, 1747617417799, 1747617420000, 1747617422566, 1747617484232, 1747617535460, 1747617540000, 1747617600000, 1747617647003, 1747617650189, 1747617693680, 1747617720000, 1747617781953, 1747617833148, 1747617840000, 1747617843654, 1747617881445, 1747617897657, 1747617900000, 1747617909340, 1747617977158, 1747617986697, 1747618042179, 1747618057162, 1747618090036, 1747618107105, 1747618122694, 1747618149193, 1747618183980], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_09\\u664230\\u5206_\\u7cfb\\u7d71159", "popup": "\\u5e73\\u65e5_09\\u664230\\u5206_\\u7cfb\\u7d71159"}, "geometry": {"type": "LineString", "coordinates": [[139.072229, 36.383658], [139.072268851411, 36.3839664349553], [139.072645294533, 36.3840460053511], [139.07248016292, 36.3871735546112], [139.072448, 36.387243], [139.072461388446, 36.3873494849729], [139.072393516094, 36.3883851664957], [139.069258128509, 36.3881156956785], [139.069154, 36.388707], [139.069151540544, 36.3888011792427], [139.069023493587, 36.3895975545407], [139.068857546496, 36.3905007494777], [139.068994457207, 36.3905610023924], [139.069972880494, 36.3900896260603], [139.070069, 36.390089], [139.070196203248, 36.3899764425159], [139.072431652331, 36.3889077982119], [139.072969024696, 36.389640060237], [139.072981, 36.389716], [139.073093572317, 36.3897909779587], [139.07436587259, 36.3913687365602], [139.07459584283, 36.3911526109838], [139.074615, 36.391048], [139.074442606059, 36.3909860195186], [139.074161440053, 36.3911148841558], [139.074565171536, 36.3915855727728], [139.075629776698, 36.3919671694091], [139.076085, 36.392235], [139.07622102605, 36.3922910367806], [139.078443883193, 36.3934169461704], [139.07924, 36.392455], [139.07955256443, 36.3920205793467], [139.080126790624, 36.3915426191736], [139.080391, 36.391419], [139.080514544596, 36.3912142073421], [139.081557924892, 36.3904496536581], [139.081942996325, 36.3905671377552], [139.082136581644, 36.3905837316669], [139.08249179924, 36.390631686546], [139.083153139191, 36.390284641425], [139.084305907054, 36.3907548645831], [139.084385555867, 36.3906075963042], [139.084361, 36.39053], [139.084214360101, 36.3905546414251], [139.084103223196, 36.3906662328902], [139.085740307192, 36.3913312377834], [139.086429516858, 36.3916262524631], [139.086806191466, 36.3917805749641], [139.08717085483, 36.3918539859973], [139.08868478672, 36.3919112600194], [139.089108, 36.391942], [139.089261111461, 36.3919105727729], [139.090209216619, 36.391953075512], [139.090380641894, 36.3896057608704], [139.090916, 36.38942], [139.091500639915, 36.3891775424111], [139.092871020862, 36.38865185053], [139.091663788725, 36.3875574534035], [139.090487697449, 36.3864689688311], [139.090305306576, 36.3863580732998], [139.089895940828, 36.3860790450056], [139.089107524822, 36.3864814727563], [139.089165753006, 36.3865751469974], [139.089629, 36.386418], [139.090064376673, 36.3862125588066], [139.089705542019, 36.3859473124757], [139.089184727859, 36.3855484935894], [139.088646885926, 36.3858288870736], [139.088349512902, 36.3859464335047], [139.087766888564, 36.3861282481182], [139.087198, 36.386298], [139.086597211969, 36.3865344205219], [139.086034, 36.386885], [139.085349866725, 36.3874280654496], [139.085213075714, 36.3873471542177], [139.08487383431, 36.3854077268704], [139.084886, 36.385335], [139.084845378625, 36.3852857747209], [139.084694358782, 36.3842869700801], [139.08485832307, 36.3823195186802], [139.085863, 36.382126], [139.087568757602, 36.3817374890069], [139.08911254267, 36.3790711538466], [139.089156, 36.379025], [139.089567702064, 36.3783013394447], [139.089854814502, 36.3778135287876], [139.087690620046, 36.377795479764], [139.087628, 36.377777], [139.084821117396, 36.3777729517785], [139.084827, 36.377172], [139.084745788013, 36.3759089609477], [139.084664971875, 36.3743597397778], [139.084688, 36.374265], [139.08466065706, 36.3742053751454], [139.084634068435, 36.3737231463867], [139.084577975181, 36.3731284959435], [139.084359549915, 36.3720618856071], [139.084366, 36.371985], [139.084132145151, 36.3711564163968], [139.083859607456, 36.3699340867226], [139.085923862092, 36.370402951241], [139.086061120033, 36.3704032436822], [139.086667067125, 36.3705432436822], [139.086666483133, 36.3704680350856], [139.086524, 36.370404], [139.086342985115, 36.3703814101666], [139.086329224532, 36.3704491323281], [139.086053306541, 36.3703764101666], [139.085926309847, 36.3703918544896], [139.083796514871, 36.3698895485391], [139.084098093561, 36.3711477240778], [139.082714, 36.371186], [139.082638271463, 36.3712023327862], [139.080569820393, 36.3712659441754], [139.080611, 36.372205], [139.080763524094, 36.3745458895605], [139.080746, 36.374634], [139.08076702277, 36.3746842582172], [139.080828130575, 36.3759579819564], [139.080616935468, 36.3770030534679], [139.08058, 36.377092], [139.080231, 36.37863], [139.079815071705, 36.3805389510138], [139.079805743, 36.3806701125587], [139.078972274742, 36.3823322144401], [139.07763, 36.382327], [139.076418343511, 36.382326734057], [139.076385109378, 36.3831358812345], [139.076348, 36.38324], [139.07637473041, 36.3833461361004], [139.076318754218, 36.3844652475691], [139.075724819031, 36.3844508063771], [139.075652, 36.384414], [139.075513624584, 36.3844412570854], [139.074481557116, 36.3843883011011], [139.074343598121, 36.3843510264552], [139.073498352743, 36.3843219278719], [139.073273046526, 36.3842912465333], [139.072772522714, 36.3842689507834], [139.072793047845, 36.3840591603095], [139.072725758825, 36.383874809255], [139.07282779983, 36.3835586777606], [139.072308495608, 36.3834712359812]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_09\\u664235\\u5206_\\u7cfb\\u7d71124", "times": [1747614900000, 1747614901791, 1747614903499, 1747614905018, 1747614914579, 1747614958692, 1747614960000, 1747614965935, 1747615007281, 1747615018986, 1747615020000, 1747615020979, 1747615028372, 1747615048126, 1747615050998, 1747615055799, 1747615066845, 1747615079093, 1747615080000, 1747615081397, 1747615111302, 1747615116945, 1747615129489, 1747615139116, 1747615140000, 1747615140900, 1747615145185, 1747615153877, 1747615162857, 1747615171458, 1747615179874, 1747615182781, 1747615187269, 1747615189874, 1747615191666, 1747615194224, 1747615199365, 1747615200000, 1747615201979, 1747615208840, 1747615221758, 1747615227148, 1747615239188, 1747615246821, 1747615257383, 1747615260000, 1747615267505, 1747615287615, 1747615310242, 1747615318036, 1747615320000, 1747615323378, 1747615328723, 1747615332345, 1747615350116, 1747615356916, 1747615360479, 1747615368711, 1747615378414, 1747615380000, 1747615381685, 1747615389964, 1747615434543, 1747615438743, 1747615440000, 1747615442773, 1747615491023, 1747615496604, 1747615500000, 1747615501758, 1747615507122, 1747615557996, 1747615560000, 1747615560000, 1747615560000, 1747615560000, 1747615560981, 1747615618591, 1747615620000, 1747615620814, 1747615628441, 1747615660121, 1747615677075, 1747615680000, 1747615681059, 1747615691452, 1747615706512, 1747615738208, 1747615740000, 1747615741369, 1747615777458, 1747615788995, 1747615798965, 1747615800000, 1747615800000, 1747615800000, 1747615800000, 1747615805423, 1747615857665, 1747615860000, 1747615861796, 1747615917976, 1747615920000, 1747615927785, 1747615953517, 1747616015411, 1747616078018, 1747616088537, 1747616094796, 1747616100000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_09\\u664235\\u5206_\\u7cfb\\u7d71124", "popup": "\\u5e73\\u65e5_09\\u664235\\u5206_\\u7cfb\\u7d71124"}, "geometry": {"type": "LineString", "coordinates": [[139.105525, 36.273268], [139.105525094386, 36.2733843124108], [139.105594870842, 36.2734797286104], [139.105712382747, 36.2735055523133], [139.106112031561, 36.2740353313107], [139.108260954176, 36.2763101506978], [139.108293, 36.276391], [139.108572434355, 36.2766620266652], [139.110607650632, 36.2748361825029], [139.111114353681, 36.2742736723767], [139.111163, 36.274228], [139.111190502499, 36.2741396734526], [139.111574991918, 36.2735266291309], [139.112543735972, 36.2718654418121], [139.112722743912, 36.2716410564559], [139.113087874865, 36.2713065636052], [139.113606706881, 36.2722440508311], [139.114128804768, 36.2733017396322], [139.114145, 36.273385], [139.114219300139, 36.2734836547367], [139.115372650016, 36.2757740006809], [139.115646585203, 36.2761847149741], [139.116259762454, 36.2770956978859], [139.116595271056, 36.2778441458709], [139.116602, 36.277917], [139.116699410608, 36.2780280837474], [139.116916552146, 36.2786520756035], [139.117314103072, 36.2799272091525], [139.117671886144, 36.2812546726021], [139.118075150697, 36.2825144029115], [139.118471651361, 36.2837465541989], [139.118599580596, 36.2841740871899], [139.118924711549, 36.284799889904], [139.119014973455, 36.2851873038377], [139.119010425175, 36.2854583792925], [139.11897928827, 36.2858445530247], [139.118939638138, 36.2866217102037], [139.118925, 36.286717], [139.118953165915, 36.2868411539268], [139.118993515783, 36.2872774661889], [139.119066402027, 36.2880991782874], [139.119011824646, 36.2884400856347], [139.118791300174, 36.2891869159347], [139.118684361681, 36.2896659117682], [139.118631767104, 36.2903381577422], [139.11863, 36.290505], [139.118634566046, 36.2908629637369], [139.118624886813, 36.2918220508925], [139.118588035622, 36.2929008180633], [139.118559464193, 36.2932718581741], [139.118533, 36.293363], [139.118545120277, 36.2936154589189], [139.118567161282, 36.2940147126482], [139.118565645409, 36.294285526672], [139.118510135487, 36.2956135086826], [139.118498590513, 36.2961218669617], [139.118453226095, 36.296385748421], [139.118162147391, 36.2969543653103], [139.117805996595, 36.2976201837617], [139.117729, 36.297721], [139.117714918551, 36.2978274451558], [139.117474802148, 36.2983162079231], [139.113977316017, 36.29839493829], [139.113981866275, 36.2981281727762], [139.114002, 36.29805], [139.113968222095, 36.2979665879335], [139.113921458866, 36.2964400418003], [139.113703966141, 36.2964540437822], [139.113571571429, 36.296462], [139.113451838493, 36.2964770143121], [139.113083101692, 36.2964978080217], [139.109578728676, 36.2965784845118], [139.109442, 36.296563], [139.109350631431, 36.2965872487513], [139.106562060002, 36.2966572487513], [139.106479142857, 36.296642], [139.106382585133, 36.2966592782214], [139.100582249772, 36.2967933070308], [139.100441, 36.296783], [139.100348897918, 36.2968042480907], [139.099453037469, 36.2968282166387], [139.099613739183, 36.2998395594324], [139.099672397913, 36.301451847396], [139.099664, 36.30173], [139.099688955459, 36.3017934527572], [139.099719390651, 36.3024461459765], [139.099726971997, 36.3033926100415], [139.102186560631, 36.3033268033454], [139.102325, 36.303338], [139.102438688278, 36.3033131570616], [139.105540957473, 36.3032233099331], [139.106532903262, 36.303201170237], [139.10739004612, 36.3031791396627], [139.107479, 36.303179], [139.107591794799, 36.3031718470951], [139.10947575513, 36.3030999693922], [139.109437095238, 36.3031273333333], [139.109716454206, 36.3030963231084], [139.112430733327, 36.3030185065542], [139.112552, 36.303023], [139.112653239942, 36.3030082445609], [139.115868625548, 36.3029240741064], [139.115984, 36.302933], [139.116131948961, 36.3029090305408], [139.116630607692, 36.302911847095], [139.116627691689, 36.3038827421969], [139.115414515097, 36.3038971523334], [139.115415214833, 36.3040621523334], [139.115536380839, 36.3040666283468], [139.115536, 36.303985]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_09\\u664235\\u5206_\\u7cfb\\u7d71152", "times": [1747614900000, 1747614902081, 1747614904964, 1747614908540, 1747614916000, 1747614958535, 1747614960000, 1747614961063, 1747614997446, 1747615011712, 1747615013533, 1747615018867, 1747615020000, 1747615022807, 1747615034619, 1747615042980, 1747615078935, 1747615080000, 1747615083631, 1747615098502, 1747615180191, 1747615197216, 1747615200000, 1747615202196, 1747615207398, 1747615258369, 1747615260000, 1747615262531, 1747615307872, 1747615318041, 1747615320000, 1747615324932, 1747615354251, 1747615369081, 1747615446838, 1747615457843, 1747615463385, 1747615475881, 1747615493401, 1747615500000, 1747615507214, 1747615513332, 1747615519659, 1747615557186, 1747615560000, 1747615563094, 1747615603466, 1747615616916, 1747615620000, 1747615622357, 1747615677970, 1747615680000, 1747615722651, 1747616049344, 1747616100000, 1747616104150, 1747616114921, 1747616122959, 1747616154977, 1747616177111, 1747616181733, 1747616206973, 1747616278560, 1747616280000, 1747616281611, 1747616291227, 1747616338725, 1747616340000, 1747616341917, 1747616364867, 1747616374221, 1747616399107, 1747616400000, 1747616402685, 1747616410232, 1747616421731, 1747616458155, 1747616460000, 1747616461179, 1747616519275, 1747616520000, 1747616529339, 1747616535413, 1747616557672, 1747616577512, 1747616580000, 1747616582306, 1747616591003, 1747616640000, 1747616653068, 1747616659384, 1747616700000, 1747616709066, 1747616783063, 1747616835458, 1747616921339, 1747616932874, 1747616962267, 1747616987645, 1747616993040, 1747617000000, 1747617000979, 1747617003563, 1747617008532, 1747617021552, 1747617037875, 1747617046554, 1747617049268, 1747617053483, 1747617067173, 1747617068187, 1747617080471, 1747617086470, 1747617099629, 1747617101160, 1747617102505, 1747617119025, 1747617120000, 1747617122589, 1747617177651, 1747617180000, 1747617182683, 1747617186115, 1747617240000, 1747617254032, 1747617283009, 1747617295875, 1747617300000, 1747617300796, 1747617328774, 1747617343068, 1747617356232, 1747617360000, 1747617364645, 1747617374860, 1747617388338, 1747617394997, 1747617399317, 1747617408870, 1747617416652, 1747617420000, 1747617424706, 1747617431934, 1747617454665, 1747617470826, 1747617480000, 1747617482171, 1747617520775, 1747617538000, 1747617540000, 1747617542600, 1747617600000, 1747617602779, 1747617645940, 1747617660000, 1747617663106, 1747617679870, 1747617692910, 1747617718481, 1747617720000, 1747617721353, 1747617731185, 1747617763107, 1747617778595, 1747617780000, 1747617782112, 1747617799731, 1747617837743, 1747617840000, 1747617845520, 1747617862554, 1747618076303, 1747618080000, 1747618083125, 1747618102029, 1747618108969, 1747618113285, 1747618118369, 1747618123604, 1747618138287, 1747618140000, 1747618141272, 1747618144467, 1747618149904, 1747618155674, 1747618157655, 1747618168340, 1747618176103, 1747618182052, 1747618189630, 1747618195569, 1747618200000, 1747618207080, 1747618220841, 1747618236408, 1747618246151, 1747618260000, 1747618263476, 1747618271180, 1747618276892, 1747618293071, 1747618297864, 1747618303040, 1747618306295, 1747618318644, 1747618320000, 1747618325796, 1747618351730, 1747618438121, 1747618456909, 1747618467287, 1747618478486, 1747618486243, 1747618500000, 1747618503733, 1747618507265, 1747618533314, 1747618534286, 1747618544962, 1747618549177, 1747618558857, 1747618560000, 1747618561366, 1747618574629, 1747618595978, 1747618618245, 1747618620000, 1747618625356, 1747618682632, 1747618714806, 1747618736315, 1747618740000, 1747618741740, 1747618748866, 1747618752060, 1747618759377, 1747618774471, 1747618799071, 1747618800000, 1747618804610, 1747618906448, 1747619011363, 1747619078704], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_09\\u664235\\u5206_\\u7cfb\\u7d71152", "popup": "\\u5e73\\u65e5_09\\u664235\\u5206_\\u7cfb\\u7d71152"}, "geometry": {"type": "LineString", "coordinates": [[139.047567, 36.378982], [139.047734918687, 36.3789354948586], [139.047875443159, 36.3787723051739], [139.047778882975, 36.3785384171516], [139.048225996731, 36.3781724687285], [139.050596719633, 36.3803925160325], [139.050647, 36.380485], [139.050729193192, 36.3805250221413], [139.052872865813, 36.382534149197], [139.053703999421, 36.383328399089], [139.053796943866, 36.3834379607747], [139.054272628392, 36.3834959288462], [139.05437, 36.383521], [139.054506913447, 36.3835102475691], [139.055080089378, 36.3835754667262], [139.055489767952, 36.3835725224606], [139.057228309621, 36.3833418411834], [139.057277, 36.383357], [139.057388305005, 36.3833195424861], [139.057879494176, 36.3832790803661], [139.06059004643, 36.383203849306], [139.061155176724, 36.3832122556917], [139.061241, 36.38324], [139.061399956491, 36.3832227178118], [139.061778381756, 36.3832483990889], [139.065463854005, 36.3836657215921], [139.065576, 36.383698], [139.065704552421, 36.3836827765282], [139.068006004818, 36.3839589402313], [139.068520522679, 36.3840291708615], [139.068617, 36.384052], [139.068779063028, 36.3840430282626], [139.069733580889, 36.3841605229866], [139.070220808411, 36.3841875670022], [139.072777426137, 36.3843037096011], [139.072769141758, 36.3840107641688], [139.072729725091, 36.3838666761375], [139.072865469137, 36.383552545898], [139.072293690038, 36.383490259472], [139.072229, 36.383658], [139.072303254187, 36.3839700617261], [139.072625352075, 36.3840393698354], [139.07265007364, 36.3843173680282], [139.074689953281, 36.3844273996844], [139.074836, 36.384465], [139.074940795882, 36.3844362359813], [139.076382195353, 36.3845041919657], [139.076415896416, 36.3841162254292], [139.076444, 36.38403], [139.076419511495, 36.3839484789709], [139.076515021417, 36.3819714110803], [139.076562, 36.38191], [139.07652470065, 36.3816129652403], [139.076627955282, 36.3793276528183], [139.077066, 36.379344], [139.077318713219, 36.3792427387197], [139.077340674864, 36.3786512281365], [139.076795132544, 36.3786304744432], [139.076776435452, 36.3803895784298], [139.078280225136, 36.380372087676], [139.07827540503, 36.3806260092043], [139.076562055813, 36.3806868976751], [139.076757819699, 36.3767568652661], [139.076803714286, 36.376687], [139.076773912953, 36.3765884207069], [139.076775196681, 36.375982973437], [139.073076892433, 36.3759821524742], [139.072984, 36.375954], [139.072836663584, 36.3759785141689], [139.071036436713, 36.3759921524742], [139.070304307087, 36.375952386113], [139.068352471766, 36.3759835141689], [139.068296, 36.37595], [139.068174052435, 36.3759741522994], [139.067824547146, 36.375934641795], [139.067297551771, 36.375848471452], [139.065745832192, 36.3752807480626], [139.065683, 36.375233], [139.065567993556, 36.3752240241486], [139.060416519312, 36.3732651645004], [139.060367, 36.373224], [139.059756111902, 36.3730460320333], [139.059352265996, 36.372946146662], [139.057810808323, 36.3728348092728], [139.057955184637, 36.371725448049], [139.058007, 36.371592], [139.057994717707, 36.37147516187], [139.058036933316, 36.3710344548752], [139.061102, 36.371276], [139.061975000801, 36.3713405752275], [139.062042521308, 36.3710023060249], [139.062642, 36.368853], [139.062646601998, 36.3687565748696], [139.062835989565, 36.3679840601383], [139.062960538505, 36.3674355922137], [139.061865377132, 36.3672098193564], [139.061713775935, 36.3672033968949], [139.061331035854, 36.3672486339718], [139.061001941932, 36.3672026856642], [139.060985963762, 36.3672586339718], [139.061075, 36.367276], [139.06114818003, 36.367236324829], [139.061378617199, 36.3672604073345], [139.061823398285, 36.3672253752321], [139.062956691938, 36.3674637448492], [139.063179668122, 36.3662902254225], [139.062399487583, 36.3662718893197], [139.062159139034, 36.3662373643331], [139.061809402259, 36.3661191678949], [139.060578382416, 36.366101651813], [139.060489988888, 36.3660833889601], [139.059385266004, 36.3660854633589], [139.058845910176, 36.3660765524977], [139.059003345359, 36.3651279164228], [139.059042, 36.365021], [139.059029117846, 36.3649237341108], [139.059216522609, 36.3637317162228], [139.059246, 36.363665], [139.059236230943, 36.3635673239638], [139.059560894966, 36.3615003875026], [139.059605, 36.361419], [139.059606258725, 36.361300348586], [139.059625734253, 36.3611493899648], [139.062572, 36.361151], [139.063147242873, 36.3611470774008], [139.062823977002, 36.3602225582015], [139.06275027462, 36.3598001573515], [139.062776, 36.359665], [139.062753772637, 36.359599996283], [139.062783975023, 36.3572303862365], [139.064267820271, 36.3570720971579], [139.065637613929, 36.3569472942134], [139.066032, 36.356939], [139.066302450578, 36.3569251218466], [139.06689755243, 36.356899683417], [139.067682856669, 36.3568675553687], [139.068068629156, 36.356904683417], [139.068316558391, 36.356941087343], [139.068557723737, 36.356534683417], [139.068890783926, 36.3562851416278], [139.069052, 36.356196], [139.069175215144, 36.3560841316286], [139.069306176785, 36.3558798248296], [139.069390957871, 36.3551594003497], [139.069448916866, 36.3546470354853], [139.069444, 36.354355], [139.069413465146, 36.3542609725125], [139.069305361306, 36.3525344743177], [139.068352476382, 36.3525633083599], [139.068242, 36.352558], [139.068084955215, 36.3525769492436], [139.064583, 36.352679], [139.064479366564, 36.352699523824], [139.062823626475, 36.3527531158924], [139.062792, 36.353189], [139.062814531234, 36.3533601055674], [139.062836688641, 36.3542883874656], [139.062828875149, 36.3550105180305], [139.062792023959, 36.356426412598], [139.062749, 36.356503], [139.062769751467, 36.3565888508763], [139.062745377132, 36.3572237622392], [139.060195994181, 36.3571770896371], [139.060038328171, 36.3581696540894], [139.060008, 36.358257], [139.060018969705, 36.3583476989571], [139.059899436635, 36.3591014367929], [139.059636696554, 36.3607271163174], [139.059616, 36.360823], [139.059625734912, 36.3608960347908], [139.059581886368, 36.3611199143476], [139.056065158833, 36.3611279520331], [139.056016, 36.361099], [139.055861545732, 36.3611911515407], [139.054700965037, 36.361204467798], [139.054274844001, 36.3611996685367], [139.054009888971, 36.3611953875026], [139.053704816219, 36.3611419483397], [139.053387498757, 36.3611834702603], [139.053146800341, 36.3618862191054], [139.053114, 36.361967], [139.05309677124, 36.3620632080421], [139.053045692536, 36.3623036489272], [139.052958462377, 36.3627128798554], [139.052870182615, 36.3631477868425], [139.052860037112, 36.363298814457], [139.052891873752, 36.3641145481768], [139.05293723817, 36.364706250868], [139.052952281821, 36.3651604666944], [139.052996596636, 36.3657381175093], [139.05300767534, 36.3661916839769], [139.052975, 36.366529], [139.052961261319, 36.3668282376721], [139.052933039758, 36.3674098193565], [139.052933389626, 36.3680682000598], [139.052963360525, 36.3684795923577], [139.052986, 36.369065], [139.053025634335, 36.3692461006285], [139.052975021902, 36.3696516577061], [139.052953214362, 36.3699533674519], [139.053097121108, 36.3708014380944], [139.053151814891, 36.3710511538478], [139.053190881691, 36.3713232224144], [139.053255954443, 36.3714871772823], [139.053635662117, 36.3720639275966], [139.053667, 36.372131], [139.053742017937, 36.372220339744], [139.053976070186, 36.3726648944388], [139.051985753375, 36.3726648573925], [139.051968843983, 36.3730146224644], [139.051730010648, 36.3730234478237], [139.051726978902, 36.3728148092728], [139.051548786441, 36.3728037308715], [139.051553, 36.37306], [139.051999981548, 36.373065821165], [139.052008027186, 36.3727237789914], [139.055127326132, 36.3727242969674], [139.055121955779, 36.3728182850751], [139.054810002736, 36.3738209650946], [139.054736533819, 36.3742247397778], [139.054648137654, 36.3751594709274], [139.054616, 36.375267], [139.054622248764, 36.3753539395892], [139.054556826145, 36.3761971924897], [139.054251870455, 36.3775347428229], [139.053907847966, 36.3789256930255], [139.053855, 36.379029], [139.053851054976, 36.3791437018494], [139.053597643601, 36.3803533337425], [139.054446273231, 36.3804171268125], [139.05434528117, 36.3808705617934], [139.054321, 36.380947], [139.054309830769, 36.3810855617934], [139.054180383682, 36.381644228694], [139.053876827463, 36.3815758950856], [139.053394728916, 36.3811415763012], [139.05226901595, 36.3819296925333], [139.050697593313, 36.380434372986], [139.050657, 36.380368], [139.050580159449, 36.3803411538466], [139.049397226243, 36.379192158712], [139.048155794346, 36.3780240289584], [139.047317193156, 36.3787433998454]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_09\\u664246\\u5206_\\u7cfb\\u7d71138", "times": [1747615560000, 1747615560000, 1747615560000, 1747615560000, 1747615560000, 1747615560000, 1747615562957, 1747615572815, 1747615578482, 1747615584417, 1747615618762, 1747615620000, 1747615621905, 1747615627861, 1747615631674, 1747615635115, 1747615638568, 1747615643483, 1747615649246, 1747615653020, 1747615655815, 1747615659059, 1747615661658, 1747615664620, 1747615673484, 1747615675171, 1747615678609, 1747615680000, 1747615680000, 1747615680000, 1747615680000, 1747615680000, 1747615680000, 1747615680000, 1747615680000, 1747615683991, 1747615692026, 1747615736679, 1747615740000, 1747615741916, 1747615781008, 1747615794609, 1747615800000, 1747615800000, 1747615800000, 1747615800000, 1747615800000, 1747615800000, 1747615800000, 1747615800000, 1747615800989, 1747615803927, 1747615806806, 1747615817063, 1747615823029, 1747615828483, 1747615830103, 1747615831692, 1747615838345, 1747615849384, 1747615851661, 1747615858931, 1747615860000, 1747615861911, 1747615867987, 1747615874122, 1747615899613, 1747615905824, 1747615918025, 1747615920000, 1747615921689, 1747615931010, 1747615940764, 1747615950380, 1747615956295, 1747615967155, 1747615978572, 1747615980000, 1747615981306, 1747615988686, 1747615993999, 1747616001276, 1747616007698, 1747616014537, 1747616022125, 1747616028866, 1747616033352, 1747616036029, 1747616040000, 1747616042921, 1747616053423, 1747616063930, 1747616097944, 1747616100000, 1747616106598, 1747616115293, 1747616128867, 1747616133504, 1747616138471, 1747616144211, 1747616150028, 1747616154086, 1747616157754, 1747616160000, 1747616160000, 1747616160000, 1747616160000, 1747616160000, 1747616160000, 1747616160000, 1747616160000, 1747616161207, 1747616167554, 1747616177527, 1747616182780, 1747616189086, 1747616193653, 1747616196576, 1747616218219, 1747616220000, 1747616221592, 1747616278223, 1747616280000, 1747616282498, 1747616334591, 1747616336484, 1747616340000, 1747616343430, 1747616345418, 1747616367865, 1747616387909, 1747616397722, 1747616400000, 1747616400000, 1747616400000, 1747616400000, 1747616402945, 1747616430891, 1747616478921, 1747616490488, 1747616517653, 1747616520000, 1747616520000, 1747616520000, 1747616520000, 1747616520000, 1747616520000, 1747616520000, 1747616523587, 1747616555998, 1747616567148, 1747616577870, 1747616580000, 1747616580000, 1747616580000, 1747616580000, 1747616584423, 1747616637807, 1747616640000, 1747616644303, 1747616695089, 1747616700000, 1747616702819, 1747616711043, 1747616757822, 1747616760000, 1747616761822, 1747616779947, 1747616817130, 1747616820000, 1747616834978, 1747617305448, 1747617323909, 1747617343842], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_09\\u664246\\u5206_\\u7cfb\\u7d71138", "popup": "\\u5e73\\u65e5_09\\u664246\\u5206_\\u7cfb\\u7d71138"}, "geometry": {"type": "LineString", "coordinates": [[139.118185, 36.429014], [139.118053809428, 36.4290362581146], [139.117773576622, 36.4291878388312], [139.117440166566, 36.4292639038476], [139.115925997913, 36.4295106975675], [139.115787, 36.429514], [139.115611949621, 36.4295618858933], [139.115013233348, 36.4296786347664], [139.114692767737, 36.429800215483], [139.114413351729, 36.4299972222062], [139.113141401983, 36.4313937950322], [139.113088, 36.431439], [139.112998778965, 36.4315616955436], [139.112656271689, 36.4319098081983], [139.112366826581, 36.4320720942235], [139.11207178227, 36.432167920853], [139.111752832532, 36.4321609164641], [139.111322747868, 36.4320429427963], [139.110905372865, 36.4317757262643], [139.110643682387, 36.4315894534052], [139.110415694291, 36.4314913883005], [139.110117269685, 36.4315141242187], [139.109898844419, 36.4315948081982], [139.109747474709, 36.4317790766688], [139.109352023648, 36.4323587694257], [139.109216513726, 36.4322965272873], [139.109121353673, 36.4320516223871], [139.109113, 36.431948], [139.10902444428, 36.4318599252416], [139.108320306048, 36.4303554139378], [139.108314, 36.430257], [139.108235524962, 36.4301702937614], [139.107351795458, 36.4281325908495], [139.107232028923, 36.4278572505436], [139.107214, 36.427758], [139.107128355642, 36.427665539637], [139.107040659212, 36.4274440847376], [139.106775703523, 36.4261697960339], [139.106785, 36.426074], [139.106733837782, 36.4259930816872], [139.106312147963, 36.424171056811], [139.106092323227, 36.4235510701943], [139.10604, 36.423299], [139.105961711453, 36.4232196741506], [139.105786784864, 36.4229608990194], [139.105280895974, 36.4224512982928], [139.105165911184, 36.4222122341022], [139.105112034198, 36.42196877881], [139.105125561976, 36.4216186689564], [139.105171, 36.421486], [139.1051730256, 36.4213921922495], [139.105206145309, 36.4211148122941], [139.105171626129, 36.4208432291202], [139.104700139356, 36.4199483312256], [139.104435767659, 36.4194244142907], [139.104309704165, 36.4189173109249], [139.10424719689, 36.4187721876189], [139.104123465407, 36.4186595486467], [139.103598102308, 36.4181928415526], [139.102790988551, 36.4173741127467], [139.102735247143, 36.4171629262713], [139.102755188942, 36.4164735960583], [139.1028, 36.416379], [139.102774081138, 36.4162968221224], [139.10280008709, 36.4160279988279], [139.102560903887, 36.4158363381212], [139.101536414467, 36.4150656823413], [139.101356941577, 36.4148313377552], [139.101063997792, 36.4143444475218], [139.10104, 36.414259], [139.10093665123, 36.4141640354025], [139.100549363529, 36.4135405569585], [139.099963241833, 36.4129850220309], [139.099310065242, 36.4124958032694], [139.099128259021, 36.4120781906608], [139.098857472643, 36.4112952713682], [139.098697239838, 36.4104506447942], [139.098706, 36.410344], [139.098672167086, 36.4102518337912], [139.098563129387, 36.4097161920842], [139.098521497111, 36.4093268182686], [139.098398931634, 36.4088007524653], [139.098243479914, 36.4083453868027], [139.098032518272, 36.4078720690861], [139.097734792742, 36.4073685234404], [139.097581207422, 36.4068883909356], [139.097624239829, 36.4065602840122], [139.097650012316, 36.4063644123495], [139.097612, 36.406074], [139.0975156684, 36.4059676690241], [139.097308555303, 36.4055245565731], [139.097163716016, 36.4050653146646], [139.096805116147, 36.4035586878638], [139.096802, 36.403466], [139.096685000403, 36.4031239880097], [139.096460977255, 36.402692883812], [139.096066226589, 36.4020363797424], [139.095927918385, 36.4018134820247], [139.095689550661, 36.4016284930885], [139.095359173012, 36.4014737500323], [139.09500908571, 36.4013405732431], [139.094763605548, 36.4012496768209], [139.094519757663, 36.4012564994176], [139.094377, 36.401221], [139.094246055941, 36.401233097832], [139.09337013861, 36.4012246962463], [139.093160810563, 36.4011858268706], [139.092909732519, 36.401100378506], [139.092256323122, 36.4008829027877], [139.091623671662, 36.4006542867324], [139.091524, 36.400586], [139.091426237798, 36.4005756609644], [139.090952069806, 36.4004065868318], [139.090218893214, 36.4001202320251], [139.089883501015, 36.3999041176326], [139.089494347572, 36.3996316385366], [139.08919335683, 36.3994537018545], [139.088973066483, 36.399379400776], [139.087210737108, 36.3992748667236], [139.087074, 36.399235], [139.086978785384, 36.3992500996974], [139.083535527425, 36.399068293087], [139.083437, 36.399032], [139.083259844219, 36.3990464787291], [139.079553846179, 36.3988664927501], [139.079559717207, 36.3987575521129], [139.079805, 36.398799], [139.080027743665, 36.3987612005706], [139.08001615901, 36.3988674167231], [139.078528192073, 36.3988195940307], [139.077205630553, 36.3987078359922], [139.07714009285, 36.3992314640939], [139.077091, 36.399347], [139.077103591527, 36.3994259897847], [139.076900093509, 36.4007622302407], [139.076855, 36.400865], [139.076851114012, 36.4009853882186], [139.076672339537, 36.4021188092297], [139.074248203942, 36.4019912445005], [139.073678059757, 36.4020971173826], [139.073070715174, 36.4011008268706], [139.073046, 36.401007], [139.072930890437, 36.4008699495667], [139.072417538583, 36.4000595752187], [139.072290075618, 36.3997175620703], [139.072202379188, 36.3993716967607], [139.072175906966, 36.3989448964238], [139.072214, 36.398728], [139.07219701477, 36.3986049174553], [139.072206694003, 36.397486098013], [139.072248909612, 36.3971027385708], [139.072411941359, 36.3967568510205], [139.072483, 36.396711], [139.072481328926, 36.396617993455], [139.072985584221, 36.3955132664518], [139.073057, 36.395433], [139.07308505909, 36.3953041836083], [139.073737535945, 36.3938164875693], [139.073781, 36.393762], [139.073813104068, 36.3936446731693], [139.074390595474, 36.3923058102549], [139.074473, 36.392186], [139.074500916241, 36.3920519417878], [139.074629196004, 36.391669212523], [139.073151531312, 36.3897559741612], [139.073116, 36.389655], [139.073037129195, 36.389609831756], [139.072522610675, 36.3889532188468], [139.072610424826, 36.3873601599962], [139.072657, 36.387243], [139.072620453927, 36.3871478730884], [139.072791415569, 36.3840221057418], [139.072735322315, 36.3839080177105], [139.072759229061, 36.3837768751115]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_09\\u664255\\u5206_\\u7cfb\\u7d71123", "times": [1747616100000, 1747616101775, 1747616120821, 1747616141867, 1747616158057, 1747616160000, 1747616160000, 1747616160000, 1747616160000, 1747616162076, 1747616216931, 1747616220000, 1747616220000, 1747616220000, 1747616220000, 1747616221188, 1747616232171, 1747616254593, 1747616278437, 1747616280000, 1747616281799, 1747616312947, 1747616328650, 1747616338878, 1747616340000, 1747616341022, 1747616356927, 1747616365407, 1747616391222, 1747616399275, 1747616400000, 1747616400906, 1747616426022, 1747616448623, 1747616460000, 1747616460000, 1747616460000, 1747616462086, 1747616466979, 1747616516343, 1747616520000, 1747616528113, 1747616576810, 1747616580000, 1747616581566, 1747616585269, 1747616628829, 1747616638778, 1747616640000, 1747616641404, 1747616650329, 1747616656759, 1747616659917, 1747616662390, 1747616669174, 1747616698114, 1747616700000, 1747616702257, 1747616716533, 1747616731381, 1747616757972, 1747616760000, 1747616761581, 1747616768509, 1747616772012, 1747616780778, 1747616789757, 1747616797132, 1747616800643, 1747616806556, 1747616814584, 1747616818714, 1747616820000, 1747616820663, 1747616822135, 1747616829775, 1747616831270, 1747616832564, 1747616834897, 1747616837000, 1747616843703, 1747616846506, 1747616848376, 1747616855682, 1747616859447, 1747616865449, 1747616871470, 1747616877785, 1747616880000, 1747616881491, 1747616889851, 1747616899205, 1747616906756, 1747616911063, 1747616915305, 1747616938314, 1747616940000, 1747616941019, 1747616956936, 1747616961957, 1747616965370, 1747616969227, 1747616972406, 1747616983867, 1747616998838, 1747617000000, 1747617001605, 1747617004875, 1747617010477, 1747617018123, 1747617033926, 1747617048221, 1747617057624, 1747617060000, 1747617066411, 1747617231114, 1747617247961, 1747617269380, 1747617283335, 1747617290572], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_09\\u664255\\u5206_\\u7cfb\\u7d71123", "popup": "\\u5e73\\u65e5_09\\u664255\\u5206_\\u7cfb\\u7d71123"}, "geometry": {"type": "LineString", "coordinates": [[139.115536, 36.303985], [139.11554827634, 36.3039003183803], [139.116677955573, 36.3038923927042], [139.116675853729, 36.3028818908447], [139.115716088512, 36.3029085719264], [139.115604, 36.302887], [139.115447402, 36.3029174580902], [139.112341403961, 36.3029936594257], [139.112202, 36.302983], [139.112112483324, 36.3030045982771], [139.109646366904, 36.303067152838], [139.10951, 36.30305], [139.109354122854, 36.3030780916894], [139.107298032237, 36.3031672619599], [139.107189, 36.303141], [139.107100017678, 36.3031709082437], [139.106209874153, 36.3031941396627], [139.104392152579, 36.3032280479398], [139.102460378756, 36.3032933099331], [139.102334, 36.303286], [139.102194491185, 36.3033065413521], [139.09974201301, 36.3033740305409], [139.099735021591, 36.3023727344807], [139.099696071194, 36.3017212824818], [139.099718, 36.301652], [139.099689307305, 36.3015587657811], [139.099624117492, 36.3000649382355], [139.099602309292, 36.2992681727762], [139.099483824506, 36.2968439232594], [139.100418285484, 36.2968188361705], [139.1005, 36.296835], [139.100588313926, 36.2968201891506], [139.103086266327, 36.296755071931], [139.105334424411, 36.2967058957713], [139.106465857143, 36.296677], [139.109145960154, 36.2966136017313], [139.109286, 36.296636], [139.109434355659, 36.2966206312014], [139.109784208837, 36.2965996901415], [139.113321459525, 36.296511602392], [139.113583, 36.296497], [139.113885657278, 36.2964818368311], [139.113947114291, 36.297954294139], [139.113932, 36.29805], [139.113939183736, 36.2981534693172], [139.113959241938, 36.2983979086358], [139.117517953595, 36.2983240299985], [139.117810661278, 36.2977100030907], [139.11789, 36.297661], [139.117875734029, 36.2975585665185], [139.118205879533, 36.2969605709401], [139.118425470805, 36.296523454381], [139.118502554801, 36.2963002795426], [139.118538356389, 36.2961211308145], [139.118542671204, 36.2956232436834], [139.118600280331, 36.2934999272028], [139.118625, 36.293363], [139.118598530993, 36.293257268622], [139.118644245278, 36.2925760880446], [139.118665702951, 36.2918667841757], [139.11866931803, 36.2905961128636], [139.11871, 36.290505], [139.118679347131, 36.290407214474], [139.118686460887, 36.2899652356462], [139.1186997552, 36.2897420283579], [139.118809026364, 36.2891897610866], [139.118979171867, 36.2886337583195], [139.119091124911, 36.2881720222739], [139.119091124911, 36.2879480426714], [139.119040862345, 36.2875730021989], [139.11899153298, 36.2870623570294], [139.118981853747, 36.2867989967479], [139.118984, 36.286717], [139.118961795545, 36.2866187380176], [139.118960745942, 36.2863968589771], [139.119032116972, 36.2852473112724], [139.119016839196, 36.2850224611012], [139.118953749248, 36.2848342399146], [139.118795265121, 36.2845070700744], [139.11863748139, 36.2842170849566], [139.118335907974, 36.2832372357443], [139.118209027683, 36.2828276459855], [139.118108853079, 36.2825577820009], [139.117785238658, 36.2814887263897], [139.117624655985, 36.2809366929237], [139.117375327279, 36.2800551824428], [139.117103607701, 36.2791751539875], [139.116846115635, 36.278247004722], [139.116785, 36.277917], [139.116668390105, 36.2778398213182], [139.116359002538, 36.2772041458708], [139.115923902005, 36.2765255563764], [139.115542095124, 36.275991338351], [139.115343728719, 36.2756780526286], [139.115173116946, 36.2753600526234], [139.114319824611, 36.2736108258997], [139.114285, 36.273476], [139.114212303445, 36.2733979795348], [139.113506534915, 36.2719836897926], [139.113272713492, 36.2715413304716], [139.113076679099, 36.271255339636], [139.112803909917, 36.2715517939178], [139.112559129492, 36.2717830620193], [139.111980704885, 36.2727766440814], [139.111210211492, 36.2740685792912], [139.11113, 36.274159], [139.11108601374, 36.2742606218729], [139.110935693632, 36.2744430802864], [139.110662690986, 36.2747468892265], [139.110242866908, 36.275130811857], [139.109369283567, 36.2759202084716], [139.108576981315, 36.2766326760108], [139.108105962132, 36.2761303643197], [139.108041, 36.27598], [139.107932901944, 36.2759465850998], [139.106155996508, 36.2740172288873], [139.106032731955, 36.2737921938315], [139.105838679706, 36.2735215011016], [139.105803461451, 36.2733195859971], [139.105694890022, 36.2732607908439]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_10\\u664200\\u5206_\\u7cfb\\u7d71110", "times": [1747616400000, 1747616402424, 1747616405361, 1747616457805, 1747616460000, 1747616462315, 1747616498874, 1747616518340, 1747616520000, 1747616522061, 1747616544370, 1747616569725, 1747616578194, 1747616580000, 1747616580000, 1747616580000, 1747616580000, 1747616582805, 1747616635475, 1747616640000, 1747616642548, 1747616674278, 1747616697900, 1747616700000, 1747616700000, 1747616700000, 1747616700000, 1747616702900, 1747616712768, 1747616716642, 1747616725006, 1747616734386, 1747616760000, 1747616762802, 1747616785890, 1747616817318, 1747616820000, 1747616823159, 1747616880000, 1747616881620, 1747616926638, 1747616945408, 1747616980924, 1747616997747, 1747617000000, 1747617001644, 1747617012642, 1747617016685, 1747617028185, 1747617029903, 1747617036876, 1747617060000, 1747617069384, 1747617092471, 1747617104630, 1747617120000, 1747617120000, 1747617120000, 1747617120000, 1747617120000, 1747617123346, 1747617130428, 1747617132397, 1747617158761, 1747617193543, 1747617202600, 1747617208848, 1747617213961, 1747617219892, 1747617231351, 1747617240000, 1747617240000, 1747617240000, 1747617240000, 1747617240000, 1747617240000, 1747617240000, 1747617240000, 1747617241079, 1747617246823, 1747617250950, 1747617264159, 1747617276173, 1747617287917, 1747617298254, 1747617300000, 1747617301007, 1747617306020, 1747617308106, 1747617316106, 1747617319169, 1747617322875, 1747617325201, 1747617328743, 1747617331926, 1747617337157, 1747617342973, 1747617346708, 1747617349877, 1747617360000, 1747617362356, 1747617367010, 1747617384288, 1747617393848, 1747617397123, 1747617406822, 1747617416148, 1747617419550, 1747617420000, 1747617421430, 1747617428188, 1747617449127, 1747617457399, 1747617461427, 1747617464010, 1747617472735, 1747617479017, 1747617480000, 1747617481084, 1747617486716, 1747617519232, 1747617523302, 1747617528879, 1747617532643, 1747617538618, 1747617540000, 1747617540000, 1747617540000, 1747617540000, 1747617540000, 1747617540000, 1747617540843, 1747617542508, 1747617548340, 1747617556612, 1747617558964, 1747617562609, 1747617566743, 1747617570299, 1747617572511, 1747617579668, 1747617588546, 1747617593397, 1747617598289, 1747617604003, 1747617605557, 1747617606932, 1747617610824, 1747617619151, 1747617628363, 1747617634258, 1747617638953, 1747617643488, 1747617648179, 1747617651795, 1747617655195, 1747617660000, 1747617666329, 1747617668865, 1747617674688, 1747617679530, 1747617685398, 1747617689811, 1747617693412, 1747617699660, 1747617706441, 1747617730814, 1747617734118, 1747617744623, 1747617754399, 1747617763849, 1747617784548, 1747617791764, 1747617805555, 1747617814558, 1747617838536, 1747617840000, 1747617850325, 1747617863645, 1747617919724, 1747617944451, 1747617991184, 1747618010066, 1747618029581, 1747618044825, 1747618063864, 1747618075922, 1747618142487, 1747618157530, 1747618175464, 1747618182068], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_10\\u664200\\u5206_\\u7cfb\\u7d71110", "popup": "\\u5e73\\u65e5_10\\u664200\\u5206_\\u7cfb\\u7d71110"}, "geometry": {"type": "LineString", "coordinates": [[139.072342, 36.384085], [139.072460425486, 36.38398089795], [139.072648034613, 36.3840606725959], [139.07248016292, 36.3871176437477], [139.072448, 36.387243], [139.072467684746, 36.3873415230417], [139.072445526679, 36.3889175063718], [139.072959345463, 36.3896466520092], [139.072981, 36.389716], [139.073086692025, 36.389768026693], [139.073778467827, 36.3906951097604], [139.074604706585, 36.3917285329458], [139.074409604073, 36.3921080798945], [139.07436, 36.392186], [139.074368787934, 36.3922530820858], [139.073835611343, 36.3934378556375], [139.073759, 36.393524], [139.073766807109, 36.3935917175436], [139.073229432106, 36.3947921550034], [139.073142, 36.394876], [139.07315281438, 36.3949730549069], [139.072672932761, 36.3961227632447], [139.072280979718, 36.3969686625439], [139.072225, 36.397035], [139.072159463844, 36.3974268197045], [139.072125061727, 36.3987815067711], [139.072096, 36.398861], [139.072114332891, 36.3989819358238], [139.072150484347, 36.3993953243097], [139.072191650352, 36.3995546170266], [139.072283311729, 36.3998979945715], [139.072492990303, 36.4002536433234], [139.073057, 36.401228], [139.073126225095, 36.4013160096842], [139.07361776941, 36.402077968137], [139.074040508832, 36.4031967175397], [139.074068, 36.403294], [139.074127738991, 36.4034171393549], [139.074985, 36.405694], [139.07502942749, 36.4057460983262], [139.075703711226, 36.4074168040764], [139.075951640461, 36.4081216076923], [139.076476303166, 36.4094416179863], [139.07728738121, 36.4094806324655], [139.077394, 36.409498], [139.077507088225, 36.4094851294134], [139.07826860212, 36.4095325781083], [139.07854358757, 36.4095785226463], [139.079303236384, 36.4097777988513], [139.079409357419, 36.4098218543132], [139.079863584933, 36.4099575575862], [139.080956, 36.410909], [139.081242238388, 36.4111821609189], [139.08194871061, 36.4118526006851], [139.082309291965, 36.4122133640948], [139.082833, 36.412619], [139.082941594216, 36.412658949341], [139.083306606129, 36.4129375800214], [139.083554419621, 36.4131814589783], [139.083919857143, 36.4134649999999], [139.084080191449, 36.4135392291772], [139.084394564465, 36.4137271801871], [139.084373281397, 36.4138133271573], [139.085189984447, 36.414787266685], [139.086275230484, 36.4160678679079], [139.086578435516, 36.4157464716851], [139.086900651125, 36.4156467753076], [139.087148463298, 36.4155374583657], [139.087475693457, 36.4155470484576], [139.08809621727, 36.4156470211792], [139.088562, 36.415732], [139.088713008281, 36.4157365289445], [139.089840002997, 36.4158269080116], [139.090142392551, 36.415850105446], [139.090419942818, 36.4159173729679], [139.090959883298, 36.4162011676326], [139.091308104199, 36.4164029415685], [139.091566, 36.416655], [139.091627870075, 36.4167055595276], [139.09190716968, 36.4170092926332], [139.092064136614, 36.4172497659465], [139.092392181593, 36.4180785794811], [139.092672764925, 36.4188368763183], [139.092967341646, 36.4195730149992], [139.093244075775, 36.4202162348627], [139.093272, 36.420329], [139.093325824454, 36.4203994815129], [139.093499118107, 36.4207870107627], [139.093589730541, 36.4209420447979], [139.09397421996, 36.4215215088229], [139.094137018242, 36.4217361158765], [139.094299583059, 36.4220109743301], [139.094379233191, 36.4221909743301], [139.094512177636, 36.4224615869837], [139.094674742453, 36.4226877706383], [139.095004771554, 36.423024999948], [139.095360805288, 36.4234067918333], [139.095574682274, 36.4236605637087], [139.095736664418, 36.4238857407726], [139.095965, 36.424697], [139.096065176326, 36.4248662539738], [139.096282785454, 36.4251923275906], [139.097137594321, 36.4263817959271], [139.097611528189, 36.4270395093202], [139.097815026207, 36.4272418196728], [139.09856511285, 36.4277201119104], [139.099162661798, 36.4282841283779], [139.099368375424, 36.4284978872301], [139.099388, 36.42853], [139.09946318561, 36.4286312192156], [139.099624118151, 36.4291736104772], [139.100147264982, 36.4308492124765], [139.100417701492, 36.4314959640141], [139.100527322524, 36.4318163407506], [139.100656768292, 36.4320020942235], [139.101245338402, 36.4325427499548], [139.101687553351, 36.4329184501029], [139.101737, 36.432989], [139.101820730602, 36.4330183522999], [139.102127669095, 36.4333103555214], [139.103266443569, 36.4353215261543], [139.103527665138, 36.4355006671935], [139.10388090059, 36.4357505620796], [139.104045331808, 36.4359694040521], [139.104322298742, 36.4363086654682], [139.104371, 36.436394], [139.10444626303, 36.4364758184875], [139.104804979962, 36.4369068684523], [139.104989702187, 36.438045966934], [139.105304337109, 36.4384419939425], [139.10538, 36.438534], [139.105445327851, 36.4385950391417], [139.10553570616, 36.4387366021137], [139.105760428385, 36.439264054696], [139.106016171771, 36.44002799012], [139.106009524285, 36.4402529103258], [139.105860253121, 36.4405800557159], [139.105832148623, 36.4409748806272], [139.10579156529, 36.4413134261156], [139.105775705501, 36.4415246757514], [139.106137337118, 36.4421437814894], [139.106475645981, 36.4429479144339], [139.106842875481, 36.4433046875277], [139.107197510403, 36.4436747713943], [139.107615118212, 36.4441048117111], [139.107720657234, 36.4442265334287], [139.107828994538, 36.44432470476], [139.108233892027, 36.4445025868398], [139.109103162532, 36.4448784147692], [139.10975073992, 36.4455874906463], [139.110166831856, 36.4460402523804], [139.110536511089, 36.446375665485], [139.110818025643, 36.4467450669132], [139.111134759772, 36.447113703936], [139.111461872869, 36.4473369287146], [139.11175143504, 36.4475629593253], [139.111898, 36.448007], [139.112053007796, 36.4483106394707], [139.112109216793, 36.44843420406], [139.112390383459, 36.4486335191589], [139.112557846423, 36.4488452325202], [139.112703851716, 36.4491259858656], [139.112874696955, 36.4493087234471], [139.113053471429, 36.4494273512531], [139.113373704234, 36.4496227617769], [139.113760874873, 36.449784058966], [139.115221399346, 36.4502397439902], [139.115401220785, 36.4503307613946], [139.115931131504, 36.4506683536788], [139.116367049495, 36.4510335585107], [139.116763083888, 36.4514051942154], [139.117628038259, 36.4522210612226], [139.117944655326, 36.4524946054117], [139.11858523668, 36.4529889620457], [139.118998413271, 36.4533159284055], [139.120205642112, 36.4540887779847], [139.120266, 36.454147], [139.120508847144, 36.4542023671449], [139.120783015137, 36.4543441197013], [139.122070478101, 36.4547235616066], [139.122633507211, 36.45490079583], [139.123556654702, 36.4554439943708], [139.123704174549, 36.4557971898389], [139.123787556163, 36.4561765234294], [139.123817643465, 36.4564764942463], [139.123748022434, 36.4568481127453], [139.123726564762, 36.4570855397562], [139.123899975477, 36.4583921693062], [139.123936126932, 36.4586876947766], [139.124025962248, 36.4590342302175], [139.123865612381, 36.4590491317312]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_10\\u664200\\u5206_\\u7cfb\\u7d71160", "times": [1747616400000, 1747616407214, 1747616413332, 1747616419659, 1747616457186, 1747616460000, 1747616466188, 1747616546933, 1747616573832, 1747616580000, 1747616584955, 1747616657878, 1747616700000, 1747616715601, 1747616742465, 1747616744059, 1747616758572, 1747616760000, 1747616764906, 1747616849564, 1747616874664, 1747616880000, 1747616882305, 1747616907800, 1747616938291, 1747616940000, 1747616942519, 1747617000000, 1747617042612, 1747617120000, 1747617216496, 1747617303337, 1747617389230, 1747617423623, 1747617433794, 1747617464418, 1747617471724, 1747617480000, 1747617483988, 1747617485683, 1747617490789, 1747617495308, 1747617542724, 1747617577601, 1747617604636, 1747617607036, 1747617610177, 1747617623620, 1747617637972, 1747617649761, 1747617660000, 1747617661787, 1747617698639, 1747617717924, 1747617720000, 1747617721760, 1747617738099, 1747617778137, 1747617780000, 1747617781688, 1747617819005, 1747617829641, 1747617840000, 1747617840930, 1747617860820, 1747617881519, 1747617900000, 1747617940638, 1747618050937, 1747618076013, 1747618080000, 1747618081127, 1747618117752, 1747618122709, 1747618138532, 1747618140000, 1747618146144, 1747618173362, 1747618200000, 1747618215064, 1747618236613, 1747618256498, 1747618266617, 1747618281151, 1747618304533, 1747618307582, 1747618320000, 1747618324262, 1747618331032, 1747618359235, 1747618380000, 1747618384009, 1747618426180, 1747618440000, 1747618517019, 1747618540156, 1747618551484, 1747618564840, 1747618667902, 1747618674165, 1747618680000, 1747618683349, 1747618687492, 1747618716422, 1747618724897, 1747618737377, 1747618755307, 1747618761715, 1747618800000, 1747618804824, 1747618819826, 1747618841049, 1747618860000, 1747618862975, 1747618900016, 1747618978292, 1747618980000, 1747619022128, 1747619097861, 1747619125339, 1747619150961, 1747619160000, 1747619164493, 1747619171311, 1747619217133, 1747619220000, 1747619226899, 1747619268845, 1747619293525, 1747619429338, 1747619460000, 1747619463851, 1747619496686, 1747619534019, 1747619539172, 1747619576822, 1747619580000, 1747619595923, 1747619650135, 1747619695515, 1747619700000, 1747619707845, 1747619918843, 1747619926239, 1747619953309, 1747619985706], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_10\\u664200\\u5206_\\u7cfb\\u7d71160", "popup": "\\u5e73\\u65e5_10\\u664200\\u5206_\\u7cfb\\u7d71160"}, "geometry": {"type": "LineString", "coordinates": [[139.072229, 36.383658], [139.072303254187, 36.3839700617261], [139.072625352075, 36.3840393698354], [139.07265007364, 36.3843173680282], [139.074689953281, 36.3844273996844], [139.074836, 36.384465], [139.074940795882, 36.3844362359813], [139.076382195353, 36.3845041919657], [139.076415896416, 36.3841162254292], [139.076444, 36.38403], [139.076421492321, 36.3839240565602], [139.076499976447, 36.3823433752831], [139.07763, 36.382352], [139.07898906971, 36.3823327337505], [139.079870348821, 36.380579372986], [139.079850639828, 36.3804682279924], [139.080085158348, 36.3794635182257], [139.080124, 36.379368], [139.080127024089, 36.3792748484394], [139.080470696711, 36.3776911420771], [139.080584049225, 36.3772233249118], [139.080623, 36.377127], [139.080626964569, 36.3770264179962], [139.080862416289, 36.3759298758636], [139.080786497639, 36.3746002541929], [139.080795, 36.374526], [139.080765389835, 36.3744265703465], [139.08065, 36.372095], [139.080597575684, 36.3712775154491], [139.082435, 36.371233], [139.084148821738, 36.3711572525025], [139.083873018172, 36.3699281688918], [139.08533785614, 36.3702791042162], [139.085927942783, 36.370409576651], [139.086108816463, 36.3704125631418], [139.086626483133, 36.3705496320768], [139.086660653103, 36.3704482436822], [139.086524, 36.370404], [139.086342401782, 36.370390020974], [139.086317212628, 36.3704493404336], [139.086096221886, 36.3703882155703], [139.085889575059, 36.3703923269244], [139.083810276772, 36.3698936317813], [139.08410053736, 36.3711622525025], [139.084344856131, 36.3721425916808], [139.084355, 36.372231], [139.08440024965, 36.3723412811757], [139.084500074387, 36.372831947686], [139.084564447403, 36.3733602843087], [139.084602698065, 36.3737952843087], [139.084607, 36.374174], [139.084618441451, 36.3742533554967], [139.084707420949, 36.3758989609477], [139.084748237087, 36.3767602698098], [139.084731, 36.376852], [139.084755582989, 36.3769403298329], [139.084813541984, 36.3777794349861], [139.087360008932, 36.3778050320028], [139.087477, 36.37782], [139.087579250336, 36.3778129890924], [139.089846770843, 36.377831235362], [139.089560936857, 36.3782999600753], [139.089274, 36.378753], [139.089249217279, 36.3788240981832], [139.088426828384, 36.3802552404042], [139.087552659732, 36.3817376526496], [139.085798, 36.382108], [139.084860771484, 36.3823228774542], [139.084673018172, 36.3844554429203], [139.084764330341, 36.3849358576638], [139.084742, 36.385011], [139.084781239733, 36.3850708760662], [139.085151733785, 36.3872507284924], [139.085279081007, 36.3875301469974], [139.086114764214, 36.3868614884569], [139.086211, 36.38682], [139.086304384586, 36.3867498879134], [139.086769922289, 36.3864916789759], [139.087284, 36.386328], [139.08780840114, 36.3861421306667], [139.088571316485, 36.3859012194348], [139.089204902464, 36.385568026198], [139.08945971199, 36.3858009739636], [139.089874755641, 36.3860957363427], [139.089135746384, 36.3864948486618], [139.089198137915, 36.3865738051837], [139.089629, 36.386418], [139.090047932892, 36.386190111482], [139.090643500356, 36.3866244519232], [139.092843382634, 36.3886576827442], [139.090616, 36.389502], [139.090369098238, 36.3895996365318], [139.090198136597, 36.3919325938576], [139.089253, 36.391881], [139.087478722567, 36.3918453484384], [139.086953945438, 36.3917692114274], [139.086706715938, 36.3917014843538], [139.086437095566, 36.3915814832582], [139.084308820419, 36.3907294182671], [139.084394180881, 36.3906353451514], [139.084361, 36.39053], [139.084234186156, 36.3905512328902], [139.084145206659, 36.3906589597181], [139.083137744353, 36.390265781681], [139.082878270803, 36.3904275914109], [139.082469408368, 36.3906348645831], [139.081791159025, 36.3905185085089], [139.08156375558, 36.3904389621647], [139.080466, 36.391242], [139.080366557819, 36.3913417108795], [139.080011805834, 36.3916180755119], [139.079533789297, 36.3920280787989], [139.079173, 36.392438], [139.079143703314, 36.3925192201924], [139.078437814424, 36.3934042212881], [139.07613519668, 36.3921849008652], [139.076101, 36.392145], [139.075602603422, 36.3919185329459], [139.074655082915, 36.3915967108795], [139.074405638466, 36.3913726134304], [139.074613335555, 36.391147157328], [139.074615, 36.391048], [139.074442256851, 36.3909787414533], [139.074188846136, 36.391096921937], [139.073139752873, 36.3897525659334], [139.073116, 36.389655], [139.072992581575, 36.3895680153003], [139.072475498897, 36.3888802735278], [139.07246290432, 36.388406840233], [139.069258821651, 36.3881248279584], [139.069154, 36.388707], [139.069151540544, 36.3888011792427], [139.069023493587, 36.3895975545407], [139.068857546496, 36.3905007494777], [139.068994457207, 36.3905610023924], [139.069972880494, 36.3900896260603], [139.070069, 36.390089], [139.070587067668, 36.3897766469739], [139.072480785933, 36.388871115803], [139.072613729059, 36.3873859244999], [139.072657, 36.387243], [139.07262605181, 36.3871296345919], [139.072791416888, 36.3840103767728], [139.072714564378, 36.3839202923563], [139.072877014111, 36.3835418856636], [139.072294390433, 36.3834532156406]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_10\\u664206\\u5206_\\u7cfb\\u7d71170", "times": [1747616760000, 1747616760000, 1747616760000, 1747616760000, 1747616762502, 1747616774216, 1747616789706, 1747616805989, 1747616816848, 1747616820000, 1747616820000, 1747616820000, 1747616820000, 1747616820000, 1747616824475, 1747616875702, 1747616880000, 1747616880000, 1747616880000, 1747616880000, 1747616880000, 1747616880000, 1747616880000, 1747616880000, 1747616882009, 1747616887675, 1747616914646, 1747616937504, 1747616940000, 1747616942401, 1747616950355, 1747616961962, 1747616972119, 1747616988579, 1747616994362, 1747616995858, 1747616997899, 1747617000000, 1747617001221, 1747617009781, 1747617018508, 1747617025813, 1747617031173, 1747617037291, 1747617058182, 1747617060000, 1747617060000, 1747617060000, 1747617060000, 1747617060000, 1747617062138, 1747617104237, 1747617105399, 1747617117356, 1747617120000, 1747617120895, 1747617122645, 1747617125562, 1747617136126, 1747617140608, 1747617152612, 1747617160865, 1747617174090, 1747617179143, 1747617180000, 1747617180884, 1747617190655, 1747617215222, 1747617236571, 1747617238993, 1747617240000, 1747617240000, 1747617240000, 1747617240000, 1747617240000, 1747617240000, 1747617252389, 1747617367607, 1747617484757, 1747617504149, 1747617523856, 1747617533724, 1747617540000, 1747617540000, 1747617540000, 1747617540000, 1747617540000, 1747617540000, 1747617540000, 1747617540000, 1747617540000, 1747617540000, 1747617542493, 1747617559018, 1747617570975, 1747617576206, 1747617579073, 1747617580882, 1747617584438, 1747617591581, 1747617600000, 1747617660000, 1747617660000, 1747617660000, 1747617662474, 1747617698889, 1747617720000, 1747617729904, 1747617769718, 1747617778809, 1747617780000, 1747617780000, 1747617780000, 1747617780000, 1747617783654, 1747617821445, 1747617837657, 1747617840000, 1747617855147, 1747617951334, 1747617962716, 1747618046378, 1747618061913, 1747618114352, 1747618143313, 1747618159626, 1747618174633, 1747618200000, 1747618206712, 1747618212141, 1747618214758, 1747618216761, 1747618236901, 1747618258101, 1747618260000, 1747618262810, 1747618287814, 1747618304345, 1747618369081, 1747618380000, 1747618382985, 1747618393927, 1747618398845, 1747618403343, 1747618409385, 1747618411822, 1747618438221, 1747618440000, 1747618442999, 1747618486386, 1747618497413, 1747618500000, 1747618523661, 1747618550051, 1747618592038, 1747618654002, 1747618670790, 1747618688099, 1747618696010, 1747618738788, 1747618788354, 1747618866445, 1747618896908, 1747618963529, 1747618980000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_10\\u664206\\u5206_\\u7cfb\\u7d71170", "popup": "\\u5e73\\u65e5_10\\u664206\\u5206_\\u7cfb\\u7d71170"}, "geometry": {"type": "LineString", "coordinates": [[139.093469, 36.329018], [139.093340985167, 36.3290530238325], [139.090807580387, 36.3292199626756], [139.090669, 36.329204], [139.090540758956, 36.329223606137], [139.089932130645, 36.3292668234438], [139.089124666361, 36.3292452147904], [139.088286070448, 36.3291367453688], [139.087733651793, 36.3290357369098], [139.087585, 36.328979], [139.087428346895, 36.3289998846007], [139.086644557871, 36.3288919795936], [139.086321061173, 36.3299685460852], [139.086254, 36.330059], [139.086229166331, 36.3301971679133], [139.085768176248, 36.3317513438277], [139.085691, 36.33187], [139.085692490403, 36.332010208995], [139.085308349533, 36.3332616111747], [139.085737739078, 36.3332598077818], [139.08617633697, 36.3332709870895], [139.087328872027, 36.3333874167937], [139.08804303936, 36.333469953131], [139.088202, 36.333512], [139.088361755633, 36.3335038464979], [139.088810266881, 36.3335440968944], [139.090954518879, 36.3336484910542], [139.092772006989, 36.3337335637288], [139.092965, 36.333772], [139.093164424983, 36.3337554942259], [139.093827978564, 36.3337779944471], [139.094794041399, 36.3338394229239], [139.095639871428, 36.3338877801668], [139.097004653173, 36.3340179944471], [139.096893279506, 36.3343981370961], [139.096892229903, 36.3344991369636], [139.09685071403, 36.3346328511358], [139.09679, 36.334766], [139.096788440219, 36.3348521365662], [139.096628440879, 36.3354418801682], [139.096463193523, 36.3360427990889], [139.096327683602, 36.3365462875786], [139.096172581749, 36.3369029194732], [139.095920920372, 36.3372834426481], [139.095038590339, 36.3385725267231], [139.094945, 36.338676], [139.094908794703, 36.3387719797491], [139.093799059906, 36.3404219776188], [139.092972589662, 36.3416168754602], [139.09289, 36.341718], [139.092839178946, 36.3418353950332], [139.09138402219, 36.3439831582059], [139.091324780126, 36.34403087472], [139.090916384621, 36.344643021041], [139.090793, 36.34476], [139.090772828402, 36.344871220346], [139.09063731848, 36.3450616412636], [139.090440700754, 36.3453915112376], [139.089907757628, 36.3466457088437], [139.089700994399, 36.3471828401887], [139.089113473892, 36.348612983835], [139.088716506958, 36.3495980840402], [139.088045604837, 36.3511671193998], [139.087799541343, 36.3517694630865], [139.087719, 36.351855], [139.087734002321, 36.3519386895964], [139.087384381948, 36.3528291357286], [139.086592897154, 36.3550893546806], [139.085906251646, 36.3570536981394], [139.085814356804, 36.3572731056224], [139.085772, 36.357363], [139.085769225851, 36.3574279935823], [139.08523604926, 36.35891814756], [139.084799315791, 36.36012983825], [139.084496459307, 36.3608546746923], [139.084414, 36.360962], [139.084385555867, 36.3610897525255], [139.083885265519, 36.3622270494804], [139.083368415647, 36.363381053379], [139.083126783371, 36.3633255143926], [139.083045188797, 36.3635211563914], [139.083172497657, 36.363530486028], [139.083218, 36.363476], [139.083247483106, 36.3633734817274], [139.083349524111, 36.3634157610394], [139.083208649772, 36.3637167518245], [139.083022877285, 36.3641149843554], [139.082754889188, 36.3644505656826], [139.082457864053, 36.3647568621082], [139.081973667619, 36.3650961134748], [139.08166917754, 36.3652620317061], [139.081544, 36.365282], [139.081388711929, 36.3654227748551], [139.080122709274, 36.3661398473303], [139.079221487045, 36.3666754793564], [139.078792333603, 36.3668655423334], [139.078534841537, 36.3669260169169], [139.078370206615, 36.3669577323559], [139.078037670898, 36.3669635169169], [139.0773695955, 36.366956142871], [139.077311754227, 36.3675912373365], [139.076979160309, 36.3719020648639], [139.07683968544, 36.3745195506978], [139.076806215864, 36.3746592209199], [139.076821784646, 36.3747446074708], [139.076759160968, 36.3760139815694], [139.076702, 36.376749], [139.076700123269, 36.3775462317379], [139.076517820358, 36.3807475906518], [139.076453447342, 36.3814774755689], [139.076444, 36.381573], [139.076454846813, 36.3816640961819], [139.076380094828, 36.3831465625117], [139.076348, 36.38324], [139.07637473041, 36.3833461361004], [139.076318754218, 36.3844652475691], [139.075724819031, 36.3844508063771], [139.075652, 36.384414], [139.075494266118, 36.3844330704709], [139.074482838206, 36.3843914771636], [139.074369837538, 36.3843592025177], [139.073489838197, 36.3843276720178], [139.073333338852, 36.3842892025177], [139.072782473773, 36.3842591048612], [139.072778781971, 36.3840125753437], [139.072733106706, 36.383878699049], [139.072798529325, 36.383762398688], [139.072904, 36.383564], [139.072299792553, 36.3834730910698], [139.072271727735, 36.3838743791595], [139.072454973766, 36.383999251887], [139.072628734349, 36.3840465362867], [139.07255421517, 36.3855363732718], [139.072479113317, 36.387104688316], [139.072448, 36.387243], [139.072460106697, 36.3873452054921], [139.072410075618, 36.3882577198371], [139.072338939373, 36.3888588229485], [139.069835621234, 36.3900818956805], [139.06939, 36.390253], [139.069187693318, 36.3903830418832], [139.068377199266, 36.3907791902159], [139.067965771353, 36.3908675987508], [139.067578131806, 36.390897591411], [139.06706070058, 36.3909589670579], [139.066850089466, 36.3909487414533], [139.064589219742, 36.3906805536298], [139.064445, 36.390637], [139.064277501482, 36.3906487341135], [139.061863277926, 36.3904091951091], [139.061776049745, 36.3909039670579], [139.061748, 36.391019], [139.061734767336, 36.3914014780677], [139.061829694585, 36.3918212567325], [139.061708295114, 36.3924930820858], [139.060470044452, 36.3924510393823], [139.060161942591, 36.3925589931268], [139.059930223013, 36.3927669481482], [139.059811739545, 36.3928517204461], [139.059698620496, 36.3935374007438], [139.059544801712, 36.3943292071023], [139.059236696554, 36.3955671678543], [139.059136172741, 36.3960530236138], [139.058920779223, 36.3971161690065], [139.059219, 36.397003]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_10\\u664210\\u5206_\\u7cfb\\u7d71122", "times": [1747617000000, 1747617000000, 1747617000000, 1747617000000, 1747617005347, 1747617050361, 1747617058152, 1747617060000, 1747617061688, 1747617102413, 1747617108844, 1747617146656, 1747617161252, 1747617178430, 1747617180000, 1747617182312, 1747617214667, 1747617229722, 1747617246306, 1747617292082, 1747617300000, 1747617301248, 1747617306365, 1747617309708, 1747617313586, 1747617334948, 1747617349167, 1747617359049, 1747617360000, 1747617361239, 1747617382681, 1747617419151, 1747617420000, 1747617420721, 1747617429399, 1747617450675, 1747617478939, 1747617480000, 1747617483006, 1747617487149, 1747617491974, 1747617522221, 1747617544513, 1747617572661, 1747617595713, 1747617600000, 1747617600000, 1747617600000, 1747617600000, 1747617602502, 1747617614216, 1747617629706, 1747617645989, 1747617656848, 1747617660000, 1747617660000, 1747617660000, 1747617660000, 1747617660000, 1747617664475, 1747617715702, 1747617720000, 1747617720000, 1747617720000, 1747617720000, 1747617720000, 1747617720000, 1747617720000, 1747617720000, 1747617722009, 1747617727675, 1747617754646, 1747617777504, 1747617780000, 1747617782401, 1747617790355, 1747617801962, 1747617812119, 1747617828579, 1747617834362, 1747617835858, 1747617837899, 1747617840000, 1747617841221, 1747617849781, 1747617858508, 1747617865813, 1747617871173, 1747617877291, 1747617898182, 1747617900000, 1747617900000, 1747617900000, 1747617900000, 1747617900000, 1747617902138, 1747617944237, 1747617945399, 1747617957356, 1747617960000, 1747617960895, 1747617962645, 1747617965562, 1747617976126, 1747617980608, 1747617992612, 1747618000865, 1747618014090, 1747618019143, 1747618020000, 1747618020884, 1747618030655, 1747618055222, 1747618076571, 1747618078993, 1747618080000, 1747618080000, 1747618080000, 1747618080000, 1747618080000, 1747618080000, 1747618092389, 1747618207607, 1747618324757, 1747618344149, 1747618363856, 1747618373724, 1747618380000, 1747618380000, 1747618380000, 1747618380000, 1747618380000, 1747618380000, 1747618380000, 1747618380000, 1747618380000, 1747618380000, 1747618381806, 1747618395490, 1747618411434, 1747618416366, 1747618422213, 1747618438620, 1747618440000, 1747618440985, 1747618463520, 1747618467234, 1747618498767, 1747618500000, 1747618501468, 1747618529485, 1747618545442, 1747618553576, 1747618557789, 1747618560000, 1747618560000, 1747618560000, 1747618560000, 1747618564854, 1747618590365, 1747618597633, 1747618615228, 1747618620000, 1747618622604, 1747618677788, 1747618680000, 1747618685218, 1747618748588, 1747618756068, 1747618795150, 1747618800000, 1747618801202, 1747618805283, 1747618822551, 1747618832345, 1747618846564, 1747618858717, 1747618860000, 1747618876473, 1747618996888, 1747619030809, 1747619052364, 1747619100000, 1747619106712, 1747619112141, 1747619114758, 1747619116761, 1747619136901, 1747619158101, 1747619160000, 1747619162810, 1747619187814, 1747619204345, 1747619269081, 1747619280000, 1747619282985, 1747619293927, 1747619298845, 1747619303343, 1747619309385, 1747619311822, 1747619338221, 1747619340000, 1747619342999, 1747619386386, 1747619397413, 1747619400000, 1747619423661, 1747619450051, 1747619492038, 1747619554002, 1747619570790, 1747619588099, 1747619596010, 1747619638788, 1747619688354, 1747619766445, 1747619796908, 1747619863529], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_10\\u664210\\u5206_\\u7cfb\\u7d71122", "popup": "\\u5e73\\u65e5_10\\u664210\\u5206_\\u7cfb\\u7d71122"}, "geometry": {"type": "LineString", "coordinates": [[139.115536, 36.303985], [139.11555048997, 36.3039052746306], [139.116663492617, 36.3038936589211], [139.116663, 36.303985], [139.116692296851, 36.3042762759094], [139.116753054788, 36.3067356093039], [139.116752005185, 36.3071613448129], [139.116732, 36.307261], [139.116748506508, 36.3073343673407], [139.116718769073, 36.3091332564008], [139.116702323973, 36.3094170122703], [139.116670836541, 36.3110871840294], [139.117462440376, 36.3110146011779], [139.118397599111, 36.3109600194783], [139.118476, 36.310988], [139.11860704422, 36.3109630276496], [139.120490892105, 36.3109560954607], [139.12051456143, 36.3116652988937], [139.12051957598, 36.3124468005976], [139.12039187955, 36.3146014732496], [139.12032, 36.31497], [139.120373921215, 36.3150813395516], [139.120390713545, 36.3155713395517], [139.120106750576, 36.3157943148945], [139.11973963616, 36.3160171880212], [139.117697542229, 36.317223819556], [139.116333347113, 36.3180213301214], [139.115408101736, 36.3186003572136], [139.115304, 36.318635], [139.115178364961, 36.3187146039654], [139.112864201584, 36.3199339038468], [139.108916456184, 36.3219930377514], [139.108829, 36.322046], [139.108721121526, 36.3221177007173], [139.107304215431, 36.3228447459193], [139.103853495167, 36.3246574506048], [139.099266917752, 36.3270620394544], [139.099093, 36.32715], [139.098959280183, 36.3272572010045], [139.098839864834, 36.3274435441329], [139.098729076478, 36.327670990151], [139.098335026207, 36.3291698862795], [139.096940159798, 36.3291287801768], [139.095180280816, 36.3290512411393], [139.093737252366, 36.3290250586405], [139.093469, 36.329018], [139.093340985167, 36.3290530238325], [139.090807580387, 36.3292199626756], [139.090669, 36.329204], [139.090540758956, 36.329223606137], [139.089932130645, 36.3292668234438], [139.089124666361, 36.3292452147904], [139.088286070448, 36.3291367453688], [139.087733651793, 36.3290357369098], [139.087585, 36.328979], [139.087428346895, 36.3289998846007], [139.086644557871, 36.3288919795936], [139.086321061173, 36.3299685460852], [139.086254, 36.330059], [139.086229166331, 36.3301971679133], [139.085768176248, 36.3317513438277], [139.085691, 36.33187], [139.085692490403, 36.332010208995], [139.085308349533, 36.3332616111747], [139.085737739078, 36.3332598077818], [139.08617633697, 36.3332709870895], [139.087328872027, 36.3333874167937], [139.08804303936, 36.333469953131], [139.088202, 36.333512], [139.088361755633, 36.3335038464979], [139.088810266881, 36.3335440968944], [139.090954518879, 36.3336484910542], [139.092772006989, 36.3337335637288], [139.092965, 36.333772], [139.093164424983, 36.3337554942259], [139.093827978564, 36.3337779944471], [139.094794041399, 36.3338394229239], [139.095639871428, 36.3338877801668], [139.097004653173, 36.3340179944471], [139.096893279506, 36.3343981370961], [139.096892229903, 36.3344991369636], [139.09685071403, 36.3346328511358], [139.09679, 36.334766], [139.096788440219, 36.3348521365662], [139.096628440879, 36.3354418801682], [139.096463193523, 36.3360427990889], [139.096327683602, 36.3365462875786], [139.096172581749, 36.3369029194732], [139.095920920372, 36.3372834426481], [139.095038590339, 36.3385725267231], [139.094945, 36.338676], [139.094908794703, 36.3387719797491], [139.093799059906, 36.3404219776188], [139.092972589662, 36.3416168754602], [139.09289, 36.341718], [139.092839178946, 36.3418353950332], [139.09138402219, 36.3439831582059], [139.091324780126, 36.34403087472], [139.090916384621, 36.344643021041], [139.090793, 36.34476], [139.090772828402, 36.344871220346], [139.09063731848, 36.3450616412636], [139.090440700754, 36.3453915112376], [139.089907757628, 36.3466457088437], [139.089700994399, 36.3471828401887], [139.089113473892, 36.348612983835], [139.088716506958, 36.3495980840402], [139.088045604837, 36.3511671193998], [139.087799541343, 36.3517694630865], [139.087719, 36.351855], [139.087734002321, 36.3519386895964], [139.087384381948, 36.3528291357286], [139.086592897154, 36.3550893546806], [139.085906251646, 36.3570536981394], [139.085814356804, 36.3572731056224], [139.085772, 36.357363], [139.085769225851, 36.3574279935823], [139.08523604926, 36.35891814756], [139.084799315791, 36.36012983825], [139.084496459307, 36.3608546746923], [139.084414, 36.360962], [139.084385555867, 36.3610897525255], [139.083885265519, 36.3622270494804], [139.083368415647, 36.363381053379], [139.083126783371, 36.3633255143926], [139.083045188797, 36.3635211563914], [139.083172497657, 36.363530486028], [139.083218, 36.363476], [139.083247483106, 36.3633734817274], [139.083349524111, 36.3634157610394], [139.083208649772, 36.3637167518245], [139.083022877285, 36.3641149843554], [139.082754889188, 36.3644505656826], [139.082457864053, 36.3647568621082], [139.081973667619, 36.3650961134748], [139.08166917754, 36.3652620317061], [139.081544, 36.365282], [139.081443405713, 36.3653997863997], [139.080344048565, 36.3660205672377], [139.079069065753, 36.3667507661141], [139.078629651724, 36.3669134751788], [139.078063121959, 36.3669823841368], [139.07645554391, 36.3669642198625], [139.076325, 36.366936], [139.076239104086, 36.3669553430683], [139.074200508831, 36.3669246627121], [139.073864526705, 36.366917891314], [139.073649955918, 36.3692187930818], [139.07361, 36.369303], [139.073639926818, 36.3693986431033], [139.073494737663, 36.3712770969986], [139.073404942028, 36.3723465165336], [139.073350248244, 36.3728911947818], [139.073289490307, 36.3731699055123], [139.073219, 36.373307], [139.073200044539, 36.3734283813148], [139.072713398372, 36.3752090241486], [139.072676, 36.375304], [139.072650774694, 36.3754036200868], [139.072521328926, 36.375927599253], [139.072450192021, 36.3760685342994], [139.07242651874, 36.3764365716041], [139.072386, 36.376531], [139.07242150419, 36.3766434407146], [139.072286344136, 36.3790993655748], [139.072257, 36.379195], [139.072281329586, 36.3793132699209], [139.072210776013, 36.3807680983048], [139.072165527998, 36.3809360256327], [139.072120746912, 36.3818332099839], [139.072091, 36.381942], [139.072112117282, 36.3820330182553], [139.072095324293, 36.3823469138213], [139.070451009478, 36.382346259113], [139.070287280633, 36.3830886063431], [139.070195502194, 36.3841809525908], [139.071347920848, 36.3842662465333], [139.071458, 36.384309], [139.071615908285, 36.3842916866896], [139.072779755511, 36.3843303029085], [139.072788500225, 36.3840650828303], [139.072720395066, 36.3839057325126], [139.072904, 36.383564], [139.072299792553, 36.3834730910698], [139.072271727735, 36.3838743791595], [139.072454973766, 36.383999251887], [139.072628734349, 36.3840465362867], [139.07255421517, 36.3855363732718], [139.072479113317, 36.387104688316], [139.072448, 36.387243], [139.072460106697, 36.3873452054921], [139.072410075618, 36.3882577198371], [139.072338939373, 36.3888588229485], [139.069835621234, 36.3900818956805], [139.06939, 36.390253], [139.069187693318, 36.3903830418832], [139.068377199266, 36.3907791902159], [139.067965771353, 36.3908675987508], [139.067578131806, 36.390897591411], [139.06706070058, 36.3909589670579], [139.066850089466, 36.3909487414533], [139.064589219742, 36.3906805536298], [139.064445, 36.390637], [139.064277501482, 36.3906487341135], [139.061863277926, 36.3904091951091], [139.061776049745, 36.3909039670579], [139.061748, 36.391019], [139.061734767336, 36.3914014780677], [139.061829694585, 36.3918212567325], [139.061708295114, 36.3924930820858], [139.060470044452, 36.3924510393823], [139.060161942591, 36.3925589931268], [139.059930223013, 36.3927669481482], [139.059811739545, 36.3928517204461], [139.059698620496, 36.3935374007438], [139.059544801712, 36.3943292071023], [139.059236696554, 36.3955671678543], [139.059136172741, 36.3960530236138], [139.058920779223, 36.3971161690065]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_10\\u664210\\u5206_\\u7cfb\\u7d71151", "times": [1747617000000, 1747617002081, 1747617004964, 1747617008540, 1747617016000, 1747617058535, 1747617060000, 1747617061720, 1747617084384, 1747617099679, 1747617107012, 1747617110382, 1747617118651, 1747617120000, 1747617123404, 1747617144713, 1747617175309, 1747617236514, 1747617240000, 1747617241602, 1747617282253, 1747617299035, 1747617300000, 1747617304409, 1747617342300, 1747617375459, 1747617399761, 1747617420769, 1747617547661, 1747617565287, 1747617574564, 1747617582720, 1747617588891, 1747617600000, 1747617613776, 1747617628400, 1747617694270, 1747617717189, 1747617720000, 1747617721379, 1747617729861, 1747617736293, 1747617738951, 1747617764907, 1747617768493, 1747617778010, 1747617780000, 1747617781799, 1747617799183, 1747617820390, 1747617838877, 1747617840000, 1747617840970, 1747617846553, 1747617849117, 1747617858841, 1747617871384, 1747617882361, 1747617895094, 1747617900000, 1747617901576, 1747617911847, 1747617916157, 1747617921764, 1747617937867, 1747617950848, 1747617952590, 1747617960000, 1747617961666, 1747618011742, 1747618019250, 1747618020000, 1747618022137, 1747618078424, 1747618080000, 1747618081787, 1747618095847, 1747618128815, 1747618140000, 1747618141516, 1747618198464, 1747618200000, 1747618211829, 1747618260000, 1747618261737, 1747618317806, 1747618320000, 1747618337083, 1747618378366, 1747618380000, 1747618386313, 1747618428473, 1747618436122, 1747618440000, 1747618443581, 1747618451970, 1747618455524, 1747618464032, 1747618474008, 1747618498529, 1747618500000, 1747618501323, 1747618506354, 1747618533397, 1747618558887, 1747618560000, 1747618574851, 1747618590353, 1747618609913, 1747618620000, 1747618621939, 1747618672389, 1747618680000, 1747618681052, 1747618716881, 1747618717880, 1747618718994, 1747618738586, 1747618740000, 1747618773931, 1747618816823, 1747618822446, 1747618830608, 1747618848168, 1747618857908, 1747618863252, 1747618867935, 1747618886293, 1747618923106, 1747618952500, 1747618966241, 1747618970001, 1747618973919, 1747618977338, 1747618980000, 1747618981415, 1747618984444, 1747618993909, 1747619006626, 1747619015041, 1747619037454, 1747619040000, 1747619044838, 1747619077426, 1747619088223, 1747619098850, 1747619100000, 1747619101860, 1747619148878, 1747619160000, 1747619183013, 1747619206719, 1747619217601, 1747619220000, 1747619222806, 1747619337601, 1747619340000, 1747619343381, 1747619374755, 1747619384969, 1747619396891, 1747619400000, 1747619401906, 1747619420730, 1747619457679, 1747619460000, 1747619461873, 1747619508456, 1747619518310, 1747619520000, 1747619533273, 1747619620764, 1747619710519, 1747619724469, 1747619773876, 1747619828991, 1747619861696, 1747619969145, 1747620000000, 1747620004218, 1747620014544, 1747620021974, 1747620052461, 1747620074044, 1747620078560, 1747620104241, 1747620118295, 1747620120000, 1747620123283, 1747620176520, 1747620180000, 1747620183654, 1747620221445, 1747620237657, 1747620240000, 1747620247472, 1747620301727, 1747620309358, 1747620353743, 1747620365730, 1747620392029, 1747620405684, 1747620418155, 1747620439354, 1747620467184, 1747620480000, 1747620484260, 1747620489060, 1747620492094, 1747620519416, 1747620521831, 1747620539053, 1747620540000, 1747620543148, 1747620597474, 1747620600000, 1747620601739, 1747620660000, 1747620720000, 1747620722489, 1747620758209, 1747620769334, 1747620777254, 1747620780000, 1747620781208, 1747620788665, 1747620791772, 1747620812275, 1747620838936, 1747620840000, 1747620845532, 1747620967738, 1747621093636, 1747621174445], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_10\\u664210\\u5206_\\u7cfb\\u7d71151", "popup": "\\u5e73\\u65e5_10\\u664210\\u5206_\\u7cfb\\u7d71151"}, "geometry": {"type": "LineString", "coordinates": [[139.047567, 36.378982], [139.047734918687, 36.3789354948586], [139.047875443159, 36.3787723051739], [139.047778882975, 36.3785384171516], [139.048225996731, 36.3781724687285], [139.050596719633, 36.3803925160325], [139.050647, 36.380485], [139.050771410778, 36.3805798368253], [139.05224464623, 36.3819575760473], [139.053397878385, 36.38115677981], [139.053879160135, 36.381599228694], [139.05420802257, 36.3816504175013], [139.054355660139, 36.3809967213916], [139.054402, 36.380895], [139.054401491487, 36.3808172039061], [139.054492686593, 36.3803359374525], [139.05362889625, 36.3803070194228], [139.053955078125, 36.3789336499309], [139.054005, 36.378865], [139.054013736856, 36.3787622532554], [139.054599625086, 36.3761925461748], [139.054693268607, 36.3751165134694], [139.054734, 36.375064], [139.054722656833, 36.3749751090578], [139.054770353922, 36.3742082572536], [139.054924989504, 36.3735480755799], [139.055079742148, 36.3730717849376], [139.05513338501, 36.3726482850752], [139.051953800332, 36.3726487308716], [139.051932109855, 36.3730054899973], [139.051699689881, 36.3730021104345], [139.051696308267, 36.3728368755063], [139.051541672685, 36.3728350923207], [139.051553, 36.37306], [139.051971177314, 36.3730582128955], [139.051994615151, 36.3726997607232], [139.053994029841, 36.3727067010704], [139.05374621569, 36.3721810204072], [139.053726, 36.372114], [139.053652221641, 36.3720743729018], [139.053398228253, 36.3716847419753], [139.053212688571, 36.3713862876541], [139.053180502723, 36.371250735795], [139.05296219386, 36.369914503334], [139.05295951198, 36.3697282550043], [139.053028433277, 36.3692372249393], [139.053034, 36.369134], [139.053004526531, 36.369065568409], [139.052959861848, 36.3683664266972], [139.052939453779, 36.3675125410268], [139.052977704441, 36.3667687126854], [139.053002, 36.366728], [139.053000211716, 36.3666470501388], [139.053033097959, 36.3661818893197], [139.052992398224, 36.3659704633589], [139.052953797695, 36.3651595819776], [139.052907383673, 36.3641135598473], [139.05287951198, 36.3631977653399], [139.053090123754, 36.3621489395479], [139.053232, 36.361756], [139.053240793729, 36.3616770633094], [139.053402892276, 36.3611777058539], [139.053667965028, 36.3611463911959], [139.054010121776, 36.3611997914422], [139.055010935276, 36.3612007111467], [139.055817696528, 36.361196391196], [139.055905393617, 36.3611450310975], [139.056365, 36.361168], [139.056464340717, 36.3611401929195], [139.059624103955, 36.3611380749386], [139.059688941263, 36.3607585153324], [139.059723, 36.360732], [139.059698970364, 36.36064275745], [139.060064800393, 36.3582553769226], [139.060093, 36.358192], [139.060096403569, 36.3580791722006], [139.060230863228, 36.3571981224867], [139.062803573549, 36.3572468557839], [139.062829, 36.356541], [139.062814647636, 36.3564559100686], [139.062848933351, 36.3532309311103], [139.062872, 36.353146], [139.062836804384, 36.3527531158923], [139.064819, 36.352709], [139.064919948578, 36.3526938442659], [139.068230494238, 36.3525887945456], [139.06836, 36.352593], [139.069302213816, 36.3525379707827], [139.069423494246, 36.3543819414464], [139.069422, 36.354455], [139.069433173479, 36.354629363781], [139.069313990277, 36.3557911843141], [139.069233640409, 36.3559924846712], [139.069149, 36.356075], [139.069011367918, 36.3561982992722], [139.068628977705, 36.3564342647686], [139.068510959849, 36.356568673602], [139.068292301777, 36.3569213928169], [139.067724839472, 36.3568631710726], [139.066320061684, 36.35690953068], [139.066236, 36.356904], [139.066098371865, 36.3569180626543], [139.065572074247, 36.3569432153912], [139.062755865909, 36.357198742458], [139.062715872503, 36.3593590355746], [139.062706, 36.359453], [139.062738729646, 36.3599570377643], [139.06287983745, 36.3604713980436], [139.063118554383, 36.3611075177947], [139.062695, 36.361095], [139.062580012714, 36.3611015919346], [139.05958188307, 36.3611139495708], [139.059509, 36.361475], [139.059509000124, 36.3615379069609], [139.059192149593, 36.3636644006954], [139.059147834778, 36.363712157599], [139.059161012688, 36.3637778739252], [139.058997980941, 36.3649416932264], [139.058962, 36.365021], [139.058832265995, 36.3660863849257], [139.060505499469, 36.3660867037806], [139.060722874472, 36.3661106894263], [139.061040541801, 36.3661279680016], [139.06172543929, 36.3661169858111], [139.062084621833, 36.3662172233178], [139.062286486914, 36.3662592643863], [139.062468293795, 36.366273789373], [139.063183395647, 36.3663054197559], [139.062931616549, 36.3674488858645], [139.061825027264, 36.3672057368509], [139.061291152916, 36.3672447577301], [139.061144797756, 36.3672367989828], [139.061004039159, 36.3671886339718], [139.060973485587, 36.3672936339718], [139.061075, 36.367276], [139.061145030561, 36.3672493760158], [139.061309344717, 36.3672656894264], [139.061824797096, 36.3672296948759], [139.062495581496, 36.367377097686], [139.062940246179, 36.3674723741454], [139.062701997495, 36.3684442313785], [139.062658, 36.368551], [139.062594940622, 36.3688299468551], [139.062085203187, 36.3706947847566], [139.061945846699, 36.3713174615288], [139.06117861654, 36.3712634849633], [139.061102, 36.371237], [139.060983635706, 36.3712392190876], [139.058004395621, 36.3710212876541], [139.057953, 36.371592], [139.057804629745, 36.3728763894808], [139.059437281206, 36.3730262429015], [139.060150048409, 36.373225821165], [139.060287, 36.373302], [139.060424099339, 36.3733140620393], [139.065526127815, 36.3752585987283], [139.065613, 36.375323], [139.065788632453, 36.3753561521244], [139.067306881136, 36.3759248331467], [139.067842739607, 36.3760039815694], [139.068477257467, 36.3760364915732], [139.068639, 36.376066], [139.068776965141, 36.376044448847], [139.070164133802, 36.3760530870295], [139.072887158955, 36.3760537679382], [139.073054, 36.376084], [139.073185933429, 36.3760376397596], [139.076762953949, 36.3760356770642], [139.076732746947, 36.3766470588895], [139.076702, 36.376749], [139.076693213217, 36.3768558715541], [139.076688198667, 36.3775618759077], [139.077582192715, 36.3776061637831], [139.077582268778, 36.377718736361], [139.077089440736, 36.3777304210093], [139.077026895759, 36.3781722849624], [139.076814961897, 36.3783729842002], [139.076786390468, 36.3792397407747], [139.077066, 36.379344], [139.077304174859, 36.3792083152697], [139.077337449991, 36.378632173992], [139.0768242939, 36.378634471562], [139.076806684113, 36.380337213547], [139.0782969447, 36.380368665529], [139.078306271428, 36.3806207435751], [139.076534962556, 36.3806976928839], [139.076474905014, 36.3814811132602], [139.076444, 36.381573], [139.076454846813, 36.3816640961819], [139.076380094828, 36.3831465625117], [139.076348, 36.38324], [139.07637473041, 36.3833461361004], [139.076318754218, 36.3844652475691], [139.075724819031, 36.3844508063771], [139.075652, 36.384414], [139.075513624584, 36.3844412570854], [139.074481557116, 36.3843883011011], [139.074343598121, 36.3843510264552], [139.073498352743, 36.3843219278719], [139.073273046526, 36.3842912465333], [139.072772522714, 36.3842689507834], [139.072793047845, 36.3840591603095], [139.072725758825, 36.383874809255], [139.07282779983, 36.3835586777606], [139.072308495608, 36.3834712359812], [139.072229, 36.383658], [139.072270135138, 36.3839470841464], [139.072648092815, 36.3840657641688], [139.072600862656, 36.3842694120438], [139.070297192671, 36.3841569173198], [139.070093925481, 36.3841707536167], [139.068652408948, 36.3840128081844], [139.068585, 36.383978], [139.068428045823, 36.3839855229865], [139.065740703877, 36.3836843590378], [139.065629, 36.383637], [139.065505719746, 36.3836502594721], [139.061381, 36.38318], [139.05725, 36.383287], [139.057148541107, 36.3833229488718], [139.055580381045, 36.3835322794976], [139.055085570199, 36.3835436539548], [139.054735600619, 36.3835102475691], [139.054627, 36.383465], [139.054511927997, 36.3834768173776], [139.053798925351, 36.3834263671604], [139.053627032487, 36.3832292995232], [139.052352633008, 36.3820168740599], [139.050685115138, 36.380447329523], [139.050657, 36.380368], [139.050580159449, 36.3803411538466], [139.049397226243, 36.379192158712], [139.048155794346, 36.3780240289584], [139.047317193156, 36.3787433998454]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_10\\u664211\\u5206_\\u7cfb\\u7d71171", "times": [1747617060000, 1747617060000, 1747617060000, 1747617060000, 1747617060000, 1747617063094, 1747617103466, 1747617116916, 1747617120000, 1747617122357, 1747617177970, 1747617180000, 1747617182675, 1747617211568, 1747617297907, 1747617300000, 1747617300000, 1747617300000, 1747617300000, 1747617302773, 1747617338573, 1747617357933, 1747617360000, 1747617360000, 1747617360000, 1747617375141, 1747617382689, 1747617386288, 1747617389088, 1747617392921, 1747617406436, 1747617415539, 1747617418794, 1747617420000, 1747617430210, 1747617497494, 1747617537106, 1747617581168, 1747617611580, 1747617666362, 1747617684663, 1747617707140, 1747617720000, 1747617720000, 1747617720000, 1747617720000, 1747617720000, 1747617738230, 1747617747906, 1747617755852, 1747617777647, 1747617780000, 1747617783518, 1747617790578, 1747617813344, 1747617835650, 1747617839549, 1747617840000, 1747617840648, 1747617842759, 1747617848287, 1747617854921, 1747617863616, 1747617870033, 1747617879319, 1747617882245, 1747617884697, 1747617890137, 1747617891692, 1747617894659, 1747617899560, 1747617900000, 1747617900000, 1747617900000, 1747617900000, 1747617900000, 1747617901098, 1747617925820, 1747617949617, 1747617958851, 1747617960000, 1747617961489, 1747617982753, 1747617986510, 1747617990085, 1747617996087, 1747618014468, 1747618020000, 1747618022267, 1747618029512, 1747618041464, 1747618051701, 1747618078635, 1747618080000, 1747618083561, 1747618135909, 1747618140000, 1747618143236, 1747618164198, 1747618180775, 1747618193976, 1747618204433, 1747618215591, 1747618257478, 1747618260000, 1747618260000, 1747618260000, 1747618260000, 1747618260000, 1747618264732, 1747618300148, 1747618305186, 1747618313376, 1747618317015, 1747618320000, 1747618320000, 1747618320000, 1747618320000, 1747618320000, 1747618320000, 1747618320000, 1747618320000, 1747618330668, 1747618422684, 1747618509637, 1747618526696, 1747618552780, 1747618560000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_10\\u664211\\u5206_\\u7cfb\\u7d71171", "popup": "\\u5e73\\u65e5_10\\u664211\\u5206_\\u7cfb\\u7d71171"}, "geometry": {"type": "LineString", "coordinates": [[139.072197, 36.383792], [139.072286188053, 36.3839648301134], [139.072593476414, 36.3840381832001], [139.072595030648, 36.3843418303382], [139.074836, 36.384465], [139.074940795882, 36.3844362359813], [139.076382195353, 36.3845041919657], [139.076415896416, 36.3841162254292], [139.076444, 36.38403], [139.076419511495, 36.3839484789709], [139.076515021417, 36.3819714110803], [139.076562, 36.38191], [139.076523272078, 36.3817975221413], [139.076569744301, 36.3805374418317], [139.076768198667, 36.3767736843573], [139.076803714286, 36.376687], [139.076778927503, 36.3765596607031], [139.076859364673, 36.3747359690427], [139.07691560343, 36.3746614978989], [139.076880880547, 36.3745372851962], [139.076963125256, 36.37289515565], [139.077022133855, 36.3720076648913], [139.077064990997, 36.3719193423341], [139.077047148405, 36.3718031834069], [139.077325398407, 36.3682314567737], [139.077412016133, 36.3669745763016], [139.0781877291, 36.3669917501654], [139.078554578972, 36.3669531430416], [139.078821137837, 36.3668652787406], [139.079175160326, 36.3667254793563], [139.080303728458, 36.3660700980756], [139.081066846848, 36.365632055174], [139.081335067749, 36.3654702957868], [139.081448, 36.365429], [139.08153961537, 36.3653486637464], [139.082263579657, 36.3649294065477], [139.082627542627, 36.3646242749457], [139.082952595538, 36.3642327383123], [139.083145558504, 36.3639470832035], [139.083372147789, 36.3633901170829], [139.083141010884, 36.3633316075762], [139.083092497657, 36.3635689583984], [139.083218, 36.363476], [139.083241807182, 36.3633803427552], [139.083356792632, 36.3634468377844], [139.083884215916, 36.3622411256014], [139.084388, 36.361156], [139.084850394494, 36.3600189127137], [139.085082812489, 36.3594119880879], [139.085242774128, 36.3589065435092], [139.085745824396, 36.3575345916174], [139.085825, 36.357394], [139.085884210641, 36.3571436319018], [139.086046115403, 36.3566492011493], [139.086611245037, 36.3550643536985], [139.087178784725, 36.3535148629043], [139.087270563164, 36.3532423387193], [139.0873, 36.35322], [139.087307880625, 36.3531142808382], [139.087429746366, 36.3527841357286], [139.087773535391, 36.3519256785506], [139.088182630632, 36.3508947352456], [139.088744028784, 36.3495499832363], [139.089151141221, 36.3485556475598], [139.089753355511, 36.3471203681178], [139.089928865433, 36.3466643503411], [139.090084899826, 36.3462844261661], [139.090432187527, 36.3454420604015], [139.090559417686, 36.3452100950355], [139.090850495731, 36.3447868403018], [139.091333876686, 36.3440890148523], [139.091415, 36.34406], [139.091438482508, 36.3439540834348], [139.092386818493, 36.3425254579724], [139.092868916381, 36.3418329259698], [139.092928, 36.341788], [139.092932939529, 36.3417212591254], [139.09382879734, 36.3404033353848], [139.094687104225, 36.3391329222661], [139.095030426979, 36.3386446291119], [139.09509, 36.338594], [139.095132350922, 36.3384977090478], [139.095973049338, 36.3372074010796], [139.096123602251, 36.3369802733018], [139.096258295375, 36.3367605402556], [139.096382260323, 36.3363612621896], [139.096736428315, 36.3351333150762], [139.096854, 36.334766], [139.096885466014, 36.3345809940497], [139.09703800305, 36.333997243884], [139.095829725266, 36.3338825297703], [139.094792526845, 36.333801600859], [139.092055040714, 36.3336814555098], [139.091925, 36.333642], [139.091703788065, 36.3336482406577], [139.088456915686, 36.3334810597641], [139.088212, 36.333426], [139.08809073579, 36.3334453085747], [139.087298084989, 36.3333550581783], [139.086672780751, 36.3332754862966], [139.0861705076, 36.3332409144149], [139.08577144146, 36.3332299855036], [139.085346946765, 36.3331999855036], [139.085750333655, 36.3319476719826], [139.085804, 36.331883], [139.085790799926, 36.3318132023866], [139.085866601513, 36.3315748367849], [139.086183801913, 36.3304923980879], [139.086238, 36.330422], [139.086270448739, 36.3302430979292], [139.086667065146, 36.3289286658311], [139.086904383267, 36.3289418413337], [139.087282224541, 36.3290084499871], [139.087450854171, 36.3290350586405], [139.087585, 36.32907], [139.08773306912, 36.3290762411393], [139.088250502325, 36.3291514932541], [139.088932716615, 36.3292469974836], [139.089468691488, 36.3292791103665], [139.089903791362, 36.3292870755585], [139.090538426944, 36.3292657190199], [139.090669, 36.329269], [139.090830668357, 36.329236571329], [139.09226203543, 36.3291376757529], [139.093617719296, 36.3290801367154], [139.093883374062, 36.3290648846007], [139.094290487159, 36.3290725976779], [139.094398, 36.3291]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_10\\u664215\\u5206_\\u7cfb\\u7d71105", "times": [1747617300000, 1747617302164, 1747617303017, 1747617308200, 1747617317381, 1747617324618, 1747617327253, 1747617345382, 1747617348286, 1747617358149, 1747617360000, 1747617364799, 1747617397720, 1747617418074, 1747617420000, 1747617421282, 1747617428308, 1747617435386, 1747617438693, 1747617453728, 1747617470519, 1747617478918, 1747617480000, 1747617481810, 1747617504192, 1747617508414, 1747617531098, 1747617538482, 1747617540000, 1747617545791, 1747617557160, 1747617561399, 1747617565793, 1747617587368, 1747617597735, 1747617600000, 1747617603641, 1747617638233, 1747617657202, 1747617660000, 1747617676327, 1747617698662, 1747617703961, 1747617708037, 1747617714177, 1747617718664, 1747617720000, 1747617722052, 1747617760497, 1747617776737, 1747617778725, 1747617780000, 1747617788973, 1747617817684, 1747617842690, 1747617881425, 1747617897246, 1747617900000, 1747617901382, 1747617938634, 1747617953381, 1747617957975, 1747617960000, 1747617961744, 1747617981362, 1747617987864, 1747617997327, 1747618018978, 1747618020000, 1747618021962, 1747618024645, 1747618041812, 1747618070558, 1747618077960, 1747618080000, 1747618085113, 1747618130740, 1747618138270, 1747618140000, 1747618141818, 1747618149409, 1747618157488, 1747618164659, 1747618189306, 1747618198748, 1747618200000, 1747618201538, 1747618205785, 1747618240579, 1747618257754, 1747618260000, 1747618262719, 1747618317503, 1747618320000, 1747618320000, 1747618320000, 1747618320000, 1747618325317, 1747618434890, 1747618440000, 1747618442313, 1747618496910, 1747618500000, 1747618503515, 1747618557538, 1747618560000, 1747618562942, 1747618574544, 1747618578356, 1747618602377, 1747618606512, 1747618617303, 1747618620000, 1747618627573, 1747618675667, 1747618681358, 1747618723189, 1747618730956, 1747618757176, 1747618771656, 1747618779813, 1747618787316, 1747618800000, 1747618806712, 1747618812141, 1747618814758, 1747618816761, 1747618836901, 1747618858101, 1747618860000, 1747618862810, 1747618887814, 1747618904345, 1747618969081, 1747618980000, 1747618982985, 1747618993927, 1747618998845, 1747619003343, 1747619009385, 1747619011822, 1747619038221, 1747619040000, 1747619042999, 1747619086386, 1747619097413, 1747619100000, 1747619123661, 1747619150051, 1747619192038, 1747619254002, 1747619270790, 1747619288099, 1747619296010, 1747619338788, 1747619388354, 1747619466445, 1747619496908, 1747619563529, 1747619580000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_10\\u664215\\u5206_\\u7cfb\\u7d71105", "popup": "\\u5e73\\u65e5_10\\u664215\\u5206_\\u7cfb\\u7d71105"}, "geometry": {"type": "LineString", "coordinates": [[139.193544, 36.376037], [139.193791696238, 36.375847386113], [139.19384312415, 36.3757468970472], [139.193864231954, 36.3750866416201], [139.192420501131, 36.3750107899051], [139.191283011703, 36.3749439600732], [139.190877766326, 36.3748707685467], [139.188215261688, 36.3740334236243], [139.187787749094, 36.3739015500094], [139.186351479258, 36.3734211523327], [139.186093, 36.373312], [139.185810140626, 36.3732456102968], [139.183910317868, 36.3726903031889], [139.182748807269, 36.3723190038283], [139.182654, 36.372262], [139.182445484516, 36.372215339744], [139.181334348929, 36.371882120965], [139.18022449707, 36.37152636407], [139.179695637272, 36.3713828578841], [139.177224034756, 36.3709239565386], [139.174467311178, 36.3703987156873], [139.173093204683, 36.3701202009675], [139.172929, 36.370056], [139.172716529416, 36.3700554090731], [139.170159563141, 36.3695674225822], [139.169675953996, 36.3694795598611], [139.167089600814, 36.3689679054182], [139.166247157674, 36.3688029947526], [139.166078, 36.368758], [139.165513164945, 36.3686682019372], [139.164410427502, 36.3684681724746], [139.163992819034, 36.3684224330705], [139.16355609084, 36.3684224330705], [139.161415914257, 36.3685337940285], [139.160386996918, 36.368580184449], [139.160165, 36.36855], [139.159938135801, 36.3685931430121], [139.157727295178, 36.3686884091218], [139.156516453236, 36.3687602433741], [139.156642, 36.368657], [139.154663163539, 36.3688051324162], [139.151947367227, 36.368903468047], [139.151303873825, 36.3689387341567], [139.150809645653, 36.3689734975095], [139.150068306362, 36.3690503317618], [139.149529531887, 36.3691221660142], [139.149371, 36.369093], [139.149160320244, 36.3691783197875], [139.144826220343, 36.3698501166318], [139.142991122447, 36.3701147285327], [139.142763018608, 36.3701224788061], [139.142617, 36.370129], [139.142208267942, 36.3702504652969], [139.140842205767, 36.3704723269244], [139.139649906153, 36.3706551304134], [139.137829500721, 36.3710342675465], [139.1370878142, 36.3711948194056], [139.136955, 36.371183], [139.136780293034, 36.3712623327862], [139.131578207016, 36.3724333485757], [139.129511856471, 36.3728759598536], [139.128873373664, 36.3730289417399], [139.128581, 36.373049], [139.128330868367, 36.3731596705842], [139.125236759894, 36.3738374656621], [139.124223590557, 36.3740958441421], [139.122782193723, 36.3745486354135], [139.119563659968, 36.3757364075515], [139.119397, 36.375744], [139.119174622928, 36.3758716629786], [139.118843078613, 36.3760096624781], [139.116674916573, 36.3768140215848], [139.113047757803, 36.3781673640932], [139.112120413219, 36.3785274341161], [139.111844, 36.378578], [139.111548053425, 36.3787349773816], [139.108683687003, 36.3798099282778], [139.108212667819, 36.379990192538], [139.108094, 36.380003], [139.107931269668, 36.3800852084934], [139.107199959477, 36.3803497916607], [139.106407541482, 36.380604372986], [139.105676347694, 36.3807623587322], [139.103130931669, 36.3811958375268], [139.102154024255, 36.381354953662], [139.102022, 36.381351], [139.101896065919, 36.38139677981], [139.101523944207, 36.381462978494], [139.098468319201, 36.3819804983747], [139.09696616509, 36.3822587127249], [139.096765, 36.382249], [139.096586458075, 36.3823200884101], [139.092663669025, 36.3829917697659], [139.092481, 36.382989], [139.092343203414, 36.3830365506088], [139.089669390564, 36.3835154667262], [139.089454, 36.383513], [139.089283735798, 36.3835718411834], [139.085549866725, 36.3842055440907], [139.085372, 36.384208], [139.085234999657, 36.3842514666115], [139.081836990373, 36.3848306179552], [139.081641, 36.384842], [139.081464513517, 36.3848926716632], [139.078646910983, 36.385365443269], [139.078517, 36.385351], [139.078364229764, 36.3854088502688], [139.077702305821, 36.3854620362693], [139.077610645762, 36.3853015850697], [139.076641549862, 36.3845104340677], [139.076418112025, 36.3844462676375], [139.075799454613, 36.3844514877156], [139.075652, 36.384414], [139.075494266118, 36.3844330704709], [139.074482838206, 36.3843914771636], [139.074369837538, 36.3843592025177], [139.073489838197, 36.3843276720178], [139.073333338852, 36.3842892025177], [139.072782473773, 36.3842591048612], [139.072778781971, 36.3840125753437], [139.072733106706, 36.383878699049], [139.072798529325, 36.383762398688], [139.072904, 36.383564], [139.072299792553, 36.3834730910698], [139.072271727735, 36.3838743791595], [139.072454973766, 36.383999251887], [139.072628734349, 36.3840465362867], [139.07255421517, 36.3855363732718], [139.072479113317, 36.387104688316], [139.072448, 36.387243], [139.072460106697, 36.3873452054921], [139.072410075618, 36.3882577198371], [139.072338939373, 36.3888588229485], [139.069835621234, 36.3900818956805], [139.06939, 36.390253], [139.069187693318, 36.3903830418832], [139.068377199266, 36.3907791902159], [139.067965771353, 36.3908675987508], [139.067578131806, 36.390897591411], [139.06706070058, 36.3909589670579], [139.066850089466, 36.3909487414533], [139.064589219742, 36.3906805536298], [139.064445, 36.390637], [139.064277501482, 36.3906487341135], [139.061863277926, 36.3904091951091], [139.061776049745, 36.3909039670579], [139.061748, 36.391019], [139.061734767336, 36.3914014780677], [139.061829694585, 36.3918212567325], [139.061708295114, 36.3924930820858], [139.060470044452, 36.3924510393823], [139.060161942591, 36.3925589931268], [139.059930223013, 36.3927669481482], [139.059811739545, 36.3928517204461], [139.059698620496, 36.3935374007438], [139.059544801712, 36.3943292071023], [139.059236696554, 36.3955671678543], [139.059136172741, 36.3960530236138], [139.058920779223, 36.3971161690065], [139.059219, 36.397003]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_10\\u664219\\u5206_\\u7cfb\\u7d71138", "times": [1747617540000, 1747617540000, 1747617540000, 1747617540000, 1747617540000, 1747617540000, 1747617542957, 1747617552815, 1747617558482, 1747617564417, 1747617598762, 1747617600000, 1747617601905, 1747617607861, 1747617611674, 1747617615115, 1747617618568, 1747617623483, 1747617629246, 1747617633020, 1747617635815, 1747617639059, 1747617641658, 1747617644620, 1747617653484, 1747617655171, 1747617658609, 1747617660000, 1747617660000, 1747617660000, 1747617660000, 1747617660000, 1747617660000, 1747617660000, 1747617660000, 1747617663991, 1747617672026, 1747617716679, 1747617720000, 1747617721916, 1747617761008, 1747617774609, 1747617780000, 1747617780000, 1747617780000, 1747617780000, 1747617780000, 1747617780000, 1747617780000, 1747617780000, 1747617780989, 1747617783927, 1747617786806, 1747617797063, 1747617803029, 1747617808483, 1747617810103, 1747617811692, 1747617818345, 1747617829384, 1747617831661, 1747617838931, 1747617840000, 1747617841911, 1747617847987, 1747617854122, 1747617879613, 1747617885824, 1747617898025, 1747617900000, 1747617901689, 1747617911010, 1747617920764, 1747617930380, 1747617936295, 1747617947155, 1747617958572, 1747617960000, 1747617961306, 1747617968686, 1747617973999, 1747617981276, 1747617987698, 1747617994537, 1747618002125, 1747618008866, 1747618013352, 1747618016029, 1747618020000, 1747618022921, 1747618033423, 1747618043930, 1747618077944, 1747618080000, 1747618086598, 1747618095293, 1747618108867, 1747618113504, 1747618118471, 1747618124211, 1747618130028, 1747618134086, 1747618137754, 1747618140000, 1747618140000, 1747618140000, 1747618140000, 1747618140000, 1747618140000, 1747618140000, 1747618140000, 1747618141207, 1747618147554, 1747618157527, 1747618162780, 1747618169086, 1747618173653, 1747618176576, 1747618198219, 1747618200000, 1747618201592, 1747618258223, 1747618260000, 1747618262498, 1747618314591, 1747618316484, 1747618320000, 1747618323430, 1747618325418, 1747618347865, 1747618367909, 1747618377722, 1747618380000, 1747618380000, 1747618380000, 1747618380000, 1747618382945, 1747618410891, 1747618458921, 1747618470488, 1747618497653, 1747618500000, 1747618500000, 1747618500000, 1747618500000, 1747618500000, 1747618500000, 1747618500000, 1747618503587, 1747618535998, 1747618547148, 1747618557870, 1747618560000, 1747618560000, 1747618560000, 1747618560000, 1747618564423, 1747618617807, 1747618620000, 1747618624303, 1747618675089, 1747618680000, 1747618682819, 1747618691043, 1747618737822, 1747618740000, 1747618741822, 1747618759947, 1747618797130, 1747618800000, 1747618814978, 1747619285448, 1747619303909, 1747619323842], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_10\\u664219\\u5206_\\u7cfb\\u7d71138", "popup": "\\u5e73\\u65e5_10\\u664219\\u5206_\\u7cfb\\u7d71138"}, "geometry": {"type": "LineString", "coordinates": [[139.118185, 36.429014], [139.118053809428, 36.4290362581146], [139.117773576622, 36.4291878388312], [139.117440166566, 36.4292639038476], [139.115925997913, 36.4295106975675], [139.115787, 36.429514], [139.115611949621, 36.4295618858933], [139.115013233348, 36.4296786347664], [139.114692767737, 36.429800215483], [139.114413351729, 36.4299972222062], [139.113141401983, 36.4313937950322], [139.113088, 36.431439], [139.112998778965, 36.4315616955436], [139.112656271689, 36.4319098081983], [139.112366826581, 36.4320720942235], [139.11207178227, 36.432167920853], [139.111752832532, 36.4321609164641], [139.111322747868, 36.4320429427963], [139.110905372865, 36.4317757262643], [139.110643682387, 36.4315894534052], [139.110415694291, 36.4314913883005], [139.110117269685, 36.4315141242187], [139.109898844419, 36.4315948081982], [139.109747474709, 36.4317790766688], [139.109352023648, 36.4323587694257], [139.109216513726, 36.4322965272873], [139.109121353673, 36.4320516223871], [139.109113, 36.431948], [139.10902444428, 36.4318599252416], [139.108320306048, 36.4303554139378], [139.108314, 36.430257], [139.108235524962, 36.4301702937614], [139.107351795458, 36.4281325908495], [139.107232028923, 36.4278572505436], [139.107214, 36.427758], [139.107128355642, 36.427665539637], [139.107040659212, 36.4274440847376], [139.106775703523, 36.4261697960339], [139.106785, 36.426074], [139.106733837782, 36.4259930816872], [139.106312147963, 36.424171056811], [139.106092323227, 36.4235510701943], [139.10604, 36.423299], [139.105961711453, 36.4232196741506], [139.105786784864, 36.4229608990194], [139.105280895974, 36.4224512982928], [139.105165911184, 36.4222122341022], [139.105112034198, 36.42196877881], [139.105125561976, 36.4216186689564], [139.105171, 36.421486], [139.1051730256, 36.4213921922495], [139.105206145309, 36.4211148122941], [139.105171626129, 36.4208432291202], [139.104700139356, 36.4199483312256], [139.104435767659, 36.4194244142907], [139.104309704165, 36.4189173109249], [139.10424719689, 36.4187721876189], [139.104123465407, 36.4186595486467], [139.103598102308, 36.4181928415526], [139.102790988551, 36.4173741127467], [139.102735247143, 36.4171629262713], [139.102755188942, 36.4164735960583], [139.1028, 36.416379], [139.102774081138, 36.4162968221224], [139.10280008709, 36.4160279988279], [139.102560903887, 36.4158363381212], [139.101536414467, 36.4150656823413], [139.101356941577, 36.4148313377552], [139.101063997792, 36.4143444475218], [139.10104, 36.414259], [139.10093665123, 36.4141640354025], [139.100549363529, 36.4135405569585], [139.099963241833, 36.4129850220309], [139.099310065242, 36.4124958032694], [139.099128259021, 36.4120781906608], [139.098857472643, 36.4112952713682], [139.098697239838, 36.4104506447942], [139.098706, 36.410344], [139.098672167086, 36.4102518337912], [139.098563129387, 36.4097161920842], [139.098521497111, 36.4093268182686], [139.098398931634, 36.4088007524653], [139.098243479914, 36.4083453868027], [139.098032518272, 36.4078720690861], [139.097734792742, 36.4073685234404], [139.097581207422, 36.4068883909356], [139.097624239829, 36.4065602840122], [139.097650012316, 36.4063644123495], [139.097612, 36.406074], [139.0975156684, 36.4059676690241], [139.097308555303, 36.4055245565731], [139.097163716016, 36.4050653146646], [139.096805116147, 36.4035586878638], [139.096802, 36.403466], [139.096685000403, 36.4031239880097], [139.096460977255, 36.402692883812], [139.096066226589, 36.4020363797424], [139.095927918385, 36.4018134820247], [139.095689550661, 36.4016284930885], [139.095359173012, 36.4014737500323], [139.09500908571, 36.4013405732431], [139.094763605548, 36.4012496768209], [139.094519757663, 36.4012564994176], [139.094377, 36.401221], [139.094246055941, 36.401233097832], [139.09337013861, 36.4012246962463], [139.093160810563, 36.4011858268706], [139.092909732519, 36.401100378506], [139.092256323122, 36.4008829027877], [139.091623671662, 36.4006542867324], [139.091524, 36.400586], [139.091426237798, 36.4005756609644], [139.090952069806, 36.4004065868318], [139.090218893214, 36.4001202320251], [139.089883501015, 36.3999041176326], [139.089494347572, 36.3996316385366], [139.08919335683, 36.3994537018545], [139.088973066483, 36.399379400776], [139.087210737108, 36.3992748667236], [139.087074, 36.399235], [139.086978785384, 36.3992500996974], [139.083535527425, 36.399068293087], [139.083437, 36.399032], [139.083259844219, 36.3990464787291], [139.079553846179, 36.3988664927501], [139.079559717207, 36.3987575521129], [139.079805, 36.398799], [139.080027743665, 36.3987612005706], [139.08001615901, 36.3988674167231], [139.078528192073, 36.3988195940307], [139.077205630553, 36.3987078359922], [139.07714009285, 36.3992314640939], [139.077091, 36.399347], [139.077103591527, 36.3994259897847], [139.076900093509, 36.4007622302407], [139.076855, 36.400865], [139.076851114012, 36.4009853882186], [139.076672339537, 36.4021188092297], [139.074248203942, 36.4019912445005], [139.073678059757, 36.4020971173826], [139.073070715174, 36.4011008268706], [139.073046, 36.401007], [139.072930890437, 36.4008699495667], [139.072417538583, 36.4000595752187], [139.072290075618, 36.3997175620703], [139.072202379188, 36.3993716967607], [139.072175906966, 36.3989448964238], [139.072214, 36.398728], [139.07219701477, 36.3986049174553], [139.072206694003, 36.397486098013], [139.072248909612, 36.3971027385708], [139.072411941359, 36.3967568510205], [139.072483, 36.396711], [139.072481328926, 36.396617993455], [139.072985584221, 36.3955132664518], [139.073057, 36.395433], [139.07308505909, 36.3953041836083], [139.073737535945, 36.3938164875693], [139.073781, 36.393762], [139.073813104068, 36.3936446731693], [139.074390595474, 36.3923058102549], [139.074473, 36.392186], [139.074500916241, 36.3920519417878], [139.074629196004, 36.391669212523], [139.073151531312, 36.3897559741612], [139.073116, 36.389655], [139.073037129195, 36.389609831756], [139.072522610675, 36.3889532188468], [139.072610424826, 36.3873601599962], [139.072657, 36.387243], [139.072620453927, 36.3871478730884], [139.072791415569, 36.3840221057418], [139.072735322315, 36.3839080177105], [139.072759229061, 36.3837768751115]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_10\\u664225\\u5206_\\u7cfb\\u7d71124", "times": [1747617900000, 1747617901791, 1747617903499, 1747617905018, 1747617914579, 1747617958692, 1747617960000, 1747617965935, 1747618007281, 1747618018986, 1747618020000, 1747618020979, 1747618028372, 1747618048126, 1747618050998, 1747618055799, 1747618066845, 1747618079093, 1747618080000, 1747618081397, 1747618111302, 1747618116945, 1747618129489, 1747618139116, 1747618140000, 1747618140900, 1747618145185, 1747618153877, 1747618162857, 1747618171458, 1747618179874, 1747618182781, 1747618187269, 1747618189874, 1747618191666, 1747618194224, 1747618199365, 1747618200000, 1747618201979, 1747618208840, 1747618221758, 1747618227148, 1747618239188, 1747618246821, 1747618257383, 1747618260000, 1747618267505, 1747618287615, 1747618310242, 1747618318036, 1747618320000, 1747618323378, 1747618328723, 1747618332345, 1747618350116, 1747618356916, 1747618360479, 1747618368711, 1747618378414, 1747618380000, 1747618381685, 1747618389964, 1747618434543, 1747618438743, 1747618440000, 1747618442773, 1747618491023, 1747618496604, 1747618500000, 1747618501758, 1747618507122, 1747618557996, 1747618560000, 1747618560000, 1747618560000, 1747618560000, 1747618560981, 1747618618591, 1747618620000, 1747618620814, 1747618628441, 1747618660121, 1747618677075, 1747618680000, 1747618681059, 1747618691452, 1747618706512, 1747618738208, 1747618740000, 1747618741369, 1747618777458, 1747618788995, 1747618798965, 1747618800000, 1747618800000, 1747618800000, 1747618800000, 1747618805423, 1747618857665, 1747618860000, 1747618861796, 1747618917976, 1747618920000, 1747618927785, 1747618953517, 1747619015411, 1747619078018, 1747619088537, 1747619094796, 1747619100000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_10\\u664225\\u5206_\\u7cfb\\u7d71124", "popup": "\\u5e73\\u65e5_10\\u664225\\u5206_\\u7cfb\\u7d71124"}, "geometry": {"type": "LineString", "coordinates": [[139.105525, 36.273268], [139.105525094386, 36.2733843124108], [139.105594870842, 36.2734797286104], [139.105712382747, 36.2735055523133], [139.106112031561, 36.2740353313107], [139.108260954176, 36.2763101506978], [139.108293, 36.276391], [139.108572434355, 36.2766620266652], [139.110607650632, 36.2748361825029], [139.111114353681, 36.2742736723767], [139.111163, 36.274228], [139.111190502499, 36.2741396734526], [139.111574991918, 36.2735266291309], [139.112543735972, 36.2718654418121], [139.112722743912, 36.2716410564559], [139.113087874865, 36.2713065636052], [139.113606706881, 36.2722440508311], [139.114128804768, 36.2733017396322], [139.114145, 36.273385], [139.114219300139, 36.2734836547367], [139.115372650016, 36.2757740006809], [139.115646585203, 36.2761847149741], [139.116259762454, 36.2770956978859], [139.116595271056, 36.2778441458709], [139.116602, 36.277917], [139.116699410608, 36.2780280837474], [139.116916552146, 36.2786520756035], [139.117314103072, 36.2799272091525], [139.117671886144, 36.2812546726021], [139.118075150697, 36.2825144029115], [139.118471651361, 36.2837465541989], [139.118599580596, 36.2841740871899], [139.118924711549, 36.284799889904], [139.119014973455, 36.2851873038377], [139.119010425175, 36.2854583792925], [139.11897928827, 36.2858445530247], [139.118939638138, 36.2866217102037], [139.118925, 36.286717], [139.118953165915, 36.2868411539268], [139.118993515783, 36.2872774661889], [139.119066402027, 36.2880991782874], [139.119011824646, 36.2884400856347], [139.118791300174, 36.2891869159347], [139.118684361681, 36.2896659117682], [139.118631767104, 36.2903381577422], [139.11863, 36.290505], [139.118634566046, 36.2908629637369], [139.118624886813, 36.2918220508925], [139.118588035622, 36.2929008180633], [139.118559464193, 36.2932718581741], [139.118533, 36.293363], [139.118545120277, 36.2936154589189], [139.118567161282, 36.2940147126482], [139.118565645409, 36.294285526672], [139.118510135487, 36.2956135086826], [139.118498590513, 36.2961218669617], [139.118453226095, 36.296385748421], [139.118162147391, 36.2969543653103], [139.117805996595, 36.2976201837617], [139.117729, 36.297721], [139.117714918551, 36.2978274451558], [139.117474802148, 36.2983162079231], [139.113977316017, 36.29839493829], [139.113981866275, 36.2981281727762], [139.114002, 36.29805], [139.113968222095, 36.2979665879335], [139.113921458866, 36.2964400418003], [139.113703966141, 36.2964540437822], [139.113571571429, 36.296462], [139.113451838493, 36.2964770143121], [139.113083101692, 36.2964978080217], [139.109578728676, 36.2965784845118], [139.109442, 36.296563], [139.109350631431, 36.2965872487513], [139.106562060002, 36.2966572487513], [139.106479142857, 36.296642], [139.106382585133, 36.2966592782214], [139.100582249772, 36.2967933070308], [139.100441, 36.296783], [139.100348897918, 36.2968042480907], [139.099453037469, 36.2968282166387], [139.099613739183, 36.2998395594324], [139.099672397913, 36.301451847396], [139.099664, 36.30173], [139.099688955459, 36.3017934527572], [139.099719390651, 36.3024461459765], [139.099726971997, 36.3033926100415], [139.102186560631, 36.3033268033454], [139.102325, 36.303338], [139.102438688278, 36.3033131570616], [139.105540957473, 36.3032233099331], [139.106532903262, 36.303201170237], [139.10739004612, 36.3031791396627], [139.107479, 36.303179], [139.107591794799, 36.3031718470951], [139.10947575513, 36.3030999693922], [139.109437095238, 36.3031273333333], [139.109716454206, 36.3030963231084], [139.112430733327, 36.3030185065542], [139.112552, 36.303023], [139.112653239942, 36.3030082445609], [139.115868625548, 36.3029240741064], [139.115984, 36.302933], [139.116131948961, 36.3029090305408], [139.116630607692, 36.302911847095], [139.116627691689, 36.3038827421969], [139.115414515097, 36.3038971523334], [139.115415214833, 36.3040621523334], [139.115536380839, 36.3040666283468], [139.115536, 36.303985]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_10\\u664229\\u5206_\\u7cfb\\u7d71121", "times": [1747618140000, 1747618143171, 1747618156174, 1747618168579, 1747618171221, 1747618174509, 1747618183745, 1747618190840, 1747618194057, 1747618200000, 1747618212910, 1747618249150, 1747618260000, 1747618260000, 1747618260000, 1747618260000, 1747618281659, 1747618300638, 1747618321236, 1747618336339, 1747618368177, 1747618380000, 1747618387961, 1747618415067, 1747618437757, 1747618440000, 1747618463175, 1747618665981, 1747618679979, 1747618700286, 1747618721705, 1747618741414, 1747618768504, 1747618779883, 1747618800000, 1747618800000, 1747618800000, 1747618800000, 1747618800000, 1747618800000, 1747618806585, 1747618810921, 1747618839238, 1747618864491, 1747618906356, 1747618916640, 1747618920000, 1747618923113, 1747618937486, 1747618978775, 1747618980000, 1747618980000, 1747618980000, 1747618980000, 1747618983215, 1747619000850, 1747619006067, 1747619037284, 1747619040000, 1747619044557, 1747619070771, 1747619100000, 1747619106683, 1747619154193, 1747619160000, 1747619163522, 1747619184627, 1747619190938, 1747619217136, 1747619220000, 1747619227312, 1747619234974, 1747619240160, 1747619245626, 1747619248337, 1747619253711, 1747619278331, 1747619280000, 1747619288168, 1747619341995, 1747619373684, 1747619408934, 1747619433264, 1747619477089, 1747619491731, 1747619509712, 1747619520000, 1747619520000, 1747619520000, 1747619520000, 1747619520000, 1747619538230, 1747619547906, 1747619555852, 1747619577647, 1747619580000, 1747619583518, 1747619590578, 1747619613344, 1747619635650, 1747619639549, 1747619640000, 1747619640648, 1747619642759, 1747619648287, 1747619654921, 1747619663616, 1747619670033, 1747619679319, 1747619682245, 1747619684697, 1747619690137, 1747619691692, 1747619694659, 1747619699560, 1747619700000, 1747619700000, 1747619700000, 1747619700000, 1747619700000, 1747619701098, 1747619725820, 1747619749617, 1747619758851, 1747619760000, 1747619761489, 1747619782753, 1747619786510, 1747619790085, 1747619796087, 1747619814468, 1747619820000, 1747619822267, 1747619829512, 1747619841464, 1747619851701, 1747619878635, 1747619880000, 1747619883561, 1747619935909, 1747619940000, 1747619943236, 1747619964198, 1747619980775, 1747619993976, 1747620004433, 1747620015591, 1747620057478, 1747620060000, 1747620060000, 1747620060000, 1747620060000, 1747620060000, 1747620064732, 1747620100148, 1747620105186, 1747620113376, 1747620117015, 1747620120000, 1747620120000, 1747620120000, 1747620120000, 1747620120000, 1747620120000, 1747620120000, 1747620120000, 1747620122667, 1747620145671, 1747620167409, 1747620171674, 1747620178195, 1747620180000, 1747620181595, 1747620188832, 1747620204583, 1747620216505, 1747620234630, 1747620237293, 1747620240000, 1747620240784, 1747620243029, 1747620254772, 1747620269290, 1747620276325, 1747620277046, 1747620283396, 1747620290619, 1747620299315, 1747620300000, 1747620301168, 1747620314962, 1747620358776, 1747620360000, 1747620362517, 1747620390804, 1747620408141, 1747620429639, 1747620450754, 1747620458607, 1747620467353, 1747620477823, 1747620480000, 1747620481559, 1747620485965, 1747620510394, 1747620519820, 1747620528131, 1747620540000, 1747620549648, 1747620555802, 1747620561685, 1747620578143, 1747620598571, 1747620600000, 1747620602095, 1747620610024, 1747620615232, 1747620658127, 1747620660000, 1747620680804, 1747620886170, 1747620920599, 1747620941390, 1747620960000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_10\\u664229\\u5206_\\u7cfb\\u7d71121", "popup": "\\u5e73\\u65e5_10\\u664229\\u5206_\\u7cfb\\u7d71121"}, "geometry": {"type": "LineString", "coordinates": [[139.059257, 36.395815], [139.059270672081, 36.3954753068441], [139.059596227646, 36.3941070167822], [139.059887268648, 36.3927986834488], [139.060138112568, 36.3926011050108], [139.060545344046, 36.3924756581939], [139.061768316273, 36.3925195908254], [139.061910937972, 36.3917680748688], [139.061765787179, 36.3914439755871], [139.061917, 36.390819], [139.061943590092, 36.3904756280848], [139.063123180044, 36.3906275944005], [139.06347, 36.390698], [139.065312095406, 36.3908819951024], [139.066081072925, 36.390957601485], [139.066303, 36.391013], [139.067029407592, 36.3910312326963], [139.067661710503, 36.3909700234733], [139.068333039874, 36.3908371404991], [139.068796673475, 36.3906716865977], [139.069706098084, 36.3902184986611], [139.070069, 36.390089], [139.070587067668, 36.3897766469739], [139.072480785933, 36.388871115803], [139.072613729059, 36.3873859244999], [139.072657, 36.387243], [139.072621815037, 36.3869571255136], [139.072755613981, 36.3844454008148], [139.072777578263, 36.3842727816293], [139.072766226414, 36.3840212126052], [139.072667256837, 36.3837680460509], [139.072831571652, 36.3835630065444], [139.072425546519, 36.3834923880745], [139.072265702602, 36.3835488963651], [139.072197, 36.383792], [139.072289027334, 36.3839720323823], [139.07261291424, 36.3840619674873], [139.072583486993, 36.3842736440307], [139.070979447301, 36.3842186539073], [139.070716, 36.384125], [139.070444676136, 36.3841687811798], [139.070263374547, 36.3841542420104], [139.070314567675, 36.3831931748125], [139.070494705237, 36.3823477374193], [139.072253111322, 36.3823799243851], [139.072279230379, 36.3820311928442], [139.072316, 36.381921], [139.072275226411, 36.3817295447412], [139.072335673501, 36.3808339675651], [139.072468034613, 36.3782596753776], [139.072488, 36.378185], [139.072481678794, 36.3780634928244], [139.07254694599, 36.376863266178], [139.072584, 36.376742], [139.072534973106, 36.3766400161632], [139.072568520065, 36.3760406020472], [139.072562805779, 36.3758631600947], [139.072847158955, 36.3748262148956], [139.072906, 36.374747], [139.072895788585, 36.3746384463335], [139.073070365306, 36.3740283750264], [139.073303, 36.373356], [139.073406341498, 36.3729142209198], [139.073640198644, 36.369723555249], [139.073718, 36.369338], [139.073722530656, 36.3690647723321], [139.073834211873, 36.3674300564334], [139.07388400553, 36.3669420968556], [139.076396498929, 36.3669764915005], [139.076668, 36.36701], [139.077320422218, 36.3669838126897], [139.078004774075, 36.3669965027487], [139.078466037303, 36.3669617344164], [139.078932856097, 36.3668456592953], [139.079146385193, 36.3667532323924], [139.079521894455, 36.366511334058], [139.081311282022, 36.365477083046], [139.081448, 36.365429], [139.08153961537, 36.3653486637464], [139.082263579657, 36.3649294065477], [139.082627542627, 36.3646242749457], [139.082952595538, 36.3642327383123], [139.083145558504, 36.3639470832035], [139.083372147789, 36.3633901170829], [139.083141010884, 36.3633316075762], [139.083092497657, 36.3635689583984], [139.083218, 36.363476], [139.083241807182, 36.3633803427552], [139.083356792632, 36.3634468377844], [139.083884215916, 36.3622411256014], [139.084388, 36.361156], [139.084850394494, 36.3600189127137], [139.085082812489, 36.3594119880879], [139.085242774128, 36.3589065435092], [139.085745824396, 36.3575345916174], [139.085825, 36.357394], [139.085884210641, 36.3571436319018], [139.086046115403, 36.3566492011493], [139.086611245037, 36.3550643536985], [139.087178784725, 36.3535148629043], [139.087270563164, 36.3532423387193], [139.0873, 36.35322], [139.087307880625, 36.3531142808382], [139.087429746366, 36.3527841357286], [139.087773535391, 36.3519256785506], [139.088182630632, 36.3508947352456], [139.088744028784, 36.3495499832363], [139.089151141221, 36.3485556475598], [139.089753355511, 36.3471203681178], [139.089928865433, 36.3466643503411], [139.090084899826, 36.3462844261661], [139.090432187527, 36.3454420604015], [139.090559417686, 36.3452100950355], [139.090850495731, 36.3447868403018], [139.091333876686, 36.3440890148523], [139.091415, 36.34406], [139.091438482508, 36.3439540834348], [139.092386818493, 36.3425254579724], [139.092868916381, 36.3418329259698], [139.092928, 36.341788], [139.092932939529, 36.3417212591254], [139.09382879734, 36.3404033353848], [139.094687104225, 36.3391329222661], [139.095030426979, 36.3386446291119], [139.09509, 36.338594], [139.095132350922, 36.3384977090478], [139.095973049338, 36.3372074010796], [139.096123602251, 36.3369802733018], [139.096258295375, 36.3367605402556], [139.096382260323, 36.3363612621896], [139.096736428315, 36.3351333150762], [139.096854, 36.334766], [139.096885466014, 36.3345809940497], [139.09703800305, 36.333997243884], [139.095829725266, 36.3338825297703], [139.094792526845, 36.333801600859], [139.092055040714, 36.3336814555098], [139.091925, 36.333642], [139.091703788065, 36.3336482406577], [139.088456915686, 36.3334810597641], [139.088212, 36.333426], [139.08809073579, 36.3334453085747], [139.087298084989, 36.3333550581783], [139.086672780751, 36.3332754862966], [139.0861705076, 36.3332409144149], [139.08577144146, 36.3332299855036], [139.085346946765, 36.3331999855036], [139.085750333655, 36.3319476719826], [139.085804, 36.331883], [139.085790799926, 36.3318132023866], [139.085866601513, 36.3315748367849], [139.086183801913, 36.3304923980879], [139.086238, 36.330422], [139.086270448739, 36.3302430979292], [139.086667065146, 36.3289286658311], [139.086904383267, 36.3289418413337], [139.087282224541, 36.3290084499871], [139.087450854171, 36.3290350586405], [139.087585, 36.32907], [139.08773306912, 36.3290762411393], [139.088250502325, 36.3291514932541], [139.088932716615, 36.3292469974836], [139.089468691488, 36.3292791103665], [139.089903791362, 36.3292870755585], [139.090538426944, 36.3292657190199], [139.090669, 36.329269], [139.090830668357, 36.329236571329], [139.09226203543, 36.3291376757529], [139.093617719296, 36.3290801367154], [139.093883374062, 36.3290648846007], [139.094290487159, 36.3290725976779], [139.094398, 36.3291], [139.094567687558, 36.3290693803712], [139.095356371433, 36.3290824236381], [139.097071354245, 36.3291483540222], [139.098368968648, 36.3292043982611], [139.098778288781, 36.3276404850624], [139.098883594998, 36.3274216826283], [139.099082, 36.327245], [139.09918411881, 36.3271534765226], [139.099533855585, 36.326942636826], [139.101453268956, 36.325944956186], [139.103828423075, 36.3247144812685], [139.104969525604, 36.3241060182376], [139.105076932346, 36.3240333058024], [139.106110048757, 36.3234879670875], [139.107296052072, 36.3228813564136], [139.108715757108, 36.3221404984968], [139.108835, 36.322093], [139.108950741899, 36.3220099029378], [139.110473187016, 36.3211943738941], [139.115354807423, 36.3186608691748], [139.115486, 36.318584], [139.115593990626, 36.3185045892717], [139.116905707566, 36.3177082532001], [139.117724946992, 36.3172371855937], [139.118723778349, 36.3166340815843], [139.119705350445, 36.3160423254619], [139.120081209575, 36.3158344523353], [139.120452755209, 36.315555292863], [139.120462433123, 36.3150642123102], [139.120497, 36.314966], [139.12042231672, 36.3148496029091], [139.120423017115, 36.3144790291636], [139.120546634832, 36.3124269863271], [139.120568790262, 36.311634499075], [139.120520393437, 36.3109366134349], [139.119288, 36.3109], [139.118136141439, 36.3109482065688], [139.117402614321, 36.3109937405288], [139.116702441036, 36.3110470692902], [139.116744891428, 36.3094551776963], [139.116786407302, 36.3074789505127], [139.116823, 36.307344], [139.116798885476, 36.3072282203071], [139.116800984682, 36.3067838933955], [139.116777777672, 36.3064926404303], [139.116696261798, 36.3040897065262], [139.116705, 36.303985], [139.116693230051, 36.3038802746306], [139.115411015761, 36.3038995977725], [139.115417078596, 36.3040735497993], [139.115546759807, 36.3040786589211], [139.115536, 36.303985]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_10\\u664230\\u5206_\\u7cfb\\u7d71144", "times": [1747618200000, 1747618202424, 1747618205361, 1747618257805, 1747618260000, 1747618262315, 1747618298874, 1747618318340, 1747618320000, 1747618322061, 1747618344370, 1747618369725, 1747618378194, 1747618380000, 1747618380000, 1747618380000, 1747618380000, 1747618382805, 1747618435475, 1747618440000, 1747618442548, 1747618474278, 1747618497900, 1747618500000, 1747618500000, 1747618500000, 1747618500000, 1747618502900, 1747618512768, 1747618516642, 1747618525006, 1747618534386, 1747618560000, 1747618561954, 1747618573080, 1747618579384, 1747618604801, 1747618618711, 1747618620000, 1747618620000, 1747618620000, 1747618620000, 1747618622428, 1747618633218, 1747618656014, 1747618674232, 1747618676470, 1747618680000, 1747618685203, 1747618689856, 1747618730427, 1747618770860, 1747618795186, 1747618800000, 1747618802208, 1747618858172, 1747618860000, 1747618861436, 1747618876334, 1747618883546, 1747618887184, 1747618891849, 1747618898809, 1747618903950, 1747618912280, 1747618918402, 1747618920000, 1747618923712, 1747618954156, 1747618959123, 1747618977256, 1747618980000, 1747618987356, 1747618997472, 1747619002903, 1747619007166, 1747619011333, 1747619023185, 1747619029445, 1747619033581, 1747619037950, 1747619040000, 1747619043074, 1747619069422, 1747619079903, 1747619097391, 1747619100000, 1747619102620, 1747619105127, 1747619107171, 1747619110255, 1747619113704, 1747619117922, 1747619124335, 1747619130125, 1747619136177, 1747619144902, 1747619151098, 1747619159127, 1747619160000, 1747619160000, 1747619160000, 1747619160000, 1747619160000, 1747619160000, 1747619160000, 1747619160000, 1747619160000, 1747619161432, 1747619172659, 1747619178638, 1747619189751, 1747619199415, 1747619206862, 1747619217722, 1747619220000, 1747619223253, 1747619226092, 1747619227956, 1747619236984, 1747619242253, 1747619246453, 1747619248721, 1747619251987, 1747619256623, 1747619266253, 1747619274452, 1747619278754, 1747619280000, 1747619286316, 1747619293401, 1747619297900, 1747619302834, 1747619315813, 1747619323629, 1747619340000, 1747619341935, 1747619398186, 1747619400000, 1747619400000, 1747619400000, 1747619400000, 1747619400000, 1747619401804, 1747619436131, 1747619458317, 1747619460000, 1747619464008, 1747619516857, 1747619520000, 1747619521094, 1747619526169, 1747619527192, 1747619537193, 1747619540215, 1747619543652, 1747619546441, 1747619556178, 1747619559498, 1747619564256, 1747619568816, 1747619572569, 1747619578901, 1747619580000, 1747619581842, 1747619622594, 1747619629651, 1747619636080, 1747619640000, 1747619643693, 1747619687904, 1747619700000, 1747619701038, 1747619703719, 1747619710639, 1747619714464, 1747619718331, 1747619721064, 1747619729993, 1747619735641, 1747619741259, 1747619745361, 1747619752753, 1747619759073, 1747619760000, 1747619764962, 1747619823843, 1747619844450, 1747619865972, 1747619891444, 1747620008102, 1747620027352, 1747620036541, 1747620041791, 1747620055980, 1747620074192, 1747620080224, 1747620097216, 1747620105664, 1747620115119], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_10\\u664230\\u5206_\\u7cfb\\u7d71144", "popup": "\\u5e73\\u65e5_10\\u664230\\u5206_\\u7cfb\\u7d71144"}, "geometry": {"type": "LineString", "coordinates": [[139.072342, 36.384085], [139.072460425486, 36.38398089795], [139.072648034613, 36.3840606725959], [139.07248016292, 36.3871176437477], [139.072448, 36.387243], [139.072467684746, 36.3873415230417], [139.072445526679, 36.3889175063718], [139.072959345463, 36.3896466520092], [139.072981, 36.389716], [139.073086692025, 36.389768026693], [139.073778467827, 36.3906951097604], [139.074604706585, 36.3917285329458], [139.074409604073, 36.3921080798945], [139.07436, 36.392186], [139.074368787934, 36.3922530820858], [139.073835611343, 36.3934378556375], [139.073759, 36.393524], [139.073766807109, 36.3935917175436], [139.073229432106, 36.3947921550034], [139.073142, 36.394876], [139.07315281438, 36.3949730549069], [139.072672932761, 36.3961227632447], [139.072280979718, 36.3969686625439], [139.072225, 36.397035], [139.072159463844, 36.3974268197045], [139.072125061727, 36.3987815067711], [139.072096, 36.398861], [139.072114332891, 36.3989819358238], [139.072150484347, 36.3993953243097], [139.072191650352, 36.3995546170266], [139.072283311729, 36.3998979945715], [139.072492990303, 36.4002536433234], [139.073057, 36.401228], [139.073171936743, 36.4013497629632], [139.073653570998, 36.4021296768209], [139.074248205261, 36.402015965429], [139.076707446006, 36.4021330234561], [139.076881201314, 36.4010522011026], [139.076919, 36.400956], [139.076924466525, 36.400815407644], [139.07711828531, 36.3994373541812], [139.077166, 36.399347], [139.077168313751, 36.3992328201289], [139.077225339546, 36.3987276038782], [139.078544637173, 36.3988335391606], [139.079602710593, 36.3988789962554], [139.07960212726, 36.3987737642027], [139.079805, 36.398799], [139.079968307157, 36.398796267708], [139.079951397105, 36.3989135391606], [139.081223578998, 36.3989598894133], [139.082489467228, 36.3990330680449], [139.083251214589, 36.3990755645396], [139.083399, 36.399101], [139.083533428219, 36.3990860146238], [139.086963041998, 36.3992898667236], [139.087074, 36.399304], [139.087190096234, 36.3992891761638], [139.088405953385, 36.3993623290964], [139.088993124684, 36.3994109814231], [139.089265077068, 36.3995089348284], [139.089562102203, 36.3997027866825], [139.089988340301, 36.4000082191838], [139.090333412394, 36.4002027448746], [139.090958833694, 36.4004220351964], [139.091416558565, 36.4005867915887], [139.091524, 36.400647], [139.091683146531, 36.4007124641357], [139.093038012941, 36.4011613043734], [139.093263667047, 36.4012246865336], [139.094135268903, 36.4012494526386], [139.094265, 36.401269], [139.094769203431, 36.4012535041523], [139.095388561238, 36.4015064793167], [139.095710191536, 36.4016584267057], [139.095914739816, 36.4018273300711], [139.096056079766, 36.4020281567941], [139.096398237174, 36.4026242982367], [139.096573280166, 36.4029412708946], [139.096661559928, 36.4031592237471], [139.096716603579, 36.4033973750923], [139.096743, 36.403509], [139.096796719982, 36.4036243840738], [139.097048846969, 36.4046609367009], [139.097124765619, 36.4050766796753], [139.097348905171, 36.405754066296], [139.097387, 36.405854], [139.097505872765, 36.4060394617547], [139.097573161125, 36.4062316985509], [139.097613977263, 36.4063912215485], [139.097596600941, 36.4066366162088], [139.097570828454, 36.4069106951409], [139.097645114168, 36.4072415290148], [139.097902723296, 36.4077082661984], [139.098142139304, 36.4081271945278], [139.098315550019, 36.4085887427382], [139.098482546714, 36.4092709147746], [139.098554499757, 36.4097612536504], [139.098659922376, 36.4103954463545], [139.098658, 36.410465], [139.098747385341, 36.410900116675], [139.098827384682, 36.4113145223217], [139.099040795397, 36.4119103089559], [139.099304585081, 36.4125422414548], [139.099926042094, 36.4129913879014], [139.100573271594, 36.4136045339731], [139.10088440652, 36.4141497183992], [139.100933, 36.414238], [139.100999624775, 36.4142866896079], [139.101316825175, 36.4147947803242], [139.101507378088, 36.4150557641766], [139.102010351634, 36.4154457096198], [139.102466909839, 36.4157678951836], [139.102769534177, 36.4160553522391], [139.102749824524, 36.4166056167871], [139.102708, 36.416716], [139.102719970027, 36.4170036694144], [139.102711106932, 36.4172546981187], [139.10279962016, 36.4174032717946], [139.103410931669, 36.4180306668609], [139.103784690933, 36.4183856351632], [139.104096526914, 36.4186586167686], [139.104246031544, 36.418818771407], [139.10432719623, 36.4191000975944], [139.104432852315, 36.4195012800126], [139.104858741205, 36.4202804659738], [139.105170693588, 36.4209605296945], [139.105153433669, 36.4213408253961], [139.105117, 36.421447], [139.105094541473, 36.4217393523831], [139.105096290812, 36.4220679147566], [139.10516847732, 36.4222682406235], [139.105292208802, 36.4224740322452], [139.105730342402, 36.4229607201741], [139.105973023622, 36.423265536484], [139.106201, 36.424002], [139.106261302725, 36.4240777152423], [139.106849989237, 36.4266507451235], [139.106855, 36.426735], [139.106902933682, 36.426811132795], [139.107051038181, 36.4275303679175], [139.107134303393, 36.4276893860327], [139.107134, 36.427779], [139.107199376144, 36.4278429342774], [139.107843106308, 36.4293324912873], [139.10827086028, 36.4302918279725], [139.108277, 36.430369], [139.108339897979, 36.4304705803127], [139.109001820602, 36.4318694534052], [139.109022, 36.431957], [139.109078787536, 36.4320264577939], [139.109260828541, 36.4323834621826], [139.109357038198, 36.4323807956349], [139.109825724711, 36.4317208433077], [139.110021292174, 36.4315538645255], [139.110341292834, 36.4315152800346], [139.110594819952, 36.4315707518709], [139.111278317969, 36.432064383912], [139.111560648003, 36.4321727306531], [139.11200601308, 36.4322116699372], [139.112413940997, 36.4321036267758], [139.112682744571, 36.4319182500394], [139.113038778305, 36.4315318601369], [139.113126, 36.431487], [139.11316262619, 36.4314069552368], [139.114561923817, 36.4298955341143], [139.114903846441, 36.4297209441865], [139.115257665225, 36.4296377379064], [139.115481, 36.429618], [139.115649850415, 36.4295848791702], [139.117683318013, 36.4292310787271], [139.118185, 36.429014], [139.118216724112, 36.428934721139], [139.118403196335, 36.4287811757202], [139.11888062822, 36.4283817330729], [139.119200512477, 36.4282161362683], [139.119553046875, 36.4280931047068], [139.119820685763, 36.4280569505496], [139.120689720824, 36.4279143438889], [139.121245171885, 36.4278518649608], [139.121787794244, 36.427747120968], [139.12215164081, 36.4275990425938], [139.122793155365, 36.4273107503563], [139.123335312113, 36.4270551509101], [139.123422285714, 36.427031], [139.123534028386, 36.4269697231835], [139.124906038312, 36.4263010002092], [139.125361896123, 36.4260371021367], [139.125787783693, 36.4257122245138], [139.126223234754, 36.4252764467751], [139.128107781716, 36.4232120734262], [139.128509876306, 36.4234833359962], [139.128716873, 36.4235967156544], [139.128858447075, 36.4236121459611], [139.129238971547, 36.423559411763], [139.129360836629, 36.4239476143573], [139.129446667317, 36.4240606645937], [139.129751390201, 36.4243417022711], [139.129765267187, 36.4245271325778], [139.129510573403, 36.4245566260922]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_10\\u664230\\u5206_\\u7cfb\\u7d71159", "times": [1747618200000, 1747618204859, 1747618209788, 1747618258838, 1747618260000, 1747618264490, 1747618307998, 1747618414944, 1747618440000, 1747618443851, 1747618476686, 1747618514019, 1747618519172, 1747618556822, 1747618560000, 1747618565753, 1747618644982, 1747618677111, 1747618680000, 1747618688872, 1747618830591, 1747618852042, 1747618860000, 1747618867680, 1747618880836, 1747618909676, 1747618957081, 1747618980000, 1747618982177, 1747619019584, 1747619040000, 1747619061300, 1747619089539, 1747619100000, 1747619106718, 1747619140286, 1747619150098, 1747619154738, 1747619163324, 1747619182119, 1747619212899, 1747619217638, 1747619220000, 1747619221582, 1747619223455, 1747619242817, 1747619251058, 1747619255521, 1747619259492, 1747619275509, 1747619280000, 1747619282061, 1747619294450, 1747619332398, 1747619340000, 1747619364325, 1747619420480, 1747619487627, 1747619553809, 1747619562258, 1747619582081, 1747619616600, 1747619621400, 1747619640000, 1747619655473, 1747619670396, 1747619692414, 1747619712057, 1747619722217, 1747619741386, 1747619760000, 1747619789072, 1747619820000, 1747619835796, 1747619838589, 1747619878504, 1747619880000, 1747619882750, 1747619929523, 1747620021182, 1747620060000, 1747620079385, 1747620119215, 1747620120000, 1747620135216, 1747620145537, 1747620178970, 1747620180000, 1747620274878, 1747620300000, 1747620314557, 1747620332405, 1747620333516, 1747620334248, 1747620339804, 1747620346668, 1747620359112, 1747620360000, 1747620425746, 1747620521830, 1747620655970, 1747620664558, 1747620703983, 1747620709802, 1747620720000, 1747620725611, 1747620728211, 1747620737103, 1747620741038, 1747620809012, 1747620857567, 1747620900000, 1747620901420, 1747620938939, 1747620960000, 1747621017799, 1747621020000, 1747621022566, 1747621084232, 1747621135460, 1747621140000, 1747621200000, 1747621247003, 1747621250189, 1747621293680, 1747621320000, 1747621381953, 1747621433148, 1747621440000, 1747621443654, 1747621481445, 1747621497657, 1747621500000, 1747621509340, 1747621577158, 1747621586697, 1747621642179, 1747621657162, 1747621690036, 1747621707105, 1747621722694, 1747621749193, 1747621783980], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_10\\u664230\\u5206_\\u7cfb\\u7d71159", "popup": "\\u5e73\\u65e5_10\\u664230\\u5206_\\u7cfb\\u7d71159"}, "geometry": {"type": "LineString", "coordinates": [[139.072229, 36.383658], [139.072268851411, 36.3839664349553], [139.072645294533, 36.3840460053511], [139.07248016292, 36.3871735546112], [139.072448, 36.387243], [139.072461388446, 36.3873494849729], [139.072393516094, 36.3883851664957], [139.069258128509, 36.3881156956785], [139.069154, 36.388707], [139.069151540544, 36.3888011792427], [139.069023493587, 36.3895975545407], [139.068857546496, 36.3905007494777], [139.068994457207, 36.3905610023924], [139.069972880494, 36.3900896260603], [139.070069, 36.390089], [139.070196203248, 36.3899764425159], [139.072431652331, 36.3889077982119], [139.072969024696, 36.389640060237], [139.072981, 36.389716], [139.073093572317, 36.3897909779587], [139.07436587259, 36.3913687365602], [139.07459584283, 36.3911526109838], [139.074615, 36.391048], [139.074442606059, 36.3909860195186], [139.074161440053, 36.3911148841558], [139.074565171536, 36.3915855727728], [139.075629776698, 36.3919671694091], [139.076085, 36.392235], [139.07622102605, 36.3922910367806], [139.078443883193, 36.3934169461704], [139.07924, 36.392455], [139.07955256443, 36.3920205793467], [139.080126790624, 36.3915426191736], [139.080391, 36.391419], [139.080514544596, 36.3912142073421], [139.081557924892, 36.3904496536581], [139.081942996325, 36.3905671377552], [139.082136581644, 36.3905837316669], [139.08249179924, 36.390631686546], [139.083153139191, 36.390284641425], [139.084305907054, 36.3907548645831], [139.084385555867, 36.3906075963042], [139.084361, 36.39053], [139.084214360101, 36.3905546414251], [139.084103223196, 36.3906662328902], [139.085740307192, 36.3913312377834], [139.086429516858, 36.3916262524631], [139.086806191466, 36.3917805749641], [139.08717085483, 36.3918539859973], [139.08868478672, 36.3919112600194], [139.089108, 36.391942], [139.089261111461, 36.3919105727729], [139.090209216619, 36.391953075512], [139.090380641894, 36.3896057608704], [139.090916, 36.38942], [139.091500639915, 36.3891775424111], [139.092871020862, 36.38865185053], [139.091663788725, 36.3875574534035], [139.090487697449, 36.3864689688311], [139.090305306576, 36.3863580732998], [139.089895940828, 36.3860790450056], [139.089107524822, 36.3864814727563], [139.089165753006, 36.3865751469974], [139.089629, 36.386418], [139.090064376673, 36.3862125588066], [139.089705542019, 36.3859473124757], [139.089184727859, 36.3855484935894], [139.088646885926, 36.3858288870736], [139.088349512902, 36.3859464335047], [139.087766888564, 36.3861282481182], [139.087198, 36.386298], [139.086597211969, 36.3865344205219], [139.086034, 36.386885], [139.085349866725, 36.3874280654496], [139.085213075714, 36.3873471542177], [139.08487383431, 36.3854077268704], [139.084886, 36.385335], [139.084845378625, 36.3852857747209], [139.084694358782, 36.3842869700801], [139.08485832307, 36.3823195186802], [139.085863, 36.382126], [139.087568757602, 36.3817374890069], [139.08911254267, 36.3790711538466], [139.089156, 36.379025], [139.089567702064, 36.3783013394447], [139.089854814502, 36.3778135287876], [139.087690620046, 36.377795479764], [139.087628, 36.377777], [139.084821117396, 36.3777729517785], [139.084827, 36.377172], [139.084745788013, 36.3759089609477], [139.084664971875, 36.3743597397778], [139.084688, 36.374265], [139.08466065706, 36.3742053751454], [139.084634068435, 36.3737231463867], [139.084577975181, 36.3731284959435], [139.084359549915, 36.3720618856071], [139.084366, 36.371985], [139.084132145151, 36.3711564163968], [139.083859607456, 36.3699340867226], [139.085923862092, 36.370402951241], [139.086061120033, 36.3704032436822], [139.086667067125, 36.3705432436822], [139.086666483133, 36.3704680350856], [139.086524, 36.370404], [139.086342985115, 36.3703814101666], [139.086329224532, 36.3704491323281], [139.086053306541, 36.3703764101666], [139.085926309847, 36.3703918544896], [139.083796514871, 36.3698895485391], [139.084098093561, 36.3711477240778], [139.082714, 36.371186], [139.082638271463, 36.3712023327862], [139.080569820393, 36.3712659441754], [139.080611, 36.372205], [139.080763524094, 36.3745458895605], [139.080746, 36.374634], [139.08076702277, 36.3746842582172], [139.080828130575, 36.3759579819564], [139.080616935468, 36.3770030534679], [139.08058, 36.377092], [139.080231, 36.37863], [139.079815071705, 36.3805389510138], [139.079805743, 36.3806701125587], [139.078972274742, 36.3823322144401], [139.07763, 36.382327], [139.076418343511, 36.382326734057], [139.076385109378, 36.3831358812345], [139.076348, 36.38324], [139.07637473041, 36.3833461361004], [139.076318754218, 36.3844652475691], [139.075724819031, 36.3844508063771], [139.075652, 36.384414], [139.075513624584, 36.3844412570854], [139.074481557116, 36.3843883011011], [139.074343598121, 36.3843510264552], [139.073498352743, 36.3843219278719], [139.073273046526, 36.3842912465333], [139.072772522714, 36.3842689507834], [139.072793047845, 36.3840591603095], [139.072725758825, 36.383874809255], [139.07282779983, 36.3835586777606], [139.072308495608, 36.3834712359812]]}}, {"type": "Feature", "properties": {"name": "\\u5e73\\u65e5_10\\u664251\\u5206_\\u7cfb\\u7d71170", "times": [1747619460000, 1747619460000, 1747619460000, 1747619460000, 1747619462502, 1747619474216, 1747619489706, 1747619505989, 1747619516848, 1747619520000, 1747619520000, 1747619520000, 1747619520000, 1747619520000, 1747619524475, 1747619575702, 1747619580000, 1747619580000, 1747619580000, 1747619580000, 1747619580000, 1747619580000, 1747619580000, 1747619580000, 1747619582009, 1747619587675, 1747619614646, 1747619637504, 1747619640000, 1747619642401, 1747619650355, 1747619661962, 1747619672119, 1747619688579, 1747619694362, 1747619695858, 1747619697899, 1747619700000, 1747619701221, 1747619709781, 1747619718508, 1747619725813, 1747619731173, 1747619737291, 1747619758182, 1747619760000, 1747619760000, 1747619760000, 1747619760000, 1747619760000, 1747619762138, 1747619804237, 1747619805399, 1747619817356, 1747619820000, 1747619820895, 1747619822645, 1747619825562, 1747619836126, 1747619840608, 1747619852612, 1747619860865, 1747619874090, 1747619879143, 1747619880000, 1747619880884, 1747619890655, 1747619915222, 1747619936571, 1747619938993, 1747619940000, 1747619940000, 1747619940000, 1747619940000, 1747619940000, 1747619940000, 1747619952389, 1747620067607, 1747620184757, 1747620204149, 1747620223856, 1747620233724, 1747620240000, 1747620240000, 1747620240000, 1747620240000, 1747620240000, 1747620240000, 1747620240000, 1747620240000, 1747620240000, 1747620240000, 1747620242493, 1747620259018, 1747620270975, 1747620276206, 1747620279073, 1747620280882, 1747620284438, 1747620291581, 1747620300000, 1747620360000, 1747620360000, 1747620360000, 1747620362474, 1747620398889, 1747620420000, 1747620429904, 1747620469718, 1747620478809, 1747620480000, 1747620480000, 1747620480000, 1747620480000, 1747620483654, 1747620521445, 1747620537657, 1747620540000, 1747620555147, 1747620651334, 1747620662716, 1747620746378, 1747620761913, 1747620814352, 1747620843313, 1747620859626, 1747620874633, 1747620900000, 1747620906712, 1747620912141, 1747620914758, 1747620916761, 1747620936901, 1747620958101, 1747620960000, 1747620962810, 1747620987814, 1747621004345, 1747621069081, 1747621080000, 1747621082985, 1747621093927, 1747621098845, 1747621103343, 1747621109385, 1747621111822, 1747621138221, 1747621140000, 1747621142999, 1747621186386, 1747621197413, 1747621200000, 1747621223661, 1747621250051, 1747621292038, 1747621354002, 1747621370790, 1747621388099, 1747621396010, 1747621438788, 1747621488354, 1747621566445, 1747621596908, 1747621663529, 1747621680000], "icon": "marker", "iconstyle": {"iconUrl": "https://deton.github.io/folium_tripslayer/bus.svg", "iconSize": [24, 24], "iconAnchor": [12, 12]}, "style": {"color": "#ff00ff"}, "tooltip": "\\u5e73\\u65e5_10\\u664251\\u5206_\\u7cfb\\u7d71170", "popup": "\\u5e73\\u65e5_10\\u664251\\u5206_\\u7cfb\\u7d71170"}, "geometry": {"type": "LineString", "coordinates": [[139.093469, 36.329018], [139.093340985167, 36.3290530238325], [139.090807580387, 36.3292199626756], [139.090669, 36.329204], [139.090540758956, 36.329223606137], [139.089932130645, 36.3292668234438], [139.089124666361, 36.3292452147904], [139.088286070448, 36.3291367453688], [139.087733651793, 36.3290357369098], [139.087585, 36.328979], [139.087428346895, 36.3289998846007], [139.086644557871, 36.3288919795936], [139.086321061173, 36.3299685460852], [139.086254, 36.330059], [139.086229166331, 36.3301971679133], [139.085768176248, 36.3317513438277], [139.085691, 36.33187], [139.085692490403, 36. |
View raw
(Sorry about that, but we can’t show files that are this big right now.)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment