├── .github └── workflows │ └── pages.yml ├── .gitignore ├── LICENSE ├── README.md ├── doc └── changelog.md ├── example ├── busstop.json ├── greenway.json ├── index.html └── leaflet-geojson-vt.min.js ├── package.json ├── pnpm-lock.yaml └── src └── index.js /.github/workflows/pages.yml: -------------------------------------------------------------------------------- 1 | name: github-pages 2 | 3 | on: push 4 | 5 | jobs: 6 | pages: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - uses: actions/checkout@v2 10 | 11 | - name: Setup Node 12 | uses: actions/setup-node@v2.1.2 13 | with: 14 | node-version: '14.x' 15 | 16 | - name: Cache .pnpm-store 17 | uses: actions/cache@v2 18 | with: 19 | path: ~/.pnpm-store 20 | key: ${{ runner.os }}-${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }} 21 | restore-keys: | 22 | ${{ runner.os }}-${{ matrix.node-version }} 23 | - name: install pnpm and npm 24 | run: | 25 | curl -L https://pnpm.js.org/pnpm.js | node - add --global pnpm@dev npm@6 26 | - name: pnpm install 27 | run: pnpm install 28 | - name: build pages 29 | run: npm run build 30 | 31 | - name: GitHub Pages action 32 | uses: peaceiris/actions-gh-pages@v3 33 | with: 34 | github_token: ${{ secrets.GITHUB_TOKEN }} 35 | publish_dir: ./example 36 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Directory for instrumented libs generated by jscoverage/JSCover 12 | lib-cov 13 | 14 | # Coverage directory used by tools like istanbul 15 | coverage 16 | 17 | # nyc test coverage 18 | .nyc_output 19 | 20 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 21 | .grunt 22 | 23 | # node-waf configuration 24 | .lock-wscript 25 | 26 | # Compiled binary addons (http://nodejs.org/api/addons.html) 27 | build/Release 28 | 29 | # Dependency directories 30 | node_modules 31 | jspm_packages 32 | 33 | # Optional npm cache directory 34 | .npm 35 | 36 | # Optional REPL history 37 | .node_repl_history 38 | 39 | .tags1 40 | 41 | dist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 brandonxiang 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # leaflet-geojson-vt 2 | 3 | This is a plugin combining geojson-vt with leafletjs, which is inspired by [geojson-vt-leaflet](https://github.com/handygeospatial/geojson-vt-leaflet). I am the original author of leaflet-geojson-vt. [iamtekson/leaflet-geojson-vt](https://github.com/iamtekson/leaflet-geojson-vt) is a fork of this repo. Welcome to use this plugin. 4 | 5 | If you use leaflet 0.7, please switch to the [leaflet0.7.7](https://github.com/brandonxiang/leaflet-geojson-vt/tree/leaflet0.7.7). 6 | 7 | ## Usage 8 | 9 | ```javascript 10 | var options = { 11 | maxZoom: 16, 12 | tolerance: 3, 13 | debug: 0, 14 | style: { 15 | fillColor: '#1EB300', 16 | color: '#F2FF00', 17 | weight: 2 18 | } 19 | }; 20 | var canvasLayer = L.gridLayer.geoJson(json, options).addTo(map); 21 | ``` 22 | 23 | Options are included with [geojson-vt options](https://github.com/mapbox/geojson-vt#options) and [L.geojson style](http://leafletjs.com/reference.html#path-options). 24 | 25 | ```javascript 26 | var tileIndex = geojsonvt(data, { 27 | maxZoom: 14, // max zoom to preserve detail on 28 | tolerance: 3, // simplification tolerance (higher means simpler) 29 | extent: 4096, // tile extent (both width and height) 30 | buffer: 64, // tile buffer on each side 31 | debug: 0 // logging level (0 to disable, 1 or 2) 32 | 33 | indexMaxZoom: 4, // max zoom in the initial tile index 34 | indexMaxPoints: 100000, // max number of points per tile in the index 35 | solidChildren: false // whether to include solid tile children in the index 36 | }); 37 | ``` 38 | 39 | ## Development 40 | 41 | run npm script with `browser-sync` 42 | 43 | ```shell 44 | npm run dev 45 | ``` 46 | 47 | Browser on `http://localhost:3000/example` 48 | 49 | ## TODO 50 | 51 | - point interactive 52 | - ~~new branch to compatiable with 1.0.0~~ 53 | - ~~more geojson style~~ 54 | - ~~convert to included class of `L.TileLayer.Canvas`~~ 55 | - ~~different canvas layers~~ 56 | - ~~style for polygon and polyline~~ 57 | - ~~layers change~~ 58 | - ~~seperate index.js into index.js and app.js~~ 59 | - ~~draw point on canvas~~ 60 | - ~~draw marker by image(cancel)~~ 61 | 62 | ## Changelog 63 | 64 | [changelog](doc/changelog.md) 65 | 66 | ## License 67 | 68 | [brandonxiang@MIT](LICENSE) 69 | -------------------------------------------------------------------------------- /doc/changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 2021/12/19 1.0.0 4 | 5 | - use microbundle to build the project 6 | - gitlab page workflow 7 | - remove the useless file 8 | 9 | ## 2016/8/1 0.1.0 10 | 11 | - new branch to compatiable with 1.0.0 12 | 13 | ## 2016/8/1 0.0.2 14 | 15 | - more geojson style 16 | 17 | ## 2016/7/29 version 0.0.1 18 | 19 | - different canvas layers 20 | - style for polygon and polyline 21 | - layers change 22 | - seperate index.js into index.js and app.js 23 | - draw point on canvas 24 | - draw marker by image(cancel) 25 | -------------------------------------------------------------------------------- /example/busstop.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, 4 | 5 | "features": [ 6 | { "type": "Feature", "properties": { "name": "高岭(公交站)", "address": "M274路" }, "geometry": { "type": "Point", "coordinates": [ 114.543579, 22.554701 ] } }, 7 | { "type": "Feature", "properties": { "name": "七星湾路口(公交站)", "address": "M274路;大鹏新区假日专线3路" }, "geometry": { "type": "Point", "coordinates": [ 114.546959, 22.553738 ] } }, 8 | { "type": "Feature", "properties": { "name": "大礁村(公交站)", "address": "M274路" }, "geometry": { "type": "Point", "coordinates": [ 114.541664, 22.556709 ] } }, 9 | { "type": "Feature", "properties": { "name": "荔枝山村(公交站)", "address": "M274路" }, "geometry": { "type": "Point", "coordinates": [ 114.53875, 22.556875 ] } }, 10 | { "type": "Feature", "properties": { "name": "东山小学(公交站)", "address": "M274路" }, "geometry": { "type": "Point", "coordinates": [ 114.533157, 22.555433 ] } }, 11 | { "type": "Feature", "properties": { "name": "东山码头(公交站)", "address": "M274路" }, "geometry": { "type": "Point", "coordinates": [ 114.529648, 22.554062 ] } }, 12 | { "type": "Feature", "properties": { "name": "东山珍珠场(公交站)", "address": "M274路" }, "geometry": { "type": "Point", "coordinates": [ 114.528786, 22.553394 ] } }, 13 | { "type": "Feature", "properties": { "name": "沙浦村(公交站)", "address": "M274路" }, "geometry": { "type": "Point", "coordinates": [ 114.528198, 22.552666 ] } }, 14 | { "type": "Feature", "properties": { "name": "浪骑(公交站)", "address": "M274路;大鹏新区假日专线3路" }, "geometry": { "type": "Point", "coordinates": [ 114.560928, 22.553724 ] } }, 15 | { "type": "Feature", "properties": { "name": "国家地质公园(公交站)", "address": "M423路" }, "geometry": { "type": "Point", "coordinates": [ 114.529335, 22.528559 ] } }, 16 | { "type": "Feature", "properties": { "name": "新圩(公交站)", "address": "M274路" }, "geometry": { "type": "Point", "coordinates": [ 114.51609, 22.542175 ] } }, 17 | { "type": "Feature", "properties": { "name": "新大村委(公交站)", "address": "833路;M274路;M423路" }, "geometry": { "type": "Point", "coordinates": [ 114.51664, 22.536285 ] } }, 18 | { "type": "Feature", "properties": { "name": "新大市场(公交站)", "address": "833路;M274路;M423路;大鹏新区假日专线4路;大鹏新区假日专线5路" }, "geometry": { "type": "Point", "coordinates": [ 114.515274, 22.53878 ] } }, 19 | { "type": "Feature", "properties": { "name": "新大集散中心(公交站)", "address": "833路;大鹏新区假日专线3路;大鹏新区假日专线4路;大鹏新区假日专线5路;(停运)大鹏暑期周末专线1(5月至10月运行)" }, "geometry": { "type": "Point", "coordinates": [ 114.513565, 22.540474 ] } }, 20 | { "type": "Feature", "properties": { "name": "七娘山村口(公交站)", "address": "M423路" }, "geometry": { "type": "Point", "coordinates": [ 114.520927, 22.529011 ] } }, 21 | { "type": "Feature", "properties": { "name": "海滨度假中心(公交站)", "address": "M274路;大鹏新区假日专线3路" }, "geometry": { "type": "Point", "coordinates": [ 114.568108, 22.546515 ] } }, 22 | { "type": "Feature", "properties": { "name": "上下横岗(公交站)", "address": "833路;M274路" }, "geometry": { "type": "Point", "coordinates": [ 114.515121, 22.532036 ] } }, 23 | { "type": "Feature", "properties": { "name": "南澳杨梅坑(公交站)", "address": "M274路;大鹏新区假日专线3路" }, "geometry": { "type": "Point", "coordinates": [ 114.571007, 22.544809 ] } }, 24 | { "type": "Feature", "properties": { "name": "新大路口(公交站)", "address": "M231路" }, "geometry": { "type": "Point", "coordinates": [ 114.507309, 22.527109 ] } }, 25 | { "type": "Feature", "properties": { "name": "大垅(公交站)", "address": "M232路" }, "geometry": { "type": "Point", "coordinates": [ 114.51236, 22.519623 ] } }, 26 | { "type": "Feature", "properties": { "name": "国际自行车赛场(公交站)", "address": "B852路" }, "geometry": { "type": "Point", "coordinates": [ 114.204742, 22.681784 ] } }, 27 | { "type": "Feature", "properties": { "name": "自行车赛场总站(公交站)", "address": "802路" }, "geometry": { "type": "Point", "coordinates": [ 114.204384, 22.681623 ] } }, 28 | { "type": "Feature", "properties": { "name": "自行车赛场(公交站)", "address": "802路" }, "geometry": { "type": "Point", "coordinates": [ 114.206718, 22.682938 ] } }, 29 | { "type": "Feature", "properties": { "name": "信息学院2(公交站)", "address": "B852路" }, "geometry": { "type": "Point", "coordinates": [ 114.213089, 22.686167 ] } }, 30 | { "type": "Feature", "properties": { "name": "信息学院(公交站)", "address": "365路;802路;839路;B852路;E5路;E6路;E7路;E25路(原353路)..." }, "geometry": { "type": "Point", "coordinates": [ 114.213608, 22.686567 ] } }, 31 | { "type": "Feature", "properties": { "name": "体育运动学校南(公交站)", "address": "M317路" }, "geometry": { "type": "Point", "coordinates": [ 114.208908, 22.69635 ] } }, 32 | { "type": "Feature", "properties": { "name": "大运公园(公交站)", "address": "M315路;M322路;M367路(A线);M367路(B线)" }, "geometry": { "type": "Point", "coordinates": [ 114.211739, 22.695976 ] } }, 33 | { "type": "Feature", "properties": { "name": "大运充电站(公交站)", "address": "M319路" }, "geometry": { "type": "Point", "coordinates": [ 114.204147, 22.699627 ] } }, 34 | { "type": "Feature", "properties": { "name": "大运中心体育场(公交站)", "address": "M315路;M322路;M367路(A线);M367路(B线)" }, "geometry": { "type": "Point", "coordinates": [ 114.216751, 22.691637 ] } }, 35 | { "type": "Feature", "properties": { "name": "体育运动学校西(公交站)", "address": "M317路" }, "geometry": { "type": "Point", "coordinates": [ 114.207611, 22.699396 ] } }, 36 | { "type": "Feature", "properties": { "name": "信息学院东站(公交站)", "address": "B852路;M294路;M318路;M322路;M367路(A线);M367路(B线);M386路" }, "geometry": { "type": "Point", "coordinates": [ 114.219254, 22.689562 ] } }, 37 | { "type": "Feature", "properties": { "name": "华师大附中(公交站)", "address": "M315路" }, "geometry": { "type": "Point", "coordinates": [ 114.207573, 22.701393 ] } }, 38 | { "type": "Feature", "properties": { "name": "大运中心(公交站)", "address": "365路;802路;839路;B852路;E6路;E27路(原高峰专线44路);M315路;M318路..." }, "geometry": { "type": "Point", "coordinates": [ 114.219635, 22.692951 ] } }, 39 | { "type": "Feature", "properties": { "name": "大运游泳馆(公交站)", "address": "M317路" }, "geometry": { "type": "Point", "coordinates": [ 114.214264, 22.699865 ] } }, 40 | { "type": "Feature", "properties": { "name": "龙城水厂(公交站)", "address": "B852路;M318路;M322路;M367路(A线);M367路(B线);M386路;M446路(原B809路)" }, "geometry": { "type": "Point", "coordinates": [ 114.222305, 22.687048 ] } }, 41 | { "type": "Feature", "properties": { "name": "信息学院东充电站(公交站)", "address": "M294路;M368路" }, "geometry": { "type": "Point", "coordinates": [ 114.222137, 22.689722 ] } }, 42 | { "type": "Feature", "properties": { "name": "华中师大附中(公交站)", "address": "M317路;M320路" }, "geometry": { "type": "Point", "coordinates": [ 114.207481, 22.703541 ] } }, 43 | { "type": "Feature", "properties": { "name": "二手车市场(公交站)", "address": "M386路" }, "geometry": { "type": "Point", "coordinates": [ 114.223259, 22.685726 ] } }, 44 | { "type": "Feature", "properties": { "name": "大运中心体育馆(公交站)", "address": "M229路;M317路;M446路(原B809路)" }, "geometry": { "type": "Point", "coordinates": [ 114.219604, 22.696428 ] } }, 45 | { "type": "Feature", "properties": { "name": "体育运动学校东(公交站)", "address": "M315路;M322路;M367路(A线);M367路(B线)" }, "geometry": { "type": "Point", "coordinates": [ 114.210396, 22.703299 ] } }, 46 | { "type": "Feature", "properties": { "name": "龙王古庙北(公交站)", "address": "B711路" }, "geometry": { "type": "Point", "coordinates": [ 113.838562, 22.670643 ] } }, 47 | { "type": "Feature", "properties": { "name": "龙王庙(公交站)", "address": "B711路" }, "geometry": { "type": "Point", "coordinates": [ 113.839409, 22.671827 ] } }, 48 | { "type": "Feature", "properties": { "name": "利满达制衣有限公司(公交站)", "address": "B711路" }, "geometry": { "type": "Point", "coordinates": [ 113.835838, 22.670589 ] } }, 49 | { "type": "Feature", "properties": { "name": "龙王古庙(公交站)", "address": "727路;B711路;B854路;M236路(原B835路);M433路;M472路(原B834路);高峰专线30路" }, "geometry": { "type": "Point", "coordinates": [ 113.837891, 22.67424 ] } }, 50 | { "type": "Feature", "properties": { "name": "福凤路南(公交站)", "address": "727路;B711路;B854路;M236路(原B835路);M433路;M472路(原B834路);高峰专线30路" }, "geometry": { "type": "Point", "coordinates": [ 113.840935, 22.676224 ] } }, 51 | { "type": "Feature", "properties": { "name": "天霖公司(公交站)", "address": "B711路" }, "geometry": { "type": "Point", "coordinates": [ 113.832138, 22.670517 ] } }, 52 | { "type": "Feature", "properties": { "name": "白石厦东(公交站)", "address": "727路;B854路;M236路(原B835路);M433路;M472路(原B834路);高峰专线30路" }, "geometry": { "type": "Point", "coordinates": [ 113.834236, 22.674206 ] } }, 53 | { "type": "Feature", "properties": { "name": "凤凰山路口(公交站)", "address": "M433路" }, "geometry": { "type": "Point", "coordinates": [ 113.837975, 22.676905 ] } }, 54 | { "type": "Feature", "properties": { "name": "福凤路中(公交站)", "address": "727路;B711路;B854路;M236路(原B835路);M433路;高峰专线30路" }, "geometry": { "type": "Point", "coordinates": [ 113.8433, 22.679279 ] } }, 55 | { "type": "Feature", "properties": { "name": "腾丰四路(公交站)", "address": "凤凰山节假日旅游专线" }, "geometry": { "type": "Point", "coordinates": [ 113.840103, 22.679201 ] } }, 56 | { "type": "Feature", "properties": { "name": "红树湾国际家具城(公交站)", "address": "M251路;M252路" }, "geometry": { "type": "Point", "coordinates": [ 113.829269, 22.670183 ] } }, 57 | { "type": "Feature", "properties": { "name": "福永家私城(公交站)", "address": "长7路(宝樟线);长28路;长58路;市汽车东站-深圳南头" }, "geometry": { "type": "Point", "coordinates": [ 113.828552, 22.667217 ] } }, 58 | { "type": "Feature", "properties": { "name": "福永家私街(公交站)", "address": "331路;337路;362路;629路;866路;M242路;M332路;M335路..." }, "geometry": { "type": "Point", "coordinates": [ 113.828552, 22.666761 ] } }, 59 | { "type": "Feature", "properties": { "name": "福永汽车站(站外)(公交站)", "address": "长23路;长28路" }, "geometry": { "type": "Point", "coordinates": [ 113.828827, 22.670834 ] } }, 60 | { "type": "Feature", "properties": { "name": "福永汽车站站外(公交站)", "address": "长58路" }, "geometry": { "type": "Point", "coordinates": [ 113.828827, 22.670963 ] } }, 61 | { "type": "Feature", "properties": { "name": "福永汽车站(公交站)", "address": "331路;337路;362路;629路;866路;E10路;E16路;K538路沙井线..." }, "geometry": { "type": "Point", "coordinates": [ 113.828529, 22.67013 ] } }, 62 | { "type": "Feature", "properties": { "name": "怀德商贸城西(公交站)", "address": "639路" }, "geometry": { "type": "Point", "coordinates": [ 113.827705, 22.665985 ] } }, 63 | { "type": "Feature", "properties": { "name": "怀德商贸西(公交站)", "address": "B898路" }, "geometry": { "type": "Point", "coordinates": [ 113.827705, 22.665937 ] } }, 64 | { "type": "Feature", "properties": { "name": "福永车站(公交站)", "address": "长7路(宝樟线);长9路" }, "geometry": { "type": "Point", "coordinates": [ 113.828087, 22.67161 ] } }, 65 | { "type": "Feature", "properties": { "name": "怀德商城(公交站)", "address": "长23路" }, "geometry": { "type": "Point", "coordinates": [ 113.828529, 22.661051 ] } }, 66 | { "type": "Feature", "properties": { "name": "滑草场总站(公交站)", "address": "B873路" }, "geometry": { "type": "Point", "coordinates": [ 113.963348, 22.756554 ] } }, 67 | { "type": "Feature", "properties": { "name": "光明农场大观园(公交站)", "address": "B873路" }, "geometry": { "type": "Point", "coordinates": [ 113.961655, 22.758265 ] } }, 68 | { "type": "Feature", "properties": { "name": "迳口居委会(公交站)", "address": "B660路" }, "geometry": { "type": "Point", "coordinates": [ 113.966331, 22.764297 ] } }, 69 | { "type": "Feature", "properties": { "name": "迳口居委(公交站)", "address": "B660路;B722路" }, "geometry": { "type": "Point", "coordinates": [ 113.966675, 22.764414 ] } }, 70 | { "type": "Feature", "properties": { "name": "大观园路口(公交站)", "address": "B873路" }, "geometry": { "type": "Point", "coordinates": [ 113.957184, 22.759119 ] } }, 71 | { "type": "Feature", "properties": { "name": "光明迳口新村(公交站)", "address": "B660路" }, "geometry": { "type": "Point", "coordinates": [ 113.968315, 22.764957 ] } }, 72 | { "type": "Feature", "properties": { "name": "迳口新村(公交站)", "address": "B722路" }, "geometry": { "type": "Point", "coordinates": [ 113.968643, 22.765179 ] } }, 73 | { "type": "Feature", "properties": { "name": "果林村路口(公交站)", "address": "B660路;B722路" }, "geometry": { "type": "Point", "coordinates": [ 113.957329, 22.76329 ] } }, 74 | { "type": "Feature", "properties": { "name": "滑草场路口(公交站)", "address": "B873路" }, "geometry": { "type": "Point", "coordinates": [ 113.952271, 22.759235 ] } }, 75 | { "type": "Feature", "properties": { "name": "农业科技园(公交站)", "address": "325路;B660路;B662路;B722路;M215-218路内环;M215-218路外环" }, "geometry": { "type": "Point", "coordinates": [ 113.951057, 22.759228 ] } }, 76 | { "type": "Feature", "properties": { "name": "碧眼村口(公交站)", "address": "B663路" }, "geometry": { "type": "Point", "coordinates": [ 113.950958, 22.754488 ] } }, 77 | { "type": "Feature", "properties": { "name": "捷达厂(公交站)", "address": "325路;B660路;B662路;B663路;B663路区间线;B722路;B873路;M215-218路内环..." }, "geometry": { "type": "Point", "coordinates": [ 113.950142, 22.759119 ] } }, 78 | { "type": "Feature", "properties": { "name": "光明成校(公交站)", "address": "B660路;B722路" }, "geometry": { "type": "Point", "coordinates": [ 113.951981, 22.76487 ] } }, 79 | { "type": "Feature", "properties": { "name": "迳口村路口(公交站)", "address": "325路;B660路;B662路;B722路;M215-218路内环;M215-218路外环;M436路(原301路)" }, "geometry": { "type": "Point", "coordinates": [ 113.951424, 22.764414 ] } }, 80 | { "type": "Feature", "properties": { "name": "光明供电所(公交站)", "address": "325路;B660路;B662路;B663路;B663路区间线;B722路;B873路;M215-218路内环..." }, "geometry": { "type": "Point", "coordinates": [ 113.948692, 22.760429 ] } }, 81 | { "type": "Feature", "properties": { "name": "深日钢材(公交站)", "address": "720路;M215-218路外环;M336路" }, "geometry": { "type": "Point", "coordinates": [ 113.949654, 22.746992 ] } }, 82 | { "type": "Feature", "properties": { "name": "光明办事处(公交站)", "address": "B663路;B663路区间线" }, "geometry": { "type": "Point", "coordinates": [ 113.94696, 22.763416 ] } }, 83 | { "type": "Feature", "properties": { "name": "光明体育中心(公交站)", "address": "B659路;M215-218路内环" }, "geometry": { "type": "Point", "coordinates": [ 113.949615, 22.746714 ] } }, 84 | { "type": "Feature", "properties": { "name": "光明新区中心医院(公交站)", "address": "720路;B659路;B662路;B663路;B663路区间线;M215-218路内环;M215-218路外环;M336路" }, "geometry": { "type": "Point", "coordinates": [ 113.94603, 22.751602 ] } }, 85 | { "type": "Feature", "properties": { "name": "光明中心站(公交站)", "address": "325路;B660路;B662路;B722路;B873路;K578路左环;M215-218路内环;M215-218路外环..." }, "geometry": { "type": "Point", "coordinates": [ 113.944885, 22.762764 ] } }, 86 | { "type": "Feature", "properties": { "name": "安华路口(公交站)", "address": "M337路" }, "geometry": { "type": "Point", "coordinates": [ 113.98307, 22.729591 ] } }, 87 | { "type": "Feature", "properties": { "name": "展辰涂料(公交站)", "address": "B722路;M462路" }, "geometry": { "type": "Point", "coordinates": [ 113.983124, 22.729597 ] } }, 88 | { "type": "Feature", "properties": { "name": "展辰涂料(安华路口)(公交站)", "address": "M337路" }, "geometry": { "type": "Point", "coordinates": [ 113.983643, 22.7297 ] } }, 89 | { "type": "Feature", "properties": { "name": "石龙仔路口(公交站)", "address": "M449路" }, "geometry": { "type": "Point", "coordinates": [ 113.991409, 22.701029 ] } }, 90 | { "type": "Feature", "properties": { "name": "白花(公交站)", "address": "B722路;M337路;M462路" }, "geometry": { "type": "Point", "coordinates": [ 113.986473, 22.730513 ] } }, 91 | { "type": "Feature", "properties": { "name": "石龙仔场站(公交站)", "address": "B890路外环;M244路;M442路(原B639路)" }, "geometry": { "type": "Point", "coordinates": [ 113.967937, 22.707498 ] } }, 92 | { "type": "Feature", "properties": { "name": "浪静路中(公交站)", "address": "高峰专线91路" }, "geometry": { "type": "Point", "coordinates": [ 113.985504, 22.698851 ] } }, 93 | { "type": "Feature", "properties": { "name": "金滔百货(公交站)", "address": "B890路外环" }, "geometry": { "type": "Point", "coordinates": [ 113.969177, 22.705187 ] } }, 94 | { "type": "Feature", "properties": { "name": "金稻百货(公交站)", "address": "B780路;M244路;M257路(原768路);M442路(原B639路);高峰专线59路;高峰专线61路" }, "geometry": { "type": "Point", "coordinates": [ 113.969193, 22.705139 ] } }, 95 | { "type": "Feature", "properties": { "name": "裕同工业区(公交站)", "address": "B643路;B780路;M244路;M442路(原B639路);高峰专线59路" }, "geometry": { "type": "Point", "coordinates": [ 113.967224, 22.70681 ] } }, 96 | { "type": "Feature", "properties": { "name": "裕同公司(公交站)", "address": "B890路外环" }, "geometry": { "type": "Point", "coordinates": [ 113.967216, 22.70681 ] } }, 97 | { "type": "Feature", "properties": { "name": "裕同集团(公交站)", "address": "M257路(原768路);高峰专线61路" }, "geometry": { "type": "Point", "coordinates": [ 113.967163, 22.706793 ] } }, 98 | { "type": "Feature", "properties": { "name": "石龙仔总站(公交站)", "address": "789路" }, "geometry": { "type": "Point", "coordinates": [ 113.966797, 22.707361 ] } }, 99 | { "type": "Feature", "properties": { "name": "石凹公园(公交站)", "address": "B645路;M449路" }, "geometry": { "type": "Point", "coordinates": [ 113.989708, 22.698763 ] } }, 100 | { "type": "Feature", "properties": { "name": "大浪服装基地总站(公交站)", "address": "M301路;M420路;M450路;高峰专线15路;高峰专线38路;高峰专线91路" }, "geometry": { "type": "Point", "coordinates": [ 113.989807, 22.698763 ] } }, 101 | { "type": "Feature", "properties": { "name": "海尔仓库(公交站)", "address": "B780路;B890路外环;M244路;M257路(原768路);M442路(原B639路);高峰专线59路;高峰专线61路" }, "geometry": { "type": "Point", "coordinates": [ 113.96991, 22.702883 ] } }, 102 | { "type": "Feature", "properties": { "name": "石龙仔公交总站(公交站)", "address": "B643路" }, "geometry": { "type": "Point", "coordinates": [ 113.965988, 22.707586 ] } }, 103 | { "type": "Feature", "properties": { "name": "石凹路中(公交站)", "address": "高峰专线38路;高峰专线91路" }, "geometry": { "type": "Point", "coordinates": [ 113.990555, 22.698137 ] } }, 104 | { "type": "Feature", "properties": { "name": "浪静路口(公交站)", "address": "B780路;M420路;M450路;高峰专线91路" }, "geometry": { "type": "Point", "coordinates": [ 113.989212, 22.69701 ] } }, 105 | { "type": "Feature", "properties": { "name": "久格厂(公交站)", "address": "B890路外环" }, "geometry": { "type": "Point", "coordinates": [ 113.970711, 22.700382 ] } }, 106 | { "type": "Feature", "properties": { "name": "仙湖植物园总站(公交站)", "address": "202路;220路;363路;382路" }, "geometry": { "type": "Point", "coordinates": [ 114.168518, 22.568342 ] } }, 107 | { "type": "Feature", "properties": { "name": "莲塘枫景(公交站)", "address": "113路;214路;336路;B621路;M468路" }, "geometry": { "type": "Point", "coordinates": [ 114.170433, 22.566437 ] } }, 108 | { "type": "Feature", "properties": { "name": "莲塘消防中队(公交站)", "address": "27路;202路;220路;363路;382路;N15路" }, "geometry": { "type": "Point", "coordinates": [ 114.162354, 22.562296 ] } }, 109 | { "type": "Feature", "properties": { "name": "莲塘街道办(公交站)", "address": "27路;113路;214路;333路;336路;B621路;M468路;N15路" }, "geometry": { "type": "Point", "coordinates": [ 114.169151, 22.564093 ] } }, 110 | { "type": "Feature", "properties": { "name": "莲塘消防中队(临时站)(公交站)", "address": "202路" }, "geometry": { "type": "Point", "coordinates": [ 114.162766, 22.561455 ] } }, 111 | { "type": "Feature", "properties": { "name": "鹏基工业区(公交站)", "address": "27路;113路;214路;333路;336路;B621路;M468路" }, "geometry": { "type": "Point", "coordinates": [ 114.165611, 22.56155 ] } }, 112 | { "type": "Feature", "properties": { "name": "鹏基工业区1(公交站)", "address": "333路" }, "geometry": { "type": "Point", "coordinates": [ 114.165657, 22.561554 ] } }, 113 | { "type": "Feature", "properties": { "name": "莲塘小学(公交站)", "address": "214路;B621路;M468路" }, "geometry": { "type": "Point", "coordinates": [ 114.170258, 22.563017 ] } }, 114 | { "type": "Feature", "properties": { "name": "聚宝莲塘路口(临时站)(公交站)", "address": "B621路" }, "geometry": { "type": "Point", "coordinates": [ 114.169373, 22.562313 ] } }, 115 | { "type": "Feature", "properties": { "name": "东湖宾馆(公交站)", "address": "29路;52路;64路;211路;306路;306路区间车;351路;363路..." }, "geometry": { "type": "Point", "coordinates": [ 114.144585, 22.573711 ] } }, 116 | { "type": "Feature", "properties": { "name": "聚宝莲塘路口(公交站)", "address": "B621路;M468路" }, "geometry": { "type": "Point", "coordinates": [ 114.169441, 22.561914 ] } }, 117 | { "type": "Feature", "properties": { "name": "梧桐山新居(公交站)", "address": "113路;214路;333路;336路;B621路;M468路" }, "geometry": { "type": "Point", "coordinates": [ 114.17453, 22.566628 ] } }, 118 | { "type": "Feature", "properties": { "name": "仙湖路口(公交站)", "address": "65路;69路;85路;103路;205路;K113路;M364路;M437路(原M207路)" }, "geometry": { "type": "Point", "coordinates": [ 114.165886, 22.559879 ] } }, 119 | { "type": "Feature", "properties": { "name": "彩世界家园(公交站)", "address": "29路;52路;59路;64路;372路;N3路;N6路" }, "geometry": { "type": "Point", "coordinates": [ 114.143677, 22.577131 ] } }, 120 | { "type": "Feature", "properties": { "name": "布心总站(公交站)", "address": "2路;59路;B840路;N6路" }, "geometry": { "type": "Point", "coordinates": [ 114.143191, 22.573159 ] } }, 121 | { "type": "Feature", "properties": { "name": "聚宝路口(公交站)", "address": "57路;65路;69路;85路;103B路;103路;111路;205路..." }, "geometry": { "type": "Point", "coordinates": [ 114.169144, 22.559853 ] } }, 122 | { "type": "Feature", "properties": { "name": "水库总站(公交站)", "address": "3路;17路" }, "geometry": { "type": "Point", "coordinates": [ 114.143224, 22.566769 ] } }, 123 | { "type": "Feature", "properties": { "name": "水库(公交站)", "address": "23路;29路;52路;64路;211路;306路;306路区间车;308路..." }, "geometry": { "type": "Point", "coordinates": [ 114.143028, 22.567097 ] } }, 124 | { "type": "Feature", "properties": { "name": "莲塘(公交站)", "address": "57路;65路;69路;85路;103B路;103路;111路;205路..." }, "geometry": { "type": "Point", "coordinates": [ 114.172104, 22.5602 ] } }, 125 | { "type": "Feature", "properties": { "name": "景亿山庄(公交站)", "address": "29路;59路;64路;83路;107路;107路大站快车;372路;379路..." }, "geometry": { "type": "Point", "coordinates": [ 114.14183, 22.579363 ] } }, 126 | { "type": "Feature", "properties": { "name": "水榭山(公交站)", "address": "B877路;M459路;高快巴士16路" }, "geometry": { "type": "Point", "coordinates": [ 114.031509, 22.595951 ] } }, 127 | { "type": "Feature", "properties": { "name": "新区大道路口(公交站)", "address": "M459路" }, "geometry": { "type": "Point", "coordinates": [ 114.041443, 22.595203 ] } }, 128 | { "type": "Feature", "properties": { "name": "逸秀新村(公交站)", "address": "B877路;M459路" }, "geometry": { "type": "Point", "coordinates": [ 114.036346, 22.597795 ] } }, 129 | { "type": "Feature", "properties": { "name": "万科金域花园(公交站)", "address": "M342路" }, "geometry": { "type": "Point", "coordinates": [ 114.041405, 22.597483 ] } }, 130 | { "type": "Feature", "properties": { "name": "山水居(公交站)", "address": "B821路" }, "geometry": { "type": "Point", "coordinates": [ 114.04274, 22.571255 ] } }, 131 | { "type": "Feature", "properties": { "name": "新彩隧道口(公交站)", "address": "54路;M223路;M262路;M347路;M347路大站快车;M459路;高峰专线15路;高峰专线71路" }, "geometry": { "type": "Point", "coordinates": [ 114.049232, 22.592604 ] } }, 132 | { "type": "Feature", "properties": { "name": "民乐地铁公交接驳站(公交站)", "address": "234路;M302路;M342路;高峰专线91路" }, "geometry": { "type": "Point", "coordinates": [ 114.048122, 22.594504 ] } }, 133 | { "type": "Feature", "properties": { "name": "民乐地铁接驳站(公交站)", "address": "B657路;M346路" }, "geometry": { "type": "Point", "coordinates": [ 114.048286, 22.594319 ] } }, 134 | { "type": "Feature", "properties": { "name": "龙悦居三期(公交站)", "address": "M459路" }, "geometry": { "type": "Point", "coordinates": [ 114.033066, 22.602188 ] } }, 135 | { "type": "Feature", "properties": { "name": "七支队宿舍(公交站)", "address": "B821路" }, "geometry": { "type": "Point", "coordinates": [ 114.045403, 22.571836 ] } }, 136 | { "type": "Feature", "properties": { "name": "梅林公园(公交站)", "address": "B821路" }, "geometry": { "type": "Point", "coordinates": [ 114.043007, 22.569609 ] } }, 137 | { "type": "Feature", "properties": { "name": "龙悦居公交总站(公交站)", "address": "60路;75路;81路;B654路;高快巴士16路" }, "geometry": { "type": "Point", "coordinates": [ 114.030685, 22.602631 ] } }, 138 | { "type": "Feature", "properties": { "name": "龙悦居(公交站)", "address": "316路;B653路;E3路;M365路(双环线)A线;M365路(双环线)B线;M385路;M459路;高峰专线38路" }, "geometry": { "type": "Point", "coordinates": [ 114.032104, 22.60276 ] } }, 139 | { "type": "Feature", "properties": { "name": "万科金域华府(公交站)", "address": "B653路;M342路;M365路(双环线)A线;M365路(双环线)B线;M385路" }, "geometry": { "type": "Point", "coordinates": [ 114.040916, 22.601103 ] } }, 140 | { "type": "Feature", "properties": { "name": "致远南路(公交站)", "address": "M459路" }, "geometry": { "type": "Point", "coordinates": [ 114.030365, 22.602947 ] } }, 141 | { "type": "Feature", "properties": { "name": "梅林坳驿站(公交站)", "address": "B821路" }, "geometry": { "type": "Point", "coordinates": [ 114.047951, 22.572891 ] } }, 142 | { "type": "Feature", "properties": { "name": "梅林联检站(入关)2(公交站)", "address": "234路" }, "geometry": { "type": "Point", "coordinates": [ 114.050039, 22.594151 ] } }, 143 | { "type": "Feature", "properties": { "name": "白石龙车队总站(公交站)", "address": "620路" }, "geometry": { "type": "Point", "coordinates": [ 114.039699, 22.602422 ] } }, 144 | { "type": "Feature", "properties": { "name": "白石龙南(公交站)", "address": "B653路;M365路(双环线)A线;M365路(双环线)B线" }, "geometry": { "type": "Point", "coordinates": [ 114.035767, 22.603394 ] } }, 145 | { "type": "Feature", "properties": { "name": "白石龙地铁站(公交站)", "address": "B655路;B657路;B877路;E3路;M262路;高峰专线91路" }, "geometry": { "type": "Point", "coordinates": [ 114.042564, 22.601332 ] } }, 146 | { "type": "Feature", "properties": { "name": "坪山体育馆2(公交站)", "address": "M326路;M368路" }, "geometry": { "type": "Point", "coordinates": [ 114.342155, 22.671944 ] } }, 147 | { "type": "Feature", "properties": { "name": "坪山体育馆(公交站)", "address": "B760路" }, "geometry": { "type": "Point", "coordinates": [ 114.344528, 22.674215 ] } }, 148 | { "type": "Feature", "properties": { "name": "坪山体育馆1(公交站)", "address": "B760路;M326路;M368路" }, "geometry": { "type": "Point", "coordinates": [ 114.344795, 22.674444 ] } }, 149 | { "type": "Feature", "properties": { "name": "利雅斯厂(公交站)", "address": "964路" }, "geometry": { "type": "Point", "coordinates": [ 114.35891, 22.669075 ] } }, 150 | { "type": "Feature", "properties": { "name": "赤坳工业区(公交站)", "address": "964路;B765路;B849路" }, "geometry": { "type": "Point", "coordinates": [ 114.35936, 22.667643 ] } }, 151 | { "type": "Feature", "properties": { "name": "竹园村南区(公交站)", "address": "964路;B765路;B849路" }, "geometry": { "type": "Point", "coordinates": [ 114.358437, 22.671385 ] } }, 152 | { "type": "Feature", "properties": { "name": "竹园村(公交站)", "address": "964路;B765路;B849路" }, "geometry": { "type": "Point", "coordinates": [ 114.357658, 22.673819 ] } }, 153 | { "type": "Feature", "properties": { "name": "曾屋村(公交站)", "address": "812路;B811路;M294路" }, "geometry": { "type": "Point", "coordinates": [ 114.348595, 22.677343 ] } }, 154 | { "type": "Feature", "properties": { "name": "坪山比亚迪(公交站)", "address": "M220路;M294路" }, "geometry": { "type": "Point", "coordinates": [ 114.350189, 22.677435 ] } }, 155 | { "type": "Feature", "properties": { "name": "坪山墓园(公交站)", "address": "964路;B765路;B849路" }, "geometry": { "type": "Point", "coordinates": [ 114.361839, 22.665829 ] } }, 156 | { "type": "Feature", "properties": { "name": "比亚迪路口(公交站)", "address": "964路;B765路;B849路;高铁坪山快捷线接驳2线(原M479路)" }, "geometry": { "type": "Point", "coordinates": [ 114.35643, 22.677687 ] } }, 157 | { "type": "Feature", "properties": { "name": "黄沙坑社区(公交站)", "address": "B760路" }, "geometry": { "type": "Point", "coordinates": [ 114.340073, 22.677551 ] } }, 158 | { "type": "Feature", "properties": { "name": "大湾集市(公交站)", "address": "M326路" }, "geometry": { "type": "Point", "coordinates": [ 114.343147, 22.679487 ] } }, 159 | { "type": "Feature", "properties": { "name": "大万世居(公交站)", "address": "M294路" }, "geometry": { "type": "Point", "coordinates": [ 114.342865, 22.67963 ] } }, 160 | { "type": "Feature", "properties": { "name": "华安居(公交站)", "address": "964路;B765路;B849路" }, "geometry": { "type": "Point", "coordinates": [ 114.364494, 22.663885 ] } }, 161 | { "type": "Feature", "properties": { "name": "大万世局(公交站)", "address": "M220路" }, "geometry": { "type": "Point", "coordinates": [ 114.342201, 22.679861 ] } }, 162 | { "type": "Feature", "properties": { "name": "锦龙总站(公交站)", "address": "M447路(原329路)" }, "geometry": { "type": "Point", "coordinates": [ 114.333916, 22.664761 ] } }, 163 | { "type": "Feature", "properties": { "name": "坪环学校(公交站)", "address": "B760路;B811路;M368路" }, "geometry": { "type": "Point", "coordinates": [ 114.347305, 22.681709 ] } }, 164 | { "type": "Feature", "properties": { "name": "坪山江边村(公交站)", "address": "915路" }, "geometry": { "type": "Point", "coordinates": [ 114.353088, 22.681767 ] } }, 165 | { "type": "Feature", "properties": { "name": "中集公司(公交站)", "address": "935路;M326路;M447路(原329路);M458路(原933路)" }, "geometry": { "type": "Point", "coordinates": [ 114.333054, 22.666918 ] } }, 166 | { "type": "Feature", "properties": { "name": "小梅沙(公交站)", "address": "103B路;103路;380A路;380B线;387路;M362路;M438路(原207路区间线);(停运)大梅沙假日专线1路" }, "geometry": { "type": "Point", "coordinates": [ 114.325623, 22.600573 ] } }, 167 | { "type": "Feature", "properties": { "name": "小梅沙公交总站(公交站)", "address": "103B路;103路;380A路" }, "geometry": { "type": "Point", "coordinates": [ 114.326803, 22.601907 ] } }, 168 | { "type": "Feature", "properties": { "name": "梅沙街道办3(公交站)", "address": "380B线" }, "geometry": { "type": "Point", "coordinates": [ 114.313461, 22.598789 ] } }, 169 | { "type": "Feature", "properties": { "name": "梅沙街道办(公交站)", "address": "103B路;103路;380A路;380B线;387路;M362路;M438路(原207路区间线);(停运)N21路..." }, "geometry": { "type": "Point", "coordinates": [ 114.3134, 22.598711 ] } }, 170 | { "type": "Feature", "properties": { "name": "梅沙街道办1(公交站)", "address": "103B路;103路;387路;M362路;M438路(原207路区间线);大梅沙假日专线1路;大梅沙假日专线3路;(停运)N21路..." }, "geometry": { "type": "Point", "coordinates": [ 114.313438, 22.598785 ] } }, 171 | { "type": "Feature", "properties": { "name": "梅沙街道办2(公交站)", "address": "380A路" }, "geometry": { "type": "Point", "coordinates": [ 114.31337, 22.59878 ] } }, 172 | { "type": "Feature", "properties": { "name": "大梅沙站(公交站)", "address": "103路;380A路;M362路;观光线1路" }, "geometry": { "type": "Point", "coordinates": [ 114.310295, 22.599119 ] } }, 173 | { "type": "Feature", "properties": { "name": "海关小梅沙基地(公交站)", "address": "M362路;M438路(原207路区间线)" }, "geometry": { "type": "Point", "coordinates": [ 114.333282, 22.602375 ] } }, 174 | { "type": "Feature", "properties": { "name": "海滨浴场(公交站)", "address": "380A路" }, "geometry": { "type": "Point", "coordinates": [ 114.308586, 22.600212 ] } }, 175 | { "type": "Feature", "properties": { "name": "海滨浴场2(公交站)", "address": "380A路;380B线" }, "geometry": { "type": "Point", "coordinates": [ 114.308525, 22.600317 ] } }, 176 | { "type": "Feature", "properties": { "name": "东部华侨城(公交站)", "address": "103路;308路;387路;J1路;M362路;M437路(原M207路);M438路(原207路区间线);大梅沙假日专线2路..." }, "geometry": { "type": "Point", "coordinates": [ 114.308365, 22.600361 ] } }, 177 | { "type": "Feature", "properties": { "name": "海滨浴场1(公交站)", "address": "103B路;103路;387路;J1路;M437路(原M207路);大梅沙假日专线2路;机场6线;(停运)N21路" }, "geometry": { "type": "Point", "coordinates": [ 114.304428, 22.591902 ] } }, 178 | { "type": "Feature", "properties": { "name": "海滨浴场(公交站)", "address": "103B路;103路;387路;M465路;(停运)N21路" }, "geometry": { "type": "Point", "coordinates": [ 114.30442, 22.591831 ] } }, 179 | { "type": "Feature", "properties": { "name": "海滨浴场2(公交站)", "address": "大梅沙假日专线3路" }, "geometry": { "type": "Point", "coordinates": [ 114.304291, 22.592161 ] } }, 180 | { "type": "Feature", "properties": { "name": "海滨浴场3(公交站)", "address": "308路" }, "geometry": { "type": "Point", "coordinates": [ 114.30407, 22.592369 ] } }, 181 | { "type": "Feature", "properties": { "name": "梅沙医院(公交站)", "address": "308路;380A路;380B线;E12路;M437路(原M207路);M465路;大梅沙假日专线2路;高峰专线58路..." }, "geometry": { "type": "Point", "coordinates": [ 114.305649, 22.601593 ] } }, 182 | { "type": "Feature", "properties": { "name": "万科中心(公交站)", "address": "387路;E12路;M437路(原M207路);M465路;大梅沙假日专线2路" }, "geometry": { "type": "Point", "coordinates": [ 114.304329, 22.599031 ] } }, 183 | { "type": "Feature", "properties": { "name": "大梅沙海滨总站(公交站)", "address": "239路;308路;E12路;J1路;M437路(原M207路);M438路(原207路区间线);M465路;大梅沙假日专线2路..." }, "geometry": { "type": "Point", "coordinates": [ 114.303087, 22.594432 ] } }, 184 | { "type": "Feature", "properties": { "name": "华侨墓园西(公交站)", "address": "M438路(原207路区间线)" }, "geometry": { "type": "Point", "coordinates": [ 114.342514, 22.59585 ] } }, 185 | { "type": "Feature", "properties": { "name": "华侨墓园西门(公交站)", "address": "M362路" }, "geometry": { "type": "Point", "coordinates": [ 114.342552, 22.595881 ] } }, 186 | { "type": "Feature", "properties": { "name": "深湾二路口(公交站)", "address": "M347路;M347路大站快车;M463路;滨海休闲假日专线" }, "geometry": { "type": "Point", "coordinates": [ 113.971756, 22.520199 ] } }, 187 | { "type": "Feature", "properties": { "name": "滨海深湾立交(公交站)", "address": "229路;382路;滨海休闲假日专线" }, "geometry": { "type": "Point", "coordinates": [ 113.97757, 22.520256 ] } }, 188 | { "type": "Feature", "properties": { "name": "滨海沙河东立交(公交站)", "address": "229路;382路" }, "geometry": { "type": "Point", "coordinates": [ 113.962517, 22.519592 ] } }, 189 | { "type": "Feature", "properties": { "name": "滨海深湾立交(公交站)", "address": "M463路" }, "geometry": { "type": "Point", "coordinates": [ 113.962502, 22.519592 ] } }, 190 | { "type": "Feature", "properties": { "name": "瑞河耶纳南门(公交站)", "address": "M486路(原B603、B610线);M487路(原B681线)" }, "geometry": { "type": "Point", "coordinates": [ 113.976349, 22.525312 ] } }, 191 | { "type": "Feature", "properties": { "name": "红树西岸(公交站)", "address": "M486路(原B603、B610线)" }, "geometry": { "type": "Point", "coordinates": [ 113.967102, 22.524796 ] } }, 192 | { "type": "Feature", "properties": { "name": "红树湾地铁站(公交站)", "address": "M486路(原B603、B610线)" }, "geometry": { "type": "Point", "coordinates": [ 113.968124, 22.525234 ] } }, 193 | { "type": "Feature", "properties": { "name": "沙河东公交总站(公交站)", "address": "M313路;M355路;M487路(原B681线);高峰专线30路" }, "geometry": { "type": "Point", "coordinates": [ 113.967987, 22.52523 ] } }, 194 | { "type": "Feature", "properties": { "name": "望海东滨路口(公交站)", "address": "B816路;M493路" }, "geometry": { "type": "Point", "coordinates": [ 113.95137, 22.503944 ] } }, 195 | { "type": "Feature", "properties": { "name": "欢乐海岸总站(公交站)", "address": "B706路;M486路(原B603、B610线)" }, "geometry": { "type": "Point", "coordinates": [ 113.989792, 22.521038 ] } }, 196 | { "type": "Feature", "properties": { "name": "白石路中(公交站)", "address": "45路;49路;M486路(原B603、B610线);M487路(原B681线)" }, "geometry": { "type": "Point", "coordinates": [ 113.980888, 22.525938 ] } }, 197 | { "type": "Feature", "properties": { "name": "滨海沙河西立交(公交站)", "address": "滨海休闲假日专线" }, "geometry": { "type": "Point", "coordinates": [ 113.957954, 22.520872 ] } }, 198 | { "type": "Feature", "properties": { "name": "瑞河耶纳北门(公交站)", "address": "45路;49路;M486路(原B603、B610线);M487路(原B681线)" }, "geometry": { "type": "Point", "coordinates": [ 113.977531, 22.526953 ] } }, 199 | { "type": "Feature", "properties": { "name": "流花山公园(公交站)", "address": "90路;123路;滨海休闲假日专线" }, "geometry": { "type": "Point", "coordinates": [ 113.953178, 22.515625 ] } }, 200 | { "type": "Feature", "properties": { "name": "海滨实验小学(公交站)", "address": "58路;M313路;M486路(原B603、B610线);M487路(原B681线)" }, "geometry": { "type": "Point", "coordinates": [ 113.967064, 22.52648 ] } }, 201 | { "type": "Feature", "properties": { "name": "火炬塔广场(公交站)", "address": "滨海休闲假日专线" }, "geometry": { "type": "Point", "coordinates": [ 113.953629, 22.516901 ] } }, 202 | { "type": "Feature", "properties": { "name": "日出剧场(公交站)", "address": "B816路;M493路;滨海休闲假日专线" }, "geometry": { "type": "Point", "coordinates": [ 113.951599, 22.498476 ] } }, 203 | { "type": "Feature", "properties": { "name": "华侨城中学高中部(公交站)", "address": "M486路(原B603、B610线);M487路(原B681线)" }, "geometry": { "type": "Point", "coordinates": [ 113.968597, 22.528065 ] } }, 204 | { "type": "Feature", "properties": { "name": "深湾二路(公交站)", "address": "M486路(原B603、B610线);M487路(原B681线);高峰专线30路" }, "geometry": { "type": "Point", "coordinates": [ 113.97068, 22.529028 ] } }, 205 | { "type": "Feature", "properties": { "name": "深圳湾口岸港方口岸区公共运输交匯处(公交站)", "address": "新界区专线小巴618路" }, "geometry": { "type": "Point", "coordinates": [ 113.948565, 22.503842 ] } } 206 | ] 207 | } 208 | -------------------------------------------------------------------------------- /example/greenway.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, 4 | 5 | "features": [ 6 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 3 }, "geometry": { "type": "LineString", "coordinates": [ [ 114.00148601, 22.5262539 ], [ 114.00180486, 22.52573518 ], [ 114.00190004, 22.52556386 ], [ 114.00224414, 22.52501397 ], [ 114.00232358, 22.52487857 ], [ 114.00260106, 22.5243382 ], [ 114.00278996, 22.52396962 ], [ 114.00311832, 22.52337951 ], [ 114.00342911, 22.52279869 ], [ 114.00344815, 22.52268448 ], [ 114.00342435, 22.5225893 ], [ 114.00340531, 22.52250364 ], [ 114.00336248, 22.52240846 ], [ 114.00321972, 22.52231328 ], [ 114.00260391, 22.5220049 ], [ 114.00157884, 22.5214681 ], [ 114.00049333, 22.52092558 ], [ 113.99905138, 22.52023554 ], [ 113.99868113, 22.52032596 ], [ 113.99815765, 22.52049728 ], [ 113.99774838, 22.52063529 ], [ 113.99727249, 22.52081612 ], [ 113.99668754, 22.52104993 ], [ 113.99631595, 22.52118256 ], [ 113.99608229, 22.52126822 ], [ 113.99590231, 22.52131167 ], [ 113.99568816, 22.52127836 ], [ 113.99541484, 22.52122823 ], [ 113.99480776, 22.52100234 ], [ 113.9943492, 22.52082443 ], [ 113.99381466, 22.52063529 ], [ 113.99345774, 22.52048776 ], [ 113.99327214, 22.52044017 ], [ 113.99275628, 22.52030787 ], [ 113.99254632, 22.52023377 ], [ 113.99235121, 22.52008149 ], [ 113.99224184, 22.51998427 ], [ 113.99214666, 22.51984626 ], [ 113.99207995, 22.51974836 ], [ 113.99199905, 22.51963891 ], [ 113.9917945, 22.51945603 ], [ 113.99164221, 22.51933229 ], [ 113.9914471, 22.51925615 ], [ 113.99124722, 22.51919904 ], [ 113.99101879, 22.51917049 ], [ 113.99080417, 22.51919428 ], [ 113.99066616, 22.51924187 ], [ 113.99049484, 22.51931326 ], [ 113.99019399, 22.51949138 ], [ 113.99005598, 22.51953897 ], [ 113.98987514, 22.5195818 ], [ 113.98976196, 22.51959879 ], [ 113.98960968, 22.51959879 ], [ 113.98915092, 22.51953693 ], [ 113.98841138, 22.51944175 ], [ 113.98789266, 22.51939416 ], [ 113.98747569, 22.51936765 ], [ 113.98720443, 22.51935337 ], [ 113.98642976, 22.51932278 ], [ 113.9861318, 22.51930217 ], [ 113.98582966, 22.5192847 ], [ 113.9855822, 22.51927043 ], [ 113.98530786, 22.51922606 ], [ 113.98483211, 22.51903929 ], [ 113.98455339, 22.51891603 ], [ 113.98419917, 22.51872996 ], [ 113.98406707, 22.51866573 ], [ 113.98355871, 22.51841858 ], [ 113.98319227, 22.5182425 ], [ 113.98297946, 22.51811605 ], [ 113.98274493, 22.51802359 ], [ 113.98246415, 22.51794269 ], [ 113.9819264, 22.51783799 ], [ 113.98159898, 22.5178142 ], [ 113.98107161, 22.51785972 ], [ 113.98076038, 22.51792635 ], [ 113.98036539, 22.51805008 ], [ 113.9800513, 22.51819761 ], [ 113.97975149, 22.51836893 ], [ 113.97945644, 22.5185926 ], [ 113.97930994, 22.51874695 ], [ 113.97902441, 22.5189611 ], [ 113.97887688, 22.51904676 ], [ 113.97875315, 22.51909911 ], [ 113.9785152, 22.51917525 ], [ 113.97835189, 22.51922012 ], [ 113.97821142, 22.51922872 ], [ 113.97774794, 22.51922048 ], [ 113.97741451, 22.51921289 ], [ 113.97610805, 22.51920109 ], [ 113.97516246, 22.51918746 ], [ 113.97473748, 22.51919157 ], [ 113.97439008, 22.51918681 ], [ 113.97409808, 22.51919553 ], [ 113.9737882, 22.51918206 ], [ 113.97349407, 22.5191354 ], [ 113.97336121, 22.51908277 ], [ 113.97312802, 22.51894952 ], [ 113.97294242, 22.51876392 ], [ 113.97274003, 22.518592 ], [ 113.97265641, 22.51853484 ], [ 113.97253316, 22.51847362 ], [ 113.97236611, 22.51840635 ], [ 113.97220955, 22.51838796 ], [ 113.97189546, 22.51839748 ], [ 113.97165276, 22.51846411 ], [ 113.97141481, 22.51858784 ], [ 113.97122921, 22.5187782 ], [ 113.97096747, 22.51894476 ], [ 113.97082279, 22.51901549 ], [ 113.97061531, 22.51908753 ], [ 113.97034405, 22.51913036 ], [ 113.97002139, 22.51911543 ], [ 113.96956929, 22.51911543 ], [ 113.96890019, 22.51910591 ], [ 113.96818731, 22.51909704 ], [ 113.96747823, 22.51908753 ], [ 113.96684053, 22.51903042 ], [ 113.96631182, 22.51895428 ], [ 113.96596442, 22.51891145 ], [ 113.96553299, 22.51881156 ], [ 113.96480895, 22.51856404 ], [ 113.96429499, 22.51839748 ], [ 113.96385241, 22.51828803 ], [ 113.96363254, 22.51826834 ], [ 113.96358161, 22.51831228 ], [ 113.96353356, 22.51837369 ], [ 113.96350501, 22.51844983 ], [ 113.96347169, 22.51866874 ], [ 113.96336176, 22.51873061 ], [ 113.96323327, 22.51875916 ], [ 113.96314285, 22.51875916 ], [ 113.96299533, 22.51877344 ], [ 113.96283352, 22.51880199 ], [ 113.96254323, 22.51882579 ], [ 113.96245281, 22.51870205 ], [ 113.96233859, 22.51860687 ], [ 113.96228625, 22.51851646 ], [ 113.96225293, 22.51843079 ], [ 113.96207638, 22.51847362 ], [ 113.96191266, 22.51852532 ], [ 113.96178132, 22.51857356 ], [ 113.96161952, 22.51865922 ], [ 113.96125784, 22.51888289 ], [ 113.96047548, 22.51934927 ], [ 113.96017651, 22.51946892 ], [ 113.95980769, 22.51957302 ], [ 113.95956176, 22.51964843 ], [ 113.95933619, 22.51967763 ], [ 113.95845389, 22.51977281 ], [ 113.95823973, 22.51981088 ], [ 113.9580589, 22.51979661 ], [ 113.95786378, 22.51971094 ], [ 113.95774005, 22.51959673 ], [ 113.95762583, 22.5193921 ], [ 113.95747831, 22.5192065 ], [ 113.95725416, 22.51904945 ], [ 113.95701146, 22.51901138 ], [ 113.95678303, 22.51901138 ], [ 113.95643087, 22.51912084 ], [ 113.95611678, 22.51925409 ], [ 113.95602636, 22.51929216 ], [ 113.95593439, 22.51929798 ], [ 113.95579178, 22.5193364 ], [ 113.95553429, 22.51935878 ], [ 113.95536545, 22.51933914 ], [ 113.95502378, 22.51926504 ], [ 113.9547424, 22.51911608 ], [ 113.95462343, 22.51899711 ], [ 113.95453301, 22.51890193 ], [ 113.95439024, 22.51871157 ], [ 113.95425699, 22.51836417 ], [ 113.95422368, 22.51785021 ], [ 113.95426175, 22.51758989 ], [ 113.95430934, 22.51745188 ], [ 113.95437597, 22.51725201 ], [ 113.95445687, 22.51705213 ], [ 113.95459488, 22.51675708 ], [ 113.95467102, 22.51664763 ], [ 113.9547662, 22.51651914 ], [ 113.95485186, 22.5163954 ], [ 113.95493276, 22.51620981 ], [ 113.95498035, 22.51602088 ], [ 113.95499463, 22.51586859 ], [ 113.95498035, 22.51570679 ], [ 113.95497559, 22.51548788 ], [ 113.95494704, 22.5153118 ], [ 113.95487089, 22.51517379 ], [ 113.95480427, 22.51507385 ], [ 113.95461391, 22.51487874 ], [ 113.95438072, 22.51470266 ], [ 113.95403332, 22.51450373 ], [ 113.95397146, 22.51439047 ], [ 113.95389056, 22.51425722 ], [ 113.95383821, 22.51407162 ], [ 113.95381917, 22.51394313 ], [ 113.95383821, 22.51382892 ], [ 113.95385248, 22.51371946 ], [ 113.95387628, 22.51357194 ], [ 113.95395242, 22.51348152 ], [ 113.95403808, 22.51341013 ], [ 113.9542638, 22.51320349 ], [ 113.9544188, 22.51301038 ], [ 113.95449018, 22.5128343 ], [ 113.95456156, 22.51263538 ], [ 113.95459964, 22.51246882 ], [ 113.95457873, 22.51234883 ], [ 113.95454729, 22.51212617 ], [ 113.95454253, 22.51185968 ], [ 113.95445692, 22.51168518 ], [ 113.95425366, 22.51143803 ], [ 113.9541285, 22.51131335 ], [ 113.95401572, 22.51119057 ], [ 113.95369211, 22.51091931 ], [ 113.95356362, 22.51076227 ], [ 113.9534494, 22.51060046 ], [ 113.95337802, 22.51046721 ], [ 113.95325905, 22.51020071 ], [ 113.95319385, 22.50992089 ], [ 113.95318909, 22.50970674 ], [ 113.95318909, 22.50958301 ], [ 113.95328903, 22.5091271 ], [ 113.95338897, 22.50897006 ], [ 113.95354125, 22.50882253 ], [ 113.95380299, 22.50863217 ], [ 113.95390293, 22.50855127 ], [ 113.95412184, 22.50835616 ], [ 113.95434551, 22.50809061 ], [ 113.95445972, 22.50793832 ], [ 113.95456061, 22.50779395 ], [ 113.95461677, 22.50765279 ], [ 113.95475478, 22.50739105 ], [ 113.95483568, 22.50707363 ], [ 113.95485947, 22.50680237 ], [ 113.95485947, 22.50660725 ], [ 113.95481046, 22.50638963 ], [ 113.95475478, 22.50613136 ], [ 113.95470243, 22.50592292 ], [ 113.95452159, 22.50551365 ], [ 113.95438834, 22.50526143 ], [ 113.95430744, 22.5051377 ], [ 113.95424081, 22.50505204 ], [ 113.95415039, 22.50494401 ], [ 113.95403142, 22.504806 ], [ 113.95368402, 22.50443005 ], [ 113.9535936, 22.50432059 ], [ 113.95338421, 22.50399698 ], [ 113.95324144, 22.5037638 ], [ 113.95315102, 22.50363626 ], [ 113.95308915, 22.50339831 ], [ 113.9530606, 22.50315561 ], [ 113.95305108, 22.50260357 ], [ 113.95301777, 22.5024332 ], [ 113.95302729, 22.50217622 ], [ 113.95307012, 22.50195731 ], [ 113.95310343, 22.50180027 ], [ 113.95315578, 22.50162419 ], [ 113.95326523, 22.50139671 ], [ 113.95342228, 22.50106358 ], [ 113.95360788, 22.50075901 ], [ 113.95371257, 22.50049251 ], [ 113.9537554, 22.5003369 ], [ 113.95384582, 22.50010371 ], [ 113.95385534, 22.4999895 ], [ 113.95388389, 22.4996992 ], [ 113.95396479, 22.49958023 ], [ 113.95403618, 22.49945174 ], [ 113.9540457, 22.49932325 ], [ 113.95403618, 22.49921855 ], [ 113.95399335, 22.49906627 ], [ 113.95393148, 22.49897204 ], [ 113.95385629, 22.49891618 ], [ 113.95385058, 22.49867223 ], [ 113.95380299, 22.49835433 ], [ 113.9537554, 22.4981773 ], [ 113.9535698, 22.49769379 ], [ 113.95346987, 22.49750344 ], [ 113.95335565, 22.49731308 ], [ 113.95318909, 22.49707989 ], [ 113.95303767, 22.49692552 ], [ 113.95291783, 22.49681815 ], [ 113.95284169, 22.49669918 ], [ 113.95270195, 22.49651708 ], [ 113.95254663, 22.49633685 ], [ 113.952437, 22.49611327 ], [ 113.95235627, 22.49599421 ], [ 113.95230868, 22.49587999 ], [ 113.9521783, 22.49545805 ], [ 113.95214022, 22.49533432 ], [ 113.95210691, 22.49498882 ], [ 113.95208788, 22.49476991 ], [ 113.9520736, 22.49432733 ], [ 113.95208312, 22.49403228 ], [ 113.95209739, 22.4938562 ], [ 113.95213071, 22.49368963 ], [ 113.95217354, 22.49350404 ], [ 113.95223064, 22.49329084 ], [ 113.9521783, 22.49322421 ], [ 113.95224016, 22.49309096 ], [ 113.95228299, 22.4930053 ], [ 113.95239245, 22.49277687 ], [ 113.95248287, 22.49263077 ], [ 113.95267798, 22.49229765 ], [ 113.95274461, 22.49211205 ], [ 113.95283027, 22.49191694 ], [ 113.95291117, 22.49164568 ], [ 113.95292545, 22.49147436 ], [ 113.9529426, 22.49125389 ], [ 113.95292477, 22.49116879 ], [ 113.95291593, 22.49093327 ], [ 113.95286535, 22.49073233 ], [ 113.95276137, 22.49045234 ], [ 113.95263956, 22.49021627 ], [ 113.95250666, 22.48993865 ], [ 113.95238769, 22.48966406 ], [ 113.95238293, 22.48947846 ], [ 113.95234962, 22.48917865 ], [ 113.95243991, 22.48873833 ], [ 113.95254389, 22.48852422 ], [ 113.95264491, 22.48857088 ], [ 113.95275186, 22.48835951 ], [ 113.95253462, 22.48823601 ], [ 113.95207935, 22.48793756 ], [ 113.95168717, 22.4876905 ], [ 113.95150892, 22.48758839 ], [ 113.95136631, 22.48754556 ], [ 113.95109892, 22.48730839 ], [ 113.95083509, 22.48714368 ], [ 113.95032527, 22.4869658 ], [ 113.95027892, 22.48688344 ], [ 113.95027892, 22.48678791 ], [ 113.9493878, 22.48617696 ], [ 113.94838955, 22.48552637 ], [ 113.94790431, 22.48548906 ], [ 113.94755215, 22.48537485 ], [ 113.94727613, 22.48528443 ], [ 113.94690018, 22.48519401 ], [ 113.94645284, 22.48517973 ], [ 113.94597219, 22.48525111 ], [ 113.9454625, 22.4854034 ], [ 113.94492951, 22.48567466 ], [ 113.94463921, 22.48597447 ] ] } }, 7 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 3 }, "geometry": { "type": "LineString", "coordinates": [ [ 113.95209739, 22.4938562 ], [ 113.95170906, 22.49385745 ], [ 113.95160436, 22.493886 ], [ 113.95155202, 22.49393835 ], [ 113.95152717, 22.49400022 ], [ 113.95152717, 22.49408126 ], [ 113.95155096, 22.49420023 ], [ 113.95155202, 22.49432382 ], [ 113.95157476, 22.49451551 ], [ 113.95156881, 22.49468802 ], [ 113.9515807, 22.49489622 ], [ 113.95164996, 22.49502231 ], [ 113.95161045, 22.49512822 ], [ 113.95162234, 22.49524124 ], [ 113.95165209, 22.49531263 ], [ 113.95168527, 22.49547072 ], [ 113.95161045, 22.49560411 ], [ 113.95161045, 22.49572903 ], [ 113.95166993, 22.49581826 ], [ 113.95164614, 22.49594913 ], [ 113.95164019, 22.49609785 ], [ 113.95168778, 22.49618113 ], [ 113.95165209, 22.4963358 ], [ 113.95166993, 22.49641908 ], [ 113.95174727, 22.49646072 ], [ 113.95184244, 22.49647262 ], [ 113.95189598, 22.49641313 ], [ 113.95195652, 22.49633209 ], [ 113.95201681, 22.49642571 ], [ 113.95209229, 22.49655114 ], [ 113.95199235, 22.49665821 ], [ 113.95195666, 22.49676529 ], [ 113.95213512, 22.49713649 ], [ 113.95216367, 22.49739347 ], [ 113.95219223, 22.49757193 ], [ 113.95219223, 22.49861413 ], [ 113.95213832, 22.49930166 ], [ 113.95215259, 22.49972044 ], [ 113.95221922, 22.49992983 ], [ 113.95216211, 22.50003453 ], [ 113.95215735, 22.50021537 ], [ 113.95209548, 22.5010339 ], [ 113.95206217, 22.50127661 ], [ 113.95205265, 22.50133848 ], [ 113.9520479, 22.50143841 ], [ 113.95185672, 22.50200129 ], [ 113.95177188, 22.50258293 ], [ 113.9516854, 22.50272941 ], [ 113.95157119, 22.50286504 ], [ 113.95152441, 22.50305883 ], [ 113.95152564, 22.50322906 ], [ 113.95157119, 22.50333617 ], [ 113.95159974, 22.50344325 ], [ 113.95157119, 22.50357174 ], [ 113.95160688, 22.50368595 ], [ 113.95163863, 22.50374411 ], [ 113.95164339, 22.50380598 ], [ 113.95164521, 22.50390105 ], [ 113.95166242, 22.50402965 ], [ 113.95179961, 22.50411426 ], [ 113.95192097, 22.50412853 ], [ 113.95209943, 22.50414995 ], [ 113.95225647, 22.50419992 ], [ 113.95237782, 22.50428558 ], [ 113.95244921, 22.50438551 ], [ 113.95249918, 22.50454256 ], [ 113.95249918, 22.50472816 ], [ 113.95249314, 22.50485701 ], [ 113.95242779, 22.50505652 ], [ 113.95240638, 22.50520643 ], [ 113.95247062, 22.50535633 ], [ 113.95252773, 22.50548482 ], [ 113.95254201, 22.50561332 ], [ 113.95251345, 22.50579178 ], [ 113.95243493, 22.50591313 ], [ 113.95234927, 22.50599165 ], [ 113.95223506, 22.5060559 ], [ 113.9520566, 22.50613442 ], [ 113.95193524, 22.50622722 ], [ 113.95188527, 22.50636285 ], [ 113.95224219, 22.50811175 ], [ 113.95231358, 22.50835089 ], [ 113.95259911, 22.50828664 ], [ 113.95279899, 22.50820812 ], [ 113.95296317, 22.50819384 ], [ 113.95316305, 22.50824381 ], [ 113.95342717, 22.50833661 ], [ 113.95358421, 22.50836516 ], [ 113.95361834, 22.50845782 ], [ 113.95358503, 22.50850065 ], [ 113.9535271, 22.50851507 ], [ 113.95335578, 22.50852221 ], [ 113.95317732, 22.5085579 ], [ 113.95302742, 22.50862214 ], [ 113.95297745, 22.50870067 ], [ 113.95298459, 22.50880774 ], [ 113.95304883, 22.50893623 ], [ 113.95312022, 22.50909328 ], [ 113.95328903, 22.5091271 ] ] } }, 8 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 3 }, "geometry": { "type": "LineString", "coordinates": [ [ 113.95602636, 22.51929216 ], [ 113.95593809, 22.51940051 ], [ 113.95600948, 22.51949569 ], [ 113.95606896, 22.51952245 ], [ 113.95627717, 22.51952245 ], [ 113.95638127, 22.51951948 ], [ 113.95648239, 22.51947784 ], [ 113.95658947, 22.5194481 ], [ 113.95684824, 22.5194243 ], [ 113.956991, 22.51945702 ], [ 113.95705644, 22.51951948 ], [ 113.9570951, 22.51962656 ], [ 113.95720813, 22.51967117 ], [ 113.95742526, 22.51970984 ], [ 113.95756505, 22.51983178 ], [ 113.95761859, 22.51990614 ], [ 113.95768402, 22.51991507 ], [ 113.95796956, 22.51988532 ], [ 113.95803797, 22.51985558 ], [ 113.9580589, 22.51979661 ] ] } }, 9 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 3 }, "geometry": { "type": "LineString", "coordinates": [ [ 113.96017651, 22.51946892 ], [ 113.9602241, 22.51949569 ], [ 113.96063753, 22.51952245 ], [ 113.96084276, 22.51950461 ], [ 113.96099742, 22.51947487 ], [ 113.96147926, 22.51947189 ], [ 113.96180644, 22.51943025 ], [ 113.96235371, 22.51931425 ], [ 113.96258274, 22.51925477 ], [ 113.96266304, 22.51921015 ], [ 113.96269576, 22.51914174 ], [ 113.96272253, 22.51904359 ], [ 113.96274632, 22.51896031 ], [ 113.96283853, 22.51888892 ], [ 113.96289802, 22.51885621 ], [ 113.96299617, 22.51883241 ], [ 113.96306458, 22.51883241 ], [ 113.96314488, 22.51884431 ], [ 113.96320437, 22.51890082 ], [ 113.96325493, 22.51896031 ], [ 113.96334714, 22.5190079 ], [ 113.96344827, 22.51903467 ], [ 113.96357523, 22.51901356 ], [ 113.96362702, 22.51896626 ], [ 113.96369038, 22.51893354 ], [ 113.96394319, 22.51891867 ], [ 113.9644875, 22.51890082 ], [ 113.96546902, 22.51886513 ], [ 113.96555915, 22.51887108 ], [ 113.96563648, 22.51890677 ], [ 113.96579097, 22.5189785 ], [ 113.96595473, 22.51901979 ], [ 113.96612129, 22.51907036 ], [ 113.96629678, 22.51915959 ], [ 113.96637411, 22.51922502 ], [ 113.96643657, 22.51925477 ], [ 113.96660105, 22.51925477 ], [ 113.9668271, 22.51923692 ], [ 113.9669312, 22.519228 ], [ 113.96705612, 22.51923395 ], [ 113.96714535, 22.51926071 ], [ 113.96743089, 22.51926071 ], [ 113.96753202, 22.51926666 ], [ 113.96762125, 22.51925179 ], [ 113.9677075, 22.51924882 ], [ 113.96780863, 22.51926369 ], [ 113.96801683, 22.51929641 ], [ 113.9681715, 22.51932912 ], [ 113.96829642, 22.51934102 ], [ 113.96842729, 22.51940051 ], [ 113.96859088, 22.51943323 ], [ 113.96886273, 22.51940646 ], [ 113.97022794, 22.51943025 ], [ 113.97032669, 22.51939753 ], [ 113.97064792, 22.51922205 ], [ 113.97072228, 22.51918636 ], [ 113.97079069, 22.51916851 ], [ 113.9720173, 22.51921907 ], [ 113.97207381, 22.51922502 ], [ 113.97216899, 22.51921907 ], [ 113.97307319, 22.51918338 ], [ 113.97315052, 22.51922205 ], [ 113.97322488, 22.51937969 ], [ 113.97327247, 22.51943323 ], [ 113.9751805, 22.5194362 ], [ 113.97561296, 22.51944215 ], [ 113.9756784, 22.5194243 ], [ 113.97573788, 22.51938861 ], [ 113.97580629, 22.51936779 ], [ 113.97590445, 22.51936779 ], [ 113.9761067, 22.51938564 ], [ 113.97618437, 22.51939466 ], [ 113.97627326, 22.51943025 ], [ 113.97657962, 22.51946594 ], [ 113.9766629, 22.51945107 ], [ 113.97673131, 22.51941835 ], [ 113.97678485, 22.51939456 ], [ 113.97686285, 22.51940873 ], [ 113.97693356, 22.51944512 ], [ 113.97699305, 22.51948676 ], [ 113.97705862, 22.51949452 ], [ 113.97713582, 22.51949569 ], [ 113.97723694, 22.5194481 ], [ 113.97768131, 22.51947487 ], [ 113.97862714, 22.51946892 ], [ 113.97873125, 22.51944512 ], [ 113.97886509, 22.51940348 ], [ 113.97900191, 22.51937374 ], [ 113.97936478, 22.51922205 ], [ 113.97947304, 22.51920718 ], [ 113.97963961, 22.51918338 ], [ 113.97981807, 22.51915959 ], [ 113.97998165, 22.5191239 ], [ 113.98012145, 22.51907631 ], [ 113.98032073, 22.5190079 ], [ 113.98057652, 22.51888595 ], [ 113.98074308, 22.51879969 ], [ 113.98093641, 22.51868072 ], [ 113.98112677, 22.51851118 ], [ 113.98129036, 22.51836544 ], [ 113.98137959, 22.51830893 ], [ 113.98148369, 22.51829108 ], [ 113.98173204, 22.51827026 ], [ 113.98192538, 22.51824052 ], [ 113.98217522, 22.51821673 ], [ 113.98236855, 22.5182078 ], [ 113.98247265, 22.51820483 ], [ 113.98260947, 22.51821375 ], [ 113.98273737, 22.51823457 ], [ 113.98288013, 22.51827324 ], [ 113.98301993, 22.51832678 ], [ 113.98314187, 22.51839221 ], [ 113.98326085, 22.51845765 ], [ 113.98334115, 22.518532 ], [ 113.98344823, 22.51863313 ], [ 113.98389438, 22.5188681 ], [ 113.98459781, 22.51915364 ], [ 113.98488929, 22.51926666 ], [ 113.98510642, 22.5193321 ], [ 113.98532652, 22.51939456 ], [ 113.98547523, 22.51942728 ], [ 113.98563585, 22.51944215 ], [ 113.98575185, 22.51945107 ], [ 113.98584702, 22.51947784 ], [ 113.98593923, 22.51951056 ], [ 113.98603441, 22.51955815 ], [ 113.98612959, 22.51958194 ], [ 113.98621584, 22.51960276 ], [ 113.98633477, 22.51960204 ], [ 113.98642404, 22.51959979 ], [ 113.9865222, 22.51961763 ], [ 113.98667151, 22.51964143 ], [ 113.98688268, 22.51966225 ], [ 113.9874835, 22.51974255 ], [ 113.98796921, 22.51980502 ], [ 113.98804654, 22.51979014 ], [ 113.98811495, 22.5197604 ], [ 113.9882012, 22.51973066 ], [ 113.98829043, 22.51971876 ], [ 113.988341, 22.51970389 ], [ 113.98839156, 22.51967415 ], [ 113.98848755, 22.51969405 ], [ 113.98854623, 22.51970686 ], [ 113.98862356, 22.51970389 ], [ 113.98868304, 22.51969497 ], [ 113.98883474, 22.51966225 ], [ 113.98889125, 22.51965333 ], [ 113.9890013, 22.51969199 ], [ 113.98908458, 22.51972768 ], [ 113.98919344, 22.51979014 ], [ 113.98929159, 22.51985261 ], [ 113.98934216, 22.51989722 ], [ 113.98939272, 22.51992696 ], [ 113.98945815, 22.51993589 ], [ 113.98952656, 22.51992399 ], [ 113.98962769, 22.51993886 ], [ 113.98974666, 22.51998348 ], [ 113.98986266, 22.52002512 ], [ 113.98998461, 22.52007271 ], [ 113.99005897, 22.52008758 ], [ 113.99011251, 22.52008163 ], [ 113.99018686, 22.52002809 ], [ 113.99024338, 22.52001024 ], [ 113.99030881, 22.5200043 ], [ 113.99037425, 22.52002809 ], [ 113.9904486, 22.52006676 ], [ 113.99054378, 22.52010542 ], [ 113.99061219, 22.52012029 ], [ 113.99071629, 22.52012922 ], [ 113.99079065, 22.52015004 ], [ 113.9908888, 22.52020655 ], [ 113.99102265, 22.52025414 ], [ 113.99126952, 22.52031363 ], [ 113.99134983, 22.52030768 ], [ 113.9914688, 22.52030173 ], [ 113.99161157, 22.52029875 ], [ 113.99176028, 22.52029875 ], [ 113.99182958, 22.52032255 ], [ 113.99191287, 22.52035824 ], [ 113.9919902, 22.52039691 ], [ 113.9920824, 22.5204445 ], [ 113.99213632, 22.52051779 ], [ 113.9921984, 22.52057537 ], [ 113.9922906, 22.52061701 ], [ 113.99240065, 22.52065567 ], [ 113.99249583, 22.52067649 ], [ 113.99263265, 22.5206646 ], [ 113.99313234, 22.52083116 ], [ 113.9933566, 22.52089213 ], [ 113.99346368, 22.52088618 ], [ 113.99354696, 22.52089213 ], [ 113.99360645, 22.52091593 ], [ 113.99363619, 22.52096054 ], [ 113.99365404, 22.52101111 ], [ 113.99367783, 22.52108249 ], [ 113.99373089, 22.52116442 ], [ 113.99389769, 22.52133507 ], [ 113.99407342, 22.52144833 ], [ 113.99419239, 22.52148997 ], [ 113.9942727, 22.5214632 ], [ 113.99433516, 22.52141561 ], [ 113.99438869, 22.52136802 ], [ 113.99447792, 22.52131746 ], [ 113.99460582, 22.52126392 ], [ 113.99468315, 22.52124608 ], [ 113.99480807, 22.52126392 ], [ 113.99507874, 22.52135018 ], [ 113.99533156, 22.52147213 ], [ 113.99538509, 22.52132638 ], [ 113.99541484, 22.52122823 ] ] } }, 10 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ 114.05930758, 22.57377407 ], [ 114.05864025, 22.57350989 ], [ 114.05806918, 22.5731494 ], [ 114.05772718, 22.57275258 ], [ 114.05744154, 22.57231303 ], [ 114.05704126, 22.57176455 ], [ 114.05685923, 22.57148615 ], [ 114.05663696, 22.57091765 ], [ 114.05631314, 22.57032974 ], [ 114.05589911, 22.57012272 ], [ 114.05541727, 22.56997282 ], [ 114.05476768, 22.57008703 ], [ 114.0544643, 22.57021552 ], [ 114.05423282, 22.57046277 ], [ 114.05397691, 22.57088622 ], [ 114.05337927, 22.57202153 ], [ 114.05294748, 22.57235867 ], [ 114.05268563, 22.57247883 ], [ 114.05235236, 22.57256592 ], [ 114.05159056, 22.57254231 ], [ 114.05014558, 22.57257476 ], [ 114.04938534, 22.5725926 ], [ 114.04671558, 22.57314226 ], [ 114.04604101, 22.57312084 ], [ 114.04565197, 22.5731958 ], [ 114.04533431, 22.57314226 ], [ 114.04497025, 22.57313155 ], [ 114.04476324, 22.57321364 ], [ 114.04455265, 22.57341709 ], [ 114.04432423, 22.57365265 ], [ 114.04406011, 22.57383825 ], [ 114.04371033, 22.5739025 ], [ 114.04333199, 22.57397745 ], [ 114.04312855, 22.57407739 ], [ 114.04309286, 22.57438791 ], [ 114.04319993, 22.57462704 ], [ 114.04336411, 22.57478409 ], [ 114.04356399, 22.57495898 ], [ 114.04356399, 22.57510888 ], [ 114.04344537, 22.57534392 ], [ 114.04317495, 22.57579417 ], [ 114.0429608, 22.57616893 ], [ 114.04261458, 22.57650801 ], [ 114.04177582, 22.5768221 ], [ 114.04120475, 22.57701126 ], [ 114.04088709, 22.57700412 ], [ 114.04055159, 22.57683637 ], [ 114.03989486, 22.57623318 ], [ 114.03945228, 22.57587983 ], [ 114.03897758, 22.57581558 ], [ 114.03847075, 22.57590481 ], [ 114.03758916, 22.57610112 ], [ 114.03712874, 22.5762189 ], [ 114.0368896, 22.57619035 ], [ 114.03652554, 22.57610469 ], [ 114.03621859, 22.5760333 ], [ 114.03587952, 22.57597263 ], [ 114.03562611, 22.57604758 ], [ 114.03546549, 22.57615823 ], [ 114.0352799, 22.57634739 ], [ 114.03502648, 22.57650087 ], [ 114.03471953, 22.57652228 ], [ 114.03437332, 22.57652585 ], [ 114.03407351, 22.57651158 ], [ 114.03355241, 22.57643662 ], [ 114.03327401, 22.57625459 ], [ 114.03286712, 22.57610826 ], [ 114.03248522, 22.57595478 ], [ 114.03192842, 22.57586912 ], [ 114.0316643, 22.57586912 ], [ 114.03142517, 22.57579417 ], [ 114.03106468, 22.57571565 ], [ 114.03051146, 22.57571922 ], [ 114.0302045, 22.5757442 ], [ 114.02992611, 22.57567282 ], [ 114.02981211, 22.5754926 ], [ 114.02969775, 22.57521573 ], [ 114.02958347, 22.57504464 ], [ 114.02935504, 22.57503036 ], [ 114.02913317, 22.57516751 ], [ 114.02899024, 22.57529936 ], [ 114.02884464, 22.57540156 ], [ 114.02864007, 22.57546958 ], [ 114.02839708, 22.57554134 ], [ 114.02814508, 22.57564069 ], [ 114.02799161, 22.57582272 ], [ 114.02785955, 22.57595835 ], [ 114.02766681, 22.57608684 ], [ 114.02742054, 22.57620463 ], [ 114.02719648, 22.57649931 ], [ 114.02709574, 22.57677213 ], [ 114.02697796, 22.57713262 ], [ 114.02677094, 22.57728609 ], [ 114.02645328, 22.57742886 ], [ 114.02627126, 22.57760018 ], [ 114.02627126, 22.57779292 ], [ 114.02636049, 22.57799993 ], [ 114.0263819, 22.57812128 ], [ 114.02634978, 22.57822836 ], [ 114.02624984, 22.57833186 ], [ 114.02612135, 22.57837113 ], [ 114.02585009, 22.57835685 ], [ 114.02547533, 22.57828546 ], [ 114.02523619, 22.5781998 ], [ 114.02486856, 22.57798922 ], [ 114.02468297, 22.57775722 ], [ 114.02461158, 22.57750024 ], [ 114.02468653, 22.5772968 ], [ 114.02480075, 22.57712905 ], [ 114.02489355, 22.57693274 ], [ 114.02488998, 22.57669361 ], [ 114.02482573, 22.57637238 ], [ 114.02462943, 22.5762189 ], [ 114.02442598, 22.57626887 ], [ 114.02422968, 22.57636167 ], [ 114.02396913, 22.57646875 ], [ 114.02369787, 22.57664721 ], [ 114.02348015, 22.57680782 ], [ 114.02333024, 22.57690062 ], [ 114.02313751, 22.57700769 ], [ 114.0224665, 22.57713618 ], [ 114.02197038, 22.57730751 ], [ 114.02164558, 22.57740744 ], [ 114.02145642, 22.57737889 ], [ 114.02129937, 22.57727181 ], [ 114.02118159, 22.57712548 ], [ 114.02099242, 22.57700769 ], [ 114.02081039, 22.57695059 ], [ 114.02053663, 22.57695511 ], [ 114.02041751, 22.57700744 ], [ 114.02022215, 22.5772483 ], [ 114.01980285, 22.57767726 ], [ 114.01961701, 22.57774695 ], [ 114.01943593, 22.57778154 ], [ 114.01921197, 22.57782039 ], [ 114.01902136, 22.57784177 ], [ 114.01858773, 22.57790195 ], [ 114.01825791, 22.57791951 ], [ 114.01770163, 22.57803919 ], [ 114.01732494, 22.57812209 ], [ 114.01698661, 22.57822644 ], [ 114.01673406, 22.57837494 ], [ 114.01651963, 22.57853233 ], [ 114.01633106, 22.57870306 ], [ 114.01615748, 22.57887365 ], [ 114.01606695, 22.57900068 ], [ 114.01602411, 22.57928841 ], [ 114.01603362, 22.57950978 ], [ 114.01607653, 22.57984352 ], [ 114.01605266, 22.58008077 ], [ 114.01594558, 22.58034846 ], [ 114.01579211, 22.5805519 ], [ 114.01556427, 22.58084302 ], [ 114.01544233, 22.58116223 ], [ 114.01530313, 22.58128715 ], [ 114.01514737, 22.58126738 ], [ 114.01500917, 22.58123185 ], [ 114.01491409, 22.58127645 ], [ 114.0148891, 22.58145848 ], [ 114.01487483, 22.58159767 ], [ 114.01481058, 22.58174044 ], [ 114.01464283, 22.58178327 ], [ 114.01449182, 22.58182037 ], [ 114.01443582, 22.58192961 ], [ 114.014368, 22.58202955 ], [ 114.01424706, 22.58213335 ], [ 114.01418241, 22.582216 ], [ 114.01407044, 22.58223866 ], [ 114.01396084, 22.58224272 ], [ 114.01383694, 22.5822643 ], [ 114.01376546, 22.58230798 ], [ 114.01368445, 22.58239553 ], [ 114.01345786, 22.58268271 ], [ 114.01338647, 22.58293969 ], [ 114.01337577, 22.58318953 ], [ 114.01326155, 22.58328233 ], [ 114.01309836, 22.58331558 ], [ 114.01293319, 22.58315027 ], [ 114.01282254, 22.58307889 ], [ 114.01250131, 22.58312172 ], [ 114.0124264, 22.58301068 ], [ 114.01242638, 22.58277804 ], [ 114.01245496, 22.58255425 ], [ 114.01249418, 22.58232579 ], [ 114.01238353, 22.58218659 ], [ 114.01216581, 22.58224727 ], [ 114.01201234, 22.58241145 ], [ 114.01186957, 22.58266843 ], [ 114.01179258, 22.58296049 ], [ 114.01174822, 22.58331802 ], [ 114.01182674, 22.58350005 ], [ 114.01195166, 22.58369279 ], [ 114.01219295, 22.58395812 ], [ 114.01235855, 22.58412109 ], [ 114.01260125, 22.58421032 ], [ 114.01285823, 22.58425672 ], [ 114.01296174, 22.58440306 ], [ 114.01307952, 22.58472072 ], [ 114.01315102, 22.58500186 ], [ 114.01313183, 22.58511539 ], [ 114.01301747, 22.58522917 ], [ 114.01287251, 22.58528822 ], [ 114.01264765, 22.58529893 ], [ 114.01250131, 22.58538459 ], [ 114.01239067, 22.58565941 ], [ 114.01231572, 22.58579861 ], [ 114.01217652, 22.58582717 ], [ 114.01197307, 22.58584501 ], [ 114.01187671, 22.58598421 ], [ 114.01188028, 22.5862055 ], [ 114.01184458, 22.58636611 ], [ 114.01159117, 22.58647676 ], [ 114.01146268, 22.58675873 ], [ 114.01126637, 22.58683011 ], [ 114.01096299, 22.58702285 ], [ 114.01082023, 22.58704426 ], [ 114.01075598, 22.58698358 ], [ 114.01077026, 22.58678728 ], [ 114.01072743, 22.58653744 ], [ 114.01054897, 22.58638396 ], [ 114.01035623, 22.5863911 ], [ 114.01006356, 22.58656599 ], [ 114.00986368, 22.58666593 ], [ 114.00974233, 22.58659811 ], [ 114.00974947, 22.58648033 ], [ 114.0097459, 22.58629473 ], [ 114.00971378, 22.58614482 ], [ 114.00965303, 22.58596087 ], [ 114.00967685, 22.58580292 ], [ 114.00971496, 22.58564063 ], [ 114.00972091, 22.58549166 ], [ 114.00962917, 22.58542089 ], [ 114.00948178, 22.58547025 ], [ 114.00934777, 22.58560909 ], [ 114.00924317, 22.58566115 ], [ 114.00915262, 22.58563015 ], [ 114.0090573, 22.58554207 ], [ 114.00876657, 22.58513736 ], [ 114.00867157, 22.58509191 ], [ 114.00857877, 22.58508121 ], [ 114.00850724, 22.58517496 ], [ 114.00853783, 22.58525958 ], [ 114.00861409, 22.58541783 ], [ 114.00869512, 22.58556732 ], [ 114.00872848, 22.5856596 ], [ 114.00871419, 22.58574734 ], [ 114.00866178, 22.58584814 ], [ 114.00858076, 22.58589618 ], [ 114.00844733, 22.58595284 ], [ 114.00826147, 22.58596545 ], [ 114.00815663, 22.58599586 ], [ 114.00806132, 22.58604386 ], [ 114.00802555, 22.58625547 ], [ 114.00792918, 22.58646605 ], [ 114.00774715, 22.58660882 ], [ 114.00764281, 22.58677775 ], [ 114.00757632, 22.58698976 ], [ 114.00749905, 22.58723609 ], [ 114.00746094, 22.58732376 ], [ 114.00735609, 22.58733662 ], [ 114.00726078, 22.5873056 ], [ 114.00709398, 22.58725681 ], [ 114.00694624, 22.58723442 ], [ 114.00683663, 22.58723409 ], [ 114.00660788, 22.58722901 ], [ 114.0065015, 22.58715134 ], [ 114.00640771, 22.58705721 ], [ 114.00636768, 22.58679494 ], [ 114.00641032, 22.58657637 ], [ 114.00645107, 22.58635933 ], [ 114.00641584, 22.58616267 ], [ 114.00627664, 22.58614126 ], [ 114.00619455, 22.58628759 ], [ 114.00614658, 22.58667594 ], [ 114.00609417, 22.58689526 ], [ 114.00604554, 22.58728437 ], [ 114.00588354, 22.5878545 ], [ 114.0058502, 22.58810899 ], [ 114.00586927, 22.58821001 ], [ 114.00595029, 22.58832438 ], [ 114.0061028, 22.58843018 ], [ 114.00632202, 22.58848352 ], [ 114.00651265, 22.58847093 ], [ 114.00672233, 22.588454 ], [ 114.00698921, 22.58848993 ], [ 114.00712742, 22.58856935 ], [ 114.00729423, 22.58879811 ], [ 114.00741338, 22.58896526 ], [ 114.00758973, 22.58918966 ], [ 114.00767075, 22.5893567 ], [ 114.00768506, 22.58948403 ], [ 114.00764219, 22.58974288 ], [ 114.00752785, 22.5903746 ], [ 114.00748498, 22.59074757 ], [ 114.00749453, 22.59101974 ], [ 114.00745642, 22.59126104 ], [ 114.00729356, 22.59153554 ], [ 114.00709904, 22.59179984 ], [ 114.0069656, 22.59191795 ], [ 114.0068846, 22.59204061 ], [ 114.00683219, 22.59223358 ], [ 114.00682744, 22.59246181 ], [ 114.00684058, 22.59269786 ], [ 114.00695479, 22.59289417 ], [ 114.00704045, 22.59302623 ], [ 114.00726174, 22.59319398 ], [ 114.00740094, 22.59327607 ], [ 114.00754276, 22.59339877 ], [ 114.00757571, 22.59354384 ], [ 114.00759002, 22.59375018 ], [ 114.00759262, 22.59388635 ], [ 114.00759852, 22.59419492 ], [ 114.00769967, 22.59442646 ], [ 114.00778641, 22.59457882 ], [ 114.00798986, 22.5946859 ], [ 114.00838604, 22.5947787 ], [ 114.0088247, 22.59487703 ], [ 114.00948355, 22.59505541 ], [ 114.00984493, 22.59502825 ], [ 114.01023532, 22.59493705 ], [ 114.01053826, 22.59483581 ], [ 114.01084976, 22.5947871 ], [ 114.0111633, 22.5947917 ], [ 114.01141803, 22.59490508 ], [ 114.01164483, 22.59510207 ], [ 114.01184827, 22.59528767 ], [ 114.01202316, 22.59549825 ], [ 114.01213024, 22.59568028 ], [ 114.01216593, 22.59593369 ], [ 114.01216415, 22.59628633 ], [ 114.01217557, 22.59656333 ], [ 114.01225862, 22.59672003 ], [ 114.01265312, 22.59707512 ], [ 114.01290654, 22.59726428 ], [ 114.01318493, 22.59720718 ], [ 114.01339195, 22.59709296 ], [ 114.01354243, 22.59702492 ], [ 114.01375957, 22.59704656 ], [ 114.01392019, 22.59721431 ], [ 114.0141736, 22.59743917 ], [ 114.01447341, 22.5977604 ], [ 114.01467329, 22.59804237 ], [ 114.01479464, 22.59826723 ], [ 114.01484015, 22.59859351 ], [ 114.01481256, 22.59904115 ], [ 114.01480066, 22.59928251 ], [ 114.01476531, 22.59952602 ] ] } }, 11 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 2 }, "geometry": { "type": "LineString", "coordinates": [ [ 114.14810478, 22.55367417 ], [ 114.14865682, 22.55507329 ], [ 114.14919286, 22.55629851 ], [ 114.14973829, 22.55765861 ], [ 114.15014145, 22.55904087 ], [ 114.15080548, 22.56134463 ], [ 114.15125607, 22.56296824 ], [ 114.15137892, 22.56354417 ], [ 114.15184054, 22.56352038 ], [ 114.15225192, 22.56384461 ], [ 114.15248775, 22.56396296 ], [ 114.15279724, 22.56411808 ], [ 114.15295136, 22.56433732 ], [ 114.15308738, 22.56466252 ], [ 114.15327297, 22.5648957 ], [ 114.1535252, 22.56515745 ], [ 114.15376937, 22.56537858 ], [ 114.15394719, 22.56540023 ], [ 114.15423169, 22.5654217 ], [ 114.15459917, 22.565454 ], [ 114.15482439, 22.56547557 ], [ 114.15504963, 22.56559591 ], [ 114.15529552, 22.56575707 ], [ 114.15586183, 22.56569044 ], [ 114.15600935, 22.56552388 ], [ 114.15630611, 22.56536327 ], [ 114.15654319, 22.56542871 ], [ 114.15675657, 22.56562589 ], [ 114.15696994, 22.56571332 ], [ 114.15736565, 22.56577135 ], [ 114.15783525, 22.56586545 ], [ 114.15812707, 22.56612827 ], [ 114.15827936, 22.56637573 ], [ 114.15841612, 22.56679731 ], [ 114.15842798, 22.56699483 ], [ 114.15809852, 22.56753691 ], [ 114.15784248, 22.56780801 ], [ 114.15776183, 22.56806158 ], [ 114.15826151, 22.56872783 ], [ 114.15848737, 22.56880778 ], [ 114.15893371, 22.56851368 ], [ 114.15925494, 22.56837686 ], [ 114.15977842, 22.56824599 ], [ 114.16027811, 22.56801994 ], [ 114.16033759, 22.56825193 ], [ 114.16004248, 22.56860308 ], [ 114.15976751, 22.56884063 ], [ 114.15954943, 22.56910442 ], [ 114.15958211, 22.56932864 ], [ 114.15984386, 22.56966177 ], [ 114.15986765, 22.56983428 ], [ 114.15956427, 22.56999489 ], [ 114.15923114, 22.57023878 ], [ 114.15912407, 22.57053027 ], [ 114.15884783, 22.57080016 ], [ 114.15883836, 22.57095822 ], [ 114.15902294, 22.57114298 ], [ 114.15932037, 22.57116677 ], [ 114.15953846, 22.57098201 ], [ 114.15970704, 22.5710478 ], [ 114.15962375, 22.57144636 ], [ 114.15961781, 22.57176759 ], [ 114.15976057, 22.57195795 ], [ 114.15971298, 22.5721721 ], [ 114.15958806, 22.57223158 ], [ 114.15930848, 22.5721721 ], [ 114.15911217, 22.57234461 ], [ 114.1590376, 22.57254699 ], [ 114.1592083, 22.57281886 ], [ 114.15927278, 22.57296327 ], [ 114.15917166, 22.57310604 ], [ 114.15899972, 22.57330211 ], [ 114.15911217, 22.57355218 ], [ 114.15926089, 22.57396264 ], [ 114.15918355, 22.5741411 ], [ 114.15903484, 22.57420059 ], [ 114.15905268, 22.57431956 ], [ 114.15919545, 22.57445043 ], [ 114.15925494, 22.57455751 ], [ 114.15945124, 22.57474786 ], [ 114.1596654, 22.57464079 ], [ 114.15986765, 22.5745813 ], [ 114.16000447, 22.57476571 ], [ 114.16011749, 22.57492037 ], [ 114.16027216, 22.57497391 ], [ 114.16048501, 22.5750049 ], [ 114.16059339, 22.5752654 ], [ 114.16059339, 22.57552714 ], [ 114.16039708, 22.5756818 ], [ 114.16063503, 22.57577698 ], [ 114.16065287, 22.57595544 ], [ 114.16068262, 22.57618744 ], [ 114.16085489, 22.57615984 ], [ 114.16114646, 22.57598811 ], [ 114.16172604, 22.57560845 ], [ 114.16203893, 22.57526219 ], [ 114.16222739, 22.57535403 ], [ 114.16234828, 22.57534065 ], [ 114.16251184, 22.57516256 ], [ 114.16260998, 22.57519996 ], [ 114.16253265, 22.57542006 ], [ 114.1625012, 22.57563997 ], [ 114.16234832, 22.57584766 ], [ 114.16231988, 22.5760255 ], [ 114.16244712, 22.57639035 ], [ 114.16282898, 22.57664334 ], [ 114.16333055, 22.57675644 ], [ 114.16355654, 22.57667805 ], [ 114.16374618, 22.5766338 ], [ 114.16397471, 22.57659908 ], [ 114.16400913, 22.5764909 ], [ 114.16396979, 22.57627454 ], [ 114.16395012, 22.57612211 ], [ 114.16412688, 22.57611605 ], [ 114.16421017, 22.57599113 ], [ 114.1643435, 22.57607294 ], [ 114.16451561, 22.57634339 ], [ 114.16453528, 22.57647124 ], [ 114.16456478, 22.57659417 ], [ 114.16466804, 22.57669743 ], [ 114.16481064, 22.57677611 ], [ 114.16497291, 22.57680069 ], [ 114.16519967, 22.57668747 ], [ 114.16534663, 22.5767466 ], [ 114.16550398, 22.57684003 ], [ 114.16577443, 22.57692362 ], [ 114.16590228, 22.57702689 ], [ 114.16612356, 22.57720391 ], [ 114.16631533, 22.57718916 ], [ 114.16649235, 22.5771154 ], [ 114.16661603, 22.57706894 ], [ 114.16678739, 22.57710065 ], [ 114.16690048, 22.57713507 ], [ 114.16699391, 22.57727275 ], [ 114.16710209, 22.57732192 ], [ 114.16729162, 22.57738594 ], [ 114.16738644, 22.57739674 ], [ 114.16751682, 22.57754465 ], [ 114.16768233, 22.57748911 ], [ 114.16777084, 22.57738093 ], [ 114.16793755, 22.57729694 ], [ 114.16813964, 22.57724816 ], [ 114.16853302, 22.57729242 ], [ 114.16885264, 22.57730717 ], [ 114.1690985, 22.57737601 ], [ 114.16924602, 22.57735634 ], [ 114.16939846, 22.57731701 ], [ 114.16954942, 22.57728295 ], [ 114.1698361, 22.57734651 ], [ 114.17002349, 22.57727657 ], [ 114.17016334, 22.577194 ], [ 114.17019888, 22.57708419 ], [ 114.17030324, 22.57686462 ], [ 114.17034749, 22.57669251 ], [ 114.17028357, 22.5764614 ], [ 114.17019014, 22.57622045 ], [ 114.17013605, 22.57605327 ], [ 114.17006229, 22.57586641 ], [ 114.1699787, 22.57565989 ], [ 114.1699787, 22.57543861 ], [ 114.17006247, 22.57525721 ], [ 114.1701508, 22.57511899 ], [ 114.17047534, 22.57502064 ], [ 114.17089331, 22.57486821 ], [ 114.17125354, 22.57474466 ], [ 114.1715617, 22.57495808 ], [ 114.17188168, 22.57534518 ], [ 114.17215705, 22.57584674 ], [ 114.1722013, 22.57634339 ], [ 114.17221605, 22.57667284 ], [ 114.17238816, 22.57699738 ], [ 114.17237832, 22.57722358 ], [ 114.17221605, 22.57731701 ], [ 114.17195544, 22.57734159 ], [ 114.17171941, 22.57736618 ], [ 114.17155001, 22.57747123 ], [ 114.17149669, 22.57759205 ], [ 114.17141946, 22.57773989 ], [ 114.17135553, 22.57790708 ], [ 114.17118343, 22.57803493 ], [ 114.16988035, 22.57824145 ], [ 114.16958531, 22.57834963 ], [ 114.16945231, 22.57856163 ], [ 114.16940829, 22.57892495 ], [ 114.16941681, 22.57933537 ], [ 114.1693635, 22.57981285 ], [ 114.16932797, 22.58012019 ], [ 114.16931022, 22.58054821 ], [ 114.16939913, 22.58087178 ], [ 114.16953614, 22.58124099 ], [ 114.16963977, 22.58169987 ], [ 114.16966825, 22.58212122 ], [ 114.16971568, 22.58248107 ], [ 114.16965907, 22.58304563 ], [ 114.16948818, 22.58342965 ], [ 114.16919427, 22.58368479 ], [ 114.16902475, 22.58385698 ], [ 114.16878659, 22.58410695 ], [ 114.16852113, 22.58447617 ], [ 114.16808063, 22.58509613 ], [ 114.16790852, 22.58524856 ], [ 114.1675351, 22.5853208 ], [ 114.16718077, 22.5854305 ], [ 114.16710701, 22.58562719 ], [ 114.16714143, 22.58603041 ], [ 114.16707751, 22.58637954 ], [ 114.16689557, 22.5866549 ], [ 114.16670871, 22.58687126 ], [ 114.16656809, 22.58707839 ], [ 114.16643536, 22.58729811 ], [ 114.16642843, 22.5875646 ], [ 114.16681197, 22.58803666 ], [ 114.16721519, 22.58849396 ], [ 114.1676725, 22.58870049 ], [ 114.16784952, 22.58888735 ], [ 114.16776592, 22.58914304 ], [ 114.16738238, 22.58945283 ], [ 114.16754465, 22.58978721 ], [ 114.16820848, 22.59046087 ], [ 114.16853302, 22.59074607 ], [ 114.16897667, 22.59098924 ], [ 114.16922319, 22.59106779 ], [ 114.1694968, 22.59118371 ], [ 114.16969841, 22.5914935 ], [ 114.16994383, 22.59176873 ], [ 114.17028357, 22.59198523 ], [ 114.17043108, 22.59226551 ], [ 114.17028848, 22.59258022 ], [ 114.17024915, 22.59289984 ], [ 114.17020943, 22.59357663 ], [ 114.17013605, 22.59421767 ], [ 114.1701052, 22.59456002 ], [ 114.17024742, 22.5946651 ], [ 114.17093265, 22.5947684 ], [ 114.17132603, 22.59486183 ], [ 114.17193514, 22.59503939 ], [ 114.1724865, 22.59520112 ] ] } }, 12 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 5 }, "geometry": { "type": "LineString", "coordinates": [ [ 113.83562332, 22.6418743 ], [ 113.83864306, 22.64380162 ], [ 113.83949644, 22.64428268 ], [ 113.83987958, 22.64441735 ], [ 113.8406529, 22.6444471 ], [ 113.84152316, 22.64443245 ], [ 113.84239883, 22.64438464 ], [ 113.84257134, 22.64450658 ], [ 113.84263678, 22.64498545 ], [ 113.84282119, 22.64617816 ], [ 113.84324949, 22.64770696 ], [ 113.84316323, 22.64804008 ], [ 113.84205678, 22.6483167 ], [ 113.84190995, 22.64853721 ], [ 113.84235078, 22.64969889 ], [ 113.84297668, 22.651251 ], [ 113.84337441, 22.65187399 ], [ 113.84390087, 22.65281685 ], [ 113.84402876, 22.65331951 ], [ 113.84415368, 22.65343551 ], [ 113.84445409, 22.65359612 ], [ 113.84465337, 22.65415232 ], [ 113.8448348, 22.65513088 ], [ 113.84468609, 22.65559487 ], [ 113.84426671, 22.65590718 ], [ 113.84390979, 22.65635035 ], [ 113.84352015, 22.65694224 ], [ 113.84334467, 22.65721885 ], [ 113.84307664, 22.65744619 ], [ 113.8431525, 22.65754696 ], [ 113.84328051, 22.65760376 ], [ 113.84345119, 22.65766487 ], [ 113.84366453, 22.65766886 ], [ 113.84383521, 22.6576861 ], [ 113.84393477, 22.65774295 ], [ 113.84406278, 22.6578173 ], [ 113.84419553, 22.65786971 ], [ 113.84430458, 22.65795726 ], [ 113.84432355, 22.65805375 ], [ 113.84433304, 22.65814587 ], [ 113.84439468, 22.65823351 ], [ 113.84452269, 22.65837806 ], [ 113.84460804, 22.65850953 ], [ 113.84466968, 22.65863665 ], [ 113.84472658, 22.65875501 ], [ 113.84474555, 22.65886028 ], [ 113.8447503, 22.65898751 ], [ 113.84472187, 22.65921571 ], [ 113.84473136, 22.65936926 ], [ 113.84476456, 22.65958419 ], [ 113.84475508, 22.65970705 ], [ 113.84476457, 22.65980356 ], [ 113.84477406, 22.65987374 ], [ 113.84474088, 22.65994839 ], [ 113.84471718, 22.6600318 ], [ 113.84475037, 22.66016775 ], [ 113.8447172, 22.66032576 ], [ 113.84465083, 22.66041802 ], [ 113.84457972, 22.66046203 ], [ 113.8443806, 22.66051066 ], [ 113.84431897, 22.66058097 ], [ 113.84431897, 22.66062924 ], [ 113.84436639, 22.66072129 ], [ 113.84444699, 22.66078256 ], [ 113.84458922, 22.66085689 ], [ 113.84464612, 22.66092259 ], [ 113.84479309, 22.66096181 ], [ 113.84491162, 22.66092649 ], [ 113.84503014, 22.66093066 ], [ 113.84513444, 22.66093047 ], [ 113.845234, 22.6608908 ], [ 113.84533978, 22.66082194 ], [ 113.84533979, 22.66087459 ], [ 113.84532912, 22.66097991 ], [ 113.84530424, 22.66110171 ], [ 113.84531136, 22.66121357 ], [ 113.84529714, 22.66133206 ], [ 113.8452616, 22.6615164 ], [ 113.84525805, 22.66161842 ], [ 113.84522961, 22.66177313 ], [ 113.84514784, 22.66193781 ], [ 113.84509807, 22.66202345 ], [ 113.8450234, 22.66206966 ], [ 113.84490962, 22.66209948 ], [ 113.84478362, 22.66219241 ], [ 113.84474855, 22.6623109 ], [ 113.84472773, 22.6624269 ], [ 113.84473541, 22.66252429 ], [ 113.84489132, 22.66278084 ], [ 113.8448705, 22.66298905 ], [ 113.84506978, 22.66313181 ], [ 113.84511142, 22.66336976 ], [ 113.84513224, 22.66350658 ], [ 113.84510249, 22.66368504 ], [ 113.84513819, 22.66390217 ], [ 113.84515901, 22.66407468 ], [ 113.84519777, 22.66423124 ], [ 113.84528312, 22.66438903 ], [ 113.84525112, 22.66443187 ], [ 113.84519067, 22.66447146 ], [ 113.84510889, 22.66451768 ], [ 113.84497734, 22.66459361 ], [ 113.844764, 22.66464994 ], [ 113.84461466, 22.66475222 ], [ 113.84446888, 22.66486108 ], [ 113.84431955, 22.66494691 ], [ 113.8442271, 22.66505896 ], [ 113.84409911, 22.66518753 ], [ 113.84401733, 22.66523704 ], [ 113.84397822, 22.66531608 ], [ 113.84397467, 22.66539177 ], [ 113.84390356, 22.6654281 ], [ 113.84387156, 22.66545448 ], [ 113.84381467, 22.66552369 ], [ 113.84377912, 22.66563563 ], [ 113.84379335, 22.66574748 ], [ 113.84379455, 22.66587691 ], [ 113.84372558, 22.66600902 ], [ 113.84357529, 22.66612959 ], [ 113.84342714, 22.66616825 ], [ 113.84330269, 22.66617945 ], [ 113.84319009, 22.6661303 ], [ 113.84308933, 22.66592209 ], [ 113.84284041, 22.66556608 ], [ 113.84263298, 22.66529774 ], [ 113.84239, 22.66518851 ], [ 113.84215295, 22.66514508 ], [ 113.84195147, 22.66517836 ], [ 113.84169072, 22.66522272 ], [ 113.84147145, 22.66517377 ], [ 113.84123441, 22.66512486 ], [ 113.84116329, 22.66509757 ], [ 113.84118192, 22.66524415 ], [ 113.84138342, 22.66547411 ], [ 113.84141899, 22.66571535 ], [ 113.84149012, 22.66594555 ], [ 113.84163236, 22.66608787 ], [ 113.84179831, 22.6663508 ], [ 113.84196426, 22.66666857 ], [ 113.84203539, 22.66700846 ], [ 113.84204726, 22.66721683 ], [ 113.84198801, 22.66749115 ], [ 113.84191692, 22.66774355 ], [ 113.84179841, 22.66802895 ], [ 113.84160878, 22.66812802 ], [ 113.8414073, 22.66823808 ], [ 113.84106359, 22.66827163 ], [ 113.84076729, 22.66833799 ], [ 113.84063693, 22.66846108 ], [ 113.84048761, 22.66865221 ], [ 113.84041198, 22.66903585 ], [ 113.84033762, 22.66952662 ], [ 113.84015619, 22.67002333 ], [ 113.83998991, 22.67004829 ], [ 113.83998282, 22.67046948 ], [ 113.84056665, 22.67040702 ], [ 113.84100982, 22.67034753 ], [ 113.8411972, 22.67032076 ], [ 113.84115556, 22.67009174 ], [ 113.84096942, 22.66995195 ], [ 113.840989, 22.66969318 ], [ 113.8412699, 22.66954574 ], [ 113.84131968, 22.66948642 ], [ 113.84164679, 22.66940026 ], [ 113.84182458, 22.66939992 ], [ 113.84220858, 22.6692281 ], [ 113.84243614, 22.66920136 ], [ 113.84314727, 22.66906841 ], [ 113.84343884, 22.66913368 ], [ 113.84351707, 22.66919276 ], [ 113.84374463, 22.66922524 ], [ 113.84417842, 22.6690665 ], [ 113.84455533, 22.66905922 ], [ 113.84476867, 22.66897986 ], [ 113.84498201, 22.66886759 ], [ 113.84501757, 22.66890701 ], [ 113.84495357, 22.66903216 ], [ 113.84485401, 22.66912448 ], [ 113.84480424, 22.66922987 ], [ 113.84478292, 22.66947998 ], [ 113.8447545, 22.66978275 ], [ 113.84478296, 22.67003277 ], [ 113.84489675, 22.67021024 ], [ 113.84502477, 22.67039427 ], [ 113.84508878, 22.67042048 ], [ 113.84525897, 22.67066561 ], [ 113.8451233, 22.67096791 ], [ 113.84528794, 22.67105187 ], [ 113.84557951, 22.67100527 ], [ 113.84586398, 22.67105081 ], [ 113.84599909, 22.67102424 ], [ 113.84611999, 22.67104376 ], [ 113.84625512, 22.67114881 ], [ 113.84636891, 22.67122099 ], [ 113.8465467, 22.67127331 ], [ 113.84676717, 22.67131239 ], [ 113.84698052, 22.67144362 ], [ 113.84710142, 22.67142365 ], [ 113.84715119, 22.67131827 ], [ 113.8472863, 22.67113376 ], [ 113.84743565, 22.67113349 ], [ 113.84755656, 22.67125173 ], [ 113.8476348, 22.67143585 ], [ 113.84767036, 22.67154765 ], [ 113.84779127, 22.67167247 ], [ 113.84779128, 22.67192254 ], [ 113.84784108, 22.6721791 ], [ 113.84791222, 22.67242904 ], [ 113.84792645, 22.67254089 ], [ 113.84794781, 22.67304098 ], [ 113.84821807, 22.67314579 ], [ 113.84848122, 22.67334273 ], [ 113.84853101, 22.67352032 ], [ 113.8486306, 22.6739084 ], [ 113.84871595, 22.67411225 ], [ 113.84870174, 22.67429654 ], [ 113.84843969, 22.67415467 ], [ 113.84816308, 22.67387508 ], [ 113.84797569, 22.67382749 ], [ 113.84775857, 22.673884 ], [ 113.84711611, 22.67418144 ], [ 113.84692576, 22.67420523 ], [ 113.84666104, 22.6741398 ], [ 113.8463755, 22.67404164 ], [ 113.84606617, 22.67385426 ], [ 113.84567951, 22.67388698 ], [ 113.84534936, 22.67403272 ], [ 113.8447545, 22.674348 ], [ 113.84420127, 22.67440749 ], [ 113.84383543, 22.67435395 ], [ 113.84323462, 22.67405652 ], [ 113.84269329, 22.67384831 ], [ 113.84258026, 22.67389293 ], [ 113.84257432, 22.67399108 ], [ 113.84329708, 22.67442236 ], [ 113.8436302, 22.67473169 ], [ 113.84425184, 22.67515702 ], [ 113.84456521, 22.67529076 ], [ 113.84487644, 22.67530573 ], [ 113.84501624, 22.67539794 ], [ 113.84505788, 22.67552286 ], [ 113.8449746, 22.67565373 ], [ 113.84410907, 22.67587383 ], [ 113.84390032, 22.67582173 ], [ 113.8433505, 22.67547887 ], [ 113.84310672, 22.67545147 ], [ 113.84275575, 22.6756567 ], [ 113.84292529, 22.67565373 ], [ 113.84311267, 22.67566563 ], [ 113.84325841, 22.67572809 ], [ 113.84344282, 22.67597198 ], [ 113.84356774, 22.67648357 ], [ 113.84376702, 22.67685536 ], [ 113.8442102, 22.67726581 ], [ 113.84454035, 22.67744725 ], [ 113.84514116, 22.67820867 ], [ 113.84712801, 22.6790861 ], [ 113.84815972, 22.67922573 ], [ 113.84896108, 22.67968128 ], [ 113.84911783, 22.67987727 ], [ 113.84912081, 22.68004978 ], [ 113.84850215, 22.68071603 ], [ 113.84793108, 22.68186412 ], [ 113.84841589, 22.68284565 ], [ 113.84719642, 22.68344051 ], [ 113.84744626, 22.68385989 ], [ 113.85010531, 22.68514183 ], [ 113.84920111, 22.68671227 ], [ 113.84922194, 22.68691155 ], [ 113.84946286, 22.68721791 ], [ 113.84974542, 22.68746775 ], [ 113.84986439, 22.6876819 ], [ 113.84985249, 22.68799123 ], [ 113.84959967, 22.68866046 ], [ 113.84935875, 22.68931183 ], [ 113.84921004, 22.69025172 ], [ 113.84940265, 22.690605 ], [ 113.84962049, 22.69076331 ], [ 113.84996254, 22.69081982 ], [ 113.85028674, 22.69088823 ], [ 113.85059042, 22.69098979 ], [ 113.85086376, 22.69123325 ], [ 113.85100058, 22.6914712 ], [ 113.85100951, 22.69180729 ], [ 113.8509411, 22.6921196 ] ] } }, 13 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 9 }, "geometry": { "type": "LineString", "coordinates": [ [ 114.5113761, 22.54249637 ], [ 114.51292968, 22.54110426 ], [ 114.51647296, 22.54212987 ], [ 114.51925842, 22.54289438 ], [ 114.52221453, 22.54344774 ], [ 114.52465158, 22.54388061 ], [ 114.52502278, 22.54439458 ], [ 114.5253035, 22.54498434 ], [ 114.52608064, 22.54759888 ], [ 114.52659239, 22.54865114 ], [ 114.52761584, 22.54987758 ], [ 114.52850662, 22.55070049 ], [ 114.53117902, 22.55218582 ], [ 114.533264, 22.55344458 ], [ 114.53599357, 22.55456124 ], [ 114.53866641, 22.554607 ], [ 114.54152901, 22.5539149 ], [ 114.54357659, 22.5534533 ], [ 114.54556746, 22.55343099 ], [ 114.54723743, 22.55388863 ], [ 114.54879359, 22.55461674 ], [ 114.55036518, 22.55505325 ], [ 114.55269794, 22.55499553 ], [ 114.55539127, 22.55455093 ], [ 114.55823054, 22.55410278 ], [ 114.56070042, 22.55381724 ], [ 114.56168551, 22.55331756 ], [ 114.5662398, 22.5496627 ], [ 114.56825489, 22.54631046 ] ] } }, 14 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 2 }, "geometry": { "type": "LineString", "coordinates": [ [ 114.17218163, 22.57603852 ], [ 114.1727127, 22.57575823 ], [ 114.17278646, 22.5756648 ], [ 114.1722849, 22.57495672 ], [ 114.171803, 22.57524192 ], [ 114.17180792, 22.57522717 ] ] } }, 15 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 7 }, "geometry": { "type": "LineString", "coordinates": [ [ 113.96646576, 22.73115585 ], [ 113.96631276, 22.73135838 ], [ 113.96567463, 22.73220763 ], [ 113.96520796, 22.73303976 ], [ 113.96508417, 22.73359203 ], [ 113.96520801, 22.73386423 ], [ 113.96507468, 22.73412704 ], [ 113.96505564, 22.73431118 ], [ 113.96516994, 22.73436957 ], [ 113.96516995, 22.73452744 ], [ 113.96506996, 22.73477717 ], [ 113.96525571, 22.73508022 ], [ 113.9656558, 22.73568637 ], [ 113.96572726, 22.73610754 ], [ 113.9662888, 22.73572049 ], [ 113.96645594, 22.73603037 ], [ 113.96630634, 22.7362464 ], [ 113.96585589, 22.73669989 ], [ 113.96632741, 22.73702994 ], [ 113.96655603, 22.73724099 ], [ 113.96669178, 22.73749787 ], [ 113.96662037, 22.73792527 ], [ 113.9664775, 22.73801701 ], [ 113.96652038, 22.7383526 ], [ 113.96652753, 22.73845786 ], [ 113.96690616, 22.73845879 ], [ 113.96722052, 22.73868979 ], [ 113.96729197, 22.738861 ], [ 113.96734203, 22.73963075 ], [ 113.96732776, 22.73985436 ], [ 113.96742064, 22.73991379 ], [ 113.96749925, 22.7403876 ], [ 113.96732066, 22.74065686 ], [ 113.96777077, 22.74103291 ], [ 113.96773507, 22.74138145 ], [ 113.96782796, 22.74153297 ], [ 113.96748507, 22.74207151 ], [ 113.96767083, 22.7423022 ], [ 113.96794233, 22.74251994 ], [ 113.96833527, 22.74255381 ], [ 113.96842101, 22.74269873 ], [ 113.96869254, 22.74321248 ], [ 113.96879256, 22.74325878 ], [ 113.96906402, 22.74275296 ], [ 113.96930693, 22.7425957 ], [ 113.96999996, 22.7425843 ], [ 113.9705001, 22.74270397 ], [ 113.97076448, 22.74296119 ], [ 113.97050013, 22.74312496 ], [ 113.9704787, 22.74325646 ], [ 113.97052158, 22.74344733 ], [ 113.9706645, 22.74380289 ], [ 113.9707574, 22.74403335 ], [ 113.9709146, 22.74422451 ], [ 113.97109324, 22.74441572 ], [ 113.97116469, 22.74453431 ], [ 113.97095036, 22.74473109 ], [ 113.97074316, 22.74481607 ], [ 113.97076461, 22.74511871 ], [ 113.97102184, 22.74527065 ], [ 113.9708218, 22.74555298 ], [ 113.97097186, 22.74577701 ], [ 113.97106478, 22.74639117 ], [ 113.97102672, 22.74704007 ], [ 113.97117916, 22.74733865 ], [ 113.97150311, 22.74791832 ], [ 113.97180799, 22.74837515 ], [ 113.97194141, 22.74902449 ], [ 113.97194147, 22.75002428 ], [ 113.97173191, 22.75049732 ], [ 113.9713509, 22.75132072 ], [ 113.97116041, 22.75205691 ], [ 113.97154149, 22.75226837 ], [ 113.97159869, 22.75277717 ], [ 113.971351, 22.75289931 ], [ 113.97135102, 22.75325011 ], [ 113.9714082, 22.75361859 ], [ 113.97135107, 22.75396924 ], [ 113.97152255, 22.75405738 ], [ 113.97167845, 22.75433656 ], [ 113.97155831, 22.75455406 ], [ 113.97131421, 22.75487134 ], [ 113.97155214, 22.75507836 ], [ 113.97137377, 22.75517844 ], [ 113.97124875, 22.75539188 ], [ 113.97128448, 22.755529 ], [ 113.97147161, 22.75587099 ], [ 113.97096893, 22.7559009 ], [ 113.97054025, 22.7560478 ], [ 113.97083796, 22.7561801 ], [ 113.97100468, 22.75626275 ], [ 113.97060579, 22.75674954 ], [ 113.97065343, 22.75693602 ], [ 113.97042124, 22.75716015 ], [ 113.97033194, 22.75734628 ], [ 113.97010476, 22.75780043 ], [ 113.96993807, 22.7580631 ], [ 113.96946177, 22.75823729 ], [ 113.96911645, 22.758357 ], [ 113.96823986, 22.75835078 ], [ 113.96723511, 22.75836329 ], [ 113.96596223, 22.75842104 ], [ 113.96583015, 22.75885315 ], [ 113.96603361, 22.75932524 ], [ 113.96698042, 22.76029635 ], [ 113.96722811, 22.76066089 ], [ 113.96774729, 22.76125849 ], [ 113.96819025, 22.76135167 ], [ 113.96860941, 22.76168595 ], [ 113.9687428, 22.76217299 ], [ 113.96923345, 22.76304677 ], [ 113.96964309, 22.76338981 ], [ 113.96982888, 22.76381997 ], [ 113.96989561, 22.76442961 ], [ 113.9699385, 22.76481118 ], [ 113.96956698, 22.76493301 ], [ 113.96911926, 22.76499327 ], [ 113.96878585, 22.76505381 ], [ 113.96865613, 22.76619853 ], [ 113.968574, 22.76661595 ], [ 113.96845614, 22.76699383 ], [ 113.96836328, 22.76727311 ], [ 113.96873122, 22.76733322 ], [ 113.96877052, 22.76735305 ], [ 113.96857411, 22.7682766 ], [ 113.96830134, 22.76856488 ], [ 113.96809548, 22.76899228 ], [ 113.96837415, 22.76967037 ], [ 113.96822414, 22.7700087 ], [ 113.9674669, 22.77080261 ], [ 113.96683825, 22.77140283 ], [ 113.96648823, 22.77193468 ], [ 113.96598224, 22.77246506 ], [ 113.96562506, 22.77275466 ], [ 113.96496285, 22.77307852 ], [ 113.96482008, 22.77343544 ], [ 113.96543463, 22.77374069 ], [ 113.96611926, 22.7739506 ], [ 113.96580972, 22.77438829 ], [ 113.96553392, 22.77419687 ], [ 113.965177, 22.77426825 ], [ 113.96498665, 22.77464896 ], [ 113.96467732, 22.77479173 ], [ 113.96427281, 22.77486312 ], [ 113.96398727, 22.7753628 ], [ 113.96405866, 22.77588628 ], [ 113.96432752, 22.77620423 ], [ 113.96056085, 22.77957445 ], [ 113.95927594, 22.78038347 ], [ 113.95969096, 22.78227118 ], [ 113.95846692, 22.78271534 ], [ 113.95952578, 22.78320313 ], [ 113.96026207, 22.78375697 ] ] } }, 16 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 7 }, "geometry": { "type": "LineString", "coordinates": [ [ 113.9643275, 22.77620448 ], [ 113.96489147, 22.77638597 ], [ 113.96534357, 22.776267 ], [ 113.9656291, 22.77595767 ], [ 113.96558151, 22.77557695 ], [ 113.96558686, 22.77518963 ], [ 113.96561415, 22.77515609 ], [ 113.9658011, 22.77506014 ], [ 113.96593575, 22.77486795 ], [ 113.96600981, 22.77462517 ], [ 113.96584374, 22.77443735 ], [ 113.96580972, 22.77438829 ] ] } }, 17 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 8 }, "geometry": { "type": "LineString", "coordinates": [ [ 113.9996945, 22.69865075 ], [ 113.99974218, 22.69915533 ], [ 113.99970646, 22.69948421 ], [ 113.99998646, 22.69977497 ], [ 114.00018305, 22.6999565 ], [ 114.00029328, 22.70035161 ], [ 114.00036776, 22.70055471 ], [ 114.00041543, 22.70078788 ], [ 114.00033092, 22.70102915 ], [ 114.00009082, 22.70156823 ], [ 113.99996574, 22.70182555 ], [ 113.99989631, 22.70201267 ], [ 113.99979897, 22.70223078 ], [ 113.9995667, 22.70292094 ], [ 113.99928079, 22.70332033 ], [ 113.99891147, 22.70364271 ], [ 113.99880426, 22.70384525 ], [ 113.99867573, 22.70437906 ], [ 113.99860177, 22.70460128 ], [ 113.99858988, 22.70484249 ], [ 113.99857798, 22.70510563 ], [ 113.99864353, 22.7054677 ], [ 113.99863163, 22.70568698 ], [ 113.99870909, 22.70604359 ], [ 113.99862592, 22.70646936 ], [ 113.99849727, 22.70671899 ], [ 113.9982042, 22.70698128 ], [ 113.99803265, 22.70717157 ], [ 113.99771814, 22.70732194 ], [ 113.99748942, 22.70783444 ], [ 113.99755377, 22.70808465 ], [ 113.99762527, 22.70831514 ], [ 113.99768963, 22.70861798 ], [ 113.99796127, 22.70877012 ], [ 113.99823292, 22.70888279 ], [ 113.99841878, 22.70900835 ], [ 113.99849027, 22.70912041 ], [ 113.99831158, 22.70938963 ], [ 113.99791128, 22.70945422 ], [ 113.99777546, 22.70944723 ], [ 113.99745425, 22.70947284 ], [ 113.99737375, 22.709593 ], [ 113.99718216, 22.70960993 ], [ 113.99697435, 22.70972832 ], [ 113.99685862, 22.70974739 ], [ 113.99668893, 22.70966108 ], [ 113.99636011, 22.70954825 ], [ 113.99655518, 22.7091266 ], [ 113.99633761, 22.7090882 ], [ 113.99588831, 22.70932972 ], [ 113.99556664, 22.70938797 ], [ 113.99518066, 22.70972236 ], [ 113.9949305, 22.71010321 ], [ 113.99489477, 22.71027417 ], [ 113.99475183, 22.71055006 ], [ 113.9947161, 22.71082629 ], [ 113.99474471, 22.71106322 ], [ 113.99471614, 22.71136578 ], [ 113.9947948, 22.71186603 ], [ 113.9950593, 22.7121892 ], [ 113.99523087, 22.71232787 ], [ 113.99543104, 22.71268374 ], [ 113.99521183, 22.71279493 ], [ 113.99466857, 22.71279331 ], [ 113.99411101, 22.71262059 ], [ 113.99356774, 22.71235581 ], [ 113.9929244, 22.712196 ], [ 113.99252412, 22.71223429 ], [ 113.9922811, 22.71243094 ], [ 113.99173793, 22.71365305 ], [ 113.99125196, 22.71492795 ], [ 113.99078025, 22.7157292 ], [ 113.99029429, 22.71712251 ], [ 113.99019423, 22.71737222 ], [ 113.98995126, 22.7181215 ], [ 113.98966538, 22.71859434 ], [ 113.98916506, 22.71900077 ], [ 113.98863614, 22.71917027 ], [ 113.98840743, 22.71926171 ], [ 113.98826449, 22.71945866 ], [ 113.98827459, 22.71972371 ], [ 113.98799766, 22.71975086 ], [ 113.98795955, 22.71986478 ], [ 113.98832171, 22.72005882 ], [ 113.98823595, 22.720234 ], [ 113.98812161, 22.72069857 ], [ 113.98808351, 22.72100547 ], [ 113.98794058, 22.72132083 ], [ 113.98778812, 22.72164494 ], [ 113.98754035, 22.72173194 ], [ 113.98715914, 22.72162557 ], [ 113.98679699, 22.72148418 ], [ 113.98653967, 22.72129923 ], [ 113.98642532, 22.72139539 ], [ 113.98627285, 22.72149144 ], [ 113.98596789, 22.72150811 ], [ 113.98557412, 22.72123392 ], [ 113.98540774, 22.7214131 ], [ 113.98539612, 22.72173453 ], [ 113.98521507, 22.72185681 ], [ 113.98492917, 22.72170687 ], [ 113.98475502, 22.7214515 ], [ 113.98451939, 22.72165307 ], [ 113.98423782, 22.72151437 ], [ 113.98410007, 22.72132733 ], [ 113.98383324, 22.72123008 ], [ 113.98353783, 22.72122924 ], [ 113.98328054, 22.7212636 ], [ 113.98253725, 22.72127904 ], [ 113.98066956, 22.72119486 ], [ 113.98037417, 22.72134316 ], [ 113.98016456, 22.7216145 ], [ 113.97981203, 22.72209596 ], [ 113.97959287, 22.72207781 ], [ 113.97964051, 22.72214812 ], [ 113.97975487, 22.72231509 ], [ 113.97962147, 22.72239367 ], [ 113.97953571, 22.72239343 ], [ 113.97961196, 22.72257785 ], [ 113.97972631, 22.72272728 ], [ 113.97965961, 22.72279727 ], [ 113.97945951, 22.72275286 ], [ 113.97933563, 22.72262094 ], [ 113.97941187, 22.7228229 ], [ 113.97944046, 22.72292824 ], [ 113.97927849, 22.72311199 ], [ 113.9791451, 22.72326074 ], [ 113.97897359, 22.7233129 ], [ 113.97869725, 22.72317179 ], [ 113.97858291, 22.72318902 ], [ 113.97843046, 22.72326755 ], [ 113.97839236, 22.72339902 ], [ 113.9779636, 22.72367854 ], [ 113.9777254, 22.72369543 ], [ 113.977592, 22.72370384 ], [ 113.97754436, 22.72371248 ], [ 113.97724902, 22.72425551 ], [ 113.97725858, 22.72465903 ], [ 113.97728718, 22.72494856 ], [ 113.97701087, 22.72500921 ], [ 113.97679172, 22.72495599 ], [ 113.97639155, 22.72497246 ], [ 113.97617243, 22.72534027 ], [ 113.97604856, 22.72533993 ], [ 113.97603903, 22.72515571 ], [ 113.97594791, 22.72483874 ], [ 113.97594371, 22.72460285 ], [ 113.97585794, 22.72434825 ], [ 113.97569596, 22.7241987 ], [ 113.97558161, 22.72396156 ], [ 113.97549586, 22.72385607 ], [ 113.97531483, 22.72389944 ], [ 113.97507665, 22.72402161 ], [ 113.974848, 22.72416135 ], [ 113.97456218, 22.7242483 ], [ 113.97452408, 22.72444117 ], [ 113.97435261, 22.72488807 ], [ 113.97423436, 22.72510263 ], [ 113.97391437, 22.7251676 ], [ 113.97377122, 22.72542065 ], [ 113.97351424, 22.72542091 ], [ 113.97323796, 22.72552545 ], [ 113.97296167, 22.72545455 ], [ 113.97232335, 22.72540903 ], [ 113.97198042, 22.72591689 ], [ 113.97183753, 22.72609195 ], [ 113.97181849, 22.72636381 ], [ 113.97150413, 22.72662614 ], [ 113.97126596, 22.72666061 ], [ 113.97097065, 22.7268616 ], [ 113.97079919, 22.72723833 ], [ 113.97078017, 22.72774701 ], [ 113.97049444, 22.72867604 ], [ 113.97057067, 22.72900077 ], [ 113.9704373, 22.72903552 ], [ 113.97018009, 22.72903486 ], [ 113.97006578, 22.72915737 ], [ 113.96955139, 22.72955955 ], [ 113.96915131, 22.72986553 ], [ 113.96867505, 22.73044323 ], [ 113.96846549, 22.73061813 ], [ 113.96790347, 22.73064305 ], [ 113.96661754, 22.73086794 ], [ 113.96646576, 22.73115585 ] ] } }, 18 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 8 }, "geometry": { "type": "LineString", "coordinates": [ [ 114.03965257, 22.69038859 ], [ 114.03612796, 22.68995454 ], [ 114.03287775, 22.6894513 ], [ 114.02961355, 22.68803477 ], [ 114.02739942, 22.68754843 ], [ 114.02554365, 22.68829074 ], [ 114.02584428, 22.68916441 ], [ 114.02498052, 22.68987775 ], [ 114.02560619, 22.6912858 ], [ 114.02701547, 22.69230945 ], [ 114.02711313, 22.6929241 ], [ 114.02657118, 22.69350379 ], [ 114.02660592, 22.69376847 ], [ 114.02663152, 22.69492033 ], [ 114.02641394, 22.69673771 ], [ 114.02694662, 22.69690992 ], [ 114.02697047, 22.69728284 ], [ 114.02692285, 22.69775426 ], [ 114.02664894, 22.69854853 ], [ 114.02648815, 22.69884965 ], [ 114.02608915, 22.69948455 ], [ 114.02591645, 22.69984045 ], [ 114.0257557, 22.70084887 ], [ 114.02569021, 22.70120508 ], [ 114.02519595, 22.70242637 ], [ 114.02495775, 22.70308913 ], [ 114.02478503, 22.70324215 ], [ 114.02446342, 22.70340024 ], [ 114.02415966, 22.70348709 ], [ 114.02400481, 22.70355792 ], [ 114.02396312, 22.70368939 ], [ 114.02381424, 22.70393569 ], [ 114.02351048, 22.70404996 ], [ 114.0233318, 22.70403299 ], [ 114.02303397, 22.70385668 ], [ 114.02287912, 22.70398782 ], [ 114.02266471, 22.70421748 ], [ 114.02228353, 22.70457825 ], [ 114.02197978, 22.70481861 ], [ 114.02177132, 22.70502635 ], [ 114.02172369, 22.70525101 ], [ 114.0216701, 22.70558531 ], [ 114.02172968, 22.70579383 ], [ 114.02166417, 22.70605682 ], [ 114.02163441, 22.70634732 ], [ 114.02171784, 22.70691229 ], [ 114.02164639, 22.70732878 ], [ 114.02156301, 22.70747109 ], [ 114.02124137, 22.7075798 ], [ 114.02098525, 22.70756261 ], [ 114.02063382, 22.70756706 ], [ 114.02041343, 22.7075719 ], [ 114.02012157, 22.7076807 ], [ 114.01999053, 22.70763645 ], [ 114.019788, 22.70747686 ], [ 114.01957951, 22.70733369 ], [ 114.0193472, 22.70722884 ], [ 114.01920424, 22.70719004 ], [ 114.01902553, 22.70693182 ], [ 114.01893021, 22.70668482 ], [ 114.0188051, 22.7064432 ], [ 114.01874552, 22.70623468 ], [ 114.01876934, 22.70611961 ], [ 114.01885868, 22.70596636 ], [ 114.01895397, 22.70576377 ], [ 114.01895992, 22.70562672 ], [ 114.01912073, 22.70540788 ], [ 114.01922794, 22.70521629 ], [ 114.01920411, 22.70509012 ], [ 114.01909688, 22.70502949 ], [ 114.01895989, 22.70507843 ], [ 114.01869185, 22.70524213 ], [ 114.01840594, 22.70535643 ], [ 114.01814982, 22.70558595 ], [ 114.01788775, 22.70577707 ], [ 114.0177031, 22.70599584 ], [ 114.01753037, 22.70608854 ], [ 114.01722061, 22.70588475 ], [ 114.01707168, 22.7056979 ], [ 114.0168791, 22.70542785 ], [ 114.01685351, 22.70513349 ], [ 114.01686631, 22.70481352 ], [ 114.01665465, 22.70470975 ], [ 114.01656531, 22.70484655 ], [ 114.0165117, 22.70499443 ], [ 114.01649981, 22.70525209 ], [ 114.01642835, 22.70564664 ], [ 114.01645219, 22.70586603 ], [ 114.01647008, 22.70614022 ], [ 114.01655348, 22.70626657 ], [ 114.01659519, 22.70642022 ], [ 114.01652968, 22.70657902 ], [ 114.01648204, 22.70680916 ], [ 114.01645227, 22.70697904 ], [ 114.01623783, 22.7070113 ], [ 114.01610678, 22.70702735 ], [ 114.01584469, 22.70711978 ], [ 114.01574342, 22.70709755 ], [ 114.01568384, 22.70686709 ], [ 114.01571956, 22.7065492 ], [ 114.01557657, 22.70618691 ], [ 114.01550508, 22.70605511 ], [ 114.01563016, 22.70578682 ], [ 114.01579098, 22.70560088 ], [ 114.01589223, 22.70543122 ], [ 114.01593987, 22.70518463 ], [ 114.01596964, 22.70500378 ], [ 114.01592794, 22.704894 ], [ 114.01584453, 22.7047512 ], [ 114.01574922, 22.70466319 ], [ 114.01561638, 22.70462277 ], [ 114.01530663, 22.70455057 ], [ 114.01503857, 22.70452784 ], [ 114.01483008, 22.7045327 ], [ 114.01466925, 22.70464736 ], [ 114.01468122, 22.70551369 ], [ 114.01440722, 22.70564994 ], [ 114.01411533, 22.70562165 ], [ 114.01356727, 22.70519783 ], [ 114.01310262, 22.70487295 ], [ 114.01255457, 22.70472875 ], [ 114.01200654, 22.70488611 ], [ 114.01159552, 22.70498905 ], [ 114.01137511, 22.70499387 ], [ 114.01121427, 22.70489469 ], [ 114.0108747, 22.70447697 ], [ 114.01071384, 22.70423524 ], [ 114.01045768, 22.70405901 ], [ 114.01021939, 22.70389929 ], [ 114.00999896, 22.70363545 ], [ 114.00977258, 22.70337707 ], [ 114.00942706, 22.70321154 ], [ 114.00925431, 22.70326585 ], [ 114.00905774, 22.70344619 ], [ 114.00874801, 22.70387292 ], [ 114.00843825, 22.70402002 ], [ 114.00830123, 22.70393737 ], [ 114.00801527, 22.70358011 ], [ 114.00787229, 22.70337133 ], [ 114.00786036, 22.70316294 ], [ 114.00785438, 22.7028504 ], [ 114.00762801, 22.70269071 ], [ 114.00733016, 22.70270077 ], [ 114.00710377, 22.70251367 ], [ 114.00695482, 22.70214586 ], [ 114.00686546, 22.70195369 ], [ 114.00661525, 22.70182682 ], [ 114.00626975, 22.7020122 ], [ 114.00615658, 22.70220924 ], [ 114.00609108, 22.7025435 ], [ 114.00600174, 22.702779 ], [ 114.00582303, 22.70288264 ], [ 114.00548944, 22.70296935 ], [ 114.00475077, 22.70300002 ], [ 114.00420272, 22.70304222 ], [ 114.0039406, 22.70297563 ], [ 114.00364273, 22.70267317 ], [ 114.00349378, 22.7022944 ], [ 114.00312439, 22.7014818 ], [ 114.00300524, 22.70132244 ], [ 114.00259418, 22.70100866 ], [ 114.00242738, 22.70098074 ], [ 114.00210571, 22.70105653 ], [ 114.00184361, 22.70124216 ], [ 114.00159343, 22.70147717 ], [ 114.00152196, 22.70165241 ], [ 114.00115861, 22.70213382 ], [ 114.00084886, 22.70250024 ], [ 114.00080718, 22.70270298 ], [ 114.0007655, 22.70296604 ], [ 114.00081317, 22.70321291 ], [ 114.00095616, 22.70352039 ], [ 114.00106936, 22.7037565 ], [ 114.00111107, 22.70402528 ], [ 114.00102173, 22.70429368 ], [ 114.00072388, 22.70426536 ], [ 114.00054516, 22.70409485 ], [ 114.00027111, 22.70371571 ], [ 114.00002685, 22.7032873 ], [ 113.99993747, 22.70286485 ], [ 113.99987739, 22.70272473 ], [ 113.99984808, 22.70239304 ], [ 113.99989631, 22.70201267 ] ] } }, 19 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 6 }, "geometry": { "type": "LineString", "coordinates": [ [ 114.20340652, 22.68313831 ], [ 114.20305543, 22.68369611 ], [ 114.20272402, 22.68418173 ], [ 114.20229419, 22.68442454 ], [ 114.20219575, 22.68451642 ], [ 114.20210905, 22.68489197 ], [ 114.2020978, 22.68537284 ], [ 114.20222191, 22.68583015 ], [ 114.20257848, 22.68635163 ], [ 114.20282476, 22.68651938 ], [ 114.20269805, 22.68692306 ], [ 114.20258741, 22.68781893 ] ] } }, 20 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 6 }, "geometry": { "type": "LineString", "coordinates": [ [ 114.20248021, 22.68620007 ], [ 114.20237901, 22.68624408 ], [ 114.20232922, 22.68627706 ], [ 114.20230824, 22.68633582 ], [ 114.20221542, 22.68638912 ], [ 114.20205698, 22.68641008 ], [ 114.2018981, 22.68642789 ], [ 114.20173885, 22.68644255 ], [ 114.20157334, 22.68646458 ], [ 114.20140723, 22.68648233 ], [ 114.20124066, 22.68649578 ], [ 114.20107376, 22.68650492 ], [ 114.20090665, 22.68650974 ], [ 114.20084211, 22.68652257 ], [ 114.20077651, 22.68652923 ], [ 114.20071052, 22.68652964 ], [ 114.20064485, 22.68652382 ], [ 114.20058017, 22.68651181 ], [ 114.20051718, 22.68649374 ], [ 114.20045652, 22.68646981 ], [ 114.20039884, 22.68644026 ], [ 114.20034474, 22.6864054 ], [ 114.20011552, 22.68628884 ], [ 114.19988964, 22.68616683 ], [ 114.19966725, 22.68603946 ], [ 114.19944851, 22.68590682 ], [ 114.1989763, 22.68567137 ], [ 114.19851829, 22.68541309 ], [ 114.19781573, 22.68497819 ], [ 114.1975927, 22.6847803 ], [ 114.19747097, 22.68471337 ], [ 114.19731036, 22.6849418 ], [ 114.19687335, 22.68522829 ], [ 114.19639664, 22.68547361 ], [ 114.19613252, 22.6856021 ], [ 114.19573277, 22.68574487 ], [ 114.19536158, 22.68570561 ], [ 114.19497484, 22.68560533 ], [ 114.19475838, 22.68555213 ], [ 114.1943051, 22.68561995 ], [ 114.19401242, 22.68570204 ], [ 114.19333071, 22.68594831 ], [ 114.19301662, 22.68621243 ], [ 114.19279533, 22.68628025 ], [ 114.19236703, 22.6863552 ], [ 114.19232776, 22.68657292 ], [ 114.19233133, 22.68688344 ], [ 114.19247053, 22.68717255 ], [ 114.19238844, 22.68760442 ], [ 114.1923349, 22.68783999 ], [ 114.19245027, 22.68803793 ], [ 114.19272764, 22.68823483 ], [ 114.19299877, 22.68818263 ], [ 114.19312013, 22.68801844 ], [ 114.19312726, 22.68750805 ], [ 114.19319508, 22.68727962 ], [ 114.19348775, 22.68688701 ], [ 114.19370904, 22.68671212 ], [ 114.19400172, 22.68657649 ], [ 114.19434079, 22.68649083 ], [ 114.19494041, 22.68634449 ], [ 114.1956257, 22.68613748 ], [ 114.19683114, 22.6859574 ], [ 114.19705694, 22.68613748 ], [ 114.19710691, 22.68635877 ], [ 114.19737171, 22.6866079 ], [ 114.19767044, 22.68680478 ], [ 114.19799051, 22.68693583 ], [ 114.19823835, 22.68695839 ], [ 114.19845993, 22.68696793 ], [ 114.19864487, 22.68713211 ], [ 114.19875394, 22.68735346 ], [ 114.19901001, 22.68760745 ], [ 114.19912707, 22.68775789 ], [ 114.19899858, 22.68790423 ], [ 114.19878443, 22.68800774 ], [ 114.19880228, 22.68815764 ], [ 114.19897003, 22.68836466 ], [ 114.19908424, 22.68866804 ], [ 114.19908595, 22.68878297 ], [ 114.19937335, 22.68896785 ], [ 114.19964104, 22.68901782 ], [ 114.19978737, 22.6888929 ], [ 114.19998725, 22.68859665 ], [ 114.20007648, 22.68828613 ], [ 114.20034417, 22.68807198 ], [ 114.20057617, 22.68803986 ], [ 114.20094022, 22.68794349 ], [ 114.20125431, 22.68797561 ], [ 114.20166477, 22.68794706 ], [ 114.20214304, 22.68790423 ], [ 114.20258741, 22.68781893 ], [ 114.20273303, 22.68782321 ] ] } }, 21 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 6 }, "geometry": { "type": "LineString", "coordinates": [ [ 114.20273303, 22.68782321 ], [ 114.20270088, 22.68793528 ], [ 114.20269625, 22.68808856 ], [ 114.20281956, 22.68831647 ], [ 114.20308513, 22.68858801 ], [ 114.20340762, 22.68887701 ], [ 114.20382182, 22.68920425 ], [ 114.20395388, 22.68921139 ], [ 114.20408951, 22.68916142 ], [ 114.20408951, 22.68902579 ], [ 114.20404311, 22.68874025 ], [ 114.20423942, 22.68838334 ], [ 114.20469984, 22.68813349 ], [ 114.20501873, 22.68810344 ], [ 114.2055558, 22.68814536 ], [ 114.20574432, 22.68821415 ], [ 114.20582613, 22.68829298 ], [ 114.20591694, 22.68845829 ], [ 114.20594906, 22.68870099 ], [ 114.20598118, 22.68882948 ], [ 114.20619607, 22.68891751 ], [ 114.20640949, 22.68901587 ], [ 114.20649131, 22.68913748 ], [ 114.20661293, 22.68932917 ], [ 114.20658081, 22.68959686 ], [ 114.20638807, 22.68991452 ], [ 114.20642376, 22.69005372 ], [ 114.20668345, 22.69026566 ], [ 114.20706048, 22.6903539 ], [ 114.20730535, 22.69048202 ], [ 114.207416, 22.69061765 ], [ 114.20746954, 22.69075685 ], [ 114.20740172, 22.69103524 ], [ 114.20754072, 22.69123817 ], [ 114.20773636, 22.69127406 ], [ 114.20791925, 22.69133863 ], [ 114.20797279, 22.6915385 ], [ 114.20786215, 22.69183474 ], [ 114.20765513, 22.69185616 ], [ 114.20741243, 22.69183831 ], [ 114.20723397, 22.69163487 ], [ 114.20684493, 22.69169554 ], [ 114.20656973, 22.69187794 ], [ 114.20647372, 22.69223341 ], [ 114.20620341, 22.69240491 ], [ 114.20602202, 22.69246112 ], [ 114.20587619, 22.69248109 ], [ 114.2056948, 22.69253731 ], [ 114.20551341, 22.69264288 ], [ 114.20538181, 22.69272205 ], [ 114.20511864, 22.6930712 ], [ 114.20495505, 22.69334453 ], [ 114.20473099, 22.69356861 ], [ 114.20434292, 22.69377638 ], [ 114.20416803, 22.69402623 ], [ 114.20409308, 22.69440099 ], [ 114.20410022, 22.69467225 ], [ 114.20418335, 22.69498745 ], [ 114.20437862, 22.69528258 ], [ 114.20465998, 22.69552294 ], [ 114.2049054, 22.69561795 ], [ 114.20520772, 22.69566024 ], [ 114.2056701, 22.69573188 ], [ 114.20600089, 22.69576426 ], [ 114.20633878, 22.69571109 ], [ 114.20673714, 22.69555584 ], [ 114.20697545, 22.69548309 ], [ 114.20746629, 22.69533758 ], [ 114.20782198, 22.69526465 ], [ 114.20806385, 22.69521164 ], [ 114.20832707, 22.69521782 ], [ 114.20855472, 22.69522734 ], [ 114.20887486, 22.69528608 ], [ 114.20900291, 22.69534181 ], [ 114.20914876, 22.69544358 ], [ 114.20923414, 22.69551912 ], [ 114.20938354, 22.69566365 ], [ 114.20945825, 22.69582145 ], [ 114.20956854, 22.69610751 ], [ 114.20967882, 22.69623565 ], [ 114.2099385, 22.69630435 ], [ 114.21037248, 22.69639583 ], [ 114.21056457, 22.69640541 ], [ 114.21079934, 22.69629979 ], [ 114.21099142, 22.6961087 ], [ 114.2110341, 22.69598033 ], [ 114.21111945, 22.69575649 ], [ 114.21126529, 22.69549308 ], [ 114.21144314, 22.6953382 ], [ 114.21164946, 22.6952063 ], [ 114.21180953, 22.69508106 ], [ 114.21195893, 22.69496898 ], [ 114.21204074, 22.69483398 ], [ 114.21213678, 22.69467922 ], [ 114.21220436, 22.69454094 ], [ 114.21222925, 22.69436983 ], [ 114.21227193, 22.6941625 ], [ 114.21237508, 22.69400773 ], [ 114.21256006, 22.69388245 ], [ 114.21276994, 22.69378674 ], [ 114.21300829, 22.69376666 ], [ 114.2132502, 22.69379264 ], [ 114.21342095, 22.6937595 ], [ 114.21361661, 22.69363421 ], [ 114.21384768, 22.69335165 ], [ 114.21379414, 22.693241 ], [ 114.21372276, 22.69307682 ], [ 114.21381578, 22.69280486 ], [ 114.21409322, 22.69211688 ], [ 114.21422839, 22.69174492 ], [ 114.21429596, 22.69151453 ], [ 114.21441336, 22.69134987 ], [ 114.21459123, 22.69128053 ], [ 114.2149043, 22.6911814 ], [ 114.21509641, 22.69110218 ], [ 114.2151889, 22.69093756 ], [ 114.21519956, 22.69080265 ], [ 114.21513907, 22.69067443 ], [ 114.21491492, 22.69048062 ], [ 114.21466943, 22.69013879 ], [ 114.21438125, 22.68997798 ], [ 114.21416534, 22.6899859 ], [ 114.21393334, 22.69003944 ], [ 114.21373347, 22.69007156 ], [ 114.21350147, 22.68996449 ], [ 114.21344436, 22.68984313 ], [ 114.21339934, 22.68951544 ], [ 114.21330683, 22.68932146 ], [ 114.213116, 22.68922566 ], [ 114.21273766, 22.68912573 ], [ 114.21227367, 22.68889373 ], [ 114.21207236, 22.68867836 ], [ 114.21181266, 22.6884254 ], [ 114.21172371, 22.68820181 ], [ 114.21164187, 22.68786305 ], [ 114.21165964, 22.68750111 ], [ 114.21170231, 22.68722139 ], [ 114.21171652, 22.68705358 ], [ 114.21170941, 22.68698121 ], [ 114.21169517, 22.68686279 ], [ 114.21155642, 22.68668861 ], [ 114.21125759, 22.68634687 ], [ 114.21094809, 22.6860907 ], [ 114.21059591, 22.68582472 ], [ 114.21023661, 22.68558836 ], [ 114.20988089, 22.68547702 ], [ 114.20955362, 22.68536564 ], [ 114.20931529, 22.6852673 ], [ 114.20901649, 22.68517891 ], [ 114.20879239, 22.68511674 ], [ 114.20840468, 22.68514365 ], [ 114.20825529, 22.68521626 ], [ 114.20805966, 22.68529881 ], [ 114.20782135, 22.68535511 ], [ 114.20774665, 22.68533548 ], [ 114.20751544, 22.68525688 ], [ 114.20733759, 22.68516503 ], [ 114.2067258, 22.68510018 ], [ 114.20634521, 22.68505471 ], [ 114.20613181, 22.68505834 ], [ 114.20600732, 22.68509801 ], [ 114.20577614, 22.68533527 ], [ 114.20557697, 22.68551983 ], [ 114.20533159, 22.68569216 ], [ 114.20513172, 22.68574927 ], [ 114.204914, 22.6856993 ], [ 114.20470341, 22.68559937 ], [ 114.20450354, 22.68542091 ], [ 114.2042644, 22.68537808 ], [ 114.20396102, 22.68534595 ], [ 114.20379684, 22.68537451 ], [ 114.20354699, 22.685503 ], [ 114.20328649, 22.68577027 ], [ 114.20321538, 22.68601386 ], [ 114.20295936, 22.68695853 ], [ 114.20285981, 22.68734035 ], [ 114.20273303, 22.68782321 ] ] } }, 22 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 10 }, "geometry": { "type": "LineString", "coordinates": [ [ 114.34942756, 22.6772186 ], [ 114.34976848, 22.67711574 ], [ 114.34995472, 22.67697721 ], [ 114.35013421, 22.67667571 ], [ 114.35019234, 22.67605981 ], [ 114.35019234, 22.67562851 ], [ 114.35019977, 22.6750931 ], [ 114.35016259, 22.6744759 ], [ 114.35017746, 22.67429 ], [ 114.35031875, 22.67388101 ], [ 114.35040055, 22.67365049 ], [ 114.35058645, 22.67328612 ], [ 114.35076492, 22.67298867 ], [ 114.35085416, 22.6727284 ], [ 114.35074111, 22.67253552 ], [ 114.35023291, 22.67064066 ], [ 114.35014722, 22.67030646 ], [ 114.35021578, 22.67017792 ], [ 114.35058425, 22.66992084 ], [ 114.35074707, 22.66980944 ], [ 114.35071279, 22.66968947 ], [ 114.35033575, 22.66968947 ], [ 114.35023291, 22.66954379 ], [ 114.35020167, 22.66931384 ], [ 114.35000154, 22.66918388 ], [ 114.34981302, 22.66902964 ], [ 114.34949596, 22.66764142 ], [ 114.34966734, 22.66735863 ], [ 114.35027576, 22.6669216 ], [ 114.35080705, 22.66661311 ], [ 114.35104699, 22.66646743 ], [ 114.35106413, 22.66621036 ], [ 114.35061853, 22.66563622 ], [ 114.35040504, 22.66520378 ], [ 114.35019079, 22.66465716 ], [ 114.35002465, 22.66434258 ], [ 114.34990471, 22.66399667 ], [ 114.34976199, 22.66377668 ], [ 114.3496052, 22.6636492 ], [ 114.34928173, 22.66345106 ], [ 114.34891325, 22.66314257 ], [ 114.34888239, 22.66244916 ], [ 114.34859619, 22.66176292 ], [ 114.34840766, 22.66105167 ], [ 114.34838196, 22.66055465 ], [ 114.34825342, 22.65949207 ], [ 114.34875043, 22.65925213 ], [ 114.34875043, 22.65878082 ], [ 114.34861333, 22.65842091 ], [ 114.34821839, 22.65816405 ], [ 114.34798777, 22.65784677 ], [ 114.34787637, 22.65735832 ], [ 114.34783353, 22.65701555 ] ] } }, 23 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 10 }, "geometry": { "type": "LineString", "coordinates": [ [ 114.35074111, 22.67253552 ], [ 114.35059736, 22.67261797 ], [ 114.35045493, 22.67320599 ], [ 114.35001387, 22.6739405 ], [ 114.34980566, 22.67414871 ], [ 114.34875987, 22.67399581 ], [ 114.34798034, 22.67384084 ], [ 114.34677116, 22.67365116 ], [ 114.34657156, 22.67366177 ], [ 114.3463365, 22.67380717 ], [ 114.34619168, 22.67376203 ], [ 114.34616222, 22.67350337 ], [ 114.34612636, 22.67333078 ], [ 114.34607015, 22.67316282 ], [ 114.34595113, 22.67311873 ], [ 114.34525671, 22.67304348 ], [ 114.3445646, 22.67295165 ], [ 114.34442117, 22.67268268 ], [ 114.34415991, 22.67236412 ], [ 114.34386415, 22.67232437 ], [ 114.3436832, 22.67227486 ], [ 114.34356098, 22.67188794 ], [ 114.34369286, 22.67174655 ], [ 114.34368793, 22.67159165 ], [ 114.34340803, 22.67120534 ], [ 114.34341968, 22.6710936 ], [ 114.34357499, 22.67097693 ], [ 114.34373256, 22.67079007 ], [ 114.34367825, 22.67067602 ], [ 114.34339215, 22.67075588 ], [ 114.34326124, 22.67075015 ], [ 114.34321362, 22.67067877 ], [ 114.3431065, 22.67060727 ], [ 114.3430708, 22.67051946 ], [ 114.34307078, 22.67023429 ], [ 114.34315244, 22.67011847 ], [ 114.34316258, 22.67005041 ], [ 114.34310932, 22.66992403 ], [ 114.34295875, 22.66981105 ], [ 114.34274736, 22.66971646 ], [ 114.34267204, 22.66969611 ], [ 114.34249645, 22.66971057 ], [ 114.34235685, 22.66980955 ], [ 114.34228769, 22.66993984 ], [ 114.34233609, 22.67008312 ], [ 114.34246693, 22.67017559 ], [ 114.34253617, 22.67025245 ], [ 114.34253115, 22.67037586 ], [ 114.34240456, 22.67047986 ], [ 114.34202742, 22.67043063 ], [ 114.34183408, 22.6704455 ], [ 114.34173741, 22.67027447 ], [ 114.34144365, 22.67005957 ], [ 114.3411573, 22.66988545 ], [ 114.34113508, 22.66969445 ], [ 114.34123485, 22.66953314 ], [ 114.34123175, 22.66915161 ], [ 114.34106072, 22.66902519 ], [ 114.34087482, 22.66900288 ], [ 114.34061455, 22.66909212 ], [ 114.34055506, 22.66924828 ], [ 114.34059968, 22.66943418 ], [ 114.34048814, 22.66946392 ], [ 114.3403171, 22.66933007 ], [ 114.34016838, 22.66930033 ], [ 114.34001966, 22.66926315 ], [ 114.33996017, 22.66909955 ], [ 114.34010146, 22.66895826 ], [ 114.34018708, 22.66870741 ], [ 114.34015913, 22.66843523 ], [ 114.34001635, 22.66818291 ], [ 114.33980416, 22.66819066 ], [ 114.33974452, 22.66822208 ], [ 114.33966056, 22.66805589 ], [ 114.33954661, 22.66798442 ], [ 114.33951199, 22.66797913 ], [ 114.33937135, 22.66792358 ], [ 114.33918818, 22.66775416 ], [ 114.3391851, 22.66774394 ], [ 114.33921991, 22.66760416 ], [ 114.33952143, 22.66758257 ], [ 114.33975717, 22.66748623 ], [ 114.33988581, 22.6675677 ], [ 114.3400494, 22.66760488 ], [ 114.34042865, 22.6674859 ], [ 114.34062199, 22.6674859 ], [ 114.34076328, 22.66736692 ], [ 114.34075395, 22.66724005 ], [ 114.3405578, 22.66706941 ], [ 114.34016637, 22.66681023 ], [ 114.33987208, 22.6668193 ], [ 114.33977873, 22.66678313 ], [ 114.33950209, 22.66653099 ], [ 114.3393091, 22.66645437 ], [ 114.33917134, 22.66643009 ], [ 114.3386574, 22.66642474 ], [ 114.33852897, 22.66638744 ], [ 114.33817968, 22.66592676 ], [ 114.33842832, 22.6657384 ], [ 114.33863653, 22.66549301 ], [ 114.33876295, 22.66526993 ], [ 114.33880756, 22.6648535 ], [ 114.33874064, 22.66457093 ], [ 114.33894141, 22.66443707 ], [ 114.33939502, 22.66421399 ], [ 114.33975208, 22.66408255 ], [ 114.34015534, 22.6639345 ], [ 114.34060137, 22.66368934 ], [ 114.34213013, 22.66346845 ], [ 114.34285021, 22.66414647 ], [ 114.34332031, 22.66397185 ], [ 114.34346907, 22.66383502 ], [ 114.34354168, 22.66359281 ], [ 114.34364956, 22.66334924 ], [ 114.34391733, 22.66324026 ], [ 114.34419405, 22.66312834 ], [ 114.34441116, 22.66297489 ], [ 114.34453226, 22.6628054 ], [ 114.34458775, 22.66267992 ], [ 114.34481599, 22.66247393 ], [ 114.34485317, 22.66219879 ], [ 114.34551601, 22.66181511 ], [ 114.34608726, 22.66168454 ], [ 114.34673556, 22.66169058 ], [ 114.34757731, 22.6618312 ], [ 114.34799867, 22.66205006 ], [ 114.34814739, 22.66216904 ], [ 114.34849796, 22.6622211 ], [ 114.34867314, 22.66232763 ], [ 114.34887579, 22.66242026 ] ] } }, 24 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 4 }, "geometry": { "type": "LineString", "coordinates": [ [ 114.34163273, 22.59306908 ], [ 114.34165178, 22.5932008 ], [ 114.34140789, 22.59356367 ], [ 114.34130081, 22.59376592 ], [ 114.34133056, 22.59402171 ], [ 114.3413722, 22.59420017 ], [ 114.34125917, 22.59446191 ], [ 114.34103907, 22.5947534 ], [ 114.340932, 22.59512816 ], [ 114.34103792, 22.59529662 ], [ 114.34100938, 22.59568282 ], [ 114.34090944, 22.59616106 ], [ 114.34080948, 22.59649884 ], [ 114.34080474, 22.59674902 ], [ 114.34074285, 22.59686741 ], [ 114.34054291, 22.59700749 ], [ 114.34028954, 22.59710311 ], [ 114.34007539, 22.5974065 ], [ 114.33990288, 22.59769203 ], [ 114.33985529, 22.59813223 ], [ 114.3395876, 22.59841777 ], [ 114.33910576, 22.59866166 ], [ 114.33890351, 22.59900073 ], [ 114.3376067, 22.59963129 ], [ 114.3362742, 22.60040462 ], [ 114.33545924, 22.60097569 ], [ 114.33521534, 22.60121958 ], [ 114.3345015, 22.60171927 ], [ 114.33438848, 22.60185014 ], [ 114.33432304, 22.60193937 ], [ 114.33406725, 22.60204644 ], [ 114.33379956, 22.60206429 ], [ 114.33381741, 22.6022368 ], [ 114.33367464, 22.602445 ], [ 114.33337126, 22.60229034 ], [ 114.33302029, 22.60223085 ], [ 114.332541, 22.6024092 ], [ 114.33239343, 22.60266348 ], [ 114.33249819, 22.60300164 ], [ 114.33301241, 22.60382337 ], [ 114.33307977, 22.60414037 ], [ 114.33284778, 22.60443185 ], [ 114.33200307, 22.60470549 ], [ 114.33101293, 22.6048422 ], [ 114.33055113, 22.60479304 ], [ 114.33016072, 22.60432267 ], [ 114.32949415, 22.60333826 ], [ 114.32866574, 22.60270906 ], [ 114.32744045, 22.6020167 ], [ 114.32690507, 22.6015646 ], [ 114.32579014, 22.60071975 ], [ 114.32529499, 22.6001614 ], [ 114.32491822, 22.59936955 ], [ 114.32490541, 22.5988335 ], [ 114.32545668, 22.59743605 ], [ 114.32581052, 22.59678189 ], [ 114.32587001, 22.59655584 ], [ 114.32556068, 22.59635358 ], [ 114.32485279, 22.59596097 ], [ 114.3241568, 22.59569328 ], [ 114.32384747, 22.5956338 ], [ 114.32343701, 22.59563975 ], [ 114.32291948, 22.59569923 ], [ 114.32258712, 22.5956417 ], [ 114.32225167, 22.59552776 ], [ 114.321947, 22.59566941 ], [ 114.32148811, 22.59606007 ], [ 114.32084934, 22.59653799 ], [ 114.32020098, 22.59746575 ], [ 114.31978021, 22.59826732 ], [ 114.31969802, 22.59844302 ], [ 114.31962662, 22.59855701 ], [ 114.31946478, 22.59873228 ], [ 114.31935054, 22.5988418 ], [ 114.31916013, 22.59894679 ], [ 114.31902685, 22.59899482 ], [ 114.31884596, 22.59903839 ], [ 114.31868411, 22.59906442 ], [ 114.31842705, 22.59911224 ], [ 114.31806527, 22.59919058 ], [ 114.31785582, 22.59920337 ], [ 114.31763685, 22.59921614 ], [ 114.3173798, 22.59919811 ], [ 114.31706085, 22.59910098 ], [ 114.31678952, 22.59899954 ], [ 114.31655626, 22.59887622 ], [ 114.31612783, 22.59874377 ], [ 114.31605408, 22.59870652 ], [ 114.31597804, 22.59867344 ], [ 114.31589998, 22.59864464 ], [ 114.31582018, 22.59862023 ], [ 114.31573895, 22.5986003 ], [ 114.31565657, 22.59858492 ], [ 114.31548499, 22.59856165 ], [ 114.31531256, 22.59854463 ], [ 114.31513955, 22.59853389 ], [ 114.31496623, 22.59852943 ], [ 114.31479287, 22.59853127 ], [ 114.31461973, 22.59853941 ], [ 114.31444709, 22.59855383 ], [ 114.31427522, 22.59857451 ], [ 114.31410437, 22.59860141 ], [ 114.31393482, 22.59863451 ], [ 114.31376683, 22.59867373 ], [ 114.31362201, 22.59869065 ], [ 114.31347646, 22.59870108 ], [ 114.31333051, 22.59870501 ], [ 114.31318452, 22.59870242 ], [ 114.31303882, 22.59869333 ], [ 114.31289375, 22.59867774 ], [ 114.31274966, 22.5986557 ], [ 114.31260688, 22.59862726 ], [ 114.31246575, 22.59859249 ], [ 114.31232659, 22.59855146 ], [ 114.31218974, 22.59850428 ], [ 114.31205551, 22.59845105 ], [ 114.31192421, 22.5983919 ], [ 114.31179617, 22.59832697 ], [ 114.31167166, 22.59825641 ], [ 114.311551, 22.59818038 ], [ 114.31143445, 22.59809907 ], [ 114.31128555, 22.59799499 ], [ 114.3111405, 22.5978864 ], [ 114.31099946, 22.59777339 ], [ 114.31086258, 22.59765611 ], [ 114.31073003, 22.59753469 ], [ 114.31060194, 22.59740925 ], [ 114.31047847, 22.59727994 ], [ 114.31035974, 22.59714691 ], [ 114.3102459, 22.5970103 ], [ 114.31013706, 22.59687027 ], [ 114.31003336, 22.59672696 ], [ 114.3099349, 22.59658055 ], [ 114.3098418, 22.59643119 ], [ 114.30975416, 22.59627906 ], [ 114.3096352, 22.59607784 ], [ 114.30951108, 22.59587928 ], [ 114.30938188, 22.59568349 ], [ 114.30910851, 22.59530067 ], [ 114.30866222, 22.59474998 ], [ 114.30852282, 22.59449084 ], [ 114.30846634, 22.5941836 ], [ 114.30856982, 22.59400646 ], [ 114.30858918, 22.59390703 ], [ 114.30850588, 22.59378893 ], [ 114.30829699, 22.59369674 ], [ 114.30807613, 22.59354493 ], [ 114.30786926, 22.59314867 ], [ 114.30784418, 22.5929175 ], [ 114.30769197, 22.59255773 ], [ 114.30736324, 22.59225015 ], [ 114.30694409, 22.59210468 ], [ 114.30676828, 22.59193087 ], [ 114.30670074, 22.59173886 ], [ 114.30664719, 22.59165648 ], [ 114.30660232, 22.59145784 ], [ 114.30657853, 22.59132102 ], [ 114.30644171, 22.59108903 ], [ 114.30624379, 22.59084927 ], [ 114.30611528, 22.59071738 ], [ 114.30586185, 22.59063796 ], [ 114.30569218, 22.59041088 ], [ 114.30553156, 22.59020863 ], [ 114.30526928, 22.58997201 ], [ 114.30513721, 22.58977757 ], [ 114.30490161, 22.58951053 ], [ 114.30466601, 22.58919412 ], [ 114.30452322, 22.58890089 ], [ 114.30437753, 22.58864413 ], [ 114.30431804, 22.5883467 ], [ 114.30436563, 22.5881266 ], [ 114.30438942, 22.58785296 ], [ 114.30435373, 22.58753768 ], [ 114.30431209, 22.58729973 ], [ 114.30422881, 22.58693092 ], [ 114.30425855, 22.58661564 ], [ 114.30434778, 22.58635985 ], [ 114.30477609, 22.5861219 ], [ 114.3050049, 22.58598817 ], [ 114.30526982, 22.5859018 ], [ 114.30545105, 22.58564322 ], [ 114.30550815, 22.58550834 ], [ 114.30550814, 22.58540628 ], [ 114.30555454, 22.58527467 ], [ 114.30559022, 22.5851628 ], [ 114.30561878, 22.58511346 ], [ 114.30568302, 22.58506089 ], [ 114.3057437, 22.58500832 ], [ 114.30577582, 22.58493923 ], [ 114.30580437, 22.5848899 ], [ 114.30594358, 22.58484733 ], [ 114.30607921, 22.58476854 ], [ 114.3062791, 22.58472607 ], [ 114.30654403, 22.58459548 ], [ 114.30666895, 22.58447056 ], [ 114.30675461, 22.58426711 ], [ 114.30684741, 22.58409579 ], [ 114.30684741, 22.58392804 ], [ 114.30682599, 22.58367463 ], [ 114.30671178, 22.58347475 ], [ 114.30667252, 22.58337838 ], [ 114.30676532, 22.58323562 ], [ 114.30684892, 22.58305678 ], [ 114.30686974, 22.58302115 ], [ 114.30689948, 22.58296908 ], [ 114.30691435, 22.58291972 ], [ 114.30684296, 22.58283181 ], [ 114.30676264, 22.58275486 ], [ 114.30670611, 22.5826368 ], [ 114.30662579, 22.58248303 ], [ 114.30657819, 22.58229914 ], [ 114.30658686, 22.58215058 ], [ 114.30659042, 22.58202566 ], [ 114.30653949, 22.58189029 ], [ 114.30661384, 22.58171757 ], [ 114.30678635, 22.581449 ], [ 114.30669412, 22.58119644 ], [ 114.30644127, 22.58098478 ], [ 114.30646955, 22.58076907 ], [ 114.30659447, 22.58054302 ], [ 114.30636093, 22.58049356 ], [ 114.30619591, 22.58042404 ], [ 114.30601745, 22.5806382 ], [ 114.30587468, 22.58064414 ], [ 114.30573192, 22.5806382 ], [ 114.30552371, 22.58050733 ], [ 114.30539123, 22.58042613 ], [ 114.30523818, 22.58028128 ], [ 114.30505377, 22.58026343 ], [ 114.30480987, 22.5804062 ], [ 114.30454813, 22.58054897 ], [ 114.3042388, 22.58067389 ], [ 114.3039503, 22.58077241 ] ] } }, 25 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 4 }, "geometry": { "type": "LineString", "coordinates": [ [ 114.30678635, 22.581449 ], [ 114.30666181, 22.58142247 ], [ 114.30652975, 22.58140105 ], [ 114.30638341, 22.58140105 ], [ 114.30625135, 22.58143317 ], [ 114.3060558, 22.58143847 ], [ 114.30599869, 22.5815141 ], [ 114.30590232, 22.58151394 ], [ 114.30582022, 22.58154014 ], [ 114.30585593, 22.58167189 ], [ 114.30583094, 22.58172123 ], [ 114.30580953, 22.58179363 ], [ 114.30588449, 22.5818991 ], [ 114.30598366, 22.58194 ], [ 114.30588451, 22.58207029 ], [ 114.30595233, 22.58214612 ], [ 114.30600231, 22.58222522 ], [ 114.30603444, 22.58236683 ], [ 114.30603446, 22.58264338 ], [ 114.30604077, 22.58306429 ], [ 114.30601779, 22.58345585 ], [ 114.30607341, 22.58354967 ], [ 114.306213, 22.58369716 ], [ 114.3063308, 22.58385538 ], [ 114.3062737, 22.58404623 ], [ 114.30611929, 22.58405653 ], [ 114.30588016, 22.58427425 ], [ 114.30555984, 22.58451914 ], [ 114.30533407, 22.58489172 ], [ 114.30523056, 22.58515227 ], [ 114.30514847, 22.5854271 ], [ 114.30501641, 22.58563054 ], [ 114.30480226, 22.58583399 ], [ 114.30460239, 22.58599103 ], [ 114.30422048, 22.58630512 ], [ 114.30402418, 22.5865621 ], [ 114.3038717, 22.58696576 ], [ 114.30394311, 22.58734447 ], [ 114.30402878, 22.58750591 ], [ 114.30406449, 22.58771008 ], [ 114.30411447, 22.58787476 ], [ 114.30438347, 22.58802547 ] ] } }, 26 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 4 }, "geometry": { "type": "LineString", "coordinates": [ [ 114.32314427, 22.59566984 ], [ 114.32312487, 22.59560147 ], [ 114.32317247, 22.59540953 ], [ 114.32323792, 22.59532735 ], [ 114.32347594, 22.5952455 ], [ 114.32385083, 22.5951639 ], [ 114.32410672, 22.59524119 ], [ 114.32435665, 22.59517034 ], [ 114.32460659, 22.59524213 ], [ 114.32483867, 22.59533584 ], [ 114.32505886, 22.59551731 ], [ 114.32533856, 22.59570438 ], [ 114.32542189, 22.59586913 ], [ 114.32557066, 22.59595719 ], [ 114.32597533, 22.59621582 ], [ 114.32626098, 22.59629317 ], [ 114.32637405, 22.5963702 ], [ 114.32646332, 22.5963978 ] ] } }, 27 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 4 }, "geometry": { "type": "LineString", "coordinates": [ [ 114.33367464, 22.602445 ], [ 114.33400776, 22.60252234 ], [ 114.33441072, 22.60232928 ], [ 114.33473801, 22.6021324 ], [ 114.33495224, 22.60201759 ], [ 114.3354759, 22.60160163 ], [ 114.33580915, 22.60142121 ], [ 114.33604718, 22.60127902 ], [ 114.33642292, 22.60091025 ], [ 114.3369583, 22.60058308 ], [ 114.33766024, 22.60021426 ], [ 114.33835028, 22.59976811 ], [ 114.33896299, 22.59979191 ], [ 114.33984339, 22.59901858 ], [ 114.34040315, 22.59907626 ], [ 114.34061672, 22.59884012 ], [ 114.34060482, 22.59854864 ], [ 114.34058103, 22.59822741 ], [ 114.34070595, 22.59792998 ], [ 114.34099148, 22.59773367 ], [ 114.34140194, 22.59755521 ], [ 114.34162799, 22.59735296 ], [ 114.34183619, 22.59699604 ], [ 114.34187188, 22.59667481 ], [ 114.34160746, 22.59655036 ], [ 114.34149319, 22.59639652 ], [ 114.34130676, 22.59649635 ], [ 114.34098553, 22.59690681 ], [ 114.34082492, 22.5969425 ], [ 114.34080474, 22.59674902 ] ] } }, 28 | { "type": "Feature", "properties": { "PropertyID": 0, "OBJECTID": 4 }, "geometry": { "type": "LineString", "coordinates": [ [ 114.32525135, 22.59616918 ], [ 114.32548724, 22.59590781 ] ] } } 29 | ] 30 | } 31 | -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |