From 46007683d590073bd42749dce8da87014f82d7d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=BB=E5=A8=9C?= <576157508@qq.com> Date: Mon, 30 Jun 2025 10:27:48 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9C=BA=E5=9C=BAmock=E9=83=A8=E7=BD=B2?= =?UTF-8?q?=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.production | 3 +- .env.staging | 3 +- .env.test | 8 + README.md | 5 +- bin/build.bat | 3 +- bin/package.bat | 12 - bin/run-web.bat | 12 - html/ie.html | 46 - index.html | 191 +- package.json | 8 +- public/airport_roads.json | 91 + public/dianziweilan.json | 93 + public/roadTest.json | 4044 +++++++++++++++++ src/assets/images/aircraft.png | Bin 0 -> 1373 bytes src/assets/images/layer.png | Bin 0 -> 6496 bytes src/assets/images/noPeopleCar.png | Bin 0 -> 1882 bytes src/assets/images/sub_icon.png | Bin 0 -> 881 bytes src/assets/images/subheading.png | Bin 0 -> 14464 bytes src/components/Pagination/index.vue | 2 +- src/components/car/VehicleSearchFilter.vue | 14 +- src/components/car/detail/FaultAlarm.vue | 12 +- src/components/map/OpenLayersMap.vue | 4 + src/components/map/controls/LayerSwitcher.vue | 904 ++++ .../map/controls/OpenLayersMapInfo.vue | 8 +- .../map/controls/OpenLayersZoomControl.vue | 2 +- .../map/controls/RouteDrawControl.vue | 712 +++ src/components/map/info/carClarm.vue | 2 +- src/components/map/info/eventlist.vue | 27 +- src/layout/components/Navbar.vue | 18 +- src/main.js | 14 +- src/mock/index.js | 11 +- src/mock/menu.js | 24 +- src/permission.js | 15 +- src/router/index.js | 26 +- src/utils/request.js | 16 +- src/views/car/monitor/detail.vue | 2 +- src/views/car/park/index.vue | 16 +- src/views/car/type/index.vue | 4 +- src/views/login.vue | 36 +- src/views/platform/index.vue | 168 +- src/views/system/driver/index.vue | 12 +- src/views/system/operlog/index.vue | 12 +- src/views/system/role/index.vue | 12 +- src/views/system/user/index.vue | 12 +- vite.config.js | 5 +- 45 files changed, 6218 insertions(+), 391 deletions(-) create mode 100644 .env.test delete mode 100644 bin/package.bat delete mode 100644 bin/run-web.bat delete mode 100644 html/ie.html create mode 100644 public/airport_roads.json create mode 100644 public/dianziweilan.json create mode 100644 public/roadTest.json create mode 100644 src/assets/images/aircraft.png create mode 100644 src/assets/images/layer.png create mode 100644 src/assets/images/noPeopleCar.png create mode 100644 src/assets/images/sub_icon.png create mode 100644 src/assets/images/subheading.png create mode 100644 src/components/map/controls/LayerSwitcher.vue create mode 100644 src/components/map/controls/RouteDrawControl.vue diff --git a/.env.production b/.env.production index 6910509..702b358 100644 --- a/.env.production +++ b/.env.production @@ -5,7 +5,8 @@ VITE_APP_TITLE = 青岛机场无人驾驶车辆协同云平台 VITE_APP_ENV = 'production' # 青岛机场无人驾驶车辆协同云平台/生产环境 -VITE_APP_BASE_API = '/prod-api' +# VITE_APP_BASE_API = '/prod-api' +VITE_APP_BASE_API = '/dev-api' # 是否在打包时开启压缩,支持 gzip 和 brotli VITE_BUILD_COMPRESS = gzip \ No newline at end of file diff --git a/.env.staging b/.env.staging index 5d43537..a1d925b 100644 --- a/.env.staging +++ b/.env.staging @@ -5,7 +5,8 @@ VITE_APP_TITLE = 青岛机场无人驾驶车辆协同云平台 VITE_APP_ENV = 'staging' # 青岛机场无人驾驶车辆协同云平台/生产环境 -VITE_APP_BASE_API = '/stage-api' +# VITE_APP_BASE_API = '/stage-api' +VITE_APP_BASE_API = '/dev-api' # 是否在打包时开启压缩,支持 gzip 和 brotli VITE_BUILD_COMPRESS = gzip \ No newline at end of file diff --git a/.env.test b/.env.test new file mode 100644 index 0000000..27dc7da --- /dev/null +++ b/.env.test @@ -0,0 +1,8 @@ +# 页面标题 +VITE_APP_TITLE = 青岛机场无人驾驶车辆协同云平台 + +# 开发环境配置 +VITE_APP_ENV = 'test' +VITE_USE_MOCK=true +# 青岛机场无人驾驶车辆协同云平台/开发环境 +VITE_APP_BASE_API = '/dev-api' diff --git a/README.md b/README.md index fcac044..7964607 100644 --- a/README.md +++ b/README.md @@ -109,4 +109,7 @@ getStyle(type, item, status) { -# 模拟数据版本 \ No newline at end of file +# 模拟数据版本 +1.使用mock数据 +2.打包npm run build:test +3.打包前隐藏 \ No newline at end of file diff --git a/bin/build.bat b/bin/build.bat index ecbb454..f4c51c4 100644 --- a/bin/build.bat +++ b/bin/build.bat @@ -1,12 +1,13 @@ @echo off echo. -echo [Ϣ] Weḅdistļ +echo [信息] 构建Web工程,生成dist文件夹 echo. %~d0 cd %~dp0 cd .. +set NODE_OPTIONS=--max-old-space-size=4096 yarn build:prod pause \ No newline at end of file diff --git a/bin/package.bat b/bin/package.bat deleted file mode 100644 index f5b24e0..0000000 --- a/bin/package.bat +++ /dev/null @@ -1,12 +0,0 @@ -@echo off -echo. -echo [Ϣ] װWeḅnode_modulesļ -echo. - -%~d0 -cd %~dp0 - -cd .. -yarn --registry=https://registry.npmmirror.com - -pause \ No newline at end of file diff --git a/bin/run-web.bat b/bin/run-web.bat deleted file mode 100644 index d2fe397..0000000 --- a/bin/run-web.bat +++ /dev/null @@ -1,12 +0,0 @@ -@echo off -echo. -echo [Ϣ] ʹ Vite Web ̡ -echo. - -%~d0 -cd %~dp0 - -cd .. -yarn dev - -pause \ No newline at end of file diff --git a/html/ie.html b/html/ie.html deleted file mode 100644 index 052ffcd..0000000 --- a/html/ie.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - 请升级您的浏览器 - - - - - - -

请升级您的浏览器,以便我们更好的为您提供服务!

-

您正在使用 Internet Explorer 的早期版本(IE11以下版本或使用该内核的浏览器)。这意味着在升级浏览器前,您将无法访问此网站。

-
-

请注意:微软公司对Windows XP 及 Internet Explorer 早期版本的支持已经结束

-

自 2016 年 1 月 12 日起,Microsoft 不再为 IE 11 以下版本提供相应支持和更新。没有关键的浏览器安全更新,您的电脑可能易受有害病毒、间谍软件和其他恶意软件的攻击,它们可以窃取或损害您的业务数据和信息。请参阅 微软对 Internet Explorer 早期版本的支持将于 2016 年 1 月 12 日结束的说明

-
-

您可以选择更先进的浏览器

-

推荐使用以下浏览器的最新版本。如果您的电脑已有以下浏览器的最新版本则直接使用该浏览器访问即可。

- -
- - \ No newline at end of file diff --git a/index.html b/index.html index 4954c09..63a848b 100644 --- a/index.html +++ b/index.html @@ -8,196 +8,7 @@ 青岛机场 - - + diff --git a/package.json b/package.json index 4b29db0..cfe5e1a 100644 --- a/package.json +++ b/package.json @@ -5,8 +5,9 @@ "license": "MIT", "scripts": { "dev": "vite", - "build:prod": "vite build", - "build:stage": "vite build --mode staging", + "build:prod": "node --max-old-space-size=4096 ./node_modules/vite/bin/vite.js build", + "build:stage": "node --max-old-space-size=4096 ./node_modules/vite/bin/vite.js build --mode staging", + "build:test": "node --max-old-space-size=4096 ./node_modules/vite/bin/vite.js build --mode test", "preview": "vite preview" }, "repository": { @@ -19,7 +20,7 @@ "@vueuse/core": "9.5.0", "axios": "0.27.2", "echarts": "5.4.0", - "element-plus": "2.2.21", + "element-plus": "^2.2.21", "file-saver": "2.0.5", "fuse.js": "6.6.2", "js-cookie": "3.0.1", @@ -30,6 +31,7 @@ "ol": "6.15.1", "pinia": "2.0.22", "proj4": "^2.17.0", + "terser": "^5.43.1", "vue": "3.2.45", "vue-cropper": "1.0.3", "vue-router": "4.1.4" diff --git a/public/airport_roads.json b/public/airport_roads.json new file mode 100644 index 0000000..71bc0b0 --- /dev/null +++ b/public/airport_roads.json @@ -0,0 +1,91 @@ +{ +"type": "FeatureCollection", +"name": "geo0429", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "fid": 1, "road_id": "51", "name": "51", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.089884182963942, 36.376724574565223 ], [ 120.075794941435717, 36.370830831641541 ] ] } }, +{ "type": "Feature", "properties": { "fid": 2, "road_id": "41", "name": "41", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.091171665579296, 36.37364679296428 ], [ 120.077079436852429, 36.367760191065202 ] ] } }, +{ "type": "Feature", "properties": { "fid": 3, "road_id": "52", "name": "52", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.087816178671858, 36.377827096292791 ], [ 120.087136287735902, 36.377546882933956 ], [ 120.0866407555514, 36.377427695780376 ], [ 120.079471166856848, 36.374428548342273 ], [ 120.079137987036347, 36.374452791174129 ], [ 120.076747820709613, 36.373457143740168 ] ] } }, +{ "type": "Feature", "properties": { "fid": 4, "road_id": "D1", "name": "D1", "directionality": "双向", "prohibited": true, "width": 8.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.085781751289929, 36.384316680703712 ], [ 120.087429682801499, 36.385006035390809 ], [ 120.087479539518469, 36.385049582213938 ], [ 120.087518099243951, 36.385111094338583 ], [ 120.08753705252515, 36.385183313960894 ], [ 120.087530256876477, 36.385244762416235 ], [ 120.085643808884626, 36.389763436695894 ], [ 120.085632153476936, 36.389845543244505 ], [ 120.085658595639572, 36.389936022915258 ], [ 120.08570306677305, 36.389992444203308 ], [ 120.085744088212692, 36.390020949594245 ], [ 120.087213649435554, 36.390639471124537 ], [ 120.086340216964871, 36.392745529624911 ], [ 120.086335524614142, 36.392838112593608 ], [ 120.086364659568517, 36.392922155031883 ], [ 120.086408604877505, 36.392970792691607 ], [ 120.086457409945496, 36.392998772258046 ], [ 120.08722344060908, 36.393319214475873 ], [ 120.087288633505139, 36.393335140148757 ], [ 120.087358686160201, 36.393330407728371 ], [ 120.087426635517303, 36.393294540794635 ], [ 120.087482005156389, 36.393234502404475 ], [ 120.088761607060448, 36.390184600610951 ], [ 120.088806836878405, 36.390130720623695 ], [ 120.088872914015155, 36.390090288677833 ], [ 120.088947005857847, 36.390075900408753 ], [ 120.089029112406465, 36.390087555816436 ], [ 120.090521203942941, 36.390715502117857 ], [ 120.090574868769949, 36.390722823591005 ], [ 120.09063825311496, 36.390688828877629 ] ] } }, +{ "type": "Feature", "properties": { "fid": 5, "road_id": "D2", "name": "D2", "directionality": "双向", "prohibited": true, "width": 8.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.090633982849752, 36.39067191522507 ], [ 120.09426620139071, 36.381979902671596 ], [ 120.094281633073777, 36.381884248460111 ], [ 120.094270053135233, 36.381817004135584 ], [ 120.093965609848752, 36.38084062916905 ], [ 120.093960056856972, 36.380781578758558 ], [ 120.093968630113253, 36.380720401174138 ], [ 120.104768334324675, 36.354907772179004 ], [ 120.104799942793036, 36.354854812384602 ], [ 120.104847234056876, 36.354814085691856 ], [ 120.105802437796683, 36.354320676316604 ], [ 120.105835360826262, 36.354287175593058 ], [ 120.10587424802452, 36.354234896955248 ], [ 120.109330614530577, 36.345972306756693 ] ] } }, +{ "type": "Feature", "properties": { "fid": 6, "road_id": "D3", "name": "D3", "directionality": "双向", "prohibited": true, "width": 8.0, "speed_limit": 50.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.109331960926454, 36.345969088140471 ], [ 120.10934074433429, 36.345925489447858 ], [ 120.109341513036185, 36.345855847078496 ], [ 120.109314365840973, 36.345789654402942 ], [ 120.109255295395656, 36.345713889582832 ], [ 120.107830121602134, 36.345115826902877 ], [ 120.107777572093411, 36.345078717312227 ], [ 120.107733774157879, 36.345020686716062 ], [ 120.107714673503239, 36.344957860030192 ], [ 120.107720039051912, 36.34486366775338 ], [ 120.10912221574111, 36.341507184804932 ], [ 120.109134249599833, 36.341442254821125 ], [ 120.109127087299953, 36.341382531212695 ], [ 120.109097920510919, 36.341321166461491 ], [ 120.109029982953629, 36.34125303789628 ], [ 120.108238876558104, 36.340920215203354 ], [ 120.108170727958068, 36.340906834948754 ], [ 120.108116505471926, 36.340914407534335 ], [ 120.108054204610553, 36.340941291817316 ], [ 120.107977471845601, 36.341020757443658 ], [ 120.107096066521052, 36.343118753486117 ], [ 120.106930570697259, 36.343053305912825 ], [ 120.10561737527398, 36.342503976396543 ], [ 120.105539833737481, 36.342490448768494 ], [ 120.105467351202904, 36.342505510235526 ], [ 120.105405576166021, 36.342540178146841 ], [ 120.105345494141389, 36.342611481693815 ], [ 120.105127882908377, 36.343131690542556 ], [ 120.10509560124207, 36.34318625964508 ], [ 120.105041462460065, 36.343229794668375 ], [ 120.104978898686454, 36.343252787137175 ], [ 120.104872357769196, 36.343249819633364 ], [ 120.103204441362266, 36.342553995879143 ] ] } }, +{ "type": "Feature", "properties": { "fid": 7, "road_id": "84", "name": "84", "directionality": "双向", "prohibited": false, "width": 8.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.099428587000972, 36.351810871464117 ], [ 120.100227262666039, 36.349906123851802 ], [ 120.100206731911385, 36.349810553344454 ], [ 120.100209552041761, 36.349713405363644 ], [ 120.103204441362266, 36.342553995879143 ] ] } }, +{ "type": "Feature", "properties": { "fid": 8, "road_id": "85", "name": "85", "directionality": "双向", "prohibited": false, "width": 8.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.100226158256376, 36.349904243672768 ], [ 120.100988970303732, 36.350223339494725 ], [ 120.102187057488052, 36.347361521608008 ], [ 120.101342170726753, 36.34700809269129 ] ] } }, +{ "type": "Feature", "properties": { "fid": 9, "road_id": "81", "name": "81", "directionality": "双向", "prohibited": false, "width": 8.0, "speed_limit": 50.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.099429896553488, 36.351810001082001 ], [ 120.086833037269429, 36.346540544233143 ] ] } }, +{ "type": "Feature", "properties": { "fid": 10, "road_id": "82", "name": "82", "directionality": "双向", "prohibited": false, "width": 8.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.100407977133571, 36.349239061796226 ], [ 120.095462573290732, 36.347170324537011 ] ] } }, +{ "type": "Feature", "properties": { "fid": 11, "road_id": "87", "name": "87", "directionality": "双向", "prohibited": false, "width": 8.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.094402754595649, 36.349706126073961 ], [ 120.095644131590774, 36.346738561906626 ] ] } }, +{ "type": "Feature", "properties": { "fid": 12, "road_id": "86", "name": "86", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 50.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.101693448593537, 36.346166087947246 ], [ 120.100854999064694, 36.345815351822267 ], [ 120.100795948654209, 36.34582090481404 ], [ 120.100750971731088, 36.345838017709525 ], [ 120.100710938271092, 36.345870434949454 ], [ 120.100680560659811, 36.345906891376998 ], [ 120.099630424639386, 36.348403724961514 ] ] } }, +{ "type": "Feature", "properties": { "fid": 13, "road_id": "83", "name": "83", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 50.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.099630424639386, 36.348403724961514 ], [ 120.089115336860502, 36.344006995550757 ] ] } }, +{ "type": "Feature", "properties": { "fid": 14, "road_id": "88", "name": "88", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 50.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.08911567345946, 36.3440061908967 ], [ 120.090149563570961, 36.341527852417528 ], [ 120.090168913002941, 36.341461255356201 ], [ 120.09015177417271, 36.341386958370677 ], [ 120.090117837228718, 36.341330216400976 ], [ 120.090076610646221, 36.341304461571198 ], [ 120.089272293186809, 36.340967057948838 ] ] } }, +{ "type": "Feature", "properties": { "fid": 15, "road_id": "89", "name": "89", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 50.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.086832316765111, 36.346540006470661 ], [ 120.087629514578182, 36.344636531567495 ], [ 120.087721503935597, 36.344586139008634 ], [ 120.087792398979275, 36.344507067750648 ], [ 120.093305048582735, 36.331328845909411 ] ] } }, +{ "type": "Feature", "properties": { "fid": 16, "road_id": "810", "name": "810", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.087629214822584, 36.344634987987426 ], [ 120.086876058623929, 36.344319931353091 ], [ 120.088075791959739, 36.341456438430207 ], [ 120.088918396214993, 36.341810803457108 ] ] } }, +{ "type": "Feature", "properties": { "fid": 17, "road_id": "X3", "name": "X3", "directionality": "双向", "prohibited": true, "width": 10.0, "speed_limit": 50.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.093296875594731, 36.331343863465598 ], [ 120.090086305901778, 36.330000833582055 ], [ 120.09076118683322, 36.328387502195 ], [ 120.090777785704063, 36.328320699990819 ], [ 120.090772117173486, 36.328248364829705 ], [ 120.090736660525437, 36.328174914350306 ], [ 120.090702633977401, 36.328134207692379 ], [ 120.090675423112856, 36.328113370391002 ], [ 120.089877206286943, 36.327779464214437 ], [ 120.089839108716632, 36.327771091092302 ], [ 120.089787579022243, 36.327772226445411 ], [ 120.089717904818215, 36.327794135430594 ], [ 120.089679217754096, 36.32782333405428 ], [ 120.089638774008407, 36.327861252416497 ], [ 120.089612140837843, 36.327906838868259 ], [ 120.088212299415389, 36.331248698628862 ], [ 120.088175600110432, 36.331295747015275 ], [ 120.088134630540253, 36.331325881749152 ], [ 120.088073676074742, 36.331349547415904 ], [ 120.088017581368248, 36.331352554989365 ], [ 120.087962307233141, 36.331344560318264 ], [ 120.086519693962572, 36.33074298427519 ], [ 120.086446948515771, 36.330754153928027 ], [ 120.086401035482453, 36.330768984317466 ], [ 120.086359392714343, 36.330800728359456 ], [ 120.086318275770736, 36.330840256029774 ], [ 120.086292147498625, 36.330884635500453 ] ] } }, +{ "type": "Feature", "properties": { "fid": 18, "road_id": "X2", "name": "X2", "directionality": "双向", "prohibited": true, "width": 10.0, "speed_limit": 50.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.086292399947851, 36.330884032009905 ], [ 120.082833603562278, 36.339156951255084 ], [ 120.082824409868749, 36.339206051069986 ], [ 120.082828690151374, 36.339263623628476 ], [ 120.083102786324417, 36.340362268139152 ], [ 120.083109365030424, 36.340407565743917 ], [ 120.083109243591721, 36.340446278742782 ], [ 120.083098850875771, 36.340489204237443 ], [ 120.072334592127447, 36.366215969275864 ], [ 120.072310257380252, 36.3662492807739 ], [ 120.072285265352463, 36.366272862736501 ], [ 120.072257596450257, 36.366291543088039 ], [ 120.071356226282532, 36.366755708008192 ], [ 120.071325133621229, 36.366775792525004 ], [ 120.071293162619156, 36.366800236911061 ], [ 120.071265346343509, 36.366828310199054 ], [ 120.071248185250425, 36.366853513407783 ], [ 120.067590511635274, 36.375588296123816 ], [ 120.067584831304885, 36.375619956461655 ], [ 120.067601360606488, 36.375650507381145 ], [ 120.067618841935612, 36.375672001963125 ], [ 120.069141715469158, 36.376309988464193 ], [ 120.069191851015688, 36.376346088257947 ], [ 120.069220234522305, 36.376379943418378 ], [ 120.069243595424751, 36.376419024850854 ], [ 120.069257505621323, 36.376451316534563 ], [ 120.069264873064057, 36.376508289581857 ], [ 120.069260112926528, 36.376553571269291 ], [ 120.069241789208789, 36.376606415524897 ], [ 120.067850709822508, 36.3799318495847 ], [ 120.067837834466374, 36.379998791203661 ], [ 120.067844455024442, 36.380062070027286 ], [ 120.067871339307416, 36.380124370888666 ], [ 120.067918503232647, 36.380174354944252 ] ] } }, +{ "type": "Feature", "properties": { "fid": 19, "road_id": "X1", "name": "X1", "directionality": "双向", "prohibited": true, "width": 10.0, "speed_limit": 50.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.06791954191425, 36.380175262169729 ], [ 120.067955603973417, 36.380199802059771 ], [ 120.068734509101944, 36.38052562986109 ], [ 120.068754362541156, 36.380530153021127 ], [ 120.068806754659008, 36.380535996642294 ], [ 120.068862923052222, 36.380528292600594 ], [ 120.068908573173303, 36.380509570396981 ], [ 120.06895236699134, 36.380474944337735 ], [ 120.068987851356539, 36.380433060474623 ], [ 120.069806470510485, 36.378480637109348 ], [ 120.069812697591388, 36.378465751009273 ], [ 120.071689787210119, 36.379251438729362 ], [ 120.071739281393377, 36.379266470144138 ], [ 120.071793019907105, 36.37926909514907 ], [ 120.071838990709807, 36.379260907134949 ], [ 120.07188578208391, 36.379241716876258 ], [ 120.071926956796915, 36.379208831581238 ], [ 120.071965060267146, 36.3791652069539 ], [ 120.072159446171341, 36.378700519235188 ], [ 120.072183723149138, 36.378660565361841 ], [ 120.072222631273419, 36.378617277333468 ], [ 120.072263059101772, 36.378590697814801 ], [ 120.072300047253719, 36.378576861304943 ], [ 120.072359507949898, 36.378565807190881 ], [ 120.072409954160662, 36.378571782268175 ], [ 120.072442682064818, 36.378581691011696 ], [ 120.073281599648752, 36.378933568389698 ] ] } }, +{ "type": "Feature", "properties": { "fid": 20, "road_id": "72", "name": "72", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.073276008922406, 36.378949193415785 ], [ 120.076539420069878, 36.371147871156204 ] ] } }, +{ "type": "Feature", "properties": { "fid": 21, "road_id": "73", "name": "73", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.076658536338883, 36.373663455062214 ], [ 120.07566076530648, 36.373246072341516 ] ] } }, +{ "type": "Feature", "properties": { "fid": 22, "road_id": "74", "name": "74", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.074292245591678, 36.379320173092665 ], [ 120.073294474559276, 36.378902790371967 ] ] } }, +{ "type": "Feature", "properties": { "fid": 23, "road_id": "71", "name": "71", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.072618938433507, 36.383324804885142 ], [ 120.077539594601447, 36.371561768369091 ] ] } }, +{ "type": "Feature", "properties": { "fid": 24, "road_id": "2", "name": "2", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 50.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.075797650021158, 36.370834977509801 ], [ 120.078247922210949, 36.364977498291772 ], [ 120.078324654975901, 36.364898032665415 ], [ 120.078398631279782, 36.3648703596457 ], [ 120.07847231283678, 36.364861472498909 ], [ 120.078540461436816, 36.364874852753502 ], [ 120.078851731101295, 36.365003170647157 ], [ 120.078956925622691, 36.365009356767196 ], [ 120.079040294863034, 36.364981831120943 ], [ 120.079144049266986, 36.364914614513573 ], [ 120.086831896016406, 36.346541012288235 ] ] } }, +{ "type": "Feature", "properties": { "fid": 25, "road_id": "56", "name": "56", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.077213771684427, 36.373651553751181 ], [ 120.078003580237521, 36.371754442393751 ] ] } }, +{ "type": "Feature", "properties": { "fid": 26, "road_id": "55", "name": "55", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.082159545743323, 36.375552154264355 ], [ 120.082895203714585, 36.373802573429174 ] ] } }, +{ "type": "Feature", "properties": { "fid": 27, "road_id": "54", "name": "54", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.083268096123533, 36.376012095828514 ], [ 120.083997038032763, 36.374267269230963 ] ] } }, +{ "type": "Feature", "properties": { "fid": 28, "road_id": "66", "name": "66", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.082057474872599, 36.388376201202547 ], [ 120.086639522941439, 36.377427141973953 ] ] } }, +{ "type": "Feature", "properties": { "fid": 29, "road_id": "53", "name": "53", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.086091590371041, 36.377195569842414 ], [ 120.086822983085824, 36.375449404807661 ] ] } }, +{ "type": "Feature", "properties": { "fid": 30, "road_id": "65", "name": "65", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.083729845761539, 36.389077197438745 ], [ 120.082057774628211, 36.388377744782602 ] ] } }, +{ "type": "Feature", "properties": { "fid": 31, "road_id": "64", "name": "64", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.083730650415589, 36.389077534037717 ], [ 120.087936249381741, 36.379026132139309 ] ] } }, +{ "type": "Feature", "properties": { "fid": 32, "road_id": "63", "name": "63", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.088778853636995, 36.37938049716621 ], [ 120.087936249381741, 36.379026132139309 ] ] } }, +{ "type": "Feature", "properties": { "fid": 33, "road_id": "62", "name": "62", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.087584190211757, 36.382240910887653 ], [ 120.086739303450443, 36.381887481970935 ] ] } }, +{ "type": "Feature", "properties": { "fid": 34, "road_id": "61", "name": "61", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.087583517013812, 36.382242520195767 ], [ 120.089484228164139, 36.377707830500995 ] ] } }, +{ "type": "Feature", "properties": { "fid": 35, "road_id": "1", "name": "1", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.089483423510089, 36.37770749390203 ], [ 120.092340417783674, 36.370870947879119 ], [ 120.092350495717895, 36.370765490445493 ], [ 120.092315859641232, 36.370681037721525 ], [ 120.092235457904707, 36.370602022450527 ], [ 120.091867599543903, 36.370446250814915 ], [ 120.09178289570751, 36.37037299957845 ], [ 120.09175361337968, 36.370298350076631 ], [ 120.091748271430674, 36.370184551355514 ], [ 120.099431290255737, 36.351808929536368 ] ] } }, +{ "type": "Feature", "properties": { "fid": 36, "road_id": "42", "name": "42", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.091952056260979, 36.371794822194282 ], [ 120.088266740673561, 36.370253198919436 ] ] } }, +{ "type": "Feature", "properties": { "fid": 37, "road_id": "44", "name": "44", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.087487156536923, 36.372107787109236 ], [ 120.088509071004708, 36.369664857387967 ] ] } }, +{ "type": "Feature", "properties": { "fid": 38, "road_id": "43", "name": "43", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.092198746461378, 36.371207359003591 ], [ 120.086592516493752, 36.368865024552541 ] ] } }, +{ "type": "Feature", "properties": { "fid": 39, "road_id": "45", "name": "45", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.084604680556936, 36.370904840165892 ], [ 120.085385442789956, 36.369047435686895 ] ] } }, +{ "type": "Feature", "properties": { "fid": 40, "road_id": "46", "name": "46", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.08271052490349, 36.3701124861945 ], [ 120.083735132163014, 36.367663119240767 ] ] } }, +{ "type": "Feature", "properties": { "fid": 41, "road_id": "49", "name": "49", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.08373331771206, 36.367665196603973 ], [ 120.078104089375699, 36.365312296128792 ] ] } }, +{ "type": "Feature", "properties": { "fid": 42, "road_id": "47", "name": "47", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.08092546560303, 36.369366714336849 ], [ 120.081946854246326, 36.366916000987246 ] ] } }, +{ "type": "Feature", "properties": { "fid": 43, "road_id": "48", "name": "48", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 40.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.081700463801525, 36.367505007757998 ], [ 120.077859045326775, 36.365898084283295 ] ] } }, +{ "type": "Feature", "properties": { "fid": 44, "road_id": "1C2", "name": "1C2", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.088052924804487, 36.365369336452005 ], [ 120.086577611526394, 36.368896135189914 ], [ 120.086520863656773, 36.36898206988338 ], [ 120.086439302967491, 36.369059515915922 ], [ 120.086351042133472, 36.369130377342543 ], [ 120.086231531247321, 36.369190057316487 ], [ 120.086076615582584, 36.369234926935825 ], [ 120.085926591511509, 36.3692364607748 ], [ 120.085825436177743, 36.36922061880604 ], [ 120.08573017132592, 36.369190695391275 ], [ 120.084519298424169, 36.368686059851058 ], [ 120.08433961357423, 36.368595767623411 ], [ 120.084176758672712, 36.368465242692842 ], [ 120.084025232597313, 36.368294074773672 ], [ 120.083890914921383, 36.368099850716376 ], [ 120.08373251305801, 36.367664860005007 ], [ 120.083767762228121, 36.367503749985218 ], [ 120.085514521648122, 36.363319007139793 ] ] } }, +{ "type": "Feature", "properties": { "fid": 45, "road_id": "1C6", "name": "1C6", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.085385442789956, 36.369047435686895 ], [ 120.085733149524231, 36.368216228044574 ], [ 120.085750132746, 36.36811460465573 ], [ 120.085724805901648, 36.36799433686749 ], [ 120.08569384647889, 36.367871712886476 ] ] } }, +{ "type": "Feature", "properties": { "fid": 46, "road_id": "1C7", "name": "1C7", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.088052288449902, 36.365368597526 ], [ 120.08701187075242, 36.364933375059984 ] ] } }, +{ "type": "Feature", "properties": { "fid": 47, "road_id": "1C4", "name": "1C4", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.087720043699747, 36.363645026073456 ], [ 120.08660546637276, 36.363176890595255 ] ] } }, +{ "type": "Feature", "properties": { "fid": 48, "road_id": "1C1", "name": "1C1", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.088093990341548, 36.363526325188587 ], [ 120.087939747874756, 36.363569585499818 ], [ 120.087810581139891, 36.363625226286139 ], [ 120.087703944718669, 36.363690291843575 ], [ 120.087654307279465, 36.363777310020666 ], [ 120.0875830756368, 36.363857185932709 ], [ 120.087488640482562, 36.363929246381758 ], [ 120.087379036557522, 36.364100852856446 ], [ 120.087345323899996, 36.364195005339944 ], [ 120.08701576256658, 36.364933112147746 ], [ 120.086652393962879, 36.365761077297833 ], [ 120.086494434433973, 36.366134165910019 ], [ 120.086431858860536, 36.36626115387778 ], [ 120.086347645449152, 36.366507672766552 ], [ 120.086193326622009, 36.366772611153358 ], [ 120.086113626353239, 36.366958617696973 ], [ 120.086108113431123, 36.367062202910233 ], [ 120.086094648581181, 36.367166716275023 ], [ 120.085891625751401, 36.367737936952345 ], [ 120.085825895231025, 36.367818223150081 ], [ 120.085695119188046, 36.367873190738472 ], [ 120.085617545816888, 36.3678823407975 ], [ 120.085511004899629, 36.367879373293682 ], [ 120.085400424794742, 36.367886061638565 ], [ 120.085296650355957, 36.367871960434051 ], [ 120.085217447641853, 36.36779911948328 ], [ 120.085009928263844, 36.367510928326837 ], [ 120.084997444049776, 36.367418723809173 ], [ 120.085006374831053, 36.367365732180126 ], [ 120.08504381100326, 36.367271719111415 ], [ 120.085309596849598, 36.366726753153621 ], [ 120.085445622902455, 36.366564308537789 ], [ 120.085562349057739, 36.366289790047766 ], [ 120.085561835033076, 36.366178010920464 ], [ 120.085664444957715, 36.3659462785103 ], [ 120.085721161883868, 36.365810694301473 ], [ 120.08646363732106, 36.363936328417928 ], [ 120.08651783977237, 36.363847438020471 ], [ 120.086575009727497, 36.363652006705749 ], [ 120.086561884150157, 36.363538733809115 ], [ 120.086552650386977, 36.363425198000243 ], [ 120.086606139570691, 36.363175281287148 ], [ 120.086475736417384, 36.362845130522125 ] ] } }, +{ "type": "Feature", "properties": { "fid": 49, "road_id": "1C5", "name": "1C5", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.086428266801974, 36.366262960370086 ], [ 120.085664986699527, 36.365942723295106 ] ] } }, +{ "type": "Feature", "properties": { "fid": 50, "road_id": "1D1", "name": "1D1", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.088094158641027, 36.363525922861562 ], [ 120.088205059427551, 36.363529768706158 ], [ 120.088310984916276, 36.363540987893415 ], [ 120.088408306205281, 36.363563735149718 ], [ 120.088504806922884, 36.363597484650604 ], [ 120.088593771007069, 36.36364699063369 ], [ 120.088677423194483, 36.363704674613473 ], [ 120.088926812300684, 36.363895034573765 ], [ 120.089069313873253, 36.364042572778345 ], [ 120.090149216711922, 36.365409516304496 ], [ 120.090208034262417, 36.365522048216377 ], [ 120.090256186167295, 36.365632954902807 ], [ 120.090278756550589, 36.365805015297681 ], [ 120.09028887455446, 36.365862193487821 ], [ 120.090433290199456, 36.366032277923367 ], [ 120.090505350648499, 36.366126713077584 ], [ 120.09111049524023, 36.367017093246169 ], [ 120.091169091730549, 36.367143714562737 ], [ 120.091330781226702, 36.367100733081088 ], [ 120.091414939203787, 36.367084882877336 ], [ 120.091753937322281, 36.367056508389865 ], [ 120.091811788710345, 36.367044781077873 ], [ 120.091895221620007, 36.366971900057436 ], [ 120.092037939582568, 36.366630726736688 ], [ 120.092052287781996, 36.366542182955612 ], [ 120.092014202011512, 36.366429814334509 ], [ 120.091943077672639, 36.366337661686323 ], [ 120.091863317299399, 36.366279714794302 ], [ 120.091786039566344, 36.366197751777968 ], [ 120.090785096564346, 36.364981075200305 ], [ 120.090210590713738, 36.364202784823249 ], [ 120.090131503538416, 36.364143228623107 ], [ 120.089854001074571, 36.3637624167634 ], [ 120.089801053079995, 36.363626812796063 ], [ 120.089728750644738, 36.363537476437095 ], [ 120.08965089432651, 36.363461416870081 ], [ 120.089601312321619, 36.363317766362165 ], [ 120.089493659650898, 36.363055278166037 ], [ 120.089456983945595, 36.362894335554529 ], [ 120.089409831820205, 36.362740355999968 ] ] } }, +{ "type": "Feature", "properties": { "fid": 51, "road_id": "1B1", "name": "1B1", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.082072012219001, 36.363120340365647 ], [ 120.081986050699584, 36.36310659963609 ], [ 120.081938207676515, 36.363110222638099 ], [ 120.08181511564041, 36.363140040807828 ], [ 120.081733839680595, 36.363158042061514 ], [ 120.081615439995232, 36.363095277262545 ], [ 120.081577585302313, 36.3630094781427 ], [ 120.081527324199584, 36.36291943469238 ], [ 120.081349250440184, 36.362685161257765 ], [ 120.081323186728582, 36.362611858151816 ], [ 120.081329777234416, 36.362553160257633 ], [ 120.081445435823383, 36.362274413354456 ], [ 120.081475630109068, 36.362177370895033 ], [ 120.081528612166309, 36.362109479169149 ], [ 120.081592753413403, 36.362109837585358 ], [ 120.083056633200528, 36.361996088523043 ], [ 120.083183128069678, 36.361955875578609 ], [ 120.083399018234743, 36.361968658104402 ], [ 120.083518349912794, 36.361941048754005 ], [ 120.08439758513353, 36.361819098647999 ], [ 120.084542749445603, 36.361838222902293 ], [ 120.085073183325676, 36.361750001032597 ], [ 120.085146276280071, 36.361706358429181 ], [ 120.085265197672442, 36.361684250201066 ], [ 120.085503450742863, 36.361634532622553 ], [ 120.085722161038291, 36.36155016716755 ], [ 120.085839389418396, 36.361491423303782 ], [ 120.085946699037564, 36.361424748438232 ], [ 120.086076307892782, 36.361340928842537 ] ] } }, +{ "type": "Feature", "properties": { "fid": 52, "road_id": "1A1", "name": "1A1", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.086075503238717, 36.361340592243565 ], [ 120.086118729380189, 36.361280201337117 ], [ 120.086156085965769, 36.361242882486117 ], [ 120.08622617045549, 36.361215472378646 ], [ 120.086321165051274, 36.360983863465954 ], [ 120.086290410771355, 36.360858488923803 ], [ 120.08627605522814, 36.360689392191574 ], [ 120.086214662207112, 36.360451927857881 ], [ 120.086162913234958, 36.360322498210785 ], [ 120.086089454520561, 36.360172641547983 ], [ 120.085971755750279, 36.359992933098397 ], [ 120.085698292474049, 36.35960246538999 ], [ 120.085684198951867, 36.359509587674388 ], [ 120.085229369613273, 36.358888196603722 ], [ 120.085150019525713, 36.358824748589406 ], [ 120.085070816811609, 36.358751907638634 ], [ 120.084857706707254, 36.358479341508279 ], [ 120.084789706371865, 36.358384241114763 ], [ 120.084357164469495, 36.35784970081292 ], [ 120.083994400510122, 36.357410531775493 ], [ 120.083915608081696, 36.357332189702433 ], [ 120.083774168175538, 36.357240877660459 ], [ 120.083715045860743, 36.357106472715557 ], [ 120.083678916014748, 36.357034631544281 ], [ 120.08367134342916, 36.356980409058139 ], [ 120.083702342368909, 36.356883703197688 ], [ 120.083738337532481, 36.356788614604014 ], [ 120.084098235516322, 36.355923742947361 ] ] } }, +{ "type": "Feature", "properties": { "fid": 53, "road_id": "1A3", "name": "1A3", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.084095953010277, 36.355924679057537 ], [ 120.084117116893211, 36.355856004633011 ], [ 120.084106273821902, 36.355741795626201 ], [ 120.084066925359693, 36.355668608059041 ], [ 120.084031815328018, 36.355635011831517 ], [ 120.083984619568142, 36.355607705463015 ], [ 120.083180638707688, 36.355269497186598 ] ] } }, +{ "type": "Feature", "properties": { "fid": 54, "road_id": "1A2", "name": "1A2", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.085025286222432, 36.360167122048892 ], [ 120.085035300487348, 36.360107019989428 ], [ 120.085028926924196, 36.360058971823513 ], [ 120.084989988747665, 36.359980283134064 ], [ 120.082805171898883, 36.357116333030042 ], [ 120.082731207394815, 36.35704001055079 ], [ 120.082643663393242, 36.356982589483245 ], [ 120.082491452320085, 36.356917026371136 ] ] } }, +{ "type": "Feature", "properties": { "fid": 55, "road_id": "1A4", "name": "1A4", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.083774767686748, 36.357243964820583 ], [ 120.083639836917357, 36.35729530350703 ], [ 120.083497859386867, 36.357300203335697 ], [ 120.083289099687036, 36.357369822105419 ], [ 120.083188374673782, 36.35742979682626 ], [ 120.083095285915434, 36.35749863865906 ] ] } }, +{ "type": "Feature", "properties": { "fid": 56, "road_id": "1A5", "name": "1A5", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.084216246145914, 36.358964066544473 ], [ 120.084312027696015, 36.358888787479209 ], [ 120.084376495524651, 36.358847682335409 ], [ 120.084512163161293, 36.358749378966664 ], [ 120.084595122115942, 36.358727354442685 ], [ 120.084751993705183, 36.358723012273181 ], [ 120.084863163303851, 36.35867875218247 ], [ 120.08495531595203, 36.358607627843604 ] ] } }, +{ "type": "Feature", "properties": { "fid": 57, "road_id": "1A7", "name": "1A7", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.081083795434623, 36.360282089643313 ], [ 120.081235070397611, 36.360345370249355 ], [ 120.08134105365572, 36.360363231811924 ], [ 120.081450550276969, 36.360363653897444 ], [ 120.08168139817009, 36.36033163870821 ], [ 120.081754470198447, 36.360279005495372 ], [ 120.08180044690107, 36.360218819731763 ], [ 120.0824926626794, 36.358564048660682 ], [ 120.082506800727273, 36.358457925987786 ], [ 120.082489982578693, 36.358394163191733 ], [ 120.08245183313889, 36.358327149944799 ], [ 120.082278892068146, 36.35811676913702 ], [ 120.082194303770549, 36.358056802651184 ], [ 120.082042092697392, 36.357991239539096 ] ] } }, +{ "type": "Feature", "properties": { "fid": 58, "road_id": "1B6", "name": "1B6", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.080692741120174, 36.36121240119094 ], [ 120.081125645003581, 36.361393491435884 ], [ 120.081225043655792, 36.361418053143147 ], [ 120.081424924443823, 36.3614600661273 ], [ 120.081561348982547, 36.361396115888148 ], [ 120.081637870704725, 36.361371398572437 ], [ 120.081689958058263, 36.361355369160563 ], [ 120.084575582656981, 36.360984499357599 ], [ 120.084618129700615, 36.360977715508739 ], [ 120.084677885143705, 36.360947875521774 ], [ 120.084712827767092, 36.360909546873877 ], [ 120.084728163946181, 36.360881925723639 ] ] } }, +{ "type": "Feature", "properties": { "fid": 59, "road_id": "1A6", "name": "1A6", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.08472752759161, 36.360881186797641 ], [ 120.085026090876497, 36.360167458647865 ] ] } }, +{ "type": "Feature", "properties": { "fid": 60, "road_id": "1B7", "name": "1B7", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.083182575864839, 36.361954935489095 ], [ 120.083221685014479, 36.36181624024416 ], [ 120.083254293262328, 36.361720207581641 ], [ 120.083301385283249, 36.361630233700552 ], [ 120.083339494653387, 36.361534611323727 ], [ 120.083339243540976, 36.361426724010585 ], [ 120.083324508655508, 36.361312777916019 ], [ 120.083299918678406, 36.361145545445503 ] ] } }, +{ "type": "Feature", "properties": { "fid": 61, "road_id": "1B8", "name": "1B8", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.081527891662006, 36.362108941406667 ], [ 120.081487953705974, 36.362073325585335 ], [ 120.081469064094094, 36.361955750588841 ], [ 120.081469486179628, 36.361846253967592 ], [ 120.081481595507483, 36.36163197311064 ], [ 120.081425345192528, 36.361459060309734 ] ] } }, +{ "type": "Feature", "properties": { "fid": 62, "road_id": "1B9", "name": "1B9", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.079741259986505, 36.363486957050483 ], [ 120.081289414394845, 36.364134573465506 ], [ 120.081396891422287, 36.364139823475369 ], [ 120.081743031805843, 36.364089854784446 ], [ 120.081800504742873, 36.364060950907657 ], [ 120.08186919096724, 36.363978119291623 ], [ 120.081894688784686, 36.36388100314548 ], [ 120.081887737527566, 36.363766531226418 ], [ 120.081873675840043, 36.363650975823738 ], [ 120.081873424727618, 36.36354308851061 ], [ 120.081911123812063, 36.363452967256066 ], [ 120.082058332208803, 36.363186945385628 ], [ 120.082068756759412, 36.363121342203883 ] ] } }, +{ "type": "Feature", "properties": { "fid": 63, "road_id": "1B10", "name": "1B10", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.08346799307462, 36.362791460099089 ], [ 120.083428445369464, 36.362669025343585 ], [ 120.083414120769689, 36.362549578126739 ], [ 120.083351436787098, 36.362084663724268 ], [ 120.083297668221135, 36.361960062001508 ] ] } }, +{ "type": "Feature", "properties": { "fid": 64, "road_id": "1B11", "name": "1B11", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.085499595540583, 36.362504869034829 ], [ 120.085395315989203, 36.361655716678484 ] ] } }, +{ "type": "Feature", "properties": { "fid": 65, "road_id": "1C3", "name": "1C3", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.086563456614911, 36.363541755241179 ], [ 120.086458672379209, 36.36353006799883 ], [ 120.086354561341452, 36.363516771448374 ], [ 120.086260137987054, 36.363484836398456 ], [ 120.085795047941303, 36.363290282194775 ], [ 120.085698342080846, 36.363259283255033 ], [ 120.085641574176421, 36.363263900136623 ], [ 120.085576464984484, 36.363283936901453 ], [ 120.085350161177445, 36.363305089260898 ], [ 120.083963086059583, 36.363479330633538 ], [ 120.08385235858124, 36.363495411914876 ], [ 120.083736540266329, 36.363505581788232 ], [ 120.083686767253496, 36.363497997402824 ], [ 120.083640770516041, 36.363476865354549 ], [ 120.08359653046017, 36.36344701356775 ], [ 120.083558201812252, 36.363412070944364 ], [ 120.083530496957891, 36.363360772327553 ], [ 120.083511575511352, 36.363265875018143 ], [ 120.083470609506023, 36.363006700942201 ], [ 120.083402620079241, 36.362879932252191 ] ] } }, +{ "type": "Feature", "properties": { "fid": 66, "road_id": "1B4", "name": "1B4", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.082066679396206, 36.363119527752922 ], [ 120.082165352980979, 36.363087058643515 ], [ 120.082285357856975, 36.363057839984997 ], [ 120.08340138421346, 36.362876106166077 ] ] } }, +{ "type": "Feature", "properties": { "fid": 67, "road_id": "1B5", "name": "1B5", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.083401552512953, 36.362875703839045 ], [ 120.083467693319008, 36.362789916519034 ], [ 120.083564000693599, 36.36272242108209 ], [ 120.083639176019915, 36.362700922382608 ], [ 120.084439869924651, 36.362608517516662 ], [ 120.084555835613031, 36.362588954706851 ], [ 120.084685265260134, 36.362537205734704 ], [ 120.085139408495621, 36.362500270681984 ], [ 120.085238807147817, 36.362524832389248 ], [ 120.085349913077195, 36.362525927672714 ], [ 120.085579582873919, 36.362496728772683 ], [ 120.085681001119937, 36.362516462555611 ], [ 120.085786458553571, 36.362526540489824 ], [ 120.085886004579208, 36.362541709260654 ], [ 120.08598607642935, 36.362564661659803 ], [ 120.08609112357729, 36.362580240716305 ], [ 120.08618016134821, 36.362625050231159 ], [ 120.086268115635491, 36.362676970176416 ], [ 120.086351767822904, 36.362734654156206 ], [ 120.086431380822702, 36.362801993984704 ], [ 120.086475063219439, 36.362846739830246 ] ] } }, +{ "type": "Feature", "properties": { "fid": 68, "road_id": "1B2", "name": "1B2", "directionality": "双向", "prohibited": false, "width": 8.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.081546062320513, 36.362953745969911 ], [ 120.081690501565163, 36.36291583940752 ], [ 120.083142781378911, 36.36265352820881 ], [ 120.083170902418885, 36.362647327953837 ], [ 120.083225887707002, 36.362622110748376 ], [ 120.083249969559361, 36.362625566342111 ], [ 120.083267598261926, 36.362637667987634 ], [ 120.083282066117647, 36.362655065612614 ], [ 120.083306010613967, 36.362708573048749 ], [ 120.083398970251295, 36.362875096369173 ] ] } }, +{ "type": "Feature", "properties": { "fid": 69, "road_id": "1D5", "name": "1D5", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.089005136674004, 36.363972235393796 ], [ 120.089652635090758, 36.363464035975099 ] ] } }, +{ "type": "Feature", "properties": { "fid": 70, "road_id": "1D6", "name": "1D6", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.090255250057112, 36.365630672396762 ], [ 120.09090877542063, 36.365130666892099 ] ] } }, +{ "type": "Feature", "properties": { "fid": 71, "road_id": "1D2", "name": "1D2", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.088052793348353, 36.365367390544918 ], [ 120.088084465486034, 36.365269075376347 ], [ 120.08813088430901, 36.365180710803372 ], [ 120.088173148405559, 36.365088717328476 ], [ 120.088207302292219, 36.365038713238057 ], [ 120.088244380048224, 36.365008841416433 ], [ 120.088308027305473, 36.364978738517216 ], [ 120.088636170552846, 36.364940150521896 ], [ 120.088702857218223, 36.364943464642103 ], [ 120.088792568187074, 36.364986664848843 ], [ 120.088869341021677, 36.365069834846253 ], [ 120.089503811575725, 36.365908191330611 ], [ 120.089545211466401, 36.365953873286337 ], [ 120.089580468871532, 36.365978076577392 ], [ 120.089631030621078, 36.365997336405314 ], [ 120.089677174731989, 36.366009075517141 ], [ 120.090175442484551, 36.365988707500577 ], [ 120.090249155876208, 36.365957142666709 ], [ 120.090287265246346, 36.365861520289883 ] ] } }, +{ "type": "Feature", "properties": { "fid": 72, "road_id": "1D3", "name": "1D3", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.09234405160457, 36.368760313672169 ], [ 120.090823255434231, 36.368124141622069 ], [ 120.090772841058111, 36.368095488857691 ], [ 120.090697677531637, 36.368012992058212 ], [ 120.090521549679309, 36.367778587167479 ], [ 120.090499114869644, 36.367701129335117 ], [ 120.090502492659155, 36.367589087295563 ], [ 120.090549847592314, 36.367503005228649 ], [ 120.090600767758076, 36.367458123809485 ], [ 120.090749309859646, 36.367365206024232 ], [ 120.091066000507098, 36.367168662956054 ], [ 120.091165873114306, 36.367142368166867 ] ] } }, +{ "type": "Feature", "properties": { "fid": 73, "road_id": "1E6", "name": "1E6", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.093688743556925, 36.365536730099485 ], [ 120.093511982576331, 36.365466570140619 ], [ 120.093422156068684, 36.365410085183264 ], [ 120.093351294642076, 36.365321824349259 ], [ 120.093280696127692, 36.365237455329414 ], [ 120.093226369902581, 36.365127747665412 ], [ 120.093220354755644, 36.365015558252416 ], [ 120.093917935191428, 36.363338922106976 ], [ 120.093985275019904, 36.363259309107171 ], [ 120.094060071895186, 36.363220633842886 ], [ 120.094130682209382, 36.363201007363763 ], [ 120.094244218018261, 36.363191773600583 ], [ 120.094355639620574, 36.363183073620547 ], [ 120.094459750658331, 36.363196370171003 ], [ 120.094636774551162, 36.36327042194403 ] ] } }, +{ "type": "Feature", "properties": { "fid": 74, "road_id": "1D4", "name": "1D4", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.093293408068646, 36.366481796291062 ], [ 120.092933333336191, 36.366325498830975 ], [ 120.092844968763217, 36.366279080008006 ], [ 120.092760790751313, 36.366213612399868 ], [ 120.092587638637809, 36.36605797990272 ], [ 120.092541358953284, 36.365951638228388 ], [ 120.092478838814145, 36.365847957511157 ], [ 120.090711112149862, 36.363532884108565 ], [ 120.090695178241972, 36.363412763693781 ] ] } }, +{ "type": "Feature", "properties": { "fid": 75, "road_id": "1E2", "name": "1E2", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.090694242131789, 36.363410481187728 ], [ 120.090724567873593, 36.363315384635392 ], [ 120.091001104852097, 36.362663351935851 ], [ 120.091079709837402, 36.362588451321606 ], [ 120.09116992659591, 36.362558117344804 ], [ 120.091236497722491, 36.362548146714381 ], [ 120.094809711628812, 36.362097595295786 ], [ 120.094911803072762, 36.362115719770593 ], [ 120.095090436273722, 36.362190444741557 ] ] } }, +{ "type": "Feature", "properties": { "fid": 76, "road_id": "1E1", "name": "1E1", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.089409363765128, 36.362739214746945 ], [ 120.089438984474327, 36.362668405189808 ], [ 120.089442445967975, 36.362592325587968 ], [ 120.08945592172654, 36.362456143926671 ], [ 120.089495903317044, 36.362365086561951 ], [ 120.089560024529291, 36.362284127166291 ], [ 120.08966411553223, 36.362216105904857 ], [ 120.089752113453997, 36.362141352664061 ], [ 120.089858076677288, 36.362077896414746 ], [ 120.089975978255325, 36.362017543242864 ], [ 120.090106754298318, 36.361962575654481 ], [ 120.090305037578062, 36.361899919941727 ], [ 120.090481810358483, 36.361866084401619 ], [ 120.090587089475221, 36.361835905756926 ], [ 120.090778608940937, 36.36181202081243 ], [ 120.091318288384031, 36.361733339252631 ], [ 120.091489328964585, 36.361672523925577 ], [ 120.091616349658224, 36.361640094609484 ], [ 120.092315067657808, 36.361542850019376 ], [ 120.092420672464897, 36.361543535017141 ], [ 120.092521827798663, 36.361559376985888 ], [ 120.092750939936252, 36.361545072144608 ], [ 120.094102966909347, 36.36143653357518 ], [ 120.094212200618344, 36.361433063846533 ], [ 120.094230808174359, 36.361393102014517 ], [ 120.094595681456013, 36.360520857015224 ] ] } }, +{ "type": "Feature", "properties": { "fid": 77, "road_id": "1E3", "name": "1E3", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.094595008258068, 36.360522466323339 ], [ 120.094686152891754, 36.360309101541752 ], [ 120.094741669904295, 36.360239670215137 ], [ 120.094788813794679, 36.36020833645884 ], [ 120.094844267137887, 36.360184260506408 ], [ 120.094955110155013, 36.360181463975692 ], [ 120.095048187113548, 36.360216617641854 ], [ 120.095782704812734, 36.360521986592822 ] ] } }, +{ "type": "Feature", "properties": { "fid": 78, "road_id": "1E4", "name": "1E4", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.094212368917823, 36.361432661519508 ], [ 120.094279864354775, 36.361528968894099 ], [ 120.094268177112426, 36.361633753129794 ], [ 120.09417907210738, 36.361923607798907 ], [ 120.094181605725851, 36.362030559001866 ], [ 120.09419979030514, 36.362172420993559 ] ] } }, +{ "type": "Feature", "properties": { "fid": 79, "road_id": "1E5", "name": "1E5", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.092524110304709, 36.361558440875712 ], [ 120.092503954436268, 36.361769355742972 ], [ 120.092461427427466, 36.361857457403715 ], [ 120.092412726098445, 36.361946758086866 ], [ 120.092384945774938, 36.362044810343193 ], [ 120.092399007462461, 36.362160365745872 ], [ 120.092426047353896, 36.362398586981627 ] ] } }, +{ "type": "Feature", "properties": { "fid": 80, "road_id": "1D8", "name": "1D8", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.092589247945924, 36.366058653100659 ], [ 120.09251184198304, 36.36613972803513 ], [ 120.092419426422623, 36.366206960559815 ], [ 120.092356304989849, 36.366244847087373 ], [ 120.092279930641126, 36.366260171466628 ], [ 120.091943414271611, 36.366336857032266 ] ] } }, +{ "type": "Feature", "properties": { "fid": 81, "road_id": "1D7", "name": "1D7", "directionality": "双向", "prohibited": false, "width": 10.0, "speed_limit": 30.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.091505218097993, 36.364572746330069 ], [ 120.091284360870119, 36.36475265045776 ], [ 120.091229959175877, 36.364792293666895 ], [ 120.091176788338714, 36.36481543350915 ], [ 120.09105131417509, 36.364821564194891 ], [ 120.090935232947928, 36.364827842254073 ], [ 120.090847414234261, 36.364870524871321 ], [ 120.09075338936573, 36.36493708419809 ] ] } }, +{ "type": "Feature", "properties": { "fid": 82, "road_id": "XC1", "name": "XC1", "directionality": "双向", "prohibited": false, "width": 15.0, "speed_limit": 50.0, "width_limit": 3.5, "height_limit": 3.2 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.087792927807811, 36.377562881777465 ], [ 120.091385653739394, 36.368972058451163 ], [ 120.091460526083807, 36.368784032313748 ], [ 120.091532179811992, 36.368594659780449 ], [ 120.0915831754469, 36.368400427488147 ], [ 120.09161403881302, 36.368209119065178 ], [ 120.091626936877603, 36.368006513650748 ], [ 120.091605481812593, 36.367804665138394 ], [ 120.091559329466705, 36.367607612715716 ], [ 120.09149813568861, 36.367419395570366 ], [ 120.091409026013395, 36.367234628118837 ], [ 120.091292484413458, 36.367043112770624 ], [ 120.090472126419428, 36.365849031958305 ] ] } }, +{ "type": "Feature", "properties": { "fid": 83, "road_id": "XC2", "name": "XC2", "directionality": "双向", "prohibited": false, "width": 15.0, "speed_limit": 50.0, "width_limit": 3.5, "height_limit": 3.2 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.076927347458437, 36.373018590562467 ], [ 120.080520204846152, 36.364429713143245 ], [ 120.080600841225092, 36.36424598910569 ], [ 120.080678932185748, 36.364059309364144 ], [ 120.080763723291099, 36.363879214228518 ], [ 120.080865953873499, 36.363702632456018 ], [ 120.080986580969153, 36.363540837162141 ], [ 120.081122312275099, 36.363397178419227 ], [ 120.08128083680694, 36.363266836261595 ], [ 120.081451267858853, 36.363162274868486 ], [ 120.081632574707953, 36.363076917592657 ], [ 120.081786964548186, 36.363024264344979 ], [ 120.081924556274686, 36.362989166113131 ], [ 120.082105294556015, 36.362950371192547 ], [ 120.083174356230202, 36.362767900506384 ] ] } }, +{ "type": "Feature", "properties": { "fid": 84, "road_id": "FB1", "name": "FB1", "directionality": "双向", "prohibited": true, "width": 15.0, "speed_limit": 50.0, "width_limit": 3.5, "height_limit": 3.8 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.079467258498624, 36.366228095481588 ], [ 120.074334670015787, 36.364082474242814 ] ] } } +] +} diff --git a/public/dianziweilan.json b/public/dianziweilan.json new file mode 100644 index 0000000..3a5b4e9 --- /dev/null +++ b/public/dianziweilan.json @@ -0,0 +1,93 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 120.07177603096052, + 36.370812533360755 + ], + [ + 120.08385709134191, + 36.33999243140878 + ], + [ + 120.08565563667813, + 36.34060862711547 + ], + [ + 120.08669982868061, + 36.34062878164365 + ], + [ + 120.07455220429061, + 36.37193239994289 + ], + [ + 120.07234631337181, + 36.37156118999518 + ], + [ + 120.07177603096052, + 36.370812533360755 + ] + ] + ] + }, + "properties": { + "type": "polygon", + "area": 671992.2620217785, + "perimeter": 6459.222679044949, + "vertices": 6 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 120.09357854630166, + 36.38111581893121 + ], + [ + 120.09150927608138, + 36.38118099552585 + ], + [ + 120.09017484057917, + 36.380485019173435 + ], + [ + 120.10265440053722, + 36.34926707805199 + ], + [ + 120.10434101414667, + 36.34985392006327 + ], + [ + 120.1053224475362, + 36.35065874503395 + ], + [ + 120.09357854630166, + 36.38111581893121 + ] + ] + ] + }, + "properties": { + "type": "polygon", + "area": 731220.4002154289, + "perimeter": 6460.346045623342, + "vertices": 6 + } + } + ] +} \ No newline at end of file diff --git a/public/roadTest.json b/public/roadTest.json new file mode 100644 index 0000000..3e93673 --- /dev/null +++ b/public/roadTest.json @@ -0,0 +1,4044 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09230517220576, + 36.367381582802416 + ], + [ + 120.09167770900461, + 36.36721911602225 + ], + [ + 120.0913366227149, + 36.366868186189656 + ], + [ + 120.09143142316346, + 36.36666437498677 + ], + [ + 120.09201337879351, + 36.366335509359075 + ] + ] + }, + "properties": { + "type": "route", + "length": 162.78959649572573, + "vertices": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09137256463661, + 36.36433252506123 + ], + [ + 120.09150486918158, + 36.36428102945066 + ], + [ + 120.09159356482644, + 36.364280175642165 + ], + [ + 120.09184512256293, + 36.36425479540026 + ], + [ + 120.09200842782454, + 36.36413986456283 + ], + [ + 120.09208367088529, + 36.36406882909753 + ] + ] + }, + "properties": { + "type": "route", + "length": 61.04490311417035, + "vertices": 6 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09288617366393, + 36.36555340785599 + ], + [ + 120.09273870405893, + 36.365539044939844 + ], + [ + 120.0915287526021, + 36.36457782690649 + ] + ] + }, + "properties": { + "type": "route", + "length": 137.12017232525972, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09201039749722, + 36.3663223485837 + ], + [ + 120.09239790163137, + 36.36625117553398 + ], + [ + 120.09274671600467, + 36.36620333245596 + ], + [ + 120.09284761847844, + 36.366067478369665 + ], + [ + 120.09293893040278, + 36.36576239669111 + ], + [ + 120.09287248952515, + 36.36558797745648 + ] + ] + }, + "properties": { + "type": "route", + "length": 116.03103671784747, + "vertices": 6 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08937631267577, + 36.368781461638626 + ], + [ + 120.08721262576732, + 36.36824325483559 + ], + [ + 120.08691716698358, + 36.36857548401697 + ] + ] + }, + "properties": { + "type": "route", + "length": 205.88011200776612, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08723294958376, + 36.368226424165904 + ], + [ + 120.08719779792229, + 36.36807370832067 + ], + [ + 120.0885218008375, + 36.36466057340617 + ], + [ + 120.08921959888754, + 36.36455405501545 + ], + [ + 120.09024031931158, + 36.365425961760586 + ], + [ + 120.09110412356343, + 36.36541765299143 + ], + [ + 120.09202625250308, + 36.36629714803504 + ] + ] + }, + "properties": { + "type": "route", + "length": 676.4236144777767, + "vertices": 7 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08792756657802, + 36.36348328790364 + ], + [ + 120.08825223714979, + 36.36336250891159 + ], + [ + 120.08869036728028, + 36.363356867595606 + ], + [ + 120.08919919277484, + 36.363574392321965 + ], + [ + 120.08935881873, + 36.363691956475236 + ], + [ + 120.0902261778953, + 36.36440251113966 + ], + [ + 120.09079687862882, + 36.36499812450593 + ], + [ + 120.090997753561, + 36.36514542293124 + ], + [ + 120.0909573091334, + 36.36541127109718 + ], + [ + 120.09101033854654, + 36.365277314026464 + ] + ] + }, + "properties": { + "type": "route", + "length": 336.71804083653325, + "vertices": 10 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09306069205658, + 36.361228874971225 + ], + [ + 120.09135553193344, + 36.361506660789026 + ], + [ + 120.0909063138033, + 36.36160727409694 + ], + [ + 120.08989207062153, + 36.362029703667154 + ], + [ + 120.08968506224835, + 36.36240997963872 + ], + [ + 120.08971583939245, + 36.36218959012177 + ], + [ + 120.08970808700641, + 36.362530122068314 + ], + [ + 120.0898585938556, + 36.362934472697475 + ], + [ + 120.090001971109, + 36.36314287126521 + ], + [ + 120.0893334288427, + 36.36365482393761 + ] + ] + }, + "properties": { + "type": "route", + "length": 467.84154251293944, + "vertices": 10 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09098877831384, + 36.36513833477584 + ], + [ + 120.0911772575096, + 36.365287187002956 + ] + ] + }, + "properties": { + "type": "route", + "length": 19.583086471890734, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09101186059554, + 36.36513954768839 + ], + [ + 120.09099329944898, + 36.36496323202268 + ], + [ + 120.09151485670287, + 36.364598049422725 + ], + [ + 120.0913657222748, + 36.36434980994373 + ] + ] + }, + "properties": { + "type": "route", + "length": 92.9146913370116, + "vertices": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.090001971109, + 36.36314287126521 + ], + [ + 120.09135910939563, + 36.36435064875086 + ] + ] + }, + "properties": { + "type": "route", + "length": 150.0089749375779, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09088538400353, + 36.36394253171847 + ], + [ + 120.09027934740698, + 36.364367914572895 + ] + ] + }, + "properties": { + "type": "route", + "length": 59.652779847958584, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09064664369039, + 36.3641889951753 + ], + [ + 120.09040593611427, + 36.36401248427619 + ] + ] + }, + "properties": { + "type": "route", + "length": 24.154011766447233, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08589080465886, + 36.36844224827041 + ], + [ + 120.08564796103846, + 36.36843459242783 + ], + [ + 120.08521830483292, + 36.36831227165073 + ], + [ + 120.08475148202885, + 36.36818032319775 + ], + [ + 120.08451608795949, + 36.368119358154374 + ], + [ + 120.0842366403446, + 36.36785917973091 + ], + [ + 120.08398245809924, + 36.36763868672873 + ], + [ + 120.08390026534774, + 36.36736331225091 + ], + [ + 120.08540243804345, + 36.363466059921684 + ], + [ + 120.08523596026582, + 36.363334565022875 + ], + [ + 120.08570873979541, + 36.363313401248114 + ], + [ + 120.0866002235347, + 36.36351114783576 + ], + [ + 120.08666522707543, + 36.36317447504026 + ], + [ + 120.08793678952476, + 36.36348169431693 + ], + [ + 120.08760418634937, + 36.36380429963533 + ], + [ + 120.08729427698162, + 36.364552572481195 + ], + [ + 120.08742457017748, + 36.3647409752254 + ], + [ + 120.08840725156799, + 36.36498441549616 + ] + ] + }, + "properties": { + "type": "route", + "length": 1026.2698066593239, + "vertices": 18 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08418129191735, + 36.36275905083052 + ], + [ + 120.08401594324052, + 36.36214176727874 + ] + ] + }, + "properties": { + "type": "route", + "length": 58.05483600474621, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08538902061659, + 36.36264102072047 + ], + [ + 120.0851151617334, + 36.36191830629598 + ] + ] + }, + "properties": { + "type": "route", + "length": 69.47934191449849, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08696275735993, + 36.368598337441455 + ], + [ + 120.08676056100124, + 36.368557021718075 + ], + [ + 120.08632888419697, + 36.36857779540632 + ], + [ + 120.08587444779968, + 36.368449059174196 + ], + [ + 120.08615912089394, + 36.36766110636902 + ], + [ + 120.08615125496607, + 36.36740498457494 + ], + [ + 120.0856620936718, + 36.36743296087217 + ], + [ + 120.08523300257043, + 36.367067746587594 + ], + [ + 120.08588356829863, + 36.36570067996333 + ], + [ + 120.08664629820069, + 36.36356727020478 + ] + ] + }, + "properties": { + "type": "route", + "length": 603.9535035021506, + "vertices": 10 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08739979258549, + 36.36473455839161 + ], + [ + 120.08721939146311, + 36.36477621563951 + ], + [ + 120.08672601255077, + 36.36591885945835 + ], + [ + 120.08591231448003, + 36.36569707704753 + ] + ] + }, + "properties": { + "type": "route", + "length": 189.02149174380116, + "vertices": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08677953574201, + 36.36592167306099 + ], + [ + 120.08623303832319, + 36.36737092907533 + ] + ] + }, + "properties": { + "type": "route", + "length": 139.26208694617264, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08312416302671, + 36.36304864462524 + ], + [ + 120.08288748886454, + 36.3623355510006 + ] + ] + }, + "properties": { + "type": "route", + "length": 67.86539115264556, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08522194570449, + 36.36340241469853 + ], + [ + 120.08345316775363, + 36.36369549453184 + ], + [ + 120.08327479059324, + 36.36359405529755 + ], + [ + 120.08327236037486, + 36.3634277169362 + ], + [ + 120.08318369784584, + 36.363272184719 + ], + [ + 120.08312861685243, + 36.36307189246005 + ], + [ + 120.08286595279525, + 36.36311432897431 + ], + [ + 120.08241989195703, + 36.363274969463085 + ], + [ + 120.0816854162295, + 36.363405089129685 + ], + [ + 120.08143650879357, + 36.36382669570677 + ], + [ + 120.08145026746105, + 36.364205868916365 + ], + [ + 120.08134168287485, + 36.364376593157004 + ], + [ + 120.08098087606777, + 36.36445988921981 + ], + [ + 120.08026631634905, + 36.36426374077572 + ] + ] + }, + "properties": { + "type": "route", + "length": 491.878909448041, + "vertices": 14 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08395030909857, + 36.36740941562921 + ], + [ + 120.07752053849707, + 36.36574389477443 + ] + ] + }, + "properties": { + "type": "route", + "length": 501.87568839052494, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.07927044309683, + 36.36650247286561 + ], + [ + 120.0795124959652, + 36.36589128474989 + ] + ] + }, + "properties": { + "type": "route", + "length": 58.98751787127175, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.07900621808542, + 36.36672125845379 + ], + [ + 120.07730103600278, + 36.366301614916814 + ] + ] + }, + "properties": { + "type": "route", + "length": 132.4939161922659, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08159945071007, + 36.36738194951049 + ], + [ + 120.07932832543008, + 36.36680469924859 + ] + ] + }, + "properties": { + "type": "route", + "length": 176.9636886525936, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08003142286783, + 36.364236035021264 + ], + [ + 120.07911468577812, + 36.363998552691385 + ] + ] + }, + "properties": { + "type": "route", + "length": 71.5601447039514, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08091309942165, + 36.3626273127474 + ], + [ + 120.08080389703014, + 36.36247588347341 + ], + [ + 120.08077703344766, + 36.36203109005059 + ], + [ + 120.08051700666972, + 36.36201845994045 + ], + [ + 120.08010806645714, + 36.3619262052389 + ], + [ + 120.07993765818398, + 36.36188662083374 + ] + ] + }, + "properties": { + "type": "route", + "length": 121.15517040691766, + "vertices": 6 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08078194742322, + 36.362018680887395 + ], + [ + 120.08091331645444, + 36.36194325301212 + ], + [ + 120.08279049590921, + 36.36163138202989 + ] + ] + }, + "properties": { + "type": "route", + "length": 154.446605497014, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08751970339976, + 36.37565454180427 + ], + [ + 120.08730242957928, + 36.37568597132966 + ], + [ + 120.08423512802648, + 36.37488192929542 + ], + [ + 120.08293469985733, + 36.37454514579447 + ], + [ + 120.08356071672048, + 36.372933956442 + ] + ] + }, + "properties": { + "type": "route", + "length": 512.7478877138294, + "vertices": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08806084691777, + 36.374095578380725 + ], + [ + 120.08479915160945, + 36.37325094219152 + ], + [ + 120.08417053988273, + 36.374921792091214 + ] + ] + }, + "properties": { + "type": "route", + "length": 415.05756743061056, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.07753355063686, + 36.3732848225724 + ], + [ + 120.07763378918028, + 36.37333217223772 + ], + [ + 120.07957397474819, + 36.373808006089966 + ] + ] + }, + "properties": { + "type": "route", + "length": 159.31515020326955, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08591986722104, + 36.38057484780335 + ], + [ + 120.08776057260889, + 36.37586396960593 + ], + [ + 120.08093146293335, + 36.37409542816977 + ], + [ + 120.07973281993368, + 36.37374490745048 + ], + [ + 120.07916930729012, + 36.37397950540186 + ], + [ + 120.07695895140692, + 36.373306801294795 + ] + ] + }, + "properties": { + "type": "route", + "length": 1304.3465628320484, + "vertices": 6 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08297098405372, + 36.374544799499674 + ], + [ + 120.07989284416612, + 36.3737378155829 + ] + ] + }, + "properties": { + "type": "route", + "length": 240.4973325546714, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08626993836283, + 36.37045159024551 + ], + [ + 120.08701628209222, + 36.36860115169873 + ] + ] + }, + "properties": { + "type": "route", + "length": 178.89342815576026, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.0926748715534, + 36.372125539144385 + ], + [ + 120.08845798582304, + 36.37103902738968 + ], + [ + 120.08933529482857, + 36.36882316170714 + ], + [ + 120.09155891177294, + 36.369350820419626 + ] + ] + }, + "properties": { + "type": "route", + "length": 715.0489974910035, + "vertices": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08846340311582, + 36.37105274497372 + ], + [ + 120.08098015358489, + 36.36911470251917 + ] + ] + }, + "properties": { + "type": "route", + "length": 584.0511364943209, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09332654979026, + 36.37041255691754 + ], + [ + 120.08914763988895, + 36.36933053406705 + ], + [ + 120.08967337847756, + 36.36920472605886 + ], + [ + 120.0891495596892, + 36.369325685044885 + ] + ] + }, + "properties": { + "type": "route", + "length": 407.39462774791593, + "vertices": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08480322716463, + 36.37325734386894 + ], + [ + 120.0835652601045, + 36.37294394427724 + ], + [ + 120.07965998714347, + 36.37192176795242 + ], + [ + 120.07734382333385, + 36.371327143433824 + ], + [ + 120.076662978817, + 36.373112766550975 + ], + [ + 120.07725990975308, + 36.37322463046436 + ] + ] + }, + "properties": { + "type": "route", + "length": 799.399790928904, + "vertices": 6 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.07797357574425, + 36.3715063157258 + ], + [ + 120.07729372853609, + 36.37322269885922 + ], + [ + 120.07752732142379, + 36.37326717093007 + ] + ] + }, + "properties": { + "type": "route", + "length": 183.4804764842342, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.07775009763814, + 36.37030665375086 + ], + [ + 120.07786470011676, + 36.369982822852464 + ] + ] + }, + "properties": { + "type": "route", + "length": 30.958203955234538, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.07739834792335, + 36.37129818431599 + ], + [ + 120.07747771960676, + 36.371097796173245 + ] + ] + }, + "properties": { + "type": "route", + "length": 19.33923433371192, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08095413161786, + 36.369114937353196 + ], + [ + 120.08183055561364, + 36.36686735096304 + ] + ] + }, + "properties": { + "type": "route", + "length": 216.60831002209582, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.0830407404477, + 36.36963737105803 + ], + [ + 120.08387297994852, + 36.36746671760158 + ] + ] + }, + "properties": { + "type": "route", + "length": 208.87803589036915, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08095537592574, + 36.36910828498173 + ], + [ + 120.07664400302012, + 36.367991450106175 + ] + ] + }, + "properties": { + "type": "route", + "length": 336.51136960966915, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.07805615326527, + 36.369568425641596 + ], + [ + 120.07848473694195, + 36.36848632639525 + ] + ] + }, + "properties": { + "type": "route", + "length": 104.43406188565872, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.07349555029971, + 36.37826793341259 + ], + [ + 120.07630881859174, + 36.37107504317048 + ], + [ + 120.07734647836072, + 36.37131462076432 + ] + ] + }, + "properties": { + "type": "route", + "length": 773.5540214246104, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.07673425752165, + 36.37313400134991 + ], + [ + 120.07663359897522, + 36.37344895634878 + ], + [ + 120.07351705516074, + 36.38125511192311 + ] + ] + }, + "properties": { + "type": "route", + "length": 783.7709005507754, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.0735213193717, + 36.38062612238478 + ], + [ + 120.07441210700473, + 36.378543681132804 + ] + ] + }, + "properties": { + "type": "route", + "length": 202.50472221588058, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.07680978142153, + 36.37330821970944 + ], + [ + 120.07358844334514, + 36.381627339904966 + ], + [ + 120.0737899611933, + 36.3811187064606 + ], + [ + 120.07368375288935, + 36.38151182054548 + ] + ] + }, + "properties": { + "type": "route", + "length": 887.221900940306, + "vertices": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.07663846871903, + 36.37328457406789 + ], + [ + 120.07570570695563, + 36.37302345251129 + ], + [ + 120.07551464247457, + 36.37311036848743 + ] + ] + }, + "properties": { + "type": "route", + "length": 89.65657106331508, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.07590464035358, + 36.37522835557089 + ], + [ + 120.07481144396704, + 36.37491592746626 + ] + ] + }, + "properties": { + "type": "route", + "length": 86.17220437064036, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.07418009596611, + 36.37842578181452 + ], + [ + 120.07242810266762, + 36.377981650538445 + ], + [ + 120.0722409479807, + 36.378089066018205 + ], + [ + 120.0720308787138, + 36.378619274663635 + ], + [ + 120.07183194547517, + 36.37866517507846 + ], + [ + 120.07104162425168, + 36.37847016393852 + ] + ] + }, + "properties": { + "type": "route", + "length": 281.45214612146793, + "vertices": 6 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.06969532738111, + 36.378332061850536 + ], + [ + 120.0699124652238, + 36.378281965002344 + ], + [ + 120.07199986677179, + 36.37882277427982 + ], + [ + 120.07242486799254, + 36.378082043116144 + ], + [ + 120.07429282516037, + 36.37851278102013 + ] + ] + }, + "properties": { + "type": "route", + "length": 399.07163311206614, + "vertices": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.06964158690508, + 36.37813779606164 + ], + [ + 120.06884897469102, + 36.38004687105683 + ] + ] + }, + "properties": { + "type": "route", + "length": 185.07116634023473, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.07355113998642, + 36.38063384746582 + ], + [ + 120.07333167932916, + 36.38052381826429 + ], + [ + 120.07294952615175, + 36.38148836314147 + ] + ] + }, + "properties": { + "type": "route", + "length": 112.26867801537274, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.07363082540019, + 36.3608459936879 + ], + [ + 120.07119391453114, + 36.366914904379094 + ], + [ + 120.07005338433488, + 36.36747020863234 + ], + [ + 120.06670711919823, + 36.37574972382062 + ], + [ + 120.068458023247, + 36.376309777677704 + ] + ] + }, + "properties": { + "type": "route", + "length": 1625.9717413260664, + "vertices": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.0669764608976, + 36.3757712630809 + ], + [ + 120.06690220215596, + 36.375654580112865 + ], + [ + 120.07011328384122, + 36.36758065413142 + ], + [ + 120.0711722058949, + 36.3670365545714 + ] + ] + }, + "properties": { + "type": "route", + "length": 884.8164787670341, + "vertices": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.07108365663095, + 36.37848218815816 + ], + [ + 120.06965209128967, + 36.37811128557664 + ], + [ + 120.07119794680773, + 36.37408806925693 + ] + ] + }, + "properties": { + "type": "route", + "length": 498.90409746334626, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.06760325461443, + 36.3759531690378 + ], + [ + 120.06685275652173, + 36.37574895154551 + ] + ] + }, + "properties": { + "type": "route", + "length": 58.84994724698121, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.06886171061414, + 36.379923499405294 + ], + [ + 120.06867454733292, + 36.38003090915198 + ], + [ + 120.06770194354634, + 36.37977890409243 + ], + [ + 120.06756561330111, + 36.379636395732526 + ], + [ + 120.06883891985544, + 36.37633181337615 + ], + [ + 120.06869251239446, + 36.37624515780267 + ], + [ + 120.06758882530006, + 36.37595917394616 + ] + ] + }, + "properties": { + "type": "route", + "length": 527.2287750838923, + "vertices": 7 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.068458023247, + 36.376309777677704 + ], + [ + 120.06867862099783, + 36.376499882195596 + ], + [ + 120.0673802872737, + 36.37985934772181 + ], + [ + 120.0688105059539, + 36.38015015625953 + ], + [ + 120.06963568867532, + 36.37831660974727 + ] + ] + }, + "properties": { + "type": "route", + "length": 636.3381450169396, + "vertices": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.07117750924603, + 36.36703602664423 + ], + [ + 120.07229033694234, + 36.36422073838932 + ] + ] + }, + "properties": { + "type": "route", + "length": 271.66494148783744, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.07229623166843, + 36.36422422763676 + ], + [ + 120.07312039327692, + 36.36211300008861 + ] + ] + }, + "properties": { + "type": "route", + "length": 203.49775403418585, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08996697325493, + 36.387567278794684 + ], + [ + 120.09154256936812, + 36.3836224973851 + ], + [ + 120.09137918382478, + 36.38389815324613 + ], + [ + 120.09152385319823, + 36.383738254609916 + ] + ] + }, + "properties": { + "type": "route", + "length": 427.2434980466288, + "vertices": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.0838234265996, + 36.385899699288466 + ], + [ + 120.08589762529387, + 36.38641673931029 + ] + ] + }, + "properties": { + "type": "route", + "length": 161.27611583598562, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08618894427211, + 36.38593135502494 + ], + [ + 120.0859803004432, + 36.3864581744462 + ] + ] + }, + "properties": { + "type": "route", + "length": 50.83400421883771, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.0898222666505, + 36.38770442602781 + ], + [ + 120.08986399516903, + 36.38784816393086 + ], + [ + 120.08910001666737, + 36.38977735528187 + ], + [ + 120.09059132827343, + 36.390163410549874 + ], + [ + 120.09168595284534, + 36.387149985629186 + ] + ] + }, + "properties": { + "type": "route", + "length": 604.6625337047785, + "vertices": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08995467413106, + 36.387564094838346 + ], + [ + 120.08813044903694, + 36.38710279239363 + ] + ] + }, + "properties": { + "type": "route", + "length": 142.01539401795324, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09157061828544, + 36.3835859029222 + ], + [ + 120.0915485002757, + 36.38347053843841 + ] + ] + }, + "properties": { + "type": "route", + "length": 10.728398375193786, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09155389571897, + 36.38355964646194 + ], + [ + 120.09155389571897, + 36.38355964646194 + ] + ] + }, + "properties": { + "type": "route", + "length": 0, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09155044439787, + 36.383602608636224 + ], + [ + 120.09161538945544, + 36.383575565665254 + ] + ] + }, + "properties": { + "type": "route", + "length": 5.4281795274900615, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.0915386318517, + 36.38363244175932 + ], + [ + 120.09157504152739, + 36.383608976224835 + ] + ] + }, + "properties": { + "type": "route", + "length": 3.4597486153776926, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08406248974211, + 36.38592154333921 + ], + [ + 120.08804084790651, + 36.375875633652385 + ], + [ + 120.0886456585335, + 36.37593035096872 + ], + [ + 120.09094335303304, + 36.37652977763226 + ], + [ + 120.09153986250209, + 36.375009026388575 + ], + [ + 120.09140434164537, + 36.374942332123744 + ], + [ + 120.08804973663642, + 36.374089554876925 + ], + [ + 120.08742759225359, + 36.375660772798575 + ], + [ + 120.08804342883242, + 36.375886019668286 + ] + ] + }, + "properties": { + "type": "route", + "length": 1815.6868407478473, + "vertices": 9 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09186490457566, + 36.38719630929926 + ], + [ + 120.09208087278631, + 36.38706610635041 + ], + [ + 120.093751101913, + 36.38749844576519 + ], + [ + 120.09709499877324, + 36.379218192376996 + ], + [ + 120.0965463516915, + 36.37827858404046 + ], + [ + 120.09809276969479, + 36.37437186354997 + ] + ] + }, + "properties": { + "type": "route", + "length": 1423.2847301134298, + "vertices": 6 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08619672491872, + 36.385856585872524 + ], + [ + 120.08955530592058, + 36.37734098737437 + ], + [ + 120.08983475491266, + 36.377183097887425 + ], + [ + 120.09057310314917, + 36.377407155107015 + ], + [ + 120.09098355776787, + 36.37643896054056 + ], + [ + 120.08960986897455, + 36.3799426068876 + ], + [ + 120.08937420817705, + 36.38002412358862 + ], + [ + 120.08865255862082, + 36.379826316611876 + ] + ] + }, + "properties": { + "type": "route", + "length": 1412.884912665497, + "vertices": 8 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08781079035258, + 36.382238448493936 + ], + [ + 120.08816631747482, + 36.38217097593321 + ], + [ + 120.08958828507737, + 36.38256571614574 + ] + ] + }, + "properties": { + "type": "route", + "length": 138.85532936069995, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08362494311328, + 36.38516931786571 + ], + [ + 120.08637948106738, + 36.385935722514155 + ], + [ + 120.08776304303926, + 36.38235902240571 + ] + ] + }, + "properties": { + "type": "route", + "length": 560.8431074549671, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08957873591723, + 36.38258983162182 + ], + [ + 120.0897409319115, + 36.38284452015998 + ], + [ + 120.08803158005426, + 36.38716107987992 + ], + [ + 120.08973161435325, + 36.38760119711017 + ] + ] + }, + "properties": { + "type": "route", + "length": 575.4724142834314, + "vertices": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09458590080749, + 36.37675758808924 + ], + [ + 120.09122470218325, + 36.37589837956023 + ] + ] + }, + "properties": { + "type": "route", + "length": 261.9846857219177, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08921264464772, + 36.36928321708934 + ], + [ + 120.0892037838252, + 36.369222118283425 + ] + ] + }, + "properties": { + "type": "route", + "length": 5.654114785242731, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.0892037838252, + 36.369222118283425 + ], + [ + 120.08920402012004, + 36.36923821709157 + ] + ] + }, + "properties": { + "type": "route", + "length": 1.4797542782217472, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09018943424715, + 36.37316059928419 + ], + [ + 120.09007256811093, + 36.373472471132416 + ] + ] + }, + "properties": { + "type": "route", + "length": 29.950364836901603, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09033869767251, + 36.372750200039846 + ], + [ + 120.09045172245614, + 36.37244802566699 + ] + ] + }, + "properties": { + "type": "route", + "length": 29.014828980224827, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09078621642264, + 36.371636541162616 + ], + [ + 120.09067464036235, + 36.37190166998985 + ] + ] + }, + "properties": { + "type": "route", + "length": 25.740087719302405, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09947184186667, + 36.35210633163703 + ], + [ + 120.09931946999279, + 36.351985994409524 + ], + [ + 120.08566527381407, + 36.34850376392216 + ] + ] + }, + "properties": { + "type": "route", + "length": 1080.4628031460388, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09414739125278, + 36.3499180918399 + ], + [ + 120.0945810103047, + 36.34882237370914 + ] + ] + }, + "properties": { + "type": "route", + "length": 105.76268340297358, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.0996017730175, + 36.35200928434351 + ], + [ + 120.09395133740445, + 36.350546181245875 + ], + [ + 120.09122526948046, + 36.3498516926901 + ] + ] + }, + "properties": { + "type": "route", + "length": 653.7066140495766, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09391765563977, + 36.35060641494906 + ], + [ + 120.09405240628755, + 36.35015810637147 + ] + ] + }, + "properties": { + "type": "route", + "length": 42.41241158822809, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09346586231142, + 36.36765926986599 + ], + [ + 120.09254386888756, + 36.36742055080719 + ] + ] + }, + "properties": { + "type": "route", + "length": 71.96171007520692, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09353553103031, + 36.369867939839224 + ], + [ + 120.09176491657155, + 36.36941485106306 + ] + ] + }, + "properties": { + "type": "route", + "length": 138.04131308409038, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.10030192187749, + 36.37510318635573 + ], + [ + 120.10054053809918, + 36.37450029097175 + ], + [ + 120.09980454997174, + 36.37428321160455 + ] + ] + }, + "properties": { + "type": "route", + "length": 116.40341978406042, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09816314304338, + 36.374443251376334 + ], + [ + 120.09841007182462, + 36.374400821530465 + ], + [ + 120.09970193119344, + 36.374708616230905 + ] + ] + }, + "properties": { + "type": "route", + "length": 118.85606775201612, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.0827837435433, + 36.36163419363703 + ], + [ + 120.08419771792393, + 36.36135282338942 + ], + [ + 120.08431885413711, + 36.36127474242235 + ], + [ + 120.08458541371517, + 36.360573024201656 + ], + [ + 120.08452059736261, + 36.36043765697274 + ], + [ + 120.08336274236164, + 36.35941714762354 + ], + [ + 120.08152672923383, + 36.35777398705403 + ] + ] + }, + "properties": { + "type": "route", + "length": 531.4902203453389, + "vertices": 7 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08222497300137, + 36.35837445765859 + ], + [ + 120.08249752290892, + 36.35819878008547 + ], + [ + 120.08270088149493, + 36.35816936522133 + ], + [ + 120.08292613341466, + 36.35812737861852 + ] + ] + }, + "properties": { + "type": "route", + "length": 58.4569780316984, + "vertices": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08026854281822, + 36.36105105977815 + ], + [ + 120.08061019308303, + 36.361071153945474 + ], + [ + 120.08099586877405, + 36.360965828649725 + ], + [ + 120.08134639320153, + 36.3600806269043 + ], + [ + 120.08163119335966, + 36.35934714839872 + ], + [ + 120.08156885753785, + 36.35914856973662 + ], + [ + 120.08132893164141, + 36.35899976193565 + ], + [ + 120.08109615913912, + 36.35887561040241 + ] + ] + }, + "properties": { + "type": "route", + "length": 273.87604789501285, + "vertices": 8 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08359284672527, + 36.35959077025656 + ], + [ + 120.08378764999904, + 36.35944055768201 + ], + [ + 120.08392392500764, + 36.35935271715641 + ], + [ + 120.08414794372588, + 36.359342333054926 + ], + [ + 120.08438118622998, + 36.35926592688579 + ] + ] + }, + "properties": { + "type": "route", + "length": 68.35733253428965, + "vertices": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08749887366383, + 36.33329001257585 + ], + [ + 120.08731652852796, + 36.33300348364993 + ], + [ + 120.08802861164611, + 36.331619307160324 + ], + [ + 120.08654797196392, + 36.331209101762674 + ], + [ + 120.08536802969464, + 36.334439537263556 + ] + ] + }, + "properties": { + "type": "route", + "length": 593.6241440156332, + "vertices": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08777861028389, + 36.34561931335514 + ], + [ + 120.08862574042625, + 36.34331294810648 + ], + [ + 120.08821327333251, + 36.34286046715994 + ], + [ + 120.08765646460553, + 36.342689640706645 + ], + [ + 120.0909967473512, + 36.33424936274383 + ], + [ + 120.0876288088052, + 36.33337685065439 + ] + ] + }, + "properties": { + "type": "route", + "length": 1395.0245282032868, + "vertices": 6 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.10061708806204, + 36.34658193184503 + ], + [ + 120.10046775343444, + 36.346621498025804 + ], + [ + 120.100345028411, + 36.34689574562376 + ], + [ + 120.0996169003548, + 36.34875044527766 + ], + [ + 120.09957375376368, + 36.34884511679346 + ], + [ + 120.09941563825011, + 36.348928428041056 + ], + [ + 120.09930665564038, + 36.34891631668237 + ], + [ + 120.09824470940256, + 36.34865285555329 + ], + [ + 120.09648338276469, + 36.34819447557155 + ], + [ + 120.09496129071057, + 36.34780722194575 + ], + [ + 120.09348049308275, + 36.34743063941993 + ], + [ + 120.09182417289371, + 36.34700167203093 + ], + [ + 120.09003546974988, + 36.346540689236086 + ], + [ + 120.08833119913437, + 36.34611074883166 + ], + [ + 120.0876902631157, + 36.34592631574825 + ], + [ + 120.0876025614143, + 36.345846071985456 + ], + [ + 120.08757028231565, + 36.34574797039514 + ], + [ + 120.08759693372711, + 36.34563752191453 + ], + [ + 120.08795905847049, + 36.34474418745215 + ], + [ + 120.08841824142142, + 36.343576862831824 + ], + [ + 120.08841010811419, + 36.34348961831527 + ], + [ + 120.08835346714383, + 36.3434243236533 + ], + [ + 120.08818382499243, + 36.34336427205331 + ], + [ + 120.0879234713404, + 36.343310635204126 + ], + [ + 120.08756746353059, + 36.34321841255484 + ], + [ + 120.08740659065869, + 36.34317213656247 + ], + [ + 120.08660127511878, + 36.34515640120599 + ], + [ + 120.08605620206576, + 36.346504220277914 + ], + [ + 120.08591252702715, + 36.346579751940624 + ], + [ + 120.0856606715914, + 36.347280665513 + ], + [ + 120.08511570608684, + 36.348678887332035 + ], + [ + 120.08413756177342, + 36.351142691618776 + ], + [ + 120.0830728148407, + 36.35385363205192 + ], + [ + 120.08226159657946, + 36.35585940255423 + ] + ] + }, + "properties": { + "type": "route", + "length": 2704.0212596829656, + "vertices": 34 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08589944495536, + 36.34656142422162 + ], + [ + 120.08524099201816, + 36.34637641133991 + ], + [ + 120.08515318179616, + 36.34625260418839 + ], + [ + 120.08514824225558, + 36.346159890352354 + ], + [ + 120.08609525339409, + 36.34378251151815 + ], + [ + 120.08629684716432, + 36.34372405304932 + ], + [ + 120.08708843338485, + 36.343948366649755 + ] + ] + }, + "properties": { + "type": "route", + "length": 381.4236542325433, + "vertices": 7 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08868595318773, + 36.34606704563805 + ], + [ + 120.08776069386725, + 36.34574760955963 + ] + ] + }, + "properties": { + "type": "route", + "length": 74.8156721998905, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09954412374914, + 36.34869292269233 + ], + [ + 120.09933781593107, + 36.34879902340965 + ], + [ + 120.08875511791787, + 36.346058374301045 + ] + ] + }, + "properties": { + "type": "route", + "length": 844.5324174954981, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08742443978433, + 36.34315957242981 + ], + [ + 120.08919536184197, + 36.33857987615082 + ], + [ + 120.09087754127198, + 36.334314071425126 + ], + [ + 120.09075670543523, + 36.33425870785614 + ], + [ + 120.09057825561159, + 36.3341836069926 + ], + [ + 120.09027722245752, + 36.33412047768223 + ], + [ + 120.08873903069241, + 36.333724291680845 + ], + [ + 120.08725971778536, + 36.33334103543807 + ] + ] + }, + "properties": { + "type": "route", + "length": 1136.8939937761836, + "vertices": 8 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.0872484725758, + 36.33333351980478 + ], + [ + 120.08721659175642, + 36.33332065796784 + ], + [ + 120.08733129875682, + 36.33302363007461 + ] + ] + }, + "properties": { + "type": "route", + "length": 31.261626899731933, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08722515608667, + 36.33332057586008 + ], + [ + 120.0865032475753, + 36.33514464499107 + ], + [ + 120.0856280821977, + 36.33738277495251 + ] + ] + }, + "properties": { + "type": "route", + "length": 391.920406139604, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09966854920403, + 36.37446069920993 + ], + [ + 120.09849597799621, + 36.37418378205329 + ], + [ + 120.09818348216899, + 36.37381044220159 + ], + [ + 120.10457149352335, + 36.35791708797076 + ] + ] + }, + "properties": { + "type": "route", + "length": 1668.279441739451, + "vertices": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09346981074984, + 36.36533105398572 + ], + [ + 120.09339454547242, + 36.36512888107102 + ], + [ + 120.09199894786845, + 36.36391118000241 + ], + [ + 120.09112782291554, + 36.36308045845624 + ], + [ + 120.09144860063954, + 36.362341433154626 + ], + [ + 120.09162993982957, + 36.36223995723443 + ], + [ + 120.09308003669052, + 36.361964627094764 + ], + [ + 120.09520521407936, + 36.361624298840304 + ], + [ + 120.09588440201063, + 36.36154895888838 + ], + [ + 120.09656480476451, + 36.35982977616304 + ], + [ + 120.09644492443934, + 36.360061346160165 + ], + [ + 120.09548459933552, + 36.35981270398036 + ], + [ + 120.09527305563621, + 36.359883527234295 + ], + [ + 120.09486417582957, + 36.36098794459317 + ] + ] + }, + "properties": { + "type": "route", + "length": 1070.2424892599522, + "vertices": 14 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09484001049739, + 36.36165533667965 + ], + [ + 120.0948912679406, + 36.36138316347045 + ], + [ + 120.0949297207375, + 36.36110767493869 + ], + [ + 120.09485086395438, + 36.36095024414157 + ], + [ + 120.09303558942874, + 36.361256628897884 + ], + [ + 120.09289980678223, + 36.36156400558854 + ], + [ + 120.09299501113082, + 36.36196544639187 + ] + ] + }, + "properties": { + "type": "route", + "length": 271.8394147513192, + "vertices": 7 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09428625575757, + 36.3656223683475 + ], + [ + 120.09589720641459, + 36.361552274074334 + ] + ] + }, + "properties": { + "type": "route", + "length": 392.8058998016557, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09461267551909, + 36.36469069860419 + ], + [ + 120.09440369593963, + 36.364648008896346 + ], + [ + 120.0940764282587, + 36.3643691711042 + ], + [ + 120.09470567603067, + 36.362636738755654 + ], + [ + 120.09522711732589, + 36.36253197436174 + ], + [ + 120.09546630868125, + 36.36260532132732 + ] + ] + }, + "properties": { + "type": "route", + "length": 276.2872408388605, + "vertices": 6 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09154657909106, + 36.37501689277013 + ], + [ + 120.09357703868652, + 36.369819455808646 + ], + [ + 120.0936693916783, + 36.36955894958308 + ], + [ + 120.09365908002451, + 36.36942985116358 + ], + [ + 120.09353167335208, + 36.369342681453915 + ], + [ + 120.0931735368105, + 36.36923189604347 + ], + [ + 120.0930637465676, + 36.369198955059325 + ], + [ + 120.09296754560715, + 36.36906116470353 + ], + [ + 120.0929969471349, + 36.36888816444726 + ], + [ + 120.0941368505999, + 36.36602258191677 + ], + [ + 120.09427344390011, + 36.36559287134368 + ], + [ + 120.09388656142157, + 36.365470125893616 + ], + [ + 120.09363944787337, + 36.36536099106821 + ], + [ + 120.09340022273011, + 36.36533065888983 + ], + [ + 120.0932738074196, + 36.36542435561471 + ], + [ + 120.09289539698621, + 36.36553408154041 + ] + ] + }, + "properties": { + "type": "route", + "length": 1047.869968695379, + "vertices": 16 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.0944783899722, + 36.3600075293529 + ], + [ + 120.0952996608588, + 36.35986966549112 + ] + ] + }, + "properties": { + "type": "route", + "length": 62.35972566209423, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09527910223338, + 36.359837380552996 + ], + [ + 120.09533598002608, + 36.35960944643901 + ], + [ + 120.09612212650737, + 36.35981299354144 + ] + ] + }, + "properties": { + "type": "route", + "length": 82.74304073307042, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.096212837022, + 36.3598364796818 + ], + [ + 120.09655391829702, + 36.35981694024058 + ], + [ + 120.09948272103922, + 36.352163071420605 + ] + ] + }, + "properties": { + "type": "route", + "length": 761.9126307305593, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.10080829093131, + 36.3464945351681 + ], + [ + 120.10043029333524, + 36.346370079170505 + ], + [ + 120.09959301564085, + 36.348652409781636 + ] + ] + }, + "properties": { + "type": "route", + "length": 249.20859046116502, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09461302537272, + 36.34866959726008 + ], + [ + 120.09496506258267, + 36.34785187951812 + ] + ] + }, + "properties": { + "type": "route", + "length": 79.6001974952838, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.10047094334482, + 36.349668784264594 + ], + [ + 120.09486349029181, + 36.34820530811956 + ] + ] + }, + "properties": { + "type": "route", + "length": 438.162698811968, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.09968433301103, + 36.35208818298911 + ], + [ + 120.09649269386098, + 36.360189492522046 + ] + ] + }, + "properties": { + "type": "route", + "length": 781.5857758168117, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.1084017575797, + 36.34524344946434 + ], + [ + 120.10818829938454, + 36.344869168781266 + ], + [ + 120.10944020204653, + 36.341870026768405 + ], + [ + 120.10803914695866, + 36.34150735195723 + ], + [ + 120.10725579706572, + 36.34340483839853 + ] + ] + }, + "properties": { + "type": "route", + "length": 622.2382170950949, + "vertices": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.10598708179874, + 36.34328909030322 + ], + [ + 120.10491392582779, + 36.34301126765254 + ], + [ + 120.1046360887632, + 36.34363057297565 + ] + ] + }, + "properties": { + "type": "route", + "length": 144.37124535477292, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.10446915140714, + 36.34372028437895 + ], + [ + 120.104291482044, + 36.34375404603695 + ], + [ + 120.10282006913413, + 36.343319923998436 + ], + [ + 120.10175273033995, + 36.34610099109137 + ], + [ + 120.10110643772384, + 36.34590707285294 + ], + [ + 120.10082737281708, + 36.34644630399199 + ] + ] + }, + "properties": { + "type": "route", + "length": 502.7726389137765, + "vertices": 6 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.1046299334416, + 36.35785245412331 + ], + [ + 120.10590483452803, + 36.354380675219055 + ], + [ + 120.10705446138579, + 36.35380091090599 + ], + [ + 120.11013200019897, + 36.34577106394202 + ], + [ + 120.10835286840677, + 36.34528396496079 + ] + ] + }, + "properties": { + "type": "route", + "length": 1346.1629422985443, + "vertices": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.0996317040665, + 36.35200552836603 + ], + [ + 120.10034705617034, + 36.350269463473275 + ], + [ + 120.10100085534613, + 36.35045023879539 + ], + [ + 120.10128261195482, + 36.35038513046339 + ], + [ + 120.10220641419947, + 36.34797824778102 + ], + [ + 120.10210528375424, + 36.34780250560728 + ], + [ + 120.10131424506908, + 36.34760920781633 + ], + [ + 120.10296201809032, + 36.34348001702287 + ], + [ + 120.10457446574516, + 36.343897475621695 + ] + ] + }, + "properties": { + "type": "route", + "length": 1077.152315209597, + "vertices": 9 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.10037234347335, + 36.35024149628963 + ], + [ + 120.10026657133096, + 36.35004154163596 + ], + [ + 120.10045391402322, + 36.34967587969143 + ], + [ + 120.10131837369028, + 36.34759877232304 + ] + ] + }, + "properties": { + "type": "route", + "length": 257.85726477519586, + "vertices": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.10156786533415, + 36.34686031233486 + ], + [ + 120.10062565385557, + 36.34658184843099 + ] + ] + }, + "properties": { + "type": "route", + "length": 74.60065192052686, + "vertices": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08536685756032, + 36.33435947367016 + ], + [ + 120.0849328490506, + 36.3344597204537 + ], + [ + 120.08324470911208, + 36.33407548407589 + ], + [ + 120.07995738392427, + 36.34213065765486 + ], + [ + 120.0804960279807, + 36.34309446383787 + ], + [ + 120.07362650157614, + 36.36085690993681 + ] + ] + }, + "properties": { + "type": "route", + "length": 2752.0332564018036, + "vertices": 6 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08561568098223, + 36.34854484462884 + ], + [ + 120.08532542651335, + 36.348604470387286 + ], + [ + 120.08240268026812, + 36.35607114887323 + ] + ] + }, + "properties": { + "type": "route", + "length": 742.2333271457335, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.0762815502121, + 36.3710792318983 + ], + [ + 120.076059427581, + 36.37098269533194 + ], + [ + 120.0756218348242, + 36.37088037851289 + ], + [ + 120.07547520100854, + 36.37069877261705 + ], + [ + 120.07760727388532, + 36.36538489943473 + ], + [ + 120.07786946422677, + 36.36530920718269 + ], + [ + 120.07834816295271, + 36.365411123979456 + ], + [ + 120.07859351253397, + 36.36530897219525 + ], + [ + 120.08225672600086, + 36.35585132626768 + ] + ] + }, + "properties": { + "type": "route", + "length": 1575.0077426746834, + "vertices": 9 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.0822418290994, + 36.35605644286631 + ], + [ + 120.08242678751157, + 36.356347028516716 + ], + [ + 120.08341363966312, + 36.35654874127707 + ] + ] + }, + "properties": { + "type": "route", + "length": 105.72468266719702, + "vertices": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.08209552623437, + 36.35636193239104 + ], + [ + 120.0830414092656, + 36.356629059161484 + ], + [ + 120.08318455252996, + 36.35685394294988 + ], + [ + 120.08277941540528, + 36.35784267518146 + ], + [ + 120.08285665515287, + 36.358061535062156 + ], + [ + 120.08439596791624, + 36.359244623330085 + ], + [ + 120.0853160013667, + 36.35999109928532 + ], + [ + 120.08554635980552, + 36.360271708409584 + ], + [ + 120.08591048258872, + 36.36069743406884 + ], + [ + 120.08605802593735, + 36.361221724513854 + ], + [ + 120.08601933099384, + 36.3613884560381 + ], + [ + 120.08585376022205, + 36.36159965803264 + ], + [ + 120.08557224141904, + 36.36175873503844 + ], + [ + 120.08514254999201, + 36.361912574139275 + ], + [ + 120.08291487719745, + 36.362329819293315 + ], + [ + 120.08091567783082, + 36.3626184094076 + ], + [ + 120.08075696883891, + 36.363019190728835 + ], + [ + 120.0809209257146, + 36.3632605144509 + ], + [ + 120.08117759570642, + 36.36337119198838 + ], + [ + 120.0827437099262, + 36.363003555432854 + ], + [ + 120.08289334092987, + 36.36310859714997 + ], + [ + 120.08337308307458, + 36.36300086874228 + ], + [ + 120.08412738870126, + 36.36282064049403 + ], + [ + 120.08533463129045, + 36.362669343707786 + ], + [ + 120.08601355527266, + 36.36267947763753 + ], + [ + 120.0863485288711, + 36.36279937605806 + ], + [ + 120.08655808925704, + 36.36306354646299 + ], + [ + 120.08670027899227, + 36.363221891343784 + ] + ] + }, + "properties": { + "type": "route", + "length": 1549.5830810044822, + "vertices": 28 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 120.0838549056216, + 36.35720231320198 + ], + [ + 120.08345355559337, + 36.35653211821028 + ] + ] + }, + "properties": { + "type": "route", + "length": 68.4521211261467, + "vertices": 2 + } + } + ] +} \ No newline at end of file diff --git a/src/assets/images/aircraft.png b/src/assets/images/aircraft.png new file mode 100644 index 0000000000000000000000000000000000000000..9a0f560f5c5d45f0caec83375e2c5d13f3dd4c6e GIT binary patch literal 1373 zcmV-j1)}kUY2``5DAg)mf%A0N`hF3N5PcR6? zxy6wAV4Ucb1(=D-Tx=I9nv_Ac-G=4QTIg-Lz3si8Q|`sWDs36=$zO8v-TU41o%8#? zbH4L^7vO)~1_VJEL7DOU{l)kyhdT*${M?8qDh&R(EG#ZAeuQ0mlpT;KZin^DXU8M( zwL1!OmF`)G!%>5MY7|*MMz%x%XK$EWN?K8XVR`V*@;i}$U8~jZ%Gc&rSHK)Z=Mw0- zqN3uiL?TfLd4^%D1Ptjfv!LYn( zu~<}_`N_Ix(b$R6$=J!-a%I?{Nq(9DRqK$8F$}pGh_b?(-a{4*Jbge1J5}6iwOak) z#ot#dt>y7SgTc^=pBGSKnd~bd2he`Uf}=lNTX6jBcxatt31gEnxO|m`7HeTE!^Yu{ z`2GZ)b|Lgvt^H zn2pLcVvW@Wso75k;u(oZ`JpdJzJ>X5QY0bVLV%7}PauBe!|%eWxJxM6wF4Tf3czAg zLY+ws33hpk1#OM9e=haC{SiGhn7AoHuGxJpBj;sJr;xsi6Ob zveXQ(U%%#dxm@mt+un7JkB^7(djcKDIgX=jUMW=nvv~B3m5|57DC~4P&&6V~^VqFH zQTO%r-QU>Qh=lgoi4cX#ed(tg7>d%8k`i`Zth`=tQ%g%rlR}|5h|UgRR|9S%3$|2P zsK^wNKNKadnD3c)ZU`j4ASbl7wLOVOt3}5uQO_Wbqw%#Uw(jokR%{Q7cD1kpN}Wzu zitSz+sMqTyhjh_Uq~{D0a2@|Rm?FTe@RU%8P|Tw9bkO0XOe3@#r4sKBWz@g15OI-6 zWI=Q!gu`Jn%tK~e!QEhu#)VYKU^T0g8T6B)aIjhpmxvU@Fr>$4s)R|%4KtLiL;y+8 zijEWT?}R}lxo%Qhy^@(B?Lbm#3^ncT?WGvL1pL<^=X4eC9}Npq5_X-Q7s3n|9v&V( zYPZ`d-Z@`P^SZ%`Gavcj+pw9cAZ`Fu{u@rs_)aV+9Up$cS=)(MxUr>B1% z`|^h?&!0Nw?da&RdOV)l=H_N=!+rZ~YK6{*7m){0{|l7AP~w{z%_{^59f}EMr)Zd} zA|)OrGi5f_0I6m$D1MX(Y$M3H5v8=axR`!IG-*!Ncq68F`bDE+W;C141=$Sdy8`KB fge>1T(^iDyO!}5Zt`cUPgU$^ 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 literal 0 HcmV?d00001 diff --git a/src/assets/images/noPeopleCar.png b/src/assets/images/noPeopleCar.png new file mode 100644 index 0000000000000000000000000000000000000000..6374fd6b351cc4cad1deaae62e1c670ab1c109f3 GIT binary patch literal 1882 zcmV-g2c`IlP)(|2 zlphdZ2qgT0#3P6|2!sUWgAf5i77t-10Xt5H#P;>fc*f&9_i-NVeeO&W!b8p%N4h%q zan4?Quf6s@m%(+6e@}lt!5BPYv|(DSqtpL+@F>7>1HkCB-KZV0(S`q=o*7ZvPHUwG zwboV}vo~K!pGnliX&7up;By-WWk2-c$m5^f1&rNlttn$Wp!Pb0aqC-LKyB{sO=hIbg2~^k0w7OrXta;}DQad;o*9ao~92qs{Jd2~Gy>;Jwic zi=TgXORZiF{_)#NIyE(AHUv8H(5VsYd+!>pMr!ltZ=N~vQp-i&9U`H8Z>_ocmgEI0lRuVISSN|F%6cS3H1= z8KsANVhF1m^!i#GBaKSX z$wXmYLE6;H)`g&s1&(H9Q{oy=p&F%932KJKfw}VK?>CQ*eQA<-UY5&$L{asVJ&Med z%Z}Ne?tAUk^s?Ny^_P49AJ$f$?W+v!5+e5((hwzv<0Wwcwo_KXnIfglj8sMuvwY!* z$mf{RIzw=RaON$Abh+dhcLoWaGwQuqEh4|awDpGlwqG zIKjAuEQ^2u1ql*(CJ54+V}!nUBesrkT;~LX;F+>{21q8Hy9N}->e-k@Jh4u_nIRI3 zaakw1qah~{6bxwSsg~9WmsWJfQX(lrI)$=4XUQfoYcrSFl^%pWfZ065qeH2fJaM{a z8EwpV!LqfyTa+e)MhSOaaH0a6fxFF?JLfO=ysJQ6PVtJku+pUIQEUuFF2wCfnZ1IRmmlb?F* z>5nU=ox68|@OC?DtzKWhaPBxFU^BHTvaTieUGmj!*4;iq?kl*`$dQD~&I7k1PYx81 z+J&{n51utCQ&<2Ia2X{nt0bQ8Ff=qCX^S~_=R66Ve@dy#VYIvM=IHX95vfRfN zLL$q`_7r*bz~85oghPVTO1H^jY$I#d@YT>pbvy+-^Jq#ZE9eP`_N&1#H z%Al4)tNmJ{+Kn*5lNy>x+@K?t=w!{dwFCW^Q%GNQq94Kh97DDiqqVu0uxAk$ZIg&V z3e{YhYeZL_bK_!k)bG>9WV_{JySCO>aa=P#yRhV)Z%iIKq=}WQ$K>Rso4@`3ARqX3 zU#VpCJ2?2mNGsNhzSIiSi>v3nHGt>zHNO(${?JWO$q9c*DCJq1uAX14FGFx5?1s0I z!H0+cS>ToRExuRWtngF^k=9sU)T-6z=OV literal 0 HcmV?d00001 diff --git a/src/assets/images/sub_icon.png b/src/assets/images/sub_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..e4ff19d0499c04ce4dcb614a44efbe44161420cf GIT binary patch literal 881 zcmV-%1CIQOP);8@HOJ3$X(#x{HE4B^d<4mB|;x`GN_!nw1HDK=ccy z2LwR`dlcV~o^zT+B12-3%*=&Lb*gUFIrpAh6_NjJs@%fb+S-p`FgWP<`+wnQYHMpN zA%DUAu-@6(8Sd-r3xb3>IXO84|DMa`9I2uC$}POSynMO1xUip}pQWRt!|m$=givole!mX;PlHT1^D#&4-qDj_v8^Gao1 zBya=r!^6V_@MI`ff{wDfaD{VT2@qdKf``+T>VtRRb zSuaNbv60i$QwJk2hN6}jJa8PYSmKg7@AgopySqDKl}=7hob&VZ?BnC3NpPMSKui>e z=7)xcwCn3@tAG_P(O<)0u#s@6fp6{p{$8N3TS|fs;}nUyj^n6@hX;N;sKOq|Ww3TU zK0f~DA@g?4&COXjXo5j3S)pr9mKn`wKzl(mxzrV1tcs;&4={6{!O}8QI)Jj6&tN(? zH8pi473{SMEz8oeDUDap92giNAe&5}sRvTf+?(Tw%seg8NYv9t0vV9b0z4OqM5=zS z-`s+wrKLDJH-SczuCA`v?j<0!RM5@?g|iQiK#o~v78VwM$_MR_YZ!~gbYv7q=`G$} zXe|Wh!$B~DQp?rV)tdY%ReT55*VhdY2m#dI*x2}RmX+)`*;_IKZXx(R00000NkvXX Hu0mjfs~nhF literal 0 HcmV?d00001 diff --git a/src/assets/images/subheading.png b/src/assets/images/subheading.png new file mode 100644 index 0000000000000000000000000000000000000000..7dc144dcea4346a6e0241c36e89a006ea4201be6 GIT binary patch literal 14464 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 + + + @@ -45,6 +48,7 @@ import OpenLayersMapInfo from "./controls/OpenLayersMapInfo.vue"; import OverviewMap from 'ol/control/OverviewMap'; import ScaleLine from 'ol/control/ScaleLine'; import OpenLayersScaleControl from "./controls/OpenLayersScaleControl.vue"; +import RouteDrawControl from "./controls/RouteDrawControl.vue"; // 注册 EPSG:4528 投影 proj4.defs( diff --git a/src/components/map/controls/LayerSwitcher.vue b/src/components/map/controls/LayerSwitcher.vue new file mode 100644 index 0000000..d4df82b --- /dev/null +++ b/src/components/map/controls/LayerSwitcher.vue @@ -0,0 +1,904 @@ + + + + + \ No newline at end of file diff --git a/src/components/map/controls/OpenLayersMapInfo.vue b/src/components/map/controls/OpenLayersMapInfo.vue index e916ac4..3cf1616 100644 --- a/src/components/map/controls/OpenLayersMapInfo.vue +++ b/src/components/map/controls/OpenLayersMapInfo.vue @@ -1,7 +1,7 @@ @@ -39,10 +39,10 @@ function handleMouseMove(event) { // 3. 转换为WGS84 try { const [lng, lat] = transform(coordinate, 'EPSG:4528', 'EPSG:4326'); - console.log('WGS84坐标:', lng, lat); + // console.log('WGS84坐标:', lng, lat); wgs84Text.value = `WGS84: 经度=${lng.toFixed(6)}°, 纬度=${lat.toFixed(6)}°`; } catch (error) { - console.error('坐标转换失败:', error); + // console.error('坐标转换失败:', error); wgs84Text.value = 'WGS84: 转换错误'; } } else { diff --git a/src/components/map/controls/OpenLayersZoomControl.vue b/src/components/map/controls/OpenLayersZoomControl.vue index 78577c4..f73e124 100644 --- a/src/components/map/controls/OpenLayersZoomControl.vue +++ b/src/components/map/controls/OpenLayersZoomControl.vue @@ -10,7 +10,7 @@ + + \ No newline at end of file diff --git a/src/components/map/info/carClarm.vue b/src/components/map/info/carClarm.vue index d50591a..78ccf20 100644 --- a/src/components/map/info/carClarm.vue +++ b/src/components/map/info/carClarm.vue @@ -76,7 +76,7 @@ onMounted(() => { .car-alarm-container { position: absolute; left: 20px; - top: 90px; + top: 50px; display: flex; align-items: center; gap:24px; diff --git a/src/components/map/info/eventlist.vue b/src/components/map/info/eventlist.vue index 6298793..43b8a39 100644 --- a/src/components/map/info/eventlist.vue +++ b/src/components/map/info/eventlist.vue @@ -1,7 +1,11 @@