From f67d43a43f6c3e58922e3c2f457dd9caafebfc67 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Fri, 14 Aug 2026 14:20:22 +0800
Subject: [PATCH] feat:具体能力实现处理
---
apps/workbench-console/README.md | 48
.gitignore | 3
apps/workbench-console/src/data/capabilities.ts | 34
scripts/check-environment.ps1 | 11
apps/workbench-console/tsconfig.app.json | 21
baseData/演示.xlsx | 0
apps/workbench-console/src/components/ObjectDetectionPanel.vue | 37
baseData/uom-fly-zone.bin-B8O-S8Cs.gzip | 0
capabilities/01-object-detection/README.md | 103
apps/workbench-console/src/api/artifacts.ts | 101
apps/workbench-console/src/views/OverviewView.vue | 26
capabilities/15-trajectory-analysis/requirements.txt | 3
apps/workbench-console/src/components/PageHeader.vue | 10
tests/test_serve_workbench_console.py | 46
apps/workbench-console/src/styles.css | 17
apps/workbench-console/tsconfig.json | 7
apps/workbench-console/index.html | 13
capabilities/15-trajectory-analysis/run_trajectory_analysis.py | 636
apps/workbench-console/src/views/CapabilityView.vue | 22
capabilities/15-trajectory-analysis/generate_demo_inputs.py | 197
capabilities/01-object-detection/requirements.txt | 6
apps/workbench-console/src/stores/index.ts | 3
apps/workbench-console/src/components/TrajectoryAnalysisPanel.vue | 28
apps/workbench-console/tsconfig.node.json | 12
capabilities/README.md | 20
capabilities/01-object-detection/run_detection.py | 256
apps/workbench-console/src/main.ts | 11
apps/workbench-console/package-lock.json | 2499
apps/workbench-console/src/components/TrajectoryMap.vue | 88
apps/workbench-console/package.json | 26
scripts/serve_workbench_console.py | 91
README.md | 44
baseData/no-fly-zone-Chn_xS2X.geojson | 203348 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
baseData/田墩-疫木识别(勿删).kmz | 0
apps/workbench-console/src/components/ArtifactState.vue | 10
apps/workbench-console/src/App.vue | 60
capabilities/01-object-detection/run_geoai_vehicle_detection.py | 220
apps/workbench-console/vite.config.ts | 39
能力边界与来源说明.md | 29
AGENTS.md | 45
apps/workbench-console/src/stores/artifacts.ts | 61
capabilities/15-trajectory-analysis/README.md | 122
capabilities/15-trajectory-analysis/tests/test_demo.py | 73
PROJECT_CONTEXT.md | 145
apps/workbench-console/src/router/index.ts | 13
新对话启动说明.txt | 24
46 files changed, 208,590 insertions(+), 18 deletions(-)
diff --git a/.gitignore b/.gitignore
index de6aba5..057404d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,6 +14,8 @@
dist/
build/
*.egg-info/
+*.pt
+Ultralytics/
shared/data/raw/*
shared/data/interim/*
@@ -22,4 +24,3 @@
shared/outputs/*
!**/.gitkeep
!shared/**/README.md
-
diff --git a/AGENTS.md b/AGENTS.md
new file mode 100644
index 0000000..11b613b
--- /dev/null
+++ b/AGENTS.md
@@ -0,0 +1,45 @@
+# GeoAI Workbench Instructions
+
+## Scope
+
+These instructions apply to the entire repository at `E:\AllWorkProject\geoai-workbench`.
+Read `PROJECT_CONTEXT.md` before planning or changing a capability.
+
+## Project Definition
+
+- In this repository, GeoAI means workflows based on `opengeos/geoai` (`geoai-py`), not every spatial-intelligence feature.
+- Keep the capability boundary explicit:
+ - A: directly provided or documented by `geoai-py`.
+ - B: built with `geoai-py` plus geospatial or AI ecosystem libraries.
+ - C: a product/service capability that consumes GeoAI outputs.
+- Verify current APIs against the installed package, source, or official documentation. Do not label B or C work as a built-in GeoAI function.
+- Treat the user as a beginner who supplies goals, sample data, and visual feedback. Explain decisions in clear Chinese and handle implementation, environment work, debugging, and verification end to end.
+
+## Repository Conventions
+
+- Keep one capability in `capabilities/<number>-<name>/`.
+- Every capability must have a `README.md` and `requirements.txt`; add code, tests, configs, and examples only when needed.
+- Share compatible dependencies through `requirements/base.txt`. Use `.venvs/<capability>` for isolated environments when needed.
+- Use Python 3.12 for GeoAI and deep-learning capabilities. Do not install project dependencies into system Python.
+- Store reusable code in `src/geoai_common/` only after it is genuinely shared.
+- Keep raw data, processed data, weights, caches, and generated outputs out of Git and under the existing `shared/` layout.
+
+## Capability Workflow
+
+1. Read the root documentation, `PROJECT_CONTEXT.md`, and the target capability README.
+2. Classify the capability as A, B, or C and identify the exact role of `geoai-py`.
+3. Define a runnable Demo with real input, inspectable output, structured metadata, and measurable acceptance criteria.
+4. Inspect hardware and existing environments before installing dependencies. Default to CPU because no NVIDIA CUDA is available.
+5. Validate one normal and one difficult representative sample before running a full directory.
+6. Visually inspect generated images, maps, documents, or spreadsheets.
+7. Record model, package, dataset, and weight licenses independently before suggesting commercial use.
+8. Update the capability README and `PROJECT_CONTEXT.md` after verified changes.
+
+## Engineering Rules
+
+- Prefer existing project patterns and `geoai-py` APIs over new abstractions.
+- Preserve geospatial coordinates only when the input has a valid CRS and transform. Ordinary JPEG results remain pixel coordinates.
+- Report false positives, misses, runtime, and unsupported classes honestly. Do not hide limitations by lowering thresholds.
+- Do not batch-run large datasets until a representative validation indicates that the approach is suitable.
+- Do not delete or overwrite source imagery, model weights, results, or unrelated user changes.
+- Do not commit unless the user explicitly asks.
diff --git a/PROJECT_CONTEXT.md b/PROJECT_CONTEXT.md
new file mode 100644
index 0000000..2d3b4c9
--- /dev/null
+++ b/PROJECT_CONTEXT.md
@@ -0,0 +1,145 @@
+# GeoAI Workbench Current Context
+
+Last updated: 2026-08-14
+
+This file is the current project snapshot for new Codex tasks. Keep it concise and replace stale facts instead of appending a conversation diary.
+
+## Project Identity
+
+- Repository: `E:\AllWorkProject\geoai-workbench`
+- Technical foundation: [opengeos/geoai](https://github.com/opengeos/geoai), PyPI package `geoai-py`, import name `geoai`.
+- Purpose: build independently runnable GeoAI capability Demos for drone and remote-sensing workflows, then evaluate integration with existing products.
+- Product repositories in scope for later integration:
+ - `E:\AllWorkProject\drone_project\ztzf-drone-web\applications\command-center-dashboard`
+ - `E:\AllWorkProject\drone_project\ztzf-drone-web\applications\drone-web-manage`
+- Capability classification: A = direct `geoai-py`; B = GeoAI plus ecosystem libraries; C = product/service capability consuming GeoAI results.
+
+## Collaboration and Constraints
+
+- The user is a beginner and can invest about 7-8 hours per day in running Demos and giving visual feedback.
+- Codex is expected to handle environment setup, code, model selection, debugging, verification, and iteration.
+- The machine runs Windows and PowerShell with 64 GB RAM and an AMD RX 590 GME 8 GB GPU. There is no NVIDIA CUDA, so current Demos use CPU inference.
+- Use Python 3.12 for capability environments. The system also has Python 3.13, which must not replace or contaminate project environments.
+- `geoai-py` is MIT-licensed, but every dependency, dataset, and model weight needs a separate commercial-license check.
+- Current JPEG samples have no usable georeferencing. Their detections use pixel coordinates; accurate GeoJSON requires a georeferenced GeoTIFF.
+
+## Environment Snapshot
+
+Dedicated object-detection environment:
+
+`E:\AllWorkProject\geoai-workbench\.venvs\01-object-detection`
+
+| Component | Version |
+| --- | --- |
+| Python | 3.12.10 |
+| geoai-py | 0.42.0 |
+| torch | 2.13.0+cpu |
+| torchvision | 0.28.0+cpu |
+| rasterio | 1.5.1 |
+| geopandas | 1.1.4 |
+| ultralytics | 8.4.118 |
+
+`pip check` passes in this environment.
+
+Dedicated trajectory-analysis environment:
+
+`E:\AllWorkProject\geoai-workbench\.venvs\15-trajectory-analysis`
+
+| Component | Version |
+| --- | --- |
+| Python | 3.12.10 |
+| pandas | 2.3.3 |
+| geopandas | 1.1.4 |
+| shapely | 2.1.2 |
+| pyproj | 3.7.2 |
+| scikit-learn | 1.9.0 |
+| matplotlib | 3.11.1 |
+
+`geoai-py` is intentionally not installed in this environment because version 0.42.0 has no trajectory, tracking, or behavior-recognition API. The capability consumes timestamped track results that may originate from an upstream GeoAI detection/export workflow. `pip check` passes.
+
+## Local Experiment Console
+
+- Location: `apps/workbench-console/`
+- Frontend: Vue 3 + Vite + Ant Design Vue + Pinia. Trajectory maps use Cesium `1.126.0` with a local grid base layer.
+- Build: `Set-Location .\apps\workbench-console; npm install; npm run build`
+- Start command: `py -3.12 .\scripts\serve_workbench_console.py`
+- URL: `http://127.0.0.1:6173` (built console); Vite development is `http://127.0.0.1:6174/apps/workbench-console/`. Only `6xxx` ports are accepted.
+- Scope: independent, read-only local UI for this workbench. It has no code, API, account, data-upload, or task-execution link to the two drone-product repositories.
+- First release: overview plus live result pages for `01-object-detection` and `15-trajectory-analysis`; other capability pages show their registered status only.
+- File exposure: the local server permits only console assets, `shared/outputs`, and source images required for the object-detection comparison. It does not expose the rest of the repository.
+
+## Capability Status
+
+| Capability | Status | Current conclusion |
+| --- | --- | --- |
+| `00-change-detection` | Existing product capability confirmed; local Demo not implemented | The current system's orthophoto change detection already uses GeoAI. |
+| `01-object-detection` | In progress; runnable people and vehicle experiments | Tiled YOLO helps people; GeoAI NWPU substantially improves top-down vehicles; tree detection is not implemented. |
+| `15-trajectory-analysis` | Runnable CPU Demo verified | C capability consuming timestamped tracks: spatial metrics, DBSCAN and explicit behavior rules; not a built-in `geoai-py` function. |
+| `02` through `14`, `16` through `18` | Directory and initial README only | No verified local Demo yet. Start each one through `$geoai-capability-builder`. |
+
+## Object Detection Snapshot
+
+Target classes: people, vehicles, and trees.
+
+Inputs:
+
+- Directory: `shared/data/raw/01-object-detection`
+- 20 files total: 19 ordinary JPEG images and one internal DJI MPO with a `.jpeg` extension.
+- Most images are 3840 x 2160. The MPO is skipped safely.
+
+Environment and scripts:
+
+- General tiled detector: `capabilities/01-object-detection/run_detection.py`
+- GeoAI aerial vehicle detector: `capabilities/01-object-detection/run_geoai_vehicle_detection.py`
+- General model: Ultralytics `yolo11n.pt`, CPU, 1024-pixel tiles, 20% overlap, confidence 0.20.
+- Aerial vehicle model: `giswqs/nwpu-vhr10-maskrcnn:best_model.pth`, called through `geoai-py`, 512-pixel windows, 128-pixel overlap, confidence 0.30.
+
+Measured results:
+
+- Whole-image YOLO baseline across 19 JPEGs: 13 detections, including 3 people and 10 cars; this misses many small targets.
+- `DJI_20260713102047_0001_V_19.jpeg`: tiled YOLO found five person candidates, including duplicates and a false positive; the visible red vehicle was still missed by both YOLO and NWPU.
+- `DJI_20260810092727_0001_V_10.jpeg`: general YOLO found only 2-3 cars. GeoAI NWPU produced 33 raw vehicle detections and 32 after containment deduplication, with about 90 seconds CPU inference.
+- NWPU is much better for top-down aerial vehicles but still misses vehicles and can produce partial-box duplicates or other aerial-class false positives.
+
+Current technical decisions:
+
+- Do not batch-run the final pipeline across all images yet.
+- Use separate model branches: tiled YOLO for people, aerial-specific detection for vehicles, and a future tree-crown detection or segmentation model for trees.
+- Do not claim that the current COCO or NWPU model detects trees.
+- Establish a fixed manually annotated validation set before tuning or training.
+- Product use of Ultralytics and NWPU weights remains blocked on license review and accuracy evaluation.
+
+## Trajectory Analysis Snapshot
+
+Inputs and artifacts:
+
+- Generator: `capabilities/15-trajectory-analysis/generate_demo_inputs.py`
+- Analyzer: `capabilities/15-trajectory-analysis/run_trajectory_analysis.py`
+- Input contract: WGS84 timestamped CSV observations plus GeoJSON reference routes and zones, connected by a `*.case.json` manifest.
+- Generated representative inputs: `shared/data/raw/15-trajectory-analysis`
+- Inspectable outputs: `shared/outputs/15-trajectory-analysis`
+
+Measured validation:
+
+- The normal synthetic case has 2 tracks and 0 events.
+- The difficult synthetic case has 3 tracks, drops 1 duplicate timestamp, and finds exactly one stop, one route deviation, one restricted-zone event, and one gathering event.
+- Directory processing handled 5 tracks and 78 cleaned observations in about 2.8 seconds on CPU.
+- Missing required CSV columns fail cleanly with exit code 2. Both 1400 x 980 PNG results were visually inspected.
+
+Current decisions and limitations:
+
+- Keep the boundary explicit: the current Demo is C because it does not call `geoai-py`; using geospatial ecosystem libraries alone does not make it B. `geoai-py` is only a possible upstream source.
+- This is rule-based behavior detection, not learned video action recognition, and it assumes track IDs already exist.
+- Synthetic data verifies logic only. Do not claim real-world accuracy or batch-run operational data yet.
+- Next decision: obtain one normal and one difficult anonymized real track set, manually label events, then measure false positives, misses, GPS sensitivity, and per-entity thresholds.
+
+## Starting a New Capability
+
+Open a new Codex task with the repository as the working directory and use:
+
+```text
+使用 $geoai-capability-builder,创建下一个能力:<能力名称>。
+先读取 AGENTS.md 和 PROJECT_CONTEXT.md,再准备环境、Demo 输入输出和验收方式。
+```
+
+After completing verified work, update this snapshot and the capability README. Change `AGENTS.md` only when a long-lived rule changes.
diff --git a/README.md b/README.md
index cde9d01..f63c1dc 100644
--- a/README.md
+++ b/README.md
@@ -1,12 +1,16 @@
# GeoAI Workbench
-GeoAI 多能力实验与产品验证工作区。每个能力都有独立目录、依赖声明和
-输入/输出约定;通用依赖、共享数据、模型权重和运行结果由根目录统一管理。
+本工作区以 [opengeos/geoai](https://github.com/opengeos/geoai) 的 `geoai-py`
+为 GeoAI 工作流基础,围绕无人机和遥感数据做实验与产品验证。这里的“GeoAI
+能力”分为三层:`geoai-py` 直接提供的功能、基于它的底层地理/AI生态组合出的
+能力、以及需要由现有产品后端和业务规则实现的产品能力。后两类不能表述为
+`geoai-py` 内置功能。
## 目录
```text
geoai-workbench/
+|-- apps/ # 本地实验控制台等独立界面
|-- capabilities/ # 一个能力一个目录
|-- requirements/ # 跨能力共享的 Python 依赖
|-- scripts/ # 环境初始化和检查脚本
@@ -20,6 +24,9 @@
## 环境策略
+- `geoai-py` 的包名是 `geoai-py`,导入名通常是 `geoai`,不是一个叫 `geoai`
+ 的操作系统或独立运行时。它要求 Python 3.12 或更高版本;本工作区固定使用
+ Python 3.12 以兼容 PyTorch 和地理库。
- 推荐 Python 3.11 或 3.12。当前电脑的 Python 3.13 可运行部分能力,但地理和
深度学习包的兼容性可能不完整。
- 根目录 `.venv` 用于轻量能力和公共开发工具。
@@ -41,5 +48,36 @@
powershell -NoProfile -ExecutionPolicy Bypass -File .\scripts\check-environment.ps1
```
-优先从 `06-spatial-reasoning`、`01-object-detection`、
+## 本地实验控制台
+
+控制台是本工作区内部的只读展示界面,独立于现有无人机产品。它读取
+`shared/outputs/` 中已有的实验结果,方便直接查看标注影像、轨迹图、事件和运行
+元数据;不会上传数据、调用外部接口或启动能力脚本。
+
+```powershell
+py -3.12 .\scripts\serve_workbench_console.py
+```
+
+浏览器访问 <http://127.0.0.1:6173>。默认端口为 `6173`,仅监听本机;其他可用的
+`6xxx` 端口可以通过 `--port` 指定。界面说明见
+`apps/workbench-console/README.md`。
+
+优先从 `01-object-detection`、`02-semantic-mapping`、
`07-risk-rule-engine` 和 `12-quality-control-refly` 开始。
+
+## 能力边界
+
+- 直接能力:目标检测、语义/实例分割、影像分类、变化检测、遥感数据下载与
+ 预处理、地理结果导出与可视化等,具体以 `geoai-py` 当前版本文档和源码为准。
+- 组合能力:空间测量、质量检测、灾害统计等,需要 `geoai-py` 加 Rasterio、
+ GeoPandas、Shapely、PyTorch 或其他专用库。
+- 产品能力:空间规则、风险评分、航线规划、集群调度、工单闭环、GeoLLM、
+ 知识图谱和模型治理,不是 `geoai-py` 单独提供的功能,需要产品服务实现。
+
+完整映射见 `capabilities/README.md` 和规划工作簿中的“能力映射”工作表。
+
+## 新对话继续工作
+
+新建 Codex 对话时,把工作目录选择为本项目根目录,然后使用个人 Skill
+`$geoai-capability-builder`。它会先读取 `AGENTS.md` 和 `PROJECT_CONTEXT.md`,
+无需复制此前的长对话。可直接参考根目录的 `新对话启动说明.txt`。
diff --git a/apps/workbench-console/README.md b/apps/workbench-console/README.md
new file mode 100644
index 0000000..dd0d4ad
--- /dev/null
+++ b/apps/workbench-console/README.md
@@ -0,0 +1,48 @@
+# GeoAI Workbench 本地实验控制台
+
+这是一个完全独立于无人机产品的本地只读控制台。它只展示本工作区已有能力的
+输入说明、运行元数据和结果工件,不上传数据、不调用外部 API,也不提供删除、
+覆盖或启动算法的操作。
+
+## 启动
+
+首次使用先安装和构建前端:
+
+```powershell
+Set-Location .\apps\workbench-console
+npm install
+npm run build
+Set-Location ..\..
+```
+
+再从仓库根目录运行:
+
+```powershell
+py -3.12 .\scripts\serve_workbench_console.py
+```
+
+然后在浏览器打开 <http://127.0.0.1:6173>。服务默认只监听本机回环地址;若端口
+已占用,可以显式传入另一个 `6xxx` 端口:
+
+```powershell
+py -3.12 .\scripts\serve_workbench_console.py --port 6174
+```
+
+开发 Vue 页面时,保持结果服务在 `6173`,并在另一个 PowerShell 中运行:
+
+```powershell
+Set-Location .\apps\workbench-console
+npm run dev
+```
+
+Vite 开发服务固定使用 `http://127.0.0.1:6174/apps/workbench-console/`,会通过本机代理读取 `6173` 的结果工件。
+
+## 目录职责
+
+- `apps/workbench-console/src/`:Vue 3 组件、路由、Pinia 状态与能力适配层。
+- `apps/workbench-console/dist/`:Vite 构建产物(不提交 Git)。
+- `scripts/serve_workbench_console.py`:只读本地文件服务;仅暴露构建后的控制台、已有输出和目标检测原图,不暴露仓库其余文件。
+- `shared/outputs/`:能力原始输出;控制台不复制、不修改这些文件。
+
+首版已接入 `01-object-detection` 和 `15-trajectory-analysis`。其他能力保留目录和
+边界状态,待其首个 Demo 产出可检查工件后再接入。
diff --git a/apps/workbench-console/index.html b/apps/workbench-console/index.html
new file mode 100644
index 0000000..b1d255f
--- /dev/null
+++ b/apps/workbench-console/index.html
@@ -0,0 +1,13 @@
+<!doctype html>
+<html lang="zh-CN">
+ <head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <meta name="color-scheme" content="light" />
+ <title>GeoAI Workbench | 本地实验控制台</title>
+ </head>
+ <body>
+ <div id="app"></div>
+ <script type="module" src="/src/main.ts"></script>
+ </body>
+</html>
diff --git a/apps/workbench-console/package-lock.json b/apps/workbench-console/package-lock.json
new file mode 100644
index 0000000..1f4a2b3
--- /dev/null
+++ b/apps/workbench-console/package-lock.json
@@ -0,0 +1,2499 @@
+{
+ "name": "geoai-workbench-console",
+ "version": "0.1.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "geoai-workbench-console",
+ "version": "0.1.0",
+ "dependencies": {
+ "@ant-design/icons-vue": "^7.0.1",
+ "ant-design-vue": "^4.2.6",
+ "cesium": "1.126.0",
+ "pinia": "^3.0.1",
+ "vue": "^3.5.13",
+ "vue-router": "^4.5.0"
+ },
+ "devDependencies": {
+ "@vitejs/plugin-vue": "^5.2.1",
+ "typescript": "^5.7.2",
+ "vite": "^6.0.5",
+ "vite-plugin-static-copy": "^2.3.0",
+ "vue-tsc": "^2.2.0"
+ }
+ },
+ "node_modules/@ant-design/colors": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmmirror.com/@ant-design/colors/-/colors-6.0.0.tgz",
+ "integrity": "sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==",
+ "dependencies": {
+ "@ctrl/tinycolor": "^3.4.0"
+ }
+ },
+ "node_modules/@ant-design/icons-svg": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmmirror.com/@ant-design/icons-svg/-/icons-svg-4.5.0.tgz",
+ "integrity": "sha512-1BTUFyKPTBZ53MuTP8s0k5SFEXL7o3VHEOwLgzaoWKwnBeqIcqUtVshc4SKzhI6uACfqhJqBwBUE9FsWR3uULA=="
+ },
+ "node_modules/@ant-design/icons-vue": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmmirror.com/@ant-design/icons-vue/-/icons-vue-7.0.1.tgz",
+ "integrity": "sha512-eCqY2unfZK6Fe02AwFlDHLfoyEFreP6rBwAZMIJ1LugmfMiVgwWDYlp1YsRugaPtICYOabV1iWxXdP12u9U43Q==",
+ "dependencies": {
+ "@ant-design/colors": "^6.0.0",
+ "@ant-design/icons-svg": "^4.2.1"
+ },
+ "peerDependencies": {
+ "vue": ">=3.0.3"
+ }
+ },
+ "node_modules/@babel/helper-string-parser": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
+ "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-identifier": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
+ "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/parser": {
+ "version": "7.29.8",
+ "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.29.8.tgz",
+ "integrity": "sha512-E8lTAYNB1KW+FH+VGJuZM1ioAx2E6oVlvQFRrf5P8ZZmsiJXYAD9vTFV7yyEURNzgh1dFqMZuO6tUwcARbqFCA==",
+ "dependencies": {
+ "@babel/types": "^7.29.8"
+ },
+ "bin": {
+ "parser": "bin/babel-parser.js"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@babel/runtime": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.29.7.tgz",
+ "integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/types": {
+ "version": "7.29.8",
+ "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.29.8.tgz",
+ "integrity": "sha512-Vj1jF3cPfxg7OAfoI7QnVKLoILlm2JF9pnVHrX8qx7AHMiYWT+NDAA7jChlNgRS4WTLc/fD1lXLmPixluj+3Gg==",
+ "dependencies": {
+ "@babel/helper-string-parser": "^7.29.7",
+ "@babel/helper-validator-identifier": "^7.29.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@cesium/engine": {
+ "version": "14.0.0",
+ "resolved": "https://registry.npmmirror.com/@cesium/engine/-/engine-14.0.0.tgz",
+ "integrity": "sha512-nmW0uQCyg4CRqi3a8o30gU9S9bFm3TLh2fRO74iv+6a8FFArvZ1xF7IqG2tyRjSXkyH4c5vpavNRT3R51R8NyQ==",
+ "dependencies": {
+ "@tweenjs/tween.js": "^25.0.0",
+ "@zip.js/zip.js": "^2.7.34",
+ "autolinker": "^4.0.0",
+ "bitmap-sdf": "^1.0.3",
+ "dompurify": "^3.0.2",
+ "draco3d": "^1.5.1",
+ "earcut": "^3.0.0",
+ "grapheme-splitter": "^1.0.4",
+ "jsep": "^1.3.8",
+ "kdbush": "^4.0.1",
+ "ktx-parse": "^0.7.0",
+ "lerc": "^2.0.0",
+ "mersenne-twister": "^1.1.0",
+ "meshoptimizer": "^0.22.0",
+ "pako": "^2.0.4",
+ "protobufjs": "^7.1.0",
+ "rbush": "3.0.1",
+ "topojson-client": "^3.1.0",
+ "urijs": "^1.19.7"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@cesium/widgets": {
+ "version": "10.2.0",
+ "resolved": "https://registry.npmmirror.com/@cesium/widgets/-/widgets-10.2.0.tgz",
+ "integrity": "sha512-f0Wrp3MG02P2KSAopVESHWOhF+2eK9cQR9prEYGWuPM3iF6YktKrZqXzNnsOxCw1KPup0aSXsCrFl2asT5jF9g==",
+ "dependencies": {
+ "@cesium/engine": "^14.0.0",
+ "nosleep.js": "^0.12.0"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@ctrl/tinycolor": {
+ "version": "3.6.1",
+ "resolved": "https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz",
+ "integrity": "sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@emotion/hash": {
+ "version": "0.9.2",
+ "resolved": "https://registry.npmmirror.com/@emotion/hash/-/hash-0.9.2.tgz",
+ "integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g=="
+ },
+ "node_modules/@emotion/unitless": {
+ "version": "0.8.1",
+ "resolved": "https://registry.npmmirror.com/@emotion/unitless/-/unitless-0.8.1.tgz",
+ "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ=="
+ },
+ "node_modules/@esbuild/aix-ppc64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
+ "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "aix"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-arm": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.25.12.tgz",
+ "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz",
+ "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.25.12.tgz",
+ "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/darwin-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz",
+ "integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/darwin-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz",
+ "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/freebsd-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz",
+ "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/freebsd-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz",
+ "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-arm": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz",
+ "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz",
+ "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-ia32": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz",
+ "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-loong64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz",
+ "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-mips64el": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz",
+ "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==",
+ "cpu": [
+ "mips64el"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-ppc64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz",
+ "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-riscv64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz",
+ "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-s390x": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz",
+ "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz",
+ "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/netbsd-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz",
+ "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/netbsd-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz",
+ "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/openbsd-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz",
+ "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/openbsd-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz",
+ "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/openharmony-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz",
+ "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "openharmony"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/sunos-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz",
+ "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "sunos"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz",
+ "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-ia32": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz",
+ "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz",
+ "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@jridgewell/sourcemap-codec": {
+ "version": "1.5.5",
+ "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og=="
+ },
+ "node_modules/@napi-rs/lzma-linux-x64-gnu": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmmirror.com/@napi-rs/lzma-linux-x64-gnu/-/lzma-linux-x64-gnu-1.5.1.tgz",
+ "integrity": "sha512-oTXEIha4SsuXdTA4Iyskj0kpdx2yVXdhd75c2v3xGrHFfVMsbhTPZU/nMPL4sWKo4pBHm3aucLaqGlF696dTyQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^22.20 || ^24.12 || >=25"
+ }
+ },
+ "node_modules/@nodelib/fs.scandir": {
+ "version": "2.1.5",
+ "resolved": "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
+ "dev": true,
+ "dependencies": {
+ "@nodelib/fs.stat": "2.0.5",
+ "run-parallel": "^1.1.9"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nodelib/fs.stat": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
+ "dev": true,
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nodelib/fs.walk": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
+ "dev": true,
+ "dependencies": {
+ "@nodelib/fs.scandir": "2.1.5",
+ "fastq": "^1.6.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@protobufjs/aspromise": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmmirror.com/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
+ "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ=="
+ },
+ "node_modules/@protobufjs/base64": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmmirror.com/@protobufjs/base64/-/base64-1.1.2.tgz",
+ "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg=="
+ },
+ "node_modules/@protobufjs/codegen": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmmirror.com/@protobufjs/codegen/-/codegen-2.0.5.tgz",
+ "integrity": "sha512-zgXFLzW3Ap33e6d0Wlj4MGIm6Ce8O89n/apUaGNB/jx+hw+ruWEp7EwGUshdLKVRCxZW12fp9r40E1mQrf/34g=="
+ },
+ "node_modules/@protobufjs/eventemitter": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmmirror.com/@protobufjs/eventemitter/-/eventemitter-1.1.1.tgz",
+ "integrity": "sha512-vW1GmwMZNnL+gMRaovlh9yZX74kc+TTU3FObkkurpMaRtBfLP3ldjS9KQWlwZgraRE0+dheEEoAxdzcJQ8eXZg=="
+ },
+ "node_modules/@protobufjs/fetch": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmmirror.com/@protobufjs/fetch/-/fetch-1.1.1.tgz",
+ "integrity": "sha512-GpptLrs57adMSuHi3VNj0mAF8dwh36LMaYF6XyJ6JMWlVsc+t42tm1HSEDmOs3A8fC9yyeisgLhsTVQokOZ0zw==",
+ "dependencies": {
+ "@protobufjs/aspromise": "^1.1.1"
+ }
+ },
+ "node_modules/@protobufjs/float": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmmirror.com/@protobufjs/float/-/float-1.0.2.tgz",
+ "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ=="
+ },
+ "node_modules/@protobufjs/path": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmmirror.com/@protobufjs/path/-/path-1.1.2.tgz",
+ "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA=="
+ },
+ "node_modules/@protobufjs/pool": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmmirror.com/@protobufjs/pool/-/pool-1.1.0.tgz",
+ "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw=="
+ },
+ "node_modules/@protobufjs/utf8": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmmirror.com/@protobufjs/utf8/-/utf8-1.1.2.tgz",
+ "integrity": "sha512-b1UQwcEZ4yCnMCD8DAL1VlbvBJE9/IX4FTIp7BG1xYpf29SLazLSrqUkj4w7Y5y7cCVP6E5tcqqcI0xemPkHug=="
+ },
+ "node_modules/@rollup/rollup-android-arm-eabi": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.62.4.tgz",
+ "integrity": "sha512-RrPokAb7dmbxFoeO3TloqHyOjgye8RkBhSqmp4aJMIex4c9r46ZstPnleDQOq1t46VOVjwIuwNogIqbodV1Vvg==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ]
+ },
+ "node_modules/@rollup/rollup-android-arm64": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.62.4.tgz",
+ "integrity": "sha512-JKuJc+pnpks2pjy7L/N3v/cAkZxYlnmuZoD840ldbMI5KDbC4iO9NKwPKYdjYFCMAIIlBzYSFHxIJVYzRo2/8A==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ]
+ },
+ "node_modules/@rollup/rollup-darwin-arm64": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.62.4.tgz",
+ "integrity": "sha512-krw5uS2STmvJ02x0uTXHbqQNuz+9eZ1iw+qXk9dmW2gvV4jV7O2hEoOnuhFrpOPiel1mBFtqbxYZZtC46hXLOw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@rollup/rollup-darwin-x64": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.62.4.tgz",
+ "integrity": "sha512-wsTxtgApb4PrOsNJIm0FZ1h3WvCC+k9uxLJ4ad75hgoS4NiRes2SoJFlDAyMwiUY8IssDqGcHbXuN0sx1tfF1A==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@rollup/rollup-freebsd-arm64": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.62.4.tgz",
+ "integrity": "sha512-GUOnQlyZe3yAXhWOtOMsn5Qkrv5E5mZXa0thbARWi5Ei2szlVXJFQhddZ4HbAzh8q92w5twp+CQvs/eFanz9YQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-freebsd-x64": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.62.4.tgz",
+ "integrity": "sha512-/Y7f3QuxjzPKsjA/rfEDa3+0vXqyjmJ50Ln8dPpCmWkKTrUoWHG1cWhTqaAMLob2m2nESWuC7yGrREz019Ztqg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.62.4.tgz",
+ "integrity": "sha512-81wiiX3v7aqy+T+bT61TJ78yJjRquqFFTTbAPt08imfQQzkPIW8t6aJbkTagtCCrXMNc9D66+geqlK7ydLPNqA==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.62.4.tgz",
+ "integrity": "sha512-9kmDIvNZqdoHOBZgNtpTBeLWYO/LVipM3H/j62P8848/l/VPEQL6N3uxU9pvP1oZAsXyC2MEnFP3ovRjo7WYNQ==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.62.4.tgz",
+ "integrity": "sha512-CcnXHWnXg69g+DX5VWL3FHts3qMRN2uVEHX+BZvGLdd07/gXkn3ePjYtO1LDJvxkGKVHMclKBRa1QUTH+6toYQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.62.4.tgz",
+ "integrity": "sha512-iFOibiHnTRuhrWLlRsOQFdZJJIa7S8OwkneJr4ocALP16u5yk6lWLINFwhHaEqBFMsKDUZofLkGos7+CPzGB3g==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-loong64-gnu": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.62.4.tgz",
+ "integrity": "sha512-XnWYMI7euHlb5a871xPja+Gm7DRCFU+FGRrtS2sMq9N8FvqtpagUy6gD4YOemC5MRk9xbh8+jYMEJbigFQwsgA==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-loong64-musl": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.62.4.tgz",
+ "integrity": "sha512-qGDAlO0U8xedCcsdRm9oaoQY8DAx/QT7uIxJWhCdx0ceIWX783UC9QSYkdpzAe29wNiVfp24+bZdQmn49o45SQ==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-ppc64-gnu": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.62.4.tgz",
+ "integrity": "sha512-ru4H6ezD7ysA5EiEK6qkkaEb4modH8CTej6kUy/gQi20u3kB3G7Zn8snXXkeJSCOFKG/rbPPtM/+9Wgas1961w==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-ppc64-musl": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.62.4.tgz",
+ "integrity": "sha512-2W4MO5WQVJnbJaZdvDb9rhBDuFU1nKIepPFpJUBsTh2k1YY2g+ODViaWuyOAjQ5cOP7NvrvLzt3wvHOoiAvc7w==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.62.4.tgz",
+ "integrity": "sha512-+fxjfuoAmVMCYV5QyjoIpu0cp5DOiOTeqYFk1AVaxGr+/ravWLX89XfQmptsoWcaVy/TGf2hexzbUOrCQIL1CQ==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.62.4.tgz",
+ "integrity": "sha512-jTn8JfHGL4djjFxPuM06LmNUJDsst2jeVlsd9OmIH6zc5sC9K6rIuO4YajXatLUpBmBKl6b35ro1QZocLi+tcA==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.62.4.tgz",
+ "integrity": "sha512-oCJCJL4pXsoDcP2QZ+JVlPTIRc6266zsIaeJJsWImmF7HO0W8nb6HuSgZlMWxJwaPf8ehbSw8yo0EUw925hKsA==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.62.4.tgz",
+ "integrity": "sha512-W69hukhZ3KKNRCaMIEzKvcFye42hh0FE1+YoYaf5+Ikacuftoco6yO/xouz0hc5d5W/s3yBro5jRiuEE/Q5vUw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-x64-musl": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.62.4.tgz",
+ "integrity": "sha512-qiXbGG2jkjXhzXpsFZSR2Xpb8DN/UaxYsbb/STbuR/6fpaDgRmmaq1B/LmtF2wQFOFOSsK2jdE0RZ3a0zHn4QA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-openbsd-x64": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.62.4.tgz",
+ "integrity": "sha512-nWeM//hxv8mIo6jD7Hu4o48DVmV9pbV6gsKaWU+4NFyqHoPKwrkRiZGLKUhOBk8qNmDmpwFtPKg80Bo/Tn4xiQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "openbsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-openharmony-arm64": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.62.4.tgz",
+ "integrity": "sha512-s62SQ/vgsRSvMwDkOEfTqfgASF0f26ZNaQuTA6Aok5lrikf89yI2W0gFHvZb2Jpgc6N8JnOKZgCK2iciO3CsxQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "openharmony"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.62.4.tgz",
+ "integrity": "sha512-J6wGf8TVGbXJq+HH+ttTvrcfNKPbuZecV6KT1B8I18BC5IURUh5kl4Yl5OEP5eFIUoI5BWxCsyYMhFsDx8kekw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.62.4.tgz",
+ "integrity": "sha512-zmfrQd/0wu6oJs8Vq8KwY/YtsKSsLtKe/HwAP4Wqy8LhWjeT55fHRAkOhYQ12wI3ayS4Tt12d5CDRD7N96SAYQ==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-x64-gnu": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.62.4.tgz",
+ "integrity": "sha512-qPzHqdj9rfUD+w79dtE07zi/kFwKyCJqplp5K5ygeLTp7jLpAoc16OAH39HSmRC9UpozaecsleI8uAdEj6v2yw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.62.4.tgz",
+ "integrity": "sha512-zD6NdeWEByGE9QF9vCrlJ5YQB4oq9q91kPZS37Jwj5hOkvR1lTBSpsKhKDw4IJtbQ35LsTS1HD9DZYGKIshU1Q==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@simonwep/pickr": {
+ "version": "1.8.2",
+ "resolved": "https://registry.npmmirror.com/@simonwep/pickr/-/pickr-1.8.2.tgz",
+ "integrity": "sha512-/l5w8BIkrpP6n1xsetx9MWPWlU6OblN5YgZZphxan0Tq4BByTCETL6lyIeY8lagalS2Nbt4F2W034KHLIiunKA==",
+ "dependencies": {
+ "core-js": "^3.15.1",
+ "nanopop": "^2.1.0"
+ }
+ },
+ "node_modules/@tweenjs/tween.js": {
+ "version": "25.0.0",
+ "resolved": "https://registry.npmmirror.com/@tweenjs/tween.js/-/tween.js-25.0.0.tgz",
+ "integrity": "sha512-XKLA6syeBUaPzx4j3qwMqzzq+V4uo72BnlbOjmuljLrRqdsd3qnzvZZoxvMHZ23ndsRS4aufU6JOZYpCbU6T1A=="
+ },
+ "node_modules/@types/estree": {
+ "version": "1.0.9",
+ "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.9.tgz",
+ "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
+ "dev": true
+ },
+ "node_modules/@types/node": {
+ "version": "26.2.0",
+ "resolved": "https://registry.npmmirror.com/@types/node/-/node-26.2.0.tgz",
+ "integrity": "sha512-5IviulTZeRNp2vAJ514cc/HUlY5nZ9fCbq9DMyC52BrhFZACo3nI0R7qBxhQmo/d27NFe96ur/b7Wwxklda+kg==",
+ "dependencies": {
+ "undici-types": "~8.3.0"
+ }
+ },
+ "node_modules/@types/trusted-types": {
+ "version": "2.0.7",
+ "resolved": "https://registry.npmmirror.com/@types/trusted-types/-/trusted-types-2.0.7.tgz",
+ "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==",
+ "optional": true
+ },
+ "node_modules/@vitejs/plugin-vue": {
+ "version": "5.2.4",
+ "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-5.2.4.tgz",
+ "integrity": "sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==",
+ "dev": true,
+ "engines": {
+ "node": "^18.0.0 || >=20.0.0"
+ },
+ "peerDependencies": {
+ "vite": "^5.0.0 || ^6.0.0",
+ "vue": "^3.2.25"
+ }
+ },
+ "node_modules/@volar/language-core": {
+ "version": "2.4.15",
+ "resolved": "https://registry.npmmirror.com/@volar/language-core/-/language-core-2.4.15.tgz",
+ "integrity": "sha512-3VHw+QZU0ZG9IuQmzT68IyN4hZNd9GchGPhbD9+pa8CVv7rnoOZwo7T8weIbrRmihqy3ATpdfXFnqRrfPVK6CA==",
+ "dev": true,
+ "dependencies": {
+ "@volar/source-map": "2.4.15"
+ }
+ },
+ "node_modules/@volar/source-map": {
+ "version": "2.4.15",
+ "resolved": "https://registry.npmmirror.com/@volar/source-map/-/source-map-2.4.15.tgz",
+ "integrity": "sha512-CPbMWlUN6hVZJYGcU/GSoHu4EnCHiLaXI9n8c9la6RaI9W5JHX+NqG+GSQcB0JdC2FIBLdZJwGsfKyBB71VlTg==",
+ "dev": true
+ },
+ "node_modules/@volar/typescript": {
+ "version": "2.4.15",
+ "resolved": "https://registry.npmmirror.com/@volar/typescript/-/typescript-2.4.15.tgz",
+ "integrity": "sha512-2aZ8i0cqPGjXb4BhkMsPYDkkuc2ZQ6yOpqwAuNwUoncELqoy5fRgOQtLR9gB0g902iS0NAkvpIzs27geVyVdPg==",
+ "dev": true,
+ "dependencies": {
+ "@volar/language-core": "2.4.15",
+ "path-browserify": "^1.0.1",
+ "vscode-uri": "^3.0.8"
+ }
+ },
+ "node_modules/@vue/compiler-core": {
+ "version": "3.5.41",
+ "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.41.tgz",
+ "integrity": "sha512-q0Xtv/F9w2YO/7htQhtiL+Ev2WCJbe5N2hc+XfgyKkEKqWpSxknmT8QOuGdEKNdjPq0c3F7rNpFkTo3Kfrm7pg==",
+ "dependencies": {
+ "@babel/parser": "^7.29.8",
+ "@vue/shared": "3.5.41",
+ "entities": "^7.0.1",
+ "estree-walker": "^2.0.2",
+ "source-map-js": "^1.2.1"
+ }
+ },
+ "node_modules/@vue/compiler-dom": {
+ "version": "3.5.41",
+ "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.41.tgz",
+ "integrity": "sha512-oKacVfNglLvGjnS6BXOlGL7EyG2h8X03pqXCjzotRZUaXGjbrTJUnVAQjrCqUnS+lyu31nwQjZY/d817GmCnfw==",
+ "dependencies": {
+ "@vue/compiler-core": "3.5.41",
+ "@vue/shared": "3.5.41"
+ }
+ },
+ "node_modules/@vue/compiler-sfc": {
+ "version": "3.5.41",
+ "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.41.tgz",
+ "integrity": "sha512-XJhip7R2wy6vX3knCxdZN4KracFaZUef58s1KYewqluedHIJaPIVfXoYT7MF1F8nCvv6k8bWWxDC8opMkg1VTQ==",
+ "dependencies": {
+ "@babel/parser": "^7.29.8",
+ "@vue/compiler-core": "3.5.41",
+ "@vue/compiler-dom": "3.5.41",
+ "@vue/compiler-ssr": "3.5.41",
+ "@vue/shared": "3.5.41",
+ "estree-walker": "^2.0.2",
+ "magic-string": "^0.30.21",
+ "postcss": "^8.5.19",
+ "source-map-js": "^1.2.1"
+ }
+ },
+ "node_modules/@vue/compiler-ssr": {
+ "version": "3.5.41",
+ "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.41.tgz",
+ "integrity": "sha512-U3v5OejKEGqOI0Wy0+Sz7hGuIFZHA4LSXzrNM3IMIeDyJEBBfTpX26n3SDgToRpP2bLc9FfI2j/kSgcJ8Emq5A==",
+ "dependencies": {
+ "@vue/compiler-dom": "3.5.41",
+ "@vue/shared": "3.5.41"
+ }
+ },
+ "node_modules/@vue/compiler-vue2": {
+ "version": "2.7.16",
+ "resolved": "https://registry.npmmirror.com/@vue/compiler-vue2/-/compiler-vue2-2.7.16.tgz",
+ "integrity": "sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==",
+ "dev": true,
+ "dependencies": {
+ "de-indent": "^1.0.2",
+ "he": "^1.2.0"
+ }
+ },
+ "node_modules/@vue/devtools-api": {
+ "version": "7.7.10",
+ "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-7.7.10.tgz",
+ "integrity": "sha512-KxtEpUOOpFz/qOGRrAwA36QF7DqIA+FXgCYit9mk9wjbaZt0sXOFz81ElOZtKA4HbWHUdwNjZHBFsFFyp5BZiA==",
+ "dependencies": {
+ "@vue/devtools-kit": "^7.7.10"
+ }
+ },
+ "node_modules/@vue/devtools-kit": {
+ "version": "7.7.10",
+ "resolved": "https://registry.npmmirror.com/@vue/devtools-kit/-/devtools-kit-7.7.10.tgz",
+ "integrity": "sha512-3WNi2Kq4tbpVbmhml7RiphmAt0279oh3fKNeWMQIrltfX8Q91b4i5PL8DtyNKdwmcsGrV4fg+erwWOmD05CLIw==",
+ "dependencies": {
+ "@vue/devtools-shared": "^7.7.10",
+ "birpc": "^2.3.0",
+ "hookable": "^5.5.3",
+ "mitt": "^3.0.1",
+ "perfect-debounce": "^1.0.0",
+ "speakingurl": "^14.0.1",
+ "superjson": "^2.2.2"
+ }
+ },
+ "node_modules/@vue/devtools-shared": {
+ "version": "7.7.10",
+ "resolved": "https://registry.npmmirror.com/@vue/devtools-shared/-/devtools-shared-7.7.10.tgz",
+ "integrity": "sha512-wOPslzB8vTvpxwdaOcR2qAbwmuSP0L+rhpoC6Cf56V3Jip+HWb7PQQXOUPgBNQARpXsbQX/+mvi8kKucmBGRwQ==",
+ "dependencies": {
+ "rfdc": "^1.4.1"
+ }
+ },
+ "node_modules/@vue/language-core": {
+ "version": "2.2.12",
+ "resolved": "https://registry.npmmirror.com/@vue/language-core/-/language-core-2.2.12.tgz",
+ "integrity": "sha512-IsGljWbKGU1MZpBPN+BvPAdr55YPkj2nB/TBNGNC32Vy2qLG25DYu/NBN2vNtZqdRbTRjaoYrahLrToim2NanA==",
+ "dev": true,
+ "dependencies": {
+ "@volar/language-core": "2.4.15",
+ "@vue/compiler-dom": "^3.5.0",
+ "@vue/compiler-vue2": "^2.7.16",
+ "@vue/shared": "^3.5.0",
+ "alien-signals": "^1.0.3",
+ "minimatch": "^9.0.3",
+ "muggle-string": "^0.4.1",
+ "path-browserify": "^1.0.1"
+ },
+ "peerDependencies": {
+ "typescript": "*"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@vue/reactivity": {
+ "version": "3.5.41",
+ "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.41.tgz",
+ "integrity": "sha512-rznsqKM0np0x18EjzF8x88MpEhdNsffbvFbckLL5+oUKz1BxAImEmO7J1ArRYSyo6aQaVoBDp7jEkT91OOxydA==",
+ "dependencies": {
+ "@vue/shared": "3.5.41"
+ }
+ },
+ "node_modules/@vue/runtime-core": {
+ "version": "3.5.41",
+ "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.41.tgz",
+ "integrity": "sha512-Vcry58hiAKwGen9Z1jUZE0feFsNArPCMOImYI8el48A9Idf6DuQYD0U05zZIF2Iad1hGhPSvcbBbAOhNr55fhg==",
+ "dependencies": {
+ "@vue/reactivity": "3.5.41",
+ "@vue/shared": "3.5.41"
+ }
+ },
+ "node_modules/@vue/runtime-dom": {
+ "version": "3.5.41",
+ "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.41.tgz",
+ "integrity": "sha512-3vVBahVBS9+U6cmXBLyb8nE6/yYo4J/CGI9eVFs3KiMc0YHuudwKyShTD65jtJy/L9PUUxNAFu4cj4LiJ0UFbw==",
+ "dependencies": {
+ "@vue/reactivity": "3.5.41",
+ "@vue/runtime-core": "3.5.41",
+ "@vue/shared": "3.5.41",
+ "csstype": "^3.2.3"
+ }
+ },
+ "node_modules/@vue/server-renderer": {
+ "version": "3.5.41",
+ "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.41.tgz",
+ "integrity": "sha512-n6hx/pNFfbD6SuyeuMVkvqox8bwf/ET9JlA/kAz/imw8sw++wkqKe2mHX5KutjPpbKE4Z56yTHszoOjGMI9igQ==",
+ "dependencies": {
+ "@vue/compiler-ssr": "3.5.41",
+ "@vue/runtime-dom": "3.5.41",
+ "@vue/shared": "3.5.41"
+ }
+ },
+ "node_modules/@vue/shared": {
+ "version": "3.5.41",
+ "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.41.tgz",
+ "integrity": "sha512-IOnwSCma8j+9xJT6b8H0dEYidC80NsYmNMlZxRsukYcSoGaDBohog5hDxzeUXdFeGWFA++vWvxqOmrr96VlqMA=="
+ },
+ "node_modules/@zip.js/zip.js": {
+ "version": "2.8.49",
+ "resolved": "https://registry.npmmirror.com/@zip.js/zip.js/-/zip.js-2.8.49.tgz",
+ "integrity": "sha512-TY3fKR/IQqPJqrOQAohvW6kv7Qd1aehzU7M7hbqhNNKxVP8uKSMO+aUlBwtdWzTCd62E0YOB+HHW9N0hMihrWw==",
+ "engines": {
+ "bun": ">=0.7.0",
+ "deno": ">=1.0.0",
+ "node": ">=18.0.0"
+ }
+ },
+ "node_modules/alien-signals": {
+ "version": "1.0.13",
+ "resolved": "https://registry.npmmirror.com/alien-signals/-/alien-signals-1.0.13.tgz",
+ "integrity": "sha512-OGj9yyTnJEttvzhTUWuscOvtqxq5vrhF7vL9oS0xJ2mK0ItPYP1/y+vCFebfxoEyAz0++1AIwJ5CMr+Fk3nDmg==",
+ "dev": true
+ },
+ "node_modules/ant-design-vue": {
+ "version": "4.2.6",
+ "resolved": "https://registry.npmmirror.com/ant-design-vue/-/ant-design-vue-4.2.6.tgz",
+ "integrity": "sha512-t7eX13Yj3i9+i5g9lqFyYneoIb3OzTvQjq9Tts1i+eiOd3Eva/6GagxBSXM1fOCjqemIu0FYVE1ByZ/38epR3Q==",
+ "dependencies": {
+ "@ant-design/colors": "^6.0.0",
+ "@ant-design/icons-vue": "^7.0.0",
+ "@babel/runtime": "^7.10.5",
+ "@ctrl/tinycolor": "^3.5.0",
+ "@emotion/hash": "^0.9.0",
+ "@emotion/unitless": "^0.8.0",
+ "@simonwep/pickr": "~1.8.0",
+ "array-tree-filter": "^2.1.0",
+ "async-validator": "^4.0.0",
+ "csstype": "^3.1.1",
+ "dayjs": "^1.10.5",
+ "dom-align": "^1.12.1",
+ "dom-scroll-into-view": "^2.0.0",
+ "lodash": "^4.17.21",
+ "lodash-es": "^4.17.15",
+ "resize-observer-polyfill": "^1.5.1",
+ "scroll-into-view-if-needed": "^2.2.25",
+ "shallow-equal": "^1.0.0",
+ "stylis": "^4.1.3",
+ "throttle-debounce": "^5.0.0",
+ "vue-types": "^3.0.0",
+ "warning": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=12.22.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/ant-design-vue"
+ },
+ "peerDependencies": {
+ "vue": ">=3.2.0"
+ }
+ },
+ "node_modules/anymatch": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz",
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
+ "dev": true,
+ "dependencies": {
+ "normalize-path": "^3.0.0",
+ "picomatch": "^2.0.4"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/anymatch/node_modules/picomatch": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.2.tgz",
+ "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
+ "dev": true,
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/array-tree-filter": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmmirror.com/array-tree-filter/-/array-tree-filter-2.1.0.tgz",
+ "integrity": "sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw=="
+ },
+ "node_modules/async-validator": {
+ "version": "4.2.5",
+ "resolved": "https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz",
+ "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg=="
+ },
+ "node_modules/autolinker": {
+ "version": "4.1.5",
+ "resolved": "https://registry.npmmirror.com/autolinker/-/autolinker-4.1.5.tgz",
+ "integrity": "sha512-vEfYZPmvVOIuE567XBVCsx8SBgOYtjB2+S1iAaJ+HgH+DNjAcrHem2hmAeC9yaNGWayicv4yR+9UaJlkF3pvtw==",
+ "dependencies": {
+ "tslib": "^2.8.1"
+ },
+ "engines": {
+ "pnpm": ">=10.10.0"
+ }
+ },
+ "node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "dev": true
+ },
+ "node_modules/binary-extensions": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.3.0.tgz",
+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/birpc": {
+ "version": "2.9.0",
+ "resolved": "https://registry.npmmirror.com/birpc/-/birpc-2.9.0.tgz",
+ "integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==",
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/bitmap-sdf": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmmirror.com/bitmap-sdf/-/bitmap-sdf-1.0.4.tgz",
+ "integrity": "sha512-1G3U4n5JE6RAiALMxu0p1XmeZkTeCwGKykzsLTCqVzfSDaN6S7fKnkIkfejogz+iwqBWc0UYAIKnKHNN7pSfDg=="
+ },
+ "node_modules/brace-expansion": {
+ "version": "2.1.4",
+ "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.1.4.tgz",
+ "integrity": "sha512-hGfVzPxthbf3+2yjg/RBs60cB0FhqBS/zvdV/4wn4/BmN0bNMMHPc4V/BbFieqf1TKAGGAHnY4eSjajCl0f2Xg==",
+ "dev": true,
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/braces": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.3.tgz",
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
+ "dev": true,
+ "dependencies": {
+ "fill-range": "^7.1.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/cesium": {
+ "version": "1.126.0",
+ "resolved": "https://registry.npmmirror.com/cesium/-/cesium-1.126.0.tgz",
+ "integrity": "sha512-29Cy6eq9NzTbQUaOXQEnVJyYoHCeizrBTbbB76OClI5+FNq9saUUx+iQXg/J6r8vX+KWt6oD/lVpZ0QMcvAgog==",
+ "workspaces": [
+ "packages/engine",
+ "packages/widgets"
+ ],
+ "dependencies": {
+ "@cesium/engine": "^14.0.0",
+ "@cesium/widgets": "^10.2.0"
+ },
+ "engines": {
+ "node": ">=18.18.0"
+ }
+ },
+ "node_modules/chokidar": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-3.6.0.tgz",
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
+ "dev": true,
+ "dependencies": {
+ "anymatch": "~3.1.2",
+ "braces": "~3.0.2",
+ "glob-parent": "~5.1.2",
+ "is-binary-path": "~2.1.0",
+ "is-glob": "~4.0.1",
+ "normalize-path": "~3.0.0",
+ "readdirp": "~3.6.0"
+ },
+ "engines": {
+ "node": ">= 8.10.0"
+ },
+ "funding": {
+ "url": "https://paulmillr.com/funding/"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.2"
+ }
+ },
+ "node_modules/commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
+ },
+ "node_modules/compute-scroll-into-view": {
+ "version": "1.0.20",
+ "resolved": "https://registry.npmmirror.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.20.tgz",
+ "integrity": "sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg=="
+ },
+ "node_modules/copy-anything": {
+ "version": "4.0.5",
+ "resolved": "https://registry.npmmirror.com/copy-anything/-/copy-anything-4.0.5.tgz",
+ "integrity": "sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==",
+ "dependencies": {
+ "is-what": "^5.2.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/mesqueeb"
+ }
+ },
+ "node_modules/core-js": {
+ "version": "3.50.0",
+ "resolved": "https://registry.npmmirror.com/core-js/-/core-js-3.50.0.tgz",
+ "integrity": "sha512-BRWgOLKkFeCgRudR6zrs8p9XJZcE14grzKMMssoYrk6krtuEZ7MTKPIY5RzOnqsEKIR9kst7wNzphttraT+Yqw==",
+ "hasInstallScript": true,
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/core-js"
+ }
+ },
+ "node_modules/csstype": {
+ "version": "3.2.3",
+ "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.2.3.tgz",
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ=="
+ },
+ "node_modules/dayjs": {
+ "version": "1.11.21",
+ "resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.21.tgz",
+ "integrity": "sha512-98IT+HOahAisibz/yjKbzuOBwYcjJ7BCLPzARyHiyEBmRz4fatF+KPJszEHXsGYjUG234aH/cOjW1wwTbKUZlA=="
+ },
+ "node_modules/de-indent": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmmirror.com/de-indent/-/de-indent-1.0.2.tgz",
+ "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==",
+ "dev": true
+ },
+ "node_modules/dom-align": {
+ "version": "1.12.4",
+ "resolved": "https://registry.npmmirror.com/dom-align/-/dom-align-1.12.4.tgz",
+ "integrity": "sha512-R8LUSEay/68zE5c8/3BDxiTEvgb4xZTF0RKmAHfiEVN3klfIpXfi2/QCoiWPccVQ0J/ZGdz9OjzL4uJEP/MRAw=="
+ },
+ "node_modules/dom-scroll-into-view": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmmirror.com/dom-scroll-into-view/-/dom-scroll-into-view-2.0.1.tgz",
+ "integrity": "sha512-bvVTQe1lfaUr1oFzZX80ce9KLDlZ3iU+XGNE/bz9HnGdklTieqsbmsLHe+rT2XWqopvL0PckkYqN7ksmm5pe3w=="
+ },
+ "node_modules/dompurify": {
+ "version": "3.4.13",
+ "resolved": "https://registry.npmmirror.com/dompurify/-/dompurify-3.4.13.tgz",
+ "integrity": "sha512-2vmYIoqjze2d+kakP8S/nS5shfsl587kzwEjcGlTdiksUVgFHnFCsLYDVj/JNqJVOQZGSYBTmuycv0PodwmnMQ==",
+ "optionalDependencies": {
+ "@types/trusted-types": "^2.0.7"
+ }
+ },
+ "node_modules/draco3d": {
+ "version": "1.5.7",
+ "resolved": "https://registry.npmmirror.com/draco3d/-/draco3d-1.5.7.tgz",
+ "integrity": "sha512-m6WCKt/erDXcw+70IJXnG7M3awwQPAsZvJGX5zY7beBqpELw6RDGkYVU0W43AFxye4pDZ5i2Lbyc/NNGqwjUVQ=="
+ },
+ "node_modules/earcut": {
+ "version": "3.2.3",
+ "resolved": "https://registry.npmmirror.com/earcut/-/earcut-3.2.3.tgz",
+ "integrity": "sha512-vnS4AVwp1KHAF13i1vp1/2D5evWy3k5u/iW/B81QVsUZtV8cv2tU0b2VNFlqvh4kYwrFMDdjPCfAmfyJW9y14Q=="
+ },
+ "node_modules/entities": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmmirror.com/entities/-/entities-7.0.1.tgz",
+ "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
+ "engines": {
+ "node": ">=0.12"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
+ }
+ },
+ "node_modules/esbuild": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.25.12.tgz",
+ "integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==",
+ "dev": true,
+ "hasInstallScript": true,
+ "bin": {
+ "esbuild": "bin/esbuild"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "optionalDependencies": {
+ "@esbuild/aix-ppc64": "0.25.12",
+ "@esbuild/android-arm": "0.25.12",
+ "@esbuild/android-arm64": "0.25.12",
+ "@esbuild/android-x64": "0.25.12",
+ "@esbuild/darwin-arm64": "0.25.12",
+ "@esbuild/darwin-x64": "0.25.12",
+ "@esbuild/freebsd-arm64": "0.25.12",
+ "@esbuild/freebsd-x64": "0.25.12",
+ "@esbuild/linux-arm": "0.25.12",
+ "@esbuild/linux-arm64": "0.25.12",
+ "@esbuild/linux-ia32": "0.25.12",
+ "@esbuild/linux-loong64": "0.25.12",
+ "@esbuild/linux-mips64el": "0.25.12",
+ "@esbuild/linux-ppc64": "0.25.12",
+ "@esbuild/linux-riscv64": "0.25.12",
+ "@esbuild/linux-s390x": "0.25.12",
+ "@esbuild/linux-x64": "0.25.12",
+ "@esbuild/netbsd-arm64": "0.25.12",
+ "@esbuild/netbsd-x64": "0.25.12",
+ "@esbuild/openbsd-arm64": "0.25.12",
+ "@esbuild/openbsd-x64": "0.25.12",
+ "@esbuild/openharmony-arm64": "0.25.12",
+ "@esbuild/sunos-x64": "0.25.12",
+ "@esbuild/win32-arm64": "0.25.12",
+ "@esbuild/win32-ia32": "0.25.12",
+ "@esbuild/win32-x64": "0.25.12"
+ }
+ },
+ "node_modules/estree-walker": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz",
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="
+ },
+ "node_modules/fast-glob": {
+ "version": "3.3.3",
+ "resolved": "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.3.tgz",
+ "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
+ "dev": true,
+ "dependencies": {
+ "@nodelib/fs.stat": "^2.0.2",
+ "@nodelib/fs.walk": "^1.2.3",
+ "glob-parent": "^5.1.2",
+ "merge2": "^1.3.0",
+ "micromatch": "^4.0.8"
+ },
+ "engines": {
+ "node": ">=8.6.0"
+ }
+ },
+ "node_modules/fastq": {
+ "version": "1.20.1",
+ "resolved": "https://registry.npmmirror.com/fastq/-/fastq-1.20.1.tgz",
+ "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==",
+ "dev": true,
+ "dependencies": {
+ "reusify": "^1.0.4"
+ }
+ },
+ "node_modules/fdir": {
+ "version": "6.5.0",
+ "resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.5.0.tgz",
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
+ "dev": true,
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "peerDependencies": {
+ "picomatch": "^3 || ^4"
+ },
+ "peerDependenciesMeta": {
+ "picomatch": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/fill-range": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.1.1.tgz",
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
+ "dev": true,
+ "dependencies": {
+ "to-regex-range": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/fs-extra": {
+ "version": "11.4.0",
+ "resolved": "https://registry.npmmirror.com/fs-extra/-/fs-extra-11.4.0.tgz",
+ "integrity": "sha512-EQsFzMUJkCKGr1ePqlYADkIUmHW1s3ZXr5Yqy6wbGrfUCphpl2maM/kyOIRA2HpP3AaFQTZXD4ldjek+nccddA==",
+ "dev": true,
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=14.14"
+ }
+ },
+ "node_modules/fsevents": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz",
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
+ "dev": true,
+ "hasInstallScript": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
+ }
+ },
+ "node_modules/glob-parent": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+ "dev": true,
+ "dependencies": {
+ "is-glob": "^4.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/graceful-fs": {
+ "version": "4.2.11",
+ "resolved": "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz",
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
+ "dev": true
+ },
+ "node_modules/grapheme-splitter": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmmirror.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz",
+ "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ=="
+ },
+ "node_modules/he": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmmirror.com/he/-/he-1.2.0.tgz",
+ "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
+ "dev": true,
+ "bin": {
+ "he": "bin/he"
+ }
+ },
+ "node_modules/hookable": {
+ "version": "5.5.3",
+ "resolved": "https://registry.npmmirror.com/hookable/-/hookable-5.5.3.tgz",
+ "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ=="
+ },
+ "node_modules/is-binary-path": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz",
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
+ "dev": true,
+ "dependencies": {
+ "binary-extensions": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-glob": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz",
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+ "dev": true,
+ "dependencies": {
+ "is-extglob": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.12.0"
+ }
+ },
+ "node_modules/is-plain-object": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmmirror.com/is-plain-object/-/is-plain-object-3.0.1.tgz",
+ "integrity": "sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-what": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmmirror.com/is-what/-/is-what-5.5.0.tgz",
+ "integrity": "sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/mesqueeb"
+ }
+ },
+ "node_modules/js-tokens": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz",
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
+ },
+ "node_modules/jsep": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmmirror.com/jsep/-/jsep-1.4.0.tgz",
+ "integrity": "sha512-B7qPcEVE3NVkmSJbaYxvv4cHkVW7DQsZz13pUMrfS8z8Q/BuShN+gcTXrUlPiGqM2/t/EEaI030bpxMqY8gMlw==",
+ "engines": {
+ "node": ">= 10.16.0"
+ }
+ },
+ "node_modules/jsonfile": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.2.1.tgz",
+ "integrity": "sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==",
+ "dev": true,
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/kdbush": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmmirror.com/kdbush/-/kdbush-4.1.0.tgz",
+ "integrity": "sha512-e9vurzrXJQrFX6ckpHP3bvj5l+9CnYzkxDNnNQ1h2QTqdWsUAJgXiKdGNcOa1EY85dU8KbQ+z/FdQdB7P+9yfQ=="
+ },
+ "node_modules/ktx-parse": {
+ "version": "0.7.1",
+ "resolved": "https://registry.npmmirror.com/ktx-parse/-/ktx-parse-0.7.1.tgz",
+ "integrity": "sha512-FeA3g56ksdFNwjXJJsc1CCc7co+AJYDp6ipIp878zZ2bU8kWROatLYf39TQEd4/XRSUvBXovQ8gaVKWPXsCLEQ=="
+ },
+ "node_modules/lerc": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmmirror.com/lerc/-/lerc-2.0.0.tgz",
+ "integrity": "sha512-7qo1Mq8ZNmaR4USHHm615nEW2lPeeWJ3bTyoqFbd35DLx0LUH7C6ptt5FDCTAlbIzs3+WKrk5SkJvw8AFDE2hg=="
+ },
+ "node_modules/lodash": {
+ "version": "4.18.1",
+ "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.18.1.tgz",
+ "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q=="
+ },
+ "node_modules/lodash-es": {
+ "version": "4.18.1",
+ "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.18.1.tgz",
+ "integrity": "sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A=="
+ },
+ "node_modules/long": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmmirror.com/long/-/long-5.3.2.tgz",
+ "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA=="
+ },
+ "node_modules/loose-envify": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmmirror.com/loose-envify/-/loose-envify-1.4.0.tgz",
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
+ "dependencies": {
+ "js-tokens": "^3.0.0 || ^4.0.0"
+ },
+ "bin": {
+ "loose-envify": "cli.js"
+ }
+ },
+ "node_modules/magic-string": {
+ "version": "0.30.21",
+ "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.21.tgz",
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.5.5"
+ }
+ },
+ "node_modules/merge2": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz",
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/mersenne-twister": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmmirror.com/mersenne-twister/-/mersenne-twister-1.1.0.tgz",
+ "integrity": "sha512-mUYWsMKNrm4lfygPkL3OfGzOPTR2DBlTkBNHM//F6hGp8cLThY897crAlk3/Jo17LEOOjQUrNAx6DvgO77QJkA=="
+ },
+ "node_modules/meshoptimizer": {
+ "version": "0.22.0",
+ "resolved": "https://registry.npmmirror.com/meshoptimizer/-/meshoptimizer-0.22.0.tgz",
+ "integrity": "sha512-IebiK79sqIy+E4EgOr+CAw+Ke8hAspXKzBd0JdgEmPHiAwmvEj2S4h1rfvo+o/BnfEYd/jAOg5IeeIjzlzSnDg=="
+ },
+ "node_modules/micromatch": {
+ "version": "4.0.8",
+ "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.8.tgz",
+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
+ "dev": true,
+ "dependencies": {
+ "braces": "^3.0.3",
+ "picomatch": "^2.3.1"
+ },
+ "engines": {
+ "node": ">=8.6"
+ }
+ },
+ "node_modules/micromatch/node_modules/picomatch": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.2.tgz",
+ "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
+ "dev": true,
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/minimatch": {
+ "version": "9.0.9",
+ "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-9.0.9.tgz",
+ "integrity": "sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==",
+ "dev": true,
+ "dependencies": {
+ "brace-expansion": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/mitt": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmmirror.com/mitt/-/mitt-3.0.1.tgz",
+ "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw=="
+ },
+ "node_modules/muggle-string": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmmirror.com/muggle-string/-/muggle-string-0.4.1.tgz",
+ "integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==",
+ "dev": true
+ },
+ "node_modules/nanoid": {
+ "version": "3.3.18",
+ "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.18.tgz",
+ "integrity": "sha512-DTg4MJbGMWkfi6VZFdNt2/caMbQy4Ou+Op/hJQvGEWcnVfoA1QA+xzRKAzw9jD6+GVOOeYr/mIcuDSdug6F6+w==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "bin": {
+ "nanoid": "bin/nanoid.cjs"
+ },
+ "engines": {
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+ }
+ },
+ "node_modules/nanopop": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmmirror.com/nanopop/-/nanopop-2.4.2.tgz",
+ "integrity": "sha512-NzOgmMQ+elxxHeIha+OG/Pv3Oc3p4RU2aBhwWwAqDpXrdTbtRylbRLQztLy8dMMwfl6pclznBdfUhccEn9ZIzw=="
+ },
+ "node_modules/normalize-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz",
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/nosleep.js": {
+ "version": "0.12.0",
+ "resolved": "https://registry.npmmirror.com/nosleep.js/-/nosleep.js-0.12.0.tgz",
+ "integrity": "sha512-9d1HbpKLh3sdWlhXMhU6MMH+wQzKkrgfRkYV0EBdvt99YJfj0ilCJrWRDYG2130Tm4GXbEoTCx5b34JSaP+HhA=="
+ },
+ "node_modules/p-map": {
+ "version": "7.0.6",
+ "resolved": "https://registry.npmmirror.com/p-map/-/p-map-7.0.6.tgz",
+ "integrity": "sha512-I4Prw6ivkd6p8PiYR1tXASOAOBzIJwu0TB7fqaX0c/8c3QAehNYmX57EijyGGGBt3c/BIowGwV03RVBtXvHEVg==",
+ "dev": true,
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/pako": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmmirror.com/pako/-/pako-2.2.0.tgz",
+ "integrity": "sha512-zJq6RP/5q+TO2OpFV3FHzlPnFjmkb7Nc99a5SNjJE+uu/PkpChs+NIZSSzbBoD+6kjiISXjfYdwj1ZRQ81dz/w==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/puzrin"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/nodeca"
+ }
+ ]
+ },
+ "node_modules/path-browserify": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmmirror.com/path-browserify/-/path-browserify-1.0.1.tgz",
+ "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==",
+ "dev": true
+ },
+ "node_modules/perfect-debounce": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmmirror.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz",
+ "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA=="
+ },
+ "node_modules/picocolors": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz",
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="
+ },
+ "node_modules/picomatch": {
+ "version": "4.0.5",
+ "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.5.tgz",
+ "integrity": "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==",
+ "dev": true,
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/pinia": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmmirror.com/pinia/-/pinia-3.0.4.tgz",
+ "integrity": "sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==",
+ "dependencies": {
+ "@vue/devtools-api": "^7.7.7"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/posva"
+ },
+ "peerDependencies": {
+ "typescript": ">=4.5.0",
+ "vue": "^3.5.11"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/postcss": {
+ "version": "8.5.26",
+ "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.26.tgz",
+ "integrity": "sha512-u82N74LFzG8ca+dD8puPnplTXoGH4fTPpVGuIbt36G3qvNlkvfD0lEAZSxaly3KX8TS/L1A1gsCEmvKmBcVbkQ==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "dependencies": {
+ "nanoid": "^3.3.17",
+ "picocolors": "^1.1.1",
+ "source-map-js": "^1.2.1"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
+ "node_modules/protobufjs": {
+ "version": "7.6.5",
+ "resolved": "https://registry.npmmirror.com/protobufjs/-/protobufjs-7.6.5.tgz",
+ "integrity": "sha512-/FPD0nUc9jH6rfFjji9IBqOz4pcSE3CsT1m7Ep6Mdb0LxSUMj8hgl6GomOvZzpNpAqqGaXA0P3VSrZLFzIhQrw==",
+ "hasInstallScript": true,
+ "dependencies": {
+ "@protobufjs/aspromise": "^1.1.2",
+ "@protobufjs/base64": "^1.1.2",
+ "@protobufjs/codegen": "^2.0.5",
+ "@protobufjs/eventemitter": "^1.1.1",
+ "@protobufjs/fetch": "^1.1.1",
+ "@protobufjs/float": "^1.0.2",
+ "@protobufjs/path": "^1.1.2",
+ "@protobufjs/pool": "^1.1.0",
+ "@protobufjs/utf8": "^1.1.1",
+ "@types/node": ">=13.7.0",
+ "long": "^5.3.2"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ }
+ },
+ "node_modules/queue-microtask": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz",
+ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
+ },
+ "node_modules/quickselect": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmmirror.com/quickselect/-/quickselect-2.0.0.tgz",
+ "integrity": "sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw=="
+ },
+ "node_modules/rbush": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmmirror.com/rbush/-/rbush-3.0.1.tgz",
+ "integrity": "sha512-XRaVO0YecOpEuIvbhbpTrZgoiI6xBlz6hnlr6EHhd+0x9ase6EmeN+hdwwUaJvLcsFFQ8iWVF1GAK1yB0BWi0w==",
+ "dependencies": {
+ "quickselect": "^2.0.0"
+ }
+ },
+ "node_modules/readdirp": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz",
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
+ "dev": true,
+ "dependencies": {
+ "picomatch": "^2.2.1"
+ },
+ "engines": {
+ "node": ">=8.10.0"
+ }
+ },
+ "node_modules/readdirp/node_modules/picomatch": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.2.tgz",
+ "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
+ "dev": true,
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/resize-observer-polyfill": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmmirror.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz",
+ "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg=="
+ },
+ "node_modules/reusify": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmmirror.com/reusify/-/reusify-1.1.0.tgz",
+ "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
+ "dev": true,
+ "engines": {
+ "iojs": ">=1.0.0",
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/rfdc": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmmirror.com/rfdc/-/rfdc-1.4.1.tgz",
+ "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA=="
+ },
+ "node_modules/rollup": {
+ "version": "4.62.4",
+ "resolved": "https://registry.npmmirror.com/rollup/-/rollup-4.62.4.tgz",
+ "integrity": "sha512-RXOqwaPsBGjMNMa4sQjDjHieHEZDFoj/Rdr46l2MU5DfEs16wHJPC2RPTPHWhNl+M3aI472LLqFkFKut4SblOg==",
+ "dev": true,
+ "dependencies": {
+ "@types/estree": "1.0.9"
+ },
+ "bin": {
+ "rollup": "dist/bin/rollup"
+ },
+ "engines": {
+ "node": ">=18.0.0",
+ "npm": ">=8.0.0"
+ },
+ "optionalDependencies": {
+ "@napi-rs/lzma-linux-x64-gnu": "1.5.1",
+ "@rollup/rollup-android-arm-eabi": "4.62.4",
+ "@rollup/rollup-android-arm64": "4.62.4",
+ "@rollup/rollup-darwin-arm64": "4.62.4",
+ "@rollup/rollup-darwin-x64": "4.62.4",
+ "@rollup/rollup-freebsd-arm64": "4.62.4",
+ "@rollup/rollup-freebsd-x64": "4.62.4",
+ "@rollup/rollup-linux-arm-gnueabihf": "4.62.4",
+ "@rollup/rollup-linux-arm-musleabihf": "4.62.4",
+ "@rollup/rollup-linux-arm64-gnu": "4.62.4",
+ "@rollup/rollup-linux-arm64-musl": "4.62.4",
+ "@rollup/rollup-linux-loong64-gnu": "4.62.4",
+ "@rollup/rollup-linux-loong64-musl": "4.62.4",
+ "@rollup/rollup-linux-ppc64-gnu": "4.62.4",
+ "@rollup/rollup-linux-ppc64-musl": "4.62.4",
+ "@rollup/rollup-linux-riscv64-gnu": "4.62.4",
+ "@rollup/rollup-linux-riscv64-musl": "4.62.4",
+ "@rollup/rollup-linux-s390x-gnu": "4.62.4",
+ "@rollup/rollup-linux-x64-gnu": "4.62.4",
+ "@rollup/rollup-linux-x64-musl": "4.62.4",
+ "@rollup/rollup-openbsd-x64": "4.62.4",
+ "@rollup/rollup-openharmony-arm64": "4.62.4",
+ "@rollup/rollup-win32-arm64-msvc": "4.62.4",
+ "@rollup/rollup-win32-ia32-msvc": "4.62.4",
+ "@rollup/rollup-win32-x64-gnu": "4.62.4",
+ "@rollup/rollup-win32-x64-msvc": "4.62.4",
+ "fsevents": "~2.3.2"
+ }
+ },
+ "node_modules/run-parallel": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz",
+ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "dependencies": {
+ "queue-microtask": "^1.2.2"
+ }
+ },
+ "node_modules/scroll-into-view-if-needed": {
+ "version": "2.2.31",
+ "resolved": "https://registry.npmmirror.com/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.31.tgz",
+ "integrity": "sha512-dGCXy99wZQivjmjIqihaBQNjryrz5rueJY7eHfTdyWEiR4ttYpsajb14rn9s5d4DY4EcY6+4+U/maARBXJedkA==",
+ "dependencies": {
+ "compute-scroll-into-view": "^1.0.20"
+ }
+ },
+ "node_modules/shallow-equal": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmmirror.com/shallow-equal/-/shallow-equal-1.2.1.tgz",
+ "integrity": "sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA=="
+ },
+ "node_modules/source-map-js": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz",
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/speakingurl": {
+ "version": "14.0.1",
+ "resolved": "https://registry.npmmirror.com/speakingurl/-/speakingurl-14.0.1.tgz",
+ "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/stylis": {
+ "version": "4.4.0",
+ "resolved": "https://registry.npmmirror.com/stylis/-/stylis-4.4.0.tgz",
+ "integrity": "sha512-5Z9ZpRzfuH6l/UAvCPAPUo3665Nk2wLaZU3x+TLHKVzIz33+sbJqbtrYoC3KD4/uVOr2Zp+L0LySezP9OHV9yA=="
+ },
+ "node_modules/superjson": {
+ "version": "2.2.6",
+ "resolved": "https://registry.npmmirror.com/superjson/-/superjson-2.2.6.tgz",
+ "integrity": "sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==",
+ "dependencies": {
+ "copy-anything": "^4"
+ },
+ "engines": {
+ "node": ">=16"
+ }
+ },
+ "node_modules/throttle-debounce": {
+ "version": "5.0.2",
+ "resolved": "https://registry.npmmirror.com/throttle-debounce/-/throttle-debounce-5.0.2.tgz",
+ "integrity": "sha512-B71/4oyj61iNH0KeCamLuE2rmKuTO5byTOSVwECM5FA7TiAiAW+UqTKZ9ERueC4qvgSttUhdmq1mXC3kJqGX7A==",
+ "engines": {
+ "node": ">=12.22"
+ }
+ },
+ "node_modules/tinyglobby": {
+ "version": "0.2.17",
+ "resolved": "https://registry.npmmirror.com/tinyglobby/-/tinyglobby-0.2.17.tgz",
+ "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
+ "dev": true,
+ "dependencies": {
+ "fdir": "^6.5.0",
+ "picomatch": "^4.0.4"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/SuperchupuDev"
+ }
+ },
+ "node_modules/to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "dev": true,
+ "dependencies": {
+ "is-number": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=8.0"
+ }
+ },
+ "node_modules/topojson-client": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmmirror.com/topojson-client/-/topojson-client-3.1.0.tgz",
+ "integrity": "sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==",
+ "dependencies": {
+ "commander": "2"
+ },
+ "bin": {
+ "topo2geo": "bin/topo2geo",
+ "topomerge": "bin/topomerge",
+ "topoquantize": "bin/topoquantize"
+ }
+ },
+ "node_modules/tslib": {
+ "version": "2.8.1",
+ "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.8.1.tgz",
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
+ },
+ "node_modules/typescript": {
+ "version": "5.9.3",
+ "resolved": "https://registry.npmmirror.com/typescript/-/typescript-5.9.3.tgz",
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
+ "devOptional": true,
+ "bin": {
+ "tsc": "bin/tsc",
+ "tsserver": "bin/tsserver"
+ },
+ "engines": {
+ "node": ">=14.17"
+ }
+ },
+ "node_modules/undici-types": {
+ "version": "8.3.0",
+ "resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-8.3.0.tgz",
+ "integrity": "sha512-j375ScV60dom+YkPFIfTLcOiPxkN/buHz5GobjLhixFuANaNs3C9l4GmrWqejgXWJ7BbJcFYpTEUkS1Ge8bpZQ=="
+ },
+ "node_modules/universalify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
+ "dev": true,
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/urijs": {
+ "version": "1.19.11",
+ "resolved": "https://registry.npmmirror.com/urijs/-/urijs-1.19.11.tgz",
+ "integrity": "sha512-HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ=="
+ },
+ "node_modules/vite": {
+ "version": "6.4.3",
+ "resolved": "https://registry.npmmirror.com/vite/-/vite-6.4.3.tgz",
+ "integrity": "sha512-NTKlcQjlAK7MlQoyb6LgaqHc8sso/pVyUJYWMws3jg21uTJw/LddqIFPcPqP6PzpgbIcZyKI85sFE4HBrQDA8A==",
+ "dev": true,
+ "dependencies": {
+ "esbuild": "^0.25.0",
+ "fdir": "^6.4.4",
+ "picomatch": "^4.0.2",
+ "postcss": "^8.5.3",
+ "rollup": "^4.34.9",
+ "tinyglobby": "^0.2.13"
+ },
+ "bin": {
+ "vite": "bin/vite.js"
+ },
+ "engines": {
+ "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/vitejs/vite?sponsor=1"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.3"
+ },
+ "peerDependencies": {
+ "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
+ "jiti": ">=1.21.0",
+ "less": "*",
+ "lightningcss": "^1.21.0",
+ "sass": "*",
+ "sass-embedded": "*",
+ "stylus": "*",
+ "sugarss": "*",
+ "terser": "^5.16.0",
+ "tsx": "^4.8.1",
+ "yaml": "^2.4.2"
+ },
+ "peerDependenciesMeta": {
+ "@types/node": {
+ "optional": true
+ },
+ "jiti": {
+ "optional": true
+ },
+ "less": {
+ "optional": true
+ },
+ "lightningcss": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ },
+ "sass-embedded": {
+ "optional": true
+ },
+ "stylus": {
+ "optional": true
+ },
+ "sugarss": {
+ "optional": true
+ },
+ "terser": {
+ "optional": true
+ },
+ "tsx": {
+ "optional": true
+ },
+ "yaml": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/vite-plugin-static-copy": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmmirror.com/vite-plugin-static-copy/-/vite-plugin-static-copy-2.3.2.tgz",
+ "integrity": "sha512-iwrrf+JupY4b9stBttRWzGHzZbeMjAHBhkrn67MNACXJVjEMRpCI10Q3AkxdBkl45IHaTfw/CNVevzQhP7yTwg==",
+ "dev": true,
+ "dependencies": {
+ "chokidar": "^3.5.3",
+ "fast-glob": "^3.2.11",
+ "fs-extra": "^11.1.0",
+ "p-map": "^7.0.3",
+ "picocolors": "^1.0.0"
+ },
+ "engines": {
+ "node": "^18.0.0 || >=20.0.0"
+ },
+ "peerDependencies": {
+ "vite": "^5.0.0 || ^6.0.0"
+ }
+ },
+ "node_modules/vscode-uri": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmmirror.com/vscode-uri/-/vscode-uri-3.1.0.tgz",
+ "integrity": "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==",
+ "dev": true
+ },
+ "node_modules/vue": {
+ "version": "3.5.41",
+ "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.41.tgz",
+ "integrity": "sha512-2laE0p+aK+/AOPG/XL/WepOs/GlK755LJ1XECi9kDUrz1FKNw8rb2Xzlw9JS1rqEV55nb0ttsKxVlTCcd+R5cg==",
+ "dependencies": {
+ "@vue/compiler-dom": "3.5.41",
+ "@vue/compiler-sfc": "3.5.41",
+ "@vue/runtime-dom": "3.5.41",
+ "@vue/server-renderer": "3.5.41",
+ "@vue/shared": "3.5.41"
+ },
+ "peerDependencies": {
+ "typescript": "*"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/vue-router": {
+ "version": "4.6.4",
+ "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.6.4.tgz",
+ "integrity": "sha512-Hz9q5sa33Yhduglwz6g9skT8OBPii+4bFn88w6J+J4MfEo4KRRpmiNG/hHHkdbRFlLBOqxN8y8gf2Fb0MTUgVg==",
+ "dependencies": {
+ "@vue/devtools-api": "^6.6.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/posva"
+ },
+ "peerDependencies": {
+ "vue": "^3.5.0"
+ }
+ },
+ "node_modules/vue-router/node_modules/@vue/devtools-api": {
+ "version": "6.6.4",
+ "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.6.4.tgz",
+ "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g=="
+ },
+ "node_modules/vue-tsc": {
+ "version": "2.2.12",
+ "resolved": "https://registry.npmmirror.com/vue-tsc/-/vue-tsc-2.2.12.tgz",
+ "integrity": "sha512-P7OP77b2h/Pmk+lZdJ0YWs+5tJ6J2+uOQPo7tlBnY44QqQSPYvS0qVT4wqDJgwrZaLe47etJLLQRFia71GYITw==",
+ "dev": true,
+ "dependencies": {
+ "@volar/typescript": "2.4.15",
+ "@vue/language-core": "2.2.12"
+ },
+ "bin": {
+ "vue-tsc": "bin/vue-tsc.js"
+ },
+ "peerDependencies": {
+ "typescript": ">=5.0.0"
+ }
+ },
+ "node_modules/vue-types": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmmirror.com/vue-types/-/vue-types-3.0.2.tgz",
+ "integrity": "sha512-IwUC0Aq2zwaXqy74h4WCvFCUtoV0iSWr0snWnE9TnU18S66GAQyqQbRf2qfJtUuiFsBf6qp0MEwdonlwznlcrw==",
+ "dependencies": {
+ "is-plain-object": "3.0.1"
+ },
+ "engines": {
+ "node": ">=10.15.0"
+ },
+ "peerDependencies": {
+ "vue": "^3.0.0"
+ }
+ },
+ "node_modules/warning": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmmirror.com/warning/-/warning-4.0.3.tgz",
+ "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==",
+ "dependencies": {
+ "loose-envify": "^1.0.0"
+ }
+ }
+ }
+}
diff --git a/apps/workbench-console/package.json b/apps/workbench-console/package.json
new file mode 100644
index 0000000..efdebd7
--- /dev/null
+++ b/apps/workbench-console/package.json
@@ -0,0 +1,26 @@
+{
+ "name": "geoai-workbench-console",
+ "private": true,
+ "version": "0.1.0",
+ "type": "module",
+ "scripts": {
+ "dev": "vite",
+ "build": "vue-tsc -b && vite build",
+ "preview": "vite preview"
+ },
+ "dependencies": {
+ "@ant-design/icons-vue": "^7.0.1",
+ "ant-design-vue": "^4.2.6",
+ "cesium": "1.126.0",
+ "pinia": "^3.0.1",
+ "vue": "^3.5.13",
+ "vue-router": "^4.5.0"
+ },
+ "devDependencies": {
+ "@vitejs/plugin-vue": "^5.2.1",
+ "typescript": "^5.7.2",
+ "vite": "^6.0.5",
+ "vite-plugin-static-copy": "^2.3.0",
+ "vue-tsc": "^2.2.0"
+ }
+}
diff --git a/apps/workbench-console/src/App.vue b/apps/workbench-console/src/App.vue
new file mode 100644
index 0000000..8f7402b
--- /dev/null
+++ b/apps/workbench-console/src/App.vue
@@ -0,0 +1,60 @@
+<script setup lang="ts">
+import { computed } from "vue";
+import { useRoute, useRouter } from "vue-router";
+import {
+ AppstoreOutlined,
+ CheckCircleFilled,
+ CompassOutlined,
+ ExperimentOutlined
+} from "@ant-design/icons-vue";
+
+import { capabilities, verifiedCapabilities } from "@/data/capabilities";
+
+const route = useRoute();
+const router = useRouter();
+const activeKey = computed(() => route.name === "overview" ? "overview" : String(route.params.id));
+const plannedCapabilities = computed(() => capabilities.filter((item) => item.status !== "verified"));
+
+function navigate(key: string) {
+ if (key === "overview") router.push({ name: "overview" });
+ else router.push({ name: "capability", params: { id: key } });
+}
+
+function handleMenuClick(info: { key: string | number }) {
+ navigate(String(info.key));
+}
+</script>
+
+<template>
+ <a-layout class="application-frame">
+ <a-layout-sider class="application-sider" :width="252" breakpoint="lg" collapsed-width="0">
+ <div class="brand" @click="navigate('overview')">
+ <span class="brand-mark">GW</span>
+ <span><strong>GeoAI Workbench</strong><small>本地实验控制台</small></span>
+ </div>
+
+ <a-menu class="navigation-menu" theme="dark" mode="inline" :selected-keys="[activeKey]" @click="handleMenuClick">
+ <a-menu-item key="overview"><AppstoreOutlined /><span>实验总览</span></a-menu-item>
+ <a-menu-divider />
+ <a-menu-item-group key="verified" title="已验证能力">
+ <a-menu-item v-for="capability in verifiedCapabilities" :key="capability.id">
+ <ExperimentOutlined /><span>{{ capability.title }}</span>
+ </a-menu-item>
+ </a-menu-item-group>
+ <a-menu-divider />
+ <a-menu-item-group key="planned" title="能力目录">
+ <a-menu-item v-for="capability in plannedCapabilities" :key="capability.id">
+ <CompassOutlined /><span>{{ capability.title }}</span>
+ </a-menu-item>
+ </a-menu-item-group>
+ </a-menu>
+
+ <div class="sider-status">
+ <CheckCircleFilled />
+ <div><strong>仅本机读取</strong><small>无产品连接或外部服务</small></div>
+ </div>
+ </a-layout-sider>
+
+ <a-layout class="content-layout"><a-layout-content><router-view /></a-layout-content></a-layout>
+ </a-layout>
+</template>
diff --git a/apps/workbench-console/src/api/artifacts.ts b/apps/workbench-console/src/api/artifacts.ts
new file mode 100644
index 0000000..47de970
--- /dev/null
+++ b/apps/workbench-console/src/api/artifacts.ts
@@ -0,0 +1,101 @@
+export interface Detection {
+ class_id: number;
+ class_name: string;
+ confidence: number;
+ bbox_xyxy: number[];
+}
+
+export interface DetectionImage {
+ file: string;
+ annotated_file: string;
+ width: number;
+ height: number;
+ detections: Detection[];
+}
+
+export interface DetectionRun {
+ detection_count: number;
+ processed_images: number;
+ elapsed_seconds: number;
+ device: string;
+ model: string;
+ confidence: number;
+ input_dir: string;
+ notes: string[];
+}
+
+export interface TrajectoryEvent {
+ event_id: string;
+ event_type: string;
+ track_ids: string[];
+ start_time: string;
+ end_time: string;
+ duration_seconds: number;
+}
+
+export interface TrajectoryRun {
+ case_count: number;
+ track_count: number;
+ event_count: number;
+ dropped_duplicate_observations: number;
+ elapsed_seconds: number;
+ device: string;
+ input: string;
+ thresholds_by_case: Record<string, Record<string, number>>;
+}
+
+export interface TrajectorySummary {
+ track_id: string;
+ entity_type: string;
+ point_count: string;
+ distance_m: string;
+ average_speed_mps: string;
+ behavior_labels: string;
+}
+
+export const artifactUrl = (path: string) => `/${path.replace(/\\/g, "/").split("/").map(encodeURIComponent).join("/")}`;
+
+async function getJson<T>(path: string): Promise<T> {
+ const response = await fetch(artifactUrl(path), { cache: "no-store" });
+ if (!response.ok) throw new Error(`无法读取 ${path} (${response.status})`);
+ return response.json() as Promise<T>;
+}
+
+async function getText(path: string): Promise<string> {
+ const response = await fetch(artifactUrl(path), { cache: "no-store" });
+ if (!response.ok) throw new Error(`无法读取 ${path} (${response.status})`);
+ return response.text();
+}
+
+function parseCsv(text: string): TrajectorySummary[] {
+ const lines = text.trim().split(/\r?\n/);
+ const headers = lines.shift()?.replace(/^\uFEFF/, "").split(",") ?? [];
+ return lines.filter(Boolean).map((line) => {
+ const values = line.split(",");
+ return Object.fromEntries(headers.map((header, index) => [header, values[index] ?? ""])) as unknown as TrajectorySummary;
+ });
+}
+
+export async function loadDetectionArtifacts() {
+ const [run, payload] = await Promise.all([
+ getJson<DetectionRun>("shared/outputs/01-object-detection/run_metadata.json"),
+ getJson<{ images: DetectionImage[] }>("shared/outputs/01-object-detection/detections.json")
+ ]);
+ return { run, images: payload.images };
+}
+
+export async function loadTrajectoryArtifacts() {
+ const [run, difficultEvents, difficultSummary, normalSummary] = await Promise.all([
+ getJson<TrajectoryRun>("shared/outputs/15-trajectory-analysis/run_metadata.json"),
+ getJson<{ events: TrajectoryEvent[] }>("shared/outputs/15-trajectory-analysis/difficult/events.json"),
+ getText("shared/outputs/15-trajectory-analysis/difficult/trajectory_summary.csv"),
+ getText("shared/outputs/15-trajectory-analysis/normal/trajectory_summary.csv")
+ ]);
+ return {
+ run,
+ cases: {
+ difficult: { events: difficultEvents.events, summary: parseCsv(difficultSummary) },
+ normal: { events: [], summary: parseCsv(normalSummary) }
+ }
+ };
+}
diff --git a/apps/workbench-console/src/components/ArtifactState.vue b/apps/workbench-console/src/components/ArtifactState.vue
new file mode 100644
index 0000000..7b9eaa0
--- /dev/null
+++ b/apps/workbench-console/src/components/ArtifactState.vue
@@ -0,0 +1,10 @@
+<script setup lang="ts">
+import { LoadingOutlined } from "@ant-design/icons-vue";
+
+defineProps<{ loading: boolean; error: string | null }>();
+</script>
+
+<template>
+ <a-alert v-if="error" type="error" show-icon :message="error" description="请确认只读结果服务已在 127.0.0.1:6173 运行,且该能力已有输出文件。" />
+ <div v-else-if="loading" class="loading-block"><LoadingOutlined spin /><span>正在读取本地实验工件...</span></div>
+</template>
diff --git a/apps/workbench-console/src/components/ObjectDetectionPanel.vue b/apps/workbench-console/src/components/ObjectDetectionPanel.vue
new file mode 100644
index 0000000..6959579
--- /dev/null
+++ b/apps/workbench-console/src/components/ObjectDetectionPanel.vue
@@ -0,0 +1,37 @@
+<script setup lang="ts">
+import { computed, onMounted, ref } from "vue";
+import { FileImageOutlined, InfoCircleOutlined } from "@ant-design/icons-vue";
+
+import { artifactUrl } from "@/api/artifacts";
+import ArtifactState from "@/components/ArtifactState.vue";
+import { useArtifactStore } from "@/stores/artifacts";
+
+const store = useArtifactStore();
+const mode = ref<"annotated" | "original">("annotated");
+const selectedName = ref("");
+const selectedImage = computed(() => store.detectionImages.find((item) => item.file === selectedName.value) ?? store.detectionImages[0]);
+const previewSource = computed(() => {
+ if (!selectedImage.value) return "";
+ const path = mode.value === "annotated"
+ ? `shared/outputs/01-object-detection/${selectedImage.value.annotated_file}`
+ : `shared/data/raw/01-object-detection/${selectedImage.value.file}`;
+ return artifactUrl(path);
+});
+
+onMounted(async () => {
+ await store.loadDetection();
+ const mostDetections = [...store.detectionImages].sort((left, right) => right.detections.length - left.detections.length)[0];
+ selectedName.value = mostDetections?.file ?? "";
+});
+</script>
+
+<template>
+ <ArtifactState :loading="store.loading" :error="store.error" />
+ <template v-if="store.detectionRun && selectedImage">
+ <a-row :gutter="[18, 18]">
+ <a-col :xs="24" :xl="17"><section class="surface-section"><div class="section-toolbar"><a-select v-model:value="selectedName" :options="store.detectionImages.map((item) => ({ value: item.file, label: `${item.file} · ${item.detections.length} 个候选` }))" /><a-segmented v-model:value="mode" :options="[{ label: '标注结果', value: 'annotated' }, { label: '原始影像', value: 'original' }]" /></div><a-image class="detection-image" :src="previewSource" :alt="`${selectedImage.file} 预览`" /><p class="image-caption">{{ selectedImage.width }} x {{ selectedImage.height }} 像素 · {{ selectedImage.detections.length }} 个候选</p></section></a-col>
+ <a-col :xs="24" :xl="7"><section class="surface-section"><h2>本次运行</h2><a-descriptions size="small" :column="1"><a-descriptions-item label="处理影像">{{ store.detectionRun.processed_images }} 张</a-descriptions-item><a-descriptions-item label="检测候选">{{ store.detectionRun.detection_count }} 个</a-descriptions-item><a-descriptions-item label="耗时">{{ store.detectionRun.elapsed_seconds }} 秒</a-descriptions-item><a-descriptions-item label="设备">{{ store.detectionRun.device }}</a-descriptions-item><a-descriptions-item label="模型">{{ store.detectionRun.model }}</a-descriptions-item><a-descriptions-item label="阈值">{{ store.detectionRun.confidence }}</a-descriptions-item></a-descriptions><a-divider /><a-space direction="vertical"><a-button type="link" :href="artifactUrl('shared/outputs/01-object-detection/detections.json')" target="_blank"><FileImageOutlined />检测 JSON</a-button><a-button type="link" :href="artifactUrl('shared/outputs/01-object-detection/run_metadata.json')" target="_blank"><InfoCircleOutlined />运行元数据</a-button></a-space></section></a-col>
+ </a-row>
+ <section class="surface-section"><div class="section-heading"><div><h2>当前影像检测明细</h2><p>边界框是 JPEG 像素坐标,不含可用地理坐标。</p></div></div><a-table :data-source="selectedImage.detections" :pagination="false" row-key="bbox_xyxy" size="small" :scroll="{ x: 680 }"><a-table-column title="类别" data-index="class_name" key="class_name" /><a-table-column title="置信度" key="confidence" align="right"><template #default="{ record }">{{ (record.confidence * 100).toFixed(1) }}%</template></a-table-column><a-table-column title="像素框 x1, y1, x2, y2" key="bbox"><template #default="{ record }">{{ record.bbox_xyxy.map((value: number) => value.toFixed(1)).join(', ') }}</template></a-table-column><template #emptyText>该影像没有达到当前阈值的候选目标。</template></a-table></section>
+ </template>
+</template>
diff --git a/apps/workbench-console/src/components/PageHeader.vue b/apps/workbench-console/src/components/PageHeader.vue
new file mode 100644
index 0000000..040300c
--- /dev/null
+++ b/apps/workbench-console/src/components/PageHeader.vue
@@ -0,0 +1,10 @@
+<script setup lang="ts">
+defineProps<{ eyebrow: string; title: string; description: string }>();
+</script>
+
+<template>
+ <header class="page-header">
+ <div><p class="eyebrow">{{ eyebrow }}</p><h1>{{ title }}</h1><p class="page-description">{{ description }}</p></div>
+ <a-tag class="local-tag" color="green">本机只读</a-tag>
+ </header>
+</template>
diff --git a/apps/workbench-console/src/components/TrajectoryAnalysisPanel.vue b/apps/workbench-console/src/components/TrajectoryAnalysisPanel.vue
new file mode 100644
index 0000000..8544d8d
--- /dev/null
+++ b/apps/workbench-console/src/components/TrajectoryAnalysisPanel.vue
@@ -0,0 +1,28 @@
+<script setup lang="ts">
+import { computed, defineAsyncComponent, onMounted, ref } from "vue";
+import { DownloadOutlined } from "@ant-design/icons-vue";
+
+import { artifactUrl } from "@/api/artifacts";
+import ArtifactState from "@/components/ArtifactState.vue";
+import { useArtifactStore } from "@/stores/artifacts";
+
+const TrajectoryMap = defineAsyncComponent(() => import("@/components/TrajectoryMap.vue"));
+
+const store = useArtifactStore();
+const caseId = ref<"difficult" | "normal">("difficult");
+const currentCase = computed(() => store.trajectoryCases[caseId.value] ?? { events: [], summary: [] });
+const eventNames: Record<string, string> = { stop: "停留", route_deviation: "偏航", restricted_zone: "进入禁入区", gathering: "聚集" };
+const caseNote = computed(() => caseId.value === "difficult" ? "含停留、偏航、禁入区、聚集与重复观测。" : "连续移动且贴合参考路线,预期无事件。" );
+const difficultRules = computed(() => store.trajectoryRun?.thresholds_by_case.difficult ?? {});
+
+onMounted(() => store.loadTrajectory());
+</script>
+
+<template>
+ <ArtifactState :loading="store.loading" :error="store.error" />
+ <template v-if="store.trajectoryRun">
+ <a-row :gutter="[18, 18]"><a-col :xs="24" :xl="17"><section class="surface-section"><div class="section-toolbar"><a-segmented v-model:value="caseId" :options="[{ label: '困难样本', value: 'difficult' }, { label: '正常样本', value: 'normal' }]" /><span class="toolbar-note">{{ caseNote }}</span></div><TrajectoryMap :case-id="caseId" /></section></a-col><a-col :xs="24" :xl="7"><section class="surface-section"><h2>本次运行</h2><a-descriptions size="small" :column="1"><a-descriptions-item label="案例">{{ store.trajectoryRun.case_count }} 个</a-descriptions-item><a-descriptions-item label="轨迹">{{ store.trajectoryRun.track_count }} 条</a-descriptions-item><a-descriptions-item label="事件">{{ store.trajectoryRun.event_count }} 个</a-descriptions-item><a-descriptions-item label="重复清洗">{{ store.trajectoryRun.dropped_duplicate_observations }} 条</a-descriptions-item><a-descriptions-item label="耗时">{{ store.trajectoryRun.elapsed_seconds }} 秒</a-descriptions-item><a-descriptions-item label="设备">{{ store.trajectoryRun.device }}</a-descriptions-item></a-descriptions><a-divider /><h3>默认规则</h3><a-descriptions size="small" :column="1"><a-descriptions-item label="停留速度">{{ difficultRules.stop_speed_mps }} m/s</a-descriptions-item><a-descriptions-item label="偏航距离">{{ difficultRules.route_deviation_m }} m</a-descriptions-item><a-descriptions-item label="聚集距离">{{ difficultRules.gathering_radius_m }} m</a-descriptions-item></a-descriptions></section></a-col></a-row>
+ <a-row :gutter="[18, 18]" class="result-row"><a-col :xs="24" :xl="10"><section class="surface-section"><div class="section-heading"><div><h2>事件记录</h2><p>{{ currentCase.events.length }} 个规则事件</p></div></div><a-empty v-if="!currentCase.events.length" description="正常样本未触发规则事件" /><a-timeline v-else><a-timeline-item v-for="event in currentCase.events" :key="event.event_id" :color="event.event_type === 'gathering' ? 'green' : event.event_type === 'restricted_zone' ? 'gold' : event.event_type === 'route_deviation' ? 'purple' : 'red'"><strong>{{ eventNames[event.event_type] || event.event_type }}</strong><p>{{ event.track_ids.join('、') }}</p><small>{{ new Date(event.start_time).toLocaleString('zh-CN', { hour12: false }) }} · {{ event.duration_seconds }} 秒</small></a-timeline-item></a-timeline></section></a-col><a-col :xs="24" :xl="14"><section class="surface-section"><div class="section-heading"><div><h2>轨迹汇总</h2><p>聚类 ID 仅用于探索相似轨迹,不代表确认异常。</p></div></div><a-table :data-source="currentCase.summary" :pagination="false" row-key="track_id" size="small" :scroll="{ x: 760 }"><a-table-column title="轨迹" data-index="track_id" key="track_id" /><a-table-column title="对象" data-index="entity_type" key="entity_type" /><a-table-column title="点数" data-index="point_count" key="point_count" align="right" /><a-table-column title="距离" key="distance" align="right"><template #default="{ record }">{{ Number(record.distance_m).toFixed(1) }} m</template></a-table-column><a-table-column title="均速" key="speed" align="right"><template #default="{ record }">{{ Number(record.average_speed_mps).toFixed(2) }} m/s</template></a-table-column><a-table-column title="行为标签" data-index="behavior_labels" key="behavior_labels" /></a-table></section></a-col></a-row>
+ <section class="surface-section result-files"><a-space wrap><a-button v-for="file in ['events.json', 'events.geojson', 'trajectories.geojson', 'run_metadata.json']" :key="file" :href="artifactUrl(`shared/outputs/15-trajectory-analysis/${caseId}/${file}`)" target="_blank"><DownloadOutlined />{{ file }}</a-button></a-space></section>
+ </template>
+</template>
diff --git a/apps/workbench-console/src/components/TrajectoryMap.vue b/apps/workbench-console/src/components/TrajectoryMap.vue
new file mode 100644
index 0000000..33c8f78
--- /dev/null
+++ b/apps/workbench-console/src/components/TrajectoryMap.vue
@@ -0,0 +1,88 @@
+<script setup lang="ts">
+import { onBeforeUnmount, onMounted, ref, watch } from "vue";
+import {
+ Color,
+ ColorMaterialProperty,
+ ConstantProperty,
+ GeoJsonDataSource,
+ GridImageryProvider,
+ HeightReference,
+ PointGraphics,
+ Viewer
+} from "cesium";
+
+import { artifactUrl } from "@/api/artifacts";
+
+const props = defineProps<{ caseId: "difficult" | "normal" }>();
+const host = ref<HTMLElement>();
+const mapError = ref<string | null>(null);
+let viewer: Viewer | null = null;
+let trajectorySource: GeoJsonDataSource | null = null;
+let eventSource: GeoJsonDataSource | null = null;
+
+function eventColor(type: string) {
+ if (type === "route_deviation") return Color.fromCssColorString("#9a5da8");
+ if (type === "restricted_zone") return Color.fromCssColorString("#bc861a");
+ if (type === "gathering") return Color.fromCssColorString("#176b50");
+ return Color.fromCssColorString("#c6533f");
+}
+
+async function drawCase() {
+ if (!viewer) return;
+ try {
+ mapError.value = null;
+ if (trajectorySource) viewer.dataSources.remove(trajectorySource, true);
+ if (eventSource) viewer.dataSources.remove(eventSource, true);
+ const root = `shared/outputs/15-trajectory-analysis/${props.caseId}`;
+ trajectorySource = await GeoJsonDataSource.load(artifactUrl(`${root}/trajectories.geojson`), { clampToGround: false });
+ trajectorySource.entities.values.forEach((entity) => {
+ if (entity.polyline) {
+ entity.polyline.width = new ConstantProperty(4);
+ entity.polyline.material = new ColorMaterialProperty(Color.fromCssColorString("#176b50"));
+ }
+ });
+ eventSource = await GeoJsonDataSource.load(artifactUrl(`${root}/events.geojson`), { clampToGround: false });
+ eventSource.entities.values.forEach((entity) => {
+ const type = String(entity.properties?.event_type?.getValue() ?? "stop");
+ entity.point = new PointGraphics({
+ pixelSize: new ConstantProperty(12),
+ color: new ConstantProperty(eventColor(type)),
+ outlineColor: new ConstantProperty(Color.WHITE),
+ outlineWidth: new ConstantProperty(2),
+ heightReference: new ConstantProperty(HeightReference.NONE)
+ });
+ });
+ await viewer.dataSources.add(trajectorySource);
+ await viewer.dataSources.add(eventSource);
+ await viewer.flyTo(trajectorySource, { duration: 0 });
+ } catch (error) {
+ mapError.value = error instanceof Error ? error.message : "Cesium 地图加载失败";
+ }
+}
+
+onMounted(async () => {
+ if (!host.value) return;
+ viewer = new Viewer(host.value, {
+ animation: false,
+ baseLayerPicker: false,
+ fullscreenButton: false,
+ geocoder: false,
+ homeButton: false,
+ infoBox: false,
+ navigationHelpButton: false,
+ sceneModePicker: false,
+ selectionIndicator: false,
+ timeline: false
+ });
+ viewer.imageryLayers.removeAll();
+ viewer.imageryLayers.addImageryProvider(new GridImageryProvider({ cells: 8, glowWidth: 0 }));
+ await drawCase();
+});
+
+watch(() => props.caseId, drawCase);
+onBeforeUnmount(() => viewer?.destroy());
+</script>
+
+<template>
+ <div class="trajectory-map"><div ref="host" class="cesium-host"></div><a-alert v-if="mapError" class="map-error" type="warning" show-icon :message="mapError" /></div>
+</template>
diff --git a/apps/workbench-console/src/data/capabilities.ts b/apps/workbench-console/src/data/capabilities.ts
new file mode 100644
index 0000000..2256426
--- /dev/null
+++ b/apps/workbench-console/src/data/capabilities.ts
@@ -0,0 +1,34 @@
+export type CapabilityStatus = "verified" | "existing" | "planned";
+
+export interface CapabilityRecord {
+ id: string;
+ title: string;
+ level: "A" | "B" | "C";
+ status: CapabilityStatus;
+ note: string;
+}
+
+export const capabilities: CapabilityRecord[] = [
+ { id: "00-change-detection", title: "变化检测", level: "A", status: "existing", note: "现有产品能力已确认;本地 Demo 尚未实现。" },
+ { id: "01-object-detection", title: "地物目标检测", level: "A", status: "verified", note: "人员与车辆实验可运行,含标注影像和结构化检测结果。" },
+ { id: "02-semantic-mapping", title: "语义制图", level: "A", status: "planned", note: "等待首个本地 Demo。" },
+ { id: "03-attribute-classification", title: "属性分类", level: "A", status: "planned", note: "等待首个本地 Demo。" },
+ { id: "04-spatial-measurement", title: "空间测量", level: "B", status: "planned", note: "等待首个本地 Demo。" },
+ { id: "05-3d-pointcloud", title: "三维点云", level: "B", status: "planned", note: "等待首个本地 Demo。" },
+ { id: "06-spatial-reasoning", title: "空间推理", level: "C", status: "planned", note: "等待首个本地 Demo。" },
+ { id: "07-risk-rule-engine", title: "风险规则引擎", level: "C", status: "planned", note: "等待首个本地 Demo。" },
+ { id: "08-spatiotemporal-forecasting", title: "时空预测", level: "B", status: "planned", note: "等待首个本地 Demo。" },
+ { id: "09-anomaly-detection", title: "异常检测", level: "B", status: "planned", note: "等待首个本地 Demo。" },
+ { id: "10-smart-route-planning", title: "智能航线规划", level: "C", status: "planned", note: "等待首个本地 Demo。" },
+ { id: "11-fleet-scheduling", title: "集群调度", level: "C", status: "planned", note: "等待首个本地 Demo。" },
+ { id: "12-quality-control-refly", title: "质量检查与补飞", level: "B", status: "planned", note: "等待首个本地 Demo。" },
+ { id: "13-asset-health-diagnosis", title: "资产健康诊断", level: "C", status: "planned", note: "等待首个本地 Demo。" },
+ { id: "14-disaster-response", title: "灾害响应", level: "B", status: "planned", note: "等待首个本地 Demo。" },
+ { id: "15-trajectory-analysis", title: "轨迹分析与行为识别", level: "C", status: "verified", note: "规则事件与轨迹聚类 CPU Demo 已验证。" },
+ { id: "16-geollm-assistant", title: "GeoLLM 助手", level: "C", status: "planned", note: "等待首个本地 Demo。" },
+ { id: "17-spatiotemporal-knowledge-graph", title: "时空知识图谱", level: "C", status: "planned", note: "等待首个本地 Demo。" },
+ { id: "18-reporting-model-governance", title: "报告与模型治理", level: "C", status: "planned", note: "等待首个本地 Demo。" }
+];
+
+export const verifiedCapabilities = capabilities.filter((item) => item.status === "verified");
+export const capabilityById = (id: string) => capabilities.find((item) => item.id === id);
diff --git a/apps/workbench-console/src/main.ts b/apps/workbench-console/src/main.ts
new file mode 100644
index 0000000..c055b29
--- /dev/null
+++ b/apps/workbench-console/src/main.ts
@@ -0,0 +1,11 @@
+import { createApp } from "vue";
+import Antd from "ant-design-vue";
+import "ant-design-vue/dist/reset.css";
+import "cesium/Build/Cesium/Widgets/widgets.css";
+import "./styles.css";
+
+import App from "./App.vue";
+import { router } from "./router";
+import { pinia } from "./stores";
+
+createApp(App).use(pinia).use(router).use(Antd).mount("#app");
diff --git a/apps/workbench-console/src/router/index.ts b/apps/workbench-console/src/router/index.ts
new file mode 100644
index 0000000..66634ae
--- /dev/null
+++ b/apps/workbench-console/src/router/index.ts
@@ -0,0 +1,13 @@
+import { createRouter, createWebHashHistory } from "vue-router";
+
+import CapabilityView from "@/views/CapabilityView.vue";
+import OverviewView from "@/views/OverviewView.vue";
+
+export const router = createRouter({
+ history: createWebHashHistory(),
+ routes: [
+ { path: "/", name: "overview", component: OverviewView },
+ { path: "/capability/:id", name: "capability", component: CapabilityView },
+ { path: "/:pathMatch(.*)*", redirect: "/" }
+ ]
+});
diff --git a/apps/workbench-console/src/stores/artifacts.ts b/apps/workbench-console/src/stores/artifacts.ts
new file mode 100644
index 0000000..879183a
--- /dev/null
+++ b/apps/workbench-console/src/stores/artifacts.ts
@@ -0,0 +1,61 @@
+import { defineStore } from "pinia";
+
+import {
+ loadDetectionArtifacts,
+ loadTrajectoryArtifacts,
+ type DetectionImage,
+ type DetectionRun,
+ type TrajectoryRun,
+ type TrajectorySummary,
+ type TrajectoryEvent
+} from "@/api/artifacts";
+
+interface ArtifactState {
+ detectionRun: DetectionRun | null;
+ detectionImages: DetectionImage[];
+ trajectoryRun: TrajectoryRun | null;
+ trajectoryCases: Record<string, { events: TrajectoryEvent[]; summary: TrajectorySummary[] }>;
+ loading: boolean;
+ error: string | null;
+}
+
+export const useArtifactStore = defineStore("artifacts", {
+ state: (): ArtifactState => ({
+ detectionRun: null,
+ detectionImages: [],
+ trajectoryRun: null,
+ trajectoryCases: {},
+ loading: false,
+ error: null
+ }),
+ actions: {
+ async loadDetection() {
+ if (this.detectionRun) return;
+ this.loading = true;
+ this.error = null;
+ try {
+ const result = await loadDetectionArtifacts();
+ this.detectionRun = result.run;
+ this.detectionImages = result.images;
+ } catch (error) {
+ this.error = error instanceof Error ? error.message : "目标检测结果读取失败";
+ } finally {
+ this.loading = false;
+ }
+ },
+ async loadTrajectory() {
+ if (this.trajectoryRun) return;
+ this.loading = true;
+ this.error = null;
+ try {
+ const result = await loadTrajectoryArtifacts();
+ this.trajectoryRun = result.run;
+ this.trajectoryCases = result.cases;
+ } catch (error) {
+ this.error = error instanceof Error ? error.message : "轨迹分析结果读取失败";
+ } finally {
+ this.loading = false;
+ }
+ }
+ }
+});
diff --git a/apps/workbench-console/src/stores/index.ts b/apps/workbench-console/src/stores/index.ts
new file mode 100644
index 0000000..cafea68
--- /dev/null
+++ b/apps/workbench-console/src/stores/index.ts
@@ -0,0 +1,3 @@
+import { createPinia } from "pinia";
+
+export const pinia = createPinia();
diff --git a/apps/workbench-console/src/styles.css b/apps/workbench-console/src/styles.css
new file mode 100644
index 0000000..ac01e94
--- /dev/null
+++ b/apps/workbench-console/src/styles.css
@@ -0,0 +1,17 @@
+:root { color: #1b2620; background: #f3f5f1; font-family: "Microsoft YaHei UI", "Segoe UI", Arial, sans-serif; font-synthesis: none; }
+* { box-sizing: border-box; }
+body { margin: 0; min-width: 320px; background: #f3f5f1; }
+.application-frame { min-height: 100vh; }
+.application-sider { position: sticky !important; top: 0; height: 100vh; background: #1e2923 !important; border-right: 1px solid #152019; }
+.brand { display: flex; align-items: center; gap: 10px; height: 82px; padding: 18px 20px; color: #f4f9f5; cursor: pointer; }
+.brand-mark { display: grid; width: 34px; height: 34px; place-items: center; background: #dcf0e4; color: #195d43; font-size: 12px; font-weight: 800; }
+.brand strong, .brand small { display: block; }.brand strong { font-size: 14px; letter-spacing: 0; }.brand small { color: #aac0b0; font-size: 11px; }
+.navigation-menu { height: calc(100vh - 150px); overflow-y: auto; background: #1e2923 !important; border-inline-end: 0 !important; }.navigation-menu .ant-menu-item-group-title { color: #9eb2a4 !important; font-size: 11px; font-weight: 700; letter-spacing: 0; }.navigation-menu .ant-menu-item { margin-inline: 0 !important; width: 100% !important; border-radius: 0 !important; }.navigation-menu .ant-menu-item-selected { background: #31443a !important; }.navigation-menu .ant-menu-item::after { border-inline-end-color: #79c99e !important; }
+.sider-status { position: absolute; right: 18px; bottom: 18px; left: 18px; display: flex; gap: 9px; padding-top: 14px; color: #dce8e0; border-top: 1px solid #42534a; }.sider-status .anticon { margin-top: 4px; color: #79c99e; }.sider-status strong, .sider-status small { display: block; }.sider-status strong { font-size: 12px; }.sider-status small { color: #a9bcb0; font-size: 11px; }
+.content-layout { background: #f3f5f1 !important; }.view-container { width: min(1460px, 100%); margin: 0 auto; padding: 34px 42px 58px; }.page-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 28px; }.eyebrow { margin: 0 0 6px; color: #176b50; font-size: 12px; font-weight: 700; letter-spacing: 0; }.page-header h1 { margin: 0 0 8px; color: #19231e; font-size: 29px; line-height: 1.2; letter-spacing: 0; }.page-description { max-width: 800px; margin: 0; color: #66716b; }.local-tag { margin: 2px 0 0 !important; border-radius: 3px !important; }
+.loading-block { display: flex; gap: 9px; align-items: center; justify-content: center; min-height: 150px; color: #66716b; }.metric-row { margin-bottom: 30px; }.metric-row .ant-statistic { min-height: 106px; padding: 17px; background: #ffffff; border: 1px solid #d9e0da; box-shadow: 0 9px 25px rgba(20, 43, 30, 0.06); }.metric-row .ant-statistic-content { color: #1c392b; font-size: 29px; }.view-section { margin-top: 32px; }.section-heading { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 14px; }.section-heading h2, .surface-section h2 { margin: 0 0 4px; color: #202b25; font-size: 18px; letter-spacing: 0; }.section-heading p, .surface-section p { margin: 0; color: #66716b; font-size: 12px; }
+.capability-card { overflow: hidden; border-radius: 4px !important; border-color: #d9e0da !important; box-shadow: 0 9px 25px rgba(20, 43, 30, 0.07) !important; }.card-media { display: block; width: 100%; height: 260px; object-fit: cover; background: #e0e6e1; }.card-copy { padding: 18px; }.card-topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }.card-topline h3 { margin: 0 0 6px; color: #202b25; font-size: 16px; letter-spacing: 0; }.card-topline p, .planned-card p { color: #66716b; }.card-copy .ant-space { display: flex; min-height: 40px; align-content: flex-start; margin-top: 14px; }.card-copy .ant-btn { margin-top: 8px; }.planned-card { height: 100%; border-radius: 4px !important; border-color: #d9e0da !important; }.planned-card p { min-height: 38px; margin: 7px 0 8px; font-size: 12px; }
+.surface-section { margin-bottom: 18px; padding: 20px; background: #ffffff; border: 1px solid #d9e0da; box-shadow: 0 9px 25px rgba(20, 43, 30, 0.06); }.section-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 13px; }.section-toolbar .ant-select { width: min(65%, 540px); }.detection-image { display: block; width: 100%; min-height: 390px; max-height: 660px; overflow: hidden; background: #232e28; text-align: center; }.detection-image .ant-image-img { width: 100%; max-height: 660px; object-fit: contain; }.image-caption { padding-top: 9px; }.surface-section .ant-descriptions { font-size: 12px; }.surface-section .ant-descriptions-item-label { color: #66716b; }.surface-section h3 { margin: 0 0 8px; font-size: 14px; }.result-row { margin-top: 0; }.result-files { margin-bottom: 0; }.toolbar-note { color: #66716b; font-size: 12px; text-align: right; }
+.trajectory-map { position: relative; height: 510px; overflow: hidden; background: #1b2620; }.cesium-host { width: 100%; height: 100%; }.map-error { position: absolute; right: 14px; bottom: 14px; left: 14px; }.cesium-viewer-bottom { display: none !important; }.cesium-viewer-toolbar { top: 10px; right: 10px; }.ant-empty { margin: 70px 0; }.ant-empty-description p { color: #66716b; }
+@media (max-width: 991px) { .application-sider { position: static !important; height: auto; }.navigation-menu { height: auto; max-height: 290px; }.sider-status { display: none; }.view-container { padding: 25px 22px 42px; }.detection-image { min-height: 270px; }.trajectory-map { height: 440px; } }
+@media (max-width: 640px) { .view-container { padding: 20px 14px 34px; }.page-header, .section-toolbar { align-items: stretch; flex-direction: column; }.page-header h1 { font-size: 24px; }.local-tag { align-self: flex-start; }.section-toolbar .ant-select { width: 100%; }.toolbar-note { text-align: left; }.surface-section { padding: 14px; }.trajectory-map { height: 380px; }.card-media { height: 205px; } }
diff --git a/apps/workbench-console/src/views/CapabilityView.vue b/apps/workbench-console/src/views/CapabilityView.vue
new file mode 100644
index 0000000..8cf694c
--- /dev/null
+++ b/apps/workbench-console/src/views/CapabilityView.vue
@@ -0,0 +1,22 @@
+<script setup lang="ts">
+import { computed } from "vue";
+import { useRoute } from "vue-router";
+
+import PageHeader from "@/components/PageHeader.vue";
+import ObjectDetectionPanel from "@/components/ObjectDetectionPanel.vue";
+import TrajectoryAnalysisPanel from "@/components/TrajectoryAnalysisPanel.vue";
+import { capabilityById } from "@/data/capabilities";
+
+const route = useRoute();
+const capability = computed(() => capabilityById(String(route.params.id)));
+</script>
+
+<template>
+ <div class="view-container" v-if="capability">
+ <PageHeader :eyebrow="`CAPABILITY ${capability.id} / ${capability.level}`" :title="capability.title" :description="capability.note" />
+ <ObjectDetectionPanel v-if="capability.id === '01-object-detection'" />
+ <TrajectoryAnalysisPanel v-else-if="capability.id === '15-trajectory-analysis'" />
+ <a-empty v-else description="等待第一个可验证 Demo"><template #description><h2>尚无本地结果工件</h2><p>该能力已登记在目录中,但尚未产生可视化结果、结构化输出或运行元数据。</p></template></a-empty>
+ </div>
+ <div v-else class="view-container"><a-result status="404" title="未找到能力页面" sub-title="请从左侧目录选择已登记的能力。" /></div>
+</template>
diff --git a/apps/workbench-console/src/views/OverviewView.vue b/apps/workbench-console/src/views/OverviewView.vue
new file mode 100644
index 0000000..0a2dc9f
--- /dev/null
+++ b/apps/workbench-console/src/views/OverviewView.vue
@@ -0,0 +1,26 @@
+<script setup lang="ts">
+import { computed, onMounted } from "vue";
+import { useRouter } from "vue-router";
+import { EyeOutlined, ExperimentOutlined } from "@ant-design/icons-vue";
+
+import ArtifactState from "@/components/ArtifactState.vue";
+import PageHeader from "@/components/PageHeader.vue";
+import { capabilities, verifiedCapabilities } from "@/data/capabilities";
+import { artifactUrl } from "@/api/artifacts";
+import { useArtifactStore } from "@/stores/artifacts";
+
+const store = useArtifactStore();
+const router = useRouter();
+const planned = computed(() => capabilities.filter((item) => item.status === "planned"));
+
+onMounted(async () => Promise.all([store.loadDetection(), store.loadTrajectory()]));
+function openCapability(id: string) { router.push({ name: "capability", params: { id } }); }
+</script>
+
+<template>
+ <div class="view-container"><PageHeader eyebrow="WORKBENCH / OVERVIEW" title="实验结果一眼可见" description="独立于无人机产品的本地控制台。它只读取当前工作区已有结果,不上传数据,也不会触发算法运行。" /><ArtifactState :loading="store.loading" :error="store.error" />
+ <a-row :gutter="[14, 14]" class="metric-row"><a-col :xs="12" :lg="6"><a-statistic title="能力目录" :value="capabilities.length" /></a-col><a-col :xs="12" :lg="6"><a-statistic title="已验证 Demo" :value="verifiedCapabilities.length" /></a-col><a-col :xs="12" :lg="6"><a-statistic title="最近检测结果" :value="store.detectionRun?.detection_count ?? 0" suffix="个" /></a-col><a-col :xs="12" :lg="6"><a-statistic title="最近轨迹事件" :value="store.trajectoryRun?.event_count ?? 0" suffix="个" /></a-col></a-row>
+ <section class="view-section"><div class="section-heading"><div><h2>已验证能力</h2><p>从实验结果进入,不需要再查找输出目录。</p></div></div><a-row :gutter="[18, 18]"><a-col :xs="24" :xl="12"><a-card class="capability-card" :body-style="{ padding: '0' }"><img class="card-media" :src="artifactUrl('shared/outputs/01-object-detection/annotated/DJI_20260810092727_0001_V_10.jpeg')" alt="目标检测标注图" /><div class="card-copy"><div class="card-topline"><div><h3>地物目标检测</h3><p>原图与标注图切换、检测框明细与运行参数。</p></div><a-tag color="green">已验证</a-tag></div><a-space wrap><a-tag color="gold">A:直接能力</a-tag><a-tag>{{ store.detectionRun?.processed_images ?? 0 }} 张影像</a-tag><a-tag>{{ store.detectionRun?.detection_count ?? 0 }} 个候选</a-tag></a-space><a-button type="primary" @click="openCapability('01-object-detection')"><EyeOutlined />查看实验结果</a-button></div></a-card></a-col><a-col :xs="24" :xl="12"><a-card class="capability-card" :body-style="{ padding: '0' }"><img class="card-media" :src="artifactUrl('shared/outputs/15-trajectory-analysis/difficult/analysis.png')" alt="轨迹分析图" /><div class="card-copy"><div class="card-topline"><div><h3>轨迹分析与行为识别</h3><p>Cesium 轨迹地图、规则事件和轨迹汇总。</p></div><a-tag color="green">已验证</a-tag></div><a-space wrap><a-tag color="gold">C:产品能力</a-tag><a-tag>{{ store.trajectoryRun?.track_count ?? 0 }} 条轨迹</a-tag><a-tag>{{ store.trajectoryRun?.event_count ?? 0 }} 个事件</a-tag></a-space><a-button type="primary" @click="openCapability('15-trajectory-analysis')"><EyeOutlined />查看实验结果</a-button></div></a-card></a-col></a-row></section>
+ <section class="view-section"><div class="section-heading"><div><h2>待实现能力</h2><p>首个 Demo 产生可检查工件后,可以按相同方式接入控制台。</p></div></div><a-row :gutter="[14, 14]"><a-col v-for="capability in planned.slice(0, 8)" :key="capability.id" :xs="24" :md="12" :xl="6"><a-card size="small" class="planned-card"><div class="card-topline"><h3>{{ capability.title }}</h3><a-tag>{{ capability.level }}</a-tag></div><p>{{ capability.note }}</p><a-button type="link" size="small" @click="openCapability(capability.id)"><ExperimentOutlined />查看状态</a-button></a-card></a-col></a-row></section>
+ </div>
+</template>
diff --git a/apps/workbench-console/tsconfig.app.json b/apps/workbench-console/tsconfig.app.json
new file mode 100644
index 0000000..5158f28
--- /dev/null
+++ b/apps/workbench-console/tsconfig.app.json
@@ -0,0 +1,21 @@
+{
+ "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"],
+ "exclude": ["src/**/__tests__/*"],
+ "compilerOptions": {
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
+ "target": "ES2021",
+ "useDefineForClassFields": true,
+ "module": "ESNext",
+ "lib": ["ES2021", "DOM", "DOM.Iterable"],
+ "moduleResolution": "Bundler",
+ "allowImportingTsExtensions": true,
+ "verbatimModuleSyntax": true,
+ "moduleDetection": "force",
+ "noEmit": true,
+ "jsx": "preserve",
+ "strict": true,
+ "skipLibCheck": true,
+ "baseUrl": ".",
+ "paths": { "@/*": ["./src/*"] }
+ }
+}
diff --git a/apps/workbench-console/tsconfig.json b/apps/workbench-console/tsconfig.json
new file mode 100644
index 0000000..1ffef60
--- /dev/null
+++ b/apps/workbench-console/tsconfig.json
@@ -0,0 +1,7 @@
+{
+ "files": [],
+ "references": [
+ { "path": "./tsconfig.app.json" },
+ { "path": "./tsconfig.node.json" }
+ ]
+}
diff --git a/apps/workbench-console/tsconfig.node.json b/apps/workbench-console/tsconfig.node.json
new file mode 100644
index 0000000..0a56408
--- /dev/null
+++ b/apps/workbench-console/tsconfig.node.json
@@ -0,0 +1,12 @@
+{
+ "compilerOptions": {
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
+ "target": "ES2022",
+ "module": "ESNext",
+ "moduleResolution": "Bundler",
+ "noEmit": true,
+ "strict": true,
+ "skipLibCheck": true
+ },
+ "include": ["vite.config.ts"]
+}
diff --git a/apps/workbench-console/vite.config.ts b/apps/workbench-console/vite.config.ts
new file mode 100644
index 0000000..c690248
--- /dev/null
+++ b/apps/workbench-console/vite.config.ts
@@ -0,0 +1,39 @@
+import { fileURLToPath, URL } from "node:url";
+
+import { defineConfig } from "vite";
+import vue from "@vitejs/plugin-vue";
+import { viteStaticCopy } from "vite-plugin-static-copy";
+
+const consoleBase = "/apps/workbench-console/";
+
+export default defineConfig({
+ base: consoleBase,
+ define: {
+ CESIUM_BASE_URL: JSON.stringify(`${consoleBase}cesium`)
+ },
+ plugins: [
+ vue(),
+ viteStaticCopy({
+ targets: [
+ { src: "node_modules/cesium/Build/Cesium/Workers", dest: "cesium" },
+ { src: "node_modules/cesium/Build/Cesium/ThirdParty", dest: "cesium" },
+ { src: "node_modules/cesium/Build/Cesium/Assets", dest: "cesium" },
+ { src: "node_modules/cesium/Build/Cesium/Widgets", dest: "cesium" }
+ ]
+ })
+ ],
+ resolve: {
+ alias: {
+ "@": fileURLToPath(new URL("./src", import.meta.url)),
+ "@zip.js/zip.js/lib/zip-no-worker.js": fileURLToPath(new URL("./node_modules/@zip.js/zip.js/index.js", import.meta.url))
+ }
+ },
+ server: {
+ host: "127.0.0.1",
+ port: 6174,
+ strictPort: true,
+ proxy: {
+ "/shared": "http://127.0.0.1:6173"
+ }
+ }
+});
diff --git a/baseData/no-fly-zone-Chn_xS2X.geojson b/baseData/no-fly-zone-Chn_xS2X.geojson
new file mode 100644
index 0000000..1db3278
--- /dev/null
+++ b/baseData/no-fly-zone-Chn_xS2X.geojson
@@ -0,0 +1,203348 @@
+{
+ "type": "FeatureCollection",
+ "name": "I:\\SoftwareRD\\Project\\Python_Project\\获取禁飞区\\res\\中国境内及周边禁飞区结构化信息调整显示.geojson",
+ "crs": {
+ "type": "name",
+ "properties": {
+ "name": "urn:ogc:def:crs:OGC:1.3:CRS84"
+ }
+ },
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4509,
+ "name": "Gu-Lian Airport",
+ "country": "CN",
+ "city": "Mohe",
+ "height": 0,
+ "level": 2,
+ "lat": "52.9513710839961",
+ "lng": "122.37694829659",
+ "radius": 13011,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.361914514,
+ 52.982896152099997,
+ 0.0
+ ],
+ [
+ 122.280321051,
+ 53.052910839699997,
+ 0.0
+ ],
+ [
+ 122.201286395,
+ 53.001406297199999,
+ 0.0
+ ],
+ [
+ 122.316261747,
+ 52.953167348100003,
+ 0.0
+ ],
+ [
+ 122.304771692,
+ 52.924275470399998,
+ 0.0
+ ],
+ [
+ 122.308381907,
+ 52.907820603899999,
+ 0.0
+ ],
+ [
+ 122.318925651,
+ 52.892489219799998,
+ 0.0
+ ],
+ [
+ 122.357280051,
+ 52.862697391200001,
+ 0.0
+ ],
+ [
+ 122.39932272199999,
+ 52.847650599700003,
+ 0.0
+ ],
+ [
+ 122.426407157,
+ 52.844835701100003,
+ 0.0
+ ],
+ [
+ 122.47957061,
+ 52.8520736344,
+ 0.0
+ ],
+ [
+ 122.361914514,
+ 52.982896152099997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4509,
+ "name": "Gu-Lian Airport",
+ "country": "CN",
+ "city": "Mohe",
+ "height": 0,
+ "level": 2,
+ "lat": "52.888039688602",
+ "lng": "122.475381006188",
+ "radius": 13002,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.562978327,
+ 52.783759393,
+ 0.0
+ ],
+ [
+ 122.642066704,
+ 52.828494355700002,
+ 0.0
+ ],
+ [
+ 122.52871946,
+ 52.881891670400002,
+ 0.0
+ ],
+ [
+ 122.540751122,
+ 52.910318905700002,
+ 0.0
+ ],
+ [
+ 122.537628737,
+ 52.9268100309,
+ 0.0
+ ],
+ [
+ 122.52752777,
+ 52.942251411900003,
+ 0.0
+ ],
+ [
+ 122.51113071899999,
+ 52.955589096,
+ 0.0
+ ],
+ [
+ 122.442699404,
+ 52.984537397700002,
+ 0.0
+ ],
+ [
+ 122.415844079,
+ 52.988296243900002,
+ 0.0
+ ],
+ [
+ 122.361914514,
+ 52.982896152099997,
+ 0.0
+ ],
+ [
+ 122.47957061,
+ 52.8520736344,
+ 0.0
+ ],
+ [
+ 122.562978327,
+ 52.783759393,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4509,
+ "name": "Gu-Lian Airport",
+ "country": "CN",
+ "city": "Mohe",
+ "height": 120,
+ "level": 2,
+ "lat": "52.9158726638339",
+ "lng": "122.421352510356",
+ "radius": 23376,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.751084525,
+ 52.848012213600001,
+ 120.0
+ ],
+ [
+ 122.54373615199999,
+ 52.719079901400001,
+ 120.0
+ ],
+ [
+ 122.09128911,
+ 52.984062503799997,
+ 120.0
+ ],
+ [
+ 122.299910084,
+ 53.112994813500002,
+ 120.0
+ ],
+ [
+ 122.751084525,
+ 52.848012213600001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001353,
+ "name": "Gu-Lian Airport",
+ "country": "CN",
+ "city": "Mohe",
+ "height": 500,
+ "level": 2,
+ "lat": "52.915826",
+ "lng": "122.424783",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.424783,
+ 53.365107060340009,
+ 500.0
+ ],
+ [
+ 122.55518695411152,
+ 53.358210765087513,
+ 500.0
+ ],
+ [
+ 122.681506271062702,
+ 53.337737930945067,
+ 500.0
+ ],
+ [
+ 122.799795741630774,
+ 53.304329327467421,
+ 500.0
+ ],
+ [
+ 122.906382773470369,
+ 53.259028619525971,
+ 500.0
+ ],
+ [
+ 122.997988577358726,
+ 53.203247081005784,
+ 500.0
+ ],
+ [
+ 123.071832475582283,
+ 53.138716384179261,
+ 500.0
+ ],
+ [
+ 123.125715646754912,
+ 53.067431456512402,
+ 500.0
+ ],
+ [
+ 123.158081969796683,
+ 52.991585711602546,
+ 500.0
+ ],
+ [
+ 123.168054990020167,
+ 52.913501130502148,
+ 500.0
+ ],
+ [
+ 123.155451272358306,
+ 52.835555701130268,
+ 500.0
+ ],
+ [
+ 123.120771434569122,
+ 52.760110636105146,
+ 500.0
+ ],
+ [
+ 123.065170912426112,
+ 52.689439609972922,
+ 500.0
+ ],
+ [
+ 122.990412986702609,
+ 52.625662015086291,
+ 500.0
+ ],
+ [
+ 122.898806820378311,
+ 52.570681959595412,
+ 500.0
+ ],
+ [
+ 122.793133260754558,
+ 52.526134445097313,
+ 500.0
+ ],
+ [
+ 122.676561015284165,
+ 52.493339883345648,
+ 500.0
+ ],
+ [
+ 122.552555575516351,
+ 52.473267852370185,
+ 500.0
+ ],
+ [
+ 122.424783,
+ 52.466510757534166,
+ 500.0
+ ],
+ [
+ 122.297010424483659,
+ 52.473267852370185,
+ 500.0
+ ],
+ [
+ 122.173004984715845,
+ 52.493339883345648,
+ 500.0
+ ],
+ [
+ 122.056432739245452,
+ 52.526134445097313,
+ 500.0
+ ],
+ [
+ 121.950759179621699,
+ 52.570681959595412,
+ 500.0
+ ],
+ [
+ 121.859153013297401,
+ 52.625662015086291,
+ 500.0
+ ],
+ [
+ 121.784395087573898,
+ 52.689439609972922,
+ 500.0
+ ],
+ [
+ 121.728794565430888,
+ 52.760110636105146,
+ 500.0
+ ],
+ [
+ 121.694114727641704,
+ 52.835555701130268,
+ 500.0
+ ],
+ [
+ 121.681511009979843,
+ 52.913501130502148,
+ 500.0
+ ],
+ [
+ 121.691484030203327,
+ 52.991585711602546,
+ 500.0
+ ],
+ [
+ 121.723850353245098,
+ 53.067431456512402,
+ 500.0
+ ],
+ [
+ 121.777733524417727,
+ 53.138716384179261,
+ 500.0
+ ],
+ [
+ 121.851577422641284,
+ 53.203247081005784,
+ 500.0
+ ],
+ [
+ 121.943183226529641,
+ 53.259028619525971,
+ 500.0
+ ],
+ [
+ 122.049770258369236,
+ 53.304329327467421,
+ 500.0
+ ],
+ [
+ 122.168059728937308,
+ 53.337737930945067,
+ 500.0
+ ],
+ [
+ 122.294379045888491,
+ 53.358210765087513,
+ 500.0
+ ],
+ [
+ 122.424783,
+ 53.365107060340009,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295615,
+ "name": "Ukrainka Air Base",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "51.1700286173502",
+ "lng": "128.443985146345",
+ "radius": 5748,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.48238855,
+ 51.201082666300003,
+ 0.0
+ ],
+ [
+ 128.511034472,
+ 51.166392584699999,
+ 0.0
+ ],
+ [
+ 128.513218036000012,
+ 51.158997926600001,
+ 0.0
+ ],
+ [
+ 128.51290216699999,
+ 51.151480160699997,
+ 0.0
+ ],
+ [
+ 128.504940599,
+ 51.137380346,
+ 0.0
+ ],
+ [
+ 128.497644681,
+ 51.131414062899999,
+ 0.0
+ ],
+ [
+ 128.478004459,
+ 51.122939386500001,
+ 0.0
+ ],
+ [
+ 128.466517686,
+ 51.12080069,
+ 0.0
+ ],
+ [
+ 128.442694202000013,
+ 51.1211828713,
+ 0.0
+ ],
+ [
+ 128.421173278999987,
+ 51.127609975399999,
+ 0.0
+ ],
+ [
+ 128.40568927699999,
+ 51.138951220800003,
+ 0.0
+ ],
+ [
+ 128.381591071,
+ 51.166670464600003,
+ 0.0
+ ],
+ [
+ 128.374760396,
+ 51.181002671400002,
+ 0.0
+ ],
+ [
+ 128.37781856399999,
+ 51.195837716100002,
+ 0.0
+ ],
+ [
+ 128.39024540599999,
+ 51.208609775600003,
+ 0.0
+ ],
+ [
+ 128.409896296,
+ 51.217107961899998,
+ 0.0
+ ],
+ [
+ 128.42140200099999,
+ 51.219257363799997,
+ 0.0
+ ],
+ [
+ 128.433370258,
+ 51.219860248,
+ 0.0
+ ],
+ [
+ 128.45660011199999,
+ 51.216389727299998,
+ 0.0
+ ],
+ [
+ 128.475561241,
+ 51.207297746199998,
+ 0.0
+ ],
+ [
+ 128.48238855,
+ 51.201082666300003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295614,
+ "name": "Ukrainka Air Base",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "51.1172290459466",
+ "lng": "128.489827913438",
+ "radius": 2021,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.48415502099999,
+ 51.135052948599999,
+ 0.0
+ ],
+ [
+ 128.515586971,
+ 51.1089307803,
+ 0.0
+ ],
+ [
+ 128.486944308,
+ 51.099143422200001,
+ 0.0
+ ],
+ [
+ 128.469052115000011,
+ 51.129891259600001,
+ 0.0
+ ],
+ [
+ 128.48415502099999,
+ 51.135052948599999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295614,
+ "name": "Ukrainka Air Base",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "51.2228372247858",
+ "lng": "128.398130804653",
+ "radius": 2020,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.401011,
+ 51.240921970499997,
+ 0.0
+ ],
+ [
+ 128.418942206,
+ 51.210173191599999,
+ 0.0
+ ],
+ [
+ 128.40381198099999,
+ 51.205014605400002,
+ 0.0
+ ],
+ [
+ 128.372310285999987,
+ 51.231134791499997,
+ 0.0
+ ],
+ [
+ 128.401011,
+ 51.240921970499997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295614,
+ "name": "Ukrainka Air Base",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "51.1700253600522",
+ "lng": "128.443980086649",
+ "radius": 4793,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.418942206,
+ 51.210173191599999,
+ 0.0
+ ],
+ [
+ 128.48415502099999,
+ 51.135052948599999,
+ 0.0
+ ],
+ [
+ 128.469052115000011,
+ 51.129891259600001,
+ 0.0
+ ],
+ [
+ 128.40381198099999,
+ 51.205014605400002,
+ 0.0
+ ],
+ [
+ 128.418942206,
+ 51.210173191599999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295614,
+ "name": "Ukrainka Air Base",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "51.0687706058371",
+ "lng": "128.531802974133",
+ "radius": 4606,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.515586971,
+ 51.1089307803,
+ 0.0
+ ],
+ [
+ 128.588790171999989,
+ 51.047946352099999,
+ 0.0
+ ],
+ [
+ 128.528600360000013,
+ 51.027387874799999,
+ 0.0
+ ],
+ [
+ 128.486944308,
+ 51.099143422200001,
+ 0.0
+ ],
+ [
+ 128.515586971,
+ 51.1089307803,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295614,
+ "name": "Ukrainka Air Base",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "51.271278231568",
+ "lng": "128.355969790546",
+ "radius": 4606,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.359078138,
+ 51.312658441799996,
+ 0.0
+ ],
+ [
+ 128.401011,
+ 51.240921970499997,
+ 0.0
+ ],
+ [
+ 128.372310285999987,
+ 51.231134791499997,
+ 0.0
+ ],
+ [
+ 128.298667087000013,
+ 51.292048940900003,
+ 0.0
+ ],
+ [
+ 128.359078138,
+ 51.312658441799996,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2631,
+ "name": "Jiagedaqi Airport",
+ "country": "CN",
+ "city": "Jiagedaqi",
+ "height": 0,
+ "level": 2,
+ "lat": "50.3280117515554",
+ "lng": "124.122850373789",
+ "radius": 13133,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.100260054,
+ 50.210786386400002,
+ 0.0
+ ],
+ [
+ 124.20676650199999,
+ 50.222778503599997,
+ 0.0
+ ],
+ [
+ 124.16509019599999,
+ 50.302762391599998,
+ 0.0
+ ],
+ [
+ 124.205121538,
+ 50.324195756100004,
+ 0.0
+ ],
+ [
+ 124.222619743,
+ 50.355155533199998,
+ 0.0
+ ],
+ [
+ 124.221413076,
+ 50.371735914,
+ 0.0
+ ],
+ [
+ 124.21639803399999,
+ 50.390119647200002,
+ 0.0
+ ],
+ [
+ 124.19910066,
+ 50.419630830599999,
+ 0.0
+ ],
+ [
+ 124.159608914,
+ 50.440852530900003,
+ 0.0
+ ],
+ [
+ 124.134768995,
+ 50.445878322,
+ 0.0
+ ],
+ [
+ 124.10025719,
+ 50.299131845799998,
+ 0.0
+ ],
+ [
+ 124.100260054,
+ 50.210786386400002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2631,
+ "name": "Jiagedaqi Airport",
+ "country": "CN",
+ "city": "Jiagedaqi",
+ "height": 0,
+ "level": 2,
+ "lat": "50.4153414797779",
+ "lng": "124.099801788077",
+ "radius": 12921,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.134768995,
+ 50.445878322,
+ 0.0
+ ],
+ [
+ 124.136457844,
+ 50.5291856033,
+ 0.0
+ ],
+ [
+ 124.028249645,
+ 50.522255550200001,
+ 0.0
+ ],
+ [
+ 124.069907214,
+ 50.437240572,
+ 0.0
+ ],
+ [
+ 124.03737903299999,
+ 50.420020955200002,
+ 0.0
+ ],
+ [
+ 124.024150027,
+ 50.405722936300002,
+ 0.0
+ ],
+ [
+ 124.017184551,
+ 50.389729613,
+ 0.0
+ ],
+ [
+ 124.018610198,
+ 50.349850621199998,
+ 0.0
+ ],
+ [
+ 124.03551904,
+ 50.324802117799997,
+ 0.0
+ ],
+ [
+ 124.053307592,
+ 50.3126987658,
+ 0.0
+ ],
+ [
+ 124.10025719,
+ 50.299131845799998,
+ 0.0
+ ],
+ [
+ 124.134768995,
+ 50.445878322,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2631,
+ "name": "Jiagedaqi Airport",
+ "country": "CN",
+ "city": "Jiagedaqi",
+ "height": 120,
+ "level": 2,
+ "lat": "50.3712874696866",
+ "lng": "124.118199609534",
+ "radius": 23407,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.288185315,
+ 50.190966186200001,
+ 120.0
+ ],
+ [
+ 124.00874796399999,
+ 50.172739577900003,
+ 120.0
+ ],
+ [
+ 123.947146269,
+ 50.551447161699997,
+ 120.0
+ ],
+ [
+ 124.228822921,
+ 50.569673769,
+ 120.0
+ ],
+ [
+ 124.288185315,
+ 50.190966186200001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001404,
+ "name": "Jiagedaqi Airport",
+ "country": "CN",
+ "city": "Jiagedaqi",
+ "height": 500,
+ "level": 2,
+ "lat": "50.371464",
+ "lng": "124.117473",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.117473,
+ 50.820940451856991,
+ 500.0
+ ],
+ [
+ 124.240665195619073,
+ 50.814047393702239,
+ 500.0
+ ],
+ [
+ 124.360008832696792,
+ 50.793583590119106,
+ 500.0
+ ],
+ [
+ 124.471785453995523,
+ 50.760187864454281,
+ 500.0
+ ],
+ [
+ 124.572531139543358,
+ 50.714900944438916,
+ 500.0
+ ],
+ [
+ 124.659150025912226,
+ 50.659130590760618,
+ 500.0
+ ],
+ [
+ 124.72901243326892,
+ 50.594604884562308,
+ 500.0
+ ],
+ [
+ 124.780034167507409,
+ 50.523315598274458,
+ 500.0
+ ],
+ [
+ 124.810734754304761,
+ 50.447453888617012,
+ 500.0
+ ],
+ [
+ 124.820273572278751,
+ 50.369340728915667,
+ 500.0
+ ],
+ [
+ 124.808463971075199,
+ 50.291354545473638,
+ 500.0
+ ],
+ [
+ 124.775766402163029,
+ 50.215858456141724,
+ 500.0
+ ],
+ [
+ 124.723262305147884,
+ 50.145129352152495,
+ 500.0
+ ],
+ [
+ 124.652610965581417,
+ 50.081290843437593,
+ 500.0
+ ],
+ [
+ 124.565991806869135,
+ 50.026251828977252,
+ 500.0
+ ],
+ [
+ 124.466034636276788,
+ 49.981652179615821,
+ 500.0
+ ],
+ [
+ 124.355740283170803,
+ 49.948816748353401,
+ 500.0
+ ],
+ [
+ 124.238393900551316,
+ 49.928718663678232,
+ 500.0
+ ],
+ [
+ 124.117473,
+ 49.921952620716041,
+ 500.0
+ ],
+ [
+ 123.996552099448692,
+ 49.928718663678232,
+ 500.0
+ ],
+ [
+ 123.879205716829205,
+ 49.948816748353401,
+ 500.0
+ ],
+ [
+ 123.76891136372322,
+ 49.981652179615821,
+ 500.0
+ ],
+ [
+ 123.668954193130872,
+ 50.026251828977252,
+ 500.0
+ ],
+ [
+ 123.582335034418591,
+ 50.081290843437593,
+ 500.0
+ ],
+ [
+ 123.511683694852124,
+ 50.145129352152495,
+ 500.0
+ ],
+ [
+ 123.459179597836979,
+ 50.215858456141724,
+ 500.0
+ ],
+ [
+ 123.426482028924809,
+ 50.291354545473638,
+ 500.0
+ ],
+ [
+ 123.414672427721257,
+ 50.369340728915667,
+ 500.0
+ ],
+ [
+ 123.424211245695247,
+ 50.447453888617012,
+ 500.0
+ ],
+ [
+ 123.454911832492598,
+ 50.523315598274458,
+ 500.0
+ ],
+ [
+ 123.505933566731088,
+ 50.594604884562308,
+ 500.0
+ ],
+ [
+ 123.575795974087782,
+ 50.659130590760618,
+ 500.0
+ ],
+ [
+ 123.66241486045665,
+ 50.714900944438916,
+ 500.0
+ ],
+ [
+ 123.763160546004485,
+ 50.760187864454281,
+ 500.0
+ ],
+ [
+ 123.874937167303216,
+ 50.793583590119106,
+ 500.0
+ ],
+ [
+ 123.994280804380935,
+ 50.814047393702239,
+ 500.0
+ ],
+ [
+ 124.117473,
+ 50.820940451856991,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283046,
+ "name": "Ignatyevo Airport",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "50.4258310394952",
+ "lng": "127.412465666935",
+ "radius": 5415,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.463591131,
+ 50.445790801,
+ 0.0
+ ],
+ [
+ 127.473117229,
+ 50.413288163899999,
+ 0.0
+ ],
+ [
+ 127.471864655,
+ 50.4058102742,
+ 0.0
+ ],
+ [
+ 127.468200798,
+ 50.398661684499999,
+ 0.0
+ ],
+ [
+ 127.45438145,
+ 50.386573111099999,
+ 0.0
+ ],
+ [
+ 127.444830618,
+ 50.382160773599999,
+ 0.0
+ ],
+ [
+ 127.422513767,
+ 50.377554105400002,
+ 0.0
+ ],
+ [
+ 127.399188055,
+ 50.379129547300003,
+ 0.0
+ ],
+ [
+ 127.388417101,
+ 50.382192265299999,
+ 0.0
+ ],
+ [
+ 127.370988462,
+ 50.392205571300003,
+ 0.0
+ ],
+ [
+ 127.361456774,
+ 50.405845773700001,
+ 0.0
+ ],
+ [
+ 127.351852931,
+ 50.438301749399997,
+ 0.0
+ ],
+ [
+ 127.353072583,
+ 50.445781904500002,
+ 0.0
+ ],
+ [
+ 127.356708516,
+ 50.452937030400001,
+ 0.0
+ ],
+ [
+ 127.370498285,
+ 50.4650482594,
+ 0.0
+ ],
+ [
+ 127.390840525,
+ 50.472538709600002,
+ 0.0
+ ],
+ [
+ 127.40239705899999,
+ 50.4741071065,
+ 0.0
+ ],
+ [
+ 127.425772605,
+ 50.4725497895,
+ 0.0
+ ],
+ [
+ 127.44612657099999,
+ 50.465072247599998,
+ 0.0
+ ],
+ [
+ 127.459935298,
+ 50.452969772499998,
+ 0.0
+ ],
+ [
+ 127.463591131,
+ 50.445790801,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283045,
+ "name": "Ignatyevo Airport",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "50.3160004679046",
+ "lng": "127.449057086331",
+ "radius": 4607,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.451699679,
+ 50.357398048100002,
+ 0.0
+ ],
+ [
+ 127.493522044,
+ 50.285835625300003,
+ 0.0
+ ],
+ [
+ 127.427581659,
+ 50.276905734,
+ 0.0
+ ],
+ [
+ 127.42030608899999,
+ 50.353146314200004,
+ 0.0
+ ],
+ [
+ 127.451699679,
+ 50.357398048100002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283045,
+ "name": "Ignatyevo Airport",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "50.5356595203539",
+ "lng": "127.375837088646",
+ "radius": 4606,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.397376335,
+ 50.574759530800002,
+ 0.0
+ ],
+ [
+ 127.40469445399999,
+ 50.498519277,
+ 0.0
+ ],
+ [
+ 127.373230515,
+ 50.4942670991,
+ 0.0
+ ],
+ [
+ 127.33111827899999,
+ 50.565804486,
+ 0.0
+ ],
+ [
+ 127.397376335,
+ 50.574759530800002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283045,
+ "name": "Ignatyevo Airport",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "50.3699641755583",
+ "lng": "127.431112997979",
+ "radius": 2021,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.433737193,
+ 50.388063057700002,
+ 0.0
+ ],
+ [
+ 127.451699679,
+ 50.357398048100002,
+ 0.0
+ ],
+ [
+ 127.42030608899999,
+ 50.353146314200004,
+ 0.0
+ ],
+ [
+ 127.417180831,
+ 50.385820709299999,
+ 0.0
+ ],
+ [
+ 127.433737193,
+ 50.388063057700002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283045,
+ "name": "Ignatyevo Airport",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "50.4817008435906",
+ "lng": "127.393867412341",
+ "radius": 2020,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.40469445399999,
+ 50.498519277,
+ 0.0
+ ],
+ [
+ 127.407823562,
+ 50.4658447423,
+ 0.0
+ ],
+ [
+ 127.391239588,
+ 50.463603577400001,
+ 0.0
+ ],
+ [
+ 127.373230515,
+ 50.4942670991,
+ 0.0
+ ],
+ [
+ 127.40469445399999,
+ 50.498519277,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283045,
+ "name": "Ignatyevo Airport",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "50.4258321323478",
+ "lng": "127.41249166834",
+ "radius": 4461,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.407823562,
+ 50.4658447423,
+ 0.0
+ ],
+ [
+ 127.433737193,
+ 50.388063057700002,
+ 0.0
+ ],
+ [
+ 127.417180831,
+ 50.385820709299999,
+ 0.0
+ ],
+ [
+ 127.391239588,
+ 50.463603577400001,
+ 0.0
+ ],
+ [
+ 127.407823562,
+ 50.4658447423,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001463,
+ "name": "Heihe Airport",
+ "country": "CN",
+ "city": "Heihe",
+ "height": 500,
+ "level": 2,
+ "lat": "50.178687",
+ "lng": "127.313566",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.313566,
+ 50.62817841792927,
+ 500.0
+ ],
+ [
+ 127.436253905168442,
+ 50.621285574852962,
+ 500.0
+ ],
+ [
+ 127.555109728757216,
+ 50.600822368530011,
+ 500.0
+ ],
+ [
+ 127.666430843522477,
+ 50.567427485180744,
+ 500.0
+ ],
+ [
+ 127.766767904844386,
+ 50.522141445707263,
+ 500.0
+ ],
+ [
+ 127.853037836782732,
+ 50.466371763666722,
+ 500.0
+ ],
+ [
+ 127.922621527893739,
+ 50.4018462680909,
+ 500.0
+ ],
+ [
+ 127.973442821724447,
+ 50.330556510791794,
+ 500.0
+ ],
+ [
+ 128.004026565634774,
+ 50.254693492174752,
+ 500.0
+ ],
+ [
+ 128.013534681697564,
+ 50.17657811849562,
+ 500.0
+ ],
+ [
+ 128.00178033358938,
+ 50.098588852228652,
+ 500.0
+ ],
+ [
+ 127.969221199361073,
+ 50.023088952080947,
+ 500.0
+ ],
+ [
+ 127.916933571857413,
+ 49.952355543696115,
+ 500.0
+ ],
+ [
+ 127.846569481259877,
+ 49.888512542735583,
+ 500.0
+ ],
+ [
+ 127.76029928264235,
+ 49.83346919458851,
+ 500.0
+ ],
+ [
+ 127.660742212230772,
+ 49.788865721704028,
+ 500.0
+ ],
+ [
+ 127.550887338521747,
+ 49.756027297539156,
+ 500.0
+ ],
+ [
+ 127.434007171930148,
+ 49.735927306655455,
+ 500.0
+ ],
+ [
+ 127.313566,
+ 49.729160609287717,
+ 500.0
+ ],
+ [
+ 127.193124828069841,
+ 49.735927306655455,
+ 500.0
+ ],
+ [
+ 127.076244661478242,
+ 49.756027297539156,
+ 500.0
+ ],
+ [
+ 126.966389787769216,
+ 49.788865721704028,
+ 500.0
+ ],
+ [
+ 126.866832717357639,
+ 49.83346919458851,
+ 500.0
+ ],
+ [
+ 126.780562518740112,
+ 49.888512542735583,
+ 500.0
+ ],
+ [
+ 126.710198428142576,
+ 49.952355543696115,
+ 500.0
+ ],
+ [
+ 126.657910800638916,
+ 50.023088952080947,
+ 500.0
+ ],
+ [
+ 126.625351666410609,
+ 50.098588852228652,
+ 500.0
+ ],
+ [
+ 126.613597318302411,
+ 50.17657811849562,
+ 500.0
+ ],
+ [
+ 126.623105434365229,
+ 50.254693492174752,
+ 500.0
+ ],
+ [
+ 126.653689178275542,
+ 50.330556510791794,
+ 500.0
+ ],
+ [
+ 126.70451047210625,
+ 50.4018462680909,
+ 500.0
+ ],
+ [
+ 126.774094163217256,
+ 50.466371763666722,
+ 500.0
+ ],
+ [
+ 126.860364095155603,
+ 50.522141445707263,
+ 500.0
+ ],
+ [
+ 126.960701156477512,
+ 50.567427485180744,
+ 500.0
+ ],
+ [
+ 127.072022271242773,
+ 50.600822368530011,
+ 500.0
+ ],
+ [
+ 127.190878094831547,
+ 50.621285574852962,
+ 500.0
+ ],
+ [
+ 127.313566,
+ 50.62817841792927,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1392,
+ "name": "Heihe Airport",
+ "country": "CN",
+ "city": "Heihe",
+ "height": 0,
+ "level": 2,
+ "lat": "50.2131901792095",
+ "lng": "127.291139804446",
+ "radius": 13264,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.29602462,
+ 50.247738825699997,
+ 0.0
+ ],
+ [
+ 127.262667541,
+ 50.331084893499998,
+ 0.0
+ ],
+ [
+ 127.166397002,
+ 50.301902217699997,
+ 0.0
+ ],
+ [
+ 127.233070336,
+ 50.228580953300003,
+ 0.0
+ ],
+ [
+ 127.20905425399999,
+ 50.206569887199997,
+ 0.0
+ ],
+ [
+ 127.202246042,
+ 50.190554013300002,
+ 0.0
+ ],
+ [
+ 127.20214663599999,
+ 50.173955896199999,
+ 0.0
+ ],
+ [
+ 127.208755975,
+ 50.1579066858,
+ 0.0
+ ],
+ [
+ 127.251269302,
+ 50.112645457699998,
+ 0.0
+ ],
+ [
+ 127.27233783,
+ 50.103005840599998,
+ 0.0
+ ],
+ [
+ 127.322325234,
+ 50.095584578100002,
+ 0.0
+ ],
+ [
+ 127.29602462,
+ 50.247738825699997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1392,
+ "name": "Heihe Airport",
+ "country": "CN",
+ "city": "Heihe",
+ "height": 0,
+ "level": 2,
+ "lat": "50.1331186372278",
+ "lng": "127.339611313626",
+ "radius": 13117,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.355628083,
+ 50.015599037599998,
+ 0.0
+ ],
+ [
+ 127.451908273,
+ 50.039711694899999,
+ 0.0
+ ],
+ [
+ 127.381903281,
+ 50.113024251500001,
+ 0.0
+ ],
+ [
+ 127.412170589,
+ 50.139981959700002,
+ 0.0
+ ],
+ [
+ 127.418049743,
+ 50.156146992099998,
+ 0.0
+ ],
+ [
+ 127.417200159,
+ 50.172736306499999,
+ 0.0
+ ],
+ [
+ 127.409672923,
+ 50.188619226500002,
+ 0.0
+ ],
+ [
+ 127.367747015,
+ 50.231493971,
+ 0.0
+ ],
+ [
+ 127.321901121,
+ 50.246441407100001,
+ 0.0
+ ],
+ [
+ 127.29602462,
+ 50.247738825699997,
+ 0.0
+ ],
+ [
+ 127.322325234,
+ 50.095584578100002,
+ 0.0
+ ],
+ [
+ 127.355628083,
+ 50.015599037599998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1392,
+ "name": "Heihe Airport",
+ "country": "CN",
+ "city": "Heihe",
+ "height": 120,
+ "level": 2,
+ "lat": "50.17321352526",
+ "lng": "127.308654050319",
+ "radius": 23494,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.572748277,
+ 50.046879212599997,
+ 120.0
+ ],
+ [
+ 127.325850583,
+ 49.962206850299999,
+ 120.0
+ ],
+ [
+ 127.04389866,
+ 50.299580507500004,
+ 120.0
+ ],
+ [
+ 127.292545795,
+ 50.384252867,
+ 120.0
+ ],
+ [
+ 127.572748277,
+ 50.046879212599997,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32764,
+ "name": "西郊",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "49.581542304817",
+ "lng": "117.267699919931",
+ "radius": 13284,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.229295458,
+ 49.607799505,
+ 0.0
+ ],
+ [
+ 117.111021222,
+ 49.644520989299998,
+ 0.0
+ ],
+ [
+ 117.083445149,
+ 49.582579027100003,
+ 0.0
+ ],
+ [
+ 117.210099099,
+ 49.5675906,
+ 0.0
+ ],
+ [
+ 117.223359919,
+ 49.536992071199997,
+ 0.0
+ ],
+ [
+ 117.238987213,
+ 49.523853385700001,
+ 0.0
+ ],
+ [
+ 117.259312799,
+ 49.513784389400001,
+ 0.0
+ ],
+ [
+ 117.319588274,
+ 49.502474678600002,
+ 0.0
+ ],
+ [
+ 117.363834375,
+ 49.499564169599999,
+ 0.0
+ ],
+ [
+ 117.410724181,
+ 49.512058055700003,
+ 0.0
+ ],
+ [
+ 117.428870437,
+ 49.523750606699998,
+ 0.0
+ ],
+ [
+ 117.229295458,
+ 49.607799505,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32764,
+ "name": "西郊",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "49.5532862242285",
+ "lng": "117.392825013371",
+ "radius": 13256,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.547305323,
+ 49.488811263099997,
+ 0.0
+ ],
+ [
+ 117.576553162,
+ 49.550754870900001,
+ 0.0
+ ],
+ [
+ 117.448233681,
+ 49.564076436199997,
+ 0.0
+ ],
+ [
+ 117.436759683,
+ 49.594921456800002,
+ 0.0
+ ],
+ [
+ 117.42188041599999,
+ 49.608431079200003,
+ 0.0
+ ],
+ [
+ 117.37878068,
+ 49.625851838700001,
+ 0.0
+ ],
+ [
+ 117.342078411,
+ 49.630858867900002,
+ 0.0
+ ],
+ [
+ 117.292938363,
+ 49.6336485518,
+ 0.0
+ ],
+ [
+ 117.268441073,
+ 49.628776248500003,
+ 0.0
+ ],
+ [
+ 117.229295458,
+ 49.607799505,
+ 0.0
+ ],
+ [
+ 117.428870437,
+ 49.523750606699998,
+ 0.0
+ ],
+ [
+ 117.547305323,
+ 49.488811263099997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32764,
+ "name": "西郊",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "49.5659956913983",
+ "lng": "117.330574659667",
+ "radius": 23577,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.648880405,
+ 49.6148023915,
+ 120.0
+ ],
+ [
+ 117.591798797,
+ 49.438795613800004,
+ 120.0
+ ],
+ [
+ 117.012328514,
+ 49.5178971148,
+ 120.0
+ ],
+ [
+ 117.069502684,
+ 49.693903892400002,
+ 120.0
+ ],
+ [
+ 117.648880405,
+ 49.6148023915,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001351,
+ "name": "西郊",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "49.566111111111",
+ "lng": "117.332222222222",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.332222222222001,
+ 50.015650211337615,
+ 500.0
+ ],
+ [
+ 117.453343818988188,
+ 50.008758026098867,
+ 500.0
+ ],
+ [
+ 117.570684485720705,
+ 49.988296643910374,
+ 500.0
+ ],
+ [
+ 117.680590741499842,
+ 49.954904324058447,
+ 500.0
+ ],
+ [
+ 117.779658498966413,
+ 49.909620943604395,
+ 500.0
+ ],
+ [
+ 117.864844396566269,
+ 49.853853247053422,
+ 500.0
+ ],
+ [
+ 117.933562155786845,
+ 49.789328279347174,
+ 500.0
+ ],
+ [
+ 117.98376060292037,
+ 49.718036906958652,
+ 500.0
+ ],
+ [
+ 118.013981140332376,
+ 49.642169646089386,
+ 500.0
+ ],
+ [
+ 118.023393620725031,
+ 49.564047197765134,
+ 500.0
+ ],
+ [
+ 118.011810661797938,
+ 49.486048141881852,
+ 500.0
+ ],
+ [
+ 117.979681356162573,
+ 49.410536181697033,
+ 500.0
+ ],
+ [
+ 117.928066033394231,
+ 49.339789179711303,
+ 500.0
+ ],
+ [
+ 117.858594202270936,
+ 49.275932011197177,
+ 500.0
+ ],
+ [
+ 117.773408055081774,
+ 49.220875008056048,
+ 500.0
+ ],
+ [
+ 117.67509398712491,
+ 49.176259495119695,
+ 500.0
+ ],
+ [
+ 117.566604520299137,
+ 49.143411650351418,
+ 500.0
+ ],
+ [
+ 117.451172871379271,
+ 49.123305660902226,
+ 500.0
+ ],
+ [
+ 117.332222222222001,
+ 49.116536904459721,
+ 500.0
+ ],
+ [
+ 117.213271573064731,
+ 49.123305660902226,
+ 500.0
+ ],
+ [
+ 117.097839924144864,
+ 49.143411650351418,
+ 500.0
+ ],
+ [
+ 116.989350457319091,
+ 49.176259495119695,
+ 500.0
+ ],
+ [
+ 116.891036389362228,
+ 49.220875008056048,
+ 500.0
+ ],
+ [
+ 116.805850242173065,
+ 49.275932011197177,
+ 500.0
+ ],
+ [
+ 116.73637841104977,
+ 49.339789179711303,
+ 500.0
+ ],
+ [
+ 116.684763088281429,
+ 49.410536181697033,
+ 500.0
+ ],
+ [
+ 116.652633782646063,
+ 49.486048141881852,
+ 500.0
+ ],
+ [
+ 116.64105082371897,
+ 49.564047197765134,
+ 500.0
+ ],
+ [
+ 116.650463304111625,
+ 49.642169646089386,
+ 500.0
+ ],
+ [
+ 116.680683841523631,
+ 49.718036906958652,
+ 500.0
+ ],
+ [
+ 116.730882288657156,
+ 49.789328279347174,
+ 500.0
+ ],
+ [
+ 116.799600047877732,
+ 49.853853247053422,
+ 500.0
+ ],
+ [
+ 116.884785945477589,
+ 49.909620943604395,
+ 500.0
+ ],
+ [
+ 116.98385370294416,
+ 49.954904324058447,
+ 500.0
+ ],
+ [
+ 117.093759958723297,
+ 49.988296643910374,
+ 500.0
+ ],
+ [
+ 117.211100625455813,
+ 50.008758026098867,
+ 500.0
+ ],
+ [
+ 117.332222222222001,
+ 50.015650211337615,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288582,
+ "name": "Krasnokamensk Airport",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "50.0320796627441",
+ "lng": "118.06165042275",
+ "radius": 7934,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.042664745,
+ 50.068728883600002,
+ 0.0
+ ],
+ [
+ 118.09568990299999,
+ 50.000246218299999,
+ 0.0
+ ],
+ [
+ 118.12485139499999,
+ 49.973412741,
+ 0.0
+ ],
+ [
+ 118.096347011,
+ 49.964296534299997,
+ 0.0
+ ],
+ [
+ 118.0806595,
+ 49.995438512500002,
+ 0.0
+ ],
+ [
+ 118.027611327,
+ 50.063923197,
+ 0.0
+ ],
+ [
+ 117.998387232,
+ 50.090753270299999,
+ 0.0
+ ],
+ [
+ 118.026943028,
+ 50.099870850800002,
+ 0.0
+ ],
+ [
+ 118.042664745,
+ 50.068728883600002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33244,
+ "name": "海拉尔",
+ "country": "CN",
+ "city": "呼伦贝尔",
+ "height": 0,
+ "level": 2,
+ "lat": "49.1986003329747",
+ "lng": "119.760957294195",
+ "radius": 13111,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.713713275,
+ 49.217540252799999,
+ 0.0
+ ],
+ [
+ 119.583739793,
+ 49.220952736699999,
+ 0.0
+ ],
+ [
+ 119.594049309,
+ 49.1539051914,
+ 0.0
+ ],
+ [
+ 119.717380686,
+ 49.175572430499997,
+ 0.0
+ ],
+ [
+ 119.74525042099999,
+ 49.152445594600003,
+ 0.0
+ ],
+ [
+ 119.767025915,
+ 49.143923537699997,
+ 0.0
+ ],
+ [
+ 119.816793717,
+ 49.139104369400002,
+ 0.0
+ ],
+ [
+ 119.899112579,
+ 49.153872788,
+ 0.0
+ ],
+ [
+ 119.918406432,
+ 49.164657185099998,
+ 0.0
+ ],
+ [
+ 119.932782898,
+ 49.178337640800002,
+ 0.0
+ ],
+ [
+ 119.941259934,
+ 49.193983825,
+ 0.0
+ ],
+ [
+ 119.713713275,
+ 49.217540252799999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33244,
+ "name": "海拉尔",
+ "country": "CN",
+ "city": "呼伦贝尔",
+ "height": 0,
+ "level": 2,
+ "lat": "49.2057310510621",
+ "lng": "119.894832600438",
+ "radius": 13221,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.07462019499999,
+ 49.187396417099997,
+ 0.0
+ ],
+ [
+ 120.060948291,
+ 49.254429736,
+ 0.0
+ ],
+ [
+ 119.93425477,
+ 49.236105993400002,
+ 0.0
+ ],
+ [
+ 119.9065132,
+ 49.259159282600002,
+ 0.0
+ ],
+ [
+ 119.884711716,
+ 49.267708355700002,
+ 0.0
+ ],
+ [
+ 119.834821339,
+ 49.272558501299997,
+ 0.0
+ ],
+ [
+ 119.755729016,
+ 49.257734425300001,
+ 0.0
+ ],
+ [
+ 119.736443872,
+ 49.246915715599997,
+ 0.0
+ ],
+ [
+ 119.722113894,
+ 49.2332055595,
+ 0.0
+ ],
+ [
+ 119.713713275,
+ 49.217540252799999,
+ 0.0
+ ],
+ [
+ 119.941259934,
+ 49.193983825,
+ 0.0
+ ],
+ [
+ 120.07462019499999,
+ 49.187396417099997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33244,
+ "name": "海拉尔",
+ "country": "CN",
+ "city": "呼伦贝尔",
+ "height": 120,
+ "level": 2,
+ "lat": "49.2051567333858",
+ "lng": "119.826876415417",
+ "radius": 23693,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.091391852,
+ 49.330101553900001,
+ 120.0
+ ],
+ [
+ 120.143089793,
+ 49.153432417799998,
+ 120.0
+ ],
+ [
+ 119.56223635,
+ 49.080929200500002,
+ 120.0
+ ],
+ [
+ 119.510614159,
+ 49.257598336800001,
+ 120.0
+ ],
+ [
+ 120.091391852,
+ 49.330101553900001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001495,
+ "name": "海拉尔",
+ "country": "CN",
+ "city": "呼伦贝尔",
+ "height": 500,
+ "level": 2,
+ "lat": "49.2058333333334",
+ "lng": "119.826666666667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.826666666666654,
+ 49.655400559938904,
+ 500.0
+ ],
+ [
+ 119.946892015653219,
+ 49.648508744004815,
+ 500.0
+ ],
+ [
+ 120.063365686647032,
+ 49.628048383989068,
+ 500.0
+ ],
+ [
+ 120.172462306231481,
+ 49.594657494145189,
+ 500.0
+ ],
+ [
+ 120.270803674479851,
+ 49.549375582087279,
+ 500.0
+ ],
+ [
+ 120.355369152474239,
+ 49.49360895119603,
+ 500.0
+ ],
+ [
+ 120.423591254152441,
+ 49.429084196986999,
+ 500.0
+ ],
+ [
+ 120.473433113223123,
+ 49.357791793675062,
+ 500.0
+ ],
+ [
+ 120.503445622456297,
+ 49.28192198129323,
+ 500.0
+ ],
+ [
+ 120.512803193226006,
+ 49.203795345592084,
+ 500.0
+ ],
+ [
+ 120.501318152155434,
+ 49.125790537224582,
+ 500.0
+ ],
+ [
+ 120.469434698585118,
+ 49.050271518791824,
+ 500.0
+ ],
+ [
+ 120.418204042939166,
+ 48.979516580620817,
+ 500.0
+ ],
+ [
+ 120.349242816273929,
+ 48.915651154149167,
+ 500.0
+ ],
+ [
+ 120.264677098132509,
+ 48.860586200448239,
+ 500.0
+ ],
+ [
+ 120.167074486944585,
+ 48.815963682412608,
+ 500.0
+ ],
+ [
+ 120.059366580533208,
+ 48.783110359263958,
+ 500.0
+ ],
+ [
+ 119.944764094023569,
+ 48.763000882502681,
+ 500.0
+ ],
+ [
+ 119.826666666666654,
+ 48.7562309291717,
+ 500.0
+ ],
+ [
+ 119.708569239309739,
+ 48.763000882502681,
+ 500.0
+ ],
+ [
+ 119.5939667528001,
+ 48.783110359263958,
+ 500.0
+ ],
+ [
+ 119.486258846388722,
+ 48.815963682412608,
+ 500.0
+ ],
+ [
+ 119.388656235200799,
+ 48.860586200448239,
+ 500.0
+ ],
+ [
+ 119.304090517059379,
+ 48.915651154149167,
+ 500.0
+ ],
+ [
+ 119.235129290394141,
+ 48.979516580620817,
+ 500.0
+ ],
+ [
+ 119.183898634748189,
+ 49.050271518791824,
+ 500.0
+ ],
+ [
+ 119.152015181177873,
+ 49.125790537224582,
+ 500.0
+ ],
+ [
+ 119.140530140107302,
+ 49.203795345592084,
+ 500.0
+ ],
+ [
+ 119.14988771087701,
+ 49.28192198129323,
+ 500.0
+ ],
+ [
+ 119.179900220110184,
+ 49.357791793675062,
+ 500.0
+ ],
+ [
+ 119.229742079180866,
+ 49.429084196986999,
+ 500.0
+ ],
+ [
+ 119.297964180859069,
+ 49.49360895119603,
+ 500.0
+ ],
+ [
+ 119.382529658853457,
+ 49.549375582087279,
+ 500.0
+ ],
+ [
+ 119.480871027101827,
+ 49.594657494145189,
+ 500.0
+ ],
+ [
+ 119.589967646686276,
+ 49.628048383989068,
+ 500.0
+ ],
+ [
+ 119.706441317680088,
+ 49.648508744004815,
+ 500.0
+ ],
+ [
+ 119.826666666666654,
+ 49.655400559938904,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32779,
+ "name": "喀纳斯",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "48.2481989555141",
+ "lng": "86.9446565463958",
+ "radius": 13219,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 86.926653939700003,
+ 48.28456993,
+ 0.0
+ ],
+ [
+ 86.836666267699997,
+ 48.342925716899998,
+ 0.0
+ ],
+ [
+ 86.778191191399998,
+ 48.291296727300001,
+ 0.0
+ ],
+ [
+ 86.8915102821,
+ 48.251332522399998,
+ 0.0
+ ],
+ [
+ 86.886440678699998,
+ 48.221552161300004,
+ 0.0
+ ],
+ [
+ 86.892745933699999,
+ 48.205494498299998,
+ 0.0
+ ],
+ [
+ 86.9050669943,
+ 48.191070430800004,
+ 0.0
+ ],
+ [
+ 86.949189559600001,
+ 48.162614613700001,
+ 0.0
+ ],
+ [
+ 86.993890598500002,
+ 48.149255894900001,
+ 0.0
+ ],
+ [
+ 87.018756377900004,
+ 48.148743967100003,
+ 0.0
+ ],
+ [
+ 87.064904565800006,
+ 48.160380991099998,
+ 0.0
+ ],
+ [
+ 86.926653939700003,
+ 48.28456993,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32779,
+ "name": "喀纳斯",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "48.1988584572449",
+ "lng": "87.0493253916157",
+ "radius": 13166,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 87.151578532299993,
+ 48.102075659500002,
+ 0.0
+ ],
+ [
+ 87.213472911599993,
+ 48.153698232399996,
+ 0.0
+ ],
+ [
+ 87.1034599953,
+ 48.197061967099998,
+ 0.0
+ ],
+ [
+ 87.1073967807,
+ 48.227538428700001,
+ 0.0
+ ],
+ [
+ 87.100319089,
+ 48.243453122200002,
+ 0.0
+ ],
+ [
+ 87.087291889599996,
+ 48.2576042663,
+ 0.0
+ ],
+ [
+ 87.069200172,
+ 48.269025662099999,
+ 0.0
+ ],
+ [
+ 86.998792329099999,
+ 48.292582603600003,
+ 0.0
+ ],
+ [
+ 86.973960998199999,
+ 48.294185149699999,
+ 0.0
+ ],
+ [
+ 86.926653939700003,
+ 48.28456993,
+ 0.0
+ ],
+ [
+ 87.064904565800006,
+ 48.160380991099998,
+ 0.0
+ ],
+ [
+ 87.151578532299993,
+ 48.102075659500002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32779,
+ "name": "喀纳斯",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "48.2220702807781",
+ "lng": "86.9944657128305",
+ "radius": 23517,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 87.306947471399994,
+ 48.185250978500001,
+ 120.0
+ ],
+ [
+ 87.1514753461,
+ 48.038364544499998,
+ 120.0
+ ],
+ [
+ 86.6818690363,
+ 48.259306065200001,
+ 120.0
+ ],
+ [
+ 86.838013676299994,
+ 48.406192498,
+ 120.0
+ ],
+ [
+ 87.306947471399994,
+ 48.185250978500001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001361,
+ "name": "喀纳斯",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "48.2225",
+ "lng": "86.995833333333",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 86.995833333332996,
+ 48.672144264896545,
+ 500.0
+ ],
+ [
+ 87.113702203358955,
+ 48.665253394235179,
+ 500.0
+ ],
+ [
+ 87.227896248625882,
+ 48.644795643580593,
+ 500.0
+ ],
+ [
+ 87.334863949416857,
+ 48.611408380094375,
+ 500.0
+ ],
+ [
+ 87.431295140333603,
+ 48.566130136019403,
+ 500.0
+ ],
+ [
+ 87.514228919312785,
+ 48.510366050758293,
+ 500.0
+ ],
+ [
+ 87.581147228936899,
+ 48.44584153512843,
+ 500.0
+ ],
+ [
+ 87.63005086266746,
+ 48.374546031410638,
+ 500.0
+ ],
+ [
+ 87.65951572614587,
+ 48.298669056646361,
+ 500.0
+ ],
+ [
+ 87.668728287569408,
+ 48.220530901323187,
+ 500.0
+ ],
+ [
+ 87.657500181109967,
+ 48.142510415197435,
+ 500.0
+ ],
+ [
+ 87.626262806448779,
+ 48.066972261025477,
+ 500.0
+ ],
+ [
+ 87.576043448809145,
+ 47.996195876817517,
+ 500.0
+ ],
+ [
+ 87.508424911308211,
+ 47.932308182388894,
+ 500.0
+ ],
+ [
+ 87.425490915871237,
+ 47.877221820593164,
+ 500.0
+ ],
+ [
+ 87.329759621198676,
+ 47.832580458799058,
+ 500.0
+ ],
+ [
+ 87.224107569141751,
+ 47.799712408402051,
+ 500.0
+ ],
+ [
+ 87.111686251515437,
+ 47.779593560632115,
+ 500.0
+ ],
+ [
+ 86.995833333332996,
+ 47.772820391667956,
+ 500.0
+ ],
+ [
+ 86.879980415150555,
+ 47.779593560632115,
+ 500.0
+ ],
+ [
+ 86.767559097524241,
+ 47.799712408402051,
+ 500.0
+ ],
+ [
+ 86.661907045467316,
+ 47.832580458799058,
+ 500.0
+ ],
+ [
+ 86.566175750794756,
+ 47.877221820593164,
+ 500.0
+ ],
+ [
+ 86.483241755357781,
+ 47.932308182388894,
+ 500.0
+ ],
+ [
+ 86.415623217856847,
+ 47.996195876817517,
+ 500.0
+ ],
+ [
+ 86.365403860217214,
+ 48.066972261025477,
+ 500.0
+ ],
+ [
+ 86.334166485556025,
+ 48.142510415197435,
+ 500.0
+ ],
+ [
+ 86.322938379096584,
+ 48.220530901323187,
+ 500.0
+ ],
+ [
+ 86.332150940520123,
+ 48.298669056646361,
+ 500.0
+ ],
+ [
+ 86.361615803998532,
+ 48.374546031410638,
+ 500.0
+ ],
+ [
+ 86.410519437729093,
+ 48.44584153512843,
+ 500.0
+ ],
+ [
+ 86.477437747353207,
+ 48.510366050758293,
+ 500.0
+ ],
+ [
+ 86.560371526332389,
+ 48.566130136019403,
+ 500.0
+ ],
+ [
+ 86.656802717249136,
+ 48.611408380094375,
+ 500.0
+ ],
+ [
+ 86.76377041804011,
+ 48.644795643580593,
+ 500.0
+ ],
+ [
+ 86.877964463307038,
+ 48.665253394235179,
+ 500.0
+ ],
+ [
+ 86.995833333332996,
+ 48.672144264896545,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002563,
+ "name": "五大连池德都机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "48.4371763793487",
+ "lng": "126.112003301168",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 126.112003301167874,
+ 48.886803794766351,
+ 500.0
+ ],
+ [
+ 126.230375720588938,
+ 48.879912725316508,
+ 500.0
+ ],
+ [
+ 126.345056899726814,
+ 48.859454426818814,
+ 500.0
+ ],
+ [
+ 126.452479543125378,
+ 48.82606640507526,
+ 500.0
+ ],
+ [
+ 126.549318950960611,
+ 48.780787401268562,
+ 500.0
+ ],
+ [
+ 126.632601457025913,
+ 48.725022804065276,
+ 500.0
+ ],
+ [
+ 126.699798439442461,
+ 48.660498277835686,
+ 500.0
+ ],
+ [
+ 126.748902639242857,
+ 48.58920348545994,
+ 500.0
+ ],
+ [
+ 126.77848460990576,
+ 48.513328098092039,
+ 500.0
+ ],
+ [
+ 126.787728234705156,
+ 48.435192468337519,
+ 500.0
+ ],
+ [
+ 126.776445287002986,
+ 48.357175401768117,
+ 500.0
+ ],
+ [
+ 126.745069893645109,
+ 48.281641409228314,
+ 500.0
+ ],
+ [
+ 126.694634446159753,
+ 48.21086968061109,
+ 500.0
+ ],
+ [
+ 126.6267289725198,
+ 48.146986814400478,
+ 500.0
+ ],
+ [
+ 126.543446245070825,
+ 48.091905090606318,
+ 500.0
+ ],
+ [
+ 126.447314989279519,
+ 48.047267808991144,
+ 500.0
+ ],
+ [
+ 126.341223516680159,
+ 48.01440294625997,
+ 500.0
+ ],
+ [
+ 126.228335981620944,
+ 47.994286126355213,
+ 500.0
+ ],
+ [
+ 126.112003301167874,
+ 47.987513653171796,
+ 500.0
+ ],
+ [
+ 125.995670620714804,
+ 47.994286126355213,
+ 500.0
+ ],
+ [
+ 125.882783085655589,
+ 48.01440294625997,
+ 500.0
+ ],
+ [
+ 125.776691613056229,
+ 48.047267808991144,
+ 500.0
+ ],
+ [
+ 125.680560357264923,
+ 48.091905090606318,
+ 500.0
+ ],
+ [
+ 125.597277629815949,
+ 48.146986814400478,
+ 500.0
+ ],
+ [
+ 125.529372156175995,
+ 48.21086968061109,
+ 500.0
+ ],
+ [
+ 125.47893670869064,
+ 48.281641409228314,
+ 500.0
+ ],
+ [
+ 125.447561315332763,
+ 48.357175401768117,
+ 500.0
+ ],
+ [
+ 125.436278367630592,
+ 48.435192468337519,
+ 500.0
+ ],
+ [
+ 125.445521992429988,
+ 48.513328098092039,
+ 500.0
+ ],
+ [
+ 125.475103963092891,
+ 48.58920348545994,
+ 500.0
+ ],
+ [
+ 125.524208162893288,
+ 48.660498277835686,
+ 500.0
+ ],
+ [
+ 125.591405145309835,
+ 48.725022804065276,
+ 500.0
+ ],
+ [
+ 125.674687651375137,
+ 48.780787401268562,
+ 500.0
+ ],
+ [
+ 125.771527059210371,
+ 48.82606640507526,
+ 500.0
+ ],
+ [
+ 125.878949702608935,
+ 48.859454426818814,
+ 500.0
+ ],
+ [
+ 125.99363088174681,
+ 48.879912725316508,
+ 500.0
+ ],
+ [
+ 126.112003301167874,
+ 48.886803794766351,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002562,
+ "name": "五大连池德都机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "48.455861275603",
+ "lng": "126.191578333886",
+ "radius": 13342,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 126.24421671899999,
+ 48.446841257400003,
+ 0.0
+ ],
+ [
+ 126.372143479,
+ 48.463686120600002,
+ 0.0
+ ],
+ [
+ 126.338616397,
+ 48.525883002,
+ 0.0
+ ],
+ [
+ 126.223527634,
+ 48.485251731399998,
+ 0.0
+ ],
+ [
+ 126.184087424,
+ 48.507551273,
+ 0.0
+ ],
+ [
+ 126.135126695,
+ 48.513132844200001,
+ 0.0
+ ],
+ [
+ 126.110690813,
+ 48.5094658143,
+ 0.0
+ ],
+ [
+ 126.052939889,
+ 48.493174670099997,
+ 0.0
+ ],
+ [
+ 126.03465899299999,
+ 48.481830180400003,
+ 0.0
+ ],
+ [
+ 126.021438753,
+ 48.467734519499999,
+ 0.0
+ ],
+ [
+ 126.013364465,
+ 48.435260653699999,
+ 0.0
+ ],
+ [
+ 126.24421671899999,
+ 48.446841257400003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002562,
+ "name": "五大连池德都机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "48.4260288869685",
+ "lng": "126.066118268663",
+ "radius": 13340,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.885701392,
+ 48.418331396500001,
+ 0.0
+ ],
+ [
+ 125.919254631,
+ 48.356143593100001,
+ 0.0
+ ],
+ [
+ 126.03401364699999,
+ 48.397008281200002,
+ 0.0
+ ],
+ [
+ 126.052280538,
+ 48.383585022600002,
+ 0.0
+ ],
+ [
+ 126.09728209799999,
+ 48.369810570299997,
+ 0.0
+ ],
+ [
+ 126.12224768,
+ 48.369153948700003,
+ 0.0
+ ],
+ [
+ 126.180139201,
+ 48.380765628299997,
+ 0.0
+ ],
+ [
+ 126.22263256,
+ 48.400333441299999,
+ 0.0
+ ],
+ [
+ 126.243288709,
+ 48.430254440299997,
+ 0.0
+ ],
+ [
+ 126.24421671899999,
+ 48.446841257400003,
+ 0.0
+ ],
+ [
+ 126.013364465,
+ 48.435260653699999,
+ 0.0
+ ],
+ [
+ 125.885701392,
+ 48.418331396500001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002562,
+ "name": "五大连池德都机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "48.440552322541",
+ "lng": "126.129065672832",
+ "radius": 23541,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.902662986,
+ 48.291566161,
+ 120.0
+ ],
+ [
+ 125.811346938,
+ 48.460894554200003,
+ 120.0
+ ],
+ [
+ 126.35519846,
+ 48.590153096199998,
+ 120.0
+ ],
+ [
+ 126.446747172,
+ 48.420824703299999,
+ 120.0
+ ],
+ [
+ 125.902662986,
+ 48.291566161,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001462,
+ "name": "东极",
+ "country": "CN",
+ "city": "抚远",
+ "height": 500,
+ "level": 2,
+ "lat": "48.1975",
+ "lng": "134.365",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 134.365,
+ 48.647146228116512,
+ 500.0
+ ],
+ [
+ 134.482810616087988,
+ 48.64025538033767,
+ 500.0
+ ],
+ [
+ 134.596948306229621,
+ 48.619797692712481,
+ 500.0
+ ],
+ [
+ 134.703863375547002,
+ 48.586410516350213,
+ 500.0
+ ],
+ [
+ 134.800247339952847,
+ 48.541132359303134,
+ 500.0
+ ],
+ [
+ 134.883140773994882,
+ 48.485368332117424,
+ 500.0
+ ],
+ [
+ 134.950026842498914,
+ 48.420843816262909,
+ 500.0
+ ],
+ [
+ 134.998907270659402,
+ 48.349548228496296,
+ 500.0
+ ],
+ [
+ 135.028358583542683,
+ 48.273671068043633,
+ 500.0
+ ],
+ [
+ 135.037567548683654,
+ 48.195532618241238,
+ 500.0
+ ],
+ [
+ 135.026345784456652,
+ 48.117511734016034,
+ 500.0
+ ],
+ [
+ 134.995124375322746,
+ 48.041973095781479,
+ 500.0
+ ],
+ [
+ 134.944930015989314,
+ 47.971196170355462,
+ 500.0
+ ],
+ [
+ 134.877344673884124,
+ 47.907307914845809,
+ 500.0
+ ],
+ [
+ 134.794451023949421,
+ 47.8522210142077,
+ 500.0
+ ],
+ [
+ 134.698766002377965,
+ 47.807579178459335,
+ 500.0
+ ],
+ [
+ 134.593164789254814,
+ 47.774710757824352,
+ 500.0
+ ],
+ [
+ 134.480797411256475,
+ 47.754591674540166,
+ 500.0
+ ],
+ [
+ 134.365,
+ 47.747818424771403,
+ 500.0
+ ],
+ [
+ 134.249202588743543,
+ 47.754591674540166,
+ 500.0
+ ],
+ [
+ 134.136835210745204,
+ 47.774710757824352,
+ 500.0
+ ],
+ [
+ 134.031233997622053,
+ 47.807579178459335,
+ 500.0
+ ],
+ [
+ 133.935548976050598,
+ 47.8522210142077,
+ 500.0
+ ],
+ [
+ 133.852655326115894,
+ 47.907307914845809,
+ 500.0
+ ],
+ [
+ 133.785069984010704,
+ 47.971196170355462,
+ 500.0
+ ],
+ [
+ 133.734875624677272,
+ 48.041973095781479,
+ 500.0
+ ],
+ [
+ 133.703654215543366,
+ 48.117511734016034,
+ 500.0
+ ],
+ [
+ 133.692432451316364,
+ 48.195532618241238,
+ 500.0
+ ],
+ [
+ 133.701641416457335,
+ 48.273671068043633,
+ 500.0
+ ],
+ [
+ 133.731092729340617,
+ 48.349548228496296,
+ 500.0
+ ],
+ [
+ 133.779973157501104,
+ 48.420843816262909,
+ 500.0
+ ],
+ [
+ 133.846859226005137,
+ 48.485368332117424,
+ 500.0
+ ],
+ [
+ 133.929752660047171,
+ 48.541132359303134,
+ 500.0
+ ],
+ [
+ 134.026136624453017,
+ 48.586410516350213,
+ 500.0
+ ],
+ [
+ 134.133051693770398,
+ 48.619797692712481,
+ 500.0
+ ],
+ [
+ 134.24718938391203,
+ 48.64025538033767,
+ 500.0
+ ],
+ [
+ 134.365,
+ 48.647146228116512,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33208,
+ "name": "东极",
+ "country": "CN",
+ "city": "抚远",
+ "height": 0,
+ "level": 2,
+ "lat": "48.1694230299251",
+ "lng": "134.313627264213",
+ "radius": 13215,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 134.25988280199999,
+ 48.168592667,
+ 0.0
+ ],
+ [
+ 134.148194640000014,
+ 48.125364652800002,
+ 0.0
+ ],
+ [
+ 134.215153735,
+ 48.0704118142,
+ 0.0
+ ],
+ [
+ 134.300141746,
+ 48.133744508699998,
+ 0.0
+ ],
+ [
+ 134.34176355299999,
+ 48.1253006978,
+ 0.0
+ ],
+ [
+ 134.366576213,
+ 48.126391326899999,
+ 0.0
+ ],
+ [
+ 134.43918319299999,
+ 48.152635254499998,
+ 0.0
+ ],
+ [
+ 134.46865019399999,
+ 48.177625394499998,
+ 0.0
+ ],
+ [
+ 134.475603819000014,
+ 48.193563020799999,
+ 0.0
+ ],
+ [
+ 134.470201249000013,
+ 48.2262779888,
+ 0.0
+ ],
+ [
+ 134.25988280199999,
+ 48.168592667,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33208,
+ "name": "东极",
+ "country": "CN",
+ "city": "抚远",
+ "height": 0,
+ "level": 2,
+ "lat": "48.2243052905421",
+ "lng": "134.415106702033",
+ "radius": 13067,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 134.57682706599999,
+ 48.27134061,
+ 0.0
+ ],
+ [
+ 134.514882124,
+ 48.321256608,
+ 0.0
+ ],
+ [
+ 134.42990176699999,
+ 48.261257350699999,
+ 0.0
+ ],
+ [
+ 134.384505464999989,
+ 48.270535472200002,
+ 0.0
+ ],
+ [
+ 134.359658450000012,
+ 48.269131488100001,
+ 0.0
+ ],
+ [
+ 134.336208277999987,
+ 48.263489891500001,
+ 0.0
+ ],
+ [
+ 134.287466222,
+ 48.239022715799997,
+ 0.0
+ ],
+ [
+ 134.262687026,
+ 48.217220325,
+ 0.0
+ ],
+ [
+ 134.255321943000013,
+ 48.2013643688,
+ 0.0
+ ],
+ [
+ 134.254367556,
+ 48.184778327300002,
+ 0.0
+ ],
+ [
+ 134.25988280199999,
+ 48.168592667,
+ 0.0
+ ],
+ [
+ 134.470201249000013,
+ 48.2262779888,
+ 0.0
+ ],
+ [
+ 134.57682706599999,
+ 48.27134061,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33208,
+ "name": "东极",
+ "country": "CN",
+ "city": "抚远",
+ "height": 120,
+ "level": 2,
+ "lat": "48.1962343658762",
+ "lng": "134.363867648218",
+ "radius": 23517,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 134.520438547999987,
+ 48.380294264,
+ 120.0
+ ],
+ [
+ 134.676348714999989,
+ 48.233334975,
+ 120.0
+ ],
+ [
+ 134.20673977199999,
+ 48.0125989617,
+ 120.0
+ ],
+ [
+ 134.051499877999987,
+ 48.159558251900002,
+ 120.0
+ ],
+ [
+ 134.520438547999987,
+ 48.380294264,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284311,
+ "name": "Khabarovsk-Novy Airport",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "48.528863247498",
+ "lng": "135.189269955619",
+ "radius": 5986,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 135.19262764312046,
+ 48.575024216868307,
+ 0.0
+ ],
+ [
+ 135.209015878,
+ 48.577306196,
+ 0.0
+ ],
+ [
+ 135.220319885,
+ 48.576517364,
+ 0.0
+ ],
+ [
+ 135.24096743199999,
+ 48.570425393,
+ 0.0
+ ],
+ [
+ 135.256078529,
+ 48.559301072700002,
+ 0.0
+ ],
+ [
+ 135.26304115100001,
+ 48.545070429200003,
+ 0.0
+ ],
+ [
+ 135.260657622,
+ 48.530195560099997,
+ 0.0
+ ],
+ [
+ 135.24932836799999,
+ 48.5172338279,
+ 0.0
+ ],
+ [
+ 135.204487676000014,
+ 48.485521145900002,
+ 0.0
+ ],
+ [
+ 135.194649621999986,
+ 48.4817751231,
+ 0.0
+ ],
+ [
+ 135.172567797,
+ 48.478693862100002,
+ 0.0
+ ],
+ [
+ 135.150503034,
+ 48.481828404,
+ 0.0
+ ],
+ [
+ 135.137657294,
+ 48.487277993600003,
+ 0.0
+ ],
+ [
+ 135.122586442999989,
+ 48.498413483900002,
+ 0.0
+ ],
+ [
+ 135.11564805099999,
+ 48.512647945300003,
+ 0.0
+ ],
+ [
+ 135.115667777,
+ 48.520168309900001,
+ 0.0
+ ],
+ [
+ 135.118048041,
+ 48.527521595,
+ 0.0
+ ],
+ [
+ 135.129359757,
+ 48.540448056,
+ 0.0
+ ],
+ [
+ 135.16958926699999,
+ 48.568785483100001,
+ 0.0
+ ],
+ [
+ 135.19262764312046,
+ 48.575024216868307,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284310,
+ "name": "Khabarovsk-Novy Airport",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "48.5288542341895",
+ "lng": "135.189310462396",
+ "radius": 5057,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 135.225633309885211,
+ 48.561591825976201,
+ 0.0
+ ],
+ [
+ 135.230247646,
+ 48.5649787905,
+ 0.0
+ ],
+ [
+ 135.242356707999988,
+ 48.5577510524,
+ 0.0
+ ],
+ [
+ 135.151429183,
+ 48.491021126100001,
+ 0.0
+ ],
+ [
+ 135.148506210032906,
+ 48.492769779850924,
+ 0.0
+ ],
+ [
+ 135.148406290999986,
+ 48.492696547199998,
+ 0.0
+ ],
+ [
+ 135.13632474799999,
+ 48.499933073900003,
+ 0.0
+ ],
+ [
+ 135.222771266,
+ 48.563302539,
+ 0.0
+ ],
+ [
+ 135.225633309885211,
+ 48.561591825976201,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284310,
+ "name": "Khabarovsk-Novy Airport",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "48.6131353405724",
+ "lng": "135.306954172736",
+ "radius": 4872,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 135.317680376696757,
+ 48.652051786267712,
+ 0.0
+ ],
+ [
+ 135.32153165599999,
+ 48.655884583,
+ 0.0
+ ],
+ [
+ 135.369829829999986,
+ 48.627018736,
+ 0.0
+ ],
+ [
+ 135.280561954,
+ 48.578546124799999,
+ 0.0
+ ],
+ [
+ 135.257598352,
+ 48.592258099600002,
+ 0.0
+ ],
+ [
+ 135.253747847422716,
+ 48.588417646466738,
+ 0.0
+ ],
+ [
+ 135.250149136,
+ 48.590569517799999,
+ 0.0
+ ],
+ [
+ 135.314145880000012,
+ 48.6541671803,
+ 0.0
+ ],
+ [
+ 135.317680376696757,
+ 48.652051786267712,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284310,
+ "name": "Khabarovsk-Novy Airport",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "48.4415659477013",
+ "lng": "135.070348846134",
+ "radius": 4670,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 135.121078872,
+ 48.465430629899998,
+ 0.0
+ ],
+ [
+ 135.121164656170805,
+ 48.46551622100931,
+ 0.0
+ ],
+ [
+ 135.12412825199999,
+ 48.463743948800001,
+ 0.0
+ ],
+ [
+ 135.060540057999987,
+ 48.400072141300001,
+ 0.0
+ ],
+ [
+ 135.057520287424836,
+ 48.401876387384412,
+ 0.0
+ ],
+ [
+ 135.057428941000012,
+ 48.401785047200001,
+ 0.0
+ ],
+ [
+ 135.009230484,
+ 48.430617565399999,
+ 0.0
+ ],
+ [
+ 135.098160009999987,
+ 48.479153119199999,
+ 0.0
+ ],
+ [
+ 135.121078872,
+ 48.465430629899998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284310,
+ "name": "Khabarovsk-Novy Airport",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "48.5721102621738",
+ "lng": "135.250949957131",
+ "radius": 2293,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 135.253747847422716,
+ 48.588417646466738,
+ 0.0
+ ],
+ [
+ 135.257598352,
+ 48.592258099600002,
+ 0.0
+ ],
+ [
+ 135.280561954,
+ 48.578546124799999,
+ 0.0
+ ],
+ [
+ 135.242356707999988,
+ 48.5577510524,
+ 0.0
+ ],
+ [
+ 135.230247646,
+ 48.5649787905,
+ 0.0
+ ],
+ [
+ 135.225633309885211,
+ 48.561591825976201,
+ 0.0
+ ],
+ [
+ 135.222771266,
+ 48.563302539,
+ 0.0
+ ],
+ [
+ 135.250149136,
+ 48.590569517799999,
+ 0.0
+ ],
+ [
+ 135.253747847422716,
+ 48.588417646466738,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284310,
+ "name": "Khabarovsk-Novy Airport",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "48.482519561235",
+ "lng": "135.126095049988",
+ "radius": 2092,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 135.13923077330162,
+ 48.498192441127678,
+ 0.0
+ ],
+ [
+ 135.148406290999986,
+ 48.492696547199998,
+ 0.0
+ ],
+ [
+ 135.148506210032906,
+ 48.492769779850924,
+ 0.0
+ ],
+ [
+ 135.151429183,
+ 48.491021126100001,
+ 0.0
+ ],
+ [
+ 135.12412825199999,
+ 48.463743948800001,
+ 0.0
+ ],
+ [
+ 135.121164656170805,
+ 48.46551622100931,
+ 0.0
+ ],
+ [
+ 135.121078872,
+ 48.465430629899998,
+ 0.0
+ ],
+ [
+ 135.098160009999987,
+ 48.479153119199999,
+ 0.0
+ ],
+ [
+ 135.13632474799999,
+ 48.499933073900003,
+ 0.0
+ ],
+ [
+ 135.13923077330162,
+ 48.498192441127678,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296246,
+ "name": "ZAISAN",
+ "country": "KZ",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "47.4875",
+ "lng": "84.887778",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 84.887778,
+ 47.491997195991601,
+ 0.0
+ ],
+ [
+ 84.888930199028863,
+ 47.491928867717689,
+ 0.0
+ ],
+ [
+ 84.890047380332476,
+ 47.491725959533532,
+ 0.0
+ ],
+ [
+ 84.891095591236009,
+ 47.491394638191863,
+ 0.0
+ ],
+ [
+ 84.892042976677331,
+ 47.490944973007053,
+ 0.0
+ ],
+ [
+ 84.89286074779497,
+ 47.490390629628678,
+ 0.0
+ ],
+ [
+ 84.89352405702904,
+ 47.489748454479745,
+ 0.0
+ ],
+ [
+ 84.894012753101265,
+ 47.489037962527227,
+ 0.0
+ ],
+ [
+ 84.89431199293476,
+ 47.488280743991865,
+ 0.0
+ ],
+ [
+ 84.894412691964803,
+ 47.487499808065003,
+ 0.0
+ ],
+ [
+ 84.89431179924145,
+ 47.486718883606351,
+ 0.0
+ ],
+ [
+ 84.89401238907692,
+ 47.485961698092439,
+ 0.0
+ ],
+ [
+ 84.893523566580356,
+ 47.485251256731729,
+ 0.0
+ ],
+ [
+ 84.892860190077315,
+ 47.484609143642828,
+ 0.0
+ ],
+ [
+ 84.892042418959662,
+ 47.484054866307339,
+ 0.0
+ ],
+ [
+ 84.891095100787325,
+ 47.483605263182554,
+ 0.0
+ ],
+ [
+ 84.890047016308117,
+ 47.483273992432672,
+ 0.0
+ ],
+ [
+ 84.888930005335553,
+ 47.483071117269972,
+ 0.0
+ ],
+ [
+ 84.887778,
+ 47.483002800464291,
+ 0.0
+ ],
+ [
+ 84.886625994664442,
+ 47.483071117269972,
+ 0.0
+ ],
+ [
+ 84.885508983691878,
+ 47.483273992432672,
+ 0.0
+ ],
+ [
+ 84.884460899212669,
+ 47.483605263182554,
+ 0.0
+ ],
+ [
+ 84.883513581040333,
+ 47.484054866307339,
+ 0.0
+ ],
+ [
+ 84.88269580992268,
+ 47.484609143642828,
+ 0.0
+ ],
+ [
+ 84.882032433419639,
+ 47.485251256731729,
+ 0.0
+ ],
+ [
+ 84.881543610923075,
+ 47.485961698092439,
+ 0.0
+ ],
+ [
+ 84.881244200758545,
+ 47.486718883606351,
+ 0.0
+ ],
+ [
+ 84.881143308035192,
+ 47.487499808065003,
+ 0.0
+ ],
+ [
+ 84.881244007065234,
+ 47.488280743991865,
+ 0.0
+ ],
+ [
+ 84.88154324689873,
+ 47.489037962527227,
+ 0.0
+ ],
+ [
+ 84.882031942970954,
+ 47.489748454479745,
+ 0.0
+ ],
+ [
+ 84.882695252205025,
+ 47.490390629628678,
+ 0.0
+ ],
+ [
+ 84.883513023322664,
+ 47.490944973007053,
+ 0.0
+ ],
+ [
+ 84.884460408763985,
+ 47.491394638191863,
+ 0.0
+ ],
+ [
+ 84.885508619667519,
+ 47.491725959533532,
+ 0.0
+ ],
+ [
+ 84.886625800971132,
+ 47.491928867717689,
+ 0.0
+ ],
+ [
+ 84.887778,
+ 47.491997195991601,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32767,
+ "name": "阿勒泰",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "47.7734843043303",
+ "lng": "88.0296774013889",
+ "radius": 13013,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.008063549300005,
+ 47.801214101100001,
+ 0.0
+ ],
+ [
+ 87.906467199299996,
+ 47.856251916,
+ 0.0
+ ],
+ [
+ 87.858320746399997,
+ 47.794440903199998,
+ 0.0
+ ],
+ [
+ 87.974949995200006,
+ 47.7678294687,
+ 0.0
+ ],
+ [
+ 87.977970296699993,
+ 47.7382005531,
+ 0.0
+ ],
+ [
+ 87.98836866,
+ 47.723147846800003,
+ 0.0
+ ],
+ [
+ 88.004197474899996,
+ 47.710416452499999,
+ 0.0
+ ],
+ [
+ 88.052705268300002,
+ 47.687539592100002,
+ 0.0
+ ],
+ [
+ 88.096703331599997,
+ 47.680178597400001,
+ 0.0
+ ],
+ [
+ 88.121151383200001,
+ 47.682318173900001,
+ 0.0
+ ],
+ [
+ 88.163545572499999,
+ 47.698715440800001,
+ 0.0
+ ],
+ [
+ 88.008063549300005,
+ 47.801214101100001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32767,
+ "name": "阿勒泰",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "47.7302214980365",
+ "lng": "88.1432146498449",
+ "radius": 12820,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.261874855,
+ 47.647082119399997,
+ 0.0
+ ],
+ [
+ 88.310037652,
+ 47.7038526754,
+ 0.0
+ ],
+ [
+ 88.193351300200007,
+ 47.733882340500003,
+ 0.0
+ ],
+ [
+ 88.189734681499999,
+ 47.763982323100002,
+ 0.0
+ ],
+ [
+ 88.17896210399999,
+ 47.778918251299999,
+ 0.0
+ ],
+ [
+ 88.1627973059,
+ 47.791469475600003,
+ 0.0
+ ],
+ [
+ 88.119003801299996,
+ 47.810778479200003,
+ 0.0
+ ],
+ [
+ 88.075691969800005,
+ 47.818686520200004,
+ 0.0
+ ],
+ [
+ 88.051110025900002,
+ 47.816944149599998,
+ 0.0
+ ],
+ [
+ 88.008063549300005,
+ 47.801214101100001,
+ 0.0
+ ],
+ [
+ 88.163545572499999,
+ 47.698715440800001,
+ 0.0
+ ],
+ [
+ 88.261874855,
+ 47.647082119399997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32767,
+ "name": "阿勒泰",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "47.7495592354531",
+ "lng": "88.0840819344108",
+ "radius": 23407,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.393591172399994,
+ 47.718267832099997,
+ 120.0
+ ],
+ [
+ 88.244696825099993,
+ 47.568976543300003,
+ 120.0
+ ],
+ [
+ 87.774480740200005,
+ 47.781274529699999,
+ 120.0
+ ],
+ [
+ 87.923983701699996,
+ 47.930565817400002,
+ 120.0
+ ],
+ [
+ 88.393591172399994,
+ 47.718267832099997,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001413,
+ "name": "阿勒泰",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "47.750277777778",
+ "lng": "88.084444444444",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.084444444444003,
+ 48.199959159522017,
+ 500.0
+ ],
+ [
+ 88.201226369800665,
+ 48.193068711853002,
+ 500.0
+ ],
+ [
+ 88.314368891551609,
+ 48.172612125175299,
+ 500.0
+ ],
+ [
+ 88.420354532266529,
+ 48.139226466658229,
+ 500.0
+ ],
+ [
+ 88.515904493340841,
+ 48.093949816504526,
+ 500.0
+ ],
+ [
+ 88.598085423394252,
+ 48.038186774986372,
+ 500.0
+ ],
+ [
+ 88.664402073107993,
+ 47.973662204798707,
+ 500.0
+ ],
+ [
+ 88.712872626822133,
+ 47.90236507183409,
+ 500.0
+ ],
+ [
+ 88.742084556390537,
+ 47.826484561176102,
+ 500.0
+ ],
+ [
+ 88.751229925329397,
+ 47.748340831088917,
+ 500.0
+ ],
+ [
+ 88.740120083391403,
+ 47.67031282985797,
+ 500.0
+ ],
+ [
+ 88.709180558023718,
+ 47.594765552587873,
+ 500.0
+ ],
+ [
+ 88.659427623476034,
+ 47.523978978421361,
+ 500.0
+ ],
+ [
+ 88.592428494360988,
+ 47.460080727145986,
+ 500.0
+ ],
+ [
+ 88.51024735823529,
+ 47.404984231554472,
+ 500.0
+ ],
+ [
+ 88.415379560841203,
+ 47.36033395906906,
+ 500.0
+ ],
+ [
+ 88.310676229391632,
+ 47.327458949369465,
+ 500.0
+ ],
+ [
+ 88.199261509512283,
+ 47.307335675241376,
+ 500.0
+ ],
+ [
+ 88.084444444444003,
+ 47.300560987692002,
+ 500.0
+ ],
+ [
+ 87.969627379375723,
+ 47.307335675241376,
+ 500.0
+ ],
+ [
+ 87.858212659496374,
+ 47.327458949369465,
+ 500.0
+ ],
+ [
+ 87.753509328046803,
+ 47.36033395906906,
+ 500.0
+ ],
+ [
+ 87.658641530652716,
+ 47.404984231554472,
+ 500.0
+ ],
+ [
+ 87.576460394527018,
+ 47.460080727145986,
+ 500.0
+ ],
+ [
+ 87.509461265411971,
+ 47.523978978421361,
+ 500.0
+ ],
+ [
+ 87.459708330864288,
+ 47.594765552587873,
+ 500.0
+ ],
+ [
+ 87.428768805496603,
+ 47.67031282985797,
+ 500.0
+ ],
+ [
+ 87.417658963558608,
+ 47.748340831088917,
+ 500.0
+ ],
+ [
+ 87.426804332497468,
+ 47.826484561176102,
+ 500.0
+ ],
+ [
+ 87.456016262065873,
+ 47.90236507183409,
+ 500.0
+ ],
+ [
+ 87.504486815780012,
+ 47.973662204798707,
+ 500.0
+ ],
+ [
+ 87.570803465493753,
+ 48.038186774986372,
+ 500.0
+ ],
+ [
+ 87.652984395547165,
+ 48.093949816504526,
+ 500.0
+ ],
+ [
+ 87.748534356621477,
+ 48.139226466658229,
+ 500.0
+ ],
+ [
+ 87.854519997336396,
+ 48.172612125175299,
+ 500.0
+ ],
+ [
+ 87.967662519087341,
+ 48.193068711853002,
+ 500.0
+ ],
+ [
+ 88.084444444444003,
+ 48.199959159522017,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9374,
+ "name": "Beijiang:aletaishi",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "47.82",
+ "lng": "88.13",
+ "radius": 5000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.13,
+ 47.864969181723723,
+ 0.0
+ ],
+ [
+ 88.141604260235283,
+ 47.864285415330222,
+ 0.0
+ ],
+ [
+ 88.152855038805257,
+ 47.862254944562594,
+ 0.0
+ ],
+ [
+ 88.1634097023571,
+ 47.858939615439454,
+ 0.0
+ ],
+ [
+ 88.172946971427578,
+ 47.854440394120822,
+ 0.0
+ ],
+ [
+ 88.181176752570082,
+ 47.848894271079438,
+ 0.0
+ ],
+ [
+ 88.187848989793977,
+ 47.8424700643778,
+ 0.0
+ ],
+ [
+ 88.192761261920921,
+ 47.835363253732659,
+ 0.0
+ ],
+ [
+ 88.195764895142233,
+ 47.827790006750277,
+ 0.0
+ ],
+ [
+ 88.19676940971695,
+ 47.819980582975042,
+ 0.0
+ ],
+ [
+ 88.195745174319171,
+ 47.812172319513692,
+ 0.0
+ ],
+ [
+ 88.192724198890332,
+ 47.804602413522531,
+ 0.0
+ ],
+ [
+ 88.187799054893944,
+ 47.797500721574487,
+ 0.0
+ ],
+ [
+ 88.181119968677393,
+ 47.791082793886972,
+ 0.0
+ ],
+ [
+ 88.172890187514142,
+ 47.785543352835994,
+ 0.0
+ ],
+ [
+ 88.163359767404529,
+ 47.781050410537368,
+ 0.0
+ ],
+ [
+ 88.152817975714896,
+ 47.777740200120384,
+ 0.0
+ ],
+ [
+ 88.141584539373213,
+ 47.775713070351948,
+ 0.0
+ ],
+ [
+ 88.13,
+ 47.775030464275467,
+ 0.0
+ ],
+ [
+ 88.118415460626778,
+ 47.775713070351948,
+ 0.0
+ ],
+ [
+ 88.107182024285095,
+ 47.777740200120384,
+ 0.0
+ ],
+ [
+ 88.096640232595462,
+ 47.781050410537368,
+ 0.0
+ ],
+ [
+ 88.087109812485849,
+ 47.785543352835994,
+ 0.0
+ ],
+ [
+ 88.078880031322598,
+ 47.791082793886972,
+ 0.0
+ ],
+ [
+ 88.072200945106047,
+ 47.797500721574487,
+ 0.0
+ ],
+ [
+ 88.067275801109659,
+ 47.804602413522531,
+ 0.0
+ ],
+ [
+ 88.06425482568082,
+ 47.812172319513692,
+ 0.0
+ ],
+ [
+ 88.063230590283041,
+ 47.819980582975042,
+ 0.0
+ ],
+ [
+ 88.064235104857758,
+ 47.827790006750277,
+ 0.0
+ ],
+ [
+ 88.06723873807907,
+ 47.835363253732659,
+ 0.0
+ ],
+ [
+ 88.072151010206014,
+ 47.8424700643778,
+ 0.0
+ ],
+ [
+ 88.078823247429909,
+ 47.848894271079438,
+ 0.0
+ ],
+ [
+ 88.087053028572413,
+ 47.854440394120822,
+ 0.0
+ ],
+ [
+ 88.096590297642891,
+ 47.858939615439454,
+ 0.0
+ ],
+ [
+ 88.107144961194734,
+ 47.862254944562594,
+ 0.0
+ ],
+ [
+ 88.118395739764708,
+ 47.864285415330222,
+ 0.0
+ ],
+ [
+ 88.13,
+ 47.864969181723723,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286414,
+ "name": "Ölgii Airport",
+ "country": "MN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "48.9946192046778",
+ "lng": "89.9222791234432",
+ "radius": 8113,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.997900342719305,
+ 48.941420586118205,
+ 0.0
+ ],
+ [
+ 89.996993053799997,
+ 48.940691520599998,
+ 0.0
+ ],
+ [
+ 89.963470928500001,
+ 48.964919671799997,
+ 0.0
+ ],
+ [
+ 89.869603632500002,
+ 49.015221416199999,
+ 0.0
+ ],
+ [
+ 89.826695634199993,
+ 49.031951857099997,
+ 0.0
+ ],
+ [
+ 89.846436312899996,
+ 49.047805445800002,
+ 0.0
+ ],
+ [
+ 89.850624994170886,
+ 49.044783375535999,
+ 0.0
+ ],
+ [
+ 89.8521049597,
+ 49.045971976700002,
+ 0.0
+ ],
+ [
+ 89.885683443299996,
+ 49.021744882500002,
+ 0.0
+ ],
+ [
+ 89.974866991799999,
+ 48.973944500400002,
+ 0.0
+ ],
+ [
+ 90.017719306100005,
+ 48.957207716,
+ 0.0
+ ],
+ [
+ 89.997989838600006,
+ 48.941355896200001,
+ 0.0
+ ],
+ [
+ 89.997900342719305,
+ 48.941420586118205,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281566,
+ "name": "Choibalsan Airport",
+ "country": "MN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "48.1355625522943",
+ "lng": "114.646654602315",
+ "radius": 7977,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.596145054,
+ 48.155213590800003,
+ 0.0
+ ],
+ [
+ 114.703300221,
+ 48.125938769699999,
+ 0.0
+ ],
+ [
+ 114.750929252,
+ 48.118148092,
+ 0.0
+ ],
+ [
+ 114.73930361799999,
+ 48.0992053975,
+ 0.0
+ ],
+ [
+ 114.69717887,
+ 48.115950486800003,
+ 0.0
+ ],
+ [
+ 114.59001392099999,
+ 48.145227026100002,
+ 0.0
+ ],
+ [
+ 114.542357444,
+ 48.153011376800002,
+ 0.0
+ ],
+ [
+ 114.553971129,
+ 48.171955091100003,
+ 0.0
+ ],
+ [
+ 114.596145054,
+ 48.155213590800003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001517,
+ "name": "伊尔施",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "47.310555555556",
+ "lng": "119.911944444444",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.911944444444003,
+ 47.760271558145597,
+ 500.0
+ ],
+ [
+ 120.027739170746671,
+ 47.75338148727036,
+ 500.0
+ ],
+ [
+ 120.139926649070262,
+ 47.732925935281884,
+ 500.0
+ ],
+ [
+ 120.24502030779874,
+ 47.699541695974673,
+ 500.0
+ ],
+ [
+ 120.339769828813928,
+ 47.654266437701324,
+ 500.0
+ ],
+ [
+ 120.421266881348586,
+ 47.598504269719747,
+ 500.0
+ ],
+ [
+ 120.487036935852629,
+ 47.533979555867013,
+ 500.0
+ ],
+ [
+ 120.535113982386932,
+ 47.462680829067637,
+ 500.0
+ ],
+ [
+ 120.564096013095849,
+ 47.38679697373837,
+ 500.0
+ ],
+ [
+ 120.573180191601011,
+ 47.308648030307495,
+ 500.0
+ ],
+ [
+ 120.562177628099548,
+ 47.230613040390963,
+ 500.0
+ ],
+ [
+ 120.53150853368399,
+ 47.155057306365357,
+ 500.0
+ ],
+ [
+ 120.482179195317897,
+ 47.084261305646478,
+ 500.0
+ ],
+ [
+ 120.415742677595262,
+ 47.020353301546201,
+ 500.0
+ ],
+ [
+ 120.334245428132334,
+ 46.96524745253636,
+ 500.0
+ ],
+ [
+ 120.240162068624102,
+ 46.92058896070283,
+ 500.0
+ ],
+ [
+ 120.136320633334918,
+ 46.887707534326218,
+ 500.0
+ ],
+ [
+ 120.025820415646251,
+ 46.867580180016084,
+ 500.0
+ ],
+ [
+ 119.911944444444003,
+ 46.860804092817901,
+ 500.0
+ ],
+ [
+ 119.798068473241756,
+ 46.867580180016084,
+ 500.0
+ ],
+ [
+ 119.687568255553089,
+ 46.887707534326218,
+ 500.0
+ ],
+ [
+ 119.583726820263905,
+ 46.92058896070283,
+ 500.0
+ ],
+ [
+ 119.489643460755673,
+ 46.96524745253636,
+ 500.0
+ ],
+ [
+ 119.408146211292745,
+ 47.020353301546201,
+ 500.0
+ ],
+ [
+ 119.34170969357011,
+ 47.084261305646478,
+ 500.0
+ ],
+ [
+ 119.292380355204017,
+ 47.155057306365357,
+ 500.0
+ ],
+ [
+ 119.261711260788459,
+ 47.230613040390963,
+ 500.0
+ ],
+ [
+ 119.250708697286996,
+ 47.308648030307495,
+ 500.0
+ ],
+ [
+ 119.259792875792158,
+ 47.38679697373837,
+ 500.0
+ ],
+ [
+ 119.288774906501075,
+ 47.462680829067637,
+ 500.0
+ ],
+ [
+ 119.336851953035378,
+ 47.533979555867013,
+ 500.0
+ ],
+ [
+ 119.402622007539421,
+ 47.598504269719747,
+ 500.0
+ ],
+ [
+ 119.484119060074079,
+ 47.654266437701324,
+ 500.0
+ ],
+ [
+ 119.578868581089267,
+ 47.699541695974673,
+ 500.0
+ ],
+ [
+ 119.683962239817745,
+ 47.732925935281884,
+ 500.0
+ ],
+ [
+ 119.796149718141336,
+ 47.75338148727036,
+ 500.0
+ ],
+ [
+ 119.911944444444003,
+ 47.760271558145597,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32776,
+ "name": "伊尔施",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "47.2972096866984",
+ "lng": "119.851410078252",
+ "radius": 13037,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.800200465,
+ 47.310703619199998,
+ 0.0
+ ],
+ [
+ 119.678527066,
+ 47.297433038699999,
+ 0.0
+ ],
+ [
+ 119.70607077699999,
+ 47.233807733699997,
+ 0.0
+ ],
+ [
+ 119.819375892,
+ 47.270480970400001,
+ 0.0
+ ],
+ [
+ 119.852453715,
+ 47.2496282205,
+ 0.0
+ ],
+ [
+ 119.875208269,
+ 47.243553860900001,
+ 0.0
+ ],
+ [
+ 119.923681362,
+ 47.244132231899997,
+ 0.0
+ ],
+ [
+ 119.994232345,
+ 47.266293264399998,
+ 0.0
+ ],
+ [
+ 120.00954780799999,
+ 47.279236006300003,
+ 0.0
+ ],
+ [
+ 120.019410605,
+ 47.294426218300003,
+ 0.0
+ ],
+ [
+ 120.023144675,
+ 47.310830170800003,
+ 0.0
+ ],
+ [
+ 119.800200465,
+ 47.310703619199998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32776,
+ "name": "伊尔施",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "47.3221384109113",
+ "lng": "119.973815051017",
+ "radius": 13149,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.148182069,
+ 47.325938571199998,
+ 0.0
+ ],
+ [
+ 120.118936459,
+ 47.3878576603,
+ 0.0
+ ],
+ [
+ 120.002253779,
+ 47.351194563900002,
+ 0.0
+ ],
+ [
+ 119.97266372199999,
+ 47.368685781899998,
+ 0.0
+ ],
+ [
+ 119.949862684,
+ 47.374772962100003,
+ 0.0
+ ],
+ [
+ 119.901269704,
+ 47.374191803899997,
+ 0.0
+ ],
+ [
+ 119.832403464,
+ 47.354198413,
+ 0.0
+ ],
+ [
+ 119.81612188299999,
+ 47.341796481599999,
+ 0.0
+ ],
+ [
+ 119.805139232,
+ 47.326960676299997,
+ 0.0
+ ],
+ [
+ 119.800200465,
+ 47.310703619199998,
+ 0.0
+ ],
+ [
+ 120.023144675,
+ 47.310830170800003,
+ 0.0
+ ],
+ [
+ 120.148182069,
+ 47.325938571199998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32776,
+ "name": "伊尔施",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "47.3085802083861",
+ "lng": "119.912390173858",
+ "radius": 23458,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.140173969,
+ 47.452515274299998,
+ 120.0
+ ],
+ [
+ 120.220804208,
+ 47.281141937599998,
+ 120.0
+ ],
+ [
+ 119.684390136,
+ 47.165254629700001,
+ 120.0
+ ],
+ [
+ 119.603936493,
+ 47.336627966499996,
+ 120.0
+ ],
+ [
+ 120.140173969,
+ 47.452515274299998,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33204,
+ "name": "成吉思汗",
+ "country": "CN",
+ "city": "扎兰屯",
+ "height": 0,
+ "level": 2,
+ "lat": "47.9089256815933",
+ "lng": "122.787240144189",
+ "radius": 13140,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.81839712,
+ 47.9355441923,
+ 0.0
+ ],
+ [
+ 122.863367443,
+ 48.015539291499998,
+ 0.0
+ ],
+ [
+ 122.761993157,
+ 48.025884214500003,
+ 0.0
+ ],
+ [
+ 122.758714699,
+ 47.942585300799998,
+ 0.0
+ ],
+ [
+ 122.712321149,
+ 47.9302823226,
+ 0.0
+ ],
+ [
+ 122.694611802,
+ 47.918677536700002,
+ 0.0
+ ],
+ [
+ 122.681995388,
+ 47.904395056399999,
+ 0.0
+ ],
+ [
+ 122.67532879,
+ 47.888409980500001,
+ 0.0
+ ],
+ [
+ 122.672527257,
+ 47.840588129499999,
+ 0.0
+ ],
+ [
+ 122.681340425,
+ 47.825080080100001,
+ 0.0
+ ],
+ [
+ 122.714993118,
+ 47.801153235400001,
+ 0.0
+ ],
+ [
+ 122.81839712,
+ 47.9355441923,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33204,
+ "name": "成吉思汗",
+ "country": "CN",
+ "city": "扎兰屯",
+ "height": 0,
+ "level": 2,
+ "lat": "47.8228990603573",
+ "lng": "122.761025242368",
+ "radius": 13236,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.67328485,
+ 47.719496246,
+ 0.0
+ ],
+ [
+ 122.771247306,
+ 47.704061570699999,
+ 0.0
+ ],
+ [
+ 122.779617737,
+ 47.792416464900001,
+ 0.0
+ ],
+ [
+ 122.816244254,
+ 47.801604566499996,
+ 0.0
+ ],
+ [
+ 122.835210031,
+ 47.812246220399999,
+ 0.0
+ ],
+ [
+ 122.849436365,
+ 47.825820055299999,
+ 0.0
+ ],
+ [
+ 122.86632153,
+ 47.866515704800001,
+ 0.0
+ ],
+ [
+ 122.864328323,
+ 47.897854461100003,
+ 0.0
+ ],
+ [
+ 122.85416769699999,
+ 47.912990793100001,
+ 0.0
+ ],
+ [
+ 122.81839712,
+ 47.9355441923,
+ 0.0
+ ],
+ [
+ 122.714993118,
+ 47.801153235400001,
+ 0.0
+ ],
+ [
+ 122.67328485,
+ 47.719496246,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33204,
+ "name": "成吉思汗",
+ "country": "CN",
+ "city": "扎兰屯",
+ "height": 120,
+ "level": 2,
+ "lat": "47.8662707709481",
+ "lng": "122.768104415227",
+ "radius": 23503,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.85085209499999,
+ 47.662349706800001,
+ 120.0
+ ],
+ [
+ 122.587656795,
+ 47.693140303699998,
+ 120.0
+ ],
+ [
+ 122.684320564,
+ 48.070059756200003,
+ 120.0
+ ],
+ [
+ 122.949436796,
+ 48.039269160499998,
+ 120.0
+ ],
+ [
+ 122.85085209499999,
+ 47.662349706800001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001457,
+ "name": "成吉思汗",
+ "country": "CN",
+ "city": "扎兰屯",
+ "height": 500,
+ "level": 2,
+ "lat": "47.8679166666667",
+ "lng": "122.767916666667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.767916666666679,
+ 48.317588795491488,
+ 500.0
+ ],
+ [
+ 122.884966741307579,
+ 48.310698244253949,
+ 500.0
+ ],
+ [
+ 122.99836867556462,
+ 48.290241372808374,
+ 500.0
+ ],
+ [
+ 123.104596595124093,
+ 48.256855322427299,
+ 500.0
+ ],
+ [
+ 123.200363964041514,
+ 48.211578284966436,
+ 500.0
+ ],
+ [
+ 123.282730634379519,
+ 48.155814993842696,
+ 500.0
+ ],
+ [
+ 123.349195729554054,
+ 48.091290447079849,
+ 500.0
+ ],
+ [
+ 123.397773142415716,
+ 48.019993728124675,
+ 500.0
+ ],
+ [
+ 123.427047489764561,
+ 47.944114103865552,
+ 500.0
+ ],
+ [
+ 123.436209452782833,
+ 47.865971764947034,
+ 500.0
+ ],
+ [
+ 123.42507044936545,
+ 47.787945634940996,
+ 500.0
+ ],
+ [
+ 123.394057453805573,
+ 47.712400626389233,
+ 500.0
+ ],
+ [
+ 123.34418945533136,
+ 47.641616584219669,
+ 500.0
+ ],
+ [
+ 123.277037513378943,
+ 47.577720954715467,
+ 500.0
+ ],
+ [
+ 123.194670634437699,
+ 47.522626974923398,
+ 500.0
+ ],
+ [
+ 123.099589792699419,
+ 47.477978914045892,
+ 500.0
+ ],
+ [
+ 122.99465238630539,
+ 47.445105631341178,
+ 500.0
+ ],
+ [
+ 122.882989308862605,
+ 47.42498345553097,
+ 500.0
+ ],
+ [
+ 122.767916666666679,
+ 47.418209144771943,
+ 500.0
+ ],
+ [
+ 122.652844024470753,
+ 47.42498345553097,
+ 500.0
+ ],
+ [
+ 122.541180947027968,
+ 47.445105631341178,
+ 500.0
+ ],
+ [
+ 122.436243540633939,
+ 47.477978914045892,
+ 500.0
+ ],
+ [
+ 122.341162698895658,
+ 47.522626974923398,
+ 500.0
+ ],
+ [
+ 122.258795819954415,
+ 47.577720954715467,
+ 500.0
+ ],
+ [
+ 122.191643878001997,
+ 47.641616584219669,
+ 500.0
+ ],
+ [
+ 122.141775879527785,
+ 47.712400626389233,
+ 500.0
+ ],
+ [
+ 122.110762883967908,
+ 47.787945634940996,
+ 500.0
+ ],
+ [
+ 122.099623880550524,
+ 47.865971764947034,
+ 500.0
+ ],
+ [
+ 122.108785843568796,
+ 47.944114103865552,
+ 500.0
+ ],
+ [
+ 122.138060190917642,
+ 48.019993728124675,
+ 500.0
+ ],
+ [
+ 122.186637603779303,
+ 48.091290447079849,
+ 500.0
+ ],
+ [
+ 122.253102698953839,
+ 48.155814993842696,
+ 500.0
+ ],
+ [
+ 122.335469369291843,
+ 48.211578284966436,
+ 500.0
+ ],
+ [
+ 122.431236738209265,
+ 48.256855322427299,
+ 500.0
+ ],
+ [
+ 122.537464657768737,
+ 48.290241372808374,
+ 500.0
+ ],
+ [
+ 122.650866592025778,
+ 48.310698244253949,
+ 500.0
+ ],
+ [
+ 122.767916666666679,
+ 48.317588795491488,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001410,
+ "name": "林都",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "47.751944444444",
+ "lng": "129.019166666667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.01916666666699,
+ 48.201625695067413,
+ 500.0
+ ],
+ [
+ 129.135952379025611,
+ 48.194735245939334,
+ 500.0
+ ],
+ [
+ 129.249098564398651,
+ 48.174278655250887,
+ 500.0
+ ],
+ [
+ 129.355087626774917,
+ 48.140892991218408,
+ 500.0
+ ],
+ [
+ 129.450640658281287,
+ 48.095616335622104,
+ 500.0
+ ],
+ [
+ 129.532824211552395,
+ 48.039853290615163,
+ 500.0
+ ],
+ [
+ 129.599142957794726,
+ 47.975328720804256,
+ 500.0
+ ],
+ [
+ 129.647615020735572,
+ 47.90403159374226,
+ 500.0
+ ],
+ [
+ 129.676827831899999,
+ 47.828151095667685,
+ 500.0
+ ],
+ [
+ 129.685973435272956,
+ 47.750007385300869,
+ 500.0
+ ],
+ [
+ 129.674863181560283,
+ 47.671979410576377,
+ 500.0
+ ],
+ [
+ 129.643922618634235,
+ 47.596432165430151,
+ 500.0
+ ],
+ [
+ 129.594168059081028,
+ 47.52564562710613,
+ 500.0
+ ],
+ [
+ 129.527166771808737,
+ 47.461747412937711,
+ 500.0
+ ],
+ [
+ 129.444983012429759,
+ 47.406650952949143,
+ 500.0
+ ],
+ [
+ 129.35011220617767,
+ 47.362000711759315,
+ 500.0
+ ],
+ [
+ 129.245405568833235,
+ 47.329125726496443,
+ 500.0
+ ],
+ [
+ 129.133987341329714,
+ 47.309002467908897,
+ 500.0
+ ],
+ [
+ 129.01916666666699,
+ 47.302227785690789,
+ 500.0
+ ],
+ [
+ 128.904345992004266,
+ 47.309002467908897,
+ 500.0
+ ],
+ [
+ 128.792927764500746,
+ 47.329125726496443,
+ 500.0
+ ],
+ [
+ 128.688221127156311,
+ 47.362000711759315,
+ 500.0
+ ],
+ [
+ 128.593350320904221,
+ 47.406650952949143,
+ 500.0
+ ],
+ [
+ 128.511166561525243,
+ 47.461747412937711,
+ 500.0
+ ],
+ [
+ 128.444165274252953,
+ 47.52564562710613,
+ 500.0
+ ],
+ [
+ 128.394410714699745,
+ 47.596432165430151,
+ 500.0
+ ],
+ [
+ 128.363470151773697,
+ 47.671979410576377,
+ 500.0
+ ],
+ [
+ 128.352359898061025,
+ 47.750007385300869,
+ 500.0
+ ],
+ [
+ 128.361505501433982,
+ 47.828151095667685,
+ 500.0
+ ],
+ [
+ 128.390718312598409,
+ 47.90403159374226,
+ 500.0
+ ],
+ [
+ 128.439190375539255,
+ 47.975328720804256,
+ 500.0
+ ],
+ [
+ 128.505509121781586,
+ 48.039853290615163,
+ 500.0
+ ],
+ [
+ 128.587692675052693,
+ 48.095616335622104,
+ 500.0
+ ],
+ [
+ 128.683245706559063,
+ 48.140892991218408,
+ 500.0
+ ],
+ [
+ 128.78923476893533,
+ 48.174278655250887,
+ 500.0
+ ],
+ [
+ 128.90238095430837,
+ 48.194735245939334,
+ 500.0
+ ],
+ [
+ 129.01916666666699,
+ 48.201625695067413,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32777,
+ "name": "林都",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "47.7647271987976",
+ "lng": "128.957205938589",
+ "radius": 12987,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.92596272099999,
+ 47.7894559589,
+ 0.0
+ ],
+ [
+ 128.809345807,
+ 47.826179955400001,
+ 0.0
+ ],
+ [
+ 128.783539491999989,
+ 47.7608784361,
+ 0.0
+ ],
+ [
+ 128.910263023,
+ 47.749166630700003,
+ 0.0
+ ],
+ [
+ 128.921565721,
+ 47.7245366334,
+ 0.0
+ ],
+ [
+ 128.936184153999989,
+ 47.711165996200002,
+ 0.0
+ ],
+ [
+ 128.955440396,
+ 47.700793606600001,
+ 0.0
+ ],
+ [
+ 129.011341028,
+ 47.6857944721,
+ 0.0
+ ],
+ [
+ 129.052028138,
+ 47.685169196899999,
+ 0.0
+ ],
+ [
+ 129.075395652999987,
+ 47.690466276199999,
+ 0.0
+ ],
+ [
+ 129.11225477799999,
+ 47.712097076799999,
+ 0.0
+ ],
+ [
+ 128.92596272099999,
+ 47.7894559589,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32777,
+ "name": "林都",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "47.7366754570756",
+ "lng": "129.081148913454",
+ "radius": 12999,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.23068547599999,
+ 47.6771619254,
+ 0.0
+ ],
+ [
+ 129.25477644099999,
+ 47.742468815499997,
+ 0.0
+ ],
+ [
+ 129.128099572999986,
+ 47.752477263899998,
+ 0.0
+ ],
+ [
+ 129.115822861,
+ 47.782615022199998,
+ 0.0
+ ],
+ [
+ 129.100938961,
+ 47.7958628031,
+ 0.0
+ ],
+ [
+ 129.081451034999986,
+ 47.8060681081,
+ 0.0
+ ],
+ [
+ 129.02700748,
+ 47.819203050399999,
+ 0.0
+ ],
+ [
+ 128.98395725099999,
+ 47.818624445099999,
+ 0.0
+ ],
+ [
+ 128.961009596999986,
+ 47.812456820500003,
+ 0.0
+ ],
+ [
+ 128.92596272099999,
+ 47.7894559589,
+ 0.0
+ ],
+ [
+ 129.11225477799999,
+ 47.712097076799999,
+ 0.0
+ ],
+ [
+ 129.23068547599999,
+ 47.6771619254,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32777,
+ "name": "林都",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "47.7523301554732",
+ "lng": "129.01841793958",
+ "radius": 23516,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.33115500299999,
+ 47.775509822099998,
+ 120.0
+ ],
+ [
+ 129.244354418,
+ 47.605400188,
+ 120.0
+ ],
+ [
+ 128.70572032199999,
+ 47.729756212700003,
+ 120.0
+ ],
+ [
+ 128.792728582,
+ 47.899865846600001,
+ 120.0
+ ],
+ [
+ 129.33115500299999,
+ 47.775509822099998,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001331,
+ "name": "Tacheng Airport",
+ "country": "CN",
+ "city": "Tacheng",
+ "height": 500,
+ "level": 2,
+ "lat": "46.670664",
+ "lng": "83.345463",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.345463,
+ 47.120430467123803,
+ 500.0
+ ],
+ [
+ 83.459862589417185,
+ 47.113540916434381,
+ 500.0
+ ],
+ [
+ 83.570700350078482,
+ 47.093086789194963,
+ 500.0
+ ],
+ [
+ 83.674533367346086,
+ 47.059704491260035,
+ 500.0
+ ],
+ [
+ 83.76815155995385,
+ 47.01443110667239,
+ 500.0
+ ],
+ [
+ 83.848681954048715,
+ 46.958670048374529,
+ 500.0
+ ],
+ [
+ 83.913679309341518,
+ 46.89414497334581,
+ 500.0
+ ],
+ [
+ 83.96119997013966,
+ 46.822843802028565,
+ 500.0
+ ],
+ [
+ 83.989856820850235,
+ 46.746954995252032,
+ 500.0
+ ],
+ [
+ 83.998854261825244,
+ 46.668798430677853,
+ 500.0
+ ],
+ [
+ 83.988003094639808,
+ 46.590753288301947,
+ 500.0
+ ],
+ [
+ 83.957716044270924,
+ 46.515185313931127,
+ 500.0
+ ],
+ [
+ 83.908985304472708,
+ 46.444375700695232,
+ 500.0
+ ],
+ [
+ 83.843343955335584,
+ 46.380453634584349,
+ 500.0
+ ],
+ [
+ 83.762813376776492,
+ 46.325334313614917,
+ 500.0
+ ],
+ [
+ 83.669838895397461,
+ 46.28066399177623,
+ 500.0
+ ],
+ [
+ 83.567215893066191,
+ 46.247773334396669,
+ 500.0
+ ],
+ [
+ 83.458008516527428,
+ 46.227640112089411,
+ 500.0
+ ],
+ [
+ 83.345463,
+ 46.220862012241192,
+ 500.0
+ ],
+ [
+ 83.232917483472562,
+ 46.227640112089411,
+ 500.0
+ ],
+ [
+ 83.1237101069338,
+ 46.247773334396669,
+ 500.0
+ ],
+ [
+ 83.021087104602529,
+ 46.28066399177623,
+ 500.0
+ ],
+ [
+ 82.928112623223498,
+ 46.325334313614917,
+ 500.0
+ ],
+ [
+ 82.847582044664406,
+ 46.380453634584349,
+ 500.0
+ ],
+ [
+ 82.781940695527283,
+ 46.444375700695232,
+ 500.0
+ ],
+ [
+ 82.733209955729066,
+ 46.515185313931127,
+ 500.0
+ ],
+ [
+ 82.702922905360182,
+ 46.590753288301947,
+ 500.0
+ ],
+ [
+ 82.692071738174747,
+ 46.668798430677853,
+ 500.0
+ ],
+ [
+ 82.701069179149755,
+ 46.746954995252032,
+ 500.0
+ ],
+ [
+ 82.729726029860331,
+ 46.822843802028565,
+ 500.0
+ ],
+ [
+ 82.777246690658473,
+ 46.89414497334581,
+ 500.0
+ ],
+ [
+ 82.842244045951276,
+ 46.958670048374529,
+ 500.0
+ ],
+ [
+ 82.92277444004614,
+ 47.01443110667239,
+ 500.0
+ ],
+ [
+ 83.016392632653904,
+ 47.059704491260035,
+ 500.0
+ ],
+ [
+ 83.120225649921508,
+ 47.093086789194963,
+ 500.0
+ ],
+ [
+ 83.231063410582806,
+ 47.113540916434381,
+ 500.0
+ ],
+ [
+ 83.345463,
+ 47.120430467123803,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9382,
+ "name": "Beijiang:tacheng",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "46.73",
+ "lng": "82.99",
+ "radius": 5000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 82.99,
+ 46.774977775990891,
+ 0.0
+ ],
+ [
+ 83.001368025731054,
+ 46.7742939008603,
+ 0.0
+ ],
+ [
+ 83.012389798527778,
+ 46.772263105208374,
+ 0.0
+ ],
+ [
+ 83.022729687963817,
+ 46.768947239234286,
+ 0.0
+ ],
+ [
+ 83.032072973505095,
+ 46.76444727669552,
+ 0.0
+ ],
+ [
+ 83.040135473344279,
+ 46.758900219904753,
+ 0.0
+ ],
+ [
+ 83.046672214108966,
+ 46.752474903940943,
+ 0.0
+ ],
+ [
+ 83.051484873822702,
+ 46.745366831570315,
+ 0.0
+ ],
+ [
+ 83.054427772083912,
+ 46.73779220006773,
+ 0.0
+ ],
+ [
+ 83.055412229851271,
+ 46.729981305408018,
+ 0.0
+ ],
+ [
+ 83.054409174489706,
+ 46.722171527459167,
+ 0.0
+ ],
+ [
+ 83.051449921772559,
+ 46.7146001113979,
+ 0.0
+ ],
+ [
+ 83.046625123326706,
+ 46.707496965370616,
+ 0.0
+ ],
+ [
+ 83.040081923665042,
+ 46.701077692463919,
+ 0.0
+ ],
+ [
+ 83.032019423807299,
+ 46.69553706656307,
+ 0.0
+ ],
+ [
+ 83.022682597134562,
+ 46.691043147086795,
+ 0.0
+ ],
+ [
+ 83.012354846424202,
+ 46.687732207464343,
+ 0.0
+ ],
+ [
+ 83.00134942810196,
+ 46.685704627261032,
+ 0.0
+ ],
+ [
+ 82.99,
+ 46.685021868844188,
+ 0.0
+ ],
+ [
+ 82.978650571898029,
+ 46.685704627261032,
+ 0.0
+ ],
+ [
+ 82.967645153575788,
+ 46.687732207464343,
+ 0.0
+ ],
+ [
+ 82.957317402865428,
+ 46.691043147086795,
+ 0.0
+ ],
+ [
+ 82.947980576192691,
+ 46.69553706656307,
+ 0.0
+ ],
+ [
+ 82.939918076334948,
+ 46.701077692463919,
+ 0.0
+ ],
+ [
+ 82.933374876673284,
+ 46.707496965370616,
+ 0.0
+ ],
+ [
+ 82.928550078227431,
+ 46.7146001113979,
+ 0.0
+ ],
+ [
+ 82.925590825510284,
+ 46.722171527459167,
+ 0.0
+ ],
+ [
+ 82.924587770148719,
+ 46.729981305408018,
+ 0.0
+ ],
+ [
+ 82.925572227916078,
+ 46.73779220006773,
+ 0.0
+ ],
+ [
+ 82.928515126177288,
+ 46.745366831570315,
+ 0.0
+ ],
+ [
+ 82.933327785891024,
+ 46.752474903940943,
+ 0.0
+ ],
+ [
+ 82.939864526655711,
+ 46.758900219904753,
+ 0.0
+ ],
+ [
+ 82.947927026494895,
+ 46.76444727669552,
+ 0.0
+ ],
+ [
+ 82.957270312036172,
+ 46.768947239234286,
+ 0.0
+ ],
+ [
+ 82.967610201472212,
+ 46.772263105208374,
+ 0.0
+ ],
+ [
+ 82.978631974268936,
+ 46.7742939008603,
+ 0.0
+ ],
+ [
+ 82.99,
+ 46.774977775990891,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7290,
+ "name": "Tacheng Airport",
+ "country": "CN",
+ "city": "Tacheng",
+ "height": 0,
+ "level": 2,
+ "lat": "46.6926671478078",
+ "lng": "83.2919529322606",
+ "radius": 13076,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.274887388799996,
+ 46.7295662175,
+ 0.0
+ ],
+ [
+ 83.184939718,
+ 46.784591706699999,
+ 0.0
+ ],
+ [
+ 83.129937241500002,
+ 46.731242307199999,
+ 0.0
+ ],
+ [
+ 83.243267642700005,
+ 46.694583592199997,
+ 0.0
+ ],
+ [
+ 83.240934450200001,
+ 46.665149882900003,
+ 0.0
+ ],
+ [
+ 83.248322468599994,
+ 46.649345199,
+ 0.0
+ ],
+ [
+ 83.261412267200001,
+ 46.6353903097,
+ 0.0
+ ],
+ [
+ 83.307591836399993,
+ 46.612592158200002,
+ 0.0
+ ],
+ [
+ 83.347706490700006,
+ 46.600956616399998,
+ 0.0
+ ],
+ [
+ 83.395374664599998,
+ 46.604216465199997,
+ 0.0
+ ],
+ [
+ 83.416675981599994,
+ 46.612049548599998,
+ 0.0
+ ],
+ [
+ 83.274887388799996,
+ 46.7295662175,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7290,
+ "name": "Tacheng Airport",
+ "country": "CN",
+ "city": "Tacheng",
+ "height": 0,
+ "level": 2,
+ "lat": "46.6490301064521",
+ "lng": "83.3998999836807",
+ "radius": 13081,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.506696298899996,
+ 46.557074448,
+ 0.0
+ ],
+ [
+ 83.561725373200005,
+ 46.610424698599999,
+ 0.0
+ ],
+ [
+ 83.451734482099994,
+ 46.647075834100001,
+ 0.0
+ ],
+ [
+ 83.452927728,
+ 46.677415113599999,
+ 0.0
+ ],
+ [
+ 83.4447459151,
+ 46.693035559400002,
+ 0.0
+ ],
+ [
+ 83.430943037800006,
+ 46.706669739,
+ 0.0
+ ],
+ [
+ 83.384074901800005,
+ 46.729075222399999,
+ 0.0
+ ],
+ [
+ 83.344016357100003,
+ 46.740673319199999,
+ 0.0
+ ],
+ [
+ 83.319808149400004,
+ 46.741201261,
+ 0.0
+ ],
+ [
+ 83.274887388799996,
+ 46.7295662175,
+ 0.0
+ ],
+ [
+ 83.416675981599994,
+ 46.612049548599998,
+ 0.0
+ ],
+ [
+ 83.506696298899996,
+ 46.557074448,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7290,
+ "name": "Tacheng Airport",
+ "country": "CN",
+ "city": "Tacheng",
+ "height": 120,
+ "level": 2,
+ "lat": "46.6703808618967",
+ "lng": "83.3453739032678",
+ "radius": 23495,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.651704997699994,
+ 46.649302732800003,
+ 120.0
+ ],
+ [
+ 83.517037405899998,
+ 46.495092151500003,
+ 120.0
+ ],
+ [
+ 83.038988498199998,
+ 46.6919088844,
+ 120.0
+ ],
+ [
+ 83.174147380299999,
+ 46.846119465,
+ 120.0
+ ],
+ [
+ 83.651704997699994,
+ 46.649302732800003,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8664,
+ "name": "Fuyun Koktokay Airport",
+ "country": "CN",
+ "city": "Fuyun",
+ "height": 0,
+ "level": 2,
+ "lat": "46.824414777001",
+ "lng": "89.4557849307583",
+ "radius": 13246,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.436444588800001,
+ 46.857884752799997,
+ 0.0
+ ],
+ [
+ 89.3364934377,
+ 46.911253476500001,
+ 0.0
+ ],
+ [
+ 89.286651641,
+ 46.852820921300001,
+ 0.0
+ ],
+ [
+ 89.403334046500007,
+ 46.821132180100001,
+ 0.0
+ ],
+ [
+ 89.405603257199999,
+ 46.794206488299999,
+ 0.0
+ ],
+ [
+ 89.415091334699994,
+ 46.778932491100001,
+ 0.0
+ ],
+ [
+ 89.430022689,
+ 46.765858811400001,
+ 0.0
+ ],
+ [
+ 89.48100685199999,
+ 46.740889283599998,
+ 0.0
+ ],
+ [
+ 89.523277553599996,
+ 46.7323065836,
+ 0.0
+ ],
+ [
+ 89.547412362100005,
+ 46.733672046,
+ 0.0
+ ],
+ [
+ 89.590130255299997,
+ 46.748713433299997,
+ 0.0
+ ],
+ [
+ 89.436444588800001,
+ 46.857884752799997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8664,
+ "name": "Fuyun Koktokay Airport",
+ "country": "CN",
+ "city": "Fuyun",
+ "height": 0,
+ "level": 2,
+ "lat": "46.7834606156834",
+ "lng": "89.5691446522257",
+ "radius": 13055,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.685174530899999,
+ 46.697079986200002,
+ 0.0
+ ],
+ [
+ 89.73501241,
+ 46.753844989100003,
+ 0.0
+ ],
+ [
+ 89.618319412800005,
+ 46.787218535900003,
+ 0.0
+ ],
+ [
+ 89.617284517399995,
+ 46.812938000099997,
+ 0.0
+ ],
+ [
+ 89.608688875200002,
+ 46.8284591241,
+ 0.0
+ ],
+ [
+ 89.594508839400007,
+ 46.841927637300003,
+ 0.0
+ ],
+ [
+ 89.5456686327,
+ 46.8674411358,
+ 0.0
+ ],
+ [
+ 89.502843942799998,
+ 46.875413089399999,
+ 0.0
+ ],
+ [
+ 89.478700580899996,
+ 46.873650241,
+ 0.0
+ ],
+ [
+ 89.436444588800001,
+ 46.857884752799997,
+ 0.0
+ ],
+ [
+ 89.590130255299997,
+ 46.748713433299997,
+ 0.0
+ ],
+ [
+ 89.685174530899999,
+ 46.697079986200002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8664,
+ "name": "Fuyun Koktokay Airport",
+ "country": "CN",
+ "city": "Fuyun",
+ "height": 120,
+ "level": 2,
+ "lat": "46.8037521316454",
+ "lng": "89.5124236121609",
+ "radius": 23657,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.8180746922,
+ 46.765519943400001,
+ 120.0
+ ],
+ [
+ 89.666122440699993,
+ 46.618932053400002,
+ 120.0
+ ],
+ [
+ 89.206661343600004,
+ 46.842383871899997,
+ 120.0
+ ],
+ [
+ 89.359246066200001,
+ 46.9889717609,
+ 120.0
+ ],
+ [
+ 89.8180746922,
+ 46.765519943400001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001334,
+ "name": "Fuyun Koktokay Airport",
+ "country": "CN",
+ "city": "Fuyun",
+ "height": 500,
+ "level": 2,
+ "lat": "46.804388",
+ "lng": "89.511152",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.511152,
+ 47.254143913914689,
+ 500.0
+ ],
+ [
+ 89.625839169670556,
+ 47.247254257197568,
+ 500.0
+ ],
+ [
+ 89.736955150572427,
+ 47.226799839926912,
+ 500.0
+ ],
+ [
+ 89.841048030925876,
+ 47.19341714808408,
+ 500.0
+ ],
+ [
+ 89.934899436612056,
+ 47.148143386384483,
+ 500.0
+ ],
+ [
+ 90.015629105914428,
+ 47.092382111544723,
+ 500.0
+ ],
+ [
+ 90.08078576042108,
+ 47.027857126438306,
+ 500.0
+ ],
+ [
+ 90.128421134919847,
+ 46.956556477823902,
+ 500.0
+ ],
+ [
+ 90.157145041727304,
+ 46.880668713719949,
+ 500.0
+ ],
+ [
+ 90.166160386725181,
+ 46.802513744972714,
+ 500.0
+ ],
+ [
+ 90.155278032270132,
+ 46.724470722418047,
+ 500.0
+ ],
+ [
+ 90.124912243889185,
+ 46.648905299554968,
+ 500.0
+ ],
+ [
+ 90.076058118379464,
+ 46.578098520846396,
+ 500.0
+ ],
+ [
+ 90.010252854046513,
+ 46.514179380786388,
+ 500.0
+ ],
+ [
+ 89.929522997754077,
+ 46.459062861729869,
+ 500.0
+ ],
+ [
+ 89.836319915408808,
+ 46.414394999490128,
+ 500.0
+ ],
+ [
+ 89.733445721125335,
+ 46.381506260919402,
+ 500.0
+ ],
+ [
+ 89.623971808787019,
+ 46.361374258200691,
+ 500.0
+ ],
+ [
+ 89.511152,
+ 46.354596576628929,
+ 500.0
+ ],
+ [
+ 89.398332191212972,
+ 46.361374258200691,
+ 500.0
+ ],
+ [
+ 89.288858278874656,
+ 46.381506260919402,
+ 500.0
+ ],
+ [
+ 89.185984084591183,
+ 46.414394999490128,
+ 500.0
+ ],
+ [
+ 89.092781002245914,
+ 46.459062861729869,
+ 500.0
+ ],
+ [
+ 89.012051145953478,
+ 46.514179380786388,
+ 500.0
+ ],
+ [
+ 88.946245881620527,
+ 46.578098520846396,
+ 500.0
+ ],
+ [
+ 88.897391756110807,
+ 46.648905299554968,
+ 500.0
+ ],
+ [
+ 88.867025967729859,
+ 46.724470722418047,
+ 500.0
+ ],
+ [
+ 88.85614361327481,
+ 46.802513744972714,
+ 500.0
+ ],
+ [
+ 88.865158958272687,
+ 46.880668713719949,
+ 500.0
+ ],
+ [
+ 88.893882865080144,
+ 46.956556477823902,
+ 500.0
+ ],
+ [
+ 88.941518239578912,
+ 47.027857126438306,
+ 500.0
+ ],
+ [
+ 89.006674894085563,
+ 47.092382111544723,
+ 500.0
+ ],
+ [
+ 89.087404563387935,
+ 47.148143386384483,
+ 500.0
+ ],
+ [
+ 89.181255969074115,
+ 47.19341714808408,
+ 500.0
+ ],
+ [
+ 89.285348849427564,
+ 47.226799839926912,
+ 500.0
+ ],
+ [
+ 89.396464830329435,
+ 47.247254257197568,
+ 500.0
+ ],
+ [
+ 89.511152,
+ 47.254143913914689,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30304731,
+ "name": "KHOVD",
+ "country": "MN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "47.9540795009098",
+ "lng": "91.6270704262301",
+ "radius": 4514,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.611512859599998,
+ 47.9933217349,
+ 0.0
+ ],
+ [
+ 91.657524787599996,
+ 47.918977503699999,
+ 0.0
+ ],
+ [
+ 91.642650834600005,
+ 47.914843436,
+ 0.0
+ ],
+ [
+ 91.596616276800006,
+ 47.9891896269,
+ 0.0
+ ],
+ [
+ 91.611512859599998,
+ 47.9933217349,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30304731,
+ "name": "KHOVD",
+ "country": "MN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "47.9008777229219",
+ "lng": "91.660004982405",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.657524787599996,
+ 47.918977503699999,
+ 60.0
+ ],
+ [
+ 91.682685950299998,
+ 47.890922367199998,
+ 60.0
+ ],
+ [
+ 91.654479338300007,
+ 47.883083397699998,
+ 60.0
+ ],
+ [
+ 91.642650834600005,
+ 47.914843436,
+ 60.0
+ ],
+ [
+ 91.657524787599996,
+ 47.918977503699999,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30304731,
+ "name": "KHOVD",
+ "country": "MN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "48.0072879362596",
+ "lng": "91.5941319503916",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.599661140699993,
+ 48.025082115099998,
+ 60.0
+ ],
+ [
+ 91.611512859599998,
+ 47.9933217349,
+ 60.0
+ ],
+ [
+ 91.596616276800006,
+ 47.9891896269,
+ 60.0
+ ],
+ [
+ 91.571401773600002,
+ 48.017242572400001,
+ 60.0
+ ],
+ [
+ 91.599661140699993,
+ 48.025082115099998,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30304731,
+ "name": "KHOVD",
+ "country": "MN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "47.8499135129193",
+ "lng": "91.6914854869159",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.682685950299998,
+ 47.890922367199998,
+ 150.0
+ ],
+ [
+ 91.741289447699998,
+ 47.8254390492,
+ 150.0
+ ],
+ [
+ 91.682022865600004,
+ 47.808971928,
+ 150.0
+ ],
+ [
+ 91.654479338300007,
+ 47.883083397699998,
+ 150.0
+ ],
+ [
+ 91.682685950299998,
+ 47.890922367199998,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30304731,
+ "name": "KHOVD",
+ "country": "MN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "48.0582407564341",
+ "lng": "91.5625205535545",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.571950238100001,
+ 48.099184917800002,
+ 150.0
+ ],
+ [
+ 91.599661140699993,
+ 48.025082115099998,
+ 150.0
+ ],
+ [
+ 91.571401773600002,
+ 48.017242572400001,
+ 150.0
+ ],
+ [
+ 91.512461090299993,
+ 48.0826779454,
+ 150.0
+ ],
+ [
+ 91.571950238100001,
+ 48.099184917800002,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30293423,
+ "name": "KHOVD",
+ "country": "MN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "47.9540790159337",
+ "lng": "91.6270621373587",
+ "radius": 5468,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.669144544199995,
+ 47.980096332700001,
+ 0.0
+ ],
+ [
+ 91.687476384700005,
+ 47.948368927200001,
+ 0.0
+ ],
+ [
+ 91.688347040699995,
+ 47.940871199299998,
+ 0.0
+ ],
+ [
+ 91.686871737700002,
+ 47.933416055199999,
+ 0.0
+ ],
+ [
+ 91.677244519300004,
+ 47.919920247900002,
+ 0.0
+ ],
+ [
+ 91.669514590600002,
+ 47.914468904700001,
+ 0.0
+ ],
+ [
+ 91.649896746,
+ 47.9073385712,
+ 0.0
+ ],
+ [
+ 91.638865154,
+ 47.905970660400001,
+ 0.0
+ ],
+ [
+ 91.616741751600003,
+ 47.9079250849,
+ 0.0
+ ],
+ [
+ 91.5977119896,
+ 47.915739096599999,
+ 0.0
+ ],
+ [
+ 91.58507615,
+ 47.9280424317,
+ 0.0
+ ],
+ [
+ 91.566689349699999,
+ 47.959734993200001,
+ 0.0
+ ],
+ [
+ 91.565790721200003,
+ 47.967231257599998,
+ 0.0
+ ],
+ [
+ 91.567239564600001,
+ 47.974688813100002,
+ 0.0
+ ],
+ [
+ 91.576830211699999,
+ 47.9881995442,
+ 0.0
+ ],
+ [
+ 91.593807687500004,
+ 47.997929126499997,
+ 0.0
+ ],
+ [
+ 91.6041861832,
+ 48.000814926399997,
+ 0.0
+ ],
+ [
+ 91.626471166,
+ 48.002002296299999,
+ 0.0
+ ],
+ [
+ 91.647548414499994,
+ 47.997018133600001,
+ 0.0
+ ],
+ [
+ 91.663767683100005,
+ 47.986725812700001,
+ 0.0
+ ],
+ [
+ 91.669144544199995,
+ 47.980096332700001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010582,
+ "name": "KHOVD",
+ "country": "MN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "47.95400556",
+ "lng": "91.62705",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.62705,
+ 48.403670920119225,
+ 500.0
+ ],
+ [
+ 91.744297405972858,
+ 48.39678029233599,
+ 500.0
+ ],
+ [
+ 91.857890241481442,
+ 48.376323210326511,
+ 500.0
+ ],
+ [
+ 91.964296452373802,
+ 48.342936869855571,
+ 500.0
+ ],
+ [
+ 92.060223808434984,
+ 48.297659544887324,
+ 500.0
+ ],
+ [
+ 92.142727160052033,
+ 48.241896066760049,
+ 500.0
+ ],
+ [
+ 92.20930148974206,
+ 48.177371533040599,
+ 500.0
+ ],
+ [
+ 92.257957532727772,
+ 48.106075113671245,
+ 500.0
+ ],
+ [
+ 92.28727780546852,
+ 48.030196135777906,
+ 500.0
+ ],
+ [
+ 92.296451972706819,
+ 47.952054813934417,
+ 500.0
+ ],
+ [
+ 92.285291503327855,
+ 47.874030053697183,
+ 500.0
+ ],
+ [
+ 92.254224437125387,
+ 47.798486707091179,
+ 500.0
+ ],
+ [
+ 92.204271761879042,
+ 47.727704520578051,
+ 500.0
+ ],
+ [
+ 92.137007366793583,
+ 47.663810813105201,
+ 500.0
+ ],
+ [
+ 92.054503804697774,
+ 47.608718678035842,
+ 500.0
+ ],
+ [
+ 91.959266191559848,
+ 47.564072239059357,
+ 500.0
+ ],
+ [
+ 91.854156539829603,
+ 47.531200222979486,
+ 500.0
+ ],
+ [
+ 91.742310708261527,
+ 47.511078852751751,
+ 500.0
+ ],
+ [
+ 91.62705,
+ 47.504304818364496,
+ 500.0
+ ],
+ [
+ 91.511789291738467,
+ 47.511078852751751,
+ 500.0
+ ],
+ [
+ 91.399943460170391,
+ 47.531200222979486,
+ 500.0
+ ],
+ [
+ 91.294833808440146,
+ 47.564072239059357,
+ 500.0
+ ],
+ [
+ 91.19959619530222,
+ 47.608718678035842,
+ 500.0
+ ],
+ [
+ 91.117092633206411,
+ 47.663810813105201,
+ 500.0
+ ],
+ [
+ 91.049828238120952,
+ 47.727704520578051,
+ 500.0
+ ],
+ [
+ 90.999875562874607,
+ 47.798486707091179,
+ 500.0
+ ],
+ [
+ 90.968808496672139,
+ 47.874030053697183,
+ 500.0
+ ],
+ [
+ 90.957648027293175,
+ 47.952054813934417,
+ 500.0
+ ],
+ [
+ 90.966822194531474,
+ 48.030196135777906,
+ 500.0
+ ],
+ [
+ 90.996142467272222,
+ 48.106075113671245,
+ 500.0
+ ],
+ [
+ 91.044798510257934,
+ 48.177371533040599,
+ 500.0
+ ],
+ [
+ 91.111372839947961,
+ 48.241896066760049,
+ 500.0
+ ],
+ [
+ 91.19387619156501,
+ 48.297659544887324,
+ 500.0
+ ],
+ [
+ 91.289803547626192,
+ 48.342936869855571,
+ 500.0
+ ],
+ [
+ 91.396209758518552,
+ 48.376323210326511,
+ 500.0
+ ],
+ [
+ 91.509802594027136,
+ 48.39678029233599,
+ 500.0
+ ],
+ [
+ 91.62705,
+ 48.403670920119225,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001530,
+ "name": "Qiqihar Sanjiazi Airport",
+ "country": "CN",
+ "city": "Qiqihar",
+ "height": 500,
+ "level": 2,
+ "lat": "47.239722",
+ "lng": "123.918056",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.918056,
+ 47.68944358426856,
+ 500.0
+ ],
+ [
+ 124.033693899629611,
+ 47.682553572592667,
+ 500.0
+ ],
+ [
+ 124.145729658227069,
+ 47.662098182970503,
+ 500.0
+ ],
+ [
+ 124.250681612796356,
+ 47.628714165684208,
+ 500.0
+ ],
+ [
+ 124.345303968953772,
+ 47.583439123540686,
+ 500.0
+ ],
+ [
+ 124.426692370554491,
+ 47.527677087669595,
+ 500.0
+ ],
+ [
+ 124.492375580003625,
+ 47.463152342562665,
+ 500.0
+ ],
+ [
+ 124.540390099194909,
+ 47.391853352333058,
+ 500.0
+ ],
+ [
+ 124.569335592870175,
+ 47.315968953705472,
+ 500.0
+ ],
+ [
+ 124.578410036437162,
+ 47.23781916858988,
+ 500.0
+ ],
+ [
+ 124.567424503663176,
+ 47.159783053773836,
+ 500.0
+ ],
+ [
+ 124.536798362556496,
+ 47.084225960935456,
+ 500.0
+ ],
+ [
+ 124.487536314644956,
+ 47.01342844725928,
+ 500.0
+ ],
+ [
+ 124.42118917733761,
+ 46.949518878990069,
+ 500.0
+ ],
+ [
+ 124.3398005802363,
+ 46.894411530624026,
+ 500.0
+ ],
+ [
+ 124.245841852412781,
+ 46.849751721680597,
+ 500.0
+ ],
+ [
+ 124.1421373586671,
+ 46.816869267299907,
+ 500.0
+ ],
+ [
+ 124.031782443001674,
+ 46.79674125940376,
+ 500.0
+ ],
+ [
+ 123.918056,
+ 46.789964948017243,
+ 500.0
+ ],
+ [
+ 123.80432955699834,
+ 46.79674125940376,
+ 500.0
+ ],
+ [
+ 123.693974641332915,
+ 46.816869267299907,
+ 500.0
+ ],
+ [
+ 123.590270147587233,
+ 46.849751721680597,
+ 500.0
+ ],
+ [
+ 123.496311419763714,
+ 46.894411530624026,
+ 500.0
+ ],
+ [
+ 123.414922822662405,
+ 46.949518878990069,
+ 500.0
+ ],
+ [
+ 123.348575685355058,
+ 47.01342844725928,
+ 500.0
+ ],
+ [
+ 123.299313637443518,
+ 47.084225960935456,
+ 500.0
+ ],
+ [
+ 123.268687496336838,
+ 47.159783053773836,
+ 500.0
+ ],
+ [
+ 123.257701963562852,
+ 47.23781916858988,
+ 500.0
+ ],
+ [
+ 123.266776407129839,
+ 47.315968953705472,
+ 500.0
+ ],
+ [
+ 123.295721900805106,
+ 47.391853352333058,
+ 500.0
+ ],
+ [
+ 123.343736419996389,
+ 47.463152342562665,
+ 500.0
+ ],
+ [
+ 123.409419629445523,
+ 47.527677087669595,
+ 500.0
+ ],
+ [
+ 123.490808031046242,
+ 47.583439123540686,
+ 500.0
+ ],
+ [
+ 123.585430387203658,
+ 47.628714165684208,
+ 500.0
+ ],
+ [
+ 123.690382341772946,
+ 47.662098182970503,
+ 500.0
+ ],
+ [
+ 123.802418100370403,
+ 47.682553572592667,
+ 500.0
+ ],
+ [
+ 123.918056,
+ 47.68944358426856,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4177,
+ "name": "Qiqihar Sanjiazi Airport",
+ "country": "CN",
+ "city": "Qiqihar",
+ "height": 0,
+ "level": 2,
+ "lat": "47.28013586667",
+ "lng": "123.887086610178",
+ "radius": 13092,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.905973475,
+ 47.314400536,
+ 0.0
+ ],
+ [
+ 123.877708924,
+ 47.397709477399999,
+ 0.0
+ ],
+ [
+ 123.784878244,
+ 47.375344119300003,
+ 0.0
+ ],
+ [
+ 123.848204474,
+ 47.301987026500001,
+ 0.0
+ ],
+ [
+ 123.82267312499999,
+ 47.276566000300001,
+ 0.0
+ ],
+ [
+ 123.817272609,
+ 47.260377353700001,
+ 0.0
+ ],
+ [
+ 123.818231207,
+ 47.243791873,
+ 0.0
+ ],
+ [
+ 123.83543554,
+ 47.2063361294,
+ 0.0
+ ],
+ [
+ 123.859940851,
+ 47.182029174,
+ 0.0
+ ],
+ [
+ 123.88001523,
+ 47.172578767899999,
+ 0.0
+ ],
+ [
+ 123.927328743,
+ 47.165606438200001,
+ 0.0
+ ],
+ [
+ 123.905973475,
+ 47.314400536,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4177,
+ "name": "Qiqihar Sanjiazi Airport",
+ "country": "CN",
+ "city": "Qiqihar",
+ "height": 0,
+ "level": 2,
+ "lat": "47.2011472269655",
+ "lng": "123.950569489038",
+ "radius": 13035,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.955604967,
+ 47.083969186099999,
+ 0.0
+ ],
+ [
+ 124.04844168299999,
+ 47.104645733200002,
+ 0.0
+ ],
+ [
+ 123.985115509,
+ 47.177990170699999,
+ 0.0
+ ],
+ [
+ 124.002166469,
+ 47.190322032799997,
+ 0.0
+ ],
+ [
+ 124.019200084,
+ 47.221133036099999,
+ 0.0
+ ],
+ [
+ 124.018385966,
+ 47.237722066,
+ 0.0
+ ],
+ [
+ 124.001231577,
+ 47.275332498099999,
+ 0.0
+ ],
+ [
+ 123.974520778,
+ 47.299985885200002,
+ 0.0
+ ],
+ [
+ 123.953818985,
+ 47.308842382500004,
+ 0.0
+ ],
+ [
+ 123.905973475,
+ 47.314400536,
+ 0.0
+ ],
+ [
+ 123.927328743,
+ 47.165606438200001,
+ 0.0
+ ],
+ [
+ 123.955604967,
+ 47.083969186099999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4177,
+ "name": "Qiqihar Sanjiazi Airport",
+ "country": "CN",
+ "city": "Qiqihar",
+ "height": 120,
+ "level": 2,
+ "lat": "47.240811005325",
+ "lng": "123.918023333035",
+ "radius": 23496,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.12825929,
+ 47.085184669100002,
+ 120.0
+ ],
+ [
+ 123.876313556,
+ 47.031414202199997,
+ 120.0
+ ],
+ [
+ 123.70704087199999,
+ 47.396357469800002,
+ 120.0
+ ],
+ [
+ 123.960728071,
+ 47.450127934900003,
+ 120.0
+ ],
+ [
+ 124.12825929,
+ 47.085184669100002,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001460,
+ "name": "Saertu Airport",
+ "country": "CN",
+ "city": "Daqing Shi",
+ "height": 500,
+ "level": 2,
+ "lat": "46.752454",
+ "lng": "125.13804",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.13804,
+ 47.20221401202155,
+ 500.0
+ ],
+ [
+ 125.252615236711407,
+ 47.195324396647543,
+ 500.0
+ ],
+ [
+ 125.36362292792937,
+ 47.174870092491425,
+ 500.0
+ ],
+ [
+ 125.467614663888213,
+ 47.141487554357504,
+ 500.0
+ ],
+ [
+ 125.561375298314232,
+ 47.096213940007132,
+ 500.0
+ ],
+ [
+ 125.642027406114508,
+ 47.040452750212019,
+ 500.0
+ ],
+ [
+ 125.707122059011965,
+ 46.975927731072417,
+ 500.0
+ ],
+ [
+ 125.754712785827437,
+ 46.904626880186029,
+ 500.0
+ ],
+ [
+ 125.783410594463405,
+ 46.828738711627537,
+ 500.0
+ ],
+ [
+ 125.792418972315218,
+ 46.750583123304175,
+ 500.0
+ ],
+ [
+ 125.781548757908197,
+ 46.672539277361771,
+ 500.0
+ ],
+ [
+ 125.751213616993965,
+ 46.596972863171096,
+ 500.0
+ ],
+ [
+ 125.702407516315105,
+ 46.526164982988448,
+ 500.0
+ ],
+ [
+ 125.636666051198034,
+ 46.462244705760781,
+ 500.0
+ ],
+ [
+ 125.556013757393472,
+ 46.407127097696929,
+ 500.0
+ ],
+ [
+ 125.46289965021198,
+ 46.362458279444859,
+ 500.0
+ ],
+ [
+ 125.360123223517903,
+ 46.329568795033083,
+ 500.0
+ ],
+ [
+ 125.250753050582475,
+ 46.309436318249922,
+ 500.0
+ ],
+ [
+ 125.13804,
+ 46.302658474088851,
+ 500.0
+ ],
+ [
+ 125.025326949417533,
+ 46.309436318249922,
+ 500.0
+ ],
+ [
+ 124.915956776482105,
+ 46.329568795033083,
+ 500.0
+ ],
+ [
+ 124.813180349788027,
+ 46.362458279444859,
+ 500.0
+ ],
+ [
+ 124.720066242606535,
+ 46.407127097696929,
+ 500.0
+ ],
+ [
+ 124.639413948801973,
+ 46.462244705760781,
+ 500.0
+ ],
+ [
+ 124.573672483684902,
+ 46.526164982988448,
+ 500.0
+ ],
+ [
+ 124.524866383006042,
+ 46.596972863171096,
+ 500.0
+ ],
+ [
+ 124.49453124209181,
+ 46.672539277361771,
+ 500.0
+ ],
+ [
+ 124.483661027684789,
+ 46.750583123304175,
+ 500.0
+ ],
+ [
+ 124.492669405536603,
+ 46.828738711627537,
+ 500.0
+ ],
+ [
+ 124.521367214172571,
+ 46.904626880186029,
+ 500.0
+ ],
+ [
+ 124.568957940988042,
+ 46.975927731072417,
+ 500.0
+ ],
+ [
+ 124.6340525938855,
+ 47.040452750212019,
+ 500.0
+ ],
+ [
+ 124.714704701685775,
+ 47.096213940007132,
+ 500.0
+ ],
+ [
+ 124.808465336111794,
+ 47.141487554357504,
+ 500.0
+ ],
+ [
+ 124.912457072070637,
+ 47.174870092491425,
+ 500.0
+ ],
+ [
+ 125.023464763288601,
+ 47.195324396647543,
+ 500.0
+ ],
+ [
+ 125.13804,
+ 47.20221401202155,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 693,
+ "name": "Saertu Airport",
+ "country": "CN",
+ "city": "Daqing Shi",
+ "height": 0,
+ "level": 2,
+ "lat": "46.7914702439688",
+ "lng": "125.113304883172",
+ "radius": 13377,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.124280364,
+ 46.827741969900003,
+ 0.0
+ ],
+ [
+ 125.094294152,
+ 46.911074421599999,
+ 0.0
+ ],
+ [
+ 125.003207328,
+ 46.885289882,
+ 0.0
+ ],
+ [
+ 125.066539908,
+ 46.808613466399997,
+ 0.0
+ ],
+ [
+ 125.04186486099999,
+ 46.784930622200001,
+ 0.0
+ ],
+ [
+ 125.035688517,
+ 46.768880381499997,
+ 0.0
+ ],
+ [
+ 125.035789328,
+ 46.752282286099998,
+ 0.0
+ ],
+ [
+ 125.042154762,
+ 46.736267451300002,
+ 0.0
+ ],
+ [
+ 125.067191832,
+ 46.701506818799999,
+ 0.0
+ ],
+ [
+ 125.103572556,
+ 46.680047841,
+ 0.0
+ ],
+ [
+ 125.150704549,
+ 46.673924078600002,
+ 0.0
+ ],
+ [
+ 125.124280364,
+ 46.827741969900003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 693,
+ "name": "Saertu Airport",
+ "country": "CN",
+ "city": "Daqing Shi",
+ "height": 0,
+ "level": 2,
+ "lat": "46.7126826288018",
+ "lng": "125.168399914123",
+ "radius": 13227,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.179002166,
+ 46.5939440334,
+ 0.0
+ ],
+ [
+ 125.270107442,
+ 46.616350075500002,
+ 0.0
+ ],
+ [
+ 125.20678296299999,
+ 46.693033970599998,
+ 0.0
+ ],
+ [
+ 125.229881348,
+ 46.714933524,
+ 0.0
+ ],
+ [
+ 125.23660309,
+ 46.730879321300002,
+ 0.0
+ ],
+ [
+ 125.237076754,
+ 46.747474386,
+ 0.0
+ ],
+ [
+ 125.219550901,
+ 46.785337199600001,
+ 0.0
+ ],
+ [
+ 125.20826157,
+ 46.8005497471,
+ 0.0
+ ],
+ [
+ 125.171605609,
+ 46.821853460900002,
+ 0.0
+ ],
+ [
+ 125.124280364,
+ 46.827741969900003,
+ 0.0
+ ],
+ [
+ 125.150704549,
+ 46.673924078600002,
+ 0.0
+ ],
+ [
+ 125.179002166,
+ 46.5939440334,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 693,
+ "name": "Saertu Airport",
+ "country": "CN",
+ "city": "Daqing Shi",
+ "height": 120,
+ "level": 2,
+ "lat": "46.7507711033455",
+ "lng": "125.136710577756",
+ "radius": 23449,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.366644667,
+ 46.610819208099997,
+ 120.0
+ ],
+ [
+ 125.126112199,
+ 46.540014606299998,
+ 120.0
+ ],
+ [
+ 124.906145519,
+ 46.890697397899999,
+ 120.0
+ ],
+ [
+ 125.148248137,
+ 46.961501997699997,
+ 120.0
+ ],
+ [
+ 125.366644667,
+ 46.610819208099997,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001356,
+ "name": "Jiamusi Airport",
+ "country": "CN",
+ "city": "Jiamusi",
+ "height": 500,
+ "level": 2,
+ "lat": "46.843462",
+ "lng": "130.465322",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 130.465322,
+ 47.293214830944073,
+ 500.0
+ ],
+ [
+ 130.580093592534183,
+ 47.286325142982086,
+ 500.0
+ ],
+ [
+ 130.6912912483252,
+ 47.26587064020601,
+ 500.0
+ ],
+ [
+ 130.795460414181605,
+ 47.232487832103295,
+ 500.0
+ ],
+ [
+ 130.889380281394921,
+ 47.18721395879124,
+ 500.0
+ ],
+ [
+ 130.97016844877615,
+ 47.131452619168641,
+ 500.0
+ ],
+ [
+ 131.035371865415101,
+ 47.066927658918935,
+ 500.0
+ ],
+ [
+ 131.083040913075763,
+ 46.995627161875703,
+ 500.0
+ ],
+ [
+ 131.111784502452792,
+ 46.919739701665144,
+ 500.0
+ ],
+ [
+ 131.120805100977577,
+ 46.841585198911766,
+ 500.0
+ ],
+ [
+ 131.109913589127814,
+ 46.763542795954436,
+ 500.0
+ ],
+ [
+ 131.079524684930249,
+ 46.68797811928431,
+ 500.0
+ ],
+ [
+ 131.030634337603118,
+ 46.61717216983476,
+ 500.0
+ ],
+ [
+ 130.964780954524286,
+ 46.553253886014048,
+ 500.0
+ ],
+ [
+ 130.883992599407264,
+ 46.498138187004898,
+ 500.0
+ ],
+ [
+ 130.790722411005873,
+ 46.453471044706909,
+ 500.0
+ ],
+ [
+ 130.687774479615967,
+ 46.420582867827008,
+ 500.0
+ ],
+ [
+ 130.57822232638128,
+ 46.400451222133611,
+ 500.0
+ ],
+ [
+ 130.465322,
+ 46.393673663011796,
+ 500.0
+ ],
+ [
+ 130.352421673618693,
+ 46.400451222133611,
+ 500.0
+ ],
+ [
+ 130.242869520384005,
+ 46.420582867827008,
+ 500.0
+ ],
+ [
+ 130.139921588994099,
+ 46.453471044706909,
+ 500.0
+ ],
+ [
+ 130.046651400592708,
+ 46.498138187004898,
+ 500.0
+ ],
+ [
+ 129.965863045475686,
+ 46.553253886014048,
+ 500.0
+ ],
+ [
+ 129.900009662396855,
+ 46.61717216983476,
+ 500.0
+ ],
+ [
+ 129.851119315069724,
+ 46.68797811928431,
+ 500.0
+ ],
+ [
+ 129.820730410872159,
+ 46.763542795954436,
+ 500.0
+ ],
+ [
+ 129.809838899022395,
+ 46.841585198911766,
+ 500.0
+ ],
+ [
+ 129.81885949754718,
+ 46.919739701665144,
+ 500.0
+ ],
+ [
+ 129.847603086924209,
+ 46.995627161875703,
+ 500.0
+ ],
+ [
+ 129.895272134584872,
+ 47.066927658918935,
+ 500.0
+ ],
+ [
+ 129.960475551223823,
+ 47.131452619168641,
+ 500.0
+ ],
+ [
+ 130.041263718605052,
+ 47.18721395879124,
+ 500.0
+ ],
+ [
+ 130.135183585818368,
+ 47.232487832103295,
+ 500.0
+ ],
+ [
+ 130.239352751674772,
+ 47.26587064020601,
+ 500.0
+ ],
+ [
+ 130.350550407465789,
+ 47.286325142982086,
+ 500.0
+ ],
+ [
+ 130.465322,
+ 47.293214830944073,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2683,
+ "name": "Jiamusi Airport",
+ "country": "CN",
+ "city": "Jiamusi",
+ "height": 0,
+ "level": 2,
+ "lat": "46.8700724294249",
+ "lng": "130.514711330895",
+ "radius": 13196,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 130.67012919199999,
+ 46.923049034199998,
+ 0.0
+ ],
+ [
+ 130.601431945,
+ 46.972915488300004,
+ 0.0
+ ],
+ [
+ 130.524840716,
+ 46.909587672400001,
+ 0.0
+ ],
+ [
+ 130.482461537,
+ 46.917716051799999,
+ 0.0
+ ],
+ [
+ 130.458274252,
+ 46.916119971100002,
+ 0.0
+ ],
+ [
+ 130.435520027,
+ 46.910297594600003,
+ 0.0
+ ],
+ [
+ 130.389122498,
+ 46.885670144400002,
+ 0.0
+ ],
+ [
+ 130.36174325799999,
+ 46.8588146779,
+ 0.0
+ ],
+ [
+ 130.356512597,
+ 46.842606508099998,
+ 0.0
+ ],
+ [
+ 130.364909195,
+ 46.810199322599999,
+ 0.0
+ ],
+ [
+ 130.56350853399999,
+ 46.87800363,
+ 0.0
+ ],
+ [
+ 130.67012919199999,
+ 46.923049034199998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2683,
+ "name": "Jiamusi Airport",
+ "country": "CN",
+ "city": "Jiamusi",
+ "height": 0,
+ "level": 2,
+ "lat": "46.8157888802256",
+ "lng": "130.41711526146",
+ "radius": 13107,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 130.364909195,
+ 46.810199322599999,
+ 0.0
+ ],
+ [
+ 130.26154369599999,
+ 46.765287079300002,
+ 0.0
+ ],
+ [
+ 130.32687307,
+ 46.715415594500001,
+ 0.0
+ ],
+ [
+ 130.408551611,
+ 46.778749854499999,
+ 0.0
+ ],
+ [
+ 130.450921103000013,
+ 46.770600121599998,
+ 0.0
+ ],
+ [
+ 130.475043739,
+ 46.772190639400002,
+ 0.0
+ ],
+ [
+ 130.517489347,
+ 46.787629182400003,
+ 0.0
+ ],
+ [
+ 130.56649021199999,
+ 46.829382792200001,
+ 0.0
+ ],
+ [
+ 130.57178386699999,
+ 46.845581194300003,
+ 0.0
+ ],
+ [
+ 130.570768807,
+ 46.862164911699999,
+ 0.0
+ ],
+ [
+ 130.56350853399999,
+ 46.87800363,
+ 0.0
+ ],
+ [
+ 130.364909195,
+ 46.810199322599999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2683,
+ "name": "Jiamusi Airport",
+ "country": "CN",
+ "city": "Jiamusi",
+ "height": 120,
+ "level": 2,
+ "lat": "46.8438329460481",
+ "lng": "130.465939323535",
+ "radius": 23477,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 130.584121591000013,
+ 47.038941923499998,
+ 120.0
+ ],
+ [
+ 130.761230716999989,
+ 46.905726584500002,
+ 120.0
+ ],
+ [
+ 130.34711602199999,
+ 46.649028555199997,
+ 120.0
+ ],
+ [
+ 130.170851166,
+ 46.782243895699999,
+ 120.0
+ ],
+ [
+ 130.584121591000013,
+ 47.038941923499998,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296243,
+ "name": "URDZHAR",
+ "country": "KZ",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "47.090833",
+ "lng": "81.665556",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.665556,
+ 47.095330508772534,
+ 0.0
+ ],
+ [
+ 81.666699615323253,
+ 47.095262175826129,
+ 0.0
+ ],
+ [
+ 81.66780847391739,
+ 47.09505925375931,
+ 0.0
+ ],
+ [
+ 81.668848876151287,
+ 47.094727909725975,
+ 0.0
+ ],
+ [
+ 81.669789204345705,
+ 47.094278213698381,
+ 0.0
+ ],
+ [
+ 81.67060088413416,
+ 47.093723832224462,
+ 0.0
+ ],
+ [
+ 81.671259253038627,
+ 47.093081612843513,
+ 0.0
+ ],
+ [
+ 81.67174430982611,
+ 47.092371071827699,
+ 0.0
+ ],
+ [
+ 81.672041321877032,
+ 47.091613800856912,
+ 0.0
+ ],
+ [
+ 81.672141272154377,
+ 47.090832810695133,
+ 0.0
+ ],
+ [
+ 81.672041132274117,
+ 47.090051831842835,
+ 0.0
+ ],
+ [
+ 81.671743953489198,
+ 47.089294593436421,
+ 0.0
+ ],
+ [
+ 81.671258772947198,
+ 47.08858410231209,
+ 0.0
+ ],
+ [
+ 81.670600338194333,
+ 47.087941944132126,
+ 0.0
+ ],
+ [
+ 81.669788658405892,
+ 47.087387627786924,
+ 0.0
+ ],
+ [
+ 81.668848396059872,
+ 47.086937992960308,
+ 0.0
+ ],
+ [
+ 81.667808117580478,
+ 47.086606698818478,
+ 0.0
+ ],
+ [
+ 81.666699425720338,
+ 47.086403809316018,
+ 0.0
+ ],
+ [
+ 81.665556,
+ 47.086335487679101,
+ 0.0
+ ],
+ [
+ 81.664412574279652,
+ 47.086403809316018,
+ 0.0
+ ],
+ [
+ 81.663303882419513,
+ 47.086606698818478,
+ 0.0
+ ],
+ [
+ 81.662263603940119,
+ 47.086937992960308,
+ 0.0
+ ],
+ [
+ 81.661323341594098,
+ 47.087387627786924,
+ 0.0
+ ],
+ [
+ 81.660511661805657,
+ 47.087941944132126,
+ 0.0
+ ],
+ [
+ 81.659853227052793,
+ 47.08858410231209,
+ 0.0
+ ],
+ [
+ 81.659368046510792,
+ 47.089294593436421,
+ 0.0
+ ],
+ [
+ 81.659070867725873,
+ 47.090051831842835,
+ 0.0
+ ],
+ [
+ 81.658970727845613,
+ 47.090832810695133,
+ 0.0
+ ],
+ [
+ 81.659070678122958,
+ 47.091613800856912,
+ 0.0
+ ],
+ [
+ 81.65936769017388,
+ 47.092371071827699,
+ 0.0
+ ],
+ [
+ 81.659852746961363,
+ 47.093081612843513,
+ 0.0
+ ],
+ [
+ 81.66051111586583,
+ 47.093723832224462,
+ 0.0
+ ],
+ [
+ 81.661322795654286,
+ 47.094278213698381,
+ 0.0
+ ],
+ [
+ 81.662263123848703,
+ 47.094727909725975,
+ 0.0
+ ],
+ [
+ 81.663303526082601,
+ 47.09505925375931,
+ 0.0
+ ],
+ [
+ 81.664412384676737,
+ 47.095262175826129,
+ 0.0
+ ],
+ [
+ 81.665556,
+ 47.095330508772534,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286526,
+ "name": "Baruun Urt Airport",
+ "country": "MN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "46.6600830036111",
+ "lng": "113.284996308679",
+ "radius": 7795,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.28602099699999,
+ 46.697443849,
+ 0.0
+ ],
+ [
+ 113.29957336299999,
+ 46.6240806518,
+ 0.0
+ ],
+ [
+ 113.312489987,
+ 46.592571114199998,
+ 0.0
+ ],
+ [
+ 113.282931316,
+ 46.589994842,
+ 0.0
+ ],
+ [
+ 113.283984929,
+ 46.622721983399998,
+ 0.0
+ ],
+ [
+ 113.270411305,
+ 46.696085678899998,
+ 0.0
+ ],
+ [
+ 113.257464524,
+ 46.7275941726,
+ 0.0
+ ],
+ [
+ 113.287079567,
+ 46.730170946900003,
+ 0.0
+ ],
+ [
+ 113.28602099699999,
+ 46.697443849,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1469,
+ "name": "Ulanhot Airport",
+ "country": "CN",
+ "city": "Hinggan",
+ "height": 0,
+ "level": 2,
+ "lat": "46.2251770325514",
+ "lng": "121.945326216376",
+ "radius": 13101,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.929907244,
+ 46.259562633,
+ 0.0
+ ],
+ [
+ 121.843347969,
+ 46.319592343,
+ 0.0
+ ],
+ [
+ 121.786585806,
+ 46.267978578,
+ 0.0
+ ],
+ [
+ 121.89494108,
+ 46.227933096699999,
+ 0.0
+ ],
+ [
+ 121.890323992,
+ 46.210668310499997,
+ 0.0
+ ],
+ [
+ 121.900575513,
+ 46.178529939,
+ 0.0
+ ],
+ [
+ 121.914303655,
+ 46.164923923,
+ 0.0
+ ],
+ [
+ 121.957562646,
+ 46.1409430454,
+ 0.0
+ ],
+ [
+ 122.001009848,
+ 46.129741020399997,
+ 0.0
+ ],
+ [
+ 122.02494975,
+ 46.130233176,
+ 0.0
+ ],
+ [
+ 122.068281339,
+ 46.143711589600002,
+ 0.0
+ ],
+ [
+ 121.929907244,
+ 46.259562633,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1469,
+ "name": "Ulanhot Airport",
+ "country": "CN",
+ "city": "Hinggan",
+ "height": 0,
+ "level": 2,
+ "lat": "46.1765270236832",
+ "lng": "122.0496969458",
+ "radius": 13045,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.153303751,
+ 46.083741117,
+ 0.0
+ ],
+ [
+ 122.210050514,
+ 46.138744955,
+ 0.0
+ ],
+ [
+ 122.103389834,
+ 46.175401797299997,
+ 0.0
+ ],
+ [
+ 122.106231953,
+ 46.204345326400002,
+ 0.0
+ ],
+ [
+ 122.099299223,
+ 46.220235159799998,
+ 0.0
+ ],
+ [
+ 122.086653604,
+ 46.234340832299999,
+ 0.0
+ ],
+ [
+ 122.040739519,
+ 46.262406516399999,
+ 0.0
+ ],
+ [
+ 121.997322926,
+ 46.273567696100002,
+ 0.0
+ ],
+ [
+ 121.973320626,
+ 46.273072327400001,
+ 0.0
+ ],
+ [
+ 121.929907244,
+ 46.259562633,
+ 0.0
+ ],
+ [
+ 122.068281339,
+ 46.143711589600002,
+ 0.0
+ ],
+ [
+ 122.153303751,
+ 46.083741117,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1469,
+ "name": "Ulanhot Airport",
+ "country": "CN",
+ "city": "Hinggan",
+ "height": 120,
+ "level": 2,
+ "lat": "46.2004719458504",
+ "lng": "121.9995042724",
+ "radius": 23551,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.29636852,
+ 46.149466128500002,
+ 120.0
+ ],
+ [
+ 122.132803427,
+ 46.009900871299998,
+ 120.0
+ ],
+ [
+ 121.702484578,
+ 46.251814456799998,
+ 120.0
+ ],
+ [
+ 121.86677143599999,
+ 46.391379712700001,
+ 120.0
+ ],
+ [
+ 122.29636852,
+ 46.149466128500002,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001505,
+ "name": "Ulanhot Airport",
+ "country": "CN",
+ "city": "Hinggan",
+ "height": 500,
+ "level": 2,
+ "lat": "46.195428",
+ "lng": "122.007918",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.007918,
+ 46.645231997221835,
+ 500.0
+ ],
+ [
+ 122.121312139176496,
+ 46.638342812252013,
+ 500.0
+ ],
+ [
+ 122.231177165313994,
+ 46.617889683846933,
+ 500.0
+ ],
+ [
+ 122.334101612344611,
+ 46.584508737025196,
+ 500.0
+ ],
+ [
+ 122.426904388037784,
+ 46.539236632941503,
+ 500.0
+ ],
+ [
+ 122.506737997575627,
+ 46.483476280818273,
+ 500.0
+ ],
+ [
+ 122.57117831428404,
+ 46.418950826723979,
+ 500.0
+ ],
+ [
+ 122.618297805024611,
+ 46.347647749163414,
+ 500.0
+ ],
+ [
+ 122.646720104403883,
+ 46.271755204631503,
+ 500.0
+ ],
+ [
+ 122.65565484891134,
+ 46.193592956291766,
+ 500.0
+ ],
+ [
+ 122.644912639021115,
+ 46.115540288756002,
+ 500.0
+ ],
+ [
+ 122.614900823896775,
+ 46.039963274360566,
+ 500.0
+ ],
+ [
+ 122.566601455577768,
+ 45.969143630798989,
+ 500.0
+ ],
+ [
+ 122.501533220696743,
+ 45.90521121907657,
+ 500.0
+ ],
+ [
+ 122.421699435351144,
+ 45.850081997035566,
+ 500.0
+ ],
+ [
+ 122.329524308477474,
+ 45.805402987144682,
+ 500.0
+ ],
+ [
+ 122.227779677967916,
+ 45.772505553716179,
+ 500.0
+ ],
+ [
+ 122.119504343383241,
+ 45.752368025265746,
+ 500.0
+ ],
+ [
+ 122.007918,
+ 45.74558844867321,
+ 500.0
+ ],
+ [
+ 121.896331656616766,
+ 45.752368025265746,
+ 500.0
+ ],
+ [
+ 121.788056322032091,
+ 45.772505553716179,
+ 500.0
+ ],
+ [
+ 121.686311691522533,
+ 45.805402987144682,
+ 500.0
+ ],
+ [
+ 121.594136564648863,
+ 45.850081997035566,
+ 500.0
+ ],
+ [
+ 121.514302779303264,
+ 45.90521121907657,
+ 500.0
+ ],
+ [
+ 121.449234544422239,
+ 45.969143630798989,
+ 500.0
+ ],
+ [
+ 121.400935176103232,
+ 46.039963274360566,
+ 500.0
+ ],
+ [
+ 121.370923360978892,
+ 46.115540288756002,
+ 500.0
+ ],
+ [
+ 121.360181151088668,
+ 46.193592956291766,
+ 500.0
+ ],
+ [
+ 121.369115895596124,
+ 46.271755204631503,
+ 500.0
+ ],
+ [
+ 121.397538194975397,
+ 46.347647749163414,
+ 500.0
+ ],
+ [
+ 121.444657685715967,
+ 46.418950826723979,
+ 500.0
+ ],
+ [
+ 121.509098002424381,
+ 46.483476280818273,
+ 500.0
+ ],
+ [
+ 121.588931611962224,
+ 46.539236632941503,
+ 500.0
+ ],
+ [
+ 121.681734387655396,
+ 46.584508737025196,
+ 500.0
+ ],
+ [
+ 121.784658834686013,
+ 46.617889683846933,
+ 500.0
+ ],
+ [
+ 121.894523860823512,
+ 46.638342812252013,
+ 500.0
+ ],
+ [
+ 122.007918,
+ 46.645231997221835,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30293301,
+ "name": "USHARAL",
+ "country": "KZ",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "46.190833",
+ "lng": "80.831111",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 80.831111,
+ 46.195331219551882,
+ 0.0
+ ],
+ [
+ 80.8322358048231,
+ 46.195262875982905,
+ 0.0
+ ],
+ [
+ 80.833326424865632,
+ 46.19505992235522,
+ 0.0
+ ],
+ [
+ 80.834349715018277,
+ 46.194728526736029,
+ 0.0
+ ],
+ [
+ 80.835274577805436,
+ 46.194278760594983,
+ 0.0
+ ],
+ [
+ 80.836072908908335,
+ 46.193724292524522,
+ 0.0
+ ],
+ [
+ 80.836720451441963,
+ 46.193081972603785,
+ 0.0
+ ],
+ [
+ 80.837197532987716,
+ 46.192371320073953,
+ 0.0
+ ],
+ [
+ 80.837489662987906,
+ 46.191613929933247,
+ 0.0
+ ],
+ [
+ 80.837587972391518,
+ 46.190832816520917,
+ 0.0
+ ],
+ [
+ 80.837489482270712,
+ 46.19005171406652,
+ 0.0
+ ],
+ [
+ 80.837197193350505,
+ 46.189294355477927,
+ 0.0
+ ],
+ [
+ 80.836719993849997,
+ 46.188583751288711,
+ 0.0
+ ],
+ [
+ 80.836072388553944,
+ 46.187941490666532,
+ 0.0
+ ],
+ [
+ 80.835274057451031,
+ 46.187387085700287,
+ 0.0
+ ],
+ [
+ 80.834349257426297,
+ 46.186937378857799,
+ 0.0
+ ],
+ [
+ 80.833326085228421,
+ 46.186606031579231,
+ 0.0
+ ],
+ [
+ 80.832235624105905,
+ 46.186403109503644,
+ 0.0
+ ],
+ [
+ 80.831111,
+ 46.186334776892593,
+ 0.0
+ ],
+ [
+ 80.829986375894109,
+ 46.186403109503644,
+ 0.0
+ ],
+ [
+ 80.828895914771593,
+ 46.186606031579231,
+ 0.0
+ ],
+ [
+ 80.827872742573717,
+ 46.186937378857799,
+ 0.0
+ ],
+ [
+ 80.826947942548983,
+ 46.187387085700287,
+ 0.0
+ ],
+ [
+ 80.82614961144607,
+ 46.187941490666532,
+ 0.0
+ ],
+ [
+ 80.825502006150018,
+ 46.188583751288711,
+ 0.0
+ ],
+ [
+ 80.825024806649509,
+ 46.189294355477927,
+ 0.0
+ ],
+ [
+ 80.824732517729302,
+ 46.19005171406652,
+ 0.0
+ ],
+ [
+ 80.824634027608496,
+ 46.190832816520917,
+ 0.0
+ ],
+ [
+ 80.824732337012108,
+ 46.191613929933247,
+ 0.0
+ ],
+ [
+ 80.825024467012298,
+ 46.192371320073953,
+ 0.0
+ ],
+ [
+ 80.825501548558051,
+ 46.193081972603785,
+ 0.0
+ ],
+ [
+ 80.826149091091679,
+ 46.193724292524522,
+ 0.0
+ ],
+ [
+ 80.826947422194579,
+ 46.194278760594983,
+ 0.0
+ ],
+ [
+ 80.827872284981737,
+ 46.194728526736029,
+ 0.0
+ ],
+ [
+ 80.828895575134382,
+ 46.19505992235522,
+ 0.0
+ ],
+ [
+ 80.829986195176915,
+ 46.195262875982905,
+ 0.0
+ ],
+ [
+ 80.831111,
+ 46.195331219551882,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001337,
+ "name": "Karamay Airport",
+ "country": "CN",
+ "city": "Karamay",
+ "height": 500,
+ "level": 2,
+ "lat": "45.466621",
+ "lng": "84.952755",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 84.952755,
+ 45.916482610697052,
+ 500.0
+ ],
+ [
+ 85.064655977402978,
+ 45.909593954272935,
+ 500.0
+ ],
+ [
+ 85.173076401007108,
+ 45.889142264726104,
+ 500.0
+ ],
+ [
+ 85.274651486524434,
+ 45.855763247890366,
+ 500.0
+ ],
+ [
+ 85.366243178920939,
+ 45.810492933869483,
+ 500.0
+ ],
+ [
+ 85.445041818383487,
+ 45.754733480584065,
+ 500.0
+ ],
+ [
+ 85.508654641513459,
+ 45.690207272773414,
+ 500.0
+ ],
+ [
+ 85.55517807676334,
+ 45.618901131610194,
+ 500.0
+ ],
+ [
+ 85.583251750101212,
+ 45.543002763022052,
+ 500.0
+ ],
+ [
+ 85.592093105345668,
+ 45.464831764596028,
+ 500.0
+ ],
+ [
+ 85.581512476457434,
+ 45.386767584194686,
+ 500.0
+ ],
+ [
+ 85.551909258216909,
+ 45.311176790368187,
+ 500.0
+ ],
+ [
+ 85.504250464112573,
+ 45.240341894088274,
+ 500.0
+ ],
+ [
+ 85.440033419056121,
+ 45.176393775205739,
+ 500.0
+ ],
+ [
+ 85.36123461614919,
+ 45.121249537331032,
+ 500.0
+ ],
+ [
+ 85.270246895267803,
+ 45.076557361147692,
+ 500.0
+ ],
+ [
+ 85.16980711184128,
+ 45.043649664128857,
+ 500.0
+ ],
+ [
+ 85.062916396584228,
+ 45.023505615239173,
+ 500.0
+ ],
+ [
+ 84.952755,
+ 45.016723802863886,
+ 500.0
+ ],
+ [
+ 84.842593603415764,
+ 45.023505615239173,
+ 500.0
+ ],
+ [
+ 84.735702888158713,
+ 45.043649664128857,
+ 500.0
+ ],
+ [
+ 84.635263104732189,
+ 45.076557361147692,
+ 500.0
+ ],
+ [
+ 84.544275383850803,
+ 45.121249537331032,
+ 500.0
+ ],
+ [
+ 84.465476580943871,
+ 45.176393775205739,
+ 500.0
+ ],
+ [
+ 84.401259535887419,
+ 45.240341894088274,
+ 500.0
+ ],
+ [
+ 84.353600741783083,
+ 45.311176790368187,
+ 500.0
+ ],
+ [
+ 84.323997523542559,
+ 45.386767584194686,
+ 500.0
+ ],
+ [
+ 84.313416894654324,
+ 45.464831764596028,
+ 500.0
+ ],
+ [
+ 84.32225824989878,
+ 45.543002763022052,
+ 500.0
+ ],
+ [
+ 84.350331923236652,
+ 45.618901131610194,
+ 500.0
+ ],
+ [
+ 84.396855358486533,
+ 45.690207272773414,
+ 500.0
+ ],
+ [
+ 84.460468181616505,
+ 45.754733480584065,
+ 500.0
+ ],
+ [
+ 84.539266821079053,
+ 45.810492933869483,
+ 500.0
+ ],
+ [
+ 84.630858513475559,
+ 45.855763247890366,
+ 500.0
+ ],
+ [
+ 84.732433598992884,
+ 45.889142264726104,
+ 500.0
+ ],
+ [
+ 84.840854022597014,
+ 45.909593954272935,
+ 500.0
+ ],
+ [
+ 84.952755,
+ 45.916482610697052,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9381,
+ "name": "Beijiang:kelamayi",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "45.58",
+ "lng": "84.88",
+ "radius": 6000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 84.88,
+ 45.633984195810896,
+ 0.0
+ ],
+ [
+ 84.893362070627546,
+ 45.633163277455012,
+ 0.0
+ ],
+ [
+ 84.906317001248127,
+ 45.630725535516753,
+ 0.0
+ ],
+ [
+ 84.91847016064267,
+ 45.626745240898828,
+ 0.0
+ ],
+ [
+ 84.929451538306296,
+ 45.621343641203346,
+ 0.0
+ ],
+ [
+ 84.938927076772345,
+ 45.614685239348645,
+ 0.0
+ ],
+ [
+ 84.946608869146161,
+ 45.606972749491014,
+ 0.0
+ ],
+ [
+ 84.952263906326465,
+ 45.598440889068065,
+ 0.0
+ ],
+ [
+ 84.955721108318428,
+ 45.589349201478221,
+ 0.0
+ ],
+ [
+ 84.956876431989144,
+ 45.579974132979359,
+ 0.0
+ ],
+ [
+ 84.955695911112599,
+ 45.570600608999094,
+ 0.0
+ ],
+ [
+ 84.952216551058513,
+ 45.561513368674312,
+ 0.0
+ ],
+ [
+ 84.946545067543155,
+ 45.552988321859452,
+ 0.0
+ ],
+ [
+ 84.938854524234159,
+ 45.54528419013397,
+ 0.0
+ ],
+ [
+ 84.929378985733834,
+ 45.538634682823172,
+ 0.0
+ ],
+ [
+ 84.918406358952879,
+ 45.533241441270064,
+ 0.0
+ ],
+ [
+ 84.906269645881494,
+ 45.529267960275909,
+ 0.0
+ ],
+ [
+ 84.893336873357299,
+ 45.526834665616491,
+ 0.0
+ ],
+ [
+ 84.88,
+ 45.526015291784667,
+ 0.0
+ ],
+ [
+ 84.866663126642692,
+ 45.526834665616491,
+ 0.0
+ ],
+ [
+ 84.853730354118497,
+ 45.529267960275909,
+ 0.0
+ ],
+ [
+ 84.841593641047112,
+ 45.533241441270064,
+ 0.0
+ ],
+ [
+ 84.830621014266157,
+ 45.538634682823172,
+ 0.0
+ ],
+ [
+ 84.821145475765832,
+ 45.54528419013397,
+ 0.0
+ ],
+ [
+ 84.813454932456835,
+ 45.552988321859452,
+ 0.0
+ ],
+ [
+ 84.807783448941478,
+ 45.561513368674312,
+ 0.0
+ ],
+ [
+ 84.804304088887392,
+ 45.570600608999094,
+ 0.0
+ ],
+ [
+ 84.803123568010847,
+ 45.579974132979359,
+ 0.0
+ ],
+ [
+ 84.804278891681562,
+ 45.589349201478221,
+ 0.0
+ ],
+ [
+ 84.807736093673526,
+ 45.598440889068065,
+ 0.0
+ ],
+ [
+ 84.81339113085383,
+ 45.606972749491014,
+ 0.0
+ ],
+ [
+ 84.821072923227646,
+ 45.614685239348645,
+ 0.0
+ ],
+ [
+ 84.830548461693695,
+ 45.621343641203346,
+ 0.0
+ ],
+ [
+ 84.841529839357321,
+ 45.626745240898828,
+ 0.0
+ ],
+ [
+ 84.853682998751864,
+ 45.630725535516753,
+ 0.0
+ ],
+ [
+ 84.866637929372445,
+ 45.633163277455012,
+ 0.0
+ ],
+ [
+ 84.88,
+ 45.633984195810896,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5095,
+ "name": "Karamay Airport",
+ "country": "CN",
+ "city": "Karamay",
+ "height": 0,
+ "level": 2,
+ "lat": "45.4988951389177",
+ "lng": "84.9114626350241",
+ "radius": 13154,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 84.907025689400001,
+ 45.5345508208,
+ 0.0
+ ],
+ [
+ 84.840417500699999,
+ 45.606224702600002,
+ 0.0
+ ],
+ [
+ 84.768211199700005,
+ 45.561537569499997,
+ 0.0
+ ],
+ [
+ 84.859878245900006,
+ 45.5065472422,
+ 0.0
+ ],
+ [
+ 84.849993223799999,
+ 45.480010962599998,
+ 0.0
+ ],
+ [
+ 84.852189101299999,
+ 45.463484308200002,
+ 0.0
+ ],
+ [
+ 84.874079883899995,
+ 45.434374470900003,
+ 0.0
+ ],
+ [
+ 84.897379216900006,
+ 45.416066478799998,
+ 0.0
+ ],
+ [
+ 84.931943234499997,
+ 45.398547943099999,
+ 0.0
+ ],
+ [
+ 84.978439949399998,
+ 45.3943984048,
+ 0.0
+ ],
+ [
+ 85.001247154699996,
+ 45.398759313900001,
+ 0.0
+ ],
+ [
+ 84.907025689400001,
+ 45.5345508208,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5095,
+ "name": "Karamay Airport",
+ "country": "CN",
+ "city": "Karamay",
+ "height": 0,
+ "level": 2,
+ "lat": "45.4291851885915",
+ "lng": "84.9876628488191",
+ "radius": 13296,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.067999431900006,
+ 45.323763030499997,
+ 0.0
+ ],
+ [
+ 85.136777036300003,
+ 45.371830272300002,
+ 0.0
+ ],
+ [
+ 85.043451689199998,
+ 45.426792305100001,
+ 0.0
+ ],
+ [
+ 85.056790810199999,
+ 45.456180917399998,
+ 0.0
+ ],
+ [
+ 85.055194440700006,
+ 45.472741352200003,
+ 0.0
+ ],
+ [
+ 85.047537708500002,
+ 45.488447417800003,
+ 0.0
+ ],
+ [
+ 85.034338218100004,
+ 45.502227636699999,
+ 0.0
+ ],
+ [
+ 84.976497191500002,
+ 45.534728483199999,
+ 0.0
+ ],
+ [
+ 84.953587623499999,
+ 45.538970513800002,
+ 0.0
+ ],
+ [
+ 84.907025689400001,
+ 45.5345508208,
+ 0.0
+ ],
+ [
+ 85.001247154699996,
+ 45.398759313900001,
+ 0.0
+ ],
+ [
+ 85.067999431900006,
+ 45.323763030499997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5095,
+ "name": "Karamay Airport",
+ "country": "CN",
+ "city": "Karamay",
+ "height": 120,
+ "level": 2,
+ "lat": "45.4672239118212",
+ "lng": "84.9536814722083",
+ "radius": 23529,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.236392043799995,
+ 45.393637942200002,
+ 120.0
+ ],
+ [
+ 85.053796412899999,
+ 45.267649737900001,
+ 120.0
+ ],
+ [
+ 84.670727985599996,
+ 45.541049401099997,
+ 120.0
+ ],
+ [
+ 84.854211403299999,
+ 45.667037603799997,
+ 120.0
+ ],
+ [
+ 85.236392043799995,
+ 45.393637942200002,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33206,
+ "name": "长安",
+ "country": "CN",
+ "city": "白城",
+ "height": 0,
+ "level": 2,
+ "lat": "45.477088240041",
+ "lng": "122.970179432872",
+ "radius": 13008,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.91836775,
+ 45.485422439799997,
+ 0.0
+ ],
+ [
+ 122.808334067,
+ 45.448801593399999,
+ 0.0
+ ],
+ [
+ 122.858221955,
+ 45.390410048299998,
+ 0.0
+ ],
+ [
+ 122.951582823,
+ 45.450408991,
+ 0.0
+ ],
+ [
+ 122.986932681,
+ 45.437597516300002,
+ 0.0
+ ],
+ [
+ 123.01040265,
+ 45.435528997900001,
+ 0.0
+ ],
+ [
+ 123.033836845,
+ 45.437788614799999,
+ 0.0
+ ],
+ [
+ 123.085704637,
+ 45.45591535,
+ 0.0
+ ],
+ [
+ 123.114035612,
+ 45.477780263,
+ 0.0
+ ],
+ [
+ 123.122651312,
+ 45.4932403854,
+ 0.0
+ ],
+ [
+ 123.12170355,
+ 45.526146161200003,
+ 0.0
+ ],
+ [
+ 122.91836775,
+ 45.485422439799997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33206,
+ "name": "长安",
+ "country": "CN",
+ "city": "白城",
+ "height": 0,
+ "level": 2,
+ "lat": "45.5297113375551",
+ "lng": "123.071813363255",
+ "radius": 12931,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.231671441,
+ 45.561202205599997,
+ 0.0
+ ],
+ [
+ 123.180087044,
+ 45.617924244,
+ 0.0
+ ],
+ [
+ 123.088373938,
+ 45.561258729199999,
+ 0.0
+ ],
+ [
+ 123.052638186,
+ 45.572780515200002,
+ 0.0
+ ],
+ [
+ 123.029005878,
+ 45.574139908399999,
+ 0.0
+ ],
+ [
+ 123.00567777,
+ 45.571166696200002,
+ 0.0
+ ],
+ [
+ 122.95764537399999,
+ 45.552426071200003,
+ 0.0
+ ],
+ [
+ 122.93054084,
+ 45.533332448499998,
+ 0.0
+ ],
+ [
+ 122.920491896,
+ 45.518301228399999,
+ 0.0
+ ],
+ [
+ 122.91836775,
+ 45.485422439799997,
+ 0.0
+ ],
+ [
+ 123.12170355,
+ 45.526146161200003,
+ 0.0
+ ],
+ [
+ 123.231671441,
+ 45.561202205599997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33206,
+ "name": "长安",
+ "country": "CN",
+ "city": "白城",
+ "height": 120,
+ "level": 2,
+ "lat": "45.5037227029676",
+ "lng": "123.021261351206",
+ "radius": 23513,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.191541187,
+ 45.678411756599999,
+ 120.0
+ ],
+ [
+ 123.321727603,
+ 45.523316069400003,
+ 120.0
+ ],
+ [
+ 122.850580462,
+ 45.329479737500002,
+ 120.0
+ ],
+ [
+ 122.72084152799999,
+ 45.484575425400003,
+ 120.0
+ ],
+ [
+ 123.191541187,
+ 45.678411756599999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001399,
+ "name": "长安",
+ "country": "CN",
+ "city": "白城",
+ "height": 500,
+ "level": 2,
+ "lat": "45.5058333333334",
+ "lng": "123.02",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.02,
+ 45.955691842929348,
+ 500.0
+ ],
+ [
+ 123.131979850358178,
+ 45.948803159028934,
+ 500.0
+ ],
+ [
+ 123.240476582642827,
+ 45.928351394830564,
+ 500.0
+ ],
+ [
+ 123.342122947336321,
+ 45.894972278377828,
+ 500.0
+ ],
+ [
+ 123.433778616456678,
+ 45.849701873204566,
+ 500.0
+ ],
+ [
+ 123.512631931731065,
+ 45.793942377020549,
+ 500.0
+ ],
+ [
+ 123.576288472825937,
+ 45.72941621486401,
+ 500.0
+ ],
+ [
+ 123.622843401931206,
+ 45.65811024266457,
+ 500.0
+ ],
+ [
+ 123.650935499524621,
+ 45.582212190109964,
+ 500.0
+ ],
+ [
+ 123.659781796099367,
+ 45.504041663397814,
+ 500.0
+ ],
+ [
+ 123.649192638749724,
+ 45.425978101525011,
+ 500.0
+ ],
+ [
+ 123.619567841575147,
+ 45.350388046482081,
+ 500.0
+ ],
+ [
+ 123.571875211779457,
+ 45.279553966896906,
+ 500.0
+ ],
+ [
+ 123.507613202263073,
+ 45.21560668829477,
+ 500.0
+ ],
+ [
+ 123.428759722905724,
+ 45.160463253225778,
+ 500.0
+ ],
+ [
+ 123.337709270817172,
+ 45.11577178066797,
+ 500.0
+ ],
+ [
+ 123.237200549828685,
+ 45.082864631995356,
+ 500.0
+ ],
+ [
+ 123.130236681208174,
+ 45.062720931408428,
+ 500.0
+ ],
+ [
+ 123.02,
+ 45.055939238452211,
+ 500.0
+ ],
+ [
+ 122.909763318791875,
+ 45.062720931408428,
+ 500.0
+ ],
+ [
+ 122.802799450171364,
+ 45.082864631995356,
+ 500.0
+ ],
+ [
+ 122.702290729182877,
+ 45.11577178066797,
+ 500.0
+ ],
+ [
+ 122.611240277094325,
+ 45.160463253225778,
+ 500.0
+ ],
+ [
+ 122.532386797736976,
+ 45.21560668829477,
+ 500.0
+ ],
+ [
+ 122.468124788220592,
+ 45.279553966896906,
+ 500.0
+ ],
+ [
+ 122.420432158424902,
+ 45.350388046482081,
+ 500.0
+ ],
+ [
+ 122.390807361250324,
+ 45.425978101525011,
+ 500.0
+ ],
+ [
+ 122.380218203900682,
+ 45.504041663397814,
+ 500.0
+ ],
+ [
+ 122.389064500475428,
+ 45.582212190109964,
+ 500.0
+ ],
+ [
+ 122.417156598068843,
+ 45.65811024266457,
+ 500.0
+ ],
+ [
+ 122.463711527174112,
+ 45.72941621486401,
+ 500.0
+ ],
+ [
+ 122.527368068268984,
+ 45.793942377020549,
+ 500.0
+ ],
+ [
+ 122.606221383543371,
+ 45.849701873204566,
+ 500.0
+ ],
+ [
+ 122.697877052663728,
+ 45.894972278377828,
+ 500.0
+ ],
+ [
+ 122.799523417357221,
+ 45.928351394830564,
+ 500.0
+ ],
+ [
+ 122.908020149641871,
+ 45.948803159028934,
+ 500.0
+ ],
+ [
+ 123.02,
+ 45.955691842929348,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 31514,
+ "name": "Harbin Taiping International Airport",
+ "country": "CN",
+ "city": "Harbin",
+ "height": 0,
+ "level": 2,
+ "lat": "45.589843976788",
+ "lng": "126.208652482649",
+ "radius": 13513,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 126.159915655,
+ 45.576657516600001,
+ 0.0
+ ],
+ [
+ 126.066540593,
+ 45.520086124300001,
+ 0.0
+ ],
+ [
+ 126.143823914,
+ 45.477122185399999,
+ 0.0
+ ],
+ [
+ 126.20376134599999,
+ 45.550443812600001,
+ 0.0
+ ],
+ [
+ 126.250108237,
+ 45.547205771900003,
+ 0.0
+ ],
+ [
+ 126.272817472,
+ 45.551959009,
+ 0.0
+ ],
+ [
+ 126.29300191199999,
+ 45.5606625275,
+ 0.0
+ ],
+ [
+ 126.335979351,
+ 45.592750974600001,
+ 0.0
+ ],
+ [
+ 126.354344309,
+ 45.618423070200002,
+ 0.0
+ ],
+ [
+ 126.356844476,
+ 45.634928962700002,
+ 0.0
+ ],
+ [
+ 126.343505934,
+ 45.666493077,
+ 0.0
+ ],
+ [
+ 126.159915655,
+ 45.576657516600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 31514,
+ "name": "Harbin Taiping International Airport",
+ "country": "CN",
+ "city": "Harbin",
+ "height": 0,
+ "level": 2,
+ "lat": "45.6579153259953",
+ "lng": "126.287801318421",
+ "radius": 13437,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 126.43179765,
+ 45.724898424300001,
+ 0.0
+ ],
+ [
+ 126.359555323,
+ 45.767886906900003,
+ 0.0
+ ],
+ [
+ 126.294522364,
+ 45.696214046500003,
+ 0.0
+ ],
+ [
+ 126.25572682,
+ 45.6997245369,
+ 0.0
+ ],
+ [
+ 126.23252974899999,
+ 45.696118500700003,
+ 0.0
+ ],
+ [
+ 126.19396980499999,
+ 45.677207805899997,
+ 0.0
+ ],
+ [
+ 126.167329342,
+ 45.652229026500002,
+ 0.0
+ ],
+ [
+ 126.14766721,
+ 45.624560585300003,
+ 0.0
+ ],
+ [
+ 126.145659996,
+ 45.6080218301,
+ 0.0
+ ],
+ [
+ 126.159915655,
+ 45.576657516600001,
+ 0.0
+ ],
+ [
+ 126.343505934,
+ 45.666493077,
+ 0.0
+ ],
+ [
+ 126.43179765,
+ 45.724898424300001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 31514,
+ "name": "Harbin Taiping International Airport",
+ "country": "CN",
+ "city": "Harbin",
+ "height": 120,
+ "level": 2,
+ "lat": "45.6235178033043",
+ "lng": "126.25215569711",
+ "radius": 23825,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 126.330309074,
+ 45.830720663500003,
+ 120.0
+ ],
+ [
+ 126.52880789699999,
+ 45.715907529500001,
+ 120.0
+ ],
+ [
+ 126.173273447,
+ 45.416503887300003,
+ 120.0
+ ],
+ [
+ 125.97583191,
+ 45.531317023100002,
+ 120.0
+ ],
+ [
+ 126.330309074,
+ 45.830720663500003,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001428,
+ "name": "Harbin Taiping International Airport",
+ "country": "CN",
+ "city": "Harbin",
+ "height": 500,
+ "level": 2,
+ "lat": "45.624963",
+ "lng": "126.248789",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 126.248789,
+ 46.074812088977609,
+ 500.0
+ ],
+ [
+ 126.361009480304389,
+ 46.067923320943336,
+ 500.0
+ ],
+ [
+ 126.469739018786271,
+ 46.047471328053888,
+ 500.0
+ ],
+ [
+ 126.571602844438004,
+ 46.014091906063918,
+ 500.0
+ ],
+ [
+ 126.663453694572326,
+ 45.96882122042944,
+ 500.0
+ ],
+ [
+ 126.742473813844029,
+ 45.913061590177676,
+ 500.0
+ ],
+ [
+ 126.806263727015391,
+ 45.84853556323344,
+ 500.0
+ ],
+ [
+ 126.852914733465312,
+ 45.777230101539324,
+ 500.0
+ ],
+ [
+ 126.881063034737878,
+ 45.701333007298736,
+ 500.0
+ ],
+ [
+ 126.88992440095933,
+ 45.623163913073128,
+ 500.0
+ ],
+ [
+ 126.879309219937795,
+ 45.545102230980788,
+ 500.0
+ ],
+ [
+ 126.849618585637145,
+ 45.46951442222624,
+ 500.0
+ ],
+ [
+ 126.801822727223978,
+ 45.398682826560957,
+ 500.0
+ ],
+ [
+ 126.737423539199355,
+ 45.334738104126444,
+ 500.0
+ ],
+ [
+ 126.658403253886561,
+ 45.279597111563419,
+ 500.0
+ ],
+ [
+ 126.567161424215811,
+ 45.234907779963727,
+ 500.0
+ ],
+ [
+ 126.46644239286185,
+ 45.202002299879396,
+ 500.0
+ ],
+ [
+ 126.359255353449143,
+ 45.181859659200903,
+ 500.0
+ ],
+ [
+ 126.248789,
+ 45.175078329651633,
+ 500.0
+ ],
+ [
+ 126.138322646550861,
+ 45.181859659200903,
+ 500.0
+ ],
+ [
+ 126.031135607138154,
+ 45.202002299879396,
+ 500.0
+ ],
+ [
+ 125.930416575784193,
+ 45.234907779963727,
+ 500.0
+ ],
+ [
+ 125.839174746113443,
+ 45.279597111563419,
+ 500.0
+ ],
+ [
+ 125.760154460800649,
+ 45.334738104126444,
+ 500.0
+ ],
+ [
+ 125.695755272776026,
+ 45.398682826560957,
+ 500.0
+ ],
+ [
+ 125.647959414362859,
+ 45.46951442222624,
+ 500.0
+ ],
+ [
+ 125.618268780062209,
+ 45.545102230980788,
+ 500.0
+ ],
+ [
+ 125.607653599040674,
+ 45.623163913073128,
+ 500.0
+ ],
+ [
+ 125.616514965262127,
+ 45.701333007298736,
+ 500.0
+ ],
+ [
+ 125.644663266534693,
+ 45.777230101539324,
+ 500.0
+ ],
+ [
+ 125.691314272984613,
+ 45.84853556323344,
+ 500.0
+ ],
+ [
+ 125.755104186155975,
+ 45.913061590177676,
+ 500.0
+ ],
+ [
+ 125.834124305427679,
+ 45.96882122042944,
+ 500.0
+ ],
+ [
+ 125.925975155562,
+ 46.014091906063918,
+ 500.0
+ ],
+ [
+ 126.027838981213733,
+ 46.047471328053888,
+ 500.0
+ ],
+ [
+ 126.136568519695615,
+ 46.067923320943336,
+ 500.0
+ ],
+ [
+ 126.248789,
+ 46.074812088977609,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001498,
+ "name": "兴凯湖",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "45.293055555556",
+ "lng": "131.193055555556",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 131.193055555555986,
+ 45.742930893884896,
+ 500.0
+ ],
+ [
+ 131.304609378356048,
+ 45.736042357801601,
+ 500.0
+ ],
+ [
+ 131.412693932865551,
+ 45.715590995012398,
+ 500.0
+ ],
+ [
+ 131.513955284531789,
+ 45.682212413502846,
+ 500.0
+ ],
+ [
+ 131.605265382047236,
+ 45.636942496102563,
+ 500.0
+ ],
+ [
+ 131.683823361582029,
+ 45.581183225458801,
+ 500.0
+ ],
+ [
+ 131.747243752951761,
+ 45.516656808820628,
+ 500.0
+ ],
+ [
+ 131.793628558701045,
+ 45.445349914328972,
+ 500.0
+ ],
+ [
+ 131.821621127196437,
+ 45.369450143384434,
+ 500.0
+ ],
+ [
+ 131.830440722687854,
+ 45.291277055857222,
+ 500.0
+ ],
+ [
+ 131.819897622563701,
+ 45.213210138959283,
+ 500.0
+ ],
+ [
+ 131.790389377112035,
+ 45.1376160786143,
+ 500.0
+ ],
+ [
+ 131.742879507195738,
+ 45.066777572767258,
+ 500.0
+ ],
+ [
+ 131.67886037346878,
+ 45.002825741069678,
+ 500.0
+ ],
+ [
+ 131.600302233281241,
+ 44.947677956617525,
+ 500.0
+ ],
+ [
+ 131.5095906319888,
+ 44.902982672402871,
+ 500.0
+ ],
+ [
+ 131.4094542886954,
+ 44.870072553453625,
+ 500.0
+ ],
+ [
+ 131.302885571794945,
+ 44.849926966264363,
+ 500.0
+ ],
+ [
+ 131.193055555555986,
+ 44.843144626481006,
+ 500.0
+ ],
+ [
+ 131.083225539317027,
+ 44.849926966264363,
+ 500.0
+ ],
+ [
+ 130.976656822416572,
+ 44.870072553453625,
+ 500.0
+ ],
+ [
+ 130.876520479123172,
+ 44.902982672402871,
+ 500.0
+ ],
+ [
+ 130.785808877830732,
+ 44.947677956617525,
+ 500.0
+ ],
+ [
+ 130.707250737643193,
+ 45.002825741069678,
+ 500.0
+ ],
+ [
+ 130.643231603916234,
+ 45.066777572767258,
+ 500.0
+ ],
+ [
+ 130.595721733999937,
+ 45.1376160786143,
+ 500.0
+ ],
+ [
+ 130.566213488548271,
+ 45.213210138959283,
+ 500.0
+ ],
+ [
+ 130.555670388424119,
+ 45.291277055857222,
+ 500.0
+ ],
+ [
+ 130.564489983915536,
+ 45.369450143384434,
+ 500.0
+ ],
+ [
+ 130.592482552410928,
+ 45.445349914328972,
+ 500.0
+ ],
+ [
+ 130.638867358160212,
+ 45.516656808820628,
+ 500.0
+ ],
+ [
+ 130.702287749529944,
+ 45.581183225458801,
+ 500.0
+ ],
+ [
+ 130.780845729064737,
+ 45.636942496102563,
+ 500.0
+ ],
+ [
+ 130.872155826580183,
+ 45.682212413502846,
+ 500.0
+ ],
+ [
+ 130.973417178246422,
+ 45.715590995012398,
+ 500.0
+ ],
+ [
+ 131.081501732755925,
+ 45.736042357801601,
+ 500.0
+ ],
+ [
+ 131.193055555555986,
+ 45.742930893884896,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32770,
+ "name": "兴凯湖",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "45.2800980350921",
+ "lng": "131.254658437448",
+ "radius": 12952,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 131.385468225000011,
+ 45.2087849316,
+ 0.0
+ ],
+ [
+ 131.419824052,
+ 45.272362825499997,
+ 0.0
+ ],
+ [
+ 131.299817972,
+ 45.287369640900003,
+ 0.0
+ ],
+ [
+ 131.29798670299999,
+ 45.305481131800001,
+ 0.0
+ ],
+ [
+ 131.289998903999987,
+ 45.321099965,
+ 0.0
+ ],
+ [
+ 131.258492577999988,
+ 45.345445001199998,
+ 0.0
+ ],
+ [
+ 131.237120190000013,
+ 45.3525085793,
+ 0.0
+ ],
+ [
+ 131.170179622,
+ 45.359600411700001,
+ 0.0
+ ],
+ [
+ 131.147236607999986,
+ 45.355651228699998,
+ 0.0
+ ],
+ [
+ 131.10948907,
+ 45.336173160199998,
+ 0.0
+ ],
+ [
+ 131.27710340499999,
+ 45.250407914100002,
+ 0.0
+ ],
+ [
+ 131.385468225000011,
+ 45.2087849316,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32770,
+ "name": "兴凯湖",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "45.3064266238262",
+ "lng": "131.131932072754",
+ "radius": 12954,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 131.10948907,
+ 45.336173160199998,
+ 0.0
+ ],
+ [
+ 131.00289695699999,
+ 45.379554502700003,
+ 0.0
+ ],
+ [
+ 130.966827650999988,
+ 45.315985356699997,
+ 0.0
+ ],
+ [
+ 131.08682108299999,
+ 45.299326414299998,
+ 0.0
+ ],
+ [
+ 131.095259741,
+ 45.270359292599998,
+ 0.0
+ ],
+ [
+ 131.10793796499999,
+ 45.256363876100004,
+ 0.0
+ ],
+ [
+ 131.125323748,
+ 45.245152645399997,
+ 0.0
+ ],
+ [
+ 131.174575823,
+ 45.227485081,
+ 0.0
+ ],
+ [
+ 131.21828004,
+ 45.224865775700003,
+ 0.0
+ ],
+ [
+ 131.240856400000013,
+ 45.229627819500003,
+ 0.0
+ ],
+ [
+ 131.27710340499999,
+ 45.250407914100002,
+ 0.0
+ ],
+ [
+ 131.10948907,
+ 45.336173160199998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32770,
+ "name": "兴凯湖",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "45.2928056109603",
+ "lng": "131.192195031034",
+ "radius": 23356,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 131.489277176,
+ 45.314216399400003,
+ 120.0
+ ],
+ [
+ 131.403710735,
+ 45.144747518700001,
+ 120.0
+ ],
+ [
+ 130.895145641999989,
+ 45.2719370963,
+ 120.0
+ ],
+ [
+ 130.980904200999987,
+ 45.441405976799999,
+ 120.0
+ ],
+ [
+ 131.489277176,
+ 45.314216399400003,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9384,
+ "name": "Beijiang:bole",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "44.89",
+ "lng": "82.07",
+ "radius": 5000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 82.07,
+ 44.934992324003545,
+ 0.0
+ ],
+ [
+ 82.080999178120649,
+ 44.934308262776561,
+ 0.0
+ ],
+ [
+ 82.091663388467197,
+ 44.932276911328643,
+ 0.0
+ ],
+ [
+ 82.101667933440893,
+ 44.928960127646107,
+ 0.0
+ ],
+ [
+ 82.110708332525078,
+ 44.924458899434676,
+ 0.0
+ ],
+ [
+ 82.118509633850252,
+ 44.918910250381629,
+ 0.0
+ ],
+ [
+ 82.124834800223553,
+ 44.912483045785855,
+ 0.0
+ ],
+ [
+ 82.129491911008174,
+ 44.905372828757038,
+ 0.0
+ ],
+ [
+ 82.132339961127784,
+ 44.897795847868863,
+ 0.0
+ ],
+ [
+ 82.133293084980991,
+ 44.889982461461734,
+ 0.0
+ ],
+ [
+ 82.132323084291343,
+ 44.882170122023012,
+ 0.0
+ ],
+ [
+ 82.129460192925819,
+ 44.874596155760592,
+ 0.0
+ ],
+ [
+ 82.124792066556381,
+ 44.867490557407692,
+ 0.0
+ ],
+ [
+ 82.118461038902424,
+ 44.8610690184587,
+ 0.0
+ ],
+ [
+ 82.110659737561818,
+ 44.855526398663514,
+ 0.0
+ ],
+ [
+ 82.101625199734613,
+ 44.851030836103547,
+ 0.0
+ ],
+ [
+ 82.091631670340377,
+ 44.847718671104069,
+ 0.0
+ ],
+ [
+ 82.08098230125519,
+ 44.845690334288236,
+ 0.0
+ ],
+ [
+ 82.07,
+ 44.845007320032131,
+ 0.0
+ ],
+ [
+ 82.059017698744796,
+ 44.845690334288236,
+ 0.0
+ ],
+ [
+ 82.04836832965961,
+ 44.847718671104069,
+ 0.0
+ ],
+ [
+ 82.038374800265373,
+ 44.851030836103547,
+ 0.0
+ ],
+ [
+ 82.029340262438168,
+ 44.855526398663514,
+ 0.0
+ ],
+ [
+ 82.021538961097562,
+ 44.8610690184587,
+ 0.0
+ ],
+ [
+ 82.015207933443605,
+ 44.867490557407692,
+ 0.0
+ ],
+ [
+ 82.010539807074167,
+ 44.874596155760592,
+ 0.0
+ ],
+ [
+ 82.007676915708643,
+ 44.882170122023012,
+ 0.0
+ ],
+ [
+ 82.006706915018995,
+ 44.889982461461734,
+ 0.0
+ ],
+ [
+ 82.007660038872203,
+ 44.897795847868863,
+ 0.0
+ ],
+ [
+ 82.010508088991813,
+ 44.905372828757038,
+ 0.0
+ ],
+ [
+ 82.015165199776433,
+ 44.912483045785855,
+ 0.0
+ ],
+ [
+ 82.021490366149735,
+ 44.918910250381629,
+ 0.0
+ ],
+ [
+ 82.029291667474908,
+ 44.924458899434676,
+ 0.0
+ ],
+ [
+ 82.038332066559093,
+ 44.928960127646107,
+ 0.0
+ ],
+ [
+ 82.04833661153279,
+ 44.932276911328643,
+ 0.0
+ ],
+ [
+ 82.059000821879337,
+ 44.934308262776561,
+ 0.0
+ ],
+ [
+ 82.07,
+ 44.934992324003545,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32772,
+ "name": "阿拉山口",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "44.9065320053285",
+ "lng": "82.2413593900333",
+ "radius": 13145,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 82.204207433199997,
+ 44.931091233499998,
+ 0.0
+ ],
+ [
+ 82.090883773,
+ 44.957797281,
+ 0.0
+ ],
+ [
+ 82.075379221899993,
+ 44.8941320136,
+ 0.0
+ ],
+ [
+ 82.195362514699994,
+ 44.887478070900002,
+ 0.0
+ ],
+ [
+ 82.210539038799993,
+ 44.858950766900001,
+ 0.0
+ ],
+ [
+ 82.226211073100004,
+ 44.846619337699998,
+ 0.0
+ ],
+ [
+ 82.268104138200002,
+ 44.832448889799998,
+ 0.0
+ ],
+ [
+ 82.301442424399994,
+ 44.830781517600002,
+ 0.0
+ ],
+ [
+ 82.337602819400004,
+ 44.831066831,
+ 0.0
+ ],
+ [
+ 82.359631412300004,
+ 44.836676207,
+ 0.0
+ ],
+ [
+ 82.3940036037,
+ 44.858797866400003,
+ 0.0
+ ],
+ [
+ 82.204207433199997,
+ 44.931091233499998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32772,
+ "name": "阿拉山口",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "44.8873820598356",
+ "lng": "82.3595966924481",
+ "radius": 13166,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 82.507389016499999,
+ 44.832183207299998,
+ 0.0
+ ],
+ [
+ 82.526314480600007,
+ 44.895847422099997,
+ 0.0
+ ],
+ [
+ 82.407960645100005,
+ 44.902529891100002,
+ 0.0
+ ],
+ [
+ 82.391909420100006,
+ 44.9317948761,
+ 0.0
+ ],
+ [
+ 82.356010786,
+ 44.952713204299997,
+ 0.0
+ ],
+ [
+ 82.333573637699999,
+ 44.9575499906,
+ 0.0
+ ],
+ [
+ 82.259922196700003,
+ 44.959606414500001,
+ 0.0
+ ],
+ [
+ 82.238003824100005,
+ 44.953696207599997,
+ 0.0
+ ],
+ [
+ 82.219000007299996,
+ 44.943969620099999,
+ 0.0
+ ],
+ [
+ 82.204207433199997,
+ 44.931091233499998,
+ 0.0
+ ],
+ [
+ 82.3940036037,
+ 44.858797866400003,
+ 0.0
+ ],
+ [
+ 82.507389016499999,
+ 44.832183207299998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32772,
+ "name": "阿拉山口",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "44.8944082343701",
+ "lng": "82.3015841882262",
+ "radius": 23486,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 82.580063000699994,
+ 44.970208663900003,
+ 120.0
+ ],
+ [
+ 82.5612044274,
+ 44.790841414600003,
+ 120.0
+ ],
+ [
+ 82.023132831,
+ 44.819233665399999,
+ 120.0
+ ],
+ [
+ 82.042000717500002,
+ 44.998600914699999,
+ 120.0
+ ],
+ [
+ 82.580063000699994,
+ 44.970208663900003,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001342,
+ "name": "阿拉山口",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "44.895",
+ "lng": "82.300555555556",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 82.300555555556002,
+ 45.344906826711231,
+ 500.0
+ ],
+ [
+ 82.411325132868626,
+ 45.338018558892387,
+ 500.0
+ ],
+ [
+ 82.518650930705363,
+ 45.317567923283875,
+ 500.0
+ ],
+ [
+ 82.619203519882248,
+ 45.284190306249094,
+ 500.0
+ ],
+ [
+ 82.709877445101213,
+ 45.23892125708894,
+ 500.0
+ ],
+ [
+ 82.787891712550191,
+ 45.183162361605,
+ 500.0
+ ],
+ [
+ 82.850877329772558,
+ 45.118635425354746,
+ 500.0
+ ],
+ [
+ 82.896948895800406,
+ 45.047326770444876,
+ 500.0
+ ],
+ [
+ 82.924758174229908,
+ 44.971423762443663,
+ 500.0
+ ],
+ [
+ 82.93352854894097,
+ 44.893245877116939,
+ 500.0
+ ],
+ [
+ 82.923070176853841,
+ 44.815172692563195,
+ 500.0
+ ],
+ [
+ 82.893776448046125,
+ 44.739571162741939,
+ 500.0
+ ],
+ [
+ 82.846602998440162,
+ 44.668724411639047,
+ 500.0
+ ],
+ [
+ 82.783030977166192,
+ 44.604764104846218,
+ 500.0
+ ],
+ [
+ 82.705016555257956,
+ 44.549608228716153,
+ 500.0
+ ],
+ [
+ 82.614928797445316,
+ 44.504905855774815,
+ 500.0
+ ],
+ [
+ 82.515478038203398,
+ 44.471990214189638,
+ 500.0
+ ],
+ [
+ 82.409636845204119,
+ 44.451841119762541,
+ 500.0
+ ],
+ [
+ 82.300555555556002,
+ 44.445057577597886,
+ 500.0
+ ],
+ [
+ 82.191474265907885,
+ 44.451841119762541,
+ 500.0
+ ],
+ [
+ 82.085633072908607,
+ 44.471990214189638,
+ 500.0
+ ],
+ [
+ 81.986182313666689,
+ 44.504905855774815,
+ 500.0
+ ],
+ [
+ 81.896094555854049,
+ 44.549608228716153,
+ 500.0
+ ],
+ [
+ 81.818080133945813,
+ 44.604764104846218,
+ 500.0
+ ],
+ [
+ 81.754508112671843,
+ 44.668724411639047,
+ 500.0
+ ],
+ [
+ 81.707334663065879,
+ 44.739571162741939,
+ 500.0
+ ],
+ [
+ 81.678040934258163,
+ 44.815172692563195,
+ 500.0
+ ],
+ [
+ 81.667582562171035,
+ 44.893245877116939,
+ 500.0
+ ],
+ [
+ 81.676352936882097,
+ 44.971423762443663,
+ 500.0
+ ],
+ [
+ 81.704162215311598,
+ 45.047326770444876,
+ 500.0
+ ],
+ [
+ 81.750233781339446,
+ 45.118635425354746,
+ 500.0
+ ],
+ [
+ 81.813219398561813,
+ 45.183162361605,
+ 500.0
+ ],
+ [
+ 81.891233666010791,
+ 45.23892125708894,
+ 500.0
+ ],
+ [
+ 81.981907591229756,
+ 45.284190306249094,
+ 500.0
+ ],
+ [
+ 82.082460180406642,
+ 45.317567923283875,
+ 500.0
+ ],
+ [
+ 82.189785978243378,
+ 45.338018558892387,
+ 500.0
+ ],
+ [
+ 82.300555555556002,
+ 45.344906826711231,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9380,
+ "name": "Beijiang:dushanzi",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "44.33",
+ "lng": "84.89",
+ "radius": 5000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 84.89,
+ 44.374996754167533,
+ 0.0
+ ],
+ [
+ 84.900893831232651,
+ 44.37431263582198,
+ 0.0
+ ],
+ [
+ 84.911455917535932,
+ 44.372281113832074,
+ 0.0
+ ],
+ [
+ 84.921364683574652,
+ 44.368964048712463,
+ 0.0
+ ],
+ [
+ 84.930318573312945,
+ 44.36446243265668,
+ 0.0
+ ],
+ [
+ 84.938045270994252,
+ 44.358913296155301,
+ 0.0
+ ],
+ [
+ 84.944310006163931,
+ 44.352485514022455,
+ 0.0
+ ],
+ [
+ 84.948922686689841,
+ 44.345374641946201,
+ 0.0
+ ],
+ [
+ 84.951743643144596,
+ 44.337796944359638,
+ 0.0
+ ],
+ [
+ 84.952687813878171,
+ 44.329982798748865,
+ 0.0
+ ],
+ [
+ 84.951727250773146,
+ 44.322169679767079,
+ 0.0
+ ],
+ [
+ 84.948891879104067,
+ 44.314594938241306,
+ 0.0
+ ],
+ [
+ 84.944268499206061,
+ 44.30748859511413,
+ 0.0
+ ],
+ [
+ 84.937998071009574,
+ 44.30106636856172,
+ 0.0
+ ],
+ [
+ 84.930271373313644,
+ 44.295523144187946,
+ 0.0
+ ],
+ [
+ 84.92132317657979,
+ 44.291027083717076,
+ 0.0
+ ],
+ [
+ 84.91142510990808,
+ 44.287714547553385,
+ 0.0
+ ],
+ [
+ 84.900877438833717,
+ 44.285685981630309,
+ 0.0
+ ],
+ [
+ 84.89,
+ 44.285002889916107,
+ 0.0
+ ],
+ [
+ 84.879122561166284,
+ 44.285685981630309,
+ 0.0
+ ],
+ [
+ 84.868574890091921,
+ 44.287714547553385,
+ 0.0
+ ],
+ [
+ 84.858676823420211,
+ 44.291027083717076,
+ 0.0
+ ],
+ [
+ 84.849728626686357,
+ 44.295523144187946,
+ 0.0
+ ],
+ [
+ 84.842001928990427,
+ 44.30106636856172,
+ 0.0
+ ],
+ [
+ 84.835731500793941,
+ 44.30748859511413,
+ 0.0
+ ],
+ [
+ 84.831108120895934,
+ 44.314594938241306,
+ 0.0
+ ],
+ [
+ 84.828272749226855,
+ 44.322169679767079,
+ 0.0
+ ],
+ [
+ 84.82731218612183,
+ 44.329982798748865,
+ 0.0
+ ],
+ [
+ 84.828256356855405,
+ 44.337796944359638,
+ 0.0
+ ],
+ [
+ 84.831077313310161,
+ 44.345374641946201,
+ 0.0
+ ],
+ [
+ 84.83568999383607,
+ 44.352485514022455,
+ 0.0
+ ],
+ [
+ 84.841954729005749,
+ 44.358913296155301,
+ 0.0
+ ],
+ [
+ 84.849681426687056,
+ 44.36446243265668,
+ 0.0
+ ],
+ [
+ 84.85863531642535,
+ 44.368964048712463,
+ 0.0
+ ],
+ [
+ 84.868544082464069,
+ 44.372281113832074,
+ 0.0
+ ],
+ [
+ 84.87910616876735,
+ 44.37431263582198,
+ 0.0
+ ],
+ [
+ 84.89,
+ 44.374996754167533,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9379,
+ "name": "Beijiang:kuitun",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "44.43",
+ "lng": "84.89",
+ "radius": 7000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 84.89,
+ 44.492994248747983,
+ 0.0
+ ],
+ [
+ 84.905282010332868,
+ 44.492036208188495,
+ 0.0
+ ],
+ [
+ 84.920098222392198,
+ 44.489191287574478,
+ 0.0
+ ],
+ [
+ 84.933997168053054,
+ 44.484546191747725,
+ 0.0
+ ],
+ [
+ 84.946555582510186,
+ 44.478242462921934,
+ 0.0
+ ],
+ [
+ 84.95739138003465,
+ 44.470472131133157,
+ 0.0
+ ],
+ [
+ 84.96617532412148,
+ 44.461471819656083,
+ 0.0
+ ],
+ [
+ 84.972641030175197,
+ 44.451515491765647,
+ 0.0
+ ],
+ [
+ 84.976592997075244,
+ 44.440906066938091,
+ 0.0
+ ],
+ [
+ 84.977912431313612,
+ 44.429966168428216,
+ 0.0
+ ],
+ [
+ 84.976560700940681,
+ 44.419028289170974,
+ 0.0
+ ],
+ [
+ 84.972580333278046,
+ 44.408424678551256,
+ 0.0
+ ],
+ [
+ 84.966093547374953,
+ 44.398477258548624,
+ 0.0
+ ],
+ [
+ 84.957298386896383,
+ 44.389487874221231,
+ 0.0
+ ],
+ [
+ 84.946462589315246,
+ 44.381729170871459,
+ 0.0
+ ],
+ [
+ 84.933915391162984,
+ 44.37543636921265,
+ 0.0
+ ],
+ [
+ 84.920037525331807,
+ 44.370800181300254,
+ 0.0
+ ],
+ [
+ 84.905249714091767,
+ 44.367961074917432,
+ 0.0
+ ],
+ [
+ 84.89,
+ 44.367005053619792,
+ 0.0
+ ],
+ [
+ 84.874750285908235,
+ 44.367961074917432,
+ 0.0
+ ],
+ [
+ 84.859962474668194,
+ 44.370800181300254,
+ 0.0
+ ],
+ [
+ 84.846084608837018,
+ 44.37543636921265,
+ 0.0
+ ],
+ [
+ 84.833537410684755,
+ 44.381729170871459,
+ 0.0
+ ],
+ [
+ 84.822701613103618,
+ 44.389487874221231,
+ 0.0
+ ],
+ [
+ 84.813906452625048,
+ 44.398477258548624,
+ 0.0
+ ],
+ [
+ 84.807419666721955,
+ 44.408424678551256,
+ 0.0
+ ],
+ [
+ 84.80343929905932,
+ 44.419028289170974,
+ 0.0
+ ],
+ [
+ 84.802087568686389,
+ 44.429966168428216,
+ 0.0
+ ],
+ [
+ 84.803407002924757,
+ 44.440906066938091,
+ 0.0
+ ],
+ [
+ 84.807358969824804,
+ 44.451515491765647,
+ 0.0
+ ],
+ [
+ 84.813824675878521,
+ 44.461471819656083,
+ 0.0
+ ],
+ [
+ 84.822608619965351,
+ 44.470472131133157,
+ 0.0
+ ],
+ [
+ 84.833444417489815,
+ 44.478242462921934,
+ 0.0
+ ],
+ [
+ 84.846002831946947,
+ 44.484546191747725,
+ 0.0
+ ],
+ [
+ 84.859901777607803,
+ 44.489191287574478,
+ 0.0
+ ],
+ [
+ 84.874717989667133,
+ 44.492036208188495,
+ 0.0
+ ],
+ [
+ 84.89,
+ 44.492994248747983,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6286,
+ "name": "Mudanjiang Hailang International Airport",
+ "country": "CN",
+ "city": "Mudanjiang Shi",
+ "height": 0,
+ "level": 2,
+ "lat": "44.4825272337415",
+ "lng": "129.543425440185",
+ "radius": 13055,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.499969822999986,
+ 44.4697826,
+ 0.0
+ ],
+ [
+ 129.43159786199999,
+ 44.3964485889,
+ 0.0
+ ],
+ [
+ 129.514126425,
+ 44.3672091579,
+ 0.0
+ ],
+ [
+ 129.552483744999989,
+ 44.448884211200003,
+ 0.0
+ ],
+ [
+ 129.593712778,
+ 44.451996421899999,
+ 0.0
+ ],
+ [
+ 129.61443692200001,
+ 44.45952484,
+ 0.0
+ ],
+ [
+ 129.644418441,
+ 44.4845348956,
+ 0.0
+ ],
+ [
+ 129.666604639000013,
+ 44.536534786899999,
+ 0.0
+ ],
+ [
+ 129.66404792,
+ 44.553032702099998,
+ 0.0
+ ],
+ [
+ 129.65558329000001,
+ 44.568496443800001,
+ 0.0
+ ],
+ [
+ 129.499969822999986,
+ 44.4697826,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6286,
+ "name": "Mudanjiang Hailang International Airport",
+ "country": "CN",
+ "city": "Mudanjiang Shi",
+ "height": 0,
+ "level": 2,
+ "lat": "44.5671796874763",
+ "lng": "129.592754787774",
+ "radius": 13092,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.710089176999986,
+ 44.65015775,
+ 0.0
+ ],
+ [
+ 129.624169826000013,
+ 44.682778777599999,
+ 0.0
+ ],
+ [
+ 129.585837773,
+ 44.601112153300001,
+ 0.0
+ ],
+ [
+ 129.541933011999987,
+ 44.596541226299998,
+ 0.0
+ ],
+ [
+ 129.52179383399999,
+ 44.588185222600003,
+ 0.0
+ ],
+ [
+ 129.493822959,
+ 44.561988955700002,
+ 0.0
+ ],
+ [
+ 129.482210401,
+ 44.543743510799999,
+ 0.0
+ ],
+ [
+ 129.472894808,
+ 44.514449342,
+ 0.0
+ ],
+ [
+ 129.476291468,
+ 44.498028822199998,
+ 0.0
+ ],
+ [
+ 129.499969822999986,
+ 44.4697826,
+ 0.0
+ ],
+ [
+ 129.65558329000001,
+ 44.568496443800001,
+ 0.0
+ ],
+ [
+ 129.641783882999988,
+ 44.5818709678,
+ 0.0
+ ],
+ [
+ 129.710089176999986,
+ 44.65015775,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6286,
+ "name": "Mudanjiang Hailang International Airport",
+ "country": "CN",
+ "city": "Mudanjiang Shi",
+ "height": 120,
+ "level": 2,
+ "lat": "44.5245316025451",
+ "lng": "129.569491391088",
+ "radius": 23482,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.551283511,
+ 44.735319331900001,
+ 120.0
+ ],
+ [
+ 129.78630178200001,
+ 44.668632605600003,
+ 120.0
+ ],
+ [
+ 129.586850679,
+ 44.313710246500001,
+ 120.0
+ ],
+ [
+ 129.353259938,
+ 44.380396974500002,
+ 120.0
+ ],
+ [
+ 129.551283511,
+ 44.735319331900001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001330,
+ "name": "Mudanjiang Hailang International Airport",
+ "country": "CN",
+ "city": "Mudanjiang Shi",
+ "height": 500,
+ "level": 2,
+ "lat": "44.523755",
+ "lng": "129.566221",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.566221,
+ 44.973691196667353,
+ 500.0
+ ],
+ [
+ 129.676273813823428,
+ 44.966803169623134,
+ 500.0
+ ],
+ [
+ 129.782906136698017,
+ 44.946353185142677,
+ 500.0
+ ],
+ [
+ 129.882810930332454,
+ 44.912976426305121,
+ 500.0
+ ],
+ [
+ 129.972903387445399,
+ 44.867708136530787,
+ 500.0
+ ],
+ [
+ 130.050420673658408,
+ 44.811949537785715,
+ 500.0
+ ],
+ [
+ 130.113008858619992,
+ 44.747422067562844,
+ 500.0
+ ],
+ [
+ 130.15879405902723,
+ 44.676111731275746,
+ 500.0
+ ],
+ [
+ 130.186435736865377,
+ 44.600205679302441,
+ 500.0
+ ],
+ [
+ 130.195161049702051,
+ 44.522023311890784,
+ 500.0
+ ],
+ [
+ 130.184780053103424,
+ 44.443944292672562,
+ 500.0
+ ],
+ [
+ 130.155682342805079,
+ 44.368335824158329,
+ 500.0
+ ],
+ [
+ 130.108816354380593,
+ 44.297481424264554,
+ 500.0
+ ],
+ [
+ 130.045652993802577,
+ 44.233513262795611,
+ 500.0
+ ],
+ [
+ 129.968135558655405,
+ 44.178349892164093,
+ 500.0
+ ],
+ [
+ 129.878618048978552,
+ 44.13364095656987,
+ 500.0
+ ],
+ [
+ 129.779793991637035,
+ 44.100720203722588,
+ 500.0
+ ],
+ [
+ 129.674617850156864,
+ 44.080567863903752,
+ 500.0
+ ],
+ [
+ 129.566221,
+ 44.073783209223734,
+ 500.0
+ ],
+ [
+ 129.457824149843162,
+ 44.080567863903752,
+ 500.0
+ ],
+ [
+ 129.352648008362991,
+ 44.100720203722588,
+ 500.0
+ ],
+ [
+ 129.253823951021474,
+ 44.13364095656987,
+ 500.0
+ ],
+ [
+ 129.164306441344621,
+ 44.178349892164093,
+ 500.0
+ ],
+ [
+ 129.086789006197449,
+ 44.233513262795611,
+ 500.0
+ ],
+ [
+ 129.023625645619433,
+ 44.297481424264554,
+ 500.0
+ ],
+ [
+ 128.976759657194947,
+ 44.368335824158329,
+ 500.0
+ ],
+ [
+ 128.947661946896602,
+ 44.443944292672562,
+ 500.0
+ ],
+ [
+ 128.937280950297975,
+ 44.522023311890784,
+ 500.0
+ ],
+ [
+ 128.946006263134649,
+ 44.600205679302441,
+ 500.0
+ ],
+ [
+ 128.973647940972796,
+ 44.676111731275746,
+ 500.0
+ ],
+ [
+ 129.019433141380034,
+ 44.747422067562844,
+ 500.0
+ ],
+ [
+ 129.082021326341618,
+ 44.811949537785715,
+ 500.0
+ ],
+ [
+ 129.159538612554627,
+ 44.867708136530787,
+ 500.0
+ ],
+ [
+ 129.249631069667572,
+ 44.912976426305121,
+ 500.0
+ ],
+ [
+ 129.349535863302009,
+ 44.946353185142677,
+ 500.0
+ ],
+ [
+ 129.456168186176598,
+ 44.966803169623134,
+ 500.0
+ ],
+ [
+ 129.566221,
+ 44.973691196667353,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288459,
+ "name": "Chernigovka Air Base",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "44.3224728016086",
+ "lng": "132.545295996457",
+ "radius": 5240,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.511946787999989,
+ 44.351642236700002,
+ 0.0
+ ],
+ [
+ 132.551077415,
+ 44.362097929900003,
+ 0.0
+ ],
+ [
+ 132.56157070899999,
+ 44.36262343,
+ 0.0
+ ],
+ [
+ 132.581871102,
+ 44.359003700899997,
+ 0.0
+ ],
+ [
+ 132.59078954200001,
+ 44.355016944,
+ 0.0
+ ],
+ [
+ 132.60422931799999,
+ 44.343554508099999,
+ 0.0
+ ],
+ [
+ 132.608163553999987,
+ 44.336580364,
+ 0.0
+ ],
+ [
+ 132.60961136899999,
+ 44.3216579037,
+ 0.0
+ ],
+ [
+ 132.607063277,
+ 44.314361850499999,
+ 0.0
+ ],
+ [
+ 132.59597854,
+ 44.3016798576,
+ 0.0
+ ],
+ [
+ 132.578638237,
+ 44.293315345099998,
+ 0.0
+ ],
+ [
+ 132.539457758999987,
+ 44.282852238899999,
+ 0.0
+ ],
+ [
+ 132.518576489999987,
+ 44.2833849501,
+ 0.0
+ ],
+ [
+ 132.508706831000012,
+ 44.285960790300003,
+ 0.0
+ ],
+ [
+ 132.492244344,
+ 44.295174387599999,
+ 0.0
+ ],
+ [
+ 132.486370614,
+ 44.301410027899998,
+ 0.0
+ ],
+ [
+ 132.480611993999986,
+ 44.315789578299999,
+ 0.0
+ ],
+ [
+ 132.480980157,
+ 44.323305339900003,
+ 0.0
+ ],
+ [
+ 132.488135629,
+ 44.337360719,
+ 0.0
+ ],
+ [
+ 132.494611451999987,
+ 44.343285676299999,
+ 0.0
+ ],
+ [
+ 132.511946787999989,
+ 44.351642236700002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288461,
+ "name": "Chernigovka Air Base",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "44.3432668499828",
+ "lng": "132.617297062007",
+ "radius": 2020,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.591969666000011,
+ 44.341773306299999,
+ 0.0
+ ],
+ [
+ 132.631422584,
+ 44.3583765773,
+ 0.0
+ ],
+ [
+ 132.64212656399999,
+ 44.339395050199997,
+ 0.0
+ ],
+ [
+ 132.59761973799999,
+ 44.331766655,
+ 0.0
+ ],
+ [
+ 132.591969666000011,
+ 44.341773306299999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288461,
+ "name": "Chernigovka Air Base",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "44.3016883264998",
+ "lng": "132.473314210047",
+ "radius": 2021,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.448497954,
+ 44.305553695699999,
+ 0.0
+ ],
+ [
+ 132.492982891999986,
+ 44.313188087,
+ 0.0
+ ],
+ [
+ 132.498625258,
+ 44.303180004700003,
+ 0.0
+ ],
+ [
+ 132.45921238,
+ 44.286573161699998,
+ 0.0
+ ],
+ [
+ 132.448497954,
+ 44.305553695699999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288461,
+ "name": "Chernigovka Air Base",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "44.3224600952342",
+ "lng": "132.545303165979",
+ "radius": 4288,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.492982891999986,
+ 44.313188087,
+ 0.0
+ ],
+ [
+ 132.591969666000011,
+ 44.341773306299999,
+ 0.0
+ ],
+ [
+ 132.59761973799999,
+ 44.331766655,
+ 0.0
+ ],
+ [
+ 132.498625258,
+ 44.303180004700003,
+ 0.0
+ ],
+ [
+ 132.492982891999986,
+ 44.313188087,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288461,
+ "name": "Chernigovka Air Base",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "44.3638875951505",
+ "lng": "132.688852831698",
+ "radius": 4606,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.631422584,
+ 44.3583765773,
+ 0.0
+ ],
+ [
+ 132.72356634799999,
+ 44.397064675499998,
+ 0.0
+ ],
+ [
+ 132.746020781999988,
+ 44.357127399600003,
+ 0.0
+ ],
+ [
+ 132.64212656399999,
+ 44.339395050199997,
+ 0.0
+ ],
+ [
+ 132.631422584,
+ 44.3583765773,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288461,
+ "name": "Chernigovka Air Base",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "44.2810128203114",
+ "lng": "132.401864321792",
+ "radius": 4606,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.344744843,
+ 44.287673011,
+ 0.0
+ ],
+ [
+ 132.448497954,
+ 44.305553695699999,
+ 0.0
+ ],
+ [
+ 132.45921238,
+ 44.286573161699998,
+ 0.0
+ ],
+ [
+ 132.36733565899999,
+ 44.247771217599997,
+ 0.0
+ ],
+ [
+ 132.344744843,
+ 44.287673011,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001518,
+ "name": "Yining Airport",
+ "country": "CN",
+ "city": "Yining",
+ "height": 500,
+ "level": 2,
+ "lat": "43.955833",
+ "lng": "81.330278",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.330278,
+ 44.405814119237895,
+ 500.0
+ ],
+ [
+ 81.439260932218104,
+ 44.398926443642871,
+ 500.0
+ ],
+ [
+ 81.544858123014308,
+ 44.3784774067435,
+ 500.0
+ ],
+ [
+ 81.643795945832025,
+ 44.345101886796819,
+ 500.0
+ ],
+ [
+ 81.733020407415069,
+ 44.29983466865103,
+ 500.0
+ ],
+ [
+ 81.809795777755014,
+ 44.244076429020161,
+ 500.0
+ ],
+ [
+ 81.871790612946796,
+ 44.179548054194989,
+ 500.0
+ ],
+ [
+ 81.91714823041471,
+ 44.108235075996447,
+ 500.0
+ ],
+ [
+ 81.944539595810681,
+ 44.03232432417196,
+ 500.0
+ ],
+ [
+ 81.95319751433982,
+ 43.954135088679486,
+ 500.0
+ ],
+ [
+ 81.942931905446841,
+ 43.876047165333091,
+ 500.0
+ ],
+ [
+ 81.914126714890017,
+ 43.800428134222315,
+ 500.0
+ ],
+ [
+ 81.867719641173366,
+ 43.729562109649763,
+ 500.0
+ ],
+ [
+ 81.805166307046733,
+ 43.665582023723132,
+ 500.0
+ ],
+ [
+ 81.728390795783,
+ 43.610407284079756,
+ 500.0
+ ],
+ [
+ 81.639724617227074,
+ 43.565688398302292,
+ 500.0
+ ],
+ [
+ 81.541836201715768,
+ 43.532759898581212,
+ 500.0
+ ],
+ [
+ 81.437652977004177,
+ 43.512602640962292,
+ 500.0
+ ],
+ [
+ 81.330278,
+ 43.505816300643154,
+ 500.0
+ ],
+ [
+ 81.222903022995837,
+ 43.512602640962292,
+ 500.0
+ ],
+ [
+ 81.118719798284246,
+ 43.532759898581212,
+ 500.0
+ ],
+ [
+ 81.02083138277294,
+ 43.565688398302292,
+ 500.0
+ ],
+ [
+ 80.932165204217014,
+ 43.610407284079756,
+ 500.0
+ ],
+ [
+ 80.855389692953281,
+ 43.665582023723132,
+ 500.0
+ ],
+ [
+ 80.792836358826648,
+ 43.729562109649763,
+ 500.0
+ ],
+ [
+ 80.746429285109997,
+ 43.800428134222315,
+ 500.0
+ ],
+ [
+ 80.717624094553173,
+ 43.876047165333091,
+ 500.0
+ ],
+ [
+ 80.707358485660194,
+ 43.954135088679486,
+ 500.0
+ ],
+ [
+ 80.716016404189332,
+ 44.03232432417196,
+ 500.0
+ ],
+ [
+ 80.743407769585303,
+ 44.108235075996447,
+ 500.0
+ ],
+ [
+ 80.788765387053218,
+ 44.179548054194989,
+ 500.0
+ ],
+ [
+ 80.850760222245,
+ 44.244076429020161,
+ 500.0
+ ],
+ [
+ 80.927535592584945,
+ 44.29983466865103,
+ 500.0
+ ],
+ [
+ 81.016760054167989,
+ 44.345101886796819,
+ 500.0
+ ],
+ [
+ 81.115697876985706,
+ 44.3784774067435,
+ 500.0
+ ],
+ [
+ 81.221295067781909,
+ 44.398926443642871,
+ 500.0
+ ],
+ [
+ 81.330278,
+ 44.405814119237895,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9026,
+ "name": "Yining Airport",
+ "country": "CN",
+ "city": "Yining",
+ "height": 0,
+ "level": 2,
+ "lat": "43.9364385589138",
+ "lng": "81.2762879100914",
+ "radius": 13140,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.230087122100002,
+ 43.938780426400001,
+ 0.0
+ ],
+ [
+ 81.116745006800002,
+ 43.908858474399999,
+ 0.0
+ ],
+ [
+ 81.161429377100006,
+ 43.852085965199997,
+ 0.0
+ ],
+ [
+ 81.256461691699997,
+ 43.902082975100001,
+ 0.0
+ ],
+ [
+ 81.295715189500001,
+ 43.887586260399999,
+ 0.0
+ ],
+ [
+ 81.318651458100007,
+ 43.8860872,
+ 0.0
+ ],
+ [
+ 81.341345866300003,
+ 43.8889130855,
+ 0.0
+ ],
+ [
+ 81.385593517299995,
+ 43.904208852099998,
+ 0.0
+ ],
+ [
+ 81.417501787199996,
+ 43.923720724699997,
+ 0.0
+ ],
+ [
+ 81.428489519,
+ 43.938311284699999,
+ 0.0
+ ],
+ [
+ 81.433251283399997,
+ 43.9710447605,
+ 0.0
+ ],
+ [
+ 81.230087122100002,
+ 43.938780426400001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9026,
+ "name": "Yining Airport",
+ "country": "CN",
+ "city": "Yining",
+ "height": 0,
+ "level": 2,
+ "lat": "43.9787962820811",
+ "lng": "81.3832173212383",
+ "radius": 13039,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.5432341474,
+ 44.0011064033,
+ 0.0
+ ],
+ [
+ 81.496834036699994,
+ 44.062919959399999,
+ 0.0
+ ],
+ [
+ 81.405245240400006,
+ 44.007913299800002,
+ 0.0
+ ],
+ [
+ 81.366620566700007,
+ 44.024529176900003,
+ 0.0
+ ],
+ [
+ 81.343797059400003,
+ 44.027017086199997,
+ 0.0
+ ],
+ [
+ 81.299366424300004,
+ 44.019109020199998,
+ 0.0
+ ],
+ [
+ 81.243770491099994,
+ 43.986436874799999,
+ 0.0
+ ],
+ [
+ 81.233414322599998,
+ 43.971605634200003,
+ 0.0
+ ],
+ [
+ 81.228748712200002,
+ 43.955350669600001,
+ 0.0
+ ],
+ [
+ 81.230087122100002,
+ 43.938780426400001,
+ 0.0
+ ],
+ [
+ 81.433251283399997,
+ 43.9710447605,
+ 0.0
+ ],
+ [
+ 81.5432341474,
+ 44.0011064033,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9026,
+ "name": "Yining Airport",
+ "country": "CN",
+ "city": "Yining",
+ "height": 120,
+ "level": 2,
+ "lat": "43.9558351133186",
+ "lng": "81.3303947537426",
+ "radius": 23411,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.492384045600005,
+ 44.1312476421,
+ 120.0
+ ],
+ [
+ 81.621416547600006,
+ 43.977131736499999,
+ 120.0
+ ],
+ [
+ 81.168026432100007,
+ 43.780833774900003,
+ 120.0
+ ],
+ [
+ 81.039419479100005,
+ 43.934949681200003,
+ 120.0
+ ],
+ [
+ 81.492384045600005,
+ 44.1312476421,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9385,
+ "name": "Beijiang:yining",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "43.91",
+ "lng": "81.33",
+ "radius": 8000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.33,
+ 43.981999950323562,
+ 0.0
+ ],
+ [
+ 81.347314620040308,
+ 43.98090480538918,
+ 0.0
+ ],
+ [
+ 81.364101284268131,
+ 43.977652763412351,
+ 0.0
+ ],
+ [
+ 81.379848303945352,
+ 43.972342974004015,
+ 0.0
+ ],
+ [
+ 81.394076002737961,
+ 43.965137289958165,
+ 0.0
+ ],
+ [
+ 81.406351437802769,
+ 43.95625528670427,
+ 0.0
+ ],
+ [
+ 81.416301631607823,
+ 43.945967513794855,
+ 0.0
+ ],
+ [
+ 81.423624903228216,
+ 43.934587192828033,
+ 0.0
+ ],
+ [
+ 81.428099955208623,
+ 43.922460623958131,
+ 0.0
+ ],
+ [
+ 81.429592449778994,
+ 43.909956601725398,
+ 0.0
+ ],
+ [
+ 81.42805889272266,
+ 43.897455169256581,
+ 0.0
+ ],
+ [
+ 81.42354773096811,
+ 43.885336057317311,
+ 0.0
+ ],
+ [
+ 81.416197657641121,
+ 43.873967161038621,
+ 0.0
+ ],
+ [
+ 81.406233202883897,
+ 43.863693402596347,
+ 0.0
+ ],
+ [
+ 81.393957767727144,
+ 43.854826313241993,
+ 0.0
+ ],
+ [
+ 81.379744329745819,
+ 43.847634643691677,
+ 0.0
+ ],
+ [
+ 81.364024111743291,
+ 43.84233627901493,
+ 0.0
+ ],
+ [
+ 81.347273557381541,
+ 43.839091694006996,
+ 0.0
+ ],
+ [
+ 81.33,
+ 43.837999138851657,
+ 0.0
+ ],
+ [
+ 81.312726442618455,
+ 43.839091694006996,
+ 0.0
+ ],
+ [
+ 81.295975888256706,
+ 43.84233627901493,
+ 0.0
+ ],
+ [
+ 81.280255670254178,
+ 43.847634643691677,
+ 0.0
+ ],
+ [
+ 81.266042232272852,
+ 43.854826313241993,
+ 0.0
+ ],
+ [
+ 81.2537667971161,
+ 43.863693402596347,
+ 0.0
+ ],
+ [
+ 81.243802342358876,
+ 43.873967161038621,
+ 0.0
+ ],
+ [
+ 81.236452269031886,
+ 43.885336057317311,
+ 0.0
+ ],
+ [
+ 81.231941107277336,
+ 43.897455169256581,
+ 0.0
+ ],
+ [
+ 81.230407550221003,
+ 43.909956601725398,
+ 0.0
+ ],
+ [
+ 81.231900044791374,
+ 43.922460623958131,
+ 0.0
+ ],
+ [
+ 81.236375096771781,
+ 43.934587192828033,
+ 0.0
+ ],
+ [
+ 81.243698368392174,
+ 43.945967513794855,
+ 0.0
+ ],
+ [
+ 81.253648562197228,
+ 43.95625528670427,
+ 0.0
+ ],
+ [
+ 81.265923997262036,
+ 43.965137289958165,
+ 0.0
+ ],
+ [
+ 81.280151696054645,
+ 43.972342974004015,
+ 0.0
+ ],
+ [
+ 81.295898715731866,
+ 43.977652763412351,
+ 0.0
+ ],
+ [
+ 81.312685379959689,
+ 43.98090480538918,
+ 0.0
+ ],
+ [
+ 81.33,
+ 43.981999950323562,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33234,
+ "name": "花园",
+ "country": "CN",
+ "city": "石河子",
+ "height": 0,
+ "level": 2,
+ "lat": "44.244258427406",
+ "lng": "85.9514892825086",
+ "radius": 13106,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 86.104266592900004,
+ 44.200600093399999,
+ 0.0
+ ],
+ [
+ 86.112789679900004,
+ 44.267635428200002,
+ 0.0
+ ],
+ [
+ 85.991090160300004,
+ 44.2576543793,
+ 0.0
+ ],
+ [
+ 85.971453973199999,
+ 44.283319022199997,
+ 0.0
+ ],
+ [
+ 85.953813217900006,
+ 44.294091231400003,
+ 0.0
+ ],
+ [
+ 85.932873171599994,
+ 44.301224553099999,
+ 0.0
+ ],
+ [
+ 85.880059101200004,
+ 44.305898326499999,
+ 0.0
+ ],
+ [
+ 85.8406674087,
+ 44.302322995600001,
+ 0.0
+ ],
+ [
+ 85.820126779099994,
+ 44.294617324299999,
+ 0.0
+ ],
+ [
+ 85.790686150400006,
+ 44.269338972,
+ 0.0
+ ],
+ [
+ 85.987574280100006,
+ 44.215544289299999,
+ 0.0
+ ],
+ [
+ 86.104266592900004,
+ 44.200600093399999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33234,
+ "name": "花园",
+ "country": "CN",
+ "city": "石河子",
+ "height": 0,
+ "level": 2,
+ "lat": "44.2448968995993",
+ "lng": "85.828278426971",
+ "radius": 13104,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.790686150400006,
+ 44.269338972,
+ 0.0
+ ],
+ [
+ 85.674070119600003,
+ 44.286068685,
+ 0.0
+ ],
+ [
+ 85.6689400307,
+ 44.215662639100003,
+ 0.0
+ ],
+ [
+ 85.790576198300002,
+ 44.224012804899999,
+ 0.0
+ ],
+ [
+ 85.81029976799999,
+ 44.1982973633,
+ 0.0
+ ],
+ [
+ 85.827936866599998,
+ 44.187546235299997,
+ 0.0
+ ],
+ [
+ 85.84884840399999,
+ 44.180430883200003,
+ 0.0
+ ],
+ [
+ 85.901607567200003,
+ 44.1757683445,
+ 0.0
+ ],
+ [
+ 85.940042576699994,
+ 44.180803833399999,
+ 0.0
+ ],
+ [
+ 85.9599736216,
+ 44.189243536600003,
+ 0.0
+ ],
+ [
+ 85.987574280100006,
+ 44.215544289299999,
+ 0.0
+ ],
+ [
+ 85.790686150400006,
+ 44.269338972,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33234,
+ "name": "花园",
+ "country": "CN",
+ "city": "石河子",
+ "height": 120,
+ "level": 2,
+ "lat": "44.2402553818438",
+ "lng": "85.8907646721121",
+ "radius": 23438,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 86.165812820699998,
+ 44.315449279600003,
+ 120.0
+ ],
+ [
+ 86.146361234,
+ 44.136125883299997,
+ 120.0
+ ],
+ [
+ 85.615743693499994,
+ 44.165670159,
+ 120.0
+ ],
+ [
+ 85.635205050500005,
+ 44.3449935553,
+ 120.0
+ ],
+ [
+ 86.165812820699998,
+ 44.315449279600003,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001307,
+ "name": "花园",
+ "country": "CN",
+ "city": "石河子",
+ "height": 500,
+ "level": 2,
+ "lat": "44.2416666666667",
+ "lng": "85.89",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.89,
+ 44.691625178382061,
+ 500.0
+ ],
+ [
+ 85.999517434395884,
+ 44.684737328403962,
+ 500.0
+ ],
+ [
+ 86.105631768663741,
+ 44.664287821771403,
+ 500.0
+ ],
+ [
+ 86.20505268558243,
+ 44.630911689242126,
+ 500.0
+ ],
+ [
+ 86.294710798457658,
+ 44.585643945071403,
+ 500.0
+ ],
+ [
+ 86.37185683641782,
+ 44.52988553871225,
+ 500.0
+ ],
+ [
+ 86.434148120975564,
+ 44.465357632112259,
+ 500.0
+ ],
+ [
+ 86.479719374939179,
+ 44.394045993834446,
+ 500.0
+ ],
+ [
+ 86.507235814976724,
+ 44.318137613727778,
+ 500.0
+ ],
+ [
+ 86.515927422598736,
+ 44.239951836483385,
+ 500.0
+ ],
+ [
+ 86.505604183013276,
+ 44.161868391193764,
+ 500.0
+ ],
+ [
+ 86.476652862631369,
+ 44.08625466831262,
+ 500.0
+ ],
+ [
+ 86.430016522528618,
+ 44.015394482916392,
+ 500.0
+ ],
+ [
+ 86.367158419873022,
+ 43.951420384796272,
+ 500.0
+ ],
+ [
+ 86.290012237022324,
+ 43.896251352757467,
+ 500.0
+ ],
+ [
+ 86.200920720259759,
+ 43.851537461508336,
+ 500.0
+ ],
+ [
+ 86.102564839160252,
+ 43.818612849949339,
+ 500.0
+ ],
+ [
+ 85.997885530127292,
+ 43.798458060418518,
+ 500.0
+ ],
+ [
+ 85.89,
+ 43.791672566042124,
+ 500.0
+ ],
+ [
+ 85.782114469872738,
+ 43.798458060418518,
+ 500.0
+ ],
+ [
+ 85.677435160839778,
+ 43.818612849949339,
+ 500.0
+ ],
+ [
+ 85.57907927974027,
+ 43.851537461508336,
+ 500.0
+ ],
+ [
+ 85.489987762977705,
+ 43.896251352757467,
+ 500.0
+ ],
+ [
+ 85.412841580127008,
+ 43.951420384796272,
+ 500.0
+ ],
+ [
+ 85.349983477471412,
+ 44.015394482916392,
+ 500.0
+ ],
+ [
+ 85.303347137368661,
+ 44.08625466831262,
+ 500.0
+ ],
+ [
+ 85.274395816986754,
+ 44.161868391193764,
+ 500.0
+ ],
+ [
+ 85.264072577401294,
+ 44.239951836483385,
+ 500.0
+ ],
+ [
+ 85.272764185023306,
+ 44.318137613727778,
+ 500.0
+ ],
+ [
+ 85.30028062506085,
+ 44.394045993834446,
+ 500.0
+ ],
+ [
+ 85.345851879024465,
+ 44.465357632112259,
+ 500.0
+ ],
+ [
+ 85.40814316358221,
+ 44.52988553871225,
+ 500.0
+ ],
+ [
+ 85.485289201542372,
+ 44.585643945071403,
+ 500.0
+ ],
+ [
+ 85.574947314417599,
+ 44.630911689242126,
+ 500.0
+ ],
+ [
+ 85.674368231336288,
+ 44.664287821771403,
+ 500.0
+ ],
+ [
+ 85.780482565604146,
+ 44.684737328403962,
+ 500.0
+ ],
+ [
+ 85.89,
+ 44.691625178382061,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9378,
+ "name": "Beijiang:shihezi",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "44.31",
+ "lng": "86.05",
+ "radius": 8000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 86.05,
+ 44.38199488894108,
+ 0.0
+ ],
+ [
+ 86.067432081565187,
+ 44.380899802574397,
+ 0.0
+ ],
+ [
+ 86.084332599366689,
+ 44.377647936182257,
+ 0.0
+ ],
+ [
+ 86.100186371069455,
+ 44.372338438821885,
+ 0.0
+ ],
+ [
+ 86.114510451397834,
+ 44.365133161733702,
+ 0.0
+ ],
+ [
+ 86.126868955611414,
+ 44.356251676951445,
+ 0.0
+ ],
+ [
+ 86.136886382320441,
+ 44.345964527804611,
+ 0.0
+ ],
+ [
+ 86.14425902142564,
+ 44.334584925875937,
+ 0.0
+ ],
+ [
+ 86.148764100956754,
+ 44.322459156736585,
+ 0.0
+ ],
+ [
+ 86.150266404984691,
+ 44.309955995344573,
+ 0.0
+ ],
+ [
+ 86.148722180022659,
+ 44.297455460276147,
+ 0.0
+ ],
+ [
+ 86.144180235809557,
+ 44.285337253336849,
+ 0.0
+ ],
+ [
+ 86.136780234682675,
+ 44.273969237378637,
+ 0.0
+ ],
+ [
+ 86.126748248881597,
+ 44.263696300541426,
+ 0.0
+ ],
+ [
+ 86.114389744572421,
+ 44.254829940198732,
+ 0.0
+ ],
+ [
+ 86.10008022318965,
+ 44.247638875449454,
+ 0.0
+ ],
+ [
+ 86.084253813475385,
+ 44.242340964104393,
+ 0.0
+ ],
+ [
+ 86.067390160451438,
+ 44.239096659951755,
+ 0.0
+ ],
+ [
+ 86.05,
+ 44.238004199924241,
+ 0.0
+ ],
+ [
+ 86.032609839548556,
+ 44.239096659951755,
+ 0.0
+ ],
+ [
+ 86.015746186524609,
+ 44.242340964104393,
+ 0.0
+ ],
+ [
+ 85.999919776810344,
+ 44.247638875449454,
+ 0.0
+ ],
+ [
+ 85.985610255427574,
+ 44.254829940198732,
+ 0.0
+ ],
+ [
+ 85.973251751118397,
+ 44.263696300541426,
+ 0.0
+ ],
+ [
+ 85.963219765317319,
+ 44.273969237378637,
+ 0.0
+ ],
+ [
+ 85.955819764190437,
+ 44.285337253336849,
+ 0.0
+ ],
+ [
+ 85.951277819977335,
+ 44.297455460276147,
+ 0.0
+ ],
+ [
+ 85.949733595015303,
+ 44.309955995344573,
+ 0.0
+ ],
+ [
+ 85.95123589904324,
+ 44.322459156736585,
+ 0.0
+ ],
+ [
+ 85.955740978574354,
+ 44.334584925875937,
+ 0.0
+ ],
+ [
+ 85.963113617679554,
+ 44.345964527804611,
+ 0.0
+ ],
+ [
+ 85.97313104438858,
+ 44.356251676951445,
+ 0.0
+ ],
+ [
+ 85.98548954860216,
+ 44.365133161733702,
+ 0.0
+ ],
+ [
+ 85.999813628930539,
+ 44.372338438821885,
+ 0.0
+ ],
+ [
+ 86.015667400633305,
+ 44.377647936182257,
+ 0.0
+ ],
+ [
+ 86.032567918434808,
+ 44.380899802574397,
+ 0.0
+ ],
+ [
+ 86.05,
+ 44.38199488894108,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9375,
+ "name": "Beijiang:wulumuqi",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "43.85",
+ "lng": "87.58",
+ "radius": 20000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 87.58,
+ 44.030000065512198,
+ 0.0
+ ],
+ [
+ 87.623320211790286,
+ 44.027257307986375,
+ 0.0
+ ],
+ [
+ 87.665312504216047,
+ 44.01911311022905,
+ 0.0
+ ],
+ [
+ 87.704690728983863,
+ 44.005817051861335,
+ 0.0
+ ],
+ [
+ 87.74025083453175,
+ 43.987776374393682,
+ 0.0
+ ],
+ [
+ 87.770908367296158,
+ 43.965543210822652,
+ 0.0
+ ],
+ [
+ 87.79573189737701,
+ 43.939797324911694,
+ 0.0
+ ],
+ [
+ 87.813971296973804,
+ 43.911324944354291,
+ 0.0
+ ],
+ [
+ 87.825080018493594,
+ 43.88099439372882,
+ 0.0
+ ],
+ [
+ 87.828730762004838,
+ 43.849729325595241,
+ 0.0
+ ],
+ [
+ 87.82482417375445,
+ 43.818480409189533,
+ 0.0
+ ],
+ [
+ 87.813490464981626,
+ 43.788196365712984,
+ 0.0
+ ],
+ [
+ 87.795084071780977,
+ 43.759795238535183,
+ 0.0
+ ],
+ [
+ 87.770171683854016,
+ 43.734136758319046,
+ 0.0
+ ],
+ [
+ 87.739514147518804,
+ 43.711996610532914,
+ 0.0
+ ],
+ [
+ 87.704042894346216,
+ 43.69404333986386,
+ 0.0
+ ],
+ [
+ 87.664831661942102,
+ 43.680818536566875,
+ 0.0
+ ],
+ [
+ 87.623064360340194,
+ 43.672720847445589,
+ 0.0
+ ],
+ [
+ 87.58,
+ 43.669994242234971,
+ 0.0
+ ],
+ [
+ 87.536935639659802,
+ 43.672720847445589,
+ 0.0
+ ],
+ [
+ 87.495168338057894,
+ 43.680818536566875,
+ 0.0
+ ],
+ [
+ 87.455957105653781,
+ 43.69404333986386,
+ 0.0
+ ],
+ [
+ 87.420485852481193,
+ 43.711996610532914,
+ 0.0
+ ],
+ [
+ 87.38982831614598,
+ 43.734136758319046,
+ 0.0
+ ],
+ [
+ 87.36491592821902,
+ 43.759795238535183,
+ 0.0
+ ],
+ [
+ 87.34650953501837,
+ 43.788196365712984,
+ 0.0
+ ],
+ [
+ 87.335175826245546,
+ 43.818480409189533,
+ 0.0
+ ],
+ [
+ 87.331269237995159,
+ 43.849729325595241,
+ 0.0
+ ],
+ [
+ 87.334919981506403,
+ 43.88099439372882,
+ 0.0
+ ],
+ [
+ 87.346028703026192,
+ 43.911324944354291,
+ 0.0
+ ],
+ [
+ 87.364268102622987,
+ 43.939797324911694,
+ 0.0
+ ],
+ [
+ 87.389091632703838,
+ 43.965543210822652,
+ 0.0
+ ],
+ [
+ 87.419749165468247,
+ 43.987776374393682,
+ 0.0
+ ],
+ [
+ 87.455309271016134,
+ 44.005817051861335,
+ 0.0
+ ],
+ [
+ 87.49468749578395,
+ 44.01911311022905,
+ 0.0
+ ],
+ [
+ 87.53667978820971,
+ 44.027257307986375,
+ 0.0
+ ],
+ [
+ 87.58,
+ 44.030000065512198,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001465,
+ "name": "Dongshan Airport",
+ "country": "CN",
+ "city": "Hailar",
+ "height": 500,
+ "level": 2,
+ "lat": "43.904125",
+ "lng": "87.477759",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 87.477759,
+ 44.354110208410326,
+ 500.0
+ ],
+ [
+ 87.586646086903272,
+ 44.347222563830826,
+ 500.0
+ ],
+ [
+ 87.692150544717492,
+ 44.326773610382965,
+ 500.0
+ ],
+ [
+ 87.791001739491662,
+ 44.293398198931108,
+ 500.0
+ ],
+ [
+ 87.880148438078052,
+ 44.248131073119545,
+ 500.0
+ ],
+ [
+ 87.956857338531378,
+ 44.192372860682191,
+ 500.0
+ ],
+ [
+ 88.018799011618711,
+ 44.127844398418077,
+ 500.0
+ ],
+ [
+ 88.064118316197309,
+ 44.056531175664993,
+ 500.0
+ ],
+ [
+ 88.091487249199076,
+ 43.980619993477994,
+ 500.0
+ ],
+ [
+ 88.100139122622522,
+ 43.90243013207828,
+ 500.0
+ ],
+ [
+ 88.089883844587234,
+ 43.824341399390676,
+ 500.0
+ ],
+ [
+ 88.061104855481375,
+ 43.74872140972429,
+ 500.0
+ ],
+ [
+ 88.014738892533856,
+ 43.677854331312361,
+ 500.0
+ ],
+ [
+ 87.952240209706574,
+ 43.613873165135892,
+ 500.0
+ ],
+ [
+ 87.875531169033422,
+ 43.558697396066606,
+ 500.0
+ ],
+ [
+ 87.786941265357726,
+ 43.51397760963934,
+ 500.0
+ ],
+ [
+ 87.68913668025462,
+ 43.481048408863025,
+ 500.0
+ ],
+ [
+ 87.585042418764331,
+ 43.460890706269225,
+ 500.0
+ ],
+ [
+ 87.477759,
+ 43.454104213439514,
+ 500.0
+ ],
+ [
+ 87.370475581235681,
+ 43.460890706269225,
+ 500.0
+ ],
+ [
+ 87.266381319745392,
+ 43.481048408863025,
+ 500.0
+ ],
+ [
+ 87.168576734642286,
+ 43.51397760963934,
+ 500.0
+ ],
+ [
+ 87.07998683096659,
+ 43.558697396066606,
+ 500.0
+ ],
+ [
+ 87.003277790293438,
+ 43.613873165135892,
+ 500.0
+ ],
+ [
+ 86.940779107466156,
+ 43.677854331312361,
+ 500.0
+ ],
+ [
+ 86.894413144518637,
+ 43.74872140972429,
+ 500.0
+ ],
+ [
+ 86.865634155412778,
+ 43.824341399390676,
+ 500.0
+ ],
+ [
+ 86.85537887737749,
+ 43.90243013207828,
+ 500.0
+ ],
+ [
+ 86.864030750800936,
+ 43.980619993477994,
+ 500.0
+ ],
+ [
+ 86.891399683802703,
+ 44.056531175664993,
+ 500.0
+ ],
+ [
+ 86.936718988381301,
+ 44.127844398418077,
+ 500.0
+ ],
+ [
+ 86.998660661468634,
+ 44.192372860682191,
+ 500.0
+ ],
+ [
+ 87.07536956192196,
+ 44.248131073119545,
+ 500.0
+ ],
+ [
+ 87.16451626050835,
+ 44.293398198931108,
+ 500.0
+ ],
+ [
+ 87.26336745528252,
+ 44.326773610382965,
+ 500.0
+ ],
+ [
+ 87.36887191309674,
+ 44.347222563830826,
+ 500.0
+ ],
+ [
+ 87.477759,
+ 44.354110208410326,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9376,
+ "name": "Beijiang:changji",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "44.01",
+ "lng": "87.29",
+ "radius": 6000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 87.29,
+ 44.063999099281141,
+ 0.0
+ ],
+ [
+ 87.30300393739094,
+ 44.063177995913897,
+ 0.0
+ ],
+ [
+ 87.315611706173399,
+ 44.060739700813414,
+ 0.0
+ ],
+ [
+ 87.327439302291594,
+ 44.056758490896499,
+ 0.0
+ ],
+ [
+ 87.3381266657195,
+ 44.051355625048878,
+ 0.0
+ ],
+ [
+ 87.347348703385506,
+ 44.044695624403857,
+ 0.0
+ ],
+ [
+ 87.354825210613186,
+ 44.036981230165075,
+ 0.0
+ ],
+ [
+ 87.360329384388706,
+ 44.028447197433181,
+ 0.0
+ ],
+ [
+ 87.363694669947392,
+ 44.019353119180394,
+ 0.0
+ ],
+ [
+ 87.364819738165252,
+ 44.009975503621575,
+ 0.0
+ ],
+ [
+ 87.363671452687797,
+ 44.000599349922219,
+ 0.0
+ ],
+ [
+ 87.360285750204071,
+ 43.991509480926844,
+ 0.0
+ ],
+ [
+ 87.35476642241548,
+ 43.982981897153856,
+ 0.0
+ ],
+ [
+ 87.347281851886052,
+ 43.975275413738252,
+ 0.0
+ ],
+ [
+ 87.338059814190672,
+ 43.968623831620242,
+ 0.0
+ ],
+ [
+ 87.327380514019495,
+ 43.963228876604838,
+ 0.0
+ ],
+ [
+ 87.315568071904181,
+ 43.959254115660677,
+ 0.0
+ ],
+ [
+ 87.302980720076121,
+ 43.956820029829807,
+ 0.0
+ ],
+ [
+ 87.29,
+ 43.956000388326835,
+ 0.0
+ ],
+ [
+ 87.277019279923891,
+ 43.956820029829807,
+ 0.0
+ ],
+ [
+ 87.264431928095831,
+ 43.959254115660677,
+ 0.0
+ ],
+ [
+ 87.252619485980517,
+ 43.963228876604838,
+ 0.0
+ ],
+ [
+ 87.241940185809341,
+ 43.968623831620242,
+ 0.0
+ ],
+ [
+ 87.23271814811396,
+ 43.975275413738252,
+ 0.0
+ ],
+ [
+ 87.225233577584532,
+ 43.982981897153856,
+ 0.0
+ ],
+ [
+ 87.219714249795942,
+ 43.991509480926844,
+ 0.0
+ ],
+ [
+ 87.216328547312216,
+ 44.000599349922219,
+ 0.0
+ ],
+ [
+ 87.21518026183476,
+ 44.009975503621575,
+ 0.0
+ ],
+ [
+ 87.21630533005262,
+ 44.019353119180394,
+ 0.0
+ ],
+ [
+ 87.219670615611307,
+ 44.028447197433181,
+ 0.0
+ ],
+ [
+ 87.225174789386827,
+ 44.036981230165075,
+ 0.0
+ ],
+ [
+ 87.232651296614506,
+ 44.044695624403857,
+ 0.0
+ ],
+ [
+ 87.241873334280513,
+ 44.051355625048878,
+ 0.0
+ ],
+ [
+ 87.252560697708418,
+ 44.056758490896499,
+ 0.0
+ ],
+ [
+ 87.264388293826613,
+ 44.060739700813414,
+ 0.0
+ ],
+ [
+ 87.276996062609072,
+ 44.063177995913897,
+ 0.0
+ ],
+ [
+ 87.29,
+ 44.063999099281141,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1466,
+ "name": "Dongshan Airport",
+ "country": "CN",
+ "city": "Hailar",
+ "height": 0,
+ "level": 2,
+ "lat": "43.8995383761347",
+ "lng": "87.4141688375385",
+ "radius": 13691,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 87.361953876399994,
+ 43.904037473800003,
+ 0.0
+ ],
+ [
+ 87.243579260399997,
+ 43.892399424200001,
+ 0.0
+ ],
+ [
+ 87.272774865399995,
+ 43.830473811700003,
+ 0.0
+ ],
+ [
+ 87.377741065500004,
+ 43.867148898099998,
+ 0.0
+ ],
+ [
+ 87.409978326,
+ 43.844813064500002,
+ 0.0
+ ],
+ [
+ 87.431361977099996,
+ 43.838678725500003,
+ 0.0
+ ],
+ [
+ 87.476987687100006,
+ 43.839130906199998,
+ 0.0
+ ],
+ [
+ 87.520354374299998,
+ 43.849137754099999,
+ 0.0
+ ],
+ [
+ 87.556064181,
+ 43.863427509399997,
+ 0.0
+ ],
+ [
+ 87.580665850399996,
+ 43.891153913899998,
+ 0.0
+ ],
+ [
+ 87.584710408700005,
+ 43.907494297699998,
+ 0.0
+ ],
+ [
+ 87.361953876399994,
+ 43.904037473800003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1466,
+ "name": "Dongshan Airport",
+ "country": "CN",
+ "city": "Hailar",
+ "height": 0,
+ "level": 2,
+ "lat": "43.9193937321156",
+ "lng": "87.5310291706042",
+ "radius": 13651,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 87.701411632599999,
+ 43.922590767199999,
+ 0.0
+ ],
+ [
+ 87.675586070400001,
+ 43.984519663100002,
+ 0.0
+ ],
+ [
+ 87.567240753600004,
+ 43.947855937600004,
+ 0.0
+ ],
+ [
+ 87.536867600099995,
+ 43.967450553699997,
+ 0.0
+ ],
+ [
+ 87.515336590800004,
+ 43.973398728900001,
+ 0.0
+ ],
+ [
+ 87.492398009499993,
+ 43.975129163699997,
+ 0.0
+ ],
+ [
+ 87.4263210023,
+ 43.9658642224,
+ 0.0
+ ],
+ [
+ 87.387183043199997,
+ 43.949181316699999,
+ 0.0
+ ],
+ [
+ 87.373332808200004,
+ 43.935913029699996,
+ 0.0
+ ],
+ [
+ 87.361953876399994,
+ 43.904037473800003,
+ 0.0
+ ],
+ [
+ 87.584710408700005,
+ 43.907494297699998,
+ 0.0
+ ],
+ [
+ 87.701411632599999,
+ 43.922590767199999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1466,
+ "name": "Dongshan Airport",
+ "country": "CN",
+ "city": "Hailar",
+ "height": 120,
+ "level": 2,
+ "lat": "43.9061174487496",
+ "lng": "87.4735612623326",
+ "radius": 23981,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 87.704216745899998,
+ 44.043814277300001,
+ 120.0
+ ],
+ [
+ 87.768591079299995,
+ 43.870022084600002,
+ 120.0
+ ],
+ [
+ 87.242764046700003,
+ 43.769008382800003,
+ 120.0
+ ],
+ [
+ 87.178498863200005,
+ 43.942800575600003,
+ 120.0
+ ],
+ [
+ 87.704216745899998,
+ 44.043814277300001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045021,
+ "name": "奇台江布拉克机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "44.183024",
+ "lng": "89.594407",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.594407,
+ 44.632987150341606,
+ 500.0
+ ],
+ [
+ 89.703814123317727,
+ 44.626099336549309,
+ 500.0
+ ],
+ [
+ 89.809821729308283,
+ 44.605649927462871,
+ 500.0
+ ],
+ [
+ 89.909142945630535,
+ 44.572273922402431,
+ 500.0
+ ],
+ [
+ 89.998711562655785,
+ 44.527006288329453,
+ 500.0
+ ],
+ [
+ 90.075781104122896,
+ 44.471247918464826,
+ 500.0
+ ],
+ [
+ 90.138011210054515,
+ 44.406719917912859,
+ 500.0
+ ],
+ [
+ 90.183538376812081,
+ 44.335408006401124,
+ 500.0
+ ],
+ [
+ 90.211029007241251,
+ 44.259499140723555,
+ 500.0
+ ],
+ [
+ 90.219713665253423,
+ 44.181312654215262,
+ 500.0
+ ],
+ [
+ 90.209402322120326,
+ 44.103228289626053,
+ 500.0
+ ],
+ [
+ 90.180481161796038,
+ 44.027613476381745,
+ 500.0
+ ],
+ [
+ 90.133892138370072,
+ 43.956752091102523,
+ 500.0
+ ],
+ [
+ 90.07109693326143,
+ 43.892776762238469,
+ 500.0
+ ],
+ [
+ 89.99402724772817,
+ 43.837606556838274,
+ 500.0
+ ],
+ [
+ 89.905023509157814,
+ 43.792891638693455,
+ 500.0
+ ],
+ [
+ 89.806764099470271,
+ 43.759966227645556,
+ 500.0
+ ],
+ [
+ 89.702187167440982,
+ 43.73981093059713,
+ 500.0
+ ],
+ [
+ 89.594407,
+ 43.733025262263666,
+ 500.0
+ ],
+ [
+ 89.486626832559026,
+ 43.73981093059713,
+ 500.0
+ ],
+ [
+ 89.382049900529736,
+ 43.759966227645556,
+ 500.0
+ ],
+ [
+ 89.283790490842193,
+ 43.792891638693455,
+ 500.0
+ ],
+ [
+ 89.194786752271838,
+ 43.837606556838274,
+ 500.0
+ ],
+ [
+ 89.117717066738578,
+ 43.892776762238469,
+ 500.0
+ ],
+ [
+ 89.054921861629936,
+ 43.956752091102523,
+ 500.0
+ ],
+ [
+ 89.00833283820397,
+ 44.027613476381745,
+ 500.0
+ ],
+ [
+ 88.979411677879682,
+ 44.103228289626053,
+ 500.0
+ ],
+ [
+ 88.969100334746585,
+ 44.181312654215262,
+ 500.0
+ ],
+ [
+ 88.977784992758757,
+ 44.259499140723555,
+ 500.0
+ ],
+ [
+ 89.005275623187927,
+ 44.335408006401124,
+ 500.0
+ ],
+ [
+ 89.050802789945493,
+ 44.406719917912859,
+ 500.0
+ ],
+ [
+ 89.113032895877112,
+ 44.471247918464826,
+ 500.0
+ ],
+ [
+ 89.190102437344223,
+ 44.527006288329453,
+ 500.0
+ ],
+ [
+ 89.279671054369473,
+ 44.572273922402431,
+ 500.0
+ ],
+ [
+ 89.378992270691725,
+ 44.605649927462871,
+ 500.0
+ ],
+ [
+ 89.484999876682281,
+ 44.626099336549309,
+ 500.0
+ ],
+ [
+ 89.594407,
+ 44.632987150341606,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045020,
+ "name": "奇台江布拉克机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "44.1659223350681",
+ "lng": "89.4915432877192",
+ "radius": 13474,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.448181588899999,
+ 44.1863714526,
+ 0.0
+ ],
+ [
+ 89.3289750414,
+ 44.1989922104,
+ 0.0
+ ],
+ [
+ 89.329031676100001,
+ 44.132939492200002,
+ 0.0
+ ],
+ [
+ 89.448218126200004,
+ 44.145725853899997,
+ 0.0
+ ],
+ [
+ 89.457863152,
+ 44.128960073,
+ 0.0
+ ],
+ [
+ 89.490628898599994,
+ 44.105940520399997,
+ 0.0
+ ],
+ [
+ 89.535020044299998,
+ 44.097751552600002,
+ 0.0
+ ],
+ [
+ 89.596238198400002,
+ 44.1001371,
+ 0.0
+ ],
+ [
+ 89.635638507199999,
+ 44.116956426900003,
+ 0.0
+ ],
+ [
+ 89.649484887,
+ 44.130249594399999,
+ 0.0
+ ],
+ [
+ 89.658071590800006,
+ 44.145661493699997,
+ 0.0
+ ],
+ [
+ 89.448181588899999,
+ 44.1863714526,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045020,
+ "name": "奇台江布拉克机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "44.1658836374368",
+ "lng": "89.6147348067463",
+ "radius": 13476,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.77728468799999,
+ 44.132942264599997,
+ 0.0
+ ],
+ [
+ 89.777308592,
+ 44.198994983699997,
+ 0.0
+ ],
+ [
+ 89.658083279799996,
+ 44.186435923300003,
+ 0.0
+ ],
+ [
+ 89.64850904,
+ 44.20315872,
+ 0.0
+ ],
+ [
+ 89.615753748800003,
+ 44.226225428299998,
+ 0.0
+ ],
+ [
+ 89.5712780331,
+ 44.234448434100003,
+ 0.0
+ ],
+ [
+ 89.509914811200005,
+ 44.232028725,
+ 0.0
+ ],
+ [
+ 89.470501722400002,
+ 44.215132337100002,
+ 0.0
+ ],
+ [
+ 89.456698047299994,
+ 44.201805714899997,
+ 0.0
+ ],
+ [
+ 89.448181588899999,
+ 44.1863714526,
+ 0.0
+ ],
+ [
+ 89.658071590800006,
+ 44.145661493699997,
+ 0.0
+ ],
+ [
+ 89.77728468799999,
+ 44.132942264599997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045020,
+ "name": "奇台江布拉克机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "44.1655133034274",
+ "lng": "89.5531479667816",
+ "radius": 23664,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.822070607900002,
+ 44.255718244699999,
+ 120.0
+ ],
+ [
+ 89.82201526599999,
+ 44.075853927899999,
+ 120.0
+ ],
+ [
+ 89.284229138900002,
+ 44.075933323699999,
+ 120.0
+ ],
+ [
+ 89.284284481,
+ 44.255797640499999,
+ 120.0
+ ],
+ [
+ 89.822070607900002,
+ 44.255718244699999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7772,
+ "name": "Xilinhot Airport",
+ "country": "CN",
+ "city": "Xilinhot",
+ "height": 0,
+ "level": 2,
+ "lat": "43.9532974192703",
+ "lng": "115.982489880542",
+ "radius": 13378,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.105072298,
+ 44.035149299300002,
+ 0.0
+ ],
+ [
+ 116.025956511,
+ 44.0694843558,
+ 0.0
+ ],
+ [
+ 115.98426547699999,
+ 43.986142757800003,
+ 0.0
+ ],
+ [
+ 115.942221464,
+ 43.985292987500003,
+ 0.0
+ ],
+ [
+ 115.920972,
+ 43.978834568099998,
+ 0.0
+ ],
+ [
+ 115.888873438,
+ 43.955393095799998,
+ 0.0
+ ],
+ [
+ 115.863070536,
+ 43.916029848,
+ 0.0
+ ],
+ [
+ 115.860269567,
+ 43.899554736200002,
+ 0.0
+ ],
+ [
+ 115.863481659,
+ 43.883118703100003,
+ 0.0
+ ],
+ [
+ 115.886657473,
+ 43.854762544700002,
+ 0.0
+ ],
+ [
+ 116.035118446,
+ 43.966772475799999,
+ 0.0
+ ],
+ [
+ 116.105072298,
+ 44.035149299300002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7772,
+ "name": "Xilinhot Airport",
+ "country": "CN",
+ "city": "Xilinhot",
+ "height": 0,
+ "level": 2,
+ "lat": "43.8727716109",
+ "lng": "115.931906878436",
+ "radius": 13326,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.886657473,
+ 43.854762544700002,
+ 0.0
+ ],
+ [
+ 115.816606814,
+ 43.786488726400002,
+ 0.0
+ ],
+ [
+ 115.897431168,
+ 43.755535166800001,
+ 0.0
+ ],
+ [
+ 115.93405705399999,
+ 43.835520942,
+ 0.0
+ ],
+ [
+ 115.95711141,
+ 43.834778417599999,
+ 0.0
+ ],
+ [
+ 116.000006291,
+ 43.846004141599998,
+ 0.0
+ ],
+ [
+ 116.016997243,
+ 43.857201039499998,
+ 0.0
+ ],
+ [
+ 116.046086003,
+ 43.891223649300002,
+ 0.0
+ ],
+ [
+ 116.058394329,
+ 43.921085751100001,
+ 0.0
+ ],
+ [
+ 116.05633077,
+ 43.937617322599998,
+ 0.0
+ ],
+ [
+ 116.035118446,
+ 43.966772475799999,
+ 0.0
+ ],
+ [
+ 115.886657473,
+ 43.854762544700002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7772,
+ "name": "Xilinhot Airport",
+ "country": "CN",
+ "city": "Xilinhot",
+ "height": 120,
+ "level": 2,
+ "lat": "43.9123907763138",
+ "lng": "115.95954997108",
+ "radius": 23600,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.979365662,
+ 44.124157027499997,
+ 120.0
+ ],
+ [
+ 116.19834927799999,
+ 44.036950980500002,
+ 120.0
+ ],
+ [
+ 115.938957323,
+ 43.700666560499997,
+ 120.0
+ ],
+ [
+ 115.721207612,
+ 43.787872609200001,
+ 120.0
+ ],
+ [
+ 115.979365662,
+ 44.124157027499997,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001347,
+ "name": "Xilinhot Airport",
+ "country": "CN",
+ "city": "Xilinhot",
+ "height": 500,
+ "level": 2,
+ "lat": "43.912132",
+ "lng": "115.960205",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.960205,
+ 44.36211657521423,
+ 500.0
+ ],
+ [
+ 116.069106911708602,
+ 44.355228925842496,
+ 500.0
+ ],
+ [
+ 116.174625712937768,
+ 44.334779959502384,
+ 500.0
+ ],
+ [
+ 116.273490306863565,
+ 44.30140453129615,
+ 500.0
+ ],
+ [
+ 116.362649033424361,
+ 44.256137391242611,
+ 500.0
+ ],
+ [
+ 116.439368215116772,
+ 44.200379174653143,
+ 500.0
+ ],
+ [
+ 116.501318111087571,
+ 44.135850725983133,
+ 500.0
+ ],
+ [
+ 116.546643341768558,
+ 44.064537541142059,
+ 500.0
+ ],
+ [
+ 116.57401574457144,
+ 43.988626425622641,
+ 500.0
+ ],
+ [
+ 116.582668553097818,
+ 43.910436661150527,
+ 500.0
+ ],
+ [
+ 116.572411677209743,
+ 43.832348053774396,
+ 500.0
+ ],
+ [
+ 116.543628635454837,
+ 43.756728212506175,
+ 500.0
+ ],
+ [
+ 116.497256313740124,
+ 43.685861297231909,
+ 500.0
+ ],
+ [
+ 116.434749177740031,
+ 43.621880298273304,
+ 500.0
+ ],
+ [
+ 116.358029855719025,
+ 43.566704688549144,
+ 500.0
+ ],
+ [
+ 116.269428154191701,
+ 43.521985041530449,
+ 500.0
+ ],
+ [
+ 116.171610602564016,
+ 43.489055949266366,
+ 500.0
+ ],
+ [
+ 116.067502580615439,
+ 43.468898315546987,
+ 500.0
+ ],
+ [
+ 115.960205,
+ 43.462111846323147,
+ 500.0
+ ],
+ [
+ 115.852907419384564,
+ 43.468898315546987,
+ 500.0
+ ],
+ [
+ 115.748799397435988,
+ 43.489055949266366,
+ 500.0
+ ],
+ [
+ 115.650981845808303,
+ 43.521985041530449,
+ 500.0
+ ],
+ [
+ 115.562380144280979,
+ 43.566704688549144,
+ 500.0
+ ],
+ [
+ 115.485660822259973,
+ 43.621880298273304,
+ 500.0
+ ],
+ [
+ 115.42315368625988,
+ 43.685861297231909,
+ 500.0
+ ],
+ [
+ 115.376781364545167,
+ 43.756728212506175,
+ 500.0
+ ],
+ [
+ 115.347998322790261,
+ 43.832348053774396,
+ 500.0
+ ],
+ [
+ 115.337741446902186,
+ 43.910436661150527,
+ 500.0
+ ],
+ [
+ 115.346394255428564,
+ 43.988626425622641,
+ 500.0
+ ],
+ [
+ 115.373766658231446,
+ 44.064537541142059,
+ 500.0
+ ],
+ [
+ 115.419091888912433,
+ 44.135850725983133,
+ 500.0
+ ],
+ [
+ 115.481041784883232,
+ 44.200379174653143,
+ 500.0
+ ],
+ [
+ 115.557760966575643,
+ 44.256137391242611,
+ 500.0
+ ],
+ [
+ 115.646919693136439,
+ 44.30140453129615,
+ 500.0
+ ],
+ [
+ 115.745784287062236,
+ 44.334779959502384,
+ 500.0
+ ],
+ [
+ 115.851303088291402,
+ 44.355228925842496,
+ 500.0
+ ],
+ [
+ 115.960205,
+ 44.36211657521423,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001341,
+ "name": "Longjia Airport",
+ "country": "CN",
+ "city": "Changchun Shi",
+ "height": 500,
+ "level": 2,
+ "lat": "43.99551",
+ "lng": "125.687466",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.687466,
+ 44.445487981365659,
+ 500.0
+ ],
+ [
+ 125.796522652153485,
+ 44.438600281862129,
+ 500.0
+ ],
+ [
+ 125.902191168939851,
+ 44.41815118061389,
+ 500.0
+ ],
+ [
+ 126.001195621959326,
+ 44.384775576937393,
+ 500.0
+ ],
+ [
+ 126.090479894963124,
+ 44.339508287358889,
+ 500.0
+ ],
+ [
+ 126.167306390376169,
+ 44.283750026250431,
+ 500.0
+ ],
+ [
+ 126.229342114722442,
+ 44.219221717956614,
+ 500.0
+ ],
+ [
+ 126.274729199881008,
+ 44.147908926967908,
+ 500.0
+ ],
+ [
+ 126.302137818369516,
+ 44.071998505103963,
+ 500.0
+ ],
+ [
+ 126.31080038568426,
+ 43.993809749827946,
+ 500.0
+ ],
+ [
+ 126.300526830077004,
+ 43.915722447669346,
+ 500.0
+ ],
+ [
+ 126.271701486100724,
+ 43.84010415244223,
+ 500.0
+ ],
+ [
+ 126.225262791696153,
+ 43.769238937025257,
+ 500.0
+ ],
+ [
+ 126.162667422463358,
+ 43.705259680618063,
+ 500.0
+ ],
+ [
+ 126.085840785583557,
+ 43.650085731523028,
+ 500.0
+ ],
+ [
+ 125.997115940726658,
+ 43.605367537434375,
+ 500.0
+ ],
+ [
+ 125.899163047822313,
+ 43.572439576133618,
+ 500.0
+ ],
+ [
+ 125.794911397990461,
+ 43.552282660268673,
+ 500.0
+ ],
+ [
+ 125.687466,
+ 43.545496437083351,
+ 500.0
+ ],
+ [
+ 125.58002060200954,
+ 43.552282660268673,
+ 500.0
+ ],
+ [
+ 125.475768952177688,
+ 43.572439576133618,
+ 500.0
+ ],
+ [
+ 125.377816059273343,
+ 43.605367537434375,
+ 500.0
+ ],
+ [
+ 125.289091214416445,
+ 43.650085731523028,
+ 500.0
+ ],
+ [
+ 125.212264577536644,
+ 43.705259680618063,
+ 500.0
+ ],
+ [
+ 125.149669208303848,
+ 43.769238937025257,
+ 500.0
+ ],
+ [
+ 125.103230513899277,
+ 43.84010415244223,
+ 500.0
+ ],
+ [
+ 125.074405169922997,
+ 43.915722447669346,
+ 500.0
+ ],
+ [
+ 125.064131614315741,
+ 43.993809749827946,
+ 500.0
+ ],
+ [
+ 125.072794181630485,
+ 44.071998505103963,
+ 500.0
+ ],
+ [
+ 125.100202800118993,
+ 44.147908926967908,
+ 500.0
+ ],
+ [
+ 125.145589885277559,
+ 44.219221717956614,
+ 500.0
+ ],
+ [
+ 125.207625609623832,
+ 44.283750026250431,
+ 500.0
+ ],
+ [
+ 125.284452105036877,
+ 44.339508287358889,
+ 500.0
+ ],
+ [
+ 125.373736378040675,
+ 44.384775576937393,
+ 500.0
+ ],
+ [
+ 125.47274083106015,
+ 44.41815118061389,
+ 500.0
+ ],
+ [
+ 125.578409347846517,
+ 44.438600281862129,
+ 500.0
+ ],
+ [
+ 125.687466,
+ 44.445487981365659,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1793,
+ "name": "Longjia Airport",
+ "country": "CN",
+ "city": "Changchun Shi",
+ "height": 0,
+ "level": 2,
+ "lat": "43.9693824664362",
+ "lng": "125.639011195836",
+ "radius": 13562,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.588328566,
+ 43.961882708200001,
+ 0.0
+ ],
+ [
+ 125.484970018,
+ 43.918635946199998,
+ 0.0
+ ],
+ [
+ 125.546812857,
+ 43.867078702100002,
+ 0.0
+ ],
+ [
+ 125.623475015,
+ 43.9320784242,
+ 0.0
+ ],
+ [
+ 125.663636227,
+ 43.923247535599998,
+ 0.0
+ ],
+ [
+ 125.686617318,
+ 43.924480088499998,
+ 0.0
+ ],
+ [
+ 125.708375727,
+ 43.929950476,
+ 0.0
+ ],
+ [
+ 125.757471519,
+ 43.955978852599998,
+ 0.0
+ ],
+ [
+ 125.785684262,
+ 43.982667191499999,
+ 0.0
+ ],
+ [
+ 125.79124905499999,
+ 44.0153353237,
+ 0.0
+ ],
+ [
+ 125.78507479,
+ 44.031328793299998,
+ 0.0
+ ],
+ [
+ 125.588328566,
+ 43.961882708200001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1793,
+ "name": "Longjia Airport",
+ "country": "CN",
+ "city": "Changchun Shi",
+ "height": 0,
+ "level": 2,
+ "lat": "44.0257263401347",
+ "lng": "125.732544476719",
+ "radius": 13545,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.886702169,
+ 44.076366956500003,
+ 0.0
+ ],
+ [
+ 125.824841766,
+ 44.127920583399998,
+ 0.0
+ ],
+ [
+ 125.746547035,
+ 44.062922778699999,
+ 0.0
+ ],
+ [
+ 125.704508886,
+ 44.072192234500001,
+ 0.0
+ ],
+ [
+ 125.68148944399999,
+ 44.070789212199998,
+ 0.0
+ ],
+ [
+ 125.659763212,
+ 44.065149193800004,
+ 0.0
+ ],
+ [
+ 125.610853856,
+ 44.037350294699998,
+ 0.0
+ ],
+ [
+ 125.58506780099999,
+ 44.010489695899999,
+ 0.0
+ ],
+ [
+ 125.58017814599999,
+ 43.994268383600001,
+ 0.0
+ ],
+ [
+ 125.588328566,
+ 43.961882708200001,
+ 0.0
+ ],
+ [
+ 125.78507479,
+ 44.031328793299998,
+ 0.0
+ ],
+ [
+ 125.886702169,
+ 44.076366956500003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1793,
+ "name": "Longjia Airport",
+ "country": "CN",
+ "city": "Changchun Shi",
+ "height": 120,
+ "level": 2,
+ "lat": "43.9967436462253",
+ "lng": "125.684613173692",
+ "radius": 23752,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.81487501,
+ 44.188778258799999,
+ 120.0
+ ],
+ [
+ 125.972639201,
+ 44.049050862400001,
+ 120.0
+ ],
+ [
+ 125.553845126,
+ 43.805035789199998,
+ 120.0
+ ],
+ [
+ 125.396728382,
+ 43.944763186700001,
+ 120.0
+ ],
+ [
+ 125.81487501,
+ 44.188778258799999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295729,
+ "name": "Plastun Airport",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "44.8150210416646",
+ "lng": "136.291401741976",
+ "radius": 3757,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 136.254759277,
+ 44.836612475400003,
+ 0.0
+ ],
+ [
+ 136.33577262899999,
+ 44.802746990199999,
+ 0.0
+ ],
+ [
+ 136.328052902,
+ 44.7934487574,
+ 0.0
+ ],
+ [
+ 136.247032518,
+ 44.827315286100003,
+ 0.0
+ ],
+ [
+ 136.254759277,
+ 44.836612475400003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295729,
+ "name": "Plastun Airport",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "44.7612529498737",
+ "lng": "136.419912151607",
+ "radius": 4606,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 136.378538923,
+ 44.790474280600002,
+ 0.0
+ ],
+ [
+ 136.47825616899999,
+ 44.761775940600003,
+ 0.0
+ ],
+ [
+ 136.447399947,
+ 44.724711528100002,
+ 0.0
+ ],
+ [
+ 136.363886837,
+ 44.772840643800002,
+ 0.0
+ ],
+ [
+ 136.378538923,
+ 44.790474280600002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295729,
+ "name": "Plastun Airport",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "44.8687523578837",
+ "lng": "136.162743461308",
+ "radius": 4606,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 136.135056493,
+ 44.905241186399998,
+ 0.0
+ ],
+ [
+ 136.21887841099999,
+ 44.857214213799999,
+ 0.0
+ ],
+ [
+ 136.204233088,
+ 44.839577803600001,
+ 0.0
+ ],
+ [
+ 136.10429695,
+ 44.86812813,
+ 0.0
+ ],
+ [
+ 136.135056493,
+ 44.905241186399998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295729,
+ "name": "Plastun Airport",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "44.7892861354146",
+ "lng": "136.352983274785",
+ "radius": 2021,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 136.33577262899999,
+ 44.802746990199999,
+ 0.0
+ ],
+ [
+ 136.378538923,
+ 44.790474280600002,
+ 0.0
+ ],
+ [
+ 136.363886837,
+ 44.772840643800002,
+ 0.0
+ ],
+ [
+ 136.328052902,
+ 44.7934487574,
+ 0.0
+ ],
+ [
+ 136.33577262899999,
+ 44.802746990199999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295729,
+ "name": "Plastun Airport",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "44.8407743345971",
+ "lng": "136.229809233051",
+ "radius": 2020,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 136.21887841099999,
+ 44.857214213799999,
+ 0.0
+ ],
+ [
+ 136.254759277,
+ 44.836612475400003,
+ 0.0
+ ],
+ [
+ 136.247032518,
+ 44.827315286100003,
+ 0.0
+ ],
+ [
+ 136.204233088,
+ 44.839577803600001,
+ 0.0
+ ],
+ [
+ 136.21887841099999,
+ 44.857214213799999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295730,
+ "name": "Plastun Airport",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "44.8156115890629",
+ "lng": "136.291892293632",
+ "radius": 4699,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 136.30943373,
+ 44.8492572583,
+ 0.0
+ ],
+ [
+ 136.33344062,
+ 44.838304908399998,
+ 0.0
+ ],
+ [
+ 136.34046099599999,
+ 44.832668269199999,
+ 0.0
+ ],
+ [
+ 136.348852542,
+ 44.818944955500001,
+ 0.0
+ ],
+ [
+ 136.349858098999988,
+ 44.811458486299998,
+ 0.0
+ ],
+ [
+ 136.348647661,
+ 44.8039873046,
+ 0.0
+ ],
+ [
+ 136.345274955,
+ 44.796857868300002,
+ 0.0
+ ],
+ [
+ 136.332722829,
+ 44.784841239199999,
+ 0.0
+ ],
+ [
+ 136.31437391899999,
+ 44.777484250900002,
+ 0.0
+ ],
+ [
+ 136.303991322,
+ 44.7759886411,
+ 0.0
+ ],
+ [
+ 136.283055125,
+ 44.777686599100001,
+ 0.0
+ ],
+ [
+ 136.24942721,
+ 44.791740906699999,
+ 0.0
+ ],
+ [
+ 136.23717636399999,
+ 44.803913879,
+ 0.0
+ ],
+ [
+ 136.23295905399999,
+ 44.818569969899997,
+ 0.0
+ ],
+ [
+ 136.234152146000014,
+ 44.826042580200003,
+ 0.0
+ ],
+ [
+ 136.242887351,
+ 44.839657937299997,
+ 0.0
+ ],
+ [
+ 136.250048787,
+ 44.845205182900003,
+ 0.0
+ ],
+ [
+ 136.268408419,
+ 44.85257576,
+ 0.0
+ ],
+ [
+ 136.278803356,
+ 44.8540764555,
+ 0.0
+ ],
+ [
+ 136.29976803400001,
+ 44.8523830241,
+ 0.0
+ ],
+ [
+ 136.30943373,
+ 44.8492572583,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025589,
+ "name": "昭苏天马机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "43.0859",
+ "lng": "81.2195",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.2195,
+ 43.535949878301395,
+ 500.0
+ ],
+ [
+ 81.326904171425369,
+ 43.529062703639347,
+ 500.0
+ ],
+ [
+ 81.430973853361579,
+ 43.508615010806977,
+ 500.0
+ ],
+ [
+ 81.528484701466311,
+ 43.475241224935914,
+ 500.0
+ ],
+ [
+ 81.616428179474426,
+ 43.429975449401567,
+ 500.0
+ ],
+ [
+ 81.692108550719965,
+ 43.374217551092876,
+ 500.0
+ ],
+ [
+ 81.753227561505398,
+ 43.309687598507423,
+ 500.0
+ ],
+ [
+ 81.797953930015055,
+ 43.238370422338683,
+ 500.0
+ ],
+ [
+ 81.824975623865612,
+ 43.162452380292223,
+ 500.0
+ ],
+ [
+ 81.833533813442855,
+ 43.084252604987284,
+ 500.0
+ ],
+ [
+ 81.823438249309859,
+ 43.006151097533454,
+ 500.0
+ ],
+ [
+ 81.795064568673652,
+ 42.930516010243323,
+ 500.0
+ ],
+ [
+ 81.749334648201483,
+ 42.859632356727957,
+ 500.0
+ ],
+ [
+ 81.687681571262786,
+ 42.795634216279836,
+ 500.0
+ ],
+ [
+ 81.612001070407416,
+ 42.740442282261775,
+ 500.0
+ ],
+ [
+ 81.524591459978822,
+ 42.695708359526868,
+ 500.0
+ ],
+ [
+ 81.428084118823591,
+ 42.66276815860715,
+ 500.0
+ ],
+ [
+ 81.325366553282848,
+ 42.642603475315042,
+ 500.0
+ ],
+ [
+ 81.2195,
+ 42.635814590139965,
+ 500.0
+ ],
+ [
+ 81.113633446717145,
+ 42.642603475315042,
+ 500.0
+ ],
+ [
+ 81.010915881176402,
+ 42.66276815860715,
+ 500.0
+ ],
+ [
+ 80.914408540021171,
+ 42.695708359526868,
+ 500.0
+ ],
+ [
+ 80.826998929592577,
+ 42.740442282261775,
+ 500.0
+ ],
+ [
+ 80.751318428737207,
+ 42.795634216279836,
+ 500.0
+ ],
+ [
+ 80.68966535179851,
+ 42.859632356727957,
+ 500.0
+ ],
+ [
+ 80.643935431326341,
+ 42.930516010243323,
+ 500.0
+ ],
+ [
+ 80.615561750690134,
+ 43.006151097533454,
+ 500.0
+ ],
+ [
+ 80.605466186557138,
+ 43.084252604987284,
+ 500.0
+ ],
+ [
+ 80.614024376134381,
+ 43.162452380292223,
+ 500.0
+ ],
+ [
+ 80.641046069984938,
+ 43.238370422338683,
+ 500.0
+ ],
+ [
+ 80.685772438494595,
+ 43.309687598507423,
+ 500.0
+ ],
+ [
+ 80.746891449280028,
+ 43.374217551092876,
+ 500.0
+ ],
+ [
+ 80.822571820525567,
+ 43.429975449401567,
+ 500.0
+ ],
+ [
+ 80.910515298533682,
+ 43.475241224935914,
+ 500.0
+ ],
+ [
+ 81.008026146638414,
+ 43.508615010806977,
+ 500.0
+ ],
+ [
+ 81.112095828574624,
+ 43.529062703639347,
+ 500.0
+ ],
+ [
+ 81.2195,
+ 43.535949878301395,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025588,
+ "name": "昭苏天马机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "43.1109378731816",
+ "lng": "81.2848644907055",
+ "radius": 13099,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.330582529200001,
+ 43.103420143299999,
+ 0.0
+ ],
+ [
+ 81.444921839200006,
+ 43.126082740299999,
+ 0.0
+ ],
+ [
+ 81.408642976199999,
+ 43.186594744399997,
+ 0.0
+ ],
+ [
+ 81.308201035600007,
+ 43.1407774256,
+ 0.0
+ ],
+ [
+ 81.270335721699993,
+ 43.161221631799997,
+ 0.0
+ ],
+ [
+ 81.248190667100005,
+ 43.165041127800002,
+ 0.0
+ ],
+ [
+ 81.203651908699996,
+ 43.159768279,
+ 0.0
+ ],
+ [
+ 81.158504829899996,
+ 43.142683392499997,
+ 0.0
+ ],
+ [
+ 81.14300902799999,
+ 43.130532760500003,
+ 0.0
+ ],
+ [
+ 81.1323562858,
+ 43.115868295799999,
+ 0.0
+ ],
+ [
+ 81.128092398299998,
+ 43.083103402500001,
+ 0.0
+ ],
+ [
+ 81.330582529200001,
+ 43.103420143299999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025588,
+ "name": "昭苏天马机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "43.075425221692",
+ "lng": "81.1739048228062",
+ "radius": 13098,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.013984171100006,
+ 43.060373215799999,
+ 0.0
+ ],
+ [
+ 81.050261030200005,
+ 42.999870279200003,
+ 0.0
+ ],
+ [
+ 81.150425980199998,
+ 43.045874954200002,
+ 0.0
+ ],
+ [
+ 81.168243472,
+ 43.033321170500002,
+ 0.0
+ ],
+ [
+ 81.210333436400006,
+ 43.021637539099999,
+ 0.0
+ ],
+ [
+ 81.233026934600005,
+ 43.022125602199999,
+ 0.0
+ ],
+ [
+ 81.278763446799999,
+ 43.034556972799997,
+ 0.0
+ ],
+ [
+ 81.315432256500003,
+ 43.0560314178,
+ 0.0
+ ],
+ [
+ 81.331316675,
+ 43.086830563699998,
+ 0.0
+ ],
+ [
+ 81.330582529200001,
+ 43.103420143299999,
+ 0.0
+ ],
+ [
+ 81.128092398299998,
+ 43.083103402500001,
+ 0.0
+ ],
+ [
+ 81.013984171100006,
+ 43.060373215799999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025588,
+ "name": "昭苏天马机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "43.0928797976862",
+ "lng": "81.229568114315",
+ "radius": 23315,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.041284377500006,
+ 42.934729949100003,
+ 120.0
+ ],
+ [
+ 80.942562420900003,
+ 43.099475672200001,
+ 120.0
+ ],
+ [
+ 81.417596003200003,
+ 43.251494602500003,
+ 120.0
+ ],
+ [
+ 81.516563319100001,
+ 43.086748879799998,
+ 120.0
+ ],
+ [
+ 81.041284377500006,
+ 42.934729949100003,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001338,
+ "name": "那拉提",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "43.431666666667",
+ "lng": "83.3775",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.3775,
+ 43.881689226537979,
+ 500.0
+ ],
+ [
+ 83.485523165514138,
+ 43.874801858007665,
+ 500.0
+ ],
+ [
+ 83.59019175048563,
+ 43.85435364598257,
+ 500.0
+ ],
+ [
+ 83.688262091188079,
+ 43.820979193750972,
+ 500.0
+ ],
+ [
+ 83.77670783062851,
+ 43.775712872595392,
+ 500.0
+ ],
+ [
+ 83.852817552122488,
+ 43.719954867705006,
+ 500.0
+ ],
+ [
+ 83.914279987734531,
+ 43.655425568884645,
+ 500.0
+ ],
+ [
+ 83.959253894025792,
+ 43.584110082079242,
+ 500.0
+ ],
+ [
+ 83.986420568844068,
+ 43.508194949931173,
+ 500.0
+ ],
+ [
+ 83.9950178984449,
+ 43.429999365973025,
+ 500.0
+ ],
+ [
+ 83.984855695170609,
+ 43.351903249335081,
+ 500.0
+ ],
+ [
+ 83.956312849824286,
+ 43.276274525777616,
+ 500.0
+ ],
+ [
+ 83.910317439361734,
+ 43.2053978534965,
+ 500.0
+ ],
+ [
+ 83.84831138248542,
+ 43.141406858733156,
+ 500.0
+ ],
+ [
+ 83.772201527016691,
+ 43.086221727269766,
+ 500.0
+ ],
+ [
+ 83.684299203579258,
+ 43.041493751922985,
+ 500.0
+ ],
+ [
+ 83.587250320519175,
+ 43.008558178183094,
+ 500.0
+ ],
+ [
+ 83.483958040050467,
+ 42.988396431000645,
+ 500.0
+ ],
+ [
+ 83.3775,
+ 42.981608552006179,
+ 500.0
+ ],
+ [
+ 83.271041959949528,
+ 42.988396431000645,
+ 500.0
+ ],
+ [
+ 83.167749679480821,
+ 43.008558178183094,
+ 500.0
+ ],
+ [
+ 83.070700796420738,
+ 43.041493751922985,
+ 500.0
+ ],
+ [
+ 82.982798472983305,
+ 43.086221727269766,
+ 500.0
+ ],
+ [
+ 82.906688617514575,
+ 43.141406858733156,
+ 500.0
+ ],
+ [
+ 82.844682560638262,
+ 43.2053978534965,
+ 500.0
+ ],
+ [
+ 82.798687150175709,
+ 43.276274525777616,
+ 500.0
+ ],
+ [
+ 82.770144304829387,
+ 43.351903249335081,
+ 500.0
+ ],
+ [
+ 82.759982101555096,
+ 43.429999365973025,
+ 500.0
+ ],
+ [
+ 82.768579431155928,
+ 43.508194949931173,
+ 500.0
+ ],
+ [
+ 82.795746105974203,
+ 43.584110082079242,
+ 500.0
+ ],
+ [
+ 82.840720012265464,
+ 43.655425568884645,
+ 500.0
+ ],
+ [
+ 82.902182447877507,
+ 43.719954867705006,
+ 500.0
+ ],
+ [
+ 82.978292169371485,
+ 43.775712872595392,
+ 500.0
+ ],
+ [
+ 83.066737908811916,
+ 43.820979193750972,
+ 500.0
+ ],
+ [
+ 83.164808249514365,
+ 43.85435364598257,
+ 500.0
+ ],
+ [
+ 83.269476834485857,
+ 43.874801858007665,
+ 500.0
+ ],
+ [
+ 83.3775,
+ 43.881689226537979,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32778,
+ "name": "那拉提",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "43.4285245594596",
+ "lng": "83.3164717032594",
+ "radius": 12951,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.278880445300004,
+ 43.445911343799999,
+ 0.0
+ ],
+ [
+ 83.160575041200005,
+ 43.455978405300002,
+ 0.0
+ ],
+ [
+ 83.1674393256,
+ 43.385588204,
+ 0.0
+ ],
+ [
+ 83.282397884299996,
+ 43.407273441699999,
+ 0.0
+ ],
+ [
+ 83.305464692800001,
+ 43.382362888099998,
+ 0.0
+ ],
+ [
+ 83.324188601800003,
+ 43.372860925,
+ 0.0
+ ],
+ [
+ 83.368400144500001,
+ 43.365768691200003,
+ 0.0
+ ],
+ [
+ 83.436356608400004,
+ 43.378131164700001,
+ 0.0
+ ],
+ [
+ 83.467754136699995,
+ 43.4018512484,
+ 0.0
+ ],
+ [
+ 83.476091332899998,
+ 43.417305007800003,
+ 0.0
+ ],
+ [
+ 83.278880445300004,
+ 43.445911343799999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32778,
+ "name": "那拉提",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "43.4346281331325",
+ "lng": "83.4385225841319",
+ "radius": 12950,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.594406000399999,
+ 43.407344423399998,
+ 0.0
+ ],
+ [
+ 83.587561005,
+ 43.477745573100002,
+ 0.0
+ ],
+ [
+ 83.4725765516,
+ 43.459405249600003,
+ 0.0
+ ],
+ [
+ 83.450317126200005,
+ 43.4807208418,
+ 0.0
+ ],
+ [
+ 83.431171888400002,
+ 43.489806309400002,
+ 0.0
+ ],
+ [
+ 83.386587879700002,
+ 43.495897427,
+ 0.0
+ ],
+ [
+ 83.358262449500003,
+ 43.4942311836,
+ 0.0
+ ],
+ [
+ 83.318526952599996,
+ 43.4851560221,
+ 0.0
+ ],
+ [
+ 83.300685542500005,
+ 43.4747683979,
+ 0.0
+ ],
+ [
+ 83.287163347900005,
+ 43.461382206400003,
+ 0.0
+ ],
+ [
+ 83.278880445300004,
+ 43.445911343799999,
+ 0.0
+ ],
+ [
+ 83.476091332899998,
+ 43.417305007800003,
+ 0.0
+ ],
+ [
+ 83.594406000399999,
+ 43.407344423399998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32778,
+ "name": "那拉提",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "43.430693444347",
+ "lng": "83.377597280217",
+ "radius": 23397,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.622696287799997,
+ 43.543177209500001,
+ 120.0
+ ],
+ [
+ 83.652539785299993,
+ 43.364622353500003,
+ 120.0
+ ],
+ [
+ 83.132445282299997,
+ 43.318794306299999,
+ 120.0
+ ],
+ [
+ 83.102624373899999,
+ 43.497349162299997,
+ 120.0
+ ],
+ [
+ 83.622696287799997,
+ 43.543177209500001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9373,
+ "name": "Dongjiang:tulufan",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "42.97",
+ "lng": "89.18",
+ "radius": 5000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.18,
+ 43.015007502238703,
+ 0.0
+ ],
+ [
+ 89.190650383205266,
+ 43.014323244554639,
+ 0.0
+ ],
+ [
+ 89.200976468705022,
+ 43.012291306616298,
+ 0.0
+ ],
+ [
+ 89.210663896030397,
+ 43.008973555339296,
+ 0.0
+ ],
+ [
+ 89.219417867096766,
+ 43.004470994213733,
+ 0.0
+ ],
+ [
+ 89.22697215789762,
+ 42.998920670736503,
+ 0.0
+ ],
+ [
+ 89.233097236349877,
+ 42.992491483338448,
+ 0.0
+ ],
+ [
+ 89.237607236182583,
+ 42.98537901872254,
+ 0.0
+ ],
+ [
+ 89.240365575058888,
+ 42.977799580203119,
+ 0.0
+ ],
+ [
+ 89.241289049831181,
+ 42.969983591977844,
+ 0.0
+ ],
+ [
+ 89.240350291164262,
+ 42.962168582564715,
+ 0.0
+ ],
+ [
+ 89.237578511852391,
+ 42.954591962422917,
+ 0.0
+ ],
+ [
+ 89.233058536155852,
+ 42.947483815813108,
+ 0.0
+ ],
+ [
+ 89.226928149648685,
+ 42.941059925235436,
+ 0.0
+ ],
+ [
+ 89.219373858835027,
+ 42.935515238518875,
+ 0.0
+ ],
+ [
+ 89.210625195803914,
+ 42.931017974217731,
+ 0.0
+ ],
+ [
+ 89.20094774433791,
+ 42.92770454095298,
+ 0.0
+ ],
+ [
+ 89.190635099286553,
+ 42.925675421397692,
+ 0.0
+ ],
+ [
+ 89.18,
+ 42.924992142527934,
+ 0.0
+ ],
+ [
+ 89.169364900713461,
+ 42.925675421397692,
+ 0.0
+ ],
+ [
+ 89.159052255662104,
+ 42.92770454095298,
+ 0.0
+ ],
+ [
+ 89.1493748041961,
+ 42.931017974217731,
+ 0.0
+ ],
+ [
+ 89.140626141164987,
+ 42.935515238518875,
+ 0.0
+ ],
+ [
+ 89.133071850351328,
+ 42.941059925235436,
+ 0.0
+ ],
+ [
+ 89.126941463844162,
+ 42.947483815813108,
+ 0.0
+ ],
+ [
+ 89.122421488147623,
+ 42.954591962422917,
+ 0.0
+ ],
+ [
+ 89.119649708835752,
+ 42.962168582564715,
+ 0.0
+ ],
+ [
+ 89.118710950168833,
+ 42.969983591977844,
+ 0.0
+ ],
+ [
+ 89.119634424941125,
+ 42.977799580203119,
+ 0.0
+ ],
+ [
+ 89.12239276381743,
+ 42.98537901872254,
+ 0.0
+ ],
+ [
+ 89.126902763650136,
+ 42.992491483338448,
+ 0.0
+ ],
+ [
+ 89.133027842102393,
+ 42.998920670736503,
+ 0.0
+ ],
+ [
+ 89.140582132903248,
+ 43.004470994213733,
+ 0.0
+ ],
+ [
+ 89.149336103969617,
+ 43.008973555339296,
+ 0.0
+ ],
+ [
+ 89.159023531294991,
+ 43.012291306616298,
+ 0.0
+ ],
+ [
+ 89.169349616794747,
+ 43.014323244554639,
+ 0.0
+ ],
+ [
+ 89.18,
+ 43.015007502238703,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001389,
+ "name": "交河",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "43.030555555556",
+ "lng": "89.0975",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.0975,
+ 43.480609804875378,
+ 500.0
+ ],
+ [
+ 89.204806115419373,
+ 43.473722660622208,
+ 500.0
+ ],
+ [
+ 89.308780923593829,
+ 43.453275049107745,
+ 500.0
+ ],
+ [
+ 89.406203140254561,
+ 43.419901367179961,
+ 500.0
+ ],
+ [
+ 89.494067051935261,
+ 43.374635675685589,
+ 500.0
+ ],
+ [
+ 89.569679405824047,
+ 43.318877790993199,
+ 500.0
+ ],
+ [
+ 89.630744009967714,
+ 43.254347730617631,
+ 500.0
+ ],
+ [
+ 89.675431160891478,
+ 43.183030281603592,
+ 500.0
+ ],
+ [
+ 89.702429883212616,
+ 43.107111772375141,
+ 500.0
+ ],
+ [
+ 89.710981868065616,
+ 43.0289113259945,
+ 500.0
+ ],
+ [
+ 89.700896856740485,
+ 42.950808956737092,
+ 500.0
+ ],
+ [
+ 89.672549971497133,
+ 42.875172853070175,
+ 500.0
+ ],
+ [
+ 89.626862107158402,
+ 42.80428808524865,
+ 500.0
+ ],
+ [
+ 89.565264947681243,
+ 42.740288804730596,
+ 500.0
+ ],
+ [
+ 89.489652464865785,
+ 42.685095785708441,
+ 500.0
+ ],
+ [
+ 89.402320910991477,
+ 42.640360914562407,
+ 500.0
+ ],
+ [
+ 89.305899362969967,
+ 42.607419975862697,
+ 500.0
+ ],
+ [
+ 89.203272846644367,
+ 42.587254824462896,
+ 500.0
+ ],
+ [
+ 89.0975,
+ 42.580465778877681,
+ 500.0
+ ],
+ [
+ 88.991727153355626,
+ 42.587254824462896,
+ 500.0
+ ],
+ [
+ 88.889100637030026,
+ 42.607419975862697,
+ 500.0
+ ],
+ [
+ 88.792679089008516,
+ 42.640360914562407,
+ 500.0
+ ],
+ [
+ 88.705347535134209,
+ 42.685095785708441,
+ 500.0
+ ],
+ [
+ 88.62973505231875,
+ 42.740288804730596,
+ 500.0
+ ],
+ [
+ 88.568137892841591,
+ 42.80428808524865,
+ 500.0
+ ],
+ [
+ 88.52245002850286,
+ 42.875172853070175,
+ 500.0
+ ],
+ [
+ 88.494103143259508,
+ 42.950808956737092,
+ 500.0
+ ],
+ [
+ 88.484018131934377,
+ 43.0289113259945,
+ 500.0
+ ],
+ [
+ 88.492570116787377,
+ 43.107111772375141,
+ 500.0
+ ],
+ [
+ 88.519568839108516,
+ 43.183030281603592,
+ 500.0
+ ],
+ [
+ 88.564255990032279,
+ 43.254347730617631,
+ 500.0
+ ],
+ [
+ 88.625320594175946,
+ 43.318877790993199,
+ 500.0
+ ],
+ [
+ 88.700932948064732,
+ 43.374635675685589,
+ 500.0
+ ],
+ [
+ 88.788796859745432,
+ 43.419901367179961,
+ 500.0
+ ],
+ [
+ 88.886219076406164,
+ 43.453275049107745,
+ 500.0
+ ],
+ [
+ 88.99019388458062,
+ 43.473722660622208,
+ 500.0
+ ],
+ [
+ 89.0975,
+ 43.480609804875378,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32782,
+ "name": "交河",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "43.0307215604088",
+ "lng": "89.0385555657049",
+ "radius": 13156,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.998970047100002,
+ 43.050964739,
+ 0.0
+ ],
+ [
+ 88.884029809599994,
+ 43.066040584900001,
+ 0.0
+ ],
+ [
+ 88.884021022599995,
+ 42.995631042299998,
+ 0.0
+ ],
+ [
+ 88.999010522199995,
+ 43.008969617600002,
+ 0.0
+ ],
+ [
+ 89.018711657,
+ 42.986340371399997,
+ 0.0
+ ],
+ [
+ 89.036627492099996,
+ 42.9761564103,
+ 0.0
+ ],
+ [
+ 89.057530903100002,
+ 42.969708216900003,
+ 0.0
+ ],
+ [
+ 89.118333333300001,
+ 42.9674340117,
+ 0.0
+ ],
+ [
+ 89.152374216200002,
+ 42.973222971,
+ 0.0
+ ],
+ [
+ 89.171578775900002,
+ 42.982059644400003,
+ 0.0
+ ],
+ [
+ 89.197612841700007,
+ 43.0089046091,
+ 0.0
+ ],
+ [
+ 88.998970047100002,
+ 43.050964739,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32782,
+ "name": "交河",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "43.0307206561741",
+ "lng": "89.1591176497623",
+ "radius": 13208,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.314321842799998,
+ 42.9956358974,
+ 0.0
+ ],
+ [
+ 89.314313062300002,
+ 43.0660358039,
+ 0.0
+ ],
+ [
+ 89.197655387799998,
+ 43.0510311094,
+ 0.0
+ ],
+ [
+ 89.178935525399993,
+ 43.074000827799999,
+ 0.0
+ ],
+ [
+ 89.1614211574,
+ 43.084576720299999,
+ 0.0
+ ],
+ [
+ 89.118336549700004,
+ 43.094232571100001,
+ 0.0
+ ],
+ [
+ 89.08,
+ 43.094232654899997,
+ 0.0
+ ],
+ [
+ 89.042770425699999,
+ 43.087629560300002,
+ 0.0
+ ],
+ [
+ 89.023903241300005,
+ 43.078376718900003,
+ 0.0
+ ],
+ [
+ 88.998970047100002,
+ 43.050964739,
+ 0.0
+ ],
+ [
+ 89.197612841700007,
+ 43.0089046091,
+ 0.0
+ ],
+ [
+ 89.314321842799998,
+ 42.9956358974,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32782,
+ "name": "交河",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "43.0302667734322",
+ "lng": "89.0991644760081",
+ "radius": 23764,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.364417522500005,
+ 43.120460884899998,
+ 120.0
+ ],
+ [
+ 89.364361354,
+ 42.940596568399997,
+ 120.0
+ ],
+ [
+ 88.833915563900007,
+ 42.940678684799998,
+ 120.0
+ ],
+ [
+ 88.833971732400002,
+ 43.1205430013,
+ 120.0
+ ],
+ [
+ 89.364417522500005,
+ 43.120460884899998,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32773,
+ "name": "赛乌素",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "43.4101498465649",
+ "lng": "112.145337496775",
+ "radius": 13174,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.275453607,
+ 43.338784941299998,
+ 0.0
+ ],
+ [
+ 112.308075188,
+ 43.402400109799999,
+ 0.0
+ ],
+ [
+ 112.193087343,
+ 43.417387993699997,
+ 0.0
+ ],
+ [
+ 112.185664883,
+ 43.445604657399997,
+ 0.0
+ ],
+ [
+ 112.173759975,
+ 43.459775492399999,
+ 0.0
+ ],
+ [
+ 112.137120209,
+ 43.4791701041,
+ 0.0
+ ],
+ [
+ 112.102099947,
+ 43.487509257,
+ 0.0
+ ],
+ [
+ 112.06160375499999,
+ 43.491245775199999,
+ 0.0
+ ],
+ [
+ 112.039380364,
+ 43.487302953099999,
+ 0.0
+ ],
+ [
+ 112.00280862699999,
+ 43.4678359826,
+ 0.0
+ ],
+ [
+ 112.175420084,
+ 43.377079966399997,
+ 0.0
+ ],
+ [
+ 112.275453607,
+ 43.338784941299998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32773,
+ "name": "赛乌素",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "43.4411323389858",
+ "lng": "112.035549899282",
+ "radius": 13356,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.00280862699999,
+ 43.4678359826,
+ 0.0
+ ],
+ [
+ 111.899492094,
+ 43.509537290499999,
+ 0.0
+ ],
+ [
+ 111.870247714,
+ 43.445942841899999,
+ 0.0
+ ],
+ [
+ 111.98521826699999,
+ 43.430974662899999,
+ 0.0
+ ],
+ [
+ 111.992714961,
+ 43.402664146699998,
+ 0.0
+ ],
+ [
+ 112.00464502299999,
+ 43.388509466599999,
+ 0.0
+ ],
+ [
+ 112.02120418,
+ 43.377078666099997,
+ 0.0
+ ],
+ [
+ 112.076244022,
+ 43.357488142100003,
+ 0.0
+ ],
+ [
+ 112.116688546,
+ 43.353732749,
+ 0.0
+ ],
+ [
+ 112.138868517,
+ 43.357659002200002,
+ 0.0
+ ],
+ [
+ 112.175420084,
+ 43.377079966399997,
+ 0.0
+ ],
+ [
+ 112.00280862699999,
+ 43.4678359826,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32773,
+ "name": "赛乌素",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "43.4228425688277",
+ "lng": "112.088866360171",
+ "radius": 23729,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.382165762,
+ 43.43589878,
+ 120.0
+ ],
+ [
+ 112.291563516,
+ 43.268534343600003,
+ 120.0
+ ],
+ [
+ 111.795586843,
+ 43.410295563,
+ 120.0
+ ],
+ [
+ 111.886401495,
+ 43.577659999200002,
+ 120.0
+ ],
+ [
+ 112.382165762,
+ 43.43589878,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001303,
+ "name": "赛乌素",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "43.423888888889",
+ "lng": "112.091944444444",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.091944444443996,
+ 43.873912063447825,
+ 500.0
+ ],
+ [
+ 112.199953564108768,
+ 43.86702469935306,
+ 500.0
+ ],
+ [
+ 112.304608559176089,
+ 43.84657649922103,
+ 500.0
+ ],
+ [
+ 112.402666204345849,
+ 43.813202062304669,
+ 500.0
+ ],
+ [
+ 112.49110054702885,
+ 43.767935753817845,
+ 500.0
+ ],
+ [
+ 112.567200526348131,
+ 43.712177751738629,
+ 500.0
+ ],
+ [
+ 112.628655169663247,
+ 43.647648438590849,
+ 500.0
+ ],
+ [
+ 112.673623459541915,
+ 43.576332914078939,
+ 500.0
+ ],
+ [
+ 112.700786845125947,
+ 43.500417716646901,
+ 500.0
+ ],
+ [
+ 112.709383287131047,
+ 43.422222038434001,
+ 500.0
+ ],
+ [
+ 112.699222596435021,
+ 43.34412580040923,
+ 500.0
+ ],
+ [
+ 112.670683589956013,
+ 43.268496933441817,
+ 500.0
+ ],
+ [
+ 112.624694203913151,
+ 43.197620103751603,
+ 500.0
+ ],
+ [
+ 112.562696156497211,
+ 43.133628947812952,
+ 500.0
+ ],
+ [
+ 112.486596043303223,
+ 43.078443662875237,
+ 500.0
+ ],
+ [
+ 112.39870489961308,
+ 43.033715553324434,
+ 500.0
+ ],
+ [
+ 112.301668304113335,
+ 43.000779875159061,
+ 500.0
+ ],
+ [
+ 112.198389063815696,
+ 42.980618061710125,
+ 500.0
+ ],
+ [
+ 112.091944444443996,
+ 42.973830160005917,
+ 500.0
+ ],
+ [
+ 111.985499825072296,
+ 42.980618061710125,
+ 500.0
+ ],
+ [
+ 111.882220584774657,
+ 43.000779875159061,
+ 500.0
+ ],
+ [
+ 111.785183989274913,
+ 43.033715553324434,
+ 500.0
+ ],
+ [
+ 111.697292845584769,
+ 43.078443662875237,
+ 500.0
+ ],
+ [
+ 111.621192732390782,
+ 43.133628947812952,
+ 500.0
+ ],
+ [
+ 111.559194684974841,
+ 43.197620103751603,
+ 500.0
+ ],
+ [
+ 111.513205298931979,
+ 43.268496933441817,
+ 500.0
+ ],
+ [
+ 111.484666292452971,
+ 43.34412580040923,
+ 500.0
+ ],
+ [
+ 111.474505601756945,
+ 43.422222038434001,
+ 500.0
+ ],
+ [
+ 111.483102043762045,
+ 43.500417716646901,
+ 500.0
+ ],
+ [
+ 111.510265429346077,
+ 43.576332914078939,
+ 500.0
+ ],
+ [
+ 111.555233719224745,
+ 43.647648438590849,
+ 500.0
+ ],
+ [
+ 111.616688362539861,
+ 43.712177751738629,
+ 500.0
+ ],
+ [
+ 111.692788341859142,
+ 43.767935753817845,
+ 500.0
+ ],
+ [
+ 111.781222684542143,
+ 43.813202062304669,
+ 500.0
+ ],
+ [
+ 111.879280329711904,
+ 43.84657649922103,
+ 500.0
+ ],
+ [
+ 111.983935324779225,
+ 43.86702469935306,
+ 500.0
+ ],
+ [
+ 112.091944444443996,
+ 43.873912063447825,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7372,
+ "name": "Tongliao Airport",
+ "country": "CN",
+ "city": "Tongliao",
+ "height": 0,
+ "level": 2,
+ "lat": "43.5147986610601",
+ "lng": "122.181290751978",
+ "radius": 13425,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.139088906,
+ 43.492438682299998,
+ 0.0
+ ],
+ [
+ 122.086660255,
+ 43.415500602800002,
+ 0.0
+ ],
+ [
+ 122.181153605,
+ 43.394062060400003,
+ 0.0
+ ],
+ [
+ 122.198369429,
+ 43.479013690400002,
+ 0.0
+ ],
+ [
+ 122.242100451,
+ 43.486770156399999,
+ 0.0
+ ],
+ [
+ 122.260586675,
+ 43.496549674699999,
+ 0.0
+ ],
+ [
+ 122.27496029,
+ 43.509465000699997,
+ 0.0
+ ],
+ [
+ 122.294448814,
+ 43.548230982900002,
+ 0.0
+ ],
+ [
+ 122.29725839,
+ 43.580861201899999,
+ 0.0
+ ],
+ [
+ 122.289862192,
+ 43.596571159900002,
+ 0.0
+ ],
+ [
+ 122.259836462,
+ 43.621281060199998,
+ 0.0
+ ],
+ [
+ 122.139088906,
+ 43.492438682299998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7372,
+ "name": "Tongliao Airport",
+ "country": "CN",
+ "city": "Tongliao",
+ "height": 0,
+ "level": 2,
+ "lat": "43.5989371429838",
+ "lng": "122.217591579413",
+ "radius": 13426,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.31252599,
+ 43.698238944400003,
+ 0.0
+ ],
+ [
+ 122.217639296,
+ 43.719683195099996,
+ 0.0
+ ],
+ [
+ 122.200345305,
+ 43.6347497171,
+ 0.0
+ ],
+ [
+ 122.156368033,
+ 43.626914002,
+ 0.0
+ ],
+ [
+ 122.137886705,
+ 43.617090038900002,
+ 0.0
+ ],
+ [
+ 122.11434482,
+ 43.588936647799997,
+ 0.0
+ ],
+ [
+ 122.10425696599999,
+ 43.565466937,
+ 0.0
+ ],
+ [
+ 122.101569197,
+ 43.532784085199999,
+ 0.0
+ ],
+ [
+ 122.10902477099999,
+ 43.517090827200001,
+ 0.0
+ ],
+ [
+ 122.139088906,
+ 43.492438682299998,
+ 0.0
+ ],
+ [
+ 122.259836462,
+ 43.621281060199998,
+ 0.0
+ ],
+ [
+ 122.31252599,
+ 43.698238944400003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7372,
+ "name": "Tongliao Airport",
+ "country": "CN",
+ "city": "Tongliao",
+ "height": 120,
+ "level": 2,
+ "lat": "43.5568312748295",
+ "lng": "122.199590515019",
+ "radius": 23594,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.159853215,
+ 43.7670666251,
+ 120.0
+ ],
+ [
+ 122.39746859,
+ 43.713404186,
+ 120.0
+ ],
+ [
+ 122.238500933,
+ 43.34652819,
+ 120.0
+ ],
+ [
+ 122.00232789099999,
+ 43.400190630499999,
+ 120.0
+ ],
+ [
+ 122.159853215,
+ 43.7670666251,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001425,
+ "name": "Tongliao Airport",
+ "country": "CN",
+ "city": "Tongliao",
+ "height": 500,
+ "level": 2,
+ "lat": "43.55694",
+ "lng": "122.199825",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.199825,
+ 44.006952658348624,
+ 500.0
+ ],
+ [
+ 122.308075177174899,
+ 44.000065217896257,
+ 500.0
+ ],
+ [
+ 122.41296340440455,
+ 43.979616812935873,
+ 500.0
+ ],
+ [
+ 122.511238931759777,
+ 43.946242111929543,
+ 500.0
+ ],
+ [
+ 122.599868866026014,
+ 43.900975584176024,
+ 500.0
+ ],
+ [
+ 122.676136039853773,
+ 43.845217531338875,
+ 500.0
+ ],
+ [
+ 122.737724412800162,
+ 43.780688460838135,
+ 500.0
+ ],
+ [
+ 122.782789088904963,
+ 43.709373579445995,
+ 500.0
+ ],
+ [
+ 122.81000892111436,
+ 43.633459497672128,
+ 500.0
+ ],
+ [
+ 122.81862059264455,
+ 43.555265431640052,
+ 500.0
+ ],
+ [
+ 122.80843393991546,
+ 43.477171270899596,
+ 500.0
+ ],
+ [
+ 122.779829048239606,
+ 43.401544858842009,
+ 500.0
+ ],
+ [
+ 122.733736269467315,
+ 43.330670724237983,
+ 500.0
+ ],
+ [
+ 122.671600763176485,
+ 43.26668232824403,
+ 500.0
+ ],
+ [
+ 122.595333453750314,
+ 43.211499671628346,
+ 500.0
+ ],
+ [
+ 122.507250445079691,
+ 43.166773860536608,
+ 500.0
+ ],
+ [
+ 122.410002973299129,
+ 43.133839970903608,
+ 500.0
+ ],
+ [
+ 122.306499941134348,
+ 43.113679292454762,
+ 500.0
+ ],
+ [
+ 122.199825,
+ 43.106891779724215,
+ 500.0
+ ],
+ [
+ 122.09315005886566,
+ 43.113679292454762,
+ 500.0
+ ],
+ [
+ 121.989647026700879,
+ 43.133839970903608,
+ 500.0
+ ],
+ [
+ 121.892399554920317,
+ 43.166773860536608,
+ 500.0
+ ],
+ [
+ 121.804316546249694,
+ 43.211499671628346,
+ 500.0
+ ],
+ [
+ 121.728049236823523,
+ 43.26668232824403,
+ 500.0
+ ],
+ [
+ 121.665913730532694,
+ 43.330670724237983,
+ 500.0
+ ],
+ [
+ 121.619820951760403,
+ 43.401544858842009,
+ 500.0
+ ],
+ [
+ 121.591216060084548,
+ 43.477171270899596,
+ 500.0
+ ],
+ [
+ 121.581029407355459,
+ 43.555265431640052,
+ 500.0
+ ],
+ [
+ 121.589641078885649,
+ 43.633459497672128,
+ 500.0
+ ],
+ [
+ 121.616860911095046,
+ 43.709373579445995,
+ 500.0
+ ],
+ [
+ 121.661925587199846,
+ 43.780688460838135,
+ 500.0
+ ],
+ [
+ 121.723513960146235,
+ 43.845217531338875,
+ 500.0
+ ],
+ [
+ 121.799781133973994,
+ 43.900975584176024,
+ 500.0
+ ],
+ [
+ 121.888411068240231,
+ 43.946242111929543,
+ 500.0
+ ],
+ [
+ 121.986686595595458,
+ 43.979616812935873,
+ 500.0
+ ],
+ [
+ 122.091574822825109,
+ 44.000065217896257,
+ 500.0
+ ],
+ [
+ 122.199825,
+ 44.006952658348624,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30293915,
+ "name": "KNEVICHI",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "43.3979398948407",
+ "lng": "132.148809849348",
+ "radius": 5750,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.10524999399999,
+ 43.422831727199998,
+ 0.0
+ ],
+ [
+ 132.152584023,
+ 43.440915435699999,
+ 0.0
+ ],
+ [
+ 132.173109777,
+ 43.442198126400001,
+ 0.0
+ ],
+ [
+ 132.18319811,
+ 43.440494732600001,
+ 0.0
+ ],
+ [
+ 132.192577332000013,
+ 43.437304829600002,
+ 0.0
+ ],
+ [
+ 132.20761597,
+ 43.4270829556,
+ 0.0
+ ],
+ [
+ 132.217123514,
+ 43.411301587099999,
+ 0.0
+ ],
+ [
+ 132.21672189099999,
+ 43.396346076199997,
+ 0.0
+ ],
+ [
+ 132.207985441,
+ 43.3828018707,
+ 0.0
+ ],
+ [
+ 132.192416067000011,
+ 43.3730042635,
+ 0.0
+ ],
+ [
+ 132.145012903,
+ 43.354905215599999,
+ 0.0
+ ],
+ [
+ 132.124514698000013,
+ 43.353639517700003,
+ 0.0
+ ],
+ [
+ 132.114442629,
+ 43.355348575500003,
+ 0.0
+ ],
+ [
+ 132.096830931,
+ 43.363080904699999,
+ 0.0
+ ],
+ [
+ 132.090060298,
+ 43.368766732099999,
+ 0.0
+ ],
+ [
+ 132.080555145,
+ 43.384546947,
+ 0.0
+ ],
+ [
+ 132.079672799,
+ 43.392039937,
+ 0.0
+ ],
+ [
+ 132.084342472,
+ 43.406608418499999,
+ 0.0
+ ],
+ [
+ 132.089691789,
+ 43.413046949700004,
+ 0.0
+ ],
+ [
+ 132.10524999399999,
+ 43.422831727199998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296119,
+ "name": "KNEVICHI",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "43.4536362228349",
+ "lng": "132.287918700956",
+ "radius": 4658,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.231746076,
+ 43.444134926300002,
+ 0.0
+ ],
+ [
+ 132.315412436,
+ 43.490470823199999,
+ 0.0
+ ],
+ [
+ 132.343992944,
+ 43.4527586775,
+ 0.0
+ ],
+ [
+ 132.343974721203892,
+ 43.452753773285153,
+ 0.0
+ ],
+ [
+ 132.34548798,
+ 43.450756887799997,
+ 0.0
+ ],
+ [
+ 132.24685329499999,
+ 43.424212056199998,
+ 0.0
+ ],
+ [
+ 132.245337706366513,
+ 43.426208046504854,
+ 0.0
+ ],
+ [
+ 132.24535550499999,
+ 43.426212850500001,
+ 0.0
+ ],
+ [
+ 132.233259195143575,
+ 43.44214231985152,
+ 0.0
+ ],
+ [
+ 132.231746076,
+ 43.444134926300002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296119,
+ "name": "KNEVICHI",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "43.3421614124267",
+ "lng": "132.00989629349",
+ "radius": 4658,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 131.952419276,
+ 43.344950977099998,
+ 0.0
+ ],
+ [
+ 132.050860910000011,
+ 43.3716214425,
+ 0.0
+ ],
+ [
+ 132.05237625707619,
+ 43.369625787890662,
+ 0.0
+ ],
+ [
+ 132.052363114,
+ 43.369622237400002,
+ 0.0
+ ],
+ [
+ 132.064457950425037,
+ 43.353692744546748,
+ 0.0
+ ],
+ [
+ 132.065971055,
+ 43.351699911600001,
+ 0.0
+ ],
+ [
+ 131.982584927,
+ 43.305279505,
+ 0.0
+ ],
+ [
+ 131.953924207999989,
+ 43.342952775699999,
+ 0.0
+ ],
+ [
+ 131.953936927596629,
+ 43.34295622174394,
+ 0.0
+ ],
+ [
+ 131.952419276,
+ 43.344950977099998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296119,
+ "name": "KNEVICHI",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "43.4270067400787",
+ "lng": "132.221382568122",
+ "radius": 2080,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.19592831,
+ 43.424258029599997,
+ 0.0
+ ],
+ [
+ 132.231746076,
+ 43.444134926300002,
+ 0.0
+ ],
+ [
+ 132.24535550499999,
+ 43.426212850500001,
+ 0.0
+ ],
+ [
+ 132.245337706366513,
+ 43.426208046504854,
+ 0.0
+ ],
+ [
+ 132.24685329499999,
+ 43.424212056199998,
+ 0.0
+ ],
+ [
+ 132.204607790000011,
+ 43.412809763200002,
+ 0.0
+ ],
+ [
+ 132.203092547292357,
+ 43.41480360483326,
+ 0.0
+ ],
+ [
+ 132.203108823,
+ 43.414810129300001,
+ 0.0
+ ],
+ [
+ 132.197442367548291,
+ 43.422265878793397,
+ 0.0
+ ],
+ [
+ 132.19592831,
+ 43.424258029599997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296119,
+ "name": "KNEVICHI",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "43.3688319339709",
+ "lng": "132.076309282576",
+ "radius": 2080,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.050860910000011,
+ 43.3716214425,
+ 0.0
+ ],
+ [
+ 132.093076663,
+ 43.383025781900002,
+ 0.0
+ ],
+ [
+ 132.094590001912024,
+ 43.381031082725826,
+ 0.0
+ ],
+ [
+ 132.09457769299999,
+ 43.3810261482,
+ 0.0
+ ],
+ [
+ 132.101747006000011,
+ 43.371575809900001,
+ 0.0
+ ],
+ [
+ 132.065971055,
+ 43.351699911600001,
+ 0.0
+ ],
+ [
+ 132.052363114,
+ 43.369622237400002,
+ 0.0
+ ],
+ [
+ 132.05237625707619,
+ 43.369625787890662,
+ 0.0
+ ],
+ [
+ 132.050860910000011,
+ 43.3716214425,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296119,
+ "name": "KNEVICHI",
+ "country": "RU",
+ "city": "",
+ "height": 0,
+ "level": 3,
+ "lat": "43.397926580421",
+ "lng": "132.148817186652",
+ "radius": 4801,
+ "color": "#EE8815",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.093076663,
+ 43.383025781900002,
+ 0.0
+ ],
+ [
+ 132.19592831,
+ 43.424258029599997,
+ 0.0
+ ],
+ [
+ 132.203108823,
+ 43.414810129300001,
+ 0.0
+ ],
+ [
+ 132.203092547292357,
+ 43.414803604833253,
+ 0.0
+ ],
+ [
+ 132.204607790000011,
+ 43.412809763200002,
+ 0.0
+ ],
+ [
+ 132.101747006000011,
+ 43.371575809900001,
+ 0.0
+ ],
+ [
+ 132.09457769299999,
+ 43.3810261482,
+ 0.0
+ ],
+ [
+ 132.094590001912024,
+ 43.381031082725826,
+ 0.0
+ ],
+ [
+ 132.093076663,
+ 43.383025781900002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001360,
+ "name": "Hami Airport",
+ "country": "CN",
+ "city": "Hami",
+ "height": 500,
+ "level": 2,
+ "lat": "42.841587",
+ "lng": "93.668461",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 93.668461,
+ 43.29165616988977,
+ 500.0
+ ],
+ [
+ 93.775434412014903,
+ 43.284769128195471,
+ 500.0
+ ],
+ [
+ 93.879087313281019,
+ 43.264321790691355,
+ 500.0
+ ],
+ [
+ 93.976208801643651,
+ 43.230948458130136,
+ 500.0
+ ],
+ [
+ 94.063802740941327,
+ 43.185683046872128,
+ 500.0
+ ],
+ [
+ 94.139184305969763,
+ 43.129925201664868,
+ 500.0
+ ],
+ [
+ 94.20006430053273,
+ 43.065394766862021,
+ 500.0
+ ],
+ [
+ 94.244618377062864,
+ 42.994076381310244,
+ 500.0
+ ],
+ [
+ 94.271539147439029,
+ 42.918156274109364,
+ 500.0
+ ],
+ [
+ 94.280070070704539,
+ 42.839953536083421,
+ 500.0
+ ],
+ [
+ 94.270020857717469,
+ 42.761848226549354,
+ 500.0
+ ],
+ [
+ 94.241764884450845,
+ 42.686208657196957,
+ 500.0
+ ],
+ [
+ 94.196219715047107,
+ 42.615320091181452,
+ 500.0
+ ],
+ [
+ 94.134812285683836,
+ 42.551316925640698,
+ 500.0
+ ],
+ [
+ 94.059430594029834,
+ 42.496120209898265,
+ 500.0
+ ],
+ [
+ 93.97236389553089,
+ 42.451382107814652,
+ 500.0
+ ],
+ [
+ 93.876233456065279,
+ 42.41843865593885,
+ 500.0
+ ],
+ [
+ 93.773915884315173,
+ 42.398271910056906,
+ 500.0
+ ],
+ [
+ 93.668461,
+ 42.391482318091342,
+ 500.0
+ ],
+ [
+ 93.563006115684814,
+ 42.398271910056906,
+ 500.0
+ ],
+ [
+ 93.460688543934708,
+ 42.41843865593885,
+ 500.0
+ ],
+ [
+ 93.364558104469097,
+ 42.451382107814652,
+ 500.0
+ ],
+ [
+ 93.277491405970153,
+ 42.496120209898265,
+ 500.0
+ ],
+ [
+ 93.202109714316151,
+ 42.551316925640698,
+ 500.0
+ ],
+ [
+ 93.14070228495288,
+ 42.615320091181452,
+ 500.0
+ ],
+ [
+ 93.095157115549142,
+ 42.686208657196957,
+ 500.0
+ ],
+ [
+ 93.066901142282518,
+ 42.761848226549354,
+ 500.0
+ ],
+ [
+ 93.056851929295448,
+ 42.839953536083421,
+ 500.0
+ ],
+ [
+ 93.065382852560958,
+ 42.918156274109364,
+ 500.0
+ ],
+ [
+ 93.092303622937123,
+ 42.994076381310244,
+ 500.0
+ ],
+ [
+ 93.136857699467257,
+ 43.065394766862021,
+ 500.0
+ ],
+ [
+ 93.197737694030224,
+ 43.129925201664868,
+ 500.0
+ ],
+ [
+ 93.27311925905866,
+ 43.185683046872128,
+ 500.0
+ ],
+ [
+ 93.360713198356336,
+ 43.230948458130136,
+ 500.0
+ ],
+ [
+ 93.457834686718968,
+ 43.264321790691355,
+ 500.0
+ ],
+ [
+ 93.561487587985084,
+ 43.284769128195471,
+ 500.0
+ ],
+ [
+ 93.668461,
+ 43.29165616988977,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9372,
+ "name": "Dongjiang:hami",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "42.83",
+ "lng": "93.52",
+ "radius": 5000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 93.52,
+ 42.875008607086748,
+ 0.0
+ ],
+ [
+ 93.530626277498541,
+ 42.874324335022493,
+ 0.0
+ ],
+ [
+ 93.540928994663119,
+ 42.872292354162902,
+ 0.0
+ ],
+ [
+ 93.550594505394557,
+ 42.868974532101547,
+ 0.0
+ ],
+ [
+ 93.55932868074558,
+ 42.864471873520316,
+ 0.0
+ ],
+ [
+ 93.56686589989522,
+ 42.858921427701603,
+ 0.0
+ ],
+ [
+ 93.572977149461963,
+ 42.852492095543653,
+ 0.0
+ ],
+ [
+ 93.577476981635058,
+ 42.845379466974833,
+ 0.0
+ ],
+ [
+ 93.580229119792151,
+ 42.837799849336463,
+ 0.0
+ ],
+ [
+ 93.581150544856783,
+ 42.82998367164749,
+ 0.0
+ ],
+ [
+ 93.580213944853227,
+ 42.822168467969497,
+ 0.0
+ ],
+ [
+ 93.577448462074656,
+ 42.814591654884367,
+ 0.0
+ ],
+ [
+ 93.572938725153662,
+ 42.807483323141398,
+ 0.0
+ ],
+ [
+ 93.566822205372119,
+ 42.801059261822424,
+ 0.0
+ ],
+ [
+ 93.559284986209832,
+ 42.79551442511552,
+ 0.0
+ ],
+ [
+ 93.550556081054225,
+ 42.791017037377244,
+ 0.0
+ ],
+ [
+ 93.540900475066294,
+ 42.787703512147885,
+ 0.0
+ ],
+ [
+ 93.530611102535829,
+ 42.785674335846892,
+ 0.0
+ ],
+ [
+ 93.52,
+ 42.78499103779572,
+ 0.0
+ ],
+ [
+ 93.509388897464163,
+ 42.785674335846892,
+ 0.0
+ ],
+ [
+ 93.499099524933698,
+ 42.787703512147885,
+ 0.0
+ ],
+ [
+ 93.489443918945767,
+ 42.791017037377244,
+ 0.0
+ ],
+ [
+ 93.48071501379016,
+ 42.79551442511552,
+ 0.0
+ ],
+ [
+ 93.473177794627873,
+ 42.801059261822424,
+ 0.0
+ ],
+ [
+ 93.46706127484633,
+ 42.807483323141398,
+ 0.0
+ ],
+ [
+ 93.462551537925336,
+ 42.814591654884367,
+ 0.0
+ ],
+ [
+ 93.459786055146765,
+ 42.822168467969497,
+ 0.0
+ ],
+ [
+ 93.458849455143209,
+ 42.82998367164749,
+ 0.0
+ ],
+ [
+ 93.459770880207842,
+ 42.837799849336463,
+ 0.0
+ ],
+ [
+ 93.462523018364934,
+ 42.845379466974833,
+ 0.0
+ ],
+ [
+ 93.467022850538029,
+ 42.852492095543653,
+ 0.0
+ ],
+ [
+ 93.473134100104772,
+ 42.858921427701603,
+ 0.0
+ ],
+ [
+ 93.480671319254412,
+ 42.864471873520316,
+ 0.0
+ ],
+ [
+ 93.489405494605435,
+ 42.868974532101547,
+ 0.0
+ ],
+ [
+ 93.499071005336873,
+ 42.872292354162902,
+ 0.0
+ ],
+ [
+ 93.509373722501451,
+ 42.874324335022493,
+ 0.0
+ ],
+ [
+ 93.52,
+ 42.875008607086748,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1489,
+ "name": "Hami Airport",
+ "country": "CN",
+ "city": "Hami",
+ "height": 0,
+ "level": 2,
+ "lat": "42.8246172601296",
+ "lng": "93.7272705044394",
+ "radius": 13863,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 93.760573040400004,
+ 42.7920025393,
+ 0.0
+ ],
+ [
+ 93.862055460899995,
+ 42.7487232187,
+ 0.0
+ ],
+ [
+ 93.8965272927,
+ 42.813169227899998,
+ 0.0
+ ],
+ [
+ 93.7820547301,
+ 42.832137370399998,
+ 0.0
+ ],
+ [
+ 93.781411618600004,
+ 42.849251729099997,
+ 0.0
+ ],
+ [
+ 93.774860226100003,
+ 42.865140010200001,
+ 0.0
+ ],
+ [
+ 93.762917367499995,
+ 42.8792429716,
+ 0.0
+ ],
+ [
+ 93.746394872600007,
+ 42.890598002200001,
+ 0.0
+ ],
+ [
+ 93.661749563399994,
+ 42.914765892399998,
+ 0.0
+ ],
+ [
+ 93.617288924899995,
+ 42.909980908500003,
+ 0.0
+ ],
+ [
+ 93.582071950300005,
+ 42.889543389799996,
+ 0.0
+ ],
+ [
+ 93.760573040400004,
+ 42.7920025393,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1489,
+ "name": "Hami Airport",
+ "country": "CN",
+ "city": "Hami",
+ "height": 0,
+ "level": 2,
+ "lat": "42.8567354892817",
+ "lng": "93.6153118129365",
+ "radius": 13862,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 93.480417548899993,
+ 42.932728898,
+ 0.0
+ ],
+ [
+ 93.445965104699994,
+ 42.868276324500002,
+ 0.0
+ ],
+ [
+ 93.560670268400003,
+ 42.849490790600001,
+ 0.0
+ ],
+ [
+ 93.561374641900002,
+ 42.832271361300002,
+ 0.0
+ ],
+ [
+ 93.567991753900003,
+ 42.816398510699997,
+ 0.0
+ ],
+ [
+ 93.579979630500006,
+ 42.802321659299999,
+ 0.0
+ ],
+ [
+ 93.616483941,
+ 42.7831993032,
+ 0.0
+ ],
+ [
+ 93.680990636499999,
+ 42.766887100799998,
+ 0.0
+ ],
+ [
+ 93.725357591,
+ 42.77162598,
+ 0.0
+ ],
+ [
+ 93.760573040400004,
+ 42.7920025393,
+ 0.0
+ ],
+ [
+ 93.582071950300005,
+ 42.889543389799996,
+ 0.0
+ ],
+ [
+ 93.480417548899993,
+ 42.932728898,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1489,
+ "name": "Hami Airport",
+ "country": "CN",
+ "city": "Hami",
+ "height": 120,
+ "level": 2,
+ "lat": "42.8403321481183",
+ "lng": "93.6711299323152",
+ "radius": 24014,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 93.377065823500004,
+ 42.828445020700002,
+ 120.0
+ ],
+ [
+ 93.466606594500007,
+ 42.995927903199998,
+ 120.0
+ ],
+ [
+ 93.965204961,
+ 42.852738204200001,
+ 120.0
+ ],
+ [
+ 93.875871463500005,
+ 42.685255321500001,
+ 120.0
+ ],
+ [
+ 93.377065823500004,
+ 42.828445020700002,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30293426,
+ "name": "OVOOT",
+ "country": "MN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "43.0125830969582",
+ "lng": "101.333833069995",
+ "radius": 7790,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.345520505,
+ 43.048917728699998,
+ 0.0
+ ],
+ [
+ 101.33685354799999,
+ 42.9753235019,
+ 0.0
+ ],
+ [
+ 101.339647777,
+ 42.9426522917,
+ 0.0
+ ],
+ [
+ 101.311780773,
+ 42.944406484600002,
+ 0.0
+ ],
+ [
+ 101.322157647,
+ 42.976248593900003,
+ 0.0
+ ],
+ [
+ 101.330806948,
+ 43.049842522100001,
+ 0.0
+ ],
+ [
+ 101.328005106,
+ 43.082513607199999,
+ 0.0
+ ],
+ [
+ 101.355919232,
+ 43.080759109699997,
+ 0.0
+ ],
+ [
+ 101.345520505,
+ 43.048917728699998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008696,
+ "name": "Dalanzadgad Airport",
+ "country": "MN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "43.591916",
+ "lng": "104.430588",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.430588,
+ 44.041925893544345,
+ 500.0
+ ],
+ [
+ 104.538901821868123,
+ 44.035038432849113,
+ 500.0
+ ],
+ [
+ 104.6438516276027,
+ 44.014589973555438,
+ 500.0
+ ],
+ [
+ 104.742184680502817,
+ 43.981215202382096,
+ 500.0
+ ],
+ [
+ 104.830866254809152,
+ 43.93594861608527,
+ 500.0
+ ],
+ [
+ 104.907177570910548,
+ 43.880190548958744,
+ 500.0
+ ],
+ [
+ 104.968801250386221,
+ 43.815661541376286,
+ 500.0
+ ],
+ [
+ 105.013891373340826,
+ 43.744346828366872,
+ 500.0
+ ],
+ [
+ 105.041126107386873,
+ 43.668433039471786,
+ 500.0
+ ],
+ [
+ 105.049741798593601,
+ 43.59023939717224,
+ 500.0
+ ],
+ [
+ 105.039548290269735,
+ 43.512145782771135,
+ 500.0
+ ],
+ [
+ 105.010926002743332,
+ 43.4365200166351,
+ 500.0
+ ],
+ [
+ 104.964805925747129,
+ 43.365646591336912,
+ 500.0
+ ],
+ [
+ 104.902634127523342,
+ 43.30165892185147,
+ 500.0
+ ],
+ [
+ 104.826322675366129,
+ 43.246476957184726,
+ 500.0
+ ],
+ [
+ 104.738189011358287,
+ 43.201751751253326,
+ 500.0
+ ],
+ [
+ 104.640885865248066,
+ 43.168818332550117,
+ 500.0
+ ],
+ [
+ 104.537323749049662,
+ 43.148657952963561,
+ 500.0
+ ],
+ [
+ 104.430588,
+ 43.141870542657323,
+ 500.0
+ ],
+ [
+ 104.323852250950338,
+ 43.148657952963561,
+ 500.0
+ ],
+ [
+ 104.220290134751934,
+ 43.168818332550117,
+ 500.0
+ ],
+ [
+ 104.122986988641713,
+ 43.201751751253326,
+ 500.0
+ ],
+ [
+ 104.034853324633872,
+ 43.246476957184726,
+ 500.0
+ ],
+ [
+ 103.958541872476658,
+ 43.30165892185147,
+ 500.0
+ ],
+ [
+ 103.896370074252872,
+ 43.365646591336912,
+ 500.0
+ ],
+ [
+ 103.850249997256668,
+ 43.4365200166351,
+ 500.0
+ ],
+ [
+ 103.821627709730265,
+ 43.512145782771135,
+ 500.0
+ ],
+ [
+ 103.811434201406399,
+ 43.59023939717224,
+ 500.0
+ ],
+ [
+ 103.820049892613127,
+ 43.668433039471786,
+ 500.0
+ ],
+ [
+ 103.847284626659174,
+ 43.744346828366872,
+ 500.0
+ ],
+ [
+ 103.892374749613779,
+ 43.815661541376286,
+ 500.0
+ ],
+ [
+ 103.953998429089452,
+ 43.880190548958744,
+ 500.0
+ ],
+ [
+ 104.030309745190849,
+ 43.93594861608527,
+ 500.0
+ ],
+ [
+ 104.118991319497184,
+ 43.981215202382096,
+ 500.0
+ ],
+ [
+ 104.2173243723973,
+ 44.014589973555438,
+ 500.0
+ ],
+ [
+ 104.322274178131877,
+ 44.035038432849113,
+ 500.0
+ ],
+ [
+ 104.430588,
+ 44.041925893544345,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268674,
+ "name": "Dalanzadgad Airport",
+ "country": "MN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "43.5917256113192",
+ "lng": "104.429863283746",
+ "radius": 4218,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.400100361,
+ 43.560515196399997,
+ 0.0
+ ],
+ [
+ 104.44627797,
+ 43.6277499678,
+ 0.0
+ ],
+ [
+ 104.45962639699999,
+ 43.622943652,
+ 0.0
+ ],
+ [
+ 104.413432846,
+ 43.555707369,
+ 0.0
+ ],
+ [
+ 104.400100361,
+ 43.560515196399997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268674,
+ "name": "Dalanzadgad Airport",
+ "country": "MN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "43.6408854144412",
+ "lng": "104.463633102339",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.44627797,
+ 43.6277499678,
+ 60.0
+ ],
+ [
+ 104.460220285,
+ 43.658891492400002,
+ 60.0
+ ],
+ [
+ 104.485541076,
+ 43.649773245200002,
+ 60.0
+ ],
+ [
+ 104.45962639699999,
+ 43.622943652,
+ 60.0
+ ],
+ [
+ 104.44627797,
+ 43.6277499678,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268674,
+ "name": "Dalanzadgad Airport",
+ "country": "MN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "43.5425721339984",
+ "lng": "104.396099508193",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.37422983099999,
+ 43.533682693499998,
+ 60.0
+ ],
+ [
+ 104.400100361,
+ 43.560515196399997,
+ 60.0
+ ],
+ [
+ 104.413432846,
+ 43.555707369,
+ 60.0
+ ],
+ [
+ 104.399514895,
+ 43.524565731499997,
+ 60.0
+ ],
+ [
+ 104.37422983099999,
+ 43.533682693499998,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268674,
+ "name": "Dalanzadgad Airport",
+ "country": "MN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "43.6902681228831",
+ "lng": "104.497618610829",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.460220285,
+ 43.658891492400002,
+ 150.0
+ ],
+ [
+ 104.492808676,
+ 43.731548447100003,
+ 150.0
+ ],
+ [
+ 104.546098793,
+ 43.7123528248,
+ 150.0
+ ],
+ [
+ 104.485541076,
+ 43.649773245200002,
+ 150.0
+ ],
+ [
+ 104.460220285,
+ 43.658891492400002,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268674,
+ "name": "Dalanzadgad Airport",
+ "country": "MN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "43.4931757393054",
+ "lng": "104.362231142125",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.313954695,
+ 43.471050875,
+ 150.0
+ ],
+ [
+ 104.37422983099999,
+ 43.533682693499998,
+ 150.0
+ ],
+ [
+ 104.399514895,
+ 43.524565731499997,
+ 150.0
+ ],
+ [
+ 104.36709548,
+ 43.451895358199998,
+ 150.0
+ ],
+ [
+ 104.313954695,
+ 43.471050875,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268675,
+ "name": "Dalanzadgad Airport",
+ "country": "MN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "43.5917383769007",
+ "lng": "104.429819793055",
+ "radius": 5170,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.378881721,
+ 43.598284474099998,
+ 0.0
+ ],
+ [
+ 104.391852435,
+ 43.617187171899999,
+ 0.0
+ ],
+ [
+ 104.404684763,
+ 43.628911603,
+ 0.0
+ ],
+ [
+ 104.42299995499999,
+ 43.635841640400002,
+ 0.0
+ ],
+ [
+ 104.433245846,
+ 43.637094467499999,
+ 0.0
+ ],
+ [
+ 104.453691202,
+ 43.634903904200002,
+ 0.0
+ ],
+ [
+ 104.471133872,
+ 43.626881326499998,
+ 0.0
+ ],
+ [
+ 104.482555348,
+ 43.614415849399997,
+ 0.0
+ ],
+ [
+ 104.485339999,
+ 43.607170783800001,
+ 0.0
+ ],
+ [
+ 104.485983055,
+ 43.599664838300001,
+ 0.0
+ ],
+ [
+ 104.484457205,
+ 43.592226094300003,
+ 0.0
+ ],
+ [
+ 104.480818044,
+ 43.585162329200003,
+ 0.0
+ ],
+ [
+ 104.46221015,
+ 43.559873520399996,
+ 0.0
+ ],
+ [
+ 104.44628175699999,
+ 43.550360363,
+ 0.0
+ ],
+ [
+ 104.426394707,
+ 43.546361718500002,
+ 0.0
+ ],
+ [
+ 104.405982604,
+ 43.548567889899999,
+ 0.0
+ ],
+ [
+ 104.39669423799999,
+ 43.5519200723,
+ 0.0
+ ],
+ [
+ 104.38196257,
+ 43.562397601699999,
+ 0.0
+ ],
+ [
+ 104.374381008,
+ 43.576310824,
+ 0.0
+ ],
+ [
+ 104.373738617,
+ 43.583816788199996,
+ 0.0
+ ],
+ [
+ 104.378881721,
+ 43.598284474099998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30293420,
+ "name": "GURVANSAIKHAN",
+ "country": "MN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "43.6088154347634",
+ "lng": "104.367577575928",
+ "radius": 7781,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.319886292,
+ 43.622783888,
+ 0.0
+ ],
+ [
+ 104.418795274,
+ 43.6053658664,
+ 0.0
+ ],
+ [
+ 104.46381742,
+ 43.602412683600001,
+ 0.0
+ ],
+ [
+ 104.457128107,
+ 43.582523915199999,
+ 0.0
+ ],
+ [
+ 104.415275826,
+ 43.594879281799997,
+ 0.0
+ ],
+ [
+ 104.316361204,
+ 43.612298117,
+ 0.0
+ ],
+ [
+ 104.271330752,
+ 43.615244028900001,
+ 0.0
+ ],
+ [
+ 104.278002832,
+ 43.6351336464,
+ 0.0
+ ],
+ [
+ 104.319886292,
+ 43.622783888,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30293419,
+ "name": "KHANBUMBAT",
+ "country": "MN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "43.144203",
+ "lng": "106.844522",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.844522,
+ 43.148703628687457,
+ 0.0
+ ],
+ [
+ 106.845589367412558,
+ 43.148635249073259,
+ 0.0
+ ],
+ [
+ 106.846624296447615,
+ 43.148432188355081,
+ 0.0
+ ],
+ [
+ 106.847595335190931,
+ 43.148100617709758,
+ 0.0
+ ],
+ [
+ 106.848472974580261,
+ 43.14765061370408,
+ 0.0
+ ],
+ [
+ 106.849230545571189,
+ 43.147095851886888,
+ 0.0
+ ],
+ [
+ 106.849845029753695,
+ 43.146453190974242,
+ 0.0
+ ],
+ [
+ 106.850297758754721,
+ 43.145742160297274,
+ 0.0
+ ],
+ [
+ 106.850574981175257,
+ 43.144984366123154,
+ 0.0
+ ],
+ [
+ 106.850668279871556,
+ 43.144202834923377,
+ 0.0
+ ],
+ [
+ 106.850574826967488,
+ 43.143421313571778,
+ 0.0
+ ],
+ [
+ 106.850297468938919,
+ 43.142663547754374,
+ 0.0
+ ],
+ [
+ 106.849844639285934,
+ 43.141952560522384,
+ 0.0
+ ],
+ [
+ 106.849230101547619,
+ 43.141309952902944,
+ 0.0
+ ],
+ [
+ 106.848472530556705,
+ 43.140755247799177,
+ 0.0
+ ],
+ [
+ 106.847594944723156,
+ 43.140305297086684,
+ 0.0
+ ],
+ [
+ 106.846624006631814,
+ 43.139973769886367,
+ 0.0
+ ],
+ [
+ 106.845589213204789,
+ 43.139770737524891,
+ 0.0
+ ],
+ [
+ 106.844522,
+ 43.139702367758879,
+ 0.0
+ ],
+ [
+ 106.843454786795206,
+ 43.139770737524891,
+ 0.0
+ ],
+ [
+ 106.842419993368182,
+ 43.139973769886367,
+ 0.0
+ ],
+ [
+ 106.84144905527684,
+ 43.140305297086684,
+ 0.0
+ ],
+ [
+ 106.84057146944329,
+ 43.140755247799177,
+ 0.0
+ ],
+ [
+ 106.839813898452377,
+ 43.141309952902944,
+ 0.0
+ ],
+ [
+ 106.839199360714062,
+ 43.141952560522384,
+ 0.0
+ ],
+ [
+ 106.838746531061076,
+ 43.142663547754374,
+ 0.0
+ ],
+ [
+ 106.838469173032507,
+ 43.143421313571778,
+ 0.0
+ ],
+ [
+ 106.83837572012844,
+ 43.144202834923377,
+ 0.0
+ ],
+ [
+ 106.838469018824739,
+ 43.144984366123154,
+ 0.0
+ ],
+ [
+ 106.838746241245275,
+ 43.145742160297274,
+ 0.0
+ ],
+ [
+ 106.839198970246301,
+ 43.146453190974242,
+ 0.0
+ ],
+ [
+ 106.839813454428807,
+ 43.147095851886888,
+ 0.0
+ ],
+ [
+ 106.840571025419734,
+ 43.14765061370408,
+ 0.0
+ ],
+ [
+ 106.841448664809064,
+ 43.148100617709758,
+ 0.0
+ ],
+ [
+ 106.84241970355238,
+ 43.148432188355081,
+ 0.0
+ ],
+ [
+ 106.843454632587438,
+ 43.148635249073259,
+ 0.0
+ ],
+ [
+ 106.844522,
+ 43.148703628687457,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001519,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Tonghua",
+ "height": 500,
+ "level": 2,
+ "lat": "42.253889",
+ "lng": "125.703889",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.703889,
+ 42.70400452895398,
+ 500.0
+ ],
+ [
+ 125.809848106987133,
+ 42.697117794006665,
+ 500.0
+ ],
+ [
+ 125.912519610414236,
+ 42.676671273650285,
+ 500.0
+ ],
+ [
+ 126.008724253333682,
+ 42.643298974393048,
+ 500.0
+ ],
+ [
+ 126.09549509364173,
+ 42.598034370246658,
+ 500.0
+ ],
+ [
+ 126.170172998317753,
+ 42.542276580692096,
+ 500.0
+ ],
+ [
+ 126.230490101512913,
+ 42.477744920397242,
+ 500.0
+ ],
+ [
+ 126.274638389769137,
+ 42.406423575399167,
+ 500.0
+ ],
+ [
+ 126.301321419451028,
+ 42.330498472216618,
+ 500.0
+ ],
+ [
+ 126.309788048833795,
+ 42.252288605197784,
+ 500.0
+ ],
+ [
+ 126.299847905620254,
+ 42.17417417455836,
+ 500.0
+ ],
+ [
+ 126.27186905054252,
+ 42.098523873004552,
+ 500.0
+ ],
+ [
+ 126.226758900194781,
+ 42.027623558681825,
+ 500.0
+ ],
+ [
+ 126.165929920192255,
+ 41.963608385750895,
+ 500.0
+ ],
+ [
+ 126.09125189574732,
+ 41.908400250879822,
+ 500.0
+ ],
+ [
+ 126.00499274875007,
+ 41.863652172271159,
+ 500.0
+ ],
+ [
+ 125.909749926326839,
+ 41.830700962174944,
+ 500.0
+ ],
+ [
+ 125.808374368064477,
+ 41.810529294878719,
+ 500.0
+ ],
+ [
+ 125.703889,
+ 41.803738016622674,
+ 500.0
+ ],
+ [
+ 125.59940363193553,
+ 41.810529294878719,
+ 500.0
+ ],
+ [
+ 125.498028073673169,
+ 41.830700962174944,
+ 500.0
+ ],
+ [
+ 125.402785251249938,
+ 41.863652172271159,
+ 500.0
+ ],
+ [
+ 125.316526104252688,
+ 41.908400250879822,
+ 500.0
+ ],
+ [
+ 125.241848079807752,
+ 41.963608385750895,
+ 500.0
+ ],
+ [
+ 125.181019099805226,
+ 42.027623558681825,
+ 500.0
+ ],
+ [
+ 125.135908949457487,
+ 42.098523873004552,
+ 500.0
+ ],
+ [
+ 125.107930094379753,
+ 42.17417417455836,
+ 500.0
+ ],
+ [
+ 125.097989951166213,
+ 42.252288605197784,
+ 500.0
+ ],
+ [
+ 125.106456580548979,
+ 42.330498472216618,
+ 500.0
+ ],
+ [
+ 125.13313961023087,
+ 42.406423575399167,
+ 500.0
+ ],
+ [
+ 125.177287898487094,
+ 42.477744920397242,
+ 500.0
+ ],
+ [
+ 125.237605001682255,
+ 42.542276580692096,
+ 500.0
+ ],
+ [
+ 125.312282906358277,
+ 42.598034370246658,
+ 500.0
+ ],
+ [
+ 125.399053746666326,
+ 42.643298974393048,
+ 500.0
+ ],
+ [
+ 125.495258389585771,
+ 42.676671273650285,
+ 500.0
+ ],
+ [
+ 125.597929893012875,
+ 42.697117794006665,
+ 500.0
+ ],
+ [
+ 125.703889,
+ 42.70400452895398,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7520,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Tonghua",
+ "height": 0,
+ "level": 2,
+ "lat": "42.2873557787316",
+ "lng": "125.743805773411",
+ "radius": 13188,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.791926323,
+ 42.293386770799998,
+ 0.0
+ ],
+ [
+ 125.881873828,
+ 42.3477303648,
+ 0.0
+ ],
+ [
+ 125.809191469,
+ 42.395669781199999,
+ 0.0
+ ],
+ [
+ 125.746315856,
+ 42.323508718399999,
+ 0.0
+ ],
+ [
+ 125.70281302799999,
+ 42.329504498399999,
+ 0.0
+ ],
+ [
+ 125.680842011,
+ 42.3260901632,
+ 0.0
+ ],
+ [
+ 125.644111728,
+ 42.307500201099998,
+ 0.0
+ ],
+ [
+ 125.625983061,
+ 42.292444636100001,
+ 0.0
+ ],
+ [
+ 125.605342941,
+ 42.263500971500001,
+ 0.0
+ ],
+ [
+ 125.603233759,
+ 42.246976310199997,
+ 0.0
+ ],
+ [
+ 125.616303442,
+ 42.2155187,
+ 0.0
+ ],
+ [
+ 125.791926323,
+ 42.293386770799998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7520,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Tonghua",
+ "height": 0,
+ "level": 2,
+ "lat": "42.2215058748572",
+ "lng": "125.664482201694",
+ "radius": 13186,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.526684536,
+ 42.161167576899999,
+ 0.0
+ ],
+ [
+ 125.599186463,
+ 42.113238070400001,
+ 0.0
+ ],
+ [
+ 125.661776582,
+ 42.1854933682,
+ 0.0
+ ],
+ [
+ 125.705086874,
+ 42.179495723099997,
+ 0.0
+ ],
+ [
+ 125.727014958,
+ 42.182881438499997,
+ 0.0
+ ],
+ [
+ 125.747017524,
+ 42.190353762699999,
+ 0.0
+ ],
+ [
+ 125.781981352,
+ 42.216534093299998,
+ 0.0
+ ],
+ [
+ 125.80267140799999,
+ 42.245377177100004,
+ 0.0
+ ],
+ [
+ 125.804859865,
+ 42.261896186,
+ 0.0
+ ],
+ [
+ 125.791926323,
+ 42.293386770799998,
+ 0.0
+ ],
+ [
+ 125.616303442,
+ 42.2155187,
+ 0.0
+ ],
+ [
+ 125.526684536,
+ 42.161167576899999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7520,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Tonghua",
+ "height": 120,
+ "level": 2,
+ "lat": "42.2542709950945",
+ "lng": "125.70438459201",
+ "radius": 23371,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.62394699,
+ 42.052718639399998,
+ 120.0
+ ],
+ [
+ 125.442989666,
+ 42.1724308139,
+ 120.0
+ ],
+ [
+ 125.784245131,
+ 42.456000524099998,
+ 120.0
+ ],
+ [
+ 125.966017922,
+ 42.336288350899999,
+ 120.0
+ ],
+ [
+ 125.62394699,
+ 42.052718639399998,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9110,
+ "name": "Yanji Chaoyangchuan Airport",
+ "country": "CN",
+ "city": "Yanji",
+ "height": 0,
+ "level": 2,
+ "lat": "42.8717562992518",
+ "lng": "129.392952051317",
+ "radius": 13170,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.35049429899999,
+ 42.894202856600003,
+ 0.0
+ ],
+ [
+ 129.233821825,
+ 42.8925832575,
+ 0.0
+ ],
+ [
+ 129.24418619,
+ 42.825558082100002,
+ 0.0
+ ],
+ [
+ 129.35924026699999,
+ 42.850537515299997,
+ 0.0
+ ],
+ [
+ 129.383014847999988,
+ 42.829086894699998,
+ 0.0
+ ],
+ [
+ 129.402441751999987,
+ 42.820573067,
+ 0.0
+ ],
+ [
+ 129.44683212699999,
+ 42.815775757399997,
+ 0.0
+ ],
+ [
+ 129.518360449,
+ 42.83325903,
+ 0.0
+ ],
+ [
+ 129.547531956,
+ 42.858274576500001,
+ 0.0
+ ],
+ [
+ 129.554545953,
+ 42.874056622499999,
+ 0.0
+ ],
+ [
+ 129.35049429899999,
+ 42.894202856600003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9110,
+ "name": "Yanji Chaoyangchuan Airport",
+ "country": "CN",
+ "city": "Yanji",
+ "height": 0,
+ "level": 2,
+ "lat": "42.8853608102188",
+ "lng": "129.511257458342",
+ "radius": 13133,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.671208094,
+ 42.870771521099996,
+ 0.0
+ ],
+ [
+ 129.65577028300001,
+ 42.937792364899998,
+ 0.0
+ ],
+ [
+ 129.544148785,
+ 42.912775051899999,
+ 0.0
+ ],
+ [
+ 129.517691775,
+ 42.935931896100001,
+ 0.0
+ ],
+ [
+ 129.49782957,
+ 42.943936625,
+ 0.0
+ ],
+ [
+ 129.475810633,
+ 42.947901233,
+ 0.0
+ ],
+ [
+ 129.42149099400001,
+ 42.944223413300001,
+ 0.0
+ ],
+ [
+ 129.387679147999989,
+ 42.934532738599998,
+ 0.0
+ ],
+ [
+ 129.37056112799999,
+ 42.923651274199997,
+ 0.0
+ ],
+ [
+ 129.357878661,
+ 42.9098949658,
+ 0.0
+ ],
+ [
+ 129.35049429899999,
+ 42.894202856600003,
+ 0.0
+ ],
+ [
+ 129.554545953,
+ 42.874056622499999,
+ 0.0
+ ],
+ [
+ 129.671208094,
+ 42.870771521099996,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9110,
+ "name": "Yanji Chaoyangchuan Airport",
+ "country": "CN",
+ "city": "Yanji",
+ "height": 120,
+ "level": 2,
+ "lat": "42.8819668725426",
+ "lng": "129.450168477059",
+ "radius": 23548,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.68008439799999,
+ 43.010520040300001,
+ 120.0
+ ],
+ [
+ 129.731779988999989,
+ 42.834684462699997,
+ 120.0
+ ],
+ [
+ 129.220148161,
+ 42.753974449,
+ 120.0
+ ],
+ [
+ 129.16852015399999,
+ 42.929810026699997,
+ 120.0
+ ],
+ [
+ 129.68008439799999,
+ 43.010520040300001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001516,
+ "name": "Yanji Chaoyangchuan Airport",
+ "country": "CN",
+ "city": "Yanji",
+ "height": 500,
+ "level": 2,
+ "lat": "42.882778",
+ "lng": "129.451111",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.451111,
+ 43.33284391806302,
+ 500.0
+ ],
+ [
+ 129.558156658342511,
+ 43.325956854179402,
+ 500.0
+ ],
+ [
+ 129.661879461593685,
+ 43.305509457424066,
+ 500.0
+ ],
+ [
+ 129.759066253220425,
+ 43.272136049433819,
+ 500.0
+ ],
+ [
+ 129.846718817412352,
+ 43.22687057796891,
+ 500.0
+ ],
+ [
+ 129.922150498927977,
+ 43.17111272507158,
+ 500.0
+ ],
+ [
+ 129.983070582411329,
+ 43.106582372720844,
+ 500.0
+ ],
+ [
+ 130.02765355718401,
+ 43.03526419195758,
+ 500.0
+ ],
+ [
+ 130.054591256040283,
+ 42.95934443344629,
+ 500.0
+ ],
+ [
+ 130.063126753990986,
+ 42.881142194986701,
+ 500.0
+ ],
+ [
+ 130.053069768367749,
+ 42.803037526066248,
+ 500.0
+ ],
+ [
+ 130.02479405422784,
+ 42.72739871154446,
+ 500.0
+ ],
+ [
+ 129.979217898875874,
+ 42.656510972594937,
+ 500.0
+ ],
+ [
+ 129.917769269412105,
+ 42.592508652897699,
+ 500.0
+ ],
+ [
+ 129.842337460773479,
+ 42.53731274191599,
+ 500.0
+ ],
+ [
+ 129.755213247798167,
+ 42.492575343142128,
+ 500.0
+ ],
+ [
+ 129.659019592601339,
+ 42.459632438306706,
+ 500.0
+ ],
+ [
+ 129.556634931756861,
+ 42.439466039483328,
+ 500.0
+ ],
+ [
+ 129.451111,
+ 42.432676566442389,
+ 500.0
+ ],
+ [
+ 129.345587068243134,
+ 42.439466039483328,
+ 500.0
+ ],
+ [
+ 129.243202407398655,
+ 42.459632438306706,
+ 500.0
+ ],
+ [
+ 129.147008752201828,
+ 42.492575343142128,
+ 500.0
+ ],
+ [
+ 129.059884539226516,
+ 42.53731274191599,
+ 500.0
+ ],
+ [
+ 128.98445273058789,
+ 42.592508652897699,
+ 500.0
+ ],
+ [
+ 128.923004101124121,
+ 42.656510972594937,
+ 500.0
+ ],
+ [
+ 128.877427945772155,
+ 42.72739871154446,
+ 500.0
+ ],
+ [
+ 128.849152231632246,
+ 42.803037526066248,
+ 500.0
+ ],
+ [
+ 128.839095246009009,
+ 42.881142194986701,
+ 500.0
+ ],
+ [
+ 128.847630743959712,
+ 42.95934443344629,
+ 500.0
+ ],
+ [
+ 128.874568442815985,
+ 43.03526419195758,
+ 500.0
+ ],
+ [
+ 128.919151417588665,
+ 43.106582372720844,
+ 500.0
+ ],
+ [
+ 128.980071501072018,
+ 43.17111272507158,
+ 500.0
+ ],
+ [
+ 129.055503182587643,
+ 43.22687057796891,
+ 500.0
+ ],
+ [
+ 129.14315574677957,
+ 43.272136049433819,
+ 500.0
+ ],
+ [
+ 129.24034253840631,
+ 43.305509457424066,
+ 500.0
+ ],
+ [
+ 129.344065341657483,
+ 43.325956854179402,
+ 500.0
+ ],
+ [
+ 129.451111,
+ 43.33284391806302,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288681,
+ "name": "Tamga Airport",
+ "country": "KG",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "42.153099",
+ "lng": "77.563904",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 77.563904,
+ 42.157600410247326,
+ 0.0
+ ],
+ [
+ 77.564954552753846,
+ 42.157532018928144,
+ 0.0
+ ],
+ [
+ 77.56597317837803,
+ 42.157328923435472,
+ 0.0
+ ],
+ [
+ 77.566928920630772,
+ 42.156997295958917,
+ 0.0
+ ],
+ [
+ 77.567792735449757,
+ 42.156547214724952,
+ 0.0
+ ],
+ [
+ 77.568538373962127,
+ 42.155992357546594,
+ 0.0
+ ],
+ [
+ 77.569143180320154,
+ 42.155349585949828,
+ 0.0
+ ],
+ [
+ 77.569588780087358,
+ 42.154638432546484,
+ 0.0
+ ],
+ [
+ 77.56986163825907,
+ 42.153880507265669,
+ 0.0
+ ],
+ [
+ 77.569953469995411,
+ 42.153098840518709,
+ 0.0
+ ],
+ [
+ 77.569861491650286,
+ 42.152317183282761,
+ 0.0
+ ],
+ [
+ 77.569588504552982,
+ 42.151559285387847,
+ 0.0
+ ],
+ [
+ 77.569142809093677,
+ 42.150848173942151,
+ 0.0
+ ],
+ [
+ 77.568537951818968,
+ 42.150205453814017,
+ 0.0
+ ],
+ [
+ 77.567792313306597,
+ 42.149650651407462,
+ 0.0
+ ],
+ [
+ 77.566928549404309,
+ 42.149200621642152,
+ 0.0
+ ],
+ [
+ 77.565972902843654,
+ 42.148869036123216,
+ 0.0
+ ],
+ [
+ 77.564954406145063,
+ 42.148665968016438,
+ 0.0
+ ],
+ [
+ 77.563904,
+ 42.148597586208282,
+ 0.0
+ ],
+ [
+ 77.562853593854925,
+ 42.148665968016438,
+ 0.0
+ ],
+ [
+ 77.561835097156333,
+ 42.148869036123216,
+ 0.0
+ ],
+ [
+ 77.560879450595678,
+ 42.149200621642152,
+ 0.0
+ ],
+ [
+ 77.56001568669339,
+ 42.149650651407462,
+ 0.0
+ ],
+ [
+ 77.55927004818102,
+ 42.150205453814017,
+ 0.0
+ ],
+ [
+ 77.558665190906311,
+ 42.150848173942151,
+ 0.0
+ ],
+ [
+ 77.558219495447005,
+ 42.151559285387847,
+ 0.0
+ ],
+ [
+ 77.557946508349701,
+ 42.152317183282761,
+ 0.0
+ ],
+ [
+ 77.557854530004576,
+ 42.153098840518709,
+ 0.0
+ ],
+ [
+ 77.557946361740917,
+ 42.153880507265669,
+ 0.0
+ ],
+ [
+ 77.55821921991263,
+ 42.154638432546484,
+ 0.0
+ ],
+ [
+ 77.558664819679834,
+ 42.155349585949828,
+ 0.0
+ ],
+ [
+ 77.55926962603786,
+ 42.155992357546594,
+ 0.0
+ ],
+ [
+ 77.560015264550231,
+ 42.156547214724952,
+ 0.0
+ ],
+ [
+ 77.560879079369215,
+ 42.156997295958917,
+ 0.0
+ ],
+ [
+ 77.561834821621957,
+ 42.157328923435472,
+ 0.0
+ ],
+ [
+ 77.562853447246141,
+ 42.157532018928144,
+ 0.0
+ ],
+ [
+ 77.563904,
+ 42.157600410247326,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296242,
+ "name": "KARAKOL",
+ "country": "KG",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "42.508292",
+ "lng": "78.407917",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 78.407917,
+ 42.512793130406351,
+ 0.0
+ ],
+ [
+ 78.408973481061778,
+ 42.51272474327876,
+ 0.0
+ ],
+ [
+ 78.409997854744688,
+ 42.512521660238846,
+ 0.0
+ ],
+ [
+ 78.410958990049068,
+ 42.512190053113443,
+ 0.0
+ ],
+ [
+ 78.411827678968791,
+ 42.511739999534427,
+ 0.0
+ ],
+ [
+ 78.412577524492079,
+ 42.511185176503773,
+ 0.0
+ ],
+ [
+ 78.413185742943298,
+ 42.51054244454096,
+ 0.0
+ ],
+ [
+ 78.413633856253185,
+ 42.509831335082787,
+ 0.0
+ ],
+ [
+ 78.413908253123026,
+ 42.509073456746883,
+ 0.0
+ ],
+ [
+ 78.414000602066409,
+ 42.508291838533701,
+ 0.0
+ ],
+ [
+ 78.413908103842701,
+ 42.507510229951144,
+ 0.0
+ ],
+ [
+ 78.413633575697943,
+ 42.5067523793455,
+ 0.0
+ ],
+ [
+ 78.413185364952241,
+ 42.506041312372545,
+ 0.0
+ ],
+ [
+ 78.412577094656498,
+ 42.505398632525562,
+ 0.0
+ ],
+ [
+ 78.411827249133211,
+ 42.504843864955426,
+ 0.0
+ ],
+ [
+ 78.41095861205801,
+ 42.504393863492254,
+ 0.0
+ ],
+ [
+ 78.409997574189447,
+ 42.504062298852055,
+ 0.0
+ ],
+ [
+ 78.408973331781453,
+ 42.503859243542415,
+ 0.0
+ ],
+ [
+ 78.407917,
+ 42.503790866045435,
+ 0.0
+ ],
+ [
+ 78.406860668218542,
+ 42.503859243542415,
+ 0.0
+ ],
+ [
+ 78.405836425810548,
+ 42.504062298852055,
+ 0.0
+ ],
+ [
+ 78.404875387941985,
+ 42.504393863492254,
+ 0.0
+ ],
+ [
+ 78.404006750866785,
+ 42.504843864955426,
+ 0.0
+ ],
+ [
+ 78.403256905343497,
+ 42.505398632525562,
+ 0.0
+ ],
+ [
+ 78.402648635047754,
+ 42.506041312372545,
+ 0.0
+ ],
+ [
+ 78.402200424302052,
+ 42.5067523793455,
+ 0.0
+ ],
+ [
+ 78.401925896157294,
+ 42.507510229951144,
+ 0.0
+ ],
+ [
+ 78.401833397933586,
+ 42.508291838533701,
+ 0.0
+ ],
+ [
+ 78.401925746876969,
+ 42.509073456746883,
+ 0.0
+ ],
+ [
+ 78.402200143746811,
+ 42.509831335082787,
+ 0.0
+ ],
+ [
+ 78.402648257056697,
+ 42.51054244454096,
+ 0.0
+ ],
+ [
+ 78.403256475507916,
+ 42.511185176503773,
+ 0.0
+ ],
+ [
+ 78.404006321031204,
+ 42.511739999534427,
+ 0.0
+ ],
+ [
+ 78.404875009950928,
+ 42.512190053113443,
+ 0.0
+ ],
+ [
+ 78.405836145255307,
+ 42.512521660238846,
+ 0.0
+ ],
+ [
+ 78.406860518938217,
+ 42.51272474327876,
+ 0.0
+ ],
+ [
+ 78.407917,
+ 42.512793130406351,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9383,
+ "name": "Nanjiang:kuche",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "41.72",
+ "lng": "82.99",
+ "radius": 8000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 82.99,
+ 41.792027591331468,
+ 0.0
+ ],
+ [
+ 83.00671272397345,
+ 41.790932122633947,
+ 0.0
+ ],
+ [
+ 83.02291597752594,
+ 41.787679110492121,
+ 0.0
+ ],
+ [
+ 83.038115971716238,
+ 41.782367708915871,
+ 0.0
+ ],
+ [
+ 83.051849779538472,
+ 41.775159781287698,
+ 0.0
+ ],
+ [
+ 83.063699532580998,
+ 41.766274924157045,
+ 0.0
+ ],
+ [
+ 83.073305186681708,
+ 41.755983723793648,
+ 0.0
+ ],
+ [
+ 83.080375460455102,
+ 41.744599459048359,
+ 0.0
+ ],
+ [
+ 83.084696614661382,
+ 41.732468511788085,
+ 0.0
+ ],
+ [
+ 83.086138814481529,
+ 41.71995978483131,
+ 0.0
+ ],
+ [
+ 83.08465989756165,
+ 41.707453455820939,
+ 0.0
+ ],
+ [
+ 83.080306454855375,
+ 41.695329413174314,
+ 0.0
+ ],
+ [
+ 83.073212215638421,
+ 41.683955726917262,
+ 0.0
+ ],
+ [
+ 83.063593809741235,
+ 41.673677503001286,
+ 0.0
+ ],
+ [
+ 83.051744056624059,
+ 41.664806455130339,
+ 0.0
+ ],
+ [
+ 83.038023000483932,
+ 41.657611503973598,
+ 0.0
+ ],
+ [
+ 83.02284697171126,
+ 41.652310680922419,
+ 0.0
+ ],
+ [
+ 83.006676006733414,
+ 41.649064573426628,
+ 0.0
+ ],
+ [
+ 82.99,
+ 41.647971502688279,
+ 0.0
+ ],
+ [
+ 82.973323993266575,
+ 41.649064573426628,
+ 0.0
+ ],
+ [
+ 82.95715302828873,
+ 41.652310680922419,
+ 0.0
+ ],
+ [
+ 82.941976999516058,
+ 41.657611503973598,
+ 0.0
+ ],
+ [
+ 82.92825594337593,
+ 41.664806455130339,
+ 0.0
+ ],
+ [
+ 82.916406190258755,
+ 41.673677503001286,
+ 0.0
+ ],
+ [
+ 82.906787784361569,
+ 41.683955726917262,
+ 0.0
+ ],
+ [
+ 82.899693545144615,
+ 41.695329413174314,
+ 0.0
+ ],
+ [
+ 82.89534010243834,
+ 41.707453455820939,
+ 0.0
+ ],
+ [
+ 82.89386118551846,
+ 41.71995978483131,
+ 0.0
+ ],
+ [
+ 82.895303385338607,
+ 41.732468511788085,
+ 0.0
+ ],
+ [
+ 82.899624539544888,
+ 41.744599459048359,
+ 0.0
+ ],
+ [
+ 82.906694813318282,
+ 41.755983723793648,
+ 0.0
+ ],
+ [
+ 82.916300467418992,
+ 41.766274924157045,
+ 0.0
+ ],
+ [
+ 82.928150220461518,
+ 41.775159781287698,
+ 0.0
+ ],
+ [
+ 82.941884028283752,
+ 41.782367708915871,
+ 0.0
+ ],
+ [
+ 82.957084022474049,
+ 41.787679110492121,
+ 0.0
+ ],
+ [
+ 82.973287276026539,
+ 41.790932122633947,
+ 0.0
+ ],
+ [
+ 82.99,
+ 41.792027591331468,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001534,
+ "name": "龟兹",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "41.677777777778",
+ "lng": "82.872777777778",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 82.872777777777998,
+ 42.127938672100889,
+ 500.0
+ ],
+ [
+ 82.977771755461063,
+ 42.121052220698658,
+ 500.0
+ ],
+ [
+ 83.079509430782096,
+ 42.100606452202619,
+ 500.0
+ ],
+ [
+ 83.174841649001422,
+ 42.067235091230174,
+ 500.0
+ ],
+ [
+ 83.260829241233111,
+ 42.021971188114279,
+ 500.0
+ ],
+ [
+ 83.334837519881987,
+ 41.966213359458969,
+ 500.0
+ ],
+ [
+ 83.394618918770945,
+ 41.901680413240655,
+ 500.0
+ ],
+ [
+ 83.438380974327956,
+ 41.830356103074472,
+ 500.0
+ ],
+ [
+ 83.464837667714406,
+ 41.754426067795166,
+ 500.0
+ ],
+ [
+ 83.473243007413913,
+ 41.676209212491571,
+ 500.0
+ ],
+ [
+ 83.463406554956691,
+ 41.59808587658339,
+ 500.0
+ ],
+ [
+ 83.435691325109644,
+ 41.522425123047867,
+ 500.0
+ ],
+ [
+ 83.390995087757616,
+ 41.451513386172067,
+ 500.0
+ ],
+ [
+ 83.33071654468705,
+ 41.387486552087402,
+ 500.0
+ ],
+ [
+ 83.256708152575101,
+ 41.332267336164684,
+ 500.0
+ ],
+ [
+ 83.171217530689532,
+ 41.287509581737147,
+ 500.0
+ ],
+ [
+ 83.076819454859873,
+ 41.254550850060163,
+ 500.0
+ ],
+ [
+ 82.976340429462539,
+ 41.234374412557948,
+ 500.0
+ ],
+ [
+ 82.872777777777998,
+ 41.22758150000152,
+ 500.0
+ ],
+ [
+ 82.769215126093457,
+ 41.234374412557948,
+ 500.0
+ ],
+ [
+ 82.668736100696123,
+ 41.254550850060163,
+ 500.0
+ ],
+ [
+ 82.574338024866464,
+ 41.287509581737147,
+ 500.0
+ ],
+ [
+ 82.488847402980895,
+ 41.332267336164684,
+ 500.0
+ ],
+ [
+ 82.414839010868945,
+ 41.387486552087402,
+ 500.0
+ ],
+ [
+ 82.354560467798379,
+ 41.451513386172067,
+ 500.0
+ ],
+ [
+ 82.309864230446351,
+ 41.522425123047867,
+ 500.0
+ ],
+ [
+ 82.282149000599304,
+ 41.59808587658339,
+ 500.0
+ ],
+ [
+ 82.272312548142082,
+ 41.676209212491571,
+ 500.0
+ ],
+ [
+ 82.28071788784159,
+ 41.754426067795166,
+ 500.0
+ ],
+ [
+ 82.30717458122804,
+ 41.830356103074472,
+ 500.0
+ ],
+ [
+ 82.35093663678505,
+ 41.901680413240655,
+ 500.0
+ ],
+ [
+ 82.410718035674009,
+ 41.966213359458969,
+ 500.0
+ ],
+ [
+ 82.484726314322884,
+ 42.021971188114279,
+ 500.0
+ ],
+ [
+ 82.570713906554573,
+ 42.067235091230174,
+ 500.0
+ ],
+ [
+ 82.666046124773899,
+ 42.100606452202619,
+ 500.0
+ ],
+ [
+ 82.767783800094932,
+ 42.121052220698658,
+ 500.0
+ ],
+ [
+ 82.872777777777998,
+ 42.127938672100889,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32766,
+ "name": "龟兹",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "41.6712082451618",
+ "lng": "82.8117012030377",
+ "radius": 13084,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 82.773821719899999,
+ 41.6891860514,
+ 0.0
+ ],
+ [
+ 82.657202008699997,
+ 41.694266911600003,
+ 0.0
+ ],
+ [
+ 82.667523008299995,
+ 41.623896234299998,
+ 0.0
+ ],
+ [
+ 82.780826857400001,
+ 41.650575136199997,
+ 0.0
+ ],
+ [
+ 82.805735146100005,
+ 41.627100998499998,
+ 0.0
+ ],
+ [
+ 82.8248720502,
+ 41.618683440700003,
+ 0.0
+ ],
+ [
+ 82.868467955,
+ 41.6141062843,
+ 0.0
+ ],
+ [
+ 82.900166263200006,
+ 41.6174426428,
+ 0.0
+ ],
+ [
+ 82.937508304900007,
+ 41.6273082493,
+ 0.0
+ ],
+ [
+ 82.967030374100005,
+ 41.651730663,
+ 0.0
+ ],
+ [
+ 82.773821719899999,
+ 41.6891860514,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32766,
+ "name": "龟兹",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "41.684611935138",
+ "lng": "82.931145379314",
+ "radius": 13073,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.086136550399999,
+ 41.664070319899999,
+ 0.0
+ ],
+ [
+ 83.075801741399999,
+ 41.7311077966,
+ 0.0
+ ],
+ [
+ 82.967506396499999,
+ 41.706091869300003,
+ 0.0
+ ],
+ [
+ 82.939761497899994,
+ 41.732434317500001,
+ 0.0
+ ],
+ [
+ 82.898730726,
+ 41.744510841100002,
+ 0.0
+ ],
+ [
+ 82.876488091300004,
+ 41.7442226852,
+ 0.0
+ ],
+ [
+ 82.8107059978,
+ 41.729310281099998,
+ 0.0
+ ],
+ [
+ 82.793803849400007,
+ 41.718523208800001,
+ 0.0
+ ],
+ [
+ 82.781223845300005,
+ 41.704837063699998,
+ 0.0
+ ],
+ [
+ 82.773821719899999,
+ 41.6891860514,
+ 0.0
+ ],
+ [
+ 82.967030374100005,
+ 41.651730663,
+ 0.0
+ ],
+ [
+ 82.974485442399995,
+ 41.667366505,
+ 0.0
+ ],
+ [
+ 83.086136550399999,
+ 41.664070319899999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32766,
+ "name": "龟兹",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "41.6782342061408",
+ "lng": "82.8734713180612",
+ "radius": 23501,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.103206506,
+ 41.801860018100001,
+ 120.0
+ ],
+ [
+ 83.147215684900004,
+ 41.625021337900002,
+ 120.0
+ ],
+ [
+ 82.643654421600004,
+ 41.555150947100003,
+ 120.0
+ ],
+ [
+ 82.599692997299996,
+ 41.731989627300003,
+ 120.0
+ ],
+ [
+ 83.103206506,
+ 41.801860018100001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001359,
+ "name": "Korla Airport",
+ "country": "CN",
+ "city": "Korla",
+ "height": 500,
+ "level": 2,
+ "lat": "41.615234",
+ "lng": "86.141866",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 86.141866,
+ 42.065399813745231,
+ 500.0
+ ],
+ [
+ 86.246756897363582,
+ 42.058513392144896,
+ 500.0
+ ],
+ [
+ 86.348394834890399,
+ 42.038067702463366,
+ 500.0
+ ],
+ [
+ 86.443633872409308,
+ 42.004696439093912,
+ 500.0
+ ],
+ [
+ 86.529537807041308,
+ 41.959432606948532,
+ 500.0
+ ],
+ [
+ 86.603474562014526,
+ 41.90367476873265,
+ 500.0
+ ],
+ [
+ 86.663198739446074,
+ 41.839141678139271,
+ 500.0
+ ],
+ [
+ 86.706919536993738,
+ 41.767817042499338,
+ 500.0
+ ],
+ [
+ 86.733352049844385,
+ 41.6918864699295,
+ 500.0
+ ],
+ [
+ 86.741750837256461,
+ 41.613668856132016,
+ 500.0
+ ],
+ [
+ 86.731925454411339,
+ 41.535544555697001,
+ 500.0
+ ],
+ [
+ 86.704238377784407,
+ 41.459882671606927,
+ 500.0
+ ],
+ [
+ 86.659586347436175,
+ 41.388969700278665,
+ 500.0
+ ],
+ [
+ 86.59936659539548,
+ 41.324941606716372,
+ 500.0
+ ],
+ [
+ 86.525429727620292,
+ 41.269721194474769,
+ 500.0
+ ],
+ [
+ 86.440021194774758,
+ 41.224962395744271,
+ 500.0
+ ],
+ [
+ 86.345713350880686,
+ 41.192002852429709,
+ 500.0
+ ],
+ [
+ 86.245330089932139,
+ 41.171825900247725,
+ 500.0
+ ],
+ [
+ 86.141866,
+ 41.165032811369286,
+ 500.0
+ ],
+ [
+ 86.038401910067847,
+ 41.171825900247725,
+ 500.0
+ ],
+ [
+ 85.9380186491193,
+ 41.192002852429709,
+ 500.0
+ ],
+ [
+ 85.843710805225228,
+ 41.224962395744271,
+ 500.0
+ ],
+ [
+ 85.758302272379694,
+ 41.269721194474769,
+ 500.0
+ ],
+ [
+ 85.684365404604506,
+ 41.324941606716372,
+ 500.0
+ ],
+ [
+ 85.624145652563811,
+ 41.388969700278665,
+ 500.0
+ ],
+ [
+ 85.57949362221558,
+ 41.459882671606927,
+ 500.0
+ ],
+ [
+ 85.551806545588647,
+ 41.535544555697001,
+ 500.0
+ ],
+ [
+ 85.541981162743525,
+ 41.613668856132016,
+ 500.0
+ ],
+ [
+ 85.550379950155602,
+ 41.6918864699295,
+ 500.0
+ ],
+ [
+ 85.576812463006249,
+ 41.767817042499338,
+ 500.0
+ ],
+ [
+ 85.620533260553913,
+ 41.839141678139271,
+ 500.0
+ ],
+ [
+ 85.68025743798546,
+ 41.90367476873265,
+ 500.0
+ ],
+ [
+ 85.754194192958678,
+ 41.959432606948532,
+ 500.0
+ ],
+ [
+ 85.840098127590679,
+ 42.004696439093912,
+ 500.0
+ ],
+ [
+ 85.935337165109587,
+ 42.038067702463366,
+ 500.0
+ ],
+ [
+ 86.036975102636404,
+ 42.058513392144896,
+ 500.0
+ ],
+ [
+ 86.141866,
+ 42.065399813745231,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5082,
+ "name": "Korla Airport",
+ "country": "CN",
+ "city": "Korla",
+ "height": 0,
+ "level": 2,
+ "lat": "41.5853434210248",
+ "lng": "86.0992719920383",
+ "radius": 13862,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.950225942700001,
+ 41.529637923300001,
+ 0.0
+ ],
+ [
+ 86.0165131089,
+ 41.477159175700002,
+ 0.0
+ ],
+ [
+ 86.086406155299997,
+ 41.545217512100002,
+ 0.0
+ ],
+ [
+ 86.128385628299995,
+ 41.5365595265,
+ 0.0
+ ],
+ [
+ 86.150398622099999,
+ 41.5385604469,
+ 0.0
+ ],
+ [
+ 86.17097302,
+ 41.544754001400001,
+ 0.0
+ ],
+ [
+ 86.220606025500004,
+ 41.577252816300003,
+ 0.0
+ ],
+ [
+ 86.244277145400005,
+ 41.604629964799997,
+ 0.0
+ ],
+ [
+ 86.248339188,
+ 41.6209479997,
+ 0.0
+ ],
+ [
+ 86.239214154300001,
+ 41.653146168,
+ 0.0
+ ],
+ [
+ 86.044807399600003,
+ 41.578114984199999,
+ 0.0
+ ],
+ [
+ 85.950225942700001,
+ 41.529637923300001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5082,
+ "name": "Korla Airport",
+ "country": "CN",
+ "city": "Korla",
+ "height": 0,
+ "level": 2,
+ "lat": "41.645857364314",
+ "lng": "86.1848095787186",
+ "radius": 13864,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 86.239214154300001,
+ 41.653146168,
+ 0.0
+ ],
+ [
+ 86.334111230100007,
+ 41.701615646500002,
+ 0.0
+ ],
+ [
+ 86.267681452700003,
+ 41.754102919200001,
+ 0.0
+ ],
+ [
+ 86.197497185299994,
+ 41.686147521899997,
+ 0.0
+ ],
+ [
+ 86.155352702800002,
+ 41.694809300800003,
+ 0.0
+ ],
+ [
+ 86.133290216800006,
+ 41.692784570199997,
+ 0.0
+ ],
+ [
+ 86.094943428600004,
+ 41.676564326799998,
+ 0.0
+ ],
+ [
+ 86.0631748757,
+ 41.654092247299999,
+ 0.0
+ ],
+ [
+ 86.039534847,
+ 41.626618582900001,
+ 0.0
+ ],
+ [
+ 86.035546007799994,
+ 41.610290409,
+ 0.0
+ ],
+ [
+ 86.044807399600003,
+ 41.578114984199999,
+ 0.0
+ ],
+ [
+ 86.239214154300001,
+ 41.653146168,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5082,
+ "name": "Korla Airport",
+ "country": "CN",
+ "city": "Korla",
+ "height": 120,
+ "level": 2,
+ "lat": "41.6154034040657",
+ "lng": "86.1422899356803",
+ "radius": 24003,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 86.034002761699995,
+ 41.415341575,
+ 120.0
+ ],
+ [
+ 85.869021549600006,
+ 41.546009553300003,
+ 120.0
+ ],
+ [
+ 86.250068163600005,
+ 41.815711948900002,
+ 120.0
+ ],
+ [
+ 86.415740699099999,
+ 41.685043971699997,
+ 120.0
+ ],
+ [
+ 86.034002761699995,
+ 41.415341575,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9377,
+ "name": "Nanjiang:kuerle",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "41.72",
+ "lng": "86.18",
+ "radius": 9000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 86.18,
+ 41.801030976533951,
+ 0.0
+ ],
+ [
+ 86.198804404674206,
+ 41.799798405080665,
+ 0.0
+ ],
+ [
+ 86.217035341603875,
+ 41.796138279419907,
+ 0.0
+ ],
+ [
+ 86.234137022835498,
+ 41.790162206827816,
+ 0.0
+ ],
+ [
+ 86.249588451662504,
+ 41.782052373947657,
+ 0.0
+ ],
+ [
+ 86.262919418531794,
+ 41.772055937567323,
+ 0.0
+ ],
+ [
+ 86.273724875295954,
+ 41.760477424798417,
+ 0.0
+ ],
+ [
+ 86.281677240640121,
+ 41.747669384545617,
+ 0.0
+ ],
+ [
+ 86.286536263261624,
+ 41.734021585928012,
+ 0.0
+ ],
+ [
+ 86.288156154350887,
+ 41.719949102683074,
+ 0.0
+ ],
+ [
+ 86.28648979320262,
+ 41.705879654336528,
+ 0.0
+ ],
+ [
+ 86.28158990545802,
+ 41.692240594364108,
+ 0.0
+ ],
+ [
+ 86.27360720884289,
+ 41.679445942502731,
+ 0.0
+ ],
+ [
+ 86.262785613065958,
+ 41.667883853044167,
+ 0.0
+ ],
+ [
+ 86.249454646077112,
+ 41.657904894006101,
+ 0.0
+ ],
+ [
+ 86.234019356079656,
+ 41.649811484474725,
+ 0.0
+ ],
+ [
+ 86.216948006077473,
+ 41.64384880033306,
+ 0.0
+ ],
+ [
+ 86.198757934390471,
+ 41.640197413369371,
+ 0.0
+ ],
+ [
+ 86.18,
+ 41.638967876834947,
+ 0.0
+ ],
+ [
+ 86.161242065609542,
+ 41.640197413369371,
+ 0.0
+ ],
+ [
+ 86.143051993922541,
+ 41.64384880033306,
+ 0.0
+ ],
+ [
+ 86.125980643920357,
+ 41.649811484474725,
+ 0.0
+ ],
+ [
+ 86.110545353922902,
+ 41.657904894006101,
+ 0.0
+ ],
+ [
+ 86.097214386934056,
+ 41.667883853044167,
+ 0.0
+ ],
+ [
+ 86.086392791157124,
+ 41.679445942502731,
+ 0.0
+ ],
+ [
+ 86.078410094541994,
+ 41.692240594364108,
+ 0.0
+ ],
+ [
+ 86.073510206797394,
+ 41.705879654336528,
+ 0.0
+ ],
+ [
+ 86.071843845649127,
+ 41.719949102683074,
+ 0.0
+ ],
+ [
+ 86.07346373673839,
+ 41.734021585928012,
+ 0.0
+ ],
+ [
+ 86.078322759359892,
+ 41.747669384545617,
+ 0.0
+ ],
+ [
+ 86.086275124704059,
+ 41.760477424798417,
+ 0.0
+ ],
+ [
+ 86.097080581468219,
+ 41.772055937567323,
+ 0.0
+ ],
+ [
+ 86.11041154833751,
+ 41.782052373947657,
+ 0.0
+ ],
+ [
+ 86.125862977164516,
+ 41.790162206827816,
+ 0.0
+ ],
+ [
+ 86.142964658396139,
+ 41.796138279419907,
+ 0.0
+ ],
+ [
+ 86.161195595325808,
+ 41.799798405080665,
+ 0.0
+ ],
+ [
+ 86.18,
+ 41.801030976533951,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045018,
+ "name": "阿拉善额济纳旗桃来机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "42.0361322133238",
+ "lng": "100.94782676704",
+ "radius": 13031,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.92866824,
+ 42.066814004599998,
+ 0.0
+ ],
+ [
+ 100.834866925,
+ 42.118011533500002,
+ 0.0
+ ],
+ [
+ 100.793219139,
+ 42.059644189099998,
+ 0.0
+ ],
+ [
+ 100.903039863,
+ 42.030878087399998,
+ 0.0
+ ],
+ [
+ 100.90070588,
+ 42.012805330200003,
+ 0.0
+ ],
+ [
+ 100.904672021,
+ 41.996470840800001,
+ 0.0
+ ],
+ [
+ 100.914188396,
+ 41.981455169599997,
+ 0.0
+ ],
+ [
+ 100.946934737,
+ 41.959308512600003,
+ 0.0
+ ],
+ [
+ 100.990901987,
+ 41.944698195599997,
+ 0.0
+ ],
+ [
+ 101.035097694,
+ 41.946331670600003,
+ 0.0
+ ],
+ [
+ 101.072291288,
+ 41.964169122,
+ 0.0
+ ],
+ [
+ 100.92866824,
+ 42.066814004599998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045018,
+ "name": "阿拉善额济纳旗桃来机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "41.9946742577478",
+ "lng": "101.053027521089",
+ "radius": 13032,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.165893485,
+ 41.912873156800003,
+ 0.0
+ ],
+ [
+ 101.207512451,
+ 41.971230563299997,
+ 0.0
+ ],
+ [
+ 101.097980119,
+ 42.000174576,
+ 0.0
+ ],
+ [
+ 101.100363822,
+ 42.018137768099997,
+ 0.0
+ ],
+ [
+ 101.096472339,
+ 42.034482344099999,
+ 0.0
+ ],
+ [
+ 101.087014774,
+ 42.049521266900001,
+ 0.0
+ ],
+ [
+ 101.054305754,
+ 42.071736145,
+ 0.0
+ ],
+ [
+ 101.010169053,
+ 42.086388412600002,
+ 0.0
+ ],
+ [
+ 100.965878769,
+ 42.084713009399998,
+ 0.0
+ ],
+ [
+ 100.92866824,
+ 42.066814004599998,
+ 0.0
+ ],
+ [
+ 101.072291288,
+ 41.964169122,
+ 0.0
+ ],
+ [
+ 101.165893485,
+ 41.912873156800003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045018,
+ "name": "阿拉善额济纳旗桃来机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "42.0151286054447",
+ "lng": "101.000251013408",
+ "radius": 23252,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.281437536,
+ 42.006340821199998,
+ 120.0
+ ],
+ [
+ 101.168177587,
+ 41.847436542399997,
+ 120.0
+ ],
+ [
+ 100.719048179,
+ 42.024321037,
+ 120.0
+ ],
+ [
+ 100.832623572,
+ 42.1832253153,
+ 120.0
+ ],
+ [
+ 101.281437536,
+ 42.006340821199998,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045019,
+ "name": "阿拉善额济纳旗桃来机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "42.01487",
+ "lng": "101.002031",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.002031,
+ 42.465004360937861,
+ 500.0
+ ],
+ [
+ 101.107586242459149,
+ 42.458117745633146,
+ 500.0
+ ],
+ [
+ 101.209866980771253,
+ 42.437671542955528,
+ 500.0
+ ],
+ [
+ 101.305706555466486,
+ 42.404299641690265,
+ 500.0
+ ],
+ [
+ 101.392149646952191,
+ 42.359035338901151,
+ 500.0
+ ],
+ [
+ 101.466547351683289,
+ 42.303277544018314,
+ 500.0
+ ],
+ [
+ 101.526640297934421,
+ 42.238745360015834,
+ 500.0
+ ],
+ [
+ 101.57062697830348,
+ 42.167422792179543,
+ 500.0
+ ],
+ [
+ 101.597215310210942,
+ 42.091495646625098,
+ 500.0
+ ],
+ [
+ 101.605656305593456,
+ 42.013282880047605,
+ 500.0
+ ],
+ [
+ 101.595759562965085,
+ 41.935164750294767,
+ 500.0
+ ],
+ [
+ 101.567891030203626,
+ 41.859510104079895,
+ 500.0
+ ],
+ [
+ 101.522954086154172,
+ 41.788605039426045,
+ 500.0
+ ],
+ [
+ 101.462355436276056,
+ 41.724585015377208,
+ 500.0
+ ],
+ [
+ 101.387957614440424,
+ 41.669372269681318,
+ 500.0
+ ],
+ [
+ 101.30202004716719,
+ 41.624620164337976,
+ 500.0
+ ],
+ [
+ 101.207130695482377,
+ 41.591665823696474,
+ 500.0
+ ],
+ [
+ 101.106130275128805,
+ 41.571492170871444,
+ 500.0
+ ],
+ [
+ 101.002031,
+ 41.564700212340547,
+ 500.0
+ ],
+ [
+ 100.897931724871199,
+ 41.571492170871444,
+ 500.0
+ ],
+ [
+ 100.796931304517628,
+ 41.591665823696474,
+ 500.0
+ ],
+ [
+ 100.702041952832815,
+ 41.624620164337976,
+ 500.0
+ ],
+ [
+ 100.616104385559581,
+ 41.669372269681318,
+ 500.0
+ ],
+ [
+ 100.541706563723949,
+ 41.724585015377208,
+ 500.0
+ ],
+ [
+ 100.481107913845833,
+ 41.788605039426045,
+ 500.0
+ ],
+ [
+ 100.436170969796379,
+ 41.859510104079895,
+ 500.0
+ ],
+ [
+ 100.408302437034919,
+ 41.935164750294767,
+ 500.0
+ ],
+ [
+ 100.398405694406549,
+ 42.013282880047605,
+ 500.0
+ ],
+ [
+ 100.406846689789063,
+ 42.091495646625098,
+ 500.0
+ ],
+ [
+ 100.433435021696525,
+ 42.167422792179543,
+ 500.0
+ ],
+ [
+ 100.477421702065584,
+ 42.238745360015834,
+ 500.0
+ ],
+ [
+ 100.537514648316716,
+ 42.303277544018314,
+ 500.0
+ ],
+ [
+ 100.611912353047813,
+ 42.359035338901151,
+ 500.0
+ ],
+ [
+ 100.698355444533519,
+ 42.404299641690265,
+ 500.0
+ ],
+ [
+ 100.794195019228752,
+ 42.437671542955528,
+ 500.0
+ ],
+ [
+ 100.896475757540856,
+ 42.458117745633146,
+ 500.0
+ ],
+ [
+ 101.002031,
+ 42.465004360937861,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1829,
+ "name": "Chifeng Airport",
+ "country": "CN",
+ "city": "Chifeng",
+ "height": 0,
+ "level": 2,
+ "lat": "42.2032257740445",
+ "lng": "118.854308510676",
+ "radius": 13104,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.905031455,
+ 42.216925396199997,
+ 0.0
+ ],
+ [
+ 118.961670424,
+ 42.290241399899998,
+ 0.0
+ ],
+ [
+ 118.880825082,
+ 42.319427856200001,
+ 0.0
+ ],
+ [
+ 118.85244300799999,
+ 42.236072698299999,
+ 0.0
+ ],
+ [
+ 118.810980955,
+ 42.229880862,
+ 0.0
+ ],
+ [
+ 118.792221015,
+ 42.220796956699999,
+ 0.0
+ ],
+ [
+ 118.767178868,
+ 42.193609504199998,
+ 0.0
+ ],
+ [
+ 118.755545037,
+ 42.172009822200003,
+ 0.0
+ ],
+ [
+ 118.749190571,
+ 42.143266184200002,
+ 0.0
+ ],
+ [
+ 118.753628022,
+ 42.126997406800001,
+ 0.0
+ ],
+ [
+ 118.77838971,
+ 42.099687668500003,
+ 0.0
+ ],
+ [
+ 118.905031455,
+ 42.216925396199997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1829,
+ "name": "Chifeng Airport",
+ "country": "CN",
+ "city": "Chifeng",
+ "height": 0,
+ "level": 2,
+ "lat": "42.1201726749137",
+ "lng": "118.813488186403",
+ "radius": 13140,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.716691759,
+ 42.026353257499999,
+ 0.0
+ ],
+ [
+ 118.802590552,
+ 42.002277939499997,
+ 0.0
+ ],
+ [
+ 118.827551529,
+ 42.085592438699997,
+ 0.0
+ ],
+ [
+ 118.868559508,
+ 42.089402145100003,
+ 0.0
+ ],
+ [
+ 118.888203497,
+ 42.097340397399996,
+ 0.0
+ ],
+ [
+ 118.91608969799999,
+ 42.122938353199999,
+ 0.0
+ ],
+ [
+ 118.92779418,
+ 42.146335115,
+ 0.0
+ ],
+ [
+ 118.933556411,
+ 42.173090064500002,
+ 0.0
+ ],
+ [
+ 118.919657512,
+ 42.2043499137,
+ 0.0
+ ],
+ [
+ 118.905031455,
+ 42.216925396199997,
+ 0.0
+ ],
+ [
+ 118.77838971,
+ 42.099687668500003,
+ 0.0
+ ],
+ [
+ 118.716691759,
+ 42.026353257499999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1829,
+ "name": "Chifeng Airport",
+ "country": "CN",
+ "city": "Chifeng",
+ "height": 120,
+ "level": 2,
+ "lat": "42.158709807952",
+ "lng": "118.841941820841",
+ "radius": 23567,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.861947933,
+ 41.947287402400001,
+ 120.0
+ ],
+ [
+ 118.63609449499999,
+ 42.011802637499997,
+ 120.0
+ ],
+ [
+ 118.821182623,
+ 42.370092969700003,
+ 120.0
+ ],
+ [
+ 119.048318476,
+ 42.305577736,
+ 120.0
+ ],
+ [
+ 118.861947933,
+ 41.947287402400001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001496,
+ "name": "Chifeng Airport",
+ "country": "CN",
+ "city": "Chifeng",
+ "height": 500,
+ "level": 2,
+ "lat": "42.160732",
+ "lng": "118.841814",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.841814,
+ 42.61085487035816,
+ 500.0
+ ],
+ [
+ 118.947615114715077,
+ 42.603968182384811,
+ 500.0
+ ],
+ [
+ 119.05013375058877,
+ 42.583521786827724,
+ 500.0
+ ],
+ [
+ 119.146195578997975,
+ 42.550149644181296,
+ 500.0
+ ],
+ [
+ 119.232838204688477,
+ 42.504885159292407,
+ 500.0
+ ],
+ [
+ 119.307406496445253,
+ 42.449127369533599,
+ 500.0
+ ],
+ [
+ 119.367635911260464,
+ 42.384595506813611,
+ 500.0
+ ],
+ [
+ 119.411720980697709,
+ 42.313273686492153,
+ 500.0
+ ],
+ [
+ 119.438366966951619,
+ 42.237347787982031,
+ 500.0
+ ],
+ [
+ 119.446823570555708,
+ 42.159136790849772,
+ 500.0
+ ],
+ [
+ 119.436900407533471,
+ 42.081020917751665,
+ 500.0
+ ],
+ [
+ 119.408964711833022,
+ 42.005368921483232,
+ 500.0
+ ],
+ [
+ 119.363922320298329,
+ 41.934466753825163,
+ 500.0
+ ],
+ [
+ 119.303183445061194,
+ 41.870449687969639,
+ 500.0
+ ],
+ [
+ 119.228615034582262,
+ 41.815239753760075,
+ 500.0
+ ],
+ [
+ 119.142481687420783,
+ 41.770490103642061,
+ 500.0
+ ],
+ [
+ 119.047377139877256,
+ 41.737537671735019,
+ 500.0
+ ],
+ [
+ 118.946148332172257,
+ 41.717365229490824,
+ 500.0
+ ],
+ [
+ 118.841814,
+ 41.710573685721222,
+ 500.0
+ ],
+ [
+ 118.737479667827742,
+ 41.717365229490824,
+ 500.0
+ ],
+ [
+ 118.636250860122743,
+ 41.737537671735019,
+ 500.0
+ ],
+ [
+ 118.541146312579215,
+ 41.770490103642061,
+ 500.0
+ ],
+ [
+ 118.455012965417737,
+ 41.815239753760075,
+ 500.0
+ ],
+ [
+ 118.380444554938805,
+ 41.870449687969639,
+ 500.0
+ ],
+ [
+ 118.31970567970167,
+ 41.934466753825163,
+ 500.0
+ ],
+ [
+ 118.274663288166977,
+ 42.005368921483232,
+ 500.0
+ ],
+ [
+ 118.246727592466527,
+ 42.081020917751665,
+ 500.0
+ ],
+ [
+ 118.236804429444291,
+ 42.159136790849772,
+ 500.0
+ ],
+ [
+ 118.245261033048379,
+ 42.237347787982031,
+ 500.0
+ ],
+ [
+ 118.27190701930229,
+ 42.313273686492153,
+ 500.0
+ ],
+ [
+ 118.315992088739534,
+ 42.384595506813611,
+ 500.0
+ ],
+ [
+ 118.376221503554746,
+ 42.449127369533599,
+ 500.0
+ ],
+ [
+ 118.450789795311522,
+ 42.504885159292407,
+ 500.0
+ ],
+ [
+ 118.537432421002023,
+ 42.550149644181296,
+ 500.0
+ ],
+ [
+ 118.633494249411228,
+ 42.583521786827724,
+ 500.0
+ ],
+ [
+ 118.736012885284921,
+ 42.603968182384811,
+ 500.0
+ ],
+ [
+ 118.841814,
+ 42.61085487035816,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8277,
+ "name": "Taoxian Airport",
+ "country": "CN",
+ "city": "Shenyang",
+ "height": 0,
+ "level": 2,
+ "lat": "41.6111730198902",
+ "lng": "123.436288398629",
+ "radius": 13538,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.385046921,
+ 41.6018626153,
+ 0.0
+ ],
+ [
+ 123.291688503,
+ 41.555264954800002,
+ 0.0
+ ],
+ [
+ 123.351875159,
+ 41.507084001499997,
+ 0.0
+ ],
+ [
+ 123.421828371,
+ 41.570413442,
+ 0.0
+ ],
+ [
+ 123.46028422,
+ 41.56304484,
+ 0.0
+ ],
+ [
+ 123.482320007,
+ 41.564958898299999,
+ 0.0
+ ],
+ [
+ 123.502946142,
+ 41.571071203700001,
+ 0.0
+ ],
+ [
+ 123.555778691,
+ 41.599314654600001,
+ 0.0
+ ],
+ [
+ 123.578747996,
+ 41.624333247499997,
+ 0.0
+ ],
+ [
+ 123.583807697,
+ 41.640494931600003,
+ 0.0
+ ],
+ [
+ 123.576665494,
+ 41.672971937299998,
+ 0.0
+ ],
+ [
+ 123.385046921,
+ 41.6018626153,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8277,
+ "name": "Taoxian Airport",
+ "country": "CN",
+ "city": "Shenyang",
+ "height": 0,
+ "level": 2,
+ "lat": "41.6640589982974",
+ "lng": "123.527570284413",
+ "radius": 13716,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.67498046,
+ 41.7197284935,
+ 0.0
+ ],
+ [
+ 123.613144488,
+ 41.769584480600003,
+ 0.0
+ ],
+ [
+ 123.54150495499999,
+ 41.704586581599997,
+ 0.0
+ ],
+ [
+ 123.50468219299999,
+ 41.713620942299997,
+ 0.0
+ ],
+ [
+ 123.482467789,
+ 41.712902918,
+ 0.0
+ ],
+ [
+ 123.442513237,
+ 41.698993500900002,
+ 0.0
+ ],
+ [
+ 123.407531288,
+ 41.675670744100003,
+ 0.0
+ ],
+ [
+ 123.383667633,
+ 41.650515268500001,
+ 0.0
+ ],
+ [
+ 123.378375725,
+ 41.634395029899999,
+ 0.0
+ ],
+ [
+ 123.385046921,
+ 41.6018626153,
+ 0.0
+ ],
+ [
+ 123.576665494,
+ 41.672971937299998,
+ 0.0
+ ],
+ [
+ 123.67498046,
+ 41.7197284935,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8277,
+ "name": "Taoxian Airport",
+ "country": "CN",
+ "city": "Shenyang",
+ "height": 120,
+ "level": 2,
+ "lat": "41.6384281251671",
+ "lng": "123.482064442714",
+ "radius": 24038,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.612687021,
+ 41.831385780600002,
+ 120.0
+ ],
+ [
+ 123.76286770599999,
+ 41.690666961399998,
+ 120.0
+ ],
+ [
+ 123.350998718,
+ 41.445786819699997,
+ 120.0
+ ],
+ [
+ 123.201387604,
+ 41.586505639899997,
+ 120.0
+ ],
+ [
+ 123.612687021,
+ 41.831385780600002,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001371,
+ "name": "Taoxian Airport",
+ "country": "CN",
+ "city": "Shenyang",
+ "height": 500,
+ "level": 2,
+ "lat": "41.638667",
+ "lng": "123.488212",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.488212,
+ 42.088830970743018,
+ 500.0
+ ],
+ [
+ 123.593141479569582,
+ 42.081944537998965,
+ 500.0
+ ],
+ [
+ 123.69481674823281,
+ 42.061498818851433,
+ 500.0
+ ],
+ [
+ 123.790090662639997,
+ 42.028127519009097,
+ 500.0
+ ],
+ [
+ 123.876025909764252,
+ 41.982863660388631,
+ 500.0
+ ],
+ [
+ 123.949989435623095,
+ 41.927105825873731,
+ 500.0
+ ],
+ [
+ 124.009735030752722,
+ 41.862572789479209,
+ 500.0
+ ],
+ [
+ 124.053471271015255,
+ 41.791248275862166,
+ 500.0
+ ],
+ [
+ 124.079912834612514,
+ 41.715317904636692,
+ 500.0
+ ],
+ [
+ 124.088314074636273,
+ 41.637100575015069,
+ 500.0
+ ],
+ [
+ 124.078484548628296,
+ 41.558976635902319,
+ 500.0
+ ],
+ [
+ 124.050786934528389,
+ 41.483315175296738,
+ 500.0
+ ],
+ [
+ 124.006118357841913,
+ 41.412402666346779,
+ 500.0
+ ],
+ [
+ 123.945876600710932,
+ 41.348375044519159,
+ 500.0
+ ],
+ [
+ 123.871912961802934,
+ 41.293155080344917,
+ 500.0
+ ],
+ [
+ 123.786473703478705,
+ 41.248396672739091,
+ 500.0
+ ],
+ [
+ 123.692132086233897,
+ 41.215437433405022,
+ 500.0
+ ],
+ [
+ 123.591712981122484,
+ 41.195260673983277,
+ 500.0
+ ],
+ [
+ 123.488212,
+ 41.188467651141536,
+ 500.0
+ ],
+ [
+ 123.384711018877525,
+ 41.195260673983277,
+ 500.0
+ ],
+ [
+ 123.284291913766111,
+ 41.215437433405022,
+ 500.0
+ ],
+ [
+ 123.189950296521303,
+ 41.248396672739091,
+ 500.0
+ ],
+ [
+ 123.104511038197074,
+ 41.293155080344917,
+ 500.0
+ ],
+ [
+ 123.030547399289077,
+ 41.348375044519159,
+ 500.0
+ ],
+ [
+ 122.970305642158095,
+ 41.412402666346779,
+ 500.0
+ ],
+ [
+ 122.925637065471619,
+ 41.483315175296738,
+ 500.0
+ ],
+ [
+ 122.897939451371712,
+ 41.558976635902319,
+ 500.0
+ ],
+ [
+ 122.888109925363736,
+ 41.637100575015069,
+ 500.0
+ ],
+ [
+ 122.896511165387494,
+ 41.715317904636692,
+ 500.0
+ ],
+ [
+ 122.922952728984754,
+ 41.791248275862166,
+ 500.0
+ ],
+ [
+ 122.966688969247286,
+ 41.862572789479209,
+ 500.0
+ ],
+ [
+ 123.026434564376913,
+ 41.927105825873731,
+ 500.0
+ ],
+ [
+ 123.100398090235757,
+ 41.982863660388631,
+ 500.0
+ ],
+ [
+ 123.186333337360011,
+ 42.028127519009097,
+ 500.0
+ ],
+ [
+ 123.281607251767198,
+ 42.061498818851433,
+ 500.0
+ ],
+ [
+ 123.383282520430427,
+ 42.081944537998965,
+ 500.0
+ ],
+ [
+ 123.488212,
+ 42.088830970743018,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001322,
+ "name": "通化三源浦机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "42.052397",
+ "lng": "125.72237",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.72237,
+ 42.502528405189857,
+ 500.0
+ ],
+ [
+ 125.827988324866809,
+ 42.495641771291261,
+ 500.0
+ ],
+ [
+ 125.930330099615745,
+ 42.475195519282728,
+ 500.0
+ ],
+ [
+ 126.026226697186857,
+ 42.441823556359559,
+ 500.0
+ ],
+ [
+ 126.112720982647161,
+ 42.396559207256161,
+ 500.0
+ ],
+ [
+ 126.187162454651343,
+ 42.340801414247437,
+ 500.0
+ ],
+ [
+ 126.247290414679185,
+ 42.276269313404406,
+ 500.0
+ ],
+ [
+ 126.291302339017008,
+ 42.20494693826398,
+ 500.0
+ ],
+ [
+ 126.317905463780178,
+ 42.129020113746193,
+ 500.0
+ ],
+ [
+ 126.326350464368488,
+ 42.050807802398865,
+ 500.0
+ ],
+ [
+ 126.316446943711426,
+ 41.972690253009439,
+ 500.0
+ ],
+ [
+ 126.288561179579716,
+ 41.897036288147881,
+ 500.0
+ ],
+ [
+ 126.243597181404368,
+ 41.82613196825524,
+ 500.0
+ ],
+ [
+ 126.182962554306343,
+ 41.762112704620854,
+ 500.0
+ ],
+ [
+ 126.108520964783935,
+ 41.706900681575227,
+ 500.0
+ ],
+ [
+ 126.022533166345411,
+ 41.662149207278709,
+ 500.0
+ ],
+ [
+ 125.927588601798192,
+ 41.629195357207117,
+ 500.0
+ ],
+ [
+ 125.826529583935994,
+ 41.609022015510789,
+ 500.0
+ ],
+ [
+ 125.72237,
+ 41.602230163575683,
+ 500.0
+ ],
+ [
+ 125.618210416064002,
+ 41.609022015510789,
+ 500.0
+ ],
+ [
+ 125.517151398201804,
+ 41.629195357207117,
+ 500.0
+ ],
+ [
+ 125.422206833654585,
+ 41.662149207278709,
+ 500.0
+ ],
+ [
+ 125.336219035216061,
+ 41.706900681575227,
+ 500.0
+ ],
+ [
+ 125.261777445693653,
+ 41.762112704620854,
+ 500.0
+ ],
+ [
+ 125.201142818595628,
+ 41.82613196825524,
+ 500.0
+ ],
+ [
+ 125.15617882042028,
+ 41.897036288147881,
+ 500.0
+ ],
+ [
+ 125.12829305628857,
+ 41.972690253009439,
+ 500.0
+ ],
+ [
+ 125.118389535631508,
+ 42.050807802398865,
+ 500.0
+ ],
+ [
+ 125.126834536219818,
+ 42.129020113746193,
+ 500.0
+ ],
+ [
+ 125.153437660982988,
+ 42.20494693826398,
+ 500.0
+ ],
+ [
+ 125.197449585320811,
+ 42.276269313404406,
+ 500.0
+ ],
+ [
+ 125.257577545348653,
+ 42.340801414247437,
+ 500.0
+ ],
+ [
+ 125.332019017352835,
+ 42.396559207256161,
+ 500.0
+ ],
+ [
+ 125.418513302813139,
+ 42.441823556359559,
+ 500.0
+ ],
+ [
+ 125.514409900384251,
+ 42.475195519282728,
+ 500.0
+ ],
+ [
+ 125.616751675133187,
+ 42.495641771291261,
+ 500.0
+ ],
+ [
+ 125.72237,
+ 42.502528405189857,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33565,
+ "name": "通化三源浦机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "42.0157583496214",
+ "lng": "125.694364570702",
+ "radius": 13175,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.651678706,
+ 42.005015715,
+ 0.0
+ ],
+ [
+ 125.569973332,
+ 41.941666637799997,
+ 0.0
+ ],
+ [
+ 125.64217846699999,
+ 41.903800110600002,
+ 0.0
+ ],
+ [
+ 125.69713743699999,
+ 41.977123711200001,
+ 0.0
+ ],
+ [
+ 125.73629512399999,
+ 41.974555398500002,
+ 0.0
+ ],
+ [
+ 125.757786616,
+ 41.979053559100002,
+ 0.0
+ ],
+ [
+ 125.776984441,
+ 41.987530238,
+ 0.0
+ ],
+ [
+ 125.80928283,
+ 42.016108509699997,
+ 0.0
+ ],
+ [
+ 125.828398824,
+ 42.045623086500001,
+ 0.0
+ ],
+ [
+ 125.829675105,
+ 42.062194250799998,
+ 0.0
+ ],
+ [
+ 125.815069425,
+ 42.093270074800003,
+ 0.0
+ ],
+ [
+ 125.651678706,
+ 42.005015715,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33565,
+ "name": "通化三源浦机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "42.0850808828462",
+ "lng": "125.766726108796",
+ "radius": 13019,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.895030332,
+ 42.153290134899997,
+ 0.0
+ ],
+ [
+ 125.822818975,
+ 42.194533073700001,
+ 0.0
+ ],
+ [
+ 125.767857495,
+ 42.119541637499999,
+ 0.0
+ ],
+ [
+ 125.72967082,
+ 42.121264501600002,
+ 0.0
+ ],
+ [
+ 125.70826402199999,
+ 42.116430099200002,
+ 0.0
+ ],
+ [
+ 125.674009561,
+ 42.0955164481,
+ 0.0
+ ],
+ [
+ 125.641638942,
+ 42.053104466400001,
+ 0.0
+ ],
+ [
+ 125.63923257099999,
+ 42.036602705900002,
+ 0.0
+ ],
+ [
+ 125.64265838599999,
+ 42.0202006986,
+ 0.0
+ ],
+ [
+ 125.651678706,
+ 42.005015715,
+ 0.0
+ ],
+ [
+ 125.815069425,
+ 42.093270074800003,
+ 0.0
+ ],
+ [
+ 125.895030332,
+ 42.153290134899997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33565,
+ "name": "通化三源浦机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "42.0469230779771",
+ "lng": "125.733717730003",
+ "radius": 23432,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.782744367,
+ 42.2544998105,
+ 120.0
+ ],
+ [
+ 125.980964235,
+ 42.150623327300003,
+ 120.0
+ ],
+ [
+ 125.68404453,
+ 41.839452274300001,
+ 120.0
+ ],
+ [
+ 125.486793202,
+ 41.943328759,
+ 120.0
+ ],
+ [
+ 125.782744367,
+ 42.2544998105,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4152,
+ "name": "Changbaishan Airport",
+ "country": "CN",
+ "city": "Baishan",
+ "height": 0,
+ "level": 2,
+ "lat": "42.1107371943734",
+ "lng": "127.61273516787",
+ "radius": 13129,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.66476902399999,
+ 42.222341072200003,
+ 0.0
+ ],
+ [
+ 127.57703684,
+ 42.225814548300001,
+ 0.0
+ ],
+ [
+ 127.583737682,
+ 42.142508768500001,
+ 0.0
+ ],
+ [
+ 127.546284099,
+ 42.127535518099997,
+ 0.0
+ ],
+ [
+ 127.531963938,
+ 42.114780843399998,
+ 0.0
+ ],
+ [
+ 127.52258722099999,
+ 42.099710720099999,
+ 0.0
+ ],
+ [
+ 127.518790067,
+ 42.083353406599997,
+ 0.0
+ ],
+ [
+ 127.51712485,
+ 42.060061291899999,
+ 0.0
+ ],
+ [
+ 127.522303679,
+ 42.0332892753,
+ 0.0
+ ],
+ [
+ 127.532776298,
+ 42.018627045899997,
+ 0.0
+ ],
+ [
+ 127.566922292,
+ 41.997663167600003,
+ 0.0
+ ],
+ [
+ 127.638128734,
+ 42.139000541800002,
+ 0.0
+ ],
+ [
+ 127.66476902399999,
+ 42.222341072200003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4152,
+ "name": "Changbaishan Airport",
+ "country": "CN",
+ "city": "Baishan",
+ "height": 0,
+ "level": 2,
+ "lat": "42.0229989893917",
+ "lng": "127.604475424518",
+ "radius": 13194,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.566922292,
+ 41.997663167600003,
+ 0.0
+ ],
+ [
+ 127.540184454,
+ 41.914392829100002,
+ 0.0
+ ],
+ [
+ 127.62958104499999,
+ 41.905816421099999,
+ 0.0
+ ],
+ [
+ 127.622932606,
+ 41.990830063700002,
+ 0.0
+ ],
+ [
+ 127.660486077,
+ 42.006787433699998,
+ 0.0
+ ],
+ [
+ 127.674274622,
+ 42.019846791900001,
+ 0.0
+ ],
+ [
+ 127.683048793,
+ 42.035111837199999,
+ 0.0
+ ],
+ [
+ 127.691094849,
+ 42.089011542100003,
+ 0.0
+ ],
+ [
+ 127.673651222,
+ 42.119272710799997,
+ 0.0
+ ],
+ [
+ 127.638128734,
+ 42.139000541800002,
+ 0.0
+ ],
+ [
+ 127.566922292,
+ 41.997663167600003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4152,
+ "name": "Changbaishan Airport",
+ "country": "CN",
+ "city": "Baishan",
+ "height": 120,
+ "level": 2,
+ "lat": "42.0666922310958",
+ "lng": "127.603422439432",
+ "radius": 23451,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.51186646399999,
+ 42.266380463700003,
+ 120.0
+ ],
+ [
+ 127.7533064,
+ 42.245953976599999,
+ 120.0
+ ],
+ [
+ 127.694220755,
+ 41.866885571,
+ 120.0
+ ],
+ [
+ 127.454218177,
+ 41.887312058699997,
+ 120.0
+ ],
+ [
+ 127.51186646399999,
+ 42.266380463700003,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001305,
+ "name": "Changbaishan Airport",
+ "country": "CN",
+ "city": "Baishan",
+ "height": 500,
+ "level": 2,
+ "lat": "42.068881",
+ "lng": "127.60314",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.60314,
+ 42.519011106741736,
+ 500.0
+ ],
+ [
+ 127.708786072508033,
+ 42.512124464653347,
+ 500.0
+ ],
+ [
+ 127.811154694936874,
+ 42.491678190912005,
+ 500.0
+ ],
+ [
+ 127.907076374744292,
+ 42.458306200808224,
+ 500.0
+ ],
+ [
+ 127.993593178488538,
+ 42.413041831243994,
+ 500.0
+ ],
+ [
+ 128.068053902009012,
+ 42.357284038937195,
+ 500.0
+ ],
+ [
+ 128.128197263181562,
+ 42.292751974513344,
+ 500.0
+ ],
+ [
+ 128.172220291264182,
+ 42.221429683933742,
+ 500.0
+ ],
+ [
+ 128.198829922705272,
+ 42.145503000390086,
+ 500.0
+ ],
+ [
+ 128.207276684890871,
+ 42.067290889007865,
+ 500.0
+ ],
+ [
+ 128.19737018270942,
+ 41.989173594596153,
+ 500.0
+ ],
+ [
+ 128.169476839054454,
+ 41.913519929115488,
+ 500.0
+ ],
+ [
+ 128.124500940740035,
+ 41.842615936489366,
+ 500.0
+ ],
+ [
+ 128.063850488622023,
+ 41.778597007017289,
+ 500.0
+ ],
+ [
+ 127.98938964740104,
+ 41.723385301550088,
+ 500.0
+ ],
+ [
+ 127.903379754274638,
+ 41.678634104582571,
+ 500.0
+ ],
+ [
+ 127.808410903822079,
+ 41.645680470107649,
+ 500.0
+ ],
+ [
+ 127.707326111307609,
+ 41.625507265148194,
+ 500.0
+ ],
+ [
+ 127.60314,
+ 41.618715460060763,
+ 500.0
+ ],
+ [
+ 127.498953888692384,
+ 41.625507265148194,
+ 500.0
+ ],
+ [
+ 127.397869096177914,
+ 41.645680470107649,
+ 500.0
+ ],
+ [
+ 127.302900245725354,
+ 41.678634104582571,
+ 500.0
+ ],
+ [
+ 127.216890352598952,
+ 41.723385301550088,
+ 500.0
+ ],
+ [
+ 127.142429511377983,
+ 41.778597007017289,
+ 500.0
+ ],
+ [
+ 127.081779059259944,
+ 41.842615936489366,
+ 500.0
+ ],
+ [
+ 127.036803160945524,
+ 41.913519929115488,
+ 500.0
+ ],
+ [
+ 127.008909817290558,
+ 41.989173594596153,
+ 500.0
+ ],
+ [
+ 126.999003315109107,
+ 42.067290889007865,
+ 500.0
+ ],
+ [
+ 127.00745007729472,
+ 42.145503000390086,
+ 500.0
+ ],
+ [
+ 127.034059708735825,
+ 42.221429683933742,
+ 500.0
+ ],
+ [
+ 127.07808273681843,
+ 42.292751974513344,
+ 500.0
+ ],
+ [
+ 127.13822609799098,
+ 42.357284038937195,
+ 500.0
+ ],
+ [
+ 127.212686821511454,
+ 42.413041831243994,
+ 500.0
+ ],
+ [
+ 127.2992036252557,
+ 42.458306200808224,
+ 500.0
+ ],
+ [
+ 127.395125305063118,
+ 42.491678190912005,
+ 500.0
+ ],
+ [
+ 127.497493927491959,
+ 42.512124464653347,
+ 500.0
+ ],
+ [
+ 127.60314,
+ 42.519011106741736,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010359,
+ "name": "Samjiyŏn Airport",
+ "country": "KP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "41.906397",
+ "lng": "128.408892",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.408892,
+ 42.356539902537186,
+ 500.0
+ ],
+ [
+ 128.514265578885158,
+ 42.349653340584396,
+ 500.0
+ ],
+ [
+ 128.616370545332103,
+ 42.329207279369143,
+ 500.0
+ ],
+ [
+ 128.712045905902016,
+ 42.295835554613852,
+ 500.0
+ ],
+ [
+ 128.798341568662607,
+ 42.250571383629605,
+ 500.0
+ ],
+ [
+ 128.872613231359225,
+ 42.194813581186068,
+ 500.0
+ ],
+ [
+ 128.932605343225447,
+ 42.130281154879853,
+ 500.0
+ ],
+ [
+ 128.976519323790342,
+ 42.058958028601026,
+ 500.0
+ ],
+ [
+ 129.003065052733007,
+ 41.983029954316621,
+ 500.0
+ ],
+ [
+ 129.011494511432744,
+ 41.904815871926566,
+ 500.0
+ ],
+ [
+ 129.001617285982235,
+ 41.826696065491348,
+ 500.0
+ ],
+ [
+ 128.973798374502252,
+ 41.751039451435219,
+ 500.0
+ ],
+ [
+ 128.928939340088704,
+ 41.680132236246905,
+ 500.0
+ ],
+ [
+ 128.868444297488196,
+ 41.616110016770513,
+ 500.0
+ ],
+ [
+ 128.794172518873467,
+ 41.560895184880877,
+ 500.0
+ ],
+ [
+ 128.708379609250301,
+ 41.516141257913908,
+ 500.0
+ ],
+ [
+ 128.613649262271082,
+ 41.483185501223673,
+ 500.0
+ ],
+ [
+ 128.512817594279596,
+ 41.463010950339232,
+ 500.0
+ ],
+ [
+ 128.408892,
+ 41.456218684128331,
+ 500.0
+ ],
+ [
+ 128.304966405720421,
+ 41.463010950339232,
+ 500.0
+ ],
+ [
+ 128.204134737728936,
+ 41.483185501223673,
+ 500.0
+ ],
+ [
+ 128.109404390749717,
+ 41.516141257913908,
+ 500.0
+ ],
+ [
+ 128.023611481126551,
+ 41.560895184880877,
+ 500.0
+ ],
+ [
+ 127.949339702511807,
+ 41.616110016770513,
+ 500.0
+ ],
+ [
+ 127.888844659911328,
+ 41.680132236246905,
+ 500.0
+ ],
+ [
+ 127.843985625497751,
+ 41.751039451435219,
+ 500.0
+ ],
+ [
+ 127.816166714017768,
+ 41.826696065491348,
+ 500.0
+ ],
+ [
+ 127.806289488567288,
+ 41.904815871926566,
+ 500.0
+ ],
+ [
+ 127.814718947267011,
+ 41.983029954316621,
+ 500.0
+ ],
+ [
+ 127.841264676209676,
+ 42.058958028601026,
+ 500.0
+ ],
+ [
+ 127.885178656774585,
+ 42.130281154879853,
+ 500.0
+ ],
+ [
+ 127.945170768640779,
+ 42.194813581186068,
+ 500.0
+ ],
+ [
+ 128.01944243133741,
+ 42.250571383629605,
+ 500.0
+ ],
+ [
+ 128.105738094098001,
+ 42.295835554613852,
+ 500.0
+ ],
+ [
+ 128.201413454667914,
+ 42.329207279369143,
+ 500.0
+ ],
+ [
+ 128.303518421114859,
+ 42.349653340584396,
+ 500.0
+ ],
+ [
+ 128.408892,
+ 42.356539902537186,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288229,
+ "name": "Samjiyŏn Airport",
+ "country": "KP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "41.9071685367575",
+ "lng": "128.409833698559",
+ "radius": 4684,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.46203067,
+ 41.923493846900001,
+ 0.0
+ ],
+ [
+ 128.36490350299999,
+ 41.881544192500002,
+ 0.0
+ ],
+ [
+ 128.357629804,
+ 41.890879141799999,
+ 0.0
+ ],
+ [
+ 128.454747157000014,
+ 41.932826623,
+ 0.0
+ ],
+ [
+ 128.46203067,
+ 41.923493846900001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288229,
+ "name": "Samjiyŏn Airport",
+ "country": "KP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "41.877501124262",
+ "lng": "128.341103666776",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.36490350299999,
+ 41.881544192500002,
+ 60.0
+ ],
+ [
+ 128.33056113,
+ 41.861108523,
+ 60.0
+ ],
+ [
+ 128.31675630399999,
+ 41.878812046500002,
+ 60.0
+ ],
+ [
+ 128.357629804,
+ 41.890879141799999,
+ 60.0
+ ],
+ [
+ 128.36490350299999,
+ 41.881544192500002,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288229,
+ "name": "Samjiyŏn Airport",
+ "country": "KP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "41.9368730449517",
+ "lng": "128.478565706793",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.502934011,
+ 41.9355586454,
+ 60.0
+ ],
+ [
+ 128.46203067,
+ 41.923493846900001,
+ 60.0
+ ],
+ [
+ 128.454747157000014,
+ 41.932826623,
+ 60.0
+ ],
+ [
+ 128.489128115,
+ 41.953262308100001,
+ 60.0
+ ],
+ [
+ 128.502934011,
+ 41.9355586454,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288229,
+ "name": "Samjiyŏn Airport",
+ "country": "KP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "41.8497918637662",
+ "lng": "128.277053084062",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.33056113,
+ 41.861108523,
+ 150.0
+ ],
+ [
+ 128.250514251999988,
+ 41.813385558299998,
+ 150.0
+ ],
+ [
+ 128.22144486900001,
+ 41.850599171799999,
+ 150.0
+ ],
+ [
+ 128.31675630399999,
+ 41.878812046500002,
+ 150.0
+ ],
+ [
+ 128.33056113,
+ 41.861108523,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288229,
+ "name": "Samjiyŏn Airport",
+ "country": "KP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "41.9645430009737",
+ "lng": "128.542733279605",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.59843528499999,
+ 41.963653345600001,
+ 150.0
+ ],
+ [
+ 128.502934011,
+ 41.9355586454,
+ 150.0
+ ],
+ [
+ 128.489128115,
+ 41.953262308100001,
+ 150.0
+ ],
+ [
+ 128.56943612399999,
+ 42.000905635099997,
+ 150.0
+ ],
+ [
+ 128.59843528499999,
+ 41.963653345600001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288230,
+ "name": "Samjiyŏn Airport",
+ "country": "KP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "41.9085239733607",
+ "lng": "128.408776692054",
+ "radius": 5629,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.451289738000014,
+ 41.883505722199999,
+ 0.0
+ ],
+ [
+ 128.407622446,
+ 41.865560139400003,
+ 0.0
+ ],
+ [
+ 128.39774836,
+ 41.863984436899997,
+ 0.0
+ ],
+ [
+ 128.377768777999989,
+ 41.865520889,
+ 0.0
+ ],
+ [
+ 128.36035226300001,
+ 41.872973614099998,
+ 0.0
+ ],
+ [
+ 128.34850756599999,
+ 41.885055706599999,
+ 0.0
+ ],
+ [
+ 128.344284388,
+ 41.89967998,
+ 0.0
+ ],
+ [
+ 128.34531722599999,
+ 41.907160965,
+ 0.0
+ ],
+ [
+ 128.35345145299999,
+ 41.920839882099997,
+ 0.0
+ ],
+ [
+ 128.360198301999986,
+ 41.926439585600001,
+ 0.0
+ ],
+ [
+ 128.402731432,
+ 41.9457191065,
+ 0.0
+ ],
+ [
+ 128.421840986,
+ 41.950382803399997,
+ 0.0
+ ],
+ [
+ 128.44184890299999,
+ 41.948859060099998,
+ 0.0
+ ],
+ [
+ 128.45929031899999,
+ 41.941411754800001,
+ 0.0
+ ],
+ [
+ 128.466072567999987,
+ 41.935834703,
+ 0.0
+ ],
+ [
+ 128.47429137200001,
+ 41.922183165600003,
+ 0.0
+ ],
+ [
+ 128.47536968,
+ 41.9147057152,
+ 0.0
+ ],
+ [
+ 128.474335231999987,
+ 41.9072248441,
+ 0.0
+ ],
+ [
+ 128.471233955,
+ 41.900067446599998,
+ 0.0
+ ],
+ [
+ 128.459459603999989,
+ 41.8879458089,
+ 0.0
+ ],
+ [
+ 128.451289738000014,
+ 41.883505722199999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010092,
+ "name": "Chongjin Airport",
+ "country": "KP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "41.4297",
+ "lng": "129.6488",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.6488,
+ 41.879880400064046,
+ 500.0
+ ],
+ [
+ 129.753387035667657,
+ 41.872994065771991,
+ 500.0
+ ],
+ [
+ 129.854730963999089,
+ 41.852548606745984,
+ 500.0
+ ],
+ [
+ 129.949695320241858,
+ 41.81917762814745,
+ 500.0
+ ],
+ [
+ 130.035352644425728,
+ 41.773914000797049,
+ 500.0
+ ],
+ [
+ 130.109078555935071,
+ 41.71815612829527,
+ 500.0
+ ],
+ [
+ 130.168634048831223,
+ 41.653622604121878,
+ 500.0
+ ],
+ [
+ 130.21223321824101,
+ 41.582296999051295,
+ 500.0
+ ],
+ [
+ 130.238594443958874,
+ 41.506364830653581,
+ 500.0
+ ],
+ [
+ 130.246973909600655,
+ 41.428144967125853,
+ 500.0
+ ],
+ [
+ 130.237181152417577,
+ 41.350017808122914,
+ 500.0
+ ],
+ [
+ 130.209577062800804,
+ 41.274352575080272,
+ 500.0
+ ],
+ [
+ 130.165055345611563,
+ 41.203435948245151,
+ 500.0
+ ],
+ [
+ 130.105008900612859,
+ 41.139404125922063,
+ 500.0
+ ],
+ [
+ 130.031282878236482,
+ 41.084180172469544,
+ 500.0
+ ],
+ [
+ 129.946116336297024,
+ 41.039418282851649,
+ 500.0
+ ],
+ [
+ 129.852074489329993,
+ 41.006456337463298,
+ 500.0
+ ],
+ [
+ 129.751973535764478,
+ 40.986277862136376,
+ 500.0
+ ],
+ [
+ 129.6488,
+ 40.979484251461606,
+ 500.0
+ ],
+ [
+ 129.545626464235511,
+ 40.986277862136376,
+ 500.0
+ ],
+ [
+ 129.445525510669995,
+ 41.006456337463298,
+ 500.0
+ ],
+ [
+ 129.351483663702965,
+ 41.039418282851649,
+ 500.0
+ ],
+ [
+ 129.266317121763507,
+ 41.084180172469544,
+ 500.0
+ ],
+ [
+ 129.19259109938713,
+ 41.139404125922063,
+ 500.0
+ ],
+ [
+ 129.132544654388425,
+ 41.203435948245151,
+ 500.0
+ ],
+ [
+ 129.088022937199185,
+ 41.274352575080272,
+ 500.0
+ ],
+ [
+ 129.060418847582412,
+ 41.350017808122914,
+ 500.0
+ ],
+ [
+ 129.050626090399334,
+ 41.428144967125853,
+ 500.0
+ ],
+ [
+ 129.059005556041114,
+ 41.506364830653581,
+ 500.0
+ ],
+ [
+ 129.085366781758978,
+ 41.582296999051295,
+ 500.0
+ ],
+ [
+ 129.128965951168766,
+ 41.653622604121878,
+ 500.0
+ ],
+ [
+ 129.188521444064918,
+ 41.71815612829527,
+ 500.0
+ ],
+ [
+ 129.26224735557426,
+ 41.773914000797049,
+ 500.0
+ ],
+ [
+ 129.34790467975813,
+ 41.81917762814745,
+ 500.0
+ ],
+ [
+ 129.4428690360009,
+ 41.852548606745984,
+ 500.0
+ ],
+ [
+ 129.544212964332331,
+ 41.872994065771991,
+ 500.0
+ ],
+ [
+ 129.6488,
+ 41.879880400064046,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288314,
+ "name": "Chongjin Airport",
+ "country": "KP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "41.4291764029047",
+ "lng": "129.648168214553",
+ "radius": 5244,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.696382648999986,
+ 41.418545058299998,
+ 0.0
+ ],
+ [
+ 129.679698212,
+ 41.399828322399998,
+ 0.0
+ ],
+ [
+ 129.665404915000011,
+ 41.389398483299999,
+ 0.0
+ ],
+ [
+ 129.656412155,
+ 41.386076408800001,
+ 0.0
+ ],
+ [
+ 129.636680286,
+ 41.383936544299999,
+ 0.0
+ ],
+ [
+ 129.617492785,
+ 41.387999982899998,
+ 0.0
+ ],
+ [
+ 129.602162846999988,
+ 41.3975651533,
+ 0.0
+ ],
+ [
+ 129.593340194,
+ 41.410980096099998,
+ 0.0
+ ],
+ [
+ 129.591899469,
+ 41.418422452,
+ 0.0
+ ],
+ [
+ 129.592553554,
+ 41.425926817,
+ 0.0
+ ],
+ [
+ 129.59527457199999,
+ 41.433165179600003,
+ 0.0
+ ],
+ [
+ 129.622966412000011,
+ 41.464272555299999,
+ 0.0
+ ],
+ [
+ 129.639838185,
+ 41.472267689299997,
+ 0.0
+ ],
+ [
+ 129.659593279,
+ 41.4744263483,
+ 0.0
+ ],
+ [
+ 129.678810782,
+ 41.470374713600002,
+ 0.0
+ ],
+ [
+ 129.687158075000013,
+ 41.466199385899998,
+ 0.0
+ ],
+ [
+ 129.699520295000013,
+ 41.454455328599998,
+ 0.0
+ ],
+ [
+ 129.702995259,
+ 41.4474003805,
+ 0.0
+ ],
+ [
+ 129.704436859,
+ 41.439958049700003,
+ 0.0
+ ],
+ [
+ 129.703782773,
+ 41.432453677799998,
+ 0.0
+ ],
+ [
+ 129.696382648999986,
+ 41.418545058299998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288313,
+ "name": "Chongjin Airport",
+ "country": "KP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "41.4291743867122",
+ "lng": "129.648172242391",
+ "radius": 4292,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.682469372000014,
+ 41.4579674525,
+ 0.0
+ ],
+ [
+ 129.62583570000001,
+ 41.394398109100003,
+ 0.0
+ ],
+ [
+ 129.61387305,
+ 41.400392888600003,
+ 0.0
+ ],
+ [
+ 129.67049346499999,
+ 41.463960505700001,
+ 0.0
+ ],
+ [
+ 129.682469372000014,
+ 41.4579674525,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288313,
+ "name": "Chongjin Airport",
+ "country": "KP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "41.3829627566755",
+ "lng": "129.607004877382",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.62583570000001,
+ 41.394398109100003,
+ 60.0
+ ],
+ [
+ 129.607233912999988,
+ 41.364787808,
+ 60.0
+ ],
+ [
+ 129.584544537,
+ 41.376155916099997,
+ 60.0
+ ],
+ [
+ 129.61387305,
+ 41.400392888600003,
+ 60.0
+ ],
+ [
+ 129.62583570000001,
+ 41.394398109100003,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288313,
+ "name": "Chongjin Airport",
+ "country": "KP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "41.4753965359202",
+ "lng": "129.689345253403",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.71183960799999,
+ 41.482201199,
+ 60.0
+ ],
+ [
+ 129.682469372000014,
+ 41.4579674525,
+ 60.0
+ ],
+ [
+ 129.67049346499999,
+ 41.463960505700001,
+ 60.0
+ ],
+ [
+ 129.689124584000012,
+ 41.493570490700002,
+ 60.0
+ ],
+ [
+ 129.71183960799999,
+ 41.482201199,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288313,
+ "name": "Chongjin Airport",
+ "country": "KP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "41.3370799941467",
+ "lng": "129.566201214987",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.607233912999988,
+ 41.364787808,
+ 150.0
+ ],
+ [
+ 129.56389550099999,
+ 41.295685477500001,
+ 150.0
+ ],
+ [
+ 129.516196271000013,
+ 41.319574064500003,
+ 150.0
+ ],
+ [
+ 129.584544537,
+ 41.376155916099997,
+ 150.0
+ ],
+ [
+ 129.607233912999988,
+ 41.364787808,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288313,
+ "name": "Chongjin Airport",
+ "country": "KP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "41.5212606862702",
+ "lng": "129.730270400609",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.78045565299999,
+ 41.538717511100003,
+ 150.0
+ ],
+ [
+ 129.71183960799999,
+ 41.482201199,
+ 150.0
+ ],
+ [
+ 129.689124584000012,
+ 41.493570490700002,
+ 150.0
+ ],
+ [
+ 129.732663516,
+ 41.562648742900002,
+ 150.0
+ ],
+ [
+ 129.78045565299999,
+ 41.538717511100003,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288679,
+ "name": "Naryn Airport",
+ "country": "KG",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "41.441502",
+ "lng": "76.1306",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 76.1306,
+ 41.4460039698182,
+ 0.0
+ ],
+ [
+ 76.131638993509199,
+ 41.445935570115772,
+ 0.0
+ ],
+ [
+ 76.132646411344581,
+ 41.445732449717426,
+ 0.0
+ ],
+ [
+ 76.133591638013186,
+ 41.445400781538893,
+ 0.0
+ ],
+ [
+ 76.134445949116156,
+ 41.444950644996482,
+ 0.0
+ ],
+ [
+ 76.135183384627496,
+ 41.44439571952617,
+ 0.0
+ ],
+ [
+ 76.135781537943402,
+ 41.443752868667723,
+ 0.0
+ ],
+ [
+ 76.13622223669546,
+ 41.443041627383828,
+ 0.0
+ ],
+ [
+ 76.136492094640971,
+ 41.442283608226852,
+ 0.0
+ ],
+ [
+ 76.136582917894671,
+ 41.441501844429943,
+ 0.0
+ ],
+ [
+ 76.136491953218624,
+ 41.440720089908446,
+ 0.0
+ ],
+ [
+ 76.136221970908394,
+ 41.439962097459009,
+ 0.0
+ ],
+ [
+ 76.135781179849474,
+ 41.439250897093402,
+ 0.0
+ ],
+ [
+ 76.135182977418083,
+ 41.438608096428702,
+ 0.0
+ ],
+ [
+ 76.134445541906771,
+ 41.438053224373448,
+ 0.0
+ ],
+ [
+ 76.133591279919258,
+ 41.437603138024755,
+ 0.0
+ ],
+ [
+ 76.132646145557516,
+ 41.437271510764546,
+ 0.0
+ ],
+ [
+ 76.131638852086851,
+ 41.437068417073718,
+ 0.0
+ ],
+ [
+ 76.1306,
+ 41.437000026646714,
+ 0.0
+ ],
+ [
+ 76.129561147913151,
+ 41.437068417073718,
+ 0.0
+ ],
+ [
+ 76.128553854442487,
+ 41.437271510764546,
+ 0.0
+ ],
+ [
+ 76.127608720080744,
+ 41.437603138024755,
+ 0.0
+ ],
+ [
+ 76.126754458093231,
+ 41.438053224373448,
+ 0.0
+ ],
+ [
+ 76.126017022581919,
+ 41.438608096428702,
+ 0.0
+ ],
+ [
+ 76.125418820150529,
+ 41.439250897093402,
+ 0.0
+ ],
+ [
+ 76.124978029091608,
+ 41.439962097459009,
+ 0.0
+ ],
+ [
+ 76.124708046781379,
+ 41.440720089908446,
+ 0.0
+ ],
+ [
+ 76.124617082105331,
+ 41.441501844429943,
+ 0.0
+ ],
+ [
+ 76.124707905359031,
+ 41.442283608226852,
+ 0.0
+ ],
+ [
+ 76.124977763304543,
+ 41.443041627383828,
+ 0.0
+ ],
+ [
+ 76.125418462056601,
+ 41.443752868667723,
+ 0.0
+ ],
+ [
+ 76.126016615372507,
+ 41.44439571952617,
+ 0.0
+ ],
+ [
+ 76.126754050883847,
+ 41.444950644996482,
+ 0.0
+ ],
+ [
+ 76.127608361986816,
+ 41.445400781538893,
+ 0.0
+ ],
+ [
+ 76.128553588655421,
+ 41.445732449717426,
+ 0.0
+ ],
+ [
+ 76.129561006490803,
+ 41.445935570115772,
+ 0.0
+ ],
+ [
+ 76.1306,
+ 41.4460039698182,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30293235,
+ "name": "ISSYK KUL",
+ "country": "KG",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "42.5874968371427",
+ "lng": "76.7133345166873",
+ "radius": 4990,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 76.688012050500006,
+ 42.619540184199998,
+ 0.0
+ ],
+ [
+ 76.721380981600007,
+ 42.6258741153,
+ 0.0
+ ],
+ [
+ 76.731596963200005,
+ 42.625643682400003,
+ 0.0
+ ],
+ [
+ 76.750727967200007,
+ 42.620585117399997,
+ 0.0
+ ],
+ [
+ 76.758805728200002,
+ 42.615978416700003,
+ 0.0
+ ],
+ [
+ 76.770235108700007,
+ 42.603609347099997,
+ 0.0
+ ],
+ [
+ 76.773087755700004,
+ 42.5963880738,
+ 0.0
+ ],
+ [
+ 76.773838101300001,
+ 42.588888012699996,
+ 0.0
+ ],
+ [
+ 76.768996972799997,
+ 42.574360585599997,
+ 0.0
+ ],
+ [
+ 76.756553764700001,
+ 42.562538034600003,
+ 0.0
+ ],
+ [
+ 76.738653841800001,
+ 42.555460965,
+ 0.0
+ ],
+ [
+ 76.705252438399995,
+ 42.5491241856,
+ 0.0
+ ],
+ [
+ 76.685134638099996,
+ 42.551150327,
+ 0.0
+ ],
+ [
+ 76.675941494499995,
+ 42.554420456400003,
+ 0.0
+ ],
+ [
+ 76.661275833399998,
+ 42.564767519699998,
+ 0.0
+ ],
+ [
+ 76.656444211199997,
+ 42.571392781699998,
+ 0.0
+ ],
+ [
+ 76.6528319767,
+ 42.586112754,
+ 0.0
+ ],
+ [
+ 76.654210623400004,
+ 42.593564321800002,
+ 0.0
+ ],
+ [
+ 76.663042303099999,
+ 42.607036151499997,
+ 0.0
+ ],
+ [
+ 76.670110272800002,
+ 42.612467202700003,
+ 0.0
+ ],
+ [
+ 76.688012050500006,
+ 42.619540184199998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008837,
+ "name": "ISSYK KUL",
+ "country": "KG",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "42.58571389",
+ "lng": "76.69810556",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 76.69810556,
+ 43.03580325264852,
+ 500.0
+ ],
+ [
+ 76.804633599100313,
+ 43.028916346745092,
+ 500.0
+ ],
+ [
+ 76.907855578161971,
+ 43.008469371432568,
+ 500.0
+ ],
+ [
+ 77.004574491369667,
+ 42.975096498506062,
+ 500.0
+ ],
+ [
+ 77.091807022171636,
+ 42.929831450446308,
+ 500.0
+ ],
+ [
+ 77.166879626745725,
+ 42.874073641749703,
+ 500.0
+ ],
+ [
+ 77.227512474405714,
+ 42.809542684526967,
+ 500.0
+ ],
+ [
+ 77.271888388713364,
+ 42.73822301899262,
+ 500.0
+ ],
+ [
+ 77.29870478569714,
+ 42.662300741347337,
+ 500.0
+ ],
+ [
+ 77.307207493425892,
+ 42.584094899717506,
+ 500.0
+ ],
+ [
+ 77.297206184481979,
+ 42.5059856146176,
+ 500.0
+ ],
+ [
+ 77.269071899381515,
+ 42.430341364035506,
+ 500.0
+ ],
+ [
+ 77.223717745352047,
+ 42.359447671086933,
+ 500.0
+ ],
+ [
+ 77.162564303958717,
+ 42.295439263805306,
+ 500.0
+ ],
+ [
+ 77.087491575799049,
+ 42.240237561968378,
+ 500.0
+ ],
+ [
+ 77.000779449386371,
+ 42.195495102993952,
+ 500.0
+ ],
+ [
+ 76.905038732979662,
+ 42.162548262625684,
+ 500.0
+ ],
+ [
+ 76.803134765620271,
+ 42.142379367115268,
+ 500.0
+ ],
+ [
+ 76.69810556,
+ 42.135589038569975,
+ 500.0
+ ],
+ [
+ 76.593076354379733,
+ 42.142379367115268,
+ 500.0
+ ],
+ [
+ 76.491172387020342,
+ 42.162548262625684,
+ 500.0
+ ],
+ [
+ 76.395431670613632,
+ 42.195495102993952,
+ 500.0
+ ],
+ [
+ 76.308719544200954,
+ 42.240237561968378,
+ 500.0
+ ],
+ [
+ 76.233646816041286,
+ 42.295439263805306,
+ 500.0
+ ],
+ [
+ 76.172493374647956,
+ 42.359447671086933,
+ 500.0
+ ],
+ [
+ 76.127139220618488,
+ 42.430341364035506,
+ 500.0
+ ],
+ [
+ 76.099004935518025,
+ 42.5059856146176,
+ 500.0
+ ],
+ [
+ 76.089003626574112,
+ 42.584094899717506,
+ 500.0
+ ],
+ [
+ 76.097506334302864,
+ 42.662300741347337,
+ 500.0
+ ],
+ [
+ 76.12432273128664,
+ 42.73822301899262,
+ 500.0
+ ],
+ [
+ 76.16869864559429,
+ 42.809542684526967,
+ 500.0
+ ],
+ [
+ 76.229331493254278,
+ 42.874073641749703,
+ 500.0
+ ],
+ [
+ 76.304404097828368,
+ 42.929831450446308,
+ 500.0
+ ],
+ [
+ 76.391636628630337,
+ 42.975096498506062,
+ 500.0
+ ],
+ [
+ 76.488355541838033,
+ 43.008469371432568,
+ 500.0
+ ],
+ [
+ 76.591577520899691,
+ 43.028916346745092,
+ 500.0
+ ],
+ [
+ 76.69810556,
+ 43.03580325264852,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296040,
+ "name": "ISSYK KUL",
+ "country": "KG",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "42.5874838938764",
+ "lng": "76.7133396340109",
+ "radius": 4039,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 76.664439311899997,
+ 42.582639587,
+ 0.0
+ ],
+ [
+ 76.758139540499997,
+ 42.602718633099997,
+ 0.0
+ ],
+ [
+ 76.762238458100001,
+ 42.592357165899998,
+ 0.0
+ ],
+ [
+ 76.668533031500004,
+ 42.5722772887,
+ 0.0
+ ],
+ [
+ 76.664439311899997,
+ 42.582639587,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296040,
+ "name": "ISSYK KUL",
+ "country": "KG",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "42.6023881773651",
+ "lng": "76.7828275749242",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 76.758139540499997,
+ 42.602718633099997,
+ 60.0
+ ],
+ [
+ 76.798541019499993,
+ 42.6164090933,
+ 60.0
+ ],
+ [
+ 76.806302671,
+ 42.596755090599999,
+ 60.0
+ ],
+ [
+ 76.762238458100001,
+ 42.592357165899998,
+ 60.0
+ ],
+ [
+ 76.758139540499997,
+ 42.602718633099997,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296040,
+ "name": "ISSYK KUL",
+ "country": "KG",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "42.5726082260007",
+ "lng": "76.6438564299365",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 76.620386542099993,
+ 42.578233722,
+ 60.0
+ ],
+ [
+ 76.664439311899997,
+ 42.582639587,
+ 60.0
+ ],
+ [
+ 76.668533031500004,
+ 42.5722772887,
+ 60.0
+ ],
+ [
+ 76.6281638918,
+ 42.558580840099999,
+ 60.0
+ ],
+ [
+ 76.620386542099993,
+ 42.578233722,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296040,
+ "name": "ISSYK KUL",
+ "country": "KG",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "42.6177750022676",
+ "lng": "76.854806580903",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 76.798541019499993,
+ 42.6164090933,
+ 150.0
+ ],
+ [
+ 76.89288019599999,
+ 42.648298250499998,
+ 150.0
+ ],
+ [
+ 76.909143272400001,
+ 42.606951234900002,
+ 150.0
+ ],
+ [
+ 76.806302671,
+ 42.596755090599999,
+ 150.0
+ ],
+ [
+ 76.798541019499993,
+ 42.6164090933,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296040,
+ "name": "ISSYK KUL",
+ "country": "KG",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "42.5571625616644",
+ "lng": "76.5719522810699",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 76.517621037599994,
+ 42.567887763599998,
+ 150.0
+ ],
+ [
+ 76.620386542099993,
+ 42.578233722,
+ 150.0
+ ],
+ [
+ 76.6281638918,
+ 42.558580840099999,
+ 150.0
+ ],
+ [
+ 76.534038174599999,
+ 42.526567401500003,
+ 150.0
+ ],
+ [
+ 76.517621037599994,
+ 42.567887763599998,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1015,
+ "name": "Aksu Airport",
+ "country": "CN",
+ "city": "Aksu",
+ "height": 0,
+ "level": 2,
+ "lat": "41.2669810647286",
+ "lng": "80.2306807411123",
+ "radius": 13252,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 80.1957433587,
+ 41.287675792500004,
+ 0.0
+ ],
+ [
+ 80.082457539200007,
+ 41.309406843300003,
+ 0.0
+ ],
+ [
+ 80.075560951100002,
+ 41.242387837800003,
+ 0.0
+ ],
+ [
+ 80.192301104699993,
+ 41.245675278100002,
+ 0.0
+ ],
+ [
+ 80.210035916500004,
+ 41.221961491400002,
+ 0.0
+ ],
+ [
+ 80.226738623900005,
+ 41.211115170399999,
+ 0.0
+ ],
+ [
+ 80.246599344700002,
+ 41.203887136799999,
+ 0.0
+ ],
+ [
+ 80.301597604299999,
+ 41.195768847700002,
+ 0.0
+ ],
+ [
+ 80.340180502600006,
+ 41.2015270192,
+ 0.0
+ ],
+ [
+ 80.358857686600004,
+ 41.2103616582,
+ 0.0
+ ],
+ [
+ 80.384178672499999,
+ 41.237204173800002,
+ 0.0
+ ],
+ [
+ 80.1957433587,
+ 41.287675792500004,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1015,
+ "name": "Aksu Airport",
+ "country": "CN",
+ "city": "Aksu",
+ "height": 0,
+ "level": 2,
+ "lat": "41.2590441359214",
+ "lng": "80.349801679649",
+ "radius": 13262,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 80.497504939199999,
+ 41.215576903,
+ 0.0
+ ],
+ [
+ 80.504401540900005,
+ 41.285970002500001,
+ 0.0
+ ],
+ [
+ 80.3910565013,
+ 41.2793104824,
+ 0.0
+ ],
+ [
+ 80.370738284599994,
+ 41.307451216899999,
+ 0.0
+ ],
+ [
+ 80.353668948399999,
+ 41.317992635099998,
+ 0.0
+ ],
+ [
+ 80.311738452499995,
+ 41.327564424,
+ 0.0
+ ],
+ [
+ 80.278404208799998,
+ 41.329231078699998,
+ 0.0
+ ],
+ [
+ 80.239685037699999,
+ 41.323432609800001,
+ 0.0
+ ],
+ [
+ 80.221000461200006,
+ 41.314568213400001,
+ 0.0
+ ],
+ [
+ 80.1957433587,
+ 41.287675792500004,
+ 0.0
+ ],
+ [
+ 80.384178672499999,
+ 41.237204173800002,
+ 0.0
+ ],
+ [
+ 80.497504939199999,
+ 41.215576903,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1015,
+ "name": "Aksu Airport",
+ "country": "CN",
+ "city": "Aksu",
+ "height": 120,
+ "level": 2,
+ "lat": "41.2628141930865",
+ "lng": "80.2899014037673",
+ "radius": 23626,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 80.5595694533,
+ 41.326813502599997,
+ 120.0
+ ],
+ [
+ 80.527981591400007,
+ 41.14852456,
+ 120.0
+ ],
+ [
+ 80.020266627500007,
+ 41.199364470100001,
+ 120.0
+ ],
+ [
+ 80.051879091100005,
+ 41.377653412699999,
+ 120.0
+ ],
+ [
+ 80.5595694533,
+ 41.326813502599997,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9386,
+ "name": "Nanjiang:akesu",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "41.16",
+ "lng": "80.27",
+ "radius": 7000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 80.27,
+ 41.223030348847239,
+ 0.0
+ ],
+ [
+ 80.284496191694771,
+ 41.222071869738734,
+ 0.0
+ ],
+ [
+ 80.298550686991902,
+ 41.219225636851853,
+ 0.0
+ ],
+ [
+ 80.311735360005628,
+ 41.214578366257257,
+ 0.0
+ ],
+ [
+ 80.323648795313744,
+ 41.208271622389773,
+ 0.0
+ ],
+ [
+ 80.33392858211225,
+ 41.200497473146193,
+ 0.0
+ ],
+ [
+ 80.342262377237603,
+ 41.191492600666486,
+ 0.0
+ ],
+ [
+ 80.348397394761605,
+ 41.18153105322083,
+ 0.0
+ ],
+ [
+ 80.352148034036261,
+ 41.170915865300159,
+ 0.0
+ ],
+ [
+ 80.353401420934077,
+ 41.159969806946158,
+ 0.0
+ ],
+ [
+ 80.352120705912355,
+ 41.149025548584959,
+ 0.0
+ ],
+ [
+ 80.348346034675302,
+ 41.138415543538272,
+ 0.0
+ ],
+ [
+ 80.342193179952545,
+ 41.128461936719795,
+ 0.0
+ ],
+ [
+ 80.333849893823995,
+ 41.11946680486728,
+ 0.0
+ ],
+ [
+ 80.323570106983951,
+ 41.111703021389815,
+ 0.0
+ ],
+ [
+ 80.311666162615396,
+ 41.105406018163031,
+ 0.0
+ ],
+ [
+ 80.298499326786001,
+ 41.100766688216318,
+ 0.0
+ ],
+ [
+ 80.284468863492819,
+ 41.097925638221582,
+ 0.0
+ ],
+ [
+ 80.27,
+ 41.096968959113084,
+ 0.0
+ ],
+ [
+ 80.255531136507173,
+ 41.097925638221582,
+ 0.0
+ ],
+ [
+ 80.241500673213991,
+ 41.100766688216318,
+ 0.0
+ ],
+ [
+ 80.228333837384596,
+ 41.105406018163031,
+ 0.0
+ ],
+ [
+ 80.216429893016041,
+ 41.111703021389815,
+ 0.0
+ ],
+ [
+ 80.206150106175997,
+ 41.11946680486728,
+ 0.0
+ ],
+ [
+ 80.197806820047447,
+ 41.128461936719795,
+ 0.0
+ ],
+ [
+ 80.19165396532469,
+ 41.138415543538272,
+ 0.0
+ ],
+ [
+ 80.187879294087637,
+ 41.149025548584959,
+ 0.0
+ ],
+ [
+ 80.186598579065915,
+ 41.159969806946158,
+ 0.0
+ ],
+ [
+ 80.187851965963731,
+ 41.170915865300159,
+ 0.0
+ ],
+ [
+ 80.191602605238387,
+ 41.18153105322083,
+ 0.0
+ ],
+ [
+ 80.197737622762389,
+ 41.191492600666486,
+ 0.0
+ ],
+ [
+ 80.206071417887742,
+ 41.200497473146193,
+ 0.0
+ ],
+ [
+ 80.216351204686248,
+ 41.208271622389773,
+ 0.0
+ ],
+ [
+ 80.228264639994364,
+ 41.214578366257257,
+ 0.0
+ ],
+ [
+ 80.24144931300809,
+ 41.219225636851853,
+ 0.0
+ ],
+ [
+ 80.255503808305221,
+ 41.222071869738734,
+ 0.0
+ ],
+ [
+ 80.27,
+ 41.223030348847239,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001469,
+ "name": "Aksu Airport",
+ "country": "CN",
+ "city": "Aksu",
+ "height": 500,
+ "level": 2,
+ "lat": "41.262629",
+ "lng": "80.289437",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 80.289437,
+ 41.712822525532367,
+ 500.0
+ ],
+ [
+ 80.393752852783734,
+ 41.705936268474993,
+ 500.0
+ ],
+ [
+ 80.494834390341609,
+ 41.685491013184141,
+ 500.0
+ ],
+ [
+ 80.589553603641122,
+ 41.652120285010064,
+ 500.0
+ ],
+ [
+ 80.67499083495359,
+ 41.606856834846973,
+ 500.0
+ ],
+ [
+ 80.748528572053303,
+ 41.551098924015726,
+ 500.0
+ ],
+ [
+ 80.80793351379161,
+ 41.486565002759775,
+ 500.0
+ ],
+ [
+ 80.851424126653015,
+ 41.415238519827795,
+ 500.0
+ ],
+ [
+ 80.877721722626248,
+ 41.339304911984016,
+ 500.0
+ ],
+ [
+ 80.886083935957302,
+ 41.261083023086336,
+ 500.0
+ ],
+ [
+ 80.87632028887154,
+ 41.182953293445983,
+ 500.0
+ ],
+ [
+ 80.848790257119688,
+ 41.107285050881252,
+ 500.0
+ ],
+ [
+ 80.804384837444488,
+ 41.036365140570361,
+ 500.0
+ ],
+ [
+ 80.744493063636966,
+ 40.972329970046275,
+ 500.0
+ ],
+ [
+ 80.670955217379756,
+ 40.917102837512985,
+ 500.0
+ ],
+ [
+ 80.586004650897522,
+ 40.872338173519125,
+ 500.0
+ ],
+ [
+ 80.492200206501806,
+ 40.839374072259361,
+ 500.0
+ ],
+ [
+ 80.392351213880048,
+ 40.819194229992213,
+ 500.0
+ ],
+ [
+ 80.289437,
+ 40.812400151048024,
+ 500.0
+ ],
+ [
+ 80.186522786119966,
+ 40.819194229992213,
+ 500.0
+ ],
+ [
+ 80.086673793498207,
+ 40.839374072259361,
+ 500.0
+ ],
+ [
+ 79.992869349102492,
+ 40.872338173519125,
+ 500.0
+ ],
+ [
+ 79.907918782620257,
+ 40.917102837512985,
+ 500.0
+ ],
+ [
+ 79.834380936363047,
+ 40.972329970046275,
+ 500.0
+ ],
+ [
+ 79.774489162555525,
+ 41.036365140570361,
+ 500.0
+ ],
+ [
+ 79.730083742880325,
+ 41.107285050881252,
+ 500.0
+ ],
+ [
+ 79.702553711128473,
+ 41.182953293445983,
+ 500.0
+ ],
+ [
+ 79.692790064042711,
+ 41.261083023086336,
+ 500.0
+ ],
+ [
+ 79.701152277373765,
+ 41.339304911984016,
+ 500.0
+ ],
+ [
+ 79.727449873346998,
+ 41.415238519827795,
+ 500.0
+ ],
+ [
+ 79.770940486208403,
+ 41.486565002759775,
+ 500.0
+ ],
+ [
+ 79.83034542794671,
+ 41.551098924015726,
+ 500.0
+ ],
+ [
+ 79.903883165046423,
+ 41.606856834846973,
+ 500.0
+ ],
+ [
+ 79.989320396358892,
+ 41.652120285010064,
+ 500.0
+ ],
+ [
+ 80.084039609658404,
+ 41.685491013184141,
+ 500.0
+ ],
+ [
+ 80.185121147216279,
+ 41.705936268474993,
+ 500.0
+ ],
+ [
+ 80.289437,
+ 41.712822525532367,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001504,
+ "name": "天吉泰",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "40.926944444444",
+ "lng": "107.739444444444",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.739444444444004,
+ 41.377164313529235,
+ 500.0
+ ],
+ [
+ 107.843222326196539,
+ 41.370278207779869,
+ 500.0
+ ],
+ [
+ 107.94378333227003,
+ 41.349833350748547,
+ 500.0
+ ],
+ [
+ 108.038016226227484,
+ 41.316463108949549,
+ 500.0
+ ],
+ [
+ 108.123016827262475,
+ 41.271199994628319,
+ 500.0
+ ],
+ [
+ 108.196181248398645,
+ 41.215441986026015,
+ 500.0
+ ],
+ [
+ 108.255287506350257,
+ 41.150907248499216,
+ 500.0
+ ],
+ [
+ 108.298562741080943,
+ 41.079578988265744,
+ 500.0
+ ],
+ [
+ 108.324734083715057,
+ 41.003642481782258,
+ 500.0
+ ],
+ [
+ 108.333062048878929,
+ 40.92541652520206,
+ 500.0
+ ],
+ [
+ 108.323356131646349,
+ 40.847281640728738,
+ 500.0
+ ],
+ [
+ 108.295973003772588,
+ 40.771607369118513,
+ 500.0
+ ],
+ [
+ 108.251798291440863,
+ 40.7006808852136,
+ 500.0
+ ],
+ [
+ 108.192213360175899,
+ 40.636639014510415,
+ 500.0
+ ],
+ [
+ 108.119048833225648,
+ 40.581405522216329,
+ 500.0
+ ],
+ [
+ 108.034526743387403,
+ 40.536635309281479,
+ 500.0
+ ],
+ [
+ 107.941193290282172,
+ 40.503666896764294,
+ 500.0
+ ],
+ [
+ 107.841844175262409,
+ 40.483484321172533,
+ 500.0
+ ],
+ [
+ 107.739444444444004,
+ 40.476689305920516,
+ 500.0
+ ],
+ [
+ 107.637044713625599,
+ 40.483484321172533,
+ 500.0
+ ],
+ [
+ 107.537695598605836,
+ 40.503666896764294,
+ 500.0
+ ],
+ [
+ 107.444362145500605,
+ 40.536635309281479,
+ 500.0
+ ],
+ [
+ 107.35984005566236,
+ 40.581405522216329,
+ 500.0
+ ],
+ [
+ 107.286675528712109,
+ 40.636639014510415,
+ 500.0
+ ],
+ [
+ 107.227090597447145,
+ 40.7006808852136,
+ 500.0
+ ],
+ [
+ 107.18291588511542,
+ 40.771607369118513,
+ 500.0
+ ],
+ [
+ 107.155532757241659,
+ 40.847281640728738,
+ 500.0
+ ],
+ [
+ 107.145826840009079,
+ 40.92541652520206,
+ 500.0
+ ],
+ [
+ 107.154154805172951,
+ 41.003642481782258,
+ 500.0
+ ],
+ [
+ 107.180326147807065,
+ 41.079578988265744,
+ 500.0
+ ],
+ [
+ 107.223601382537751,
+ 41.150907248499216,
+ 500.0
+ ],
+ [
+ 107.282707640489363,
+ 41.215441986026015,
+ 500.0
+ ],
+ [
+ 107.355872061625533,
+ 41.271199994628319,
+ 500.0
+ ],
+ [
+ 107.440872662660524,
+ 41.316463108949549,
+ 500.0
+ ],
+ [
+ 107.535105556617978,
+ 41.349833350748547,
+ 500.0
+ ],
+ [
+ 107.635666562691469,
+ 41.370278207779869,
+ 500.0
+ ],
+ [
+ 107.739444444444004,
+ 41.377164313529235,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32768,
+ "name": "天吉泰",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "40.9401173559185",
+ "lng": "107.682043493635",
+ "radius": 13083,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.659522352,
+ 40.9728441528,
+ 0.0
+ ],
+ [
+ 107.557850998,
+ 41.0112052956,
+ 0.0
+ ],
+ [
+ 107.526929984,
+ 40.950987098500001,
+ 0.0
+ ],
+ [
+ 107.64027648,
+ 40.934305571800003,
+ 0.0
+ ],
+ [
+ 107.641463296,
+ 40.917368026399998,
+ 0.0
+ ],
+ [
+ 107.660339504,
+ 40.887708608,
+ 0.0
+ ],
+ [
+ 107.676699688,
+ 40.8766404737,
+ 0.0
+ ],
+ [
+ 107.722907667,
+ 40.860826940300001,
+ 0.0
+ ],
+ [
+ 107.763972315,
+ 40.858147943,
+ 0.0
+ ],
+ [
+ 107.784988784,
+ 40.862928683,
+ 0.0
+ ],
+ [
+ 107.818708416,
+ 40.883740102799997,
+ 0.0
+ ],
+ [
+ 107.659522352,
+ 40.9728441528,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32768,
+ "name": "天吉泰",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "40.9096536578804",
+ "lng": "107.791871525239",
+ "radius": 13151,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.917091133,
+ 40.838782591300003,
+ 0.0
+ ],
+ [
+ 107.948060165,
+ 40.9023565038,
+ 0.0
+ ],
+ [
+ 107.838030922,
+ 40.922389570699998,
+ 0.0
+ ],
+ [
+ 107.83142851,
+ 40.950061619,
+ 0.0
+ ],
+ [
+ 107.82027420599999,
+ 40.964363452500002,
+ 0.0
+ ],
+ [
+ 107.804593062,
+ 40.975995927299998,
+ 0.0
+ ],
+ [
+ 107.75540541,
+ 40.992512326799996,
+ 0.0
+ ],
+ [
+ 107.71598032599999,
+ 40.996333215,
+ 0.0
+ ],
+ [
+ 107.69462863299999,
+ 40.992360125799998,
+ 0.0
+ ],
+ [
+ 107.659522352,
+ 40.9728441528,
+ 0.0
+ ],
+ [
+ 107.818708416,
+ 40.883740102799997,
+ 0.0
+ ],
+ [
+ 107.917091133,
+ 40.838782591300003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32768,
+ "name": "天吉泰",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "40.9262206812254",
+ "lng": "107.739738243841",
+ "radius": 23510,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.018938471,
+ 40.940810154499999,
+ 120.0
+ ],
+ [
+ 107.932635234,
+ 40.7732083613,
+ 120.0
+ ],
+ [
+ 107.46055733199999,
+ 40.912090187,
+ 120.0
+ ],
+ [
+ 107.54704214,
+ 41.079691980100002,
+ 120.0
+ ],
+ [
+ 108.018938471,
+ 40.940810154499999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1398,
+ "name": "Baita International Airport",
+ "country": "CN",
+ "city": "Hohhot",
+ "height": 0,
+ "level": 2,
+ "lat": "40.8371810444258",
+ "lng": "111.767156158358",
+ "radius": 13612,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.716991254,
+ 40.845683163799997,
+ 0.0
+ ],
+ [
+ 111.60536304599999,
+ 40.835782562399999,
+ 0.0
+ ],
+ [
+ 111.634536205,
+ 40.7671242746,
+ 0.0
+ ],
+ [
+ 111.736148223,
+ 40.805470334100001,
+ 0.0
+ ],
+ [
+ 111.762974507,
+ 40.788597901099998,
+ 0.0
+ ],
+ [
+ 111.783540995,
+ 40.782852299600002,
+ 0.0
+ ],
+ [
+ 111.805369035,
+ 40.781328828200003,
+ 0.0
+ ],
+ [
+ 111.868677644,
+ 40.790805953300001,
+ 0.0
+ ],
+ [
+ 111.90264814299999,
+ 40.806090806699999,
+ 0.0
+ ],
+ [
+ 111.916205155,
+ 40.819137676099999,
+ 0.0
+ ],
+ [
+ 111.927970172,
+ 40.850823586700002,
+ 0.0
+ ],
+ [
+ 111.716991254,
+ 40.845683163799997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1398,
+ "name": "Baita International Airport",
+ "country": "CN",
+ "city": "Hohhot",
+ "height": 0,
+ "level": 2,
+ "lat": "40.856781026888",
+ "lng": "111.879894961957",
+ "radius": 13757,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.043033419,
+ 40.8659477104,
+ 0.0
+ ],
+ [
+ 112.013850691,
+ 40.927863502500003,
+ 0.0
+ ],
+ [
+ 111.912193032,
+ 40.891194518399999,
+ 0.0
+ ],
+ [
+ 111.881997193,
+ 40.912336236599998,
+ 0.0
+ ],
+ [
+ 111.861509618,
+ 40.918320277,
+ 0.0
+ ],
+ [
+ 111.817967142,
+ 40.917522664899998,
+ 0.0
+ ],
+ [
+ 111.75861132,
+ 40.900930134799999,
+ 0.0
+ ],
+ [
+ 111.741266592,
+ 40.890751435699997,
+ 0.0
+ ],
+ [
+ 111.72800344,
+ 40.877524465500002,
+ 0.0
+ ],
+ [
+ 111.716991254,
+ 40.845683163799997,
+ 0.0
+ ],
+ [
+ 111.927970172,
+ 40.850823586700002,
+ 0.0
+ ],
+ [
+ 112.043033419,
+ 40.8659477104,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1398,
+ "name": "Baita International Airport",
+ "country": "CN",
+ "city": "Hohhot",
+ "height": 120,
+ "level": 2,
+ "lat": "40.849509901882",
+ "lng": "111.823533281674",
+ "radius": 23934,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.041188829,
+ 40.988366856500001,
+ 120.0
+ ],
+ [
+ 112.10432390299999,
+ 40.814948250199997,
+ 120.0
+ ],
+ [
+ 111.605751194,
+ 40.711176010400003,
+ 120.0
+ ],
+ [
+ 111.542714919,
+ 40.884594616699999,
+ 120.0
+ ],
+ [
+ 112.041188829,
+ 40.988366856500001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001443,
+ "name": "Baita International Airport",
+ "country": "CN",
+ "city": "Hohhot",
+ "height": 500,
+ "level": 2,
+ "lat": "40.850611",
+ "lng": "111.824035",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.824035,
+ 41.300836853898453,
+ 500.0
+ ],
+ [
+ 111.92769182024189,
+ 41.293950781848565,
+ 500.0
+ ],
+ [
+ 112.02813568889367,
+ 41.273506013355401,
+ 500.0
+ ],
+ [
+ 112.122259143588934,
+ 41.240135879094268,
+ 500.0
+ ],
+ [
+ 112.207161486146759,
+ 41.194872837467216,
+ 500.0
+ ],
+ [
+ 112.280241895689016,
+ 41.13911480285693,
+ 500.0
+ ],
+ [
+ 112.339280935960929,
+ 41.074579876371509,
+ 500.0
+ ],
+ [
+ 112.382507699038428,
+ 41.003251209563757,
+ 500.0
+ ],
+ [
+ 112.408650625953527,
+ 40.927314042812462,
+ 500.0
+ ],
+ [
+ 112.416970879986479,
+ 40.849087161641897,
+ 500.0
+ ],
+ [
+ 112.407277950577239,
+ 40.770951106913344,
+ 500.0
+ ],
+ [
+ 112.379927878910564,
+ 40.695275467653524,
+ 500.0
+ ],
+ [
+ 112.335805082933504,
+ 40.624347493350577,
+ 500.0
+ ],
+ [
+ 112.276289202736564,
+ 40.560304104096232,
+ 500.0
+ ],
+ [
+ 112.20320868812388,
+ 40.505069170767392,
+ 500.0
+ ],
+ [
+ 112.118783024513803,
+ 40.460297700738799,
+ 500.0
+ ],
+ [
+ 112.025555566227538,
+ 40.42732831163638,
+ 500.0
+ ],
+ [
+ 111.926318947397775,
+ 40.407145116937755,
+ 500.0
+ ],
+ [
+ 111.824035,
+ 40.4003498896164,
+ 500.0
+ ],
+ [
+ 111.721751052602215,
+ 40.407145116937755,
+ 500.0
+ ],
+ [
+ 111.622514433772452,
+ 40.42732831163638,
+ 500.0
+ ],
+ [
+ 111.529286975486187,
+ 40.460297700738799,
+ 500.0
+ ],
+ [
+ 111.44486131187611,
+ 40.505069170767392,
+ 500.0
+ ],
+ [
+ 111.371780797263426,
+ 40.560304104096232,
+ 500.0
+ ],
+ [
+ 111.312264917066486,
+ 40.624347493350577,
+ 500.0
+ ],
+ [
+ 111.268142121089426,
+ 40.695275467653524,
+ 500.0
+ ],
+ [
+ 111.240792049422751,
+ 40.770951106913344,
+ 500.0
+ ],
+ [
+ 111.231099120013511,
+ 40.849087161641897,
+ 500.0
+ ],
+ [
+ 111.239419374046463,
+ 40.927314042812462,
+ 500.0
+ ],
+ [
+ 111.265562300961562,
+ 41.003251209563757,
+ 500.0
+ ],
+ [
+ 111.308789064039061,
+ 41.074579876371509,
+ 500.0
+ ],
+ [
+ 111.367828104310973,
+ 41.13911480285693,
+ 500.0
+ ],
+ [
+ 111.44090851385323,
+ 41.194872837467216,
+ 500.0
+ ],
+ [
+ 111.525810856411056,
+ 41.240135879094268,
+ 500.0
+ ],
+ [
+ 111.61993431110632,
+ 41.273506013355401,
+ 500.0
+ ],
+ [
+ 111.7203781797581,
+ 41.293950781848565,
+ 500.0
+ ],
+ [
+ 111.824035,
+ 41.300836853898453,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001339,
+ "name": "集宁",
+ "country": "CN",
+ "city": "乌兰察布",
+ "height": 500,
+ "level": 2,
+ "lat": "41.1308333333333",
+ "lng": "113.10625",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.10625,
+ 41.581037206485568,
+ 500.0
+ ],
+ [
+ 113.210353543882476,
+ 41.574151009444797,
+ 500.0
+ ],
+ [
+ 113.311229655356357,
+ 41.553705912264952,
+ 500.0
+ ],
+ [
+ 113.405756944936286,
+ 41.520335377693755,
+ 500.0
+ ],
+ [
+ 113.491021862997414,
+ 41.475072062562425,
+ 500.0
+ ],
+ [
+ 113.564412274518887,
+ 41.419314116608504,
+ 500.0
+ ],
+ [
+ 113.623699344802262,
+ 41.354779877764351,
+ 500.0
+ ],
+ [
+ 113.667104963045944,
+ 41.283452699138685,
+ 500.0
+ ],
+ [
+ 113.693352737389574,
+ 41.20751795423265,
+ 500.0
+ ],
+ [
+ 113.701701438400818,
+ 41.12929446798563,
+ 500.0
+ ],
+ [
+ 113.691960577172537,
+ 41.051162712829779,
+ 500.0
+ ],
+ [
+ 113.664488522495446,
+ 40.975492100315506,
+ 500.0
+ ],
+ [
+ 113.62017415135395,
+ 40.904569605325882,
+ 500.0
+ ],
+ [
+ 113.560403471116715,
+ 40.840531799878107,
+ 500.0
+ ],
+ [
+ 113.487012951764811,
+ 40.785302165980916,
+ 500.0
+ ],
+ [
+ 113.402231478451739,
+ 40.740535319336963,
+ 500.0
+ ],
+ [
+ 113.308612904320483,
+ 40.707569522164299,
+ 500.0
+ ],
+ [
+ 113.208961181010523,
+ 40.68738860465416,
+ 500.0
+ ],
+ [
+ 113.10625,
+ 40.680594157376113,
+ 500.0
+ ],
+ [
+ 113.003538818989512,
+ 40.68738860465416,
+ 500.0
+ ],
+ [
+ 112.903887095679551,
+ 40.707569522164299,
+ 500.0
+ ],
+ [
+ 112.810268521548295,
+ 40.740535319336963,
+ 500.0
+ ],
+ [
+ 112.725487048235223,
+ 40.785302165980916,
+ 500.0
+ ],
+ [
+ 112.65209652888332,
+ 40.840531799878107,
+ 500.0
+ ],
+ [
+ 112.592325848646084,
+ 40.904569605325882,
+ 500.0
+ ],
+ [
+ 112.548011477504588,
+ 40.975492100315506,
+ 500.0
+ ],
+ [
+ 112.520539422827497,
+ 41.051162712829779,
+ 500.0
+ ],
+ [
+ 112.510798561599216,
+ 41.12929446798563,
+ 500.0
+ ],
+ [
+ 112.51914726261046,
+ 41.20751795423265,
+ 500.0
+ ],
+ [
+ 112.545395036954091,
+ 41.283452699138685,
+ 500.0
+ ],
+ [
+ 112.588800655197772,
+ 41.354779877764351,
+ 500.0
+ ],
+ [
+ 112.648087725481147,
+ 41.419314116608504,
+ 500.0
+ ],
+ [
+ 112.72147813700262,
+ 41.475072062562425,
+ 500.0
+ ],
+ [
+ 112.806743055063748,
+ 41.520335377693755,
+ 500.0
+ ],
+ [
+ 112.901270344643677,
+ 41.553705912264952,
+ 500.0
+ ],
+ [
+ 113.002146456117558,
+ 41.574151009444797,
+ 500.0
+ ],
+ [
+ 113.10625,
+ 41.581037206485568,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33246,
+ "name": "集宁",
+ "country": "CN",
+ "city": "乌兰察布",
+ "height": 0,
+ "level": 2,
+ "lat": "41.1237297002322",
+ "lng": "113.047690441955",
+ "radius": 13418,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.00210804,
+ 41.1391419375,
+ 0.0
+ ],
+ [
+ 112.888798464,
+ 41.139208756499997,
+ 0.0
+ ],
+ [
+ 112.900861725,
+ 41.075563486,
+ 0.0
+ ],
+ [
+ 113.012539014,
+ 41.100558996399997,
+ 0.0
+ ],
+ [
+ 113.040419957,
+ 41.076063160099999,
+ 0.0
+ ],
+ [
+ 113.060004312,
+ 41.068479128900002,
+ 0.0
+ ],
+ [
+ 113.081522148,
+ 41.064970968899999,
+ 0.0
+ ],
+ [
+ 113.13516843799999,
+ 41.069109689100003,
+ 0.0
+ ],
+ [
+ 113.172726454,
+ 41.079871966799999,
+ 0.0
+ ],
+ [
+ 113.189072336,
+ 41.090994445600003,
+ 0.0
+ ],
+ [
+ 113.207833409,
+ 41.120716382,
+ 0.0
+ ],
+ [
+ 113.00210804,
+ 41.1391419375,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33246,
+ "name": "集宁",
+ "country": "CN",
+ "city": "乌兰察布",
+ "height": 0,
+ "level": 2,
+ "lat": "41.1353279561043",
+ "lng": "113.162475535593",
+ "radius": 13436,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.321120904,
+ 41.117399457499999,
+ 0.0
+ ],
+ [
+ 113.30912225599999,
+ 41.184443592900003,
+ 0.0
+ ],
+ [
+ 113.202469714,
+ 41.162771066300003,
+ 0.0
+ ],
+ [
+ 113.17499975699999,
+ 41.185090342099997,
+ 0.0
+ ],
+ [
+ 113.155147043,
+ 41.192321959099999,
+ 0.0
+ ],
+ [
+ 113.133480959,
+ 41.195436506299998,
+ 0.0
+ ],
+ [
+ 113.076474745,
+ 41.1908876488,
+ 0.0
+ ],
+ [
+ 113.03722241299999,
+ 41.1799982036,
+ 0.0
+ ],
+ [
+ 113.02085778199999,
+ 41.168872856900002,
+ 0.0
+ ],
+ [
+ 113.00210804,
+ 41.1391419375,
+ 0.0
+ ],
+ [
+ 113.207833409,
+ 41.120716382,
+ 0.0
+ ],
+ [
+ 113.321120904,
+ 41.117399457499999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33246,
+ "name": "集宁",
+ "country": "CN",
+ "city": "乌兰察布",
+ "height": 120,
+ "level": 2,
+ "lat": "41.1294827674534",
+ "lng": "113.106768411551",
+ "radius": 23628,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.344440201,
+ 41.244213370099999,
+ 120.0
+ ],
+ [
+ 113.375834101,
+ 41.0659090053,
+ 120.0
+ ],
+ [
+ 112.86904515499999,
+ 41.015301370400003,
+ 120.0
+ ],
+ [
+ 112.837675462,
+ 41.193605735200002,
+ 120.0
+ ],
+ [
+ 113.344440201,
+ 41.244213370099999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9723,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Zhangjiakou",
+ "height": 0,
+ "level": 2,
+ "lat": "40.723112768773",
+ "lng": "114.98485021012",
+ "radius": 13336,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.010760576,
+ 40.692255252099997,
+ 0.0
+ ],
+ [
+ 115.108585106,
+ 40.648403364,
+ 0.0
+ ],
+ [
+ 115.14245353699999,
+ 40.712333666699998,
+ 0.0
+ ],
+ [
+ 115.03184114,
+ 40.7320263027,
+ 0.0
+ ],
+ [
+ 115.03142447,
+ 40.7492527737,
+ 0.0
+ ],
+ [
+ 115.025260084,
+ 40.765180676699998,
+ 0.0
+ ],
+ [
+ 115.013858996,
+ 40.779356453,
+ 0.0
+ ],
+ [
+ 114.978753096,
+ 40.798766971399999,
+ 0.0
+ ],
+ [
+ 114.928137486,
+ 40.811861493899997,
+ 0.0
+ ],
+ [
+ 114.885078552,
+ 40.807270485099998,
+ 0.0
+ ],
+ [
+ 114.850839466,
+ 40.786987783800001,
+ 0.0
+ ],
+ [
+ 115.010760576,
+ 40.692255252099997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9723,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Zhangjiakou",
+ "height": 0,
+ "level": 2,
+ "lat": "40.7559548254079",
+ "lng": "114.876686900954",
+ "radius": 13335,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.752856873,
+ 40.8307433911,
+ 0.0
+ ],
+ [
+ 114.719005873,
+ 40.766806188499999,
+ 0.0
+ ],
+ [
+ 114.829830466,
+ 40.747292531900001,
+ 0.0
+ ],
+ [
+ 114.830303378,
+ 40.729973568,
+ 0.0
+ ],
+ [
+ 114.836528097,
+ 40.714059873700002,
+ 0.0
+ ],
+ [
+ 114.847970814,
+ 40.699908559599997,
+ 0.0
+ ],
+ [
+ 114.883083296,
+ 40.680559135199999,
+ 0.0
+ ],
+ [
+ 114.93354168499999,
+ 40.667488267800003,
+ 0.0
+ ],
+ [
+ 114.976518846,
+ 40.672032563,
+ 0.0
+ ],
+ [
+ 115.010760576,
+ 40.692255252099997,
+ 0.0
+ ],
+ [
+ 114.850839466,
+ 40.786987783800001,
+ 0.0
+ ],
+ [
+ 114.752856873,
+ 40.8307433911,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9723,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Zhangjiakou",
+ "height": 120,
+ "level": 2,
+ "lat": "40.7392293413897",
+ "lng": "114.930627286777",
+ "radius": 23523,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.651888275,
+ 40.727245573,
+ 120.0
+ ],
+ [
+ 114.74032348199999,
+ 40.894191663500003,
+ 120.0
+ ],
+ [
+ 115.209380381,
+ 40.751669655500002,
+ 120.0
+ ],
+ [
+ 115.12113445,
+ 40.584723564800001,
+ 120.0
+ ],
+ [
+ 114.651888275,
+ 40.727245573,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001438,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Zhangjiakou",
+ "height": 500,
+ "level": 2,
+ "lat": "40.738611",
+ "lng": "114.930278",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.930278,
+ 41.188845631154543,
+ 500.0
+ ],
+ [
+ 115.033758037019837,
+ 41.181959608084455,
+ 500.0
+ ],
+ [
+ 115.134030852447722,
+ 41.161514968166252,
+ 500.0
+ ],
+ [
+ 115.227994494891348,
+ 41.128144989675789,
+ 500.0
+ ],
+ [
+ 115.312753351634655,
+ 41.082882052294494,
+ 500.0
+ ],
+ [
+ 115.385711079124093,
+ 41.027123977048205,
+ 500.0
+ ],
+ [
+ 115.444651960559256,
+ 40.962588771129766,
+ 500.0
+ ],
+ [
+ 115.487807938826307,
+ 40.891259506205813,
+ 500.0
+ ],
+ [
+ 115.513909368047734,
+ 40.815321369968068,
+ 500.0
+ ],
+ [
+ 115.522218359022816,
+ 40.737093132489292,
+ 500.0
+ ],
+ [
+ 115.512544393272321,
+ 40.658955362028813,
+ 500.0
+ ],
+ [
+ 115.485242591446507,
+ 40.583277718336895,
+ 500.0
+ ],
+ [
+ 115.441195607340092,
+ 40.512347560213392,
+ 500.0
+ ],
+ [
+ 115.381780561550386,
+ 40.44830194624668,
+ 500.0
+ ],
+ [
+ 115.30882273007073,
+ 40.393064902007467,
+ 500.0
+ ],
+ [
+ 115.224537878359655,
+ 40.348291590660899,
+ 500.0
+ ],
+ [
+ 115.131465205639969,
+ 40.315320771189114,
+ 500.0
+ ],
+ [
+ 115.032392866806703,
+ 40.295136669736685,
+ 500.0
+ ],
+ [
+ 114.930278,
+ 40.288341131820069,
+ 500.0
+ ],
+ [
+ 114.8281631331933,
+ 40.295136669736685,
+ 500.0
+ ],
+ [
+ 114.729090794360033,
+ 40.315320771189114,
+ 500.0
+ ],
+ [
+ 114.636018121640348,
+ 40.348291590660899,
+ 500.0
+ ],
+ [
+ 114.551733269929272,
+ 40.393064902007467,
+ 500.0
+ ],
+ [
+ 114.478775438449617,
+ 40.44830194624668,
+ 500.0
+ ],
+ [
+ 114.419360392659911,
+ 40.512347560213392,
+ 500.0
+ ],
+ [
+ 114.375313408553495,
+ 40.583277718336895,
+ 500.0
+ ],
+ [
+ 114.348011606727681,
+ 40.658955362028813,
+ 500.0
+ ],
+ [
+ 114.338337640977187,
+ 40.737093132489292,
+ 500.0
+ ],
+ [
+ 114.346646631952268,
+ 40.815321369968068,
+ 500.0
+ ],
+ [
+ 114.372748061173695,
+ 40.891259506205813,
+ 500.0
+ ],
+ [
+ 114.415904039440747,
+ 40.962588771129766,
+ 500.0
+ ],
+ [
+ 114.47484492087591,
+ 41.027123977048205,
+ 500.0
+ ],
+ [
+ 114.547802648365348,
+ 41.082882052294494,
+ 500.0
+ ],
+ [
+ 114.632561505108654,
+ 41.128144989675789,
+ 500.0
+ ],
+ [
+ 114.72652514755228,
+ 41.161514968166252,
+ 500.0
+ ],
+ [
+ 114.826797962980166,
+ 41.181959608084455,
+ 500.0
+ ],
+ [
+ 114.930278,
+ 41.188845631154543,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33363,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "41.1063201765615",
+ "lng": "118.131511317789",
+ "radius": 13423,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.16073245299999,
+ 41.076976221499997,
+ 0.0
+ ],
+ [
+ 118.261940157,
+ 41.036278649499998,
+ 0.0
+ ],
+ [
+ 118.291378992,
+ 41.098421061099998,
+ 0.0
+ ],
+ [
+ 118.178901064,
+ 41.115312458200002,
+ 0.0
+ ],
+ [
+ 118.177788565,
+ 41.133354702200002,
+ 0.0
+ ],
+ [
+ 118.170858022,
+ 41.149110977200003,
+ 0.0
+ ],
+ [
+ 118.15874383,
+ 41.162978514,
+ 0.0
+ ],
+ [
+ 118.122559299,
+ 41.181454413600001,
+ 0.0
+ ],
+ [
+ 118.067567536,
+ 41.193654505200001,
+ 0.0
+ ],
+ [
+ 118.024672525,
+ 41.187231006499999,
+ 0.0
+ ],
+ [
+ 117.99181192899999,
+ 41.165517552399997,
+ 0.0
+ ],
+ [
+ 118.16073245299999,
+ 41.076976221499997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33363,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "41.1359802126379",
+ "lng": "118.020969640472",
+ "radius": 13422,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.89045574,
+ 41.206120967799997,
+ 0.0
+ ],
+ [
+ 117.86103418,
+ 41.143971625600003,
+ 0.0
+ ],
+ [
+ 117.973707028,
+ 41.127266135100001,
+ 0.0
+ ],
+ [
+ 117.974881872,
+ 41.109132456300003,
+ 0.0
+ ],
+ [
+ 117.98187100299999,
+ 41.093391937699998,
+ 0.0
+ ],
+ [
+ 117.994023574,
+ 41.079549866900003,
+ 0.0
+ ],
+ [
+ 118.030206578,
+ 41.061134793599997,
+ 0.0
+ ],
+ [
+ 118.085038575,
+ 41.048950723399997,
+ 0.0
+ ],
+ [
+ 118.127856662,
+ 41.055323324200003,
+ 0.0
+ ],
+ [
+ 118.16073245299999,
+ 41.076976221499997,
+ 0.0
+ ],
+ [
+ 117.99181192899999,
+ 41.165517552399997,
+ 0.0
+ ],
+ [
+ 117.89045574,
+ 41.206120967799997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33363,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "41.1208371671457",
+ "lng": "118.076110613796",
+ "radius": 23616,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.795451083,
+ 41.100960178800001,
+ 120.0
+ ],
+ [
+ 117.875682584,
+ 41.270386762900003,
+ 120.0
+ ],
+ [
+ 118.35679177599999,
+ 41.141198552699997,
+ 120.0
+ ],
+ [
+ 118.27671805,
+ 40.971771968299997,
+ 120.0
+ ],
+ [
+ 117.795451083,
+ 41.100960178800001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001348,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "41.122123",
+ "lng": "118.074737",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.074737,
+ 41.572327556813875,
+ 500.0
+ ],
+ [
+ 118.1788265623792,
+ 41.565441363711606,
+ 500.0
+ ],
+ [
+ 118.279689145598667,
+ 41.544996276901124,
+ 500.0
+ ],
+ [
+ 118.374203796087059,
+ 41.511625755003813,
+ 500.0
+ ],
+ [
+ 118.459457366457769,
+ 41.466362448651033,
+ 500.0
+ ],
+ [
+ 118.532838075801635,
+ 41.410604500225986,
+ 500.0
+ ],
+ [
+ 118.592117383561501,
+ 41.346070240259465,
+ 500.0
+ ],
+ [
+ 118.635517404348633,
+ 41.274743015558549,
+ 500.0
+ ],
+ [
+ 118.661761897531008,
+ 41.198808195458135,
+ 500.0
+ ],
+ [
+ 118.670109708527292,
+ 41.120584603655963,
+ 500.0
+ ],
+ [
+ 118.660370347716437,
+ 41.042452714708517,
+ 500.0
+ ],
+ [
+ 118.63290211100788,
+ 40.966781945694137,
+ 500.0
+ ],
+ [
+ 118.588593735803343,
+ 40.895859280055603,
+ 500.0
+ ],
+ [
+ 118.528831030175255,
+ 40.831821300663272,
+ 500.0
+ ],
+ [
+ 118.455450213088,
+ 40.776591501652845,
+ 500.0
+ ],
+ [
+ 118.37067987551309,
+ 40.731824510942481,
+ 500.0
+ ],
+ [
+ 118.277073542023189,
+ 40.698858601835184,
+ 500.0
+ ],
+ [
+ 118.177434810073279,
+ 40.678677613358026,
+ 500.0
+ ],
+ [
+ 118.074737,
+ 40.671883141769904,
+ 500.0
+ ],
+ [
+ 117.972039189926718,
+ 40.678677613358026,
+ 500.0
+ ],
+ [
+ 117.872400457976809,
+ 40.698858601835184,
+ 500.0
+ ],
+ [
+ 117.778794124486907,
+ 40.731824510942481,
+ 500.0
+ ],
+ [
+ 117.694023786911998,
+ 40.776591501652845,
+ 500.0
+ ],
+ [
+ 117.620642969824743,
+ 40.831821300663272,
+ 500.0
+ ],
+ [
+ 117.560880264196655,
+ 40.895859280055603,
+ 500.0
+ ],
+ [
+ 117.516571888992118,
+ 40.966781945694137,
+ 500.0
+ ],
+ [
+ 117.489103652283561,
+ 41.042452714708517,
+ 500.0
+ ],
+ [
+ 117.479364291472706,
+ 41.120584603655963,
+ 500.0
+ ],
+ [
+ 117.48771210246899,
+ 41.198808195458135,
+ 500.0
+ ],
+ [
+ 117.513956595651365,
+ 41.274743015558549,
+ 500.0
+ ],
+ [
+ 117.557356616438497,
+ 41.346070240259465,
+ 500.0
+ ],
+ [
+ 117.616635924198363,
+ 41.410604500225986,
+ 500.0
+ ],
+ [
+ 117.690016633542228,
+ 41.466362448651033,
+ 500.0
+ ],
+ [
+ 117.775270203912939,
+ 41.511625755003813,
+ 500.0
+ ],
+ [
+ 117.869784854401331,
+ 41.544996276901124,
+ 500.0
+ ],
+ [
+ 117.970647437620798,
+ 41.565441363711606,
+ 500.0
+ ],
+ [
+ 118.074737,
+ 41.572327556813875,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1806,
+ "name": "Chaoyang Airport",
+ "country": "CN",
+ "city": "Chaoyang",
+ "height": 0,
+ "level": 2,
+ "lat": "41.4992416272755",
+ "lng": "120.45190217918",
+ "radius": 13205,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.427219897,
+ 41.4673963308,
+ 0.0
+ ],
+ [
+ 120.442249562,
+ 41.380705449300002,
+ 0.0
+ ],
+ [
+ 120.526531655,
+ 41.394485221,
+ 0.0
+ ],
+ [
+ 120.481532262,
+ 41.472816481700001,
+ 0.0
+ ],
+ [
+ 120.51088416499999,
+ 41.495249055499997,
+ 0.0
+ ],
+ [
+ 120.519415077,
+ 41.510568401900002,
+ 0.0
+ ],
+ [
+ 120.52236329599999,
+ 41.527019199199998,
+ 0.0
+ ],
+ [
+ 120.514494318,
+ 41.568566361599999,
+ 0.0
+ ],
+ [
+ 120.497021983,
+ 41.594974930600003,
+ 0.0
+ ],
+ [
+ 120.480725385,
+ 41.606244003,
+ 0.0
+ ],
+ [
+ 120.439423218,
+ 41.617630785499998,
+ 0.0
+ ],
+ [
+ 120.427219897,
+ 41.4673963308,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1806,
+ "name": "Chaoyang Airport",
+ "country": "CN",
+ "city": "Chaoyang",
+ "height": 0,
+ "level": 2,
+ "lat": "41.5850172672626",
+ "lng": "120.425612059599",
+ "radius": 13079,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.427746805,
+ 41.702633544699999,
+ 0.0
+ ],
+ [
+ 120.34007882,
+ 41.683756378699997,
+ 0.0
+ ],
+ [
+ 120.383436694,
+ 41.607134483099998,
+ 0.0
+ ],
+ [
+ 120.365613119,
+ 41.596491688100002,
+ 0.0
+ ],
+ [
+ 120.34450287,
+ 41.567614562400003,
+ 0.0
+ ],
+ [
+ 120.345528206,
+ 41.5347110302,
+ 0.0
+ ],
+ [
+ 120.355496988,
+ 41.5147958174,
+ 0.0
+ ],
+ [
+ 120.370761293,
+ 41.4914584813,
+ 0.0
+ ],
+ [
+ 120.386532006,
+ 41.479799727100001,
+ 0.0
+ ],
+ [
+ 120.427219897,
+ 41.4673963308,
+ 0.0
+ ],
+ [
+ 120.439423218,
+ 41.617630785499998,
+ 0.0
+ ],
+ [
+ 120.427746805,
+ 41.702633544699999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1806,
+ "name": "Chaoyang Airport",
+ "country": "CN",
+ "city": "Chaoyang",
+ "height": 120,
+ "level": 2,
+ "lat": "41.5404162373875",
+ "lng": "120.433562485824",
+ "radius": 23521,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.254733833,
+ 41.704349761499998,
+ 120.0
+ ],
+ [
+ 120.488554452,
+ 41.747915829900002,
+ 120.0
+ ],
+ [
+ 120.611800299,
+ 41.376398190499998,
+ 120.0
+ ],
+ [
+ 120.379319114,
+ 41.332832121099997,
+ 120.0
+ ],
+ [
+ 120.254733833,
+ 41.704349761499998,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001524,
+ "name": "Chaoyang Airport",
+ "country": "CN",
+ "city": "Chaoyang",
+ "height": 500,
+ "level": 2,
+ "lat": "41.538679",
+ "lng": "120.434163",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.434163,
+ 41.988850833632966,
+ 500.0
+ ],
+ [
+ 120.538928170480801,
+ 41.981964448255837,
+ 500.0
+ ],
+ [
+ 120.640444457846385,
+ 41.961518854314654,
+ 500.0
+ ],
+ [
+ 120.735569842604463,
+ 41.928147709306707,
+ 500.0
+ ],
+ [
+ 120.82137173943228,
+ 41.882883962698166,
+ 500.0
+ ],
+ [
+ 120.89522125595866,
+ 41.827126111403096,
+ 500.0
+ ],
+ [
+ 120.954875639015413,
+ 41.762592842859867,
+ 500.0
+ ],
+ [
+ 120.998546112569272,
+ 41.691267807919154,
+ 500.0
+ ],
+ [
+ 121.024949130737653,
+ 41.615336577232036,
+ 500.0
+ ],
+ [
+ 121.033339924739039,
+ 41.53711803509028,
+ 500.0
+ ],
+ [
+ 121.023528042194471,
+ 41.458992554667468,
+ 500.0
+ ],
+ [
+ 120.995875303189521,
+ 41.383329287862225,
+ 500.0
+ ],
+ [
+ 120.951277191834109,
+ 41.312414807029548,
+ 500.0
+ ],
+ [
+ 120.891129147568222,
+ 41.248385173559591,
+ 500.0
+ ],
+ [
+ 120.817279519042955,
+ 41.19316329876294,
+ 500.0
+ ],
+ [
+ 120.731971111832053,
+ 41.148403223403541,
+ 500.0
+ ],
+ [
+ 120.637773325978728,
+ 41.115442687928251,
+ 500.0
+ ],
+ [
+ 120.537506871448585,
+ 41.095265106608565,
+ 500.0
+ ],
+ [
+ 120.434163,
+ 41.088471802199152,
+ 500.0
+ ],
+ [
+ 120.330819128551411,
+ 41.095265106608565,
+ 500.0
+ ],
+ [
+ 120.230552674021268,
+ 41.115442687928251,
+ 500.0
+ ],
+ [
+ 120.136354888167943,
+ 41.148403223403541,
+ 500.0
+ ],
+ [
+ 120.051046480957041,
+ 41.19316329876294,
+ 500.0
+ ],
+ [
+ 119.977196852431774,
+ 41.248385173559591,
+ 500.0
+ ],
+ [
+ 119.917048808165887,
+ 41.312414807029548,
+ 500.0
+ ],
+ [
+ 119.872450696810475,
+ 41.383329287862225,
+ 500.0
+ ],
+ [
+ 119.844797957805525,
+ 41.458992554667468,
+ 500.0
+ ],
+ [
+ 119.834986075260957,
+ 41.53711803509028,
+ 500.0
+ ],
+ [
+ 119.843376869262343,
+ 41.615336577232036,
+ 500.0
+ ],
+ [
+ 119.869779887430724,
+ 41.691267807919154,
+ 500.0
+ ],
+ [
+ 119.913450360984584,
+ 41.762592842859867,
+ 500.0
+ ],
+ [
+ 119.973104744041336,
+ 41.827126111403096,
+ 500.0
+ ],
+ [
+ 120.046954260567716,
+ 41.882883962698166,
+ 500.0
+ ],
+ [
+ 120.132756157395534,
+ 41.928147709306707,
+ 500.0
+ ],
+ [
+ 120.227881542153611,
+ 41.961518854314654,
+ 500.0
+ ],
+ [
+ 120.329397829519195,
+ 41.981964448255837,
+ 500.0
+ ],
+ [
+ 120.434163,
+ 41.988850833632966,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001424,
+ "name": "Jinzhou Airport",
+ "country": "CN",
+ "city": "Jinzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "40.9360585369015",
+ "lng": "121.276585738853",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.276585738852503,
+ 41.386277691266415,
+ 500.0
+ ],
+ [
+ 121.380378106433938,
+ 41.379391581476078,
+ 500.0
+ ],
+ [
+ 121.480953128782971,
+ 41.358946713823883,
+ 500.0
+ ],
+ [
+ 121.575199117861601,
+ 41.325576459110138,
+ 500.0
+ ],
+ [
+ 121.660211476138826,
+ 41.280313336019482,
+ 500.0
+ ],
+ [
+ 121.733385949757931,
+ 41.224555330430306,
+ 500.0
+ ],
+ [
+ 121.792500250666933,
+ 41.160020615383445,
+ 500.0
+ ],
+ [
+ 121.83578128525302,
+ 41.088692403635555,
+ 500.0
+ ],
+ [
+ 121.861956027911162,
+ 41.012755975960125,
+ 500.0
+ ],
+ [
+ 121.870284915663348,
+ 40.934530129784918,
+ 500.0
+ ],
+ [
+ 121.860577444269026,
+ 40.856395385086671,
+ 500.0
+ ],
+ [
+ 121.833190360945778,
+ 40.780721276854457,
+ 500.0
+ ],
+ [
+ 121.789009436458144,
+ 40.70979497101002,
+ 500.0
+ ],
+ [
+ 121.729416242795253,
+ 40.645753281744192,
+ 500.0
+ ],
+ [
+ 121.656241663272866,
+ 40.590519961634676,
+ 500.0
+ ],
+ [
+ 121.5717080354963,
+ 40.545749898911268,
+ 500.0
+ ],
+ [
+ 121.478361899539394,
+ 40.512781603090097,
+ 500.0
+ ],
+ [
+ 121.378999323758734,
+ 40.49259910147898,
+ 500.0
+ ],
+ [
+ 121.276585738852503,
+ 40.48580411156852,
+ 500.0
+ ],
+ [
+ 121.174172153946273,
+ 40.49259910147898,
+ 500.0
+ ],
+ [
+ 121.074809578165613,
+ 40.512781603090097,
+ 500.0
+ ],
+ [
+ 120.981463442208707,
+ 40.545749898911268,
+ 500.0
+ ],
+ [
+ 120.896929814432141,
+ 40.590519961634676,
+ 500.0
+ ],
+ [
+ 120.823755234909754,
+ 40.645753281744192,
+ 500.0
+ ],
+ [
+ 120.764162041246863,
+ 40.70979497101002,
+ 500.0
+ ],
+ [
+ 120.719981116759229,
+ 40.780721276854457,
+ 500.0
+ ],
+ [
+ 120.692594033435981,
+ 40.856395385086671,
+ 500.0
+ ],
+ [
+ 120.682886562041659,
+ 40.934530129784918,
+ 500.0
+ ],
+ [
+ 120.691215449793845,
+ 41.012755975960125,
+ 500.0
+ ],
+ [
+ 120.717390192451987,
+ 41.088692403635555,
+ 500.0
+ ],
+ [
+ 120.760671227038074,
+ 41.160020615383445,
+ 500.0
+ ],
+ [
+ 120.819785527947076,
+ 41.224555330430306,
+ 500.0
+ ],
+ [
+ 120.89296000156618,
+ 41.280313336019482,
+ 500.0
+ ],
+ [
+ 120.977972359843406,
+ 41.325576459110138,
+ 500.0
+ ],
+ [
+ 121.072218348922036,
+ 41.358946713823883,
+ 500.0
+ ],
+ [
+ 121.172793371271069,
+ 41.379391581476078,
+ 500.0
+ ],
+ [
+ 121.276585738852503,
+ 41.386277691266415,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2694,
+ "name": "Jinzhou Airport",
+ "country": "CN",
+ "city": "Jinzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "40.8886867488924",
+ "lng": "121.251381099227",
+ "radius": 12756,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.20337650499999,
+ 40.8849028327,
+ 0.0
+ ],
+ [
+ 121.131675038,
+ 40.818232120399998,
+ 0.0
+ ],
+ [
+ 121.205627077,
+ 40.783833909499997,
+ 0.0
+ ],
+ [
+ 121.252334457,
+ 40.862180013699998,
+ 0.0
+ ],
+ [
+ 121.285992882,
+ 40.862206496900001,
+ 0.0
+ ],
+ [
+ 121.306733944,
+ 40.867634772899997,
+ 0.0
+ ],
+ [
+ 121.324915264,
+ 40.876934737399999,
+ 0.0
+ ],
+ [
+ 121.35934668599999,
+ 40.911195170900001,
+ 0.0
+ ],
+ [
+ 121.36888836,
+ 40.926157103900003,
+ 0.0
+ ],
+ [
+ 121.372978527,
+ 40.942465190100002,
+ 0.0
+ ],
+ [
+ 121.37134212,
+ 40.959017350400003,
+ 0.0
+ ],
+ [
+ 121.20337650499999,
+ 40.8849028327,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2694,
+ "name": "Jinzhou Airport",
+ "country": "CN",
+ "city": "Jinzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "40.9761167127932",
+ "lng": "121.302000309344",
+ "radius": 13096,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.42166679899999,
+ 41.051739150800003,
+ 0.0
+ ],
+ [
+ 121.344325943,
+ 41.089485337,
+ 0.0
+ ],
+ [
+ 121.30098190699999,
+ 41.007814791,
+ 0.0
+ ],
+ [
+ 121.263625608,
+ 41.008130413099998,
+ 0.0
+ ],
+ [
+ 121.242916488,
+ 41.002539006299997,
+ 0.0
+ ],
+ [
+ 121.210616366,
+ 40.980429522100003,
+ 0.0
+ ],
+ [
+ 121.183822953,
+ 40.931268336400002,
+ 0.0
+ ],
+ [
+ 121.184851784,
+ 40.914688311299997,
+ 0.0
+ ],
+ [
+ 121.20337650499999,
+ 40.8849028327,
+ 0.0
+ ],
+ [
+ 121.37134212,
+ 40.959017350400003,
+ 0.0
+ ],
+ [
+ 121.35170287699999,
+ 40.9884004496,
+ 0.0
+ ],
+ [
+ 121.42166679899999,
+ 41.051739150800003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2694,
+ "name": "Jinzhou Airport",
+ "country": "CN",
+ "city": "Jinzhou",
+ "height": 120,
+ "level": 2,
+ "lat": "40.9348811083615",
+ "lng": "121.276596762157",
+ "radius": 23631,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.307440704,
+ 41.146126217499997,
+ 120.0
+ ],
+ [
+ 121.511176685,
+ 41.052425404099999,
+ 120.0
+ ],
+ [
+ 121.245103368,
+ 40.723699089100002,
+ 120.0
+ ],
+ [
+ 121.04237866299999,
+ 40.817399903899997,
+ 120.0
+ ],
+ [
+ 121.307440704,
+ 41.146126217499997,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1103,
+ "name": "Anshan Air Base Airport",
+ "country": "CN",
+ "city": "Anshan",
+ "height": 0,
+ "level": 2,
+ "lat": "41.0644393928636",
+ "lng": "122.831306362173",
+ "radius": 13236,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.800155137,
+ 41.041178754699999,
+ 0.0
+ ],
+ [
+ 122.75679633,
+ 40.959512162199999,
+ 0.0
+ ],
+ [
+ 122.842753773,
+ 40.945712218799997,
+ 0.0
+ ],
+ [
+ 122.854364264,
+ 41.029009857399998,
+ 0.0
+ ],
+ [
+ 122.89341475099999,
+ 41.039352846100002,
+ 0.0
+ ],
+ [
+ 122.910013928,
+ 41.050251250800002,
+ 0.0
+ ],
+ [
+ 122.922312805,
+ 41.064016929700003,
+ 0.0
+ ],
+ [
+ 122.939481528,
+ 41.099754762700002,
+ 0.0
+ ],
+ [
+ 122.94048979199999,
+ 41.130632109799997,
+ 0.0
+ ],
+ [
+ 122.93289773399999,
+ 41.146214436100003,
+ 0.0
+ ],
+ [
+ 122.903273414,
+ 41.170417000900002,
+ 0.0
+ ],
+ [
+ 122.800155137,
+ 41.041178754699999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1103,
+ "name": "Anshan Air Base Airport",
+ "country": "CN",
+ "city": "Anshan",
+ "height": 0,
+ "level": 2,
+ "lat": "41.1503391912817",
+ "lng": "122.863005093825",
+ "radius": 13231,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.944882974,
+ 41.252144026,
+ 0.0
+ ],
+ [
+ 122.860624361,
+ 41.269318959400003,
+ 0.0
+ ],
+ [
+ 122.850622899,
+ 41.182650588400001,
+ 0.0
+ ],
+ [
+ 122.812794223,
+ 41.1740161082,
+ 0.0
+ ],
+ [
+ 122.795399956,
+ 41.1638155789,
+ 0.0
+ ],
+ [
+ 122.773831864,
+ 41.135189158899998,
+ 0.0
+ ],
+ [
+ 122.76717912,
+ 41.111895896299998,
+ 0.0
+ ],
+ [
+ 122.765015889,
+ 41.081997277299998,
+ 0.0
+ ],
+ [
+ 122.77181853,
+ 41.066211122699997,
+ 0.0
+ ],
+ [
+ 122.800155137,
+ 41.041178754699999,
+ 0.0
+ ],
+ [
+ 122.903273414,
+ 41.170417000900002,
+ 0.0
+ ],
+ [
+ 122.944882974,
+ 41.252144026,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1103,
+ "name": "Anshan Air Base Airport",
+ "country": "CN",
+ "city": "Anshan",
+ "height": 120,
+ "level": 2,
+ "lat": "41.1066558788104",
+ "lng": "122.85270717482",
+ "radius": 23489,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.808346596,
+ 41.3152468615,
+ 120.0
+ ],
+ [
+ 123.038258352,
+ 41.265161952,
+ 120.0
+ ],
+ [
+ 122.896338875,
+ 40.897994366200003,
+ 120.0
+ ],
+ [
+ 122.667709117,
+ 40.948079276900003,
+ 120.0
+ ],
+ [
+ 122.808346596,
+ 41.3152468615,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001451,
+ "name": "Anshan Air Base Airport",
+ "country": "CN",
+ "city": "Anshan",
+ "height": 500,
+ "level": 2,
+ "lat": "41.10553",
+ "lng": "122.85635",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.85635,
+ 41.555735859102015,
+ 500.0
+ ],
+ [
+ 122.960412944986999,
+ 41.548849673492924,
+ 500.0
+ ],
+ [
+ 123.061249773684764,
+ 41.528404606408522,
+ 500.0
+ ],
+ [
+ 123.155740362392166,
+ 41.495034108613346,
+ 500.0
+ ],
+ [
+ 123.240972329483881,
+ 41.449770818933835,
+ 500.0
+ ],
+ [
+ 123.314334568192976,
+ 41.394012865750263,
+ 500.0
+ ],
+ [
+ 123.373599097937898,
+ 41.329478565500814,
+ 500.0
+ ],
+ [
+ 123.416988462465227,
+ 41.258151252994516,
+ 500.0
+ ],
+ [
+ 123.443226709050649,
+ 41.182216289634802,
+ 500.0
+ ],
+ [
+ 123.451572825617362,
+ 41.103992496757044,
+ 500.0
+ ],
+ [
+ 123.441836321191801,
+ 41.025860352964969,
+ 500.0
+ ],
+ [
+ 123.414375352940993,
+ 40.950189285865576,
+ 500.0
+ ],
+ [
+ 123.370078392539298,
+ 40.879266295203408,
+ 500.0
+ ],
+ [
+ 123.310330868650027,
+ 40.815227984517811,
+ 500.0
+ ],
+ [
+ 123.236968522363114,
+ 40.759997871039111,
+ 500.0
+ ],
+ [
+ 123.152219384597046,
+ 40.715230605948378,
+ 500.0
+ ],
+ [
+ 123.058636354402609,
+ 40.682264483658592,
+ 500.0
+ ],
+ [
+ 122.959022354948047,
+ 40.662083360023473,
+ 500.0
+ ],
+ [
+ 122.85635,
+ 40.655288842136486,
+ 500.0
+ ],
+ [
+ 122.753677645051965,
+ 40.662083360023473,
+ 500.0
+ ],
+ [
+ 122.654063645597404,
+ 40.682264483658592,
+ 500.0
+ ],
+ [
+ 122.560480615402966,
+ 40.715230605948378,
+ 500.0
+ ],
+ [
+ 122.475731477636899,
+ 40.759997871039111,
+ 500.0
+ ],
+ [
+ 122.402369131349985,
+ 40.815227984517811,
+ 500.0
+ ],
+ [
+ 122.342621607460714,
+ 40.879266295203408,
+ 500.0
+ ],
+ [
+ 122.298324647059019,
+ 40.950189285865576,
+ 500.0
+ ],
+ [
+ 122.270863678808212,
+ 41.025860352964969,
+ 500.0
+ ],
+ [
+ 122.261127174382651,
+ 41.103992496757044,
+ 500.0
+ ],
+ [
+ 122.269473290949364,
+ 41.182216289634802,
+ 500.0
+ ],
+ [
+ 122.295711537534785,
+ 41.258151252994516,
+ 500.0
+ ],
+ [
+ 122.339100902062114,
+ 41.329478565500814,
+ 500.0
+ ],
+ [
+ 122.398365431807036,
+ 41.394012865750263,
+ 500.0
+ ],
+ [
+ 122.471727670516131,
+ 41.449770818933835,
+ 500.0
+ ],
+ [
+ 122.556959637607847,
+ 41.495034108613346,
+ 500.0
+ ],
+ [
+ 122.651450226315248,
+ 41.528404606408522,
+ 500.0
+ ],
+ [
+ 122.752287055013014,
+ 41.548849673492924,
+ 500.0
+ ],
+ [
+ 122.85635,
+ 41.555735859102015,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295682,
+ "name": "Kazarman Airport",
+ "country": "KG",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "41.410291",
+ "lng": "74.044418",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.044418,
+ 41.414792994324657,
+ 0.0
+ ],
+ [
+ 74.045456496006423,
+ 41.414724594255027,
+ 0.0
+ ],
+ [
+ 74.046463431465469,
+ 41.414521472765784,
+ 0.0
+ ],
+ [
+ 74.047408205549743,
+ 41.414189802804486,
+ 0.0
+ ],
+ [
+ 74.048262107618484,
+ 41.41373966383955,
+ 0.0
+ ],
+ [
+ 74.048999190077467,
+ 41.413184735378088,
+ 0.0
+ ],
+ [
+ 74.049597057050264,
+ 41.412541881048099,
+ 0.0
+ ],
+ [
+ 74.05003754486529,
+ 41.41183063591523,
+ 0.0
+ ],
+ [
+ 74.050307273682549,
+ 41.411072612646805,
+ 0.0
+ ],
+ [
+ 74.050398053531424,
+ 41.41029084459953,
+ 0.0
+ ],
+ [
+ 74.050307132482786,
+ 41.409509085817454,
+ 0.0
+ ],
+ [
+ 74.050037279496536,
+ 41.40875108922716,
+ 0.0
+ ],
+ [
+ 74.04959669951991,
+ 41.408039884967536,
+ 0.0
+ ],
+ [
+ 74.048998783508949,
+ 41.407397080776015,
+ 0.0
+ ],
+ [
+ 74.048261701049952,
+ 41.406842205670785,
+ 0.0
+ ],
+ [
+ 74.047407848019375,
+ 41.406392116844309,
+ 0.0
+ ],
+ [
+ 74.046463166096714,
+ 41.406060487756257,
+ 0.0
+ ],
+ [
+ 74.04545635480666,
+ 41.405857392945116,
+ 0.0
+ ],
+ [
+ 74.044418,
+ 41.405789002140708,
+ 0.0
+ ],
+ [
+ 74.043379645193326,
+ 41.405857392945116,
+ 0.0
+ ],
+ [
+ 74.042372833903272,
+ 41.406060487756257,
+ 0.0
+ ],
+ [
+ 74.041428151980611,
+ 41.406392116844309,
+ 0.0
+ ],
+ [
+ 74.040574298950034,
+ 41.406842205670785,
+ 0.0
+ ],
+ [
+ 74.039837216491037,
+ 41.407397080776015,
+ 0.0
+ ],
+ [
+ 74.039239300480077,
+ 41.408039884967536,
+ 0.0
+ ],
+ [
+ 74.038798720503451,
+ 41.40875108922716,
+ 0.0
+ ],
+ [
+ 74.038528867517201,
+ 41.409509085817454,
+ 0.0
+ ],
+ [
+ 74.038437946468562,
+ 41.41029084459953,
+ 0.0
+ ],
+ [
+ 74.038528726317438,
+ 41.411072612646805,
+ 0.0
+ ],
+ [
+ 74.038798455134696,
+ 41.41183063591523,
+ 0.0
+ ],
+ [
+ 74.039238942949723,
+ 41.412541881048099,
+ 0.0
+ ],
+ [
+ 74.039836809922519,
+ 41.413184735378088,
+ 0.0
+ ],
+ [
+ 74.040573892381502,
+ 41.41373966383955,
+ 0.0
+ ],
+ [
+ 74.041427794450243,
+ 41.414189802804486,
+ 0.0
+ ],
+ [
+ 74.042372568534518,
+ 41.414521472765784,
+ 0.0
+ ],
+ [
+ 74.043379503993563,
+ 41.414724594255027,
+ 0.0
+ ],
+ [
+ 74.044418,
+ 41.414792994324657,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001326,
+ "name": "Dunhuang Airport",
+ "country": "CN",
+ "city": "Dunhuang",
+ "height": 500,
+ "level": 2,
+ "lat": "40.16169",
+ "lng": "94.809095",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.809095,
+ 40.611969764392036,
+ 500.0
+ ],
+ [
+ 94.911680081215636,
+ 40.605083985084541,
+ 500.0
+ ],
+ [
+ 95.011086944145504,
+ 40.584639983051908,
+ 500.0
+ ],
+ [
+ 95.104241532689642,
+ 40.551270770078546,
+ 500.0
+ ],
+ [
+ 95.188273976742835,
+ 40.50600832554106,
+ 500.0
+ ],
+ [
+ 95.260610598537056,
+ 40.450249995845773,
+ 500.0
+ ],
+ [
+ 95.31905451235184,
+ 40.385713310940424,
+ 500.0
+ ],
+ [
+ 95.361852096475161,
+ 40.314380936914048,
+ 500.0
+ ],
+ [
+ 95.387743394618681,
+ 40.238437794629618,
+ 500.0
+ ],
+ [
+ 95.395995319741431,
+ 40.16020257720583,
+ 500.0
+ ],
+ [
+ 95.38641731870068,
+ 40.08205599441812,
+ 500.0
+ ],
+ [
+ 95.359359856784351,
+ 40.006368068413842,
+ 500.0
+ ],
+ [
+ 95.315696660469072,
+ 39.935426717101556,
+ 500.0
+ ],
+ [
+ 95.25679209759123,
+ 39.871369706922529,
+ 500.0
+ ],
+ [
+ 95.184455377171773,
+ 39.81612185378664,
+ 500.0
+ ],
+ [
+ 95.100883431079041,
+ 39.771339116635936,
+ 500.0
+ ],
+ [
+ 95.008594420474665,
+ 39.738360976415365,
+ 500.0
+ ],
+ [
+ 94.910353819942841,
+ 39.718172234666177,
+ 500.0
+ ],
+ [
+ 94.809095,
+ 39.711375107373044,
+ 500.0
+ ],
+ [
+ 94.707836180057157,
+ 39.718172234666177,
+ 500.0
+ ],
+ [
+ 94.609595579525333,
+ 39.738360976415365,
+ 500.0
+ ],
+ [
+ 94.517306568920958,
+ 39.771339116635936,
+ 500.0
+ ],
+ [
+ 94.433734622828226,
+ 39.81612185378664,
+ 500.0
+ ],
+ [
+ 94.361397902408768,
+ 39.871369706922529,
+ 500.0
+ ],
+ [
+ 94.302493339530926,
+ 39.935426717101556,
+ 500.0
+ ],
+ [
+ 94.258830143215647,
+ 40.006368068413842,
+ 500.0
+ ],
+ [
+ 94.231772681299319,
+ 40.08205599441812,
+ 500.0
+ ],
+ [
+ 94.222194680258568,
+ 40.16020257720583,
+ 500.0
+ ],
+ [
+ 94.230446605381317,
+ 40.238437794629618,
+ 500.0
+ ],
+ [
+ 94.256337903524837,
+ 40.314380936914048,
+ 500.0
+ ],
+ [
+ 94.299135487648158,
+ 40.385713310940424,
+ 500.0
+ ],
+ [
+ 94.357579401462942,
+ 40.450249995845773,
+ 500.0
+ ],
+ [
+ 94.429916023257164,
+ 40.50600832554106,
+ 500.0
+ ],
+ [
+ 94.513948467310357,
+ 40.551270770078546,
+ 500.0
+ ],
+ [
+ 94.607103055854495,
+ 40.584639983051908,
+ 500.0
+ ],
+ [
+ 94.706509918784363,
+ 40.605083985084541,
+ 500.0
+ ],
+ [
+ 94.809095,
+ 40.611969764392036,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 650,
+ "name": "Dunhuang Airport",
+ "country": "CN",
+ "city": "Dunhuang",
+ "height": 0,
+ "level": 2,
+ "lat": "40.1530234278444",
+ "lng": "94.7517177896816",
+ "radius": 13269,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.7105468723,
+ 40.175882029100002,
+ 0.0
+ ],
+ [
+ 94.598900903200004,
+ 40.1776047476,
+ 0.0
+ ],
+ [
+ 94.605834360200006,
+ 40.1105803803,
+ 0.0
+ ],
+ [
+ 94.717498376099996,
+ 40.133914775199997,
+ 0.0
+ ],
+ [
+ 94.740743471399995,
+ 40.111174314700001,
+ 0.0
+ ],
+ [
+ 94.759270329900005,
+ 40.102530934500003,
+ 0.0
+ ],
+ [
+ 94.801779345599996,
+ 40.0974381089,
+ 0.0
+ ],
+ [
+ 94.835132827,
+ 40.100773102600002,
+ 0.0
+ ],
+ [
+ 94.870184756499995,
+ 40.109739659799999,
+ 0.0
+ ],
+ [
+ 94.899912168900002,
+ 40.133540751399998,
+ 0.0
+ ],
+ [
+ 94.907762464399994,
+ 40.149016117899997,
+ 0.0
+ ],
+ [
+ 94.7105468723,
+ 40.175882029100002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 650,
+ "name": "Dunhuang Airport",
+ "country": "CN",
+ "city": "Dunhuang",
+ "height": 0,
+ "level": 2,
+ "lat": "40.1668885435565",
+ "lng": "94.8664284515991",
+ "radius": 13282,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 95.019386041299995,
+ 40.142365028299999,
+ 0.0
+ ],
+ [
+ 95.010803446599994,
+ 40.2127660998,
+ 0.0
+ ],
+ [
+ 94.902489757400005,
+ 40.191090810200002,
+ 0.0
+ ],
+ [
+ 94.878178782,
+ 40.2135735154,
+ 0.0
+ ],
+ [
+ 94.859293187,
+ 40.221791598300001,
+ 0.0
+ ],
+ [
+ 94.8165232785,
+ 40.225892473099996,
+ 0.0
+ ],
+ [
+ 94.749552232799999,
+ 40.214358573,
+ 0.0
+ ],
+ [
+ 94.73224958199999,
+ 40.204313921400001,
+ 0.0
+ ],
+ [
+ 94.718945926100005,
+ 40.191189779699997,
+ 0.0
+ ],
+ [
+ 94.7105468723,
+ 40.175882029100002,
+ 0.0
+ ],
+ [
+ 94.907762464399994,
+ 40.149016117899997,
+ 0.0
+ ],
+ [
+ 95.019386041299995,
+ 40.142365028299999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 650,
+ "name": "Dunhuang Airport",
+ "country": "CN",
+ "city": "Dunhuang",
+ "height": 120,
+ "level": 2,
+ "lat": "40.1611669917927",
+ "lng": "94.8096777989082",
+ "radius": 23615,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 95.043540319900004,
+ 40.276125422900002,
+ 120.0
+ ],
+ [
+ 95.074814621599998,
+ 40.097854957599999,
+ 120.0
+ ],
+ [
+ 94.575765518500006,
+ 40.046738409699998,
+ 120.0
+ ],
+ [
+ 94.544514754399998,
+ 40.225008874899999,
+ 120.0
+ ],
+ [
+ 95.043540319900004,
+ 40.276125422900002,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3046,
+ "name": "Baotou Airport",
+ "country": "CN",
+ "city": "Baotou",
+ "height": 0,
+ "level": 2,
+ "lat": "40.5896307773416",
+ "lng": "109.95633244155",
+ "radius": 13384,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.938337148,
+ 40.622907791499998,
+ 0.0
+ ],
+ [
+ 109.86173707499999,
+ 40.686257917699997,
+ 0.0
+ ],
+ [
+ 109.8084076,
+ 40.632980031499997,
+ 0.0
+ ],
+ [
+ 109.903413364,
+ 40.587968063300004,
+ 0.0
+ ],
+ [
+ 109.900268709,
+ 40.557134128400001,
+ 0.0
+ ],
+ [
+ 109.906708067,
+ 40.541273461599999,
+ 0.0
+ ],
+ [
+ 109.91832596899999,
+ 40.527218712200003,
+ 0.0
+ ],
+ [
+ 109.959276449,
+ 40.499288618100003,
+ 0.0
+ ],
+ [
+ 109.991744709,
+ 40.487486422,
+ 0.0
+ ],
+ [
+ 110.013462973,
+ 40.485856105899998,
+ 0.0
+ ],
+ [
+ 110.054883296,
+ 40.495392327300003,
+ 0.0
+ ],
+ [
+ 109.938337148,
+ 40.622907791499998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3046,
+ "name": "Baotou Airport",
+ "country": "CN",
+ "city": "Baotou",
+ "height": 0,
+ "level": 2,
+ "lat": "40.5289915239922",
+ "lng": "110.038410493402",
+ "radius": 13434,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.13326161099999,
+ 40.432075467200001,
+ 0.0
+ ],
+ [
+ 110.186589905,
+ 40.4853506356,
+ 0.0
+ ],
+ [
+ 110.09159199,
+ 40.528681184600003,
+ 0.0
+ ],
+ [
+ 110.095363577,
+ 40.558948249099998,
+ 0.0
+ ],
+ [
+ 110.08936890299999,
+ 40.574909581599996,
+ 0.0
+ ],
+ [
+ 110.078135948,
+ 40.589147593,
+ 0.0
+ ],
+ [
+ 110.035708626,
+ 40.619054065199997,
+ 0.0
+ ],
+ [
+ 110.001458699,
+ 40.631456112599999,
+ 0.0
+ ],
+ [
+ 109.97966723499999,
+ 40.632872811600002,
+ 0.0
+ ],
+ [
+ 109.938337148,
+ 40.622907791499998,
+ 0.0
+ ],
+ [
+ 110.054883296,
+ 40.495392327300003,
+ 0.0
+ ],
+ [
+ 110.13326161099999,
+ 40.432075467200001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3046,
+ "name": "Baotou Airport",
+ "country": "CN",
+ "city": "Baotou",
+ "height": 120,
+ "level": 2,
+ "lat": "40.5584754249219",
+ "lng": "109.997539908196",
+ "radius": 23677,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.265855671,
+ 40.4972467399,
+ 120.0
+ ],
+ [
+ 110.108576629,
+ 40.363014753400002,
+ 120.0
+ ],
+ [
+ 109.72907704399999,
+ 40.619953748900002,
+ 120.0
+ ],
+ [
+ 109.886960888,
+ 40.754185734499998,
+ 120.0
+ ],
+ [
+ 110.265855671,
+ 40.4972467399,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001435,
+ "name": "Baotou Airport",
+ "country": "CN",
+ "city": "Baotou",
+ "height": 500,
+ "level": 2,
+ "lat": "40.559348",
+ "lng": "109.998569",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.998569,
+ 41.009596669638718,
+ 500.0
+ ],
+ [
+ 110.101768158535819,
+ 41.002710723826304,
+ 500.0
+ ],
+ [
+ 110.201769198858855,
+ 40.982266286446169,
+ 500.0
+ ],
+ [
+ 110.295478925070597,
+ 40.948896552359685,
+ 500.0
+ ],
+ [
+ 110.38000980408205,
+ 40.903633775939852,
+ 500.0
+ ],
+ [
+ 110.452772605987178,
+ 40.847875629621072,
+ 500.0
+ ],
+ [
+ 110.511557523774584,
+ 40.783339971144471,
+ 500.0
+ ],
+ [
+ 110.554601030234934,
+ 40.712009745100453,
+ 500.0
+ ],
+ [
+ 110.580636519701414,
+ 40.636070055458859,
+ 500.0
+ ],
+ [
+ 110.588927609154567,
+ 40.557839647912964,
+ 500.0
+ ],
+ [
+ 110.579283768272816,
+ 40.479699134627779,
+ 500.0
+ ],
+ [
+ 110.552058655788201,
+ 40.404018288300691,
+ 500.0
+ ],
+ [
+ 110.50813212305097,
+ 40.333084642168608,
+ 500.0
+ ],
+ [
+ 110.448877287892245,
+ 40.269035475758436,
+ 500.0
+ ],
+ [
+ 110.376114383699203,
+ 40.213795061378569,
+ 500.0
+ ],
+ [
+ 110.292053265344904,
+ 40.169018810658649,
+ 500.0
+ ],
+ [
+ 110.199226529885834,
+ 40.13604570801359,
+ 500.0
+ ],
+ [
+ 110.100415214868846,
+ 40.115860159262276,
+ 500.0
+ ],
+ [
+ 109.998569,
+ 40.109064125606551,
+ 500.0
+ ],
+ [
+ 109.896722785131161,
+ 40.115860159262276,
+ 500.0
+ ],
+ [
+ 109.797911470114173,
+ 40.13604570801359,
+ 500.0
+ ],
+ [
+ 109.705084734655102,
+ 40.169018810658649,
+ 500.0
+ ],
+ [
+ 109.621023616300803,
+ 40.213795061378569,
+ 500.0
+ ],
+ [
+ 109.548260712107762,
+ 40.269035475758436,
+ 500.0
+ ],
+ [
+ 109.489005876949037,
+ 40.333084642168608,
+ 500.0
+ ],
+ [
+ 109.445079344211806,
+ 40.404018288300691,
+ 500.0
+ ],
+ [
+ 109.41785423172719,
+ 40.479699134627779,
+ 500.0
+ ],
+ [
+ 109.40821039084544,
+ 40.557839647912964,
+ 500.0
+ ],
+ [
+ 109.416501480298592,
+ 40.636070055458859,
+ 500.0
+ ],
+ [
+ 109.442536969765072,
+ 40.712009745100453,
+ 500.0
+ ],
+ [
+ 109.485580476225422,
+ 40.783339971144471,
+ 500.0
+ ],
+ [
+ 109.544365394012829,
+ 40.847875629621072,
+ 500.0
+ ],
+ [
+ 109.617128195917957,
+ 40.903633775939852,
+ 500.0
+ ],
+ [
+ 109.70165907492941,
+ 40.948896552359685,
+ 500.0
+ ],
+ [
+ 109.795368801141151,
+ 40.982266286446169,
+ 500.0
+ ],
+ [
+ 109.895369841464188,
+ 41.002710723826304,
+ 500.0
+ ],
+ [
+ 109.998569,
+ 41.009596669638718,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002372,
+ "name": "内蒙古托克托县大唐托电云发电厂",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "40.1939028820222",
+ "lng": "111.358880258921",
+ "radius": 2494,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.336106185913081,
+ 40.179808091342693,
+ 0.0
+ ],
+ [
+ 111.336102523803703,
+ 40.208061569901616,
+ 0.0
+ ],
+ [
+ 111.381645431518564,
+ 40.207993820878173,
+ 0.0
+ ],
+ [
+ 111.381648483276365,
+ 40.179739731967686,
+ 0.0
+ ],
+ [
+ 111.336106185913081,
+ 40.179808091342693,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5803,
+ "name": "Beijing Capital International Airport",
+ "country": "CN",
+ "city": "Beijing",
+ "height": 0,
+ "level": 2,
+ "lat": "40.0426468709703",
+ "lng": "116.547408207776",
+ "radius": 12998,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.581298853566807,
+ 39.928673423987398,
+ 0.0
+ ],
+ [
+ 116.531887323,
+ 40.158936569300003,
+ 0.0
+ ],
+ [
+ 116.50180735799999,
+ 40.140211107900001,
+ 0.0
+ ],
+ [
+ 116.491004429,
+ 40.125813741199998,
+ 0.0
+ ],
+ [
+ 116.485446636,
+ 40.109768877299999,
+ 0.0
+ ],
+ [
+ 116.485509238,
+ 40.093170707200002,
+ 0.0
+ ],
+ [
+ 116.504197026,
+ 40.037878003199999,
+ 0.0
+ ],
+ [
+ 116.51778496,
+ 40.024945302399999,
+ 0.0
+ ],
+ [
+ 116.528349760375775,
+ 40.020515502264765,
+ 0.0
+ ],
+ [
+ 116.530146019,
+ 40.016874372799997,
+ 0.0
+ ],
+ [
+ 116.54482453,
+ 40.004663513799997,
+ 0.0
+ ],
+ [
+ 116.555152804550588,
+ 40.000993943478313,
+ 0.0
+ ],
+ [
+ 116.552131659,
+ 39.925808767900001,
+ 0.0
+ ],
+ [
+ 116.581298853566807,
+ 39.928673423987398,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5803,
+ "name": "Beijing Capital International Airport",
+ "country": "CN",
+ "city": "Beijing",
+ "height": 0,
+ "level": 2,
+ "lat": "40.0817361541033",
+ "lng": "116.594405714565",
+ "radius": 19676,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.667659215118064,
+ 39.917319398977483,
+ 0.0
+ ],
+ [
+ 116.686475069,
+ 39.919447390899997,
+ 0.0
+ ],
+ [
+ 116.653096442,
+ 39.999379051200002,
+ 0.0
+ ],
+ [
+ 116.688448291,
+ 40.021005986900001,
+ 0.0
+ ],
+ [
+ 116.703564066,
+ 40.051816582,
+ 0.0
+ ],
+ [
+ 116.702842015,
+ 40.068405618600003,
+ 0.0
+ ],
+ [
+ 116.68269631299999,
+ 40.128853711700003,
+ 0.0
+ ],
+ [
+ 116.651507256,
+ 40.151541570299997,
+ 0.0
+ ],
+ [
+ 116.631241313,
+ 40.157506406899998,
+ 0.0
+ ],
+ [
+ 116.634575351,
+ 40.240828460700001,
+ 0.0
+ ],
+ [
+ 116.58898831779446,
+ 40.238124895374142,
+ 0.0
+ ],
+ [
+ 116.589528167,
+ 40.252534786200002,
+ 0.0
+ ],
+ [
+ 116.501896493,
+ 40.243951682800002,
+ 0.0
+ ],
+ [
+ 116.531887323,
+ 40.158936569300003,
+ 0.0
+ ],
+ [
+ 116.581298853566807,
+ 39.928673423987398,
+ 0.0
+ ],
+ [
+ 116.580446452,
+ 39.907491243400003,
+ 0.0
+ ],
+ [
+ 116.668122456,
+ 39.916084865099997,
+ 0.0
+ ],
+ [
+ 116.667659215118064,
+ 39.917319398977483,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5803,
+ "name": "Beijing Capital International Airport",
+ "country": "CN",
+ "city": "Beijing",
+ "height": 120,
+ "level": 2,
+ "lat": "40.0834034803173",
+ "lng": "116.600779755606",
+ "radius": 25450,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.745619429854969,
+ 39.893984453748608,
+ 120.0
+ ],
+ [
+ 116.746755014,
+ 39.8871044817,
+ 120.0
+ ],
+ [
+ 116.578629341755075,
+ 39.870638285216614,
+ 120.0
+ ],
+ [
+ 116.545896382,
+ 39.866062030400002,
+ 120.0
+ ],
+ [
+ 116.545575310596448,
+ 39.867400979667977,
+ 120.0
+ ],
+ [
+ 116.51427033,
+ 39.864334975799999,
+ 120.0
+ ],
+ [
+ 116.510428555426657,
+ 39.887137561641957,
+ 120.0
+ ],
+ [
+ 116.48563409,
+ 39.884862013899998,
+ 120.0
+ ],
+ [
+ 116.424958554,
+ 40.268711812600003,
+ 120.0
+ ],
+ [
+ 116.659053349,
+ 40.2900753893,
+ 120.0
+ ],
+ [
+ 116.660024919324627,
+ 40.283792671042555,
+ 120.0
+ ],
+ [
+ 116.684557336,
+ 40.2872029113,
+ 120.0
+ ],
+ [
+ 116.77649286,
+ 39.898300735699998,
+ 120.0
+ ],
+ [
+ 116.745619429854969,
+ 39.893984453748608,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33237,
+ "name": "QC",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "40.2418450721557",
+ "lng": "116.383402489736",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.38340248973627,
+ 40.24634798128848,
+ 0.0
+ ],
+ [
+ 116.384422913786111,
+ 40.246279567508772,
+ 0.0
+ ],
+ [
+ 116.385412326759166,
+ 40.246076405288903,
+ 0.0
+ ],
+ [
+ 116.386340660559426,
+ 40.245744668765255,
+ 0.0
+ ],
+ [
+ 116.387179704312985,
+ 40.245294439353927,
+ 0.0
+ ],
+ [
+ 116.387903962014093,
+ 40.24473939921851,
+ 0.0
+ ],
+ [
+ 116.388491427460025,
+ 40.244096415282606,
+ 0.0
+ ],
+ [
+ 116.388924252898065,
+ 40.243385026458178,
+ 0.0
+ ],
+ [
+ 116.389189291068476,
+ 40.242626849703861,
+ 0.0
+ ],
+ [
+ 116.389278494204049,
+ 40.241844922991163,
+ 0.0
+ ],
+ [
+ 116.389189157920029,
+ 40.241063005168215,
+ 0.0
+ ],
+ [
+ 116.388924002660829,
+ 40.240304854010908,
+ 0.0
+ ],
+ [
+ 116.388491090316322,
+ 40.239593504403381,
+ 0.0
+ ],
+ [
+ 116.387903578628396,
+ 40.238950568574126,
+ 0.0
+ ],
+ [
+ 116.387179320927288,
+ 40.238395579632737,
+ 0.0
+ ],
+ [
+ 116.386340323415723,
+ 40.237945398328044,
+ 0.0
+ ],
+ [
+ 116.385412076521931,
+ 40.237613701021296,
+ 0.0
+ ],
+ [
+ 116.384422780637649,
+ 40.237410564398452,
+ 0.0
+ ],
+ [
+ 116.38340248973627,
+ 40.237342159508493,
+ 0.0
+ ],
+ [
+ 116.38238219883489,
+ 40.237410564398452,
+ 0.0
+ ],
+ [
+ 116.381392902950608,
+ 40.237613701021296,
+ 0.0
+ ],
+ [
+ 116.380464656056816,
+ 40.237945398328044,
+ 0.0
+ ],
+ [
+ 116.379625658545251,
+ 40.238395579632737,
+ 0.0
+ ],
+ [
+ 116.378901400844143,
+ 40.238950568574126,
+ 0.0
+ ],
+ [
+ 116.378313889156217,
+ 40.239593504403381,
+ 0.0
+ ],
+ [
+ 116.37788097681171,
+ 40.240304854010908,
+ 0.0
+ ],
+ [
+ 116.37761582155251,
+ 40.241063005168215,
+ 0.0
+ ],
+ [
+ 116.37752648526849,
+ 40.241844922991163,
+ 0.0
+ ],
+ [
+ 116.377615688404063,
+ 40.242626849703861,
+ 0.0
+ ],
+ [
+ 116.377880726574475,
+ 40.243385026458178,
+ 0.0
+ ],
+ [
+ 116.378313552012514,
+ 40.244096415282606,
+ 0.0
+ ],
+ [
+ 116.378901017458446,
+ 40.24473939921851,
+ 0.0
+ ],
+ [
+ 116.379625275159555,
+ 40.245294439353927,
+ 0.0
+ ],
+ [
+ 116.380464318913113,
+ 40.245744668765255,
+ 0.0
+ ],
+ [
+ 116.381392652713373,
+ 40.246076405288903,
+ 0.0
+ ],
+ [
+ 116.382382065686429,
+ 40.246279567508772,
+ 0.0
+ ],
+ [
+ 116.38340248973627,
+ 40.24634798128848,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001512,
+ "name": "Beijing Capital International Airport",
+ "country": "CN",
+ "city": "Beijing",
+ "height": 500,
+ "level": 2,
+ "lat": "40.078149",
+ "lng": "116.60175",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.60175,
+ 40.52843528824652,
+ 500.0
+ ],
+ [
+ 116.704207630426438,
+ 40.521549543084973,
+ 500.0
+ ],
+ [
+ 116.803491172338468,
+ 40.501105630127682,
+ 500.0
+ ],
+ [
+ 116.896530541718704,
+ 40.467736523035747,
+ 500.0
+ ],
+ [
+ 116.980459534170535,
+ 40.422474143926316,
+ 500.0
+ ],
+ [
+ 117.052707699708009,
+ 40.366715771331556,
+ 500.0
+ ],
+ [
+ 117.11108083455153,
+ 40.302178866978565,
+ 500.0
+ ],
+ [
+ 117.153827373175886,
+ 40.230846039031491,
+ 500.0
+ ],
+ [
+ 117.179688739803694,
+ 40.154902170334559,
+ 500.0
+ ],
+ [
+ 117.187932531979456,
+ 40.076665943218885,
+ 500.0
+ ],
+ [
+ 117.178368192335967,
+ 39.998518088000573,
+ 500.0
+ ],
+ [
+ 117.151345523817653,
+ 39.922828679039199,
+ 500.0
+ ],
+ [
+ 117.107736982031199,
+ 39.85188571465941,
+ 500.0
+ ],
+ [
+ 117.048905118954536,
+ 39.787827063040631,
+ 500.0
+ ],
+ [
+ 116.976656855541947,
+ 39.732577653646324,
+ 500.0
+ ],
+ [
+ 116.893186441369835,
+ 39.687793559731283,
+ 500.0
+ ],
+ [
+ 116.801009041160029,
+ 39.654814365938471,
+ 500.0
+ ],
+ [
+ 116.702886899013635,
+ 39.634624956450217,
+ 500.0
+ ],
+ [
+ 116.60175,
+ 39.627827600457714,
+ 500.0
+ ],
+ [
+ 116.500613100986357,
+ 39.634624956450217,
+ 500.0
+ ],
+ [
+ 116.402490958839962,
+ 39.654814365938471,
+ 500.0
+ ],
+ [
+ 116.310313558630156,
+ 39.687793559731283,
+ 500.0
+ ],
+ [
+ 116.226843144458044,
+ 39.732577653646324,
+ 500.0
+ ],
+ [
+ 116.154594881045455,
+ 39.787827063040631,
+ 500.0
+ ],
+ [
+ 116.095763017968792,
+ 39.85188571465941,
+ 500.0
+ ],
+ [
+ 116.052154476182338,
+ 39.922828679039199,
+ 500.0
+ ],
+ [
+ 116.025131807664025,
+ 39.998518088000573,
+ 500.0
+ ],
+ [
+ 116.015567468020535,
+ 40.076665943218885,
+ 500.0
+ ],
+ [
+ 116.023811260196297,
+ 40.154902170334559,
+ 500.0
+ ],
+ [
+ 116.049672626824105,
+ 40.230846039031491,
+ 500.0
+ ],
+ [
+ 116.092419165448462,
+ 40.302178866978565,
+ 500.0
+ ],
+ [
+ 116.150792300291982,
+ 40.366715771331556,
+ 500.0
+ ],
+ [
+ 116.223040465829456,
+ 40.422474143926316,
+ 500.0
+ ],
+ [
+ 116.306969458281287,
+ 40.467736523035747,
+ 500.0
+ ],
+ [
+ 116.400008827661523,
+ 40.501105630127682,
+ 500.0
+ ],
+ [
+ 116.499292369573553,
+ 40.521549543084973,
+ 500.0
+ ],
+ [
+ 116.60175,
+ 40.52843528824652,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001468,
+ "name": "Yingkou Lanqi Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "40.542523",
+ "lng": "122.358784",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.358784,
+ 40.992772986589877,
+ 500.0
+ ],
+ [
+ 122.461956926542129,
+ 40.985887047957497,
+ 500.0
+ ],
+ [
+ 122.561932585022461,
+ 40.965442629383581,
+ 500.0
+ ],
+ [
+ 122.655618597210022,
+ 40.932072917928913,
+ 500.0
+ ],
+ [
+ 122.740128184574573,
+ 40.886810156248728,
+ 500.0
+ ],
+ [
+ 122.812872781568942,
+ 40.831052002883268,
+ 500.0
+ ],
+ [
+ 122.871643133125758,
+ 40.766516301600909,
+ 500.0
+ ],
+ [
+ 122.914676135123528,
+ 40.695185985114392,
+ 500.0
+ ],
+ [
+ 122.940705465868263,
+ 40.619246149573719,
+ 500.0
+ ],
+ [
+ 122.948994883052265,
+ 40.541015538405993,
+ 500.0
+ ],
+ [
+ 122.939353855293703,
+ 40.462874767900246,
+ 500.0
+ ],
+ [
+ 122.912135904832624,
+ 40.38719362133893,
+ 500.0
+ ],
+ [
+ 122.868220621321953,
+ 40.316259648298022,
+ 500.0
+ ],
+ [
+ 122.808980748780982,
+ 40.252210148994806,
+ 500.0
+ ],
+ [
+ 122.73623604965681,
+ 40.196969418841554,
+ 500.0
+ ],
+ [
+ 122.652195826804515,
+ 40.152192892732167,
+ 500.0
+ ],
+ [
+ 122.559392060660528,
+ 40.119219576188506,
+ 500.0
+ ],
+ [
+ 122.460605124026358,
+ 40.099033891851846,
+ 500.0
+ ],
+ [
+ 122.358784,
+ 40.092237811755211,
+ 500.0
+ ],
+ [
+ 122.256962875973642,
+ 40.099033891851846,
+ 500.0
+ ],
+ [
+ 122.158175939339472,
+ 40.119219576188506,
+ 500.0
+ ],
+ [
+ 122.065372173195485,
+ 40.152192892732167,
+ 500.0
+ ],
+ [
+ 121.98133195034319,
+ 40.196969418841554,
+ 500.0
+ ],
+ [
+ 121.908587251219018,
+ 40.252210148994806,
+ 500.0
+ ],
+ [
+ 121.849347378678047,
+ 40.316259648298022,
+ 500.0
+ ],
+ [
+ 121.805432095167376,
+ 40.38719362133893,
+ 500.0
+ ],
+ [
+ 121.778214144706297,
+ 40.462874767900246,
+ 500.0
+ ],
+ [
+ 121.768573116947735,
+ 40.541015538405993,
+ 500.0
+ ],
+ [
+ 121.776862534131737,
+ 40.619246149573719,
+ 500.0
+ ],
+ [
+ 121.802891864876472,
+ 40.695185985114392,
+ 500.0
+ ],
+ [
+ 121.845924866874242,
+ 40.766516301600909,
+ 500.0
+ ],
+ [
+ 121.904695218431058,
+ 40.831052002883268,
+ 500.0
+ ],
+ [
+ 121.977439815425427,
+ 40.886810156248728,
+ 500.0
+ ],
+ [
+ 122.061949402789978,
+ 40.932072917928913,
+ 500.0
+ ],
+ [
+ 122.155635414977539,
+ 40.965442629383581,
+ 500.0
+ ],
+ [
+ 122.255611073457871,
+ 40.985887047957497,
+ 500.0
+ ],
+ [
+ 122.358784,
+ 40.992772986589877,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33365,
+ "name": "Yingkou Lanqi Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "40.5033177103891",
+ "lng": "122.33311076162",
+ "radius": 13230,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.290062142,
+ 40.488156874300003,
+ 0.0
+ ],
+ [
+ 122.221695242,
+ 40.419825125899997,
+ 0.0
+ ],
+ [
+ 122.299039345,
+ 40.387194687,
+ 0.0
+ ],
+ [
+ 122.335677094,
+ 40.470518134700001,
+ 0.0
+ ],
+ [
+ 122.372544718,
+ 40.470898459700003,
+ 0.0
+ ],
+ [
+ 122.392914945,
+ 40.476847044599999,
+ 0.0
+ ],
+ [
+ 122.410571973,
+ 40.486600616600001,
+ 0.0
+ ],
+ [
+ 122.441025309,
+ 40.519551354900003,
+ 0.0
+ ],
+ [
+ 122.45331964499999,
+ 40.5514456776,
+ 0.0
+ ],
+ [
+ 122.442969183,
+ 40.583405185799997,
+ 0.0
+ ],
+ [
+ 122.430020361,
+ 40.596777215400003,
+ 0.0
+ ],
+ [
+ 122.290062142,
+ 40.488156874300003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33365,
+ "name": "Yingkou Lanqi Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "40.5824623487019",
+ "lng": "122.384673762721",
+ "radius": 13186,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.49664371199999,
+ 40.6651751526,
+ 0.0
+ ],
+ [
+ 122.420972445,
+ 40.697810640299998,
+ 0.0
+ ],
+ [
+ 122.379272687,
+ 40.614464538100002,
+ 0.0
+ ],
+ [
+ 122.342410585,
+ 40.614059202500002,
+ 0.0
+ ],
+ [
+ 122.322006903,
+ 40.608094206600001,
+ 0.0
+ ],
+ [
+ 122.290606299,
+ 40.585405990399998,
+ 0.0
+ ],
+ [
+ 122.26994384,
+ 40.549872154699997,
+ 0.0
+ ],
+ [
+ 122.266687443,
+ 40.533459425700002,
+ 0.0
+ ],
+ [
+ 122.269131368,
+ 40.516965469799999,
+ 0.0
+ ],
+ [
+ 122.290062142,
+ 40.488156874300003,
+ 0.0
+ ],
+ [
+ 122.430020361,
+ 40.596777215400003,
+ 0.0
+ ],
+ [
+ 122.49664371199999,
+ 40.6651751526,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33365,
+ "name": "Yingkou Lanqi Airport",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "40.5424085919902",
+ "lng": "122.35906861116",
+ "radius": 23497,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.373826136,
+ 40.753425874,
+ 120.0
+ ],
+ [
+ 122.58275382799999,
+ 40.668159973599998,
+ 120.0
+ ],
+ [
+ 122.343654187,
+ 40.331420395099997,
+ 120.0
+ ],
+ [
+ 122.135774178,
+ 40.416686297,
+ 120.0
+ ],
+ [
+ 122.373826136,
+ 40.753425874,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 527,
+ "name": "Dandong Airport",
+ "country": "CN",
+ "city": "Dandong",
+ "height": 0,
+ "level": 2,
+ "lat": "39.9814962867095",
+ "lng": "124.289983866161",
+ "radius": 13221,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.258683429,
+ 39.950931852499998,
+ 0.0
+ ],
+ [
+ 124.238634123,
+ 39.869302691599998,
+ 0.0
+ ],
+ [
+ 124.326301732,
+ 39.865900548200003,
+ 0.0
+ ],
+ [
+ 124.30964500499999,
+ 39.9509089421,
+ 0.0
+ ],
+ [
+ 124.34617862899999,
+ 39.9668594085,
+ 0.0
+ ],
+ [
+ 124.359563784,
+ 39.979908653199999,
+ 0.0
+ ],
+ [
+ 124.371173213,
+ 40.011596662099997,
+ 0.0
+ ],
+ [
+ 124.369507826,
+ 40.034988834,
+ 0.0
+ ],
+ [
+ 124.360972457,
+ 40.067132280700001,
+ 0.0
+ ],
+ [
+ 124.348860546,
+ 40.080901887700001,
+ 0.0
+ ],
+ [
+ 124.313002757,
+ 40.099086865300002,
+ 0.0
+ ],
+ [
+ 124.258683429,
+ 39.950931852499998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 527,
+ "name": "Dandong Airport",
+ "country": "CN",
+ "city": "Dandong",
+ "height": 0,
+ "level": 2,
+ "lat": "40.0689721544771",
+ "lng": "124.277996304904",
+ "radius": 13228,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.331350363,
+ 40.180721665900002,
+ 0.0
+ ],
+ [
+ 124.248742681,
+ 40.185813982299997,
+ 0.0
+ ],
+ [
+ 124.262028176,
+ 40.097433760400001,
+ 0.0
+ ],
+ [
+ 124.228007791,
+ 40.081626612299999,
+ 0.0
+ ],
+ [
+ 124.21484563,
+ 40.068433351,
+ 0.0
+ ],
+ [
+ 124.20659853399999,
+ 40.053082129899998,
+ 0.0
+ ],
+ [
+ 124.200492569,
+ 40.013345801500002,
+ 0.0
+ ],
+ [
+ 124.20994549,
+ 39.982122285700001,
+ 0.0
+ ],
+ [
+ 124.222415267,
+ 39.968550726399997,
+ 0.0
+ ],
+ [
+ 124.258683429,
+ 39.950931852499998,
+ 0.0
+ ],
+ [
+ 124.313002757,
+ 40.099086865300002,
+ 0.0
+ ],
+ [
+ 124.331350363,
+ 40.180721665900002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 527,
+ "name": "Dandong Airport",
+ "country": "CN",
+ "city": "Dandong",
+ "height": 120,
+ "level": 2,
+ "lat": "40.0241975218709",
+ "lng": "124.286269083867",
+ "radius": 23528,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.175377432,
+ 40.218060061,
+ 120.0
+ ],
+ [
+ 124.410831005,
+ 40.213141740099999,
+ 120.0
+ ],
+ [
+ 124.396493312,
+ 39.830216911900003,
+ 120.0
+ ],
+ [
+ 124.162357589,
+ 39.835135232900001,
+ 120.0
+ ],
+ [
+ 124.175377432,
+ 40.218060061,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001529,
+ "name": "Dandong Airport",
+ "country": "CN",
+ "city": "Dandong",
+ "height": 500,
+ "level": 2,
+ "lat": "40.025536",
+ "lng": "124.285065",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.285065,
+ 40.475826395287456,
+ 500.0
+ ],
+ [
+ 124.387442638118856,
+ 40.468940671484908,
+ 500.0
+ ],
+ [
+ 124.486648779630315,
+ 40.448496814209804,
+ 500.0
+ ],
+ [
+ 124.579615833466192,
+ 40.41512777317309,
+ 500.0
+ ],
+ [
+ 124.663479895912204,
+ 40.36986543452079,
+ 500.0
+ ],
+ [
+ 124.735672542837875,
+ 40.314107034147575,
+ 500.0
+ ],
+ [
+ 124.794001253763355,
+ 40.249569990929018,
+ 500.0
+ ],
+ [
+ 124.836715753748265,
+ 40.17823687665144,
+ 500.0
+ ],
+ [
+ 124.862558333545351,
+ 40.10229255029396,
+ 500.0
+ ],
+ [
+ 124.870797020454887,
+ 40.02405568743891,
+ 500.0
+ ],
+ [
+ 124.861241254545817,
+ 39.945907031344163,
+ 500.0
+ ],
+ [
+ 124.834240423131021,
+ 39.870216689217528,
+ 500.0
+ ],
+ [
+ 124.79066618423488,
+ 39.799272709958338,
+ 500.0
+ ],
+ [
+ 124.731879950174942,
+ 39.735213025721379,
+ 500.0
+ ],
+ [
+ 124.659687205843184,
+ 39.679962637370181,
+ 500.0
+ ],
+ [
+ 124.576280517296809,
+ 39.635177690034233,
+ 500.0
+ ],
+ [
+ 124.484173168543364,
+ 39.602197833555628,
+ 500.0
+ ],
+ [
+ 124.38612537605573,
+ 39.582008004075867,
+ 500.0
+ ],
+ [
+ 124.285065,
+ 39.575210504238569,
+ 500.0
+ ],
+ [
+ 124.184004623944276,
+ 39.582008004075867,
+ 500.0
+ ],
+ [
+ 124.085956831456642,
+ 39.602197833555628,
+ 500.0
+ ],
+ [
+ 123.993849482703197,
+ 39.635177690034233,
+ 500.0
+ ],
+ [
+ 123.910442794156822,
+ 39.679962637370181,
+ 500.0
+ ],
+ [
+ 123.838250049825064,
+ 39.735213025721379,
+ 500.0
+ ],
+ [
+ 123.779463815765126,
+ 39.799272709958338,
+ 500.0
+ ],
+ [
+ 123.735889576868985,
+ 39.870216689217528,
+ 500.0
+ ],
+ [
+ 123.708888745454189,
+ 39.945907031344163,
+ 500.0
+ ],
+ [
+ 123.699332979545119,
+ 40.02405568743891,
+ 500.0
+ ],
+ [
+ 123.707571666454655,
+ 40.10229255029396,
+ 500.0
+ ],
+ [
+ 123.733414246251741,
+ 40.17823687665144,
+ 500.0
+ ],
+ [
+ 123.776128746236651,
+ 40.249569990929018,
+ 500.0
+ ],
+ [
+ 123.834457457162131,
+ 40.314107034147575,
+ 500.0
+ ],
+ [
+ 123.906650104087802,
+ 40.36986543452079,
+ 500.0
+ ],
+ [
+ 123.990514166533814,
+ 40.41512777317309,
+ 500.0
+ ],
+ [
+ 124.083481220369691,
+ 40.448496814209804,
+ 500.0
+ ],
+ [
+ 124.18268736188115,
+ 40.468940671484908,
+ 500.0
+ ],
+ [
+ 124.285065,
+ 40.475826395287456,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002548,
+ "name": "边境限制区",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "40.1216532552253",
+ "lng": "124.431113268366",
+ "radius": 18688,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.542701165682018,
+ 40.266499874608257,
+ 0.0
+ ],
+ [
+ 124.433999926168582,
+ 40.178398472445551,
+ 0.0
+ ],
+ [
+ 124.379098663604282,
+ 40.130598661362882,
+ 0.0
+ ],
+ [
+ 124.362699037568333,
+ 40.124700337006644,
+ 0.0
+ ],
+ [
+ 124.32130161737021,
+ 40.092201531840225,
+ 0.0
+ ],
+ [
+ 124.305800933426809,
+ 40.061101316438467,
+ 0.0
+ ],
+ [
+ 124.308398909024717,
+ 40.044199730711838,
+ 0.0
+ ],
+ [
+ 124.3381,
+ 40.0208,
+ 0.0
+ ],
+ [
+ 124.32,
+ 39.9767,
+ 0.0
+ ],
+ [
+ 124.3521,
+ 39.9728,
+ 0.0
+ ],
+ [
+ 124.3708,
+ 40.0117,
+ 0.0
+ ],
+ [
+ 124.365,
+ 40.0808,
+ 0.0
+ ],
+ [
+ 124.395498922752438,
+ 40.114901833786121,
+ 0.0
+ ],
+ [
+ 124.409201080138686,
+ 40.134999858147751,
+ 0.0
+ ],
+ [
+ 124.429401016947907,
+ 40.140501316364578,
+ 0.0
+ ],
+ [
+ 124.456298929116272,
+ 40.172199198384959,
+ 0.0
+ ],
+ [
+ 124.4839,
+ 40.1727,
+ 0.0
+ ],
+ [
+ 124.51690002128251,
+ 40.219199759266374,
+ 0.0
+ ],
+ [
+ 124.565299309554092,
+ 40.250901887330642,
+ 0.0
+ ],
+ [
+ 124.542701165682018,
+ 40.266499874608257,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9391,
+ "name": "Nanjiang:keshen",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "39.48",
+ "lng": "76",
+ "radius": 8000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 76.0,
+ 39.552055618125621,
+ 0.0
+ ],
+ [
+ 76.016162603858874,
+ 39.550959815445246,
+ 0.0
+ ],
+ [
+ 76.031832629404462,
+ 39.547705803191569,
+ 0.0
+ ],
+ [
+ 76.04653264506797,
+ 39.542392741838945,
+ 0.0
+ ],
+ [
+ 76.059815030618537,
+ 39.535182508572298,
+ 0.0
+ ],
+ [
+ 76.071275694806673,
+ 39.526294725108784,
+ 0.0
+ ],
+ [
+ 76.080566415094367,
+ 39.51600001892924,
+ 0.0
+ ],
+ [
+ 76.087405417161321,
+ 39.50461173066153,
+ 0.0
+ ],
+ [
+ 76.091585873019199,
+ 39.492476328042827,
+ 0.0
+ ],
+ [
+ 76.092982067390864,
+ 39.479962825626522,
+ 0.0
+ ],
+ [
+ 76.091553059434858,
+ 39.467451538090039,
+ 0.0
+ ],
+ [
+ 76.087343747775364,
+ 39.455322512965509,
+ 0.0
+ ],
+ [
+ 76.080483328114525,
+ 39.443943995591162,
+ 0.0
+ ],
+ [
+ 76.071181211722191,
+ 39.433661275195661,
+ 0.0
+ ],
+ [
+ 76.059720547473319,
+ 39.424786246747956,
+ 0.0
+ ],
+ [
+ 76.046449557934295,
+ 39.417587999285693,
+ 0.0
+ ],
+ [
+ 76.031770959843584,
+ 39.412284708857634,
+ 0.0
+ ],
+ [
+ 76.016129790160363,
+ 39.409037074125571,
+ 0.0
+ ],
+ [
+ 76.0,
+ 39.407943486335853,
+ 0.0
+ ],
+ [
+ 75.983870209839637,
+ 39.409037074125571,
+ 0.0
+ ],
+ [
+ 75.968229040156416,
+ 39.412284708857634,
+ 0.0
+ ],
+ [
+ 75.953550442065705,
+ 39.417587999285693,
+ 0.0
+ ],
+ [
+ 75.940279452526681,
+ 39.424786246747956,
+ 0.0
+ ],
+ [
+ 75.928818788277809,
+ 39.433661275195661,
+ 0.0
+ ],
+ [
+ 75.919516671885475,
+ 39.443943995591162,
+ 0.0
+ ],
+ [
+ 75.912656252224636,
+ 39.455322512965509,
+ 0.0
+ ],
+ [
+ 75.908446940565142,
+ 39.467451538090039,
+ 0.0
+ ],
+ [
+ 75.907017932609136,
+ 39.479962825626522,
+ 0.0
+ ],
+ [
+ 75.908414126980801,
+ 39.492476328042827,
+ 0.0
+ ],
+ [
+ 75.912594582838679,
+ 39.50461173066153,
+ 0.0
+ ],
+ [
+ 75.919433584905633,
+ 39.51600001892924,
+ 0.0
+ ],
+ [
+ 75.928724305193327,
+ 39.526294725108784,
+ 0.0
+ ],
+ [
+ 75.940184969381463,
+ 39.535182508572298,
+ 0.0
+ ],
+ [
+ 75.95346735493203,
+ 39.542392741838945,
+ 0.0
+ ],
+ [
+ 75.968167370595538,
+ 39.547705803191569,
+ 0.0
+ ],
+ [
+ 75.983837396141126,
+ 39.550959815445246,
+ 0.0
+ ],
+ [
+ 76.0,
+ 39.552055618125621,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9390,
+ "name": "Nanjiang:atushen",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "39.69",
+ "lng": "76.2",
+ "radius": 5000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 76.2,
+ 39.735033233700264,
+ 0.0
+ ],
+ [
+ 76.210128346110807,
+ 39.73434863876782,
+ 0.0
+ ],
+ [
+ 76.219948361854904,
+ 39.732315694479148,
+ 0.0
+ ],
+ [
+ 76.229161156167791,
+ 39.728996284358708,
+ 0.0
+ ],
+ [
+ 76.23748642118376,
+ 39.724491440907414,
+ 0.0
+ ],
+ [
+ 76.244670995348301,
+ 39.718938254744465,
+ 0.0
+ ],
+ [
+ 76.250496579986162,
+ 39.71250568339817,
+ 0.0
+ ],
+ [
+ 76.254786371934344,
+ 39.705389390219473,
+ 0.0
+ ],
+ [
+ 76.257410410781475,
+ 39.697805773551757,
+ 0.0
+ ],
+ [
+ 76.258289481288202,
+ 39.689985370681676,
+ 0.0
+ ],
+ [
+ 76.257397458060396,
+ 39.682165839503931,
+ 0.0
+ ],
+ [
+ 76.254762028778444,
+ 39.674584732774647,
+ 0.0
+ ],
+ [
+ 76.250463782534567,
+ 39.667472285045498,
+ 0.0
+ ],
+ [
+ 76.244633699453559,
+ 39.6610444308428,
+ 0.0
+ ],
+ [
+ 76.237449125279568,
+ 39.655496264560917,
+ 0.0
+ ],
+ [
+ 76.229128358692279,
+ 39.650996138256382,
+ 0.0
+ ],
+ [
+ 76.21992401867179,
+ 39.647680573590328,
+ 0.0
+ ],
+ [
+ 76.210115393371979,
+ 39.645650139244317,
+ 0.0
+ ],
+ [
+ 76.2,
+ 39.644966416005907,
+ 0.0
+ ],
+ [
+ 76.189884606628027,
+ 39.645650139244317,
+ 0.0
+ ],
+ [
+ 76.180075981328216,
+ 39.647680573590328,
+ 0.0
+ ],
+ [
+ 76.170871641307727,
+ 39.650996138256382,
+ 0.0
+ ],
+ [
+ 76.162550874720438,
+ 39.655496264560917,
+ 0.0
+ ],
+ [
+ 76.155366300546447,
+ 39.6610444308428,
+ 0.0
+ ],
+ [
+ 76.149536217465439,
+ 39.667472285045498,
+ 0.0
+ ],
+ [
+ 76.145237971221562,
+ 39.674584732774647,
+ 0.0
+ ],
+ [
+ 76.14260254193961,
+ 39.682165839503931,
+ 0.0
+ ],
+ [
+ 76.141710518711804,
+ 39.689985370681676,
+ 0.0
+ ],
+ [
+ 76.142589589218531,
+ 39.697805773551757,
+ 0.0
+ ],
+ [
+ 76.145213628065662,
+ 39.705389390219473,
+ 0.0
+ ],
+ [
+ 76.149503420013843,
+ 39.71250568339817,
+ 0.0
+ ],
+ [
+ 76.155329004651705,
+ 39.718938254744465,
+ 0.0
+ ],
+ [
+ 76.162513578816245,
+ 39.724491440907414,
+ 0.0
+ ],
+ [
+ 76.170838843832215,
+ 39.728996284358708,
+ 0.0
+ ],
+ [
+ 76.180051638145102,
+ 39.732315694479148,
+ 0.0
+ ],
+ [
+ 76.189871653889199,
+ 39.73434863876782,
+ 0.0
+ ],
+ [
+ 76.2,
+ 39.735033233700264,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4879,
+ "name": "Kashgar Airport",
+ "country": "CN",
+ "city": "Kashgar",
+ "height": 0,
+ "level": 2,
+ "lat": "39.5458991164931",
+ "lng": "75.9631458555341",
+ "radius": 13471,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.922307862699995,
+ 39.557600541699998,
+ 0.0
+ ],
+ [
+ 75.808968775099999,
+ 39.569309701,
+ 0.0
+ ],
+ [
+ 75.817480489600001,
+ 39.500593280099999,
+ 0.0
+ ],
+ [
+ 75.925812259300002,
+ 39.515593933300003,
+ 0.0
+ ],
+ [
+ 75.946011297200002,
+ 39.4928658388,
+ 0.0
+ ],
+ [
+ 75.963508195399996,
+ 39.483213853400002,
+ 0.0
+ ],
+ [
+ 76.005043566400005,
+ 39.475767983899999,
+ 0.0
+ ],
+ [
+ 76.0417127491,
+ 39.477434715400001,
+ 0.0
+ ],
+ [
+ 76.078769405800003,
+ 39.485613589300002,
+ 0.0
+ ],
+ [
+ 76.1092086588,
+ 39.5086681971,
+ 0.0
+ ],
+ [
+ 76.117631686600006,
+ 39.523941669700001,
+ 0.0
+ ],
+ [
+ 75.922307862699995,
+ 39.557600541699998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4879,
+ "name": "Kashgar Airport",
+ "country": "CN",
+ "city": "Kashgar",
+ "height": 0,
+ "level": 2,
+ "lat": "39.5445568536398",
+ "lng": "76.0780107953109",
+ "radius": 13428,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 76.231050218899995,
+ 39.5190362214,
+ 0.0
+ ],
+ [
+ 76.225894714800006,
+ 39.584386769600002,
+ 0.0
+ ],
+ [
+ 76.114187637900002,
+ 39.5694064228,
+ 0.0
+ ],
+ [
+ 76.094060641,
+ 39.592088738800001,
+ 0.0
+ ],
+ [
+ 76.07655453,
+ 39.601760378800002,
+ 0.0
+ ],
+ [
+ 76.034951421599999,
+ 39.609231890399997,
+ 0.0
+ ],
+ [
+ 75.998287249699999,
+ 39.607565287200003,
+ 0.0
+ ],
+ [
+ 75.958306089800004,
+ 39.597579268600001,
+ 0.0
+ ],
+ [
+ 75.941862242599996,
+ 39.586858659699999,
+ 0.0
+ ],
+ [
+ 75.922307862699995,
+ 39.557600541699998,
+ 0.0
+ ],
+ [
+ 76.117631686600006,
+ 39.523941669700001,
+ 0.0
+ ],
+ [
+ 76.231050218899995,
+ 39.5190362214,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4879,
+ "name": "Kashgar Airport",
+ "country": "CN",
+ "city": "Kashgar",
+ "height": 120,
+ "level": 2,
+ "lat": "39.542000139512",
+ "lng": "76.0200395401953",
+ "radius": 23779,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 76.264365408200007,
+ 39.643425175600001,
+ 120.0
+ ],
+ [
+ 76.278044456499998,
+ 39.4638703472,
+ 120.0
+ ],
+ [
+ 75.775697434400001,
+ 39.441109975499998,
+ 120.0
+ ],
+ [
+ 75.762022871499994,
+ 39.620664803899999,
+ 120.0
+ ],
+ [
+ 76.264365408200007,
+ 39.643425175600001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001489,
+ "name": "Kashgar Airport",
+ "country": "CN",
+ "city": "Kashgar",
+ "height": 500,
+ "level": 2,
+ "lat": "39.542659",
+ "lng": "76.020002",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 76.020002,
+ 39.99298702919851,
+ 500.0
+ ],
+ [
+ 76.121655269422675,
+ 39.986101496288789,
+ 500.0
+ ],
+ [
+ 76.22016051069555,
+ 39.965658135382711,
+ 500.0
+ ],
+ [
+ 76.31247270553726,
+ 39.932289678490314,
+ 500.0
+ ],
+ [
+ 76.39574878275684,
+ 39.887027684819117,
+ 500.0
+ ],
+ [
+ 76.467438663093361,
+ 39.831269002803239,
+ 500.0
+ ],
+ [
+ 76.525365070027377,
+ 39.76673066204247,
+ 500.0
+ ],
+ [
+ 76.567789417344912,
+ 39.695394904084381,
+ 500.0
+ ],
+ [
+ 76.593461845240256,
+ 39.619446371664111,
+ 500.0
+ ],
+ [
+ 76.601654275639163,
+ 39.541203680008394,
+ 500.0
+ ],
+ [
+ 76.592176128372401,
+ 39.463047691338083,
+ 500.0
+ ],
+ [
+ 76.565373029620844,
+ 39.387348813097468,
+ 500.0
+ ],
+ [
+ 76.522109416863358,
+ 39.316395555835179,
+ 500.0
+ ],
+ [
+ 76.463736383321105,
+ 39.252326435359784,
+ 500.0
+ ],
+ [
+ 76.392046409764362,
+ 39.197067103747507,
+ 500.0
+ ],
+ [
+ 76.309216816331428,
+ 39.152274361570981,
+ 500.0
+ ],
+ [
+ 76.217743854554598,
+ 39.119288453189803,
+ 500.0
+ ],
+ [
+ 76.120369377358145,
+ 39.099094788511586,
+ 500.0
+ ],
+ [
+ 76.020002,
+ 39.092295975193409,
+ 500.0
+ ],
+ [
+ 75.919634622641865,
+ 39.099094788511586,
+ 500.0
+ ],
+ [
+ 75.822260145445412,
+ 39.119288453189803,
+ 500.0
+ ],
+ [
+ 75.730787183668582,
+ 39.152274361570981,
+ 500.0
+ ],
+ [
+ 75.647957590235649,
+ 39.197067103747507,
+ 500.0
+ ],
+ [
+ 75.576267616678905,
+ 39.252326435359784,
+ 500.0
+ ],
+ [
+ 75.517894583136652,
+ 39.316395555835179,
+ 500.0
+ ],
+ [
+ 75.474630970379167,
+ 39.387348813097468,
+ 500.0
+ ],
+ [
+ 75.447827871627609,
+ 39.463047691338083,
+ 500.0
+ ],
+ [
+ 75.438349724360847,
+ 39.541203680008394,
+ 500.0
+ ],
+ [
+ 75.446542154759754,
+ 39.619446371664111,
+ 500.0
+ ],
+ [
+ 75.472214582655099,
+ 39.695394904084381,
+ 500.0
+ ],
+ [
+ 75.514638929972634,
+ 39.76673066204247,
+ 500.0
+ ],
+ [
+ 75.572565336906649,
+ 39.831269002803239,
+ 500.0
+ ],
+ [
+ 75.64425521724317,
+ 39.887027684819117,
+ 500.0
+ ],
+ [
+ 75.72753129446275,
+ 39.932289678490314,
+ 500.0
+ ],
+ [
+ 75.819843489304461,
+ 39.965658135382711,
+ 500.0
+ ],
+ [
+ 75.918348730577335,
+ 39.986101496288789,
+ 500.0
+ ],
+ [
+ 76.020002,
+ 39.99298702919851,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001304,
+ "name": "Jiayuguan Airport",
+ "country": "CN",
+ "city": "Jiayuguan",
+ "height": 500,
+ "level": 2,
+ "lat": "39.859645",
+ "lng": "98.338563",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 98.338563,
+ 40.309948336715657,
+ 500.0
+ ],
+ [
+ 98.440689800021644,
+ 40.303062679530058,
+ 500.0
+ ],
+ [
+ 98.539653230718471,
+ 40.282618995740826,
+ 500.0
+ ],
+ [
+ 98.632393518058549,
+ 40.249250159841402,
+ 500.0
+ ],
+ [
+ 98.716053972573889,
+ 40.203987945011697,
+ 500.0
+ ],
+ [
+ 98.788072522733813,
+ 40.148229453254402,
+ 500.0
+ ],
+ [
+ 98.846261926638135,
+ 40.083691968899565,
+ 500.0
+ ],
+ [
+ 98.888875956602405,
+ 40.012357949546441,
+ 500.0
+ ],
+ [
+ 98.914659621000212,
+ 39.936412179321223,
+ 500.0
+ ],
+ [
+ 98.922882295181637,
+ 39.858173312751617,
+ 500.0
+ ],
+ [
+ 98.913353411607289,
+ 39.780022133928881,
+ 500.0
+ ],
+ [
+ 98.886421054640408,
+ 39.704328853458676,
+ 500.0
+ ],
+ [
+ 98.842954381547131,
+ 39.633381679349945,
+ 500.0
+ ],
+ [
+ 98.784311231080011,
+ 39.569318744980848,
+ 500.0
+ ],
+ [
+ 98.712292584975998,
+ 39.514065275766129,
+ 500.0
+ ],
+ [
+ 98.629085730028535,
+ 39.469277642865094,
+ 500.0
+ ],
+ [
+ 98.537198052496436,
+ 39.436295701149518,
+ 500.0
+ ],
+ [
+ 98.439383410312772,
+ 39.416104550151928,
+ 500.0
+ ],
+ [
+ 98.338563,
+ 39.409306597709666,
+ 500.0
+ ],
+ [
+ 98.237742589687215,
+ 39.416104550151928,
+ 500.0
+ ],
+ [
+ 98.139927947503551,
+ 39.436295701149518,
+ 500.0
+ ],
+ [
+ 98.048040269971452,
+ 39.469277642865094,
+ 500.0
+ ],
+ [
+ 97.964833415023989,
+ 39.514065275766129,
+ 500.0
+ ],
+ [
+ 97.892814768919976,
+ 39.569318744980848,
+ 500.0
+ ],
+ [
+ 97.834171618452856,
+ 39.633381679349945,
+ 500.0
+ ],
+ [
+ 97.790704945359579,
+ 39.704328853458676,
+ 500.0
+ ],
+ [
+ 97.763772588392698,
+ 39.780022133928881,
+ 500.0
+ ],
+ [
+ 97.75424370481835,
+ 39.858173312751617,
+ 500.0
+ ],
+ [
+ 97.762466378999775,
+ 39.936412179321223,
+ 500.0
+ ],
+ [
+ 97.788250043397582,
+ 40.012357949546441,
+ 500.0
+ ],
+ [
+ 97.830864073361852,
+ 40.083691968899565,
+ 500.0
+ ],
+ [
+ 97.889053477266174,
+ 40.148229453254402,
+ 500.0
+ ],
+ [
+ 97.961072027426098,
+ 40.203987945011697,
+ 500.0
+ ],
+ [
+ 98.044732481941438,
+ 40.249250159841402,
+ 500.0
+ ],
+ [
+ 98.137472769281516,
+ 40.282618995740826,
+ 500.0
+ ],
+ [
+ 98.236436199978343,
+ 40.303062679530058,
+ 500.0
+ ],
+ [
+ 98.338563,
+ 40.309948336715657,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2633,
+ "name": "Jiayuguan Airport",
+ "country": "CN",
+ "city": "Jiayuguan",
+ "height": 0,
+ "level": 2,
+ "lat": "39.8270928862884",
+ "lng": "98.3799488104259",
+ "radius": 13338,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 98.451367606100007,
+ 39.720428807600001,
+ 0.0
+ ],
+ [
+ 98.514956073600004,
+ 39.76683808,
+ 0.0
+ ],
+ [
+ 98.426622240699999,
+ 39.821847843699999,
+ 0.0
+ ],
+ [
+ 98.434197872,
+ 39.849197421900001,
+ 0.0
+ ],
+ [
+ 98.431116504399995,
+ 39.865626253,
+ 0.0
+ ],
+ [
+ 98.422597713299993,
+ 39.880882655100002,
+ 0.0
+ ],
+ [
+ 98.387506658199996,
+ 39.915627453500001,
+ 0.0
+ ],
+ [
+ 98.355156066500001,
+ 39.930386490300002,
+ 0.0
+ ],
+ [
+ 98.333846247500006,
+ 39.933299896100003,
+ 0.0
+ ],
+ [
+ 98.291929183099995,
+ 39.926226215,
+ 0.0
+ ],
+ [
+ 98.384686843099999,
+ 39.790416912200001,
+ 0.0
+ ],
+ [
+ 98.451367606100007,
+ 39.720428807600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2633,
+ "name": "Jiayuguan Airport",
+ "country": "CN",
+ "city": "Jiayuguan",
+ "height": 0,
+ "level": 2,
+ "lat": "39.8926577788426",
+ "lng": "98.3006382403112",
+ "radius": 13443,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 98.291929183099995,
+ 39.926226215,
+ 0.0
+ ],
+ [
+ 98.226989106199994,
+ 39.999567916300002,
+ 0.0
+ ],
+ [
+ 98.161711165499995,
+ 39.949803133899998,
+ 0.0
+ ],
+ [
+ 98.2500422719,
+ 39.899820441700001,
+ 0.0
+ ],
+ [
+ 98.241787072700006,
+ 39.870480915199998,
+ 0.0
+ ],
+ [
+ 98.245159027200003,
+ 39.854085720599997,
+ 0.0
+ ],
+ [
+ 98.253940936399999,
+ 39.838918612800001,
+ 0.0
+ ],
+ [
+ 98.289152421200001,
+ 39.806046327099999,
+ 0.0
+ ],
+ [
+ 98.321381474299997,
+ 39.789027555899999,
+ 0.0
+ ],
+ [
+ 98.342398016,
+ 39.785194919299997,
+ 0.0
+ ],
+ [
+ 98.384686843099999,
+ 39.790416912200001,
+ 0.0
+ ],
+ [
+ 98.291929183099995,
+ 39.926226215,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2633,
+ "name": "Jiayuguan Airport",
+ "country": "CN",
+ "city": "Jiayuguan",
+ "height": 120,
+ "level": 2,
+ "lat": "39.8602377986638",
+ "lng": "98.3379747189022",
+ "radius": 23695,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 98.586419470400003,
+ 39.765411371399999,
+ 120.0
+ ],
+ [
+ 98.403683607700003,
+ 39.653210442700001,
+ 120.0
+ ],
+ [
+ 98.089273078700003,
+ 39.955198279500003,
+ 120.0
+ ],
+ [
+ 98.272814899099998,
+ 40.067399207,
+ 120.0
+ ],
+ [
+ 98.586419470400003,
+ 39.765411371399999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001310,
+ "name": "Lishan Airport",
+ "country": "CN",
+ "city": "Lishan",
+ "height": 500,
+ "level": 2,
+ "lat": "39.793675",
+ "lng": "106.799343",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.799343,
+ 40.243983479595244,
+ 500.0
+ ],
+ [
+ 106.901370628677952,
+ 40.237097848596953,
+ 500.0
+ ],
+ [
+ 107.00023810108398,
+ 40.216654232928747,
+ 500.0
+ ],
+ [
+ 107.092888733606273,
+ 40.183285477297254,
+ 500.0
+ ],
+ [
+ 107.176468688926036,
+ 40.138023310148526,
+ 500.0
+ ],
+ [
+ 107.2484184070629,
+ 40.082264780469004,
+ 500.0
+ ],
+ [
+ 107.306552733107992,
+ 40.017727119321428,
+ 500.0
+ ],
+ [
+ 107.349127039610906,
+ 39.946392739111303,
+ 500.0
+ ],
+ [
+ 107.374887409538616,
+ 39.870446394363022,
+ 500.0
+ ],
+ [
+ 107.383103751384013,
+ 39.792206731325358,
+ 500.0
+ ],
+ [
+ 107.373585494777387,
+ 39.714054550338751,
+ 500.0
+ ],
+ [
+ 107.34668020910371,
+ 39.638360103053785,
+ 500.0
+ ],
+ [
+ 107.303256063045481,
+ 39.56741166060349,
+ 500.0
+ ],
+ [
+ 107.244669482574892,
+ 39.503347436179155,
+ 500.0
+ ],
+ [
+ 107.172719669068258,
+ 39.448092744250971,
+ 500.0
+ ],
+ [
+ 107.089591822059077,
+ 39.403304045614149,
+ 500.0
+ ],
+ [
+ 106.997790995970533,
+ 39.370321276445509,
+ 500.0
+ ],
+ [
+ 106.900068534680202,
+ 39.350129601069348,
+ 500.0
+ ],
+ [
+ 106.799343,
+ 39.343331469036514,
+ 500.0
+ ],
+ [
+ 106.698617465319785,
+ 39.350129601069348,
+ 500.0
+ ],
+ [
+ 106.600895004029454,
+ 39.370321276445509,
+ 500.0
+ ],
+ [
+ 106.509094177940909,
+ 39.403304045614149,
+ 500.0
+ ],
+ [
+ 106.425966330931729,
+ 39.448092744250971,
+ 500.0
+ ],
+ [
+ 106.354016517425094,
+ 39.503347436179155,
+ 500.0
+ ],
+ [
+ 106.295429936954505,
+ 39.56741166060349,
+ 500.0
+ ],
+ [
+ 106.252005790896277,
+ 39.638360103053785,
+ 500.0
+ ],
+ [
+ 106.225100505222599,
+ 39.714054550338751,
+ 500.0
+ ],
+ [
+ 106.215582248615974,
+ 39.792206731325358,
+ 500.0
+ ],
+ [
+ 106.223798590461371,
+ 39.870446394363022,
+ 500.0
+ ],
+ [
+ 106.249558960389081,
+ 39.946392739111303,
+ 500.0
+ ],
+ [
+ 106.292133266891994,
+ 40.017727119321428,
+ 500.0
+ ],
+ [
+ 106.350267592937087,
+ 40.082264780469004,
+ 500.0
+ ],
+ [
+ 106.42221731107395,
+ 40.138023310148526,
+ 500.0
+ ],
+ [
+ 106.505797266393714,
+ 40.183285477297254,
+ 500.0
+ ],
+ [
+ 106.598447898916007,
+ 40.216654232928747,
+ 500.0
+ ],
+ [
+ 106.697315371322034,
+ 40.237097848596953,
+ 500.0
+ ],
+ [
+ 106.799343,
+ 40.243983479595244,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3809,
+ "name": "Lishan Airport",
+ "country": "CN",
+ "city": "Lishan",
+ "height": 0,
+ "level": 2,
+ "lat": "39.7498957583139",
+ "lng": "106.788271854696",
+ "radius": 13021,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.760271708,
+ 39.7227026216,
+ 0.0
+ ],
+ [
+ 106.726893062,
+ 39.642737349100003,
+ 0.0
+ ],
+ [
+ 106.811176378,
+ 39.634125677199997,
+ 0.0
+ ],
+ [
+ 106.812848993,
+ 39.7191292778,
+ 0.0
+ ],
+ [
+ 106.8462515,
+ 39.730974783500002,
+ 0.0
+ ],
+ [
+ 106.861489476,
+ 39.742730378700003,
+ 0.0
+ ],
+ [
+ 106.872256402,
+ 39.757117006900003,
+ 0.0
+ ],
+ [
+ 106.886158837,
+ 39.796540017600002,
+ 0.0
+ ],
+ [
+ 106.881345977,
+ 39.824927548200002,
+ 0.0
+ ],
+ [
+ 106.871220278,
+ 39.839591761,
+ 0.0
+ ],
+ [
+ 106.838164968,
+ 39.860549370599998,
+ 0.0
+ ],
+ [
+ 106.760271708,
+ 39.7227026216,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3809,
+ "name": "Lishan Airport",
+ "country": "CN",
+ "city": "Lishan",
+ "height": 0,
+ "level": 2,
+ "lat": "39.8347474137181",
+ "lng": "106.813819601715",
+ "radius": 13272,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.871425062,
+ 39.945625759599999,
+ 0.0
+ ],
+ [
+ 106.788846257,
+ 39.952562756399999,
+ 0.0
+ ],
+ [
+ 106.785464262,
+ 39.867523106299998,
+ 0.0
+ ],
+ [
+ 106.75055974,
+ 39.856428719100002,
+ 0.0
+ ],
+ [
+ 106.734797123,
+ 39.845068170399998,
+ 0.0
+ ],
+ [
+ 106.717162261,
+ 39.815071038200003,
+ 0.0
+ ],
+ [
+ 106.715507022,
+ 39.790121586399998,
+ 0.0
+ ],
+ [
+ 106.718692722,
+ 39.7593897669,
+ 0.0
+ ],
+ [
+ 106.728184412,
+ 39.744481733800001,
+ 0.0
+ ],
+ [
+ 106.760271708,
+ 39.7227026216,
+ 0.0
+ ],
+ [
+ 106.838164968,
+ 39.860549370599998,
+ 0.0
+ ],
+ [
+ 106.871425062,
+ 39.945625759599999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3809,
+ "name": "Lishan Airport",
+ "country": "CN",
+ "city": "Lishan",
+ "height": 120,
+ "level": 2,
+ "lat": "39.7937678542854",
+ "lng": "106.799278825244",
+ "radius": 23585,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.722607964,
+ 39.997557695600001,
+ 120.0
+ ],
+ [
+ 106.954434152,
+ 39.969309149,
+ 120.0
+ ],
+ [
+ 106.875264438,
+ 39.589876535499997,
+ 120.0
+ ],
+ [
+ 106.644713562,
+ 39.618125082799999,
+ 120.0
+ ],
+ [
+ 106.722607964,
+ 39.997557695600001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001376,
+ "name": "Ordos Ejin Horo Airport",
+ "country": "CN",
+ "city": "Ordos",
+ "height": 500,
+ "level": 2,
+ "lat": "39.493757",
+ "lng": "109.860041",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.860041,
+ 39.944088834180064,
+ 500.0
+ ],
+ [
+ 109.961621885134477,
+ 39.937203320097083,
+ 500.0
+ ],
+ [
+ 110.060057087020482,
+ 39.916760008016212,
+ 500.0
+ ],
+ [
+ 110.152303842818327,
+ 39.88339160810969,
+ 500.0
+ ],
+ [
+ 110.235521162956459,
+ 39.838129646792389,
+ 500.0
+ ],
+ [
+ 110.307160801308441,
+ 39.782370933642056,
+ 500.0
+ ],
+ [
+ 110.365047004729064,
+ 39.717832459232859,
+ 500.0
+ ],
+ [
+ 110.407442355208318,
+ 39.646496432027888,
+ 500.0
+ ],
+ [
+ 110.433097777564797,
+ 39.570547473138042,
+ 500.0
+ ],
+ [
+ 110.441285583190492,
+ 39.492304191833526,
+ 500.0
+ ],
+ [
+ 110.431815190179478,
+ 39.414147462399526,
+ 500.0
+ ],
+ [
+ 110.405031849122039,
+ 39.338447722560979,
+ 500.0
+ ],
+ [
+ 110.361799276151885,
+ 39.267493529366838,
+ 500.0
+ ],
+ [
+ 110.303467533431174,
+ 39.203423457383863,
+ 500.0
+ ],
+ [
+ 110.231827802271241,
+ 39.148163224230302,
+ 500.0
+ ],
+ [
+ 110.149055879243164,
+ 39.103369696437078,
+ 500.0
+ ],
+ [
+ 110.057646313704353,
+ 39.070383178186042,
+ 500.0
+ ],
+ [
+ 109.960339123327259,
+ 39.050189127054516,
+ 500.0
+ ],
+ [
+ 109.860041,
+ 39.043390181388858,
+ 500.0
+ ],
+ [
+ 109.759742876672732,
+ 39.050189127054516,
+ 500.0
+ ],
+ [
+ 109.662435686295638,
+ 39.070383178186042,
+ 500.0
+ ],
+ [
+ 109.571026120756827,
+ 39.103369696437078,
+ 500.0
+ ],
+ [
+ 109.48825419772875,
+ 39.148163224230302,
+ 500.0
+ ],
+ [
+ 109.416614466568817,
+ 39.203423457383863,
+ 500.0
+ ],
+ [
+ 109.358282723848106,
+ 39.267493529366838,
+ 500.0
+ ],
+ [
+ 109.315050150877951,
+ 39.338447722560979,
+ 500.0
+ ],
+ [
+ 109.288266809820513,
+ 39.414147462399526,
+ 500.0
+ ],
+ [
+ 109.278796416809499,
+ 39.492304191833526,
+ 500.0
+ ],
+ [
+ 109.286984222435194,
+ 39.570547473138042,
+ 500.0
+ ],
+ [
+ 109.312639644791673,
+ 39.646496432027888,
+ 500.0
+ ],
+ [
+ 109.355034995270927,
+ 39.717832459232859,
+ 500.0
+ ],
+ [
+ 109.412921198691549,
+ 39.782370933642056,
+ 500.0
+ ],
+ [
+ 109.484560837043531,
+ 39.838129646792389,
+ 500.0
+ ],
+ [
+ 109.567778157181664,
+ 39.88339160810969,
+ 500.0
+ ],
+ [
+ 109.660024912979509,
+ 39.916760008016212,
+ 500.0
+ ],
+ [
+ 109.758460114865514,
+ 39.937203320097083,
+ 500.0
+ ],
+ [
+ 109.860041,
+ 39.944088834180064,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 723,
+ "name": "Ordos Ejin Horo Airport",
+ "country": "CN",
+ "city": "Ordos",
+ "height": 0,
+ "level": 2,
+ "lat": "39.5157744878093",
+ "lng": "109.810250590134",
+ "radius": 13519,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.793195252,
+ 39.551234143099997,
+ 0.0
+ ],
+ [
+ 109.70994191299999,
+ 39.609591588,
+ 0.0
+ ],
+ [
+ 109.660136107,
+ 39.552894542700002,
+ 0.0
+ ],
+ [
+ 109.76346548399999,
+ 39.517904478200002,
+ 0.0
+ ],
+ [
+ 109.760407222,
+ 39.501187462,
+ 0.0
+ ],
+ [
+ 109.763064067,
+ 39.484716340699997,
+ 0.0
+ ],
+ [
+ 109.77115153699999,
+ 39.469336741399999,
+ 0.0
+ ],
+ [
+ 109.801072003,
+ 39.445894157,
+ 0.0
+ ],
+ [
+ 109.867832594,
+ 39.422040980699997,
+ 0.0
+ ],
+ [
+ 109.90997998,
+ 39.426863298800001,
+ 0.0
+ ],
+ [
+ 109.928418198,
+ 39.435388676899997,
+ 0.0
+ ],
+ [
+ 109.793195252,
+ 39.551234143099997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 723,
+ "name": "Ordos Ejin Horo Airport",
+ "country": "CN",
+ "city": "Ordos",
+ "height": 0,
+ "level": 2,
+ "lat": "39.4703557176824",
+ "lng": "109.909268897426",
+ "radius": 13417,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.00836205,
+ 39.377074478799997,
+ 0.0
+ ],
+ [
+ 110.058190942,
+ 39.433779641599997,
+ 0.0
+ ],
+ [
+ 109.958199544,
+ 39.468763346599999,
+ 0.0
+ ],
+ [
+ 109.96103738799999,
+ 39.486066015399999,
+ 0.0
+ ],
+ [
+ 109.95798144,
+ 39.502495874099999,
+ 0.0
+ ],
+ [
+ 109.936215174,
+ 39.530802788300001,
+ 0.0
+ ],
+ [
+ 109.91898457,
+ 39.5407482237,
+ 0.0
+ ],
+ [
+ 109.853889893,
+ 39.564591727299998,
+ 0.0
+ ],
+ [
+ 109.832361911,
+ 39.564325492599998,
+ 0.0
+ ],
+ [
+ 109.793195252,
+ 39.551234143099997,
+ 0.0
+ ],
+ [
+ 109.928418198,
+ 39.435388676899997,
+ 0.0
+ ],
+ [
+ 110.00836205,
+ 39.377074478799997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 723,
+ "name": "Ordos Ejin Horo Airport",
+ "country": "CN",
+ "city": "Ordos",
+ "height": 120,
+ "level": 2,
+ "lat": "39.4929751567756",
+ "lng": "109.860098903467",
+ "radius": 23670,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.134588672,
+ 39.472159030900002,
+ 120.0
+ ],
+ [
+ 110.015931976,
+ 39.317424171399999,
+ 120.0
+ ],
+ [
+ 109.585572348,
+ 39.514150336599997,
+ 120.0
+ ],
+ [
+ 109.70456528299999,
+ 39.6688851957,
+ 120.0
+ ],
+ [
+ 110.134588672,
+ 39.472159030900002,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045026,
+ "name": "朔州滋润机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "39.2499692610417",
+ "lng": "112.642103486778",
+ "radius": 13323,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.595660984,
+ 39.252114068700003,
+ 0.0
+ ],
+ [
+ 112.492742662,
+ 39.218769445200003,
+ 0.0
+ ],
+ [
+ 112.53680318399999,
+ 39.162220625700002,
+ 0.0
+ ],
+ [
+ 112.622797846,
+ 39.217312225500002,
+ 0.0
+ ],
+ [
+ 112.641569659,
+ 39.206547117500001,
+ 0.0
+ ],
+ [
+ 112.68289525599999,
+ 39.1989505329,
+ 0.0
+ ],
+ [
+ 112.704042279,
+ 39.201585798300002,
+ 0.0
+ ],
+ [
+ 112.749347198,
+ 39.220394672399998,
+ 0.0
+ ],
+ [
+ 112.780044078,
+ 39.2451626378,
+ 0.0
+ ],
+ [
+ 112.78973605199999,
+ 39.277208203100002,
+ 0.0
+ ],
+ [
+ 112.786263711,
+ 39.293587408299999,
+ 0.0
+ ],
+ [
+ 112.595660984,
+ 39.252114068700003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045026,
+ "name": "朔州滋润机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "39.2956151462931",
+ "lng": "112.739901839015",
+ "radius": 13325,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.889417186,
+ 39.326889985900003,
+ 0.0
+ ],
+ [
+ 112.845309376,
+ 39.3834480079,
+ 0.0
+ ],
+ [
+ 112.759057648,
+ 39.328495275,
+ 0.0
+ ],
+ [
+ 112.720184827,
+ 39.345184146100003,
+ 0.0
+ ],
+ [
+ 112.698832389,
+ 39.346868991900003,
+ 0.0
+ ],
+ [
+ 112.658068997,
+ 39.337414716200001,
+ 0.0
+ ],
+ [
+ 112.614138563,
+ 39.314066654500003,
+ 0.0
+ ],
+ [
+ 112.601681278,
+ 39.3005539806,
+ 0.0
+ ],
+ [
+ 112.594172167,
+ 39.285006357699999,
+ 0.0
+ ],
+ [
+ 112.595660984,
+ 39.252114068700003,
+ 0.0
+ ],
+ [
+ 112.786263711,
+ 39.293587408299999,
+ 0.0
+ ],
+ [
+ 112.889417186,
+ 39.326889985900003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045026,
+ "name": "朔州滋润机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "39.2725555652916",
+ "lng": "112.691184861942",
+ "radius": 23523,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.842853695,
+ 39.448637148400003,
+ 120.0
+ ],
+ [
+ 112.96301545199999,
+ 39.294616067,
+ 120.0
+ ],
+ [
+ 112.53921618299999,
+ 39.096826206599999,
+ 120.0
+ ],
+ [
+ 112.419393138,
+ 39.250847288499997,
+ 120.0
+ ],
+ [
+ 112.842853695,
+ 39.448637148400003,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045027,
+ "name": "朔州滋润机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "39.274182",
+ "lng": "112.691839",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.691839,
+ 39.724530903987024,
+ 500.0
+ ],
+ [
+ 112.793097049536314,
+ 39.717645473324964,
+ 500.0
+ ],
+ [
+ 112.891219873625261,
+ 39.697202377297593,
+ 500.0
+ ],
+ [
+ 112.983174768327416,
+ 39.663834228488383,
+ 500.0
+ ],
+ [
+ 113.066130027886061,
+ 39.618572406775364,
+ 500.0
+ ],
+ [
+ 113.137545581954271,
+ 39.562813548117553,
+ 500.0
+ ],
+ [
+ 113.195252471854019,
+ 39.498274468742267,
+ 500.0
+ ],
+ [
+ 113.237518490175887,
+ 39.42693722935784,
+ 500.0
+ ],
+ [
+ 113.263098061713748,
+ 39.350986354589793,
+ 500.0
+ ],
+ [
+ 113.271265235496585,
+ 39.272740427305955,
+ 500.0
+ ],
+ [
+ 113.261829422477234,
+ 39.194580375993681,
+ 500.0
+ ],
+ [
+ 113.235134198630192,
+ 39.118876774057803,
+ 500.0
+ ],
+ [
+ 113.192040063261317,
+ 39.04791838677184,
+ 500.0
+ ],
+ [
+ 113.133892480196579,
+ 38.983844051748179,
+ 500.0
+ ],
+ [
+ 113.06247683514583,
+ 38.928579779982179,
+ 500.0
+ ],
+ [
+ 112.979962129358825,
+ 38.883782733223775,
+ 500.0
+ ],
+ [
+ 112.888835320105784,
+ 38.850793483399528,
+ 500.0
+ ],
+ [
+ 112.791828239308543,
+ 38.830597701435593,
+ 500.0
+ ],
+ [
+ 112.691839,
+ 38.823798163028592,
+ 500.0
+ ],
+ [
+ 112.59184976069146,
+ 38.830597701435593,
+ 500.0
+ ],
+ [
+ 112.494842679894219,
+ 38.850793483399528,
+ 500.0
+ ],
+ [
+ 112.403715870641179,
+ 38.883782733223775,
+ 500.0
+ ],
+ [
+ 112.321201164854173,
+ 38.928579779982179,
+ 500.0
+ ],
+ [
+ 112.249785519803424,
+ 38.983844051748179,
+ 500.0
+ ],
+ [
+ 112.191637936738687,
+ 39.04791838677184,
+ 500.0
+ ],
+ [
+ 112.148543801369811,
+ 39.118876774057803,
+ 500.0
+ ],
+ [
+ 112.121848577522769,
+ 39.194580375993681,
+ 500.0
+ ],
+ [
+ 112.112412764503418,
+ 39.272740427305955,
+ 500.0
+ ],
+ [
+ 112.120579938286255,
+ 39.350986354589793,
+ 500.0
+ ],
+ [
+ 112.146159509824116,
+ 39.42693722935784,
+ 500.0
+ ],
+ [
+ 112.188425528145984,
+ 39.498274468742267,
+ 500.0
+ ],
+ [
+ 112.246132418045732,
+ 39.562813548117553,
+ 500.0
+ ],
+ [
+ 112.317547972113942,
+ 39.618572406775364,
+ 500.0
+ ],
+ [
+ 112.400503231672587,
+ 39.663834228488383,
+ 500.0
+ ],
+ [
+ 112.492458126374743,
+ 39.697202377297593,
+ 500.0
+ ],
+ [
+ 112.590580950463689,
+ 39.717645473324964,
+ 500.0
+ ],
+ [
+ 112.691839,
+ 39.724530903987024,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 497,
+ "name": "Datong Airport",
+ "country": "CN",
+ "city": "Datong",
+ "height": 0,
+ "level": 2,
+ "lat": "40.0919744300707",
+ "lng": "113.435053606087",
+ "radius": 13276,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.42684114,
+ 40.126234017500003,
+ 0.0
+ ],
+ [
+ 113.355194239,
+ 40.194583610599999,
+ 0.0
+ ],
+ [
+ 113.293397897,
+ 40.141374719799998,
+ 0.0
+ ],
+ [
+ 113.390071437,
+ 40.0946901091,
+ 0.0
+ ],
+ [
+ 113.383686027,
+ 40.068850904199998,
+ 0.0
+ ],
+ [
+ 113.395700604,
+ 40.037249404599997,
+ 0.0
+ ],
+ [
+ 113.43588737899999,
+ 40.005994005200002,
+ 0.0
+ ],
+ [
+ 113.47172091199999,
+ 39.989864064499997,
+ 0.0
+ ],
+ [
+ 113.514672476,
+ 39.989310575099999,
+ 0.0
+ ],
+ [
+ 113.42684114,
+ 40.126234017500003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 497,
+ "name": "Datong Airport",
+ "country": "CN",
+ "city": "Datong",
+ "height": 0,
+ "level": 2,
+ "lat": "40.0342095315928",
+ "lng": "113.526041160616",
+ "radius": 13264,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.606487616,
+ 39.9320817913,
+ 0.0
+ ],
+ [
+ 113.66494067399999,
+ 39.980261227200003,
+ 0.0
+ ],
+ [
+ 113.57161332699999,
+ 40.026909578,
+ 0.0
+ ],
+ [
+ 113.577781308,
+ 40.043112651900003,
+ 0.0
+ ],
+ [
+ 113.57820684399999,
+ 40.0597076946,
+ 0.0
+ ],
+ [
+ 113.56252664,
+ 40.090355151899999,
+ 0.0
+ ],
+ [
+ 113.547483782,
+ 40.102316981100003,
+ 0.0
+ ],
+ [
+ 113.520779395,
+ 40.120673472900002,
+ 0.0
+ ],
+ [
+ 113.489929563,
+ 40.132664853199998,
+ 0.0
+ ],
+ [
+ 113.468401298,
+ 40.1348082644,
+ 0.0
+ ],
+ [
+ 113.42684114,
+ 40.126234017500003,
+ 0.0
+ ],
+ [
+ 113.514672476,
+ 39.989310575099999,
+ 0.0
+ ],
+ [
+ 113.534827772,
+ 39.995398194700002,
+ 0.0
+ ],
+ [
+ 113.606487616,
+ 39.9320817913,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 497,
+ "name": "Datong Airport",
+ "country": "CN",
+ "city": "Datong",
+ "height": 120,
+ "level": 2,
+ "lat": "40.0630670487469",
+ "lng": "113.477963321999",
+ "radius": 23734,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.744571956,
+ 40.000699297899999,
+ 120.0
+ ],
+ [
+ 113.587791125,
+ 39.866912276400001,
+ 120.0
+ ],
+ [
+ 113.211207812,
+ 40.125679095700001,
+ 120.0
+ ],
+ [
+ 113.368585257,
+ 40.259466116299997,
+ 120.0
+ ],
+ [
+ 113.744571956,
+ 40.000699297899999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001396,
+ "name": "Datong Airport",
+ "country": "CN",
+ "city": "Datong",
+ "height": 500,
+ "level": 2,
+ "lat": "40.06238",
+ "lng": "113.479289",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.479289,
+ 40.512667519325966,
+ 500.0
+ ],
+ [
+ 113.581722633167587,
+ 40.505781780577841,
+ 500.0
+ ],
+ [
+ 113.680982955384721,
+ 40.485337884343075,
+ 500.0
+ ],
+ [
+ 113.774000630510187,
+ 40.451968797099681,
+ 500.0
+ ],
+ [
+ 113.85791014434254,
+ 40.406706430176399,
+ 500.0
+ ],
+ [
+ 113.930141654642057,
+ 40.350948049317417,
+ 500.0
+ ],
+ [
+ 113.988501462607886,
+ 40.286411103397349,
+ 500.0
+ ],
+ [
+ 114.031238389878908,
+ 40.215078189669036,
+ 500.0
+ ],
+ [
+ 114.057094120625933,
+ 40.139134183817561,
+ 500.0
+ ],
+ [
+ 114.065336381310814,
+ 40.060897766147697,
+ 500.0
+ ],
+ [
+ 114.055774613790149,
+ 39.982749670853941,
+ 500.0
+ ],
+ [
+ 114.028758496314978,
+ 39.907059982143835,
+ 500.0
+ ],
+ [
+ 113.98516024521696,
+ 39.836116713505795,
+ 500.0
+ ],
+ [
+ 113.926342070579523,
+ 39.772057752301691,
+ 500.0
+ ],
+ [
+ 113.854110462545719,
+ 39.716808049404037,
+ 500.0
+ ],
+ [
+ 113.770659165647345,
+ 39.672023699619217,
+ 500.0
+ ],
+ [
+ 113.678502780406149,
+ 39.639044307140281,
+ 500.0
+ ],
+ [
+ 113.580402942651446,
+ 39.618854771729637,
+ 500.0
+ ],
+ [
+ 113.479289,
+ 39.612057372609272,
+ 500.0
+ ],
+ [
+ 113.378175057348543,
+ 39.618854771729637,
+ 500.0
+ ],
+ [
+ 113.28007521959384,
+ 39.639044307140281,
+ 500.0
+ ],
+ [
+ 113.187918834352644,
+ 39.672023699619217,
+ 500.0
+ ],
+ [
+ 113.104467537454269,
+ 39.716808049404037,
+ 500.0
+ ],
+ [
+ 113.032235929420466,
+ 39.772057752301691,
+ 500.0
+ ],
+ [
+ 112.973417754783028,
+ 39.836116713505795,
+ 500.0
+ ],
+ [
+ 112.92981950368501,
+ 39.907059982143835,
+ 500.0
+ ],
+ [
+ 112.90280338620984,
+ 39.982749670853941,
+ 500.0
+ ],
+ [
+ 112.893241618689174,
+ 40.060897766147697,
+ 500.0
+ ],
+ [
+ 112.901483879374055,
+ 40.139134183817561,
+ 500.0
+ ],
+ [
+ 112.927339610121081,
+ 40.215078189669036,
+ 500.0
+ ],
+ [
+ 112.970076537392103,
+ 40.286411103397349,
+ 500.0
+ ],
+ [
+ 113.028436345357932,
+ 40.350948049317417,
+ 500.0
+ ],
+ [
+ 113.100667855657449,
+ 40.406706430176399,
+ 500.0
+ ],
+ [
+ 113.184577369489801,
+ 40.451968797099681,
+ 500.0
+ ],
+ [
+ 113.277595044615268,
+ 40.485337884343075,
+ 500.0
+ ],
+ [
+ 113.376855366832402,
+ 40.505781780577841,
+ 500.0
+ ],
+ [
+ 113.479289,
+ 40.512667519325966,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4140,
+ "name": "Beijing Nanyuan Airport",
+ "country": "CN",
+ "city": "Beijing",
+ "height": 0,
+ "level": 2,
+ "lat": "39.7390478248394",
+ "lng": "116.389375380078",
+ "radius": 14004,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.364168685,
+ 39.701920445,
+ 0.0
+ ],
+ [
+ 116.353407266,
+ 39.616184884799999,
+ 0.0
+ ],
+ [
+ 116.442865766,
+ 39.620023189100003,
+ 0.0
+ ],
+ [
+ 116.419823214,
+ 39.704309237799997,
+ 0.0
+ ],
+ [
+ 116.45606956,
+ 39.722856975200003,
+ 0.0
+ ],
+ [
+ 116.468017536,
+ 39.736679691100001,
+ 0.0
+ ],
+ [
+ 116.474910182,
+ 39.7524090884,
+ 0.0
+ ],
+ [
+ 116.473737103,
+ 39.804581436799999,
+ 0.0
+ ],
+ [
+ 116.469790304,
+ 39.821554555299997,
+ 0.0
+ ],
+ [
+ 116.4464914,
+ 39.8491796339,
+ 0.0
+ ],
+ [
+ 116.408307722,
+ 39.864148109200002,
+ 0.0
+ ],
+ [
+ 116.364168685,
+ 39.701920445,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4140,
+ "name": "Beijing Nanyuan Airport",
+ "country": "CN",
+ "city": "Beijing",
+ "height": 0,
+ "level": 2,
+ "lat": "39.827032341384",
+ "lng": "116.382990573785",
+ "radius": 14004,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.41913038,
+ 39.9498873987,
+ 0.0
+ ],
+ [
+ 116.329295182,
+ 39.946048149900001,
+ 0.0
+ ],
+ [
+ 116.35249883199999,
+ 39.8617641389,
+ 0.0
+ ],
+ [
+ 116.316097382,
+ 39.843091850500002,
+ 0.0
+ ],
+ [
+ 116.30419540299999,
+ 39.829236345,
+ 0.0
+ ],
+ [
+ 116.297372682,
+ 39.813486986,
+ 0.0
+ ],
+ [
+ 116.298709681,
+ 39.761427627499998,
+ 0.0
+ ],
+ [
+ 116.302705352,
+ 39.744439218,
+ 0.0
+ ],
+ [
+ 116.326040947,
+ 39.7168501401,
+ 0.0
+ ],
+ [
+ 116.364168685,
+ 39.701920445,
+ 0.0
+ ],
+ [
+ 116.408307722,
+ 39.864148109200002,
+ 0.0
+ ],
+ [
+ 116.41913038,
+ 39.9498873987,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4140,
+ "name": "Beijing Nanyuan Airport",
+ "country": "CN",
+ "city": "Beijing",
+ "height": 120,
+ "level": 2,
+ "lat": "39.7830349631141",
+ "lng": "116.386158450838",
+ "radius": 24147,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.25466716299999,
+ 39.975330940299997,
+ 120.0
+ ],
+ [
+ 116.489031933,
+ 39.985342642399999,
+ 120.0
+ ],
+ [
+ 116.516996169,
+ 39.590623655800002,
+ 120.0
+ ],
+ [
+ 116.283971961,
+ 39.580611953499997,
+ 120.0
+ ],
+ [
+ 116.25466716299999,
+ 39.975330940299997,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001526,
+ "name": "Beijing Nanyuan Airport",
+ "country": "CN",
+ "city": "Beijing",
+ "height": 500,
+ "level": 2,
+ "lat": "39.782698",
+ "lng": "116.386922",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.386922,
+ 40.233007335139433,
+ 500.0
+ ],
+ [
+ 116.48893315904094,
+ 40.226121708481898,
+ 500.0
+ ],
+ [
+ 116.587784695401709,
+ 40.205678104101054,
+ 500.0
+ ],
+ [
+ 116.680420438697766,
+ 40.172309361754046,
+ 500.0
+ ],
+ [
+ 116.763987025269856,
+ 40.127047202453895,
+ 500.0
+ ],
+ [
+ 116.835925312236498,
+ 40.071288666378024,
+ 500.0
+ ],
+ [
+ 116.894050491283579,
+ 40.006750975738797,
+ 500.0
+ ],
+ [
+ 116.936618200721625,
+ 39.93541653543361,
+ 500.0
+ ],
+ [
+ 116.962374701986519,
+ 39.859470095070357,
+ 500.0
+ ],
+ [
+ 116.970589992121162,
+ 39.78123029952534,
+ 500.0
+ ],
+ [
+ 116.961073500295413,
+ 39.703077951843383,
+ 500.0
+ ],
+ [
+ 116.934172710378974,
+ 39.627383310500569,
+ 500.0
+ ],
+ [
+ 116.890755626883944,
+ 39.55643465712523,
+ 500.0
+ ],
+ [
+ 116.832178441162014,
+ 39.492370218177641,
+ 500.0
+ ],
+ [
+ 116.7602400589208,
+ 39.437115322932932,
+ 500.0
+ ],
+ [
+ 116.677125333054477,
+ 39.392326447087484,
+ 500.0
+ ],
+ [
+ 116.585338930726877,
+ 39.359343540334123,
+ 500.0
+ ],
+ [
+ 116.487631778292226,
+ 39.339151777768009,
+ 500.0
+ ],
+ [
+ 116.386922,
+ 39.33235361587429,
+ 500.0
+ ],
+ [
+ 116.286212221707771,
+ 39.339151777768009,
+ 500.0
+ ],
+ [
+ 116.18850506927312,
+ 39.359343540334123,
+ 500.0
+ ],
+ [
+ 116.09671866694552,
+ 39.392326447087484,
+ 500.0
+ ],
+ [
+ 116.013603941079197,
+ 39.437115322932932,
+ 500.0
+ ],
+ [
+ 115.941665558837983,
+ 39.492370218177641,
+ 500.0
+ ],
+ [
+ 115.883088373116053,
+ 39.55643465712523,
+ 500.0
+ ],
+ [
+ 115.839671289621023,
+ 39.627383310500569,
+ 500.0
+ ],
+ [
+ 115.812770499704584,
+ 39.703077951843383,
+ 500.0
+ ],
+ [
+ 115.803254007878834,
+ 39.78123029952534,
+ 500.0
+ ],
+ [
+ 115.811469298013478,
+ 39.859470095070357,
+ 500.0
+ ],
+ [
+ 115.837225799278372,
+ 39.93541653543361,
+ 500.0
+ ],
+ [
+ 115.879793508716418,
+ 40.006750975738797,
+ 500.0
+ ],
+ [
+ 115.937918687763499,
+ 40.071288666378024,
+ 500.0
+ ],
+ [
+ 116.009856974730141,
+ 40.127047202453895,
+ 500.0
+ ],
+ [
+ 116.093423561302231,
+ 40.172309361754046,
+ 500.0
+ ],
+ [
+ 116.186059304598288,
+ 40.205678104101054,
+ 500.0
+ ],
+ [
+ 116.284910840959057,
+ 40.226121708481898,
+ 500.0
+ ],
+ [
+ 116.386922,
+ 40.233007335139433,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001293,
+ "name": "Daxing International airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "39.50222736",
+ "lng": "116.41184537",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.41184537,
+ 39.952558535201362,
+ 500.0
+ ],
+ [
+ 116.513438780180351,
+ 39.945673017863911,
+ 500.0
+ ],
+ [
+ 116.611886101364277,
+ 39.925229697344598,
+ 500.0
+ ],
+ [
+ 116.704144180443322,
+ 39.891861287595489,
+ 500.0
+ ],
+ [
+ 116.787371667653531,
+ 39.846599320707398,
+ 500.0
+ ],
+ [
+ 116.85901999967156,
+ 39.790840612983452,
+ 500.0
+ ],
+ [
+ 116.916913159753378,
+ 39.726302161752301,
+ 500.0
+ ],
+ [
+ 116.959313527746062,
+ 39.654966181202958,
+ 500.0
+ ],
+ [
+ 116.984971892697203,
+ 39.579017296188319,
+ 500.0
+ ],
+ [
+ 116.993160498603757,
+ 39.500774117008334,
+ 500.0
+ ],
+ [
+ 116.983688763856662,
+ 39.422617515858306,
+ 500.0
+ ],
+ [
+ 116.956902004033594,
+ 39.346917925219877,
+ 500.0
+ ],
+ [
+ 116.913664060084159,
+ 39.275963894090935,
+ 500.0
+ ],
+ [
+ 116.855325172578986,
+ 39.211893986865242,
+ 500.0
+ ],
+ [
+ 116.783676747681753,
+ 39.156633909813806,
+ 500.0
+ ],
+ [
+ 116.70089484559567,
+ 39.111840518048318,
+ 500.0
+ ],
+ [
+ 116.609474310216783,
+ 39.078854105393795,
+ 500.0
+ ],
+ [
+ 116.512155476783988,
+ 39.058660121174682,
+ 500.0
+ ],
+ [
+ 116.41184537,
+ 39.051861198424255,
+ 500.0
+ ],
+ [
+ 116.311535263216001,
+ 39.058660121174682,
+ 500.0
+ ],
+ [
+ 116.214216429783207,
+ 39.078854105393795,
+ 500.0
+ ],
+ [
+ 116.122795894404319,
+ 39.111840518048318,
+ 500.0
+ ],
+ [
+ 116.040013992318237,
+ 39.156633909813806,
+ 500.0
+ ],
+ [
+ 115.968365567421003,
+ 39.211893986865242,
+ 500.0
+ ],
+ [
+ 115.910026679915831,
+ 39.275963894090935,
+ 500.0
+ ],
+ [
+ 115.866788735966395,
+ 39.346917925219877,
+ 500.0
+ ],
+ [
+ 115.840001976143327,
+ 39.422617515858306,
+ 500.0
+ ],
+ [
+ 115.830530241396232,
+ 39.500774117008334,
+ 500.0
+ ],
+ [
+ 115.838718847302786,
+ 39.579017296188319,
+ 500.0
+ ],
+ [
+ 115.864377212253927,
+ 39.654966181202958,
+ 500.0
+ ],
+ [
+ 115.906777580246612,
+ 39.726302161752301,
+ 500.0
+ ],
+ [
+ 115.96467074032843,
+ 39.790840612983452,
+ 500.0
+ ],
+ [
+ 116.036319072346458,
+ 39.846599320707398,
+ 500.0
+ ],
+ [
+ 116.119546559556667,
+ 39.891861287595489,
+ 500.0
+ ],
+ [
+ 116.211804638635712,
+ 39.925229697344598,
+ 500.0
+ ],
+ [
+ 116.310251959819638,
+ 39.945673017863911,
+ 500.0
+ ],
+ [
+ 116.41184537,
+ 39.952558535201362,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9371,
+ "name": "Beijing",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "39.90748",
+ "lng": "116.391372",
+ "radius": 30000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.391372,
+ 40.177663978911305,
+ 0.0
+ ],
+ [
+ 116.452531815393073,
+ 40.173543277624894,
+ 0.0
+ ],
+ [
+ 116.511811760057114,
+ 40.161307830488937,
+ 0.0
+ ],
+ [
+ 116.567391726542596,
+ 40.141333580559092,
+ 0.0
+ ],
+ [
+ 116.617568987207846,
+ 40.114233820797693,
+ 0.0
+ ],
+ [
+ 116.660811625663882,
+ 40.080839775687473,
+ 0.0
+ ],
+ [
+ 116.695805952216304,
+ 40.042174389134203,
+ 0.0
+ ],
+ [
+ 116.721496361233534,
+ 39.999420234033067,
+ 0.0
+ ],
+ [
+ 116.73711643531216,
+ 39.953882642846075,
+ 0.0
+ ],
+ [
+ 116.742210479975355,
+ 39.906949293414186,
+ 0.0
+ ],
+ [
+ 116.736645057531462,
+ 39.860047567636457,
+ 0.0
+ ],
+ [
+ 116.720610456713857,
+ 39.814601033516404,
+ 0.0
+ ],
+ [
+ 116.69461236787329,
+ 39.771986387040741,
+ 0.0
+ ],
+ [
+ 116.659454319893612,
+ 39.733492134977539,
+ 0.0
+ ],
+ [
+ 116.616211668949092,
+ 39.700280209598219,
+ 0.0
+ ],
+ [
+ 116.566198110577616,
+ 39.673351588481282,
+ 0.0
+ ],
+ [
+ 116.510925819578276,
+ 39.653516853541809,
+ 0.0
+ ],
+ [
+ 116.452060414141684,
+ 39.641372469070014,
+ 0.0
+ ],
+ [
+ 116.391372,
+ 39.637283393648296,
+ 0.0
+ ],
+ [
+ 116.330683585858324,
+ 39.641372469070014,
+ 0.0
+ ],
+ [
+ 116.271818180421732,
+ 39.653516853541809,
+ 0.0
+ ],
+ [
+ 116.216545889422392,
+ 39.673351588481282,
+ 0.0
+ ],
+ [
+ 116.166532331050917,
+ 39.700280209598219,
+ 0.0
+ ],
+ [
+ 116.123289680106396,
+ 39.733492134977539,
+ 0.0
+ ],
+ [
+ 116.088131632126718,
+ 39.771986387040741,
+ 0.0
+ ],
+ [
+ 116.062133543286151,
+ 39.814601033516404,
+ 0.0
+ ],
+ [
+ 116.046098942468547,
+ 39.860047567636457,
+ 0.0
+ ],
+ [
+ 116.040533520024653,
+ 39.906949293414186,
+ 0.0
+ ],
+ [
+ 116.045627564687848,
+ 39.953882642846075,
+ 0.0
+ ],
+ [
+ 116.061247638766474,
+ 39.999420234033067,
+ 0.0
+ ],
+ [
+ 116.086938047783704,
+ 40.042174389134203,
+ 0.0
+ ],
+ [
+ 116.121932374336126,
+ 40.080839775687473,
+ 0.0
+ ],
+ [
+ 116.165175012792162,
+ 40.114233820797693,
+ 0.0
+ ],
+ [
+ 116.215352273457412,
+ 40.141333580559092,
+ 0.0
+ ],
+ [
+ 116.270932239942894,
+ 40.161307830488937,
+ 0.0
+ ],
+ [
+ 116.330212184606935,
+ 40.173543277624894,
+ 0.0
+ ],
+ [
+ 116.391372,
+ 40.177663978911305,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000062,
+ "name": "Daxing International airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "39.4473572443097",
+ "lng": "116.407980294067",
+ "radius": 15302,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.442958405587206,
+ 39.582300516634326,
+ 0.0
+ ],
+ [
+ 116.35839562699999,
+ 39.402302803799998,
+ 0.0
+ ],
+ [
+ 116.355362519,
+ 39.315889499500003,
+ 0.0
+ ],
+ [
+ 116.41287165089976,
+ 39.321246407479343,
+ 0.0
+ ],
+ [
+ 116.412842078,
+ 39.3202193017,
+ 0.0
+ ],
+ [
+ 116.49758383,
+ 39.328436914699999,
+ 0.0
+ ],
+ [
+ 116.490012602976975,
+ 39.349465818682503,
+ 0.0
+ ],
+ [
+ 116.500322841,
+ 39.351994931699998,
+ 0.0
+ ],
+ [
+ 116.474202357584304,
+ 39.393378401318238,
+ 0.0
+ ],
+ [
+ 116.467602524,
+ 39.411709283,
+ 0.0
+ ],
+ [
+ 116.487926609,
+ 39.420579605900002,
+ 0.0
+ ],
+ [
+ 116.513807477,
+ 39.4467264333,
+ 0.0
+ ],
+ [
+ 116.514700800363613,
+ 39.449317270638652,
+ 0.0
+ ],
+ [
+ 116.518221772,
+ 39.450169412,
+ 0.0
+ ],
+ [
+ 116.534717644,
+ 39.460812546200003,
+ 0.0
+ ],
+ [
+ 116.54708875599999,
+ 39.474388011899997,
+ 0.0
+ ],
+ [
+ 116.442958405587206,
+ 39.582300516634326,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000062,
+ "name": "Daxing International airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "39.4988842495346",
+ "lng": "116.286385379244",
+ "radius": 9761,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.324029721483811,
+ 39.561319954515398,
+ 0.0
+ ],
+ [
+ 116.25371097199999,
+ 39.582973748500002,
+ 0.0
+ ],
+ [
+ 116.233925793,
+ 39.518710279,
+ 0.0
+ ],
+ [
+ 116.284361441872164,
+ 39.515391759656794,
+ 0.0
+ ],
+ [
+ 116.281798778,
+ 39.507998273399998,
+ 0.0
+ ],
+ [
+ 116.287011688,
+ 39.458342182700001,
+ 0.0
+ ],
+ [
+ 116.292905202,
+ 39.440815462499998,
+ 0.0
+ ],
+ [
+ 116.31898082,
+ 39.414785627199997,
+ 0.0
+ ],
+ [
+ 116.324029721483811,
+ 39.561319954515398,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000062,
+ "name": "Daxing International airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "39.5354306178263",
+ "lng": "116.38226278846",
+ "radius": 14944,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.405634226609862,
+ 39.649195531169703,
+ 0.0
+ ],
+ [
+ 116.406221668,
+ 39.668553532200001,
+ 0.0
+ ],
+ [
+ 116.370980935573527,
+ 39.665174991149328,
+ 0.0
+ ],
+ [
+ 116.37025512,
+ 39.668635306500001,
+ 0.0
+ ],
+ [
+ 116.346484503509231,
+ 39.662826509843022,
+ 0.0
+ ],
+ [
+ 116.321092257,
+ 39.660392146500001,
+ 0.0
+ ],
+ [
+ 116.322343769165656,
+ 39.656927267936254,
+ 0.0
+ ],
+ [
+ 116.288494629,
+ 39.648655594700003,
+ 0.0
+ ],
+ [
+ 116.319172484759804,
+ 39.600348486832431,
+ 0.0
+ ],
+ [
+ 116.331502068624047,
+ 39.565675593372326,
+ 0.0
+ ],
+ [
+ 116.331461437117113,
+ 39.565641355155343,
+ 0.0
+ ],
+ [
+ 116.324029721483811,
+ 39.561319954515398,
+ 0.0
+ ],
+ [
+ 116.31898082,
+ 39.414785627199997,
+ 0.0
+ ],
+ [
+ 116.35839562699999,
+ 39.402302803799998,
+ 0.0
+ ],
+ [
+ 116.442958405587206,
+ 39.582300516634326,
+ 0.0
+ ],
+ [
+ 116.445016956,
+ 39.652999570799999,
+ 0.0
+ ],
+ [
+ 116.405634226609862,
+ 39.649195531169703,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000062,
+ "name": "Daxing International airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "39.5123245836336",
+ "lng": "116.547124161619",
+ "radius": 11845,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.54708875599999,
+ 39.474388011899997,
+ 0.0
+ ],
+ [
+ 116.651080156,
+ 39.442255881199998,
+ 0.0
+ ],
+ [
+ 116.670903609,
+ 39.506515132399997,
+ 0.0
+ ],
+ [
+ 116.559325971,
+ 39.514039135600001,
+ 0.0
+ ],
+ [
+ 116.555688831,
+ 39.531862753299997,
+ 0.0
+ ],
+ [
+ 116.546726983,
+ 39.546953678500003,
+ 0.0
+ ],
+ [
+ 116.51544547,
+ 39.569349735199999,
+ 0.0
+ ],
+ [
+ 116.442958405587206,
+ 39.582300516634326,
+ 0.0
+ ],
+ [
+ 116.54708875599999,
+ 39.474388011899997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000062,
+ "name": "Daxing International airport",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "39.5324729203337",
+ "lng": "116.459016771581",
+ "radius": 25143,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.228826783512559,
+ 39.667696399660734,
+ 120.0
+ ],
+ [
+ 116.56011780067746,
+ 39.400334224665812,
+ 120.0
+ ],
+ [
+ 116.67455781,
+ 39.379383863,
+ 120.0
+ ],
+ [
+ 116.728349488,
+ 39.554388741,
+ 120.0
+ ],
+ [
+ 116.529473684529137,
+ 39.590801802179193,
+ 120.0
+ ],
+ [
+ 116.513212353,
+ 39.691873616700001,
+ 120.0
+ ],
+ [
+ 116.477518757879636,
+ 39.688427350249825,
+ 120.0
+ ],
+ [
+ 116.47449499,
+ 39.707372502399998,
+ 120.0
+ ],
+ [
+ 116.433426213992902,
+ 39.703440317614991,
+ 120.0
+ ],
+ [
+ 116.428122352,
+ 39.716382479400004,
+ 120.0
+ ],
+ [
+ 116.337577177794543,
+ 39.694263123687129,
+ 120.0
+ ],
+ [
+ 116.242524302,
+ 39.685162159199997,
+ 120.0
+ ],
+ [
+ 116.244736803526564,
+ 39.671583071647142,
+ 120.0
+ ],
+ [
+ 116.228826783512559,
+ 39.667696399660734,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000062,
+ "name": "Daxing International airport",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "39.4829352636734",
+ "lng": "116.390987798153",
+ "radius": 25484,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.228826783512559,
+ 39.667696399660734,
+ 120.0
+ ],
+ [
+ 116.225781203,
+ 39.667413941299998,
+ 120.0
+ ],
+ [
+ 116.225851328001099,
+ 39.666969523165733,
+ 120.0
+ ],
+ [
+ 116.205343045,
+ 39.6619595377,
+ 120.0
+ ],
+ [
+ 116.222487501094818,
+ 39.620448467185767,
+ 120.0
+ ],
+ [
+ 116.176363854,
+ 39.4705874868,
+ 120.0
+ ],
+ [
+ 116.259232345767956,
+ 39.455416875721617,
+ 120.0
+ ],
+ [
+ 116.287360434,
+ 39.2771547396,
+ 120.0
+ ],
+ [
+ 116.344868449909271,
+ 39.282518257987746,
+ 120.0
+ ],
+ [
+ 116.34508031599999,
+ 39.281228077500003,
+ 120.0
+ ],
+ [
+ 116.575678477,
+ 39.303617311399996,
+ 120.0
+ ],
+ [
+ 116.570546014875319,
+ 39.335517974575751,
+ 120.0
+ ],
+ [
+ 116.582956251,
+ 39.338566206400003,
+ 120.0
+ ],
+ [
+ 116.561717400859834,
+ 39.390391958089964,
+ 120.0
+ ],
+ [
+ 116.56011780067746,
+ 39.400334224665812,
+ 120.0
+ ],
+ [
+ 116.228826783512559,
+ 39.667696399660734,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7681,
+ "name": "Tangshan Sannühe Airport",
+ "country": "CN",
+ "city": "Tangshan",
+ "height": 0,
+ "level": 2,
+ "lat": "39.7211083272685",
+ "lng": "117.946036461349",
+ "radius": 13117,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.910751358,
+ 39.742671571300001,
+ 0.0
+ ],
+ [
+ 117.80249402,
+ 39.762747843900001,
+ 0.0
+ ],
+ [
+ 117.79732652,
+ 39.692340855200001,
+ 0.0
+ ],
+ [
+ 117.90563071299999,
+ 39.702358678400003,
+ 0.0
+ ],
+ [
+ 117.925467217,
+ 39.675462859900001,
+ 0.0
+ ],
+ [
+ 117.942258565,
+ 39.665048901299997,
+ 0.0
+ ],
+ [
+ 117.961975193,
+ 39.658331890500001,
+ 0.0
+ ],
+ [
+ 118.014930943,
+ 39.650768918200001,
+ 0.0
+ ],
+ [
+ 118.049830639,
+ 39.655810343100001,
+ 0.0
+ ],
+ [
+ 118.068403151,
+ 39.6642406446,
+ 0.0
+ ],
+ [
+ 118.094132429,
+ 39.690529217200002,
+ 0.0
+ ],
+ [
+ 117.910751358,
+ 39.742671571300001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7681,
+ "name": "Tangshan Sannühe Airport",
+ "country": "CN",
+ "city": "Tangshan",
+ "height": 0,
+ "level": 2,
+ "lat": "39.7116724386473",
+ "lng": "118.060040170955",
+ "radius": 13224,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.205863642,
+ 39.672264072600001,
+ 0.0
+ ],
+ [
+ 118.209331348,
+ 39.742664815200001,
+ 0.0
+ ],
+ [
+ 118.097651842,
+ 39.736005606600003,
+ 0.0
+ ],
+ [
+ 118.08124171199999,
+ 39.760101958600004,
+ 0.0
+ ],
+ [
+ 118.065321741,
+ 39.7713159563,
+ 0.0
+ ],
+ [
+ 118.046163767,
+ 39.778977758400003,
+ 0.0
+ ],
+ [
+ 117.991725758,
+ 39.784231507800001,
+ 0.0
+ ],
+ [
+ 117.95368365,
+ 39.7784338441,
+ 0.0
+ ],
+ [
+ 117.935427205,
+ 39.769567019299998,
+ 0.0
+ ],
+ [
+ 117.910751358,
+ 39.742671571300001,
+ 0.0
+ ],
+ [
+ 118.094132429,
+ 39.690529217200002,
+ 0.0
+ ],
+ [
+ 118.205863642,
+ 39.672264072600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7681,
+ "name": "Tangshan Sannühe Airport",
+ "country": "CN",
+ "city": "Tangshan",
+ "height": 120,
+ "level": 2,
+ "lat": "39.7178418767735",
+ "lng": "118.003658888989",
+ "radius": 23623,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.267174897,
+ 39.781771126400002,
+ 120.0
+ ],
+ [
+ 118.23623797,
+ 39.603489107100003,
+ 120.0
+ ],
+ [
+ 117.740173694,
+ 39.6544328218,
+ 120.0
+ ],
+ [
+ 117.771133481,
+ 39.8327148411,
+ 120.0
+ ],
+ [
+ 118.267174897,
+ 39.781771126400002,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001513,
+ "name": "Tangshan Sannühe Airport",
+ "country": "CN",
+ "city": "Tangshan",
+ "height": 500,
+ "level": 2,
+ "lat": "39.719403",
+ "lng": "118.002778",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.002778,
+ 40.169717267214303,
+ 500.0
+ ],
+ [
+ 118.104694369548426,
+ 40.162831665494053,
+ 500.0
+ ],
+ [
+ 118.203454187410756,
+ 40.142388125934566,
+ 500.0
+ ],
+ [
+ 118.296004236998343,
+ 40.109019459791583,
+ 500.0
+ ],
+ [
+ 118.379493880734103,
+ 40.06375734527586,
+ 500.0
+ ],
+ [
+ 118.451366376306922,
+ 40.007998771840235,
+ 500.0
+ ],
+ [
+ 118.509438910212907,
+ 39.943460910737002,
+ 500.0
+ ],
+ [
+ 118.551968650358845,
+ 39.872126123635887,
+ 500.0
+ ],
+ [
+ 118.577702885388035,
+ 39.796179131845484,
+ 500.0
+ ],
+ [
+ 118.585912122037925,
+ 39.717938572356978,
+ 500.0
+ ],
+ [
+ 118.57640578688148,
+ 39.639785263811937,
+ 500.0
+ ],
+ [
+ 118.549530871659059,
+ 39.564089504021098,
+ 500.0
+ ],
+ [
+ 118.50615443604984,
+ 39.493139635084233,
+ 500.0
+ ],
+ [
+ 118.447631321087187,
+ 39.42907395990926,
+ 500.0
+ ],
+ [
+ 118.375758730786515,
+ 39.373817893064817,
+ 500.0
+ ],
+ [
+ 118.292719522975958,
+ 39.329027996093295,
+ 500.0
+ ],
+ [
+ 118.201016135953012,
+ 39.296044296553049,
+ 500.0
+ ],
+ [
+ 118.10339709301175,
+ 39.275852031589181,
+ 500.0
+ ],
+ [
+ 118.002778,
+ 39.269053697634902,
+ 500.0
+ ],
+ [
+ 117.902158906988262,
+ 39.275852031589181,
+ 500.0
+ ],
+ [
+ 117.804539864047001,
+ 39.296044296553049,
+ 500.0
+ ],
+ [
+ 117.712836477024055,
+ 39.329027996093295,
+ 500.0
+ ],
+ [
+ 117.629797269213498,
+ 39.373817893064817,
+ 500.0
+ ],
+ [
+ 117.557924678912826,
+ 39.42907395990926,
+ 500.0
+ ],
+ [
+ 117.499401563950173,
+ 39.493139635084233,
+ 500.0
+ ],
+ [
+ 117.456025128340954,
+ 39.564089504021098,
+ 500.0
+ ],
+ [
+ 117.429150213118533,
+ 39.639785263811937,
+ 500.0
+ ],
+ [
+ 117.419643877962088,
+ 39.717938572356978,
+ 500.0
+ ],
+ [
+ 117.427853114611978,
+ 39.796179131845484,
+ 500.0
+ ],
+ [
+ 117.453587349641168,
+ 39.872126123635887,
+ 500.0
+ ],
+ [
+ 117.496117089787106,
+ 39.943460910737002,
+ 500.0
+ ],
+ [
+ 117.554189623693091,
+ 40.007998771840235,
+ 500.0
+ ],
+ [
+ 117.62606211926591,
+ 40.06375734527586,
+ 500.0
+ ],
+ [
+ 117.70955176300167,
+ 40.109019459791583,
+ 500.0
+ ],
+ [
+ 117.802101812589257,
+ 40.142388125934566,
+ 500.0
+ ],
+ [
+ 117.900861630451587,
+ 40.162831665494053,
+ 500.0
+ ],
+ [
+ 118.002778,
+ 40.169717267214303,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001433,
+ "name": "北戴河",
+ "country": "CN",
+ "city": "秦皇岛",
+ "height": 500,
+ "level": 2,
+ "lat": "39.6658333333334",
+ "lng": "119.061666666667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.061666666666696,
+ 40.116151773302001,
+ 500.0
+ ],
+ [
+ 119.163503046175265,
+ 40.109266192565244,
+ 500.0
+ ],
+ [
+ 119.262185465459822,
+ 40.088822707518403,
+ 500.0
+ ],
+ [
+ 119.354663200504035,
+ 40.055454105345625,
+ 500.0
+ ],
+ [
+ 119.438087914161244,
+ 40.01019202810852,
+ 500.0
+ ],
+ [
+ 119.509904889885348,
+ 39.954433422421587,
+ 500.0
+ ],
+ [
+ 119.567932997554237,
+ 39.889895416502988,
+ 500.0
+ ],
+ [
+ 119.610430695899282,
+ 39.818560335523522,
+ 500.0
+ ],
+ [
+ 119.636146140454642,
+ 39.742612876907266,
+ 500.0
+ ],
+ [
+ 119.644350268143612,
+ 39.66437167100942,
+ 500.0
+ ],
+ [
+ 119.634852503417406,
+ 39.586217549675993,
+ 500.0
+ ],
+ [
+ 119.607999422783905,
+ 39.510520843978448,
+ 500.0
+ ],
+ [
+ 119.564657288651091,
+ 39.439569947135844,
+ 500.0
+ ],
+ [
+ 119.50617980258356,
+ 39.375503226673153,
+ 500.0
+ ],
+ [
+ 119.434362732591509,
+ 39.320246169248826,
+ 500.0
+ ],
+ [
+ 119.351387252906079,
+ 39.275455408959672,
+ 500.0
+ ],
+ [
+ 119.259753920910711,
+ 39.242471039172422,
+ 500.0
+ ],
+ [
+ 119.162209231972241,
+ 39.222278349473456,
+ 500.0
+ ],
+ [
+ 119.061666666666696,
+ 39.215479870057685,
+ 500.0
+ ],
+ [
+ 118.96112410136115,
+ 39.222278349473456,
+ 500.0
+ ],
+ [
+ 118.863579412422681,
+ 39.242471039172422,
+ 500.0
+ ],
+ [
+ 118.771946080427313,
+ 39.275455408959672,
+ 500.0
+ ],
+ [
+ 118.688970600741882,
+ 39.320246169248826,
+ 500.0
+ ],
+ [
+ 118.617153530749832,
+ 39.375503226673153,
+ 500.0
+ ],
+ [
+ 118.558676044682301,
+ 39.439569947135844,
+ 500.0
+ ],
+ [
+ 118.515333910549487,
+ 39.510520843978448,
+ 500.0
+ ],
+ [
+ 118.488480829915986,
+ 39.586217549675993,
+ 500.0
+ ],
+ [
+ 118.47898306518978,
+ 39.66437167100942,
+ 500.0
+ ],
+ [
+ 118.48718719287875,
+ 39.742612876907266,
+ 500.0
+ ],
+ [
+ 118.512902637434109,
+ 39.818560335523522,
+ 500.0
+ ],
+ [
+ 118.555400335779154,
+ 39.889895416502988,
+ 500.0
+ ],
+ [
+ 118.613428443448043,
+ 39.954433422421587,
+ 500.0
+ ],
+ [
+ 118.685245419172148,
+ 40.01019202810852,
+ 500.0
+ ],
+ [
+ 118.768670132829357,
+ 40.055454105345625,
+ 500.0
+ ],
+ [
+ 118.861147867873569,
+ 40.088822707518403,
+ 500.0
+ ],
+ [
+ 118.959830287158127,
+ 40.109266192565244,
+ 500.0
+ ],
+ [
+ 119.061666666666696,
+ 40.116151773302001,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33200,
+ "name": "北戴河",
+ "country": "CN",
+ "city": "秦皇岛",
+ "height": 0,
+ "level": 2,
+ "lat": "39.6510975053499",
+ "lng": "119.004525706213",
+ "radius": 13057,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.962025281,
+ 39.667370383200002,
+ 0.0
+ ],
+ [
+ 118.85202042,
+ 39.652417251300001,
+ 0.0
+ ],
+ [
+ 118.87949733,
+ 39.590468686400001,
+ 0.0
+ ],
+ [
+ 118.977772098,
+ 39.623817487700002,
+ 0.0
+ ],
+ [
+ 119.00887210499999,
+ 39.604503017799999,
+ 0.0
+ ],
+ [
+ 119.029430249,
+ 39.599543139600001,
+ 0.0
+ ],
+ [
+ 119.050952897,
+ 39.598848038,
+ 0.0
+ ],
+ [
+ 119.102023477,
+ 39.609143720200002,
+ 0.0
+ ],
+ [
+ 119.133174418,
+ 39.622267744600002,
+ 0.0
+ ],
+ [
+ 119.147431579,
+ 39.634714565199999,
+ 0.0
+ ],
+ [
+ 119.15702473,
+ 39.649578331800001,
+ 0.0
+ ],
+ [
+ 118.962025281,
+ 39.667370383200002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33200,
+ "name": "北戴河",
+ "country": "CN",
+ "city": "秦皇岛",
+ "height": 0,
+ "level": 2,
+ "lat": "39.6808470812308",
+ "lng": "119.114501660553",
+ "radius": 13135,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.267930998,
+ 39.677534390600002,
+ 0.0
+ ],
+ [
+ 119.24384050099999,
+ 39.744530469099999,
+ 0.0
+ ],
+ [
+ 119.145541873,
+ 39.7061880304,
+ 0.0
+ ],
+ [
+ 119.11438875,
+ 39.727245683900001,
+ 0.0
+ ],
+ [
+ 119.094014576,
+ 39.732721253199998,
+ 0.0
+ ],
+ [
+ 119.051287198,
+ 39.730850683500002,
+ 0.0
+ ],
+ [
+ 118.990659295,
+ 39.710759610399997,
+ 0.0
+ ],
+ [
+ 118.976243495,
+ 39.6984106715,
+ 0.0
+ ],
+ [
+ 118.962025281,
+ 39.667370383200002,
+ 0.0
+ ],
+ [
+ 119.15702473,
+ 39.649578331800001,
+ 0.0
+ ],
+ [
+ 119.161297749,
+ 39.665847308499998,
+ 0.0
+ ],
+ [
+ 119.267930998,
+ 39.677534390600002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33200,
+ "name": "北戴河",
+ "country": "CN",
+ "city": "秦皇岛",
+ "height": 120,
+ "level": 2,
+ "lat": "39.6662139746244",
+ "lng": "119.06270124663",
+ "radius": 23501,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.266129942,
+ 39.808341904599999,
+ 120.0
+ ],
+ [
+ 119.33445258899999,
+ 39.6363255212,
+ 120.0
+ ],
+ [
+ 118.85913451099999,
+ 39.524558492200001,
+ 120.0
+ ],
+ [
+ 118.79092229299999,
+ 39.696574875700001,
+ 120.0
+ ],
+ [
+ 119.266129942,
+ 39.808341904599999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001302,
+ "name": "秦皇岛山海关机场",
+ "country": "CN",
+ "city": "Qinhuangdao",
+ "height": 500,
+ "level": 2,
+ "lat": "39.968451",
+ "lng": "119.730001",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.730001,
+ 40.418745850005195,
+ 500.0
+ ],
+ [
+ 119.83229208569675,
+ 40.411860149250657,
+ 500.0
+ ],
+ [
+ 119.931414479190494,
+ 40.391416352029381,
+ 500.0
+ ],
+ [
+ 120.024303286755227,
+ 40.358047382118087,
+ 500.0
+ ],
+ [
+ 120.108097094004577,
+ 40.312785086712559,
+ 500.0
+ ],
+ [
+ 120.180229668796812,
+ 40.257026655540436,
+ 500.0
+ ],
+ [
+ 120.238510312020026,
+ 40.192489461081756,
+ 500.0
+ ],
+ [
+ 120.281190145205557,
+ 40.121156035741933,
+ 500.0
+ ],
+ [
+ 120.307012396765245,
+ 40.045211212675021,
+ 500.0
+ ],
+ [
+ 120.315245559074441,
+ 39.966973660179796,
+ 500.0
+ ],
+ [
+ 120.305699069503305,
+ 39.888824135560775,
+ 500.0
+ ],
+ [
+ 120.278721865713649,
+ 39.813132781636021,
+ 500.0
+ ],
+ [
+ 120.235184742787823,
+ 39.742187702116951,
+ 500.0
+ ],
+ [
+ 120.176447879947588,
+ 39.678126898486063,
+ 500.0
+ ],
+ [
+ 120.104315208255215,
+ 39.622875448976146,
+ 500.0
+ ],
+ [
+ 120.020977472163267,
+ 39.578089576597726,
+ 500.0
+ ],
+ [
+ 119.928945920685777,
+ 39.545109001839371,
+ 500.0
+ ],
+ [
+ 119.830978576322124,
+ 39.524918717142263,
+ 500.0
+ ],
+ [
+ 119.730001,
+ 39.518121061396855,
+ 500.0
+ ],
+ [
+ 119.629023423677879,
+ 39.524918717142263,
+ 500.0
+ ],
+ [
+ 119.531056079314226,
+ 39.545109001839371,
+ 500.0
+ ],
+ [
+ 119.439024527836736,
+ 39.578089576597726,
+ 500.0
+ ],
+ [
+ 119.355686791744787,
+ 39.622875448976146,
+ 500.0
+ ],
+ [
+ 119.283554120052415,
+ 39.678126898486063,
+ 500.0
+ ],
+ [
+ 119.22481725721218,
+ 39.742187702116951,
+ 500.0
+ ],
+ [
+ 119.181280134286354,
+ 39.813132781636021,
+ 500.0
+ ],
+ [
+ 119.154302930496698,
+ 39.888824135560775,
+ 500.0
+ ],
+ [
+ 119.144756440925562,
+ 39.966973660179796,
+ 500.0
+ ],
+ [
+ 119.152989603234758,
+ 40.045211212675021,
+ 500.0
+ ],
+ [
+ 119.178811854794446,
+ 40.121156035741933,
+ 500.0
+ ],
+ [
+ 119.221491687979977,
+ 40.192489461081756,
+ 500.0
+ ],
+ [
+ 119.279772331203191,
+ 40.257026655540436,
+ 500.0
+ ],
+ [
+ 119.351904905995426,
+ 40.312785086712559,
+ 500.0
+ ],
+ [
+ 119.435698713244776,
+ 40.358047382118087,
+ 500.0
+ ],
+ [
+ 119.528587520809509,
+ 40.391416352029381,
+ 500.0
+ ],
+ [
+ 119.627709914303253,
+ 40.411860149250657,
+ 500.0
+ ],
+ [
+ 119.730001,
+ 40.418745850005195,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8278,
+ "name": "秦皇岛山海关机场",
+ "country": "CN",
+ "city": "Qinhuangdao",
+ "height": 0,
+ "level": 2,
+ "lat": "39.9447897781268",
+ "lng": "119.682176143093",
+ "radius": 13733,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.629775897,
+ 39.945346095700003,
+ 0.0
+ ],
+ [
+ 119.527524404,
+ 39.910311726700002,
+ 0.0
+ ],
+ [
+ 119.578078381,
+ 39.850579374200002,
+ 0.0
+ ],
+ [
+ 119.661400056,
+ 39.908016331600003,
+ 0.0
+ ],
+ [
+ 119.67943834899999,
+ 39.898847932300001,
+ 0.0
+ ],
+ [
+ 119.721542333,
+ 39.892542032500003,
+ 0.0
+ ],
+ [
+ 119.742746972,
+ 39.8958323783,
+ 0.0
+ ],
+ [
+ 119.795475716,
+ 39.919794246499997,
+ 0.0
+ ],
+ [
+ 119.824758762,
+ 39.943809835499998,
+ 0.0
+ ],
+ [
+ 119.832378277,
+ 39.959346372500001,
+ 0.0
+ ],
+ [
+ 119.83095876,
+ 39.992240869200003,
+ 0.0
+ ],
+ [
+ 119.629775897,
+ 39.945346095700003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8278,
+ "name": "秦皇岛山海关机场",
+ "country": "CN",
+ "city": "Qinhuangdao",
+ "height": 0,
+ "level": 2,
+ "lat": "39.9927017153788",
+ "lng": "119.778632381055",
+ "radius": 13734,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.933465341,
+ 40.027247038900001,
+ 0.0
+ ],
+ [
+ 119.882861199,
+ 40.086987127699999,
+ 0.0
+ ],
+ [
+ 119.799269482,
+ 40.029682187699997,
+ 0.0
+ ],
+ [
+ 119.760618177,
+ 40.0441442264,
+ 0.0
+ ],
+ [
+ 119.738977292,
+ 40.045161554099998,
+ 0.0
+ ],
+ [
+ 119.698331637,
+ 40.034442992700001,
+ 0.0
+ ],
+ [
+ 119.665073761,
+ 40.017903583900001,
+ 0.0
+ ],
+ [
+ 119.635775593,
+ 39.993791955100001,
+ 0.0
+ ],
+ [
+ 119.628216923,
+ 39.978236875699999,
+ 0.0
+ ],
+ [
+ 119.629775897,
+ 39.945346095700003,
+ 0.0
+ ],
+ [
+ 119.83095876,
+ 39.992240869200003,
+ 0.0
+ ],
+ [
+ 119.933465341,
+ 40.027247038900001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8278,
+ "name": "秦皇岛山海关机场",
+ "country": "CN",
+ "city": "Qinhuangdao",
+ "height": 120,
+ "level": 2,
+ "lat": "39.9684969446057",
+ "lng": "119.730612247656",
+ "radius": 23885,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.880169951,
+ 40.150267055699999,
+ 120.0
+ ],
+ [
+ 120.008053519,
+ 39.999352562799999,
+ 120.0
+ ],
+ [
+ 119.580719371,
+ 39.787081775700003,
+ 120.0
+ ],
+ [
+ 119.45323230299999,
+ 39.937996269199999,
+ 120.0
+ ],
+ [
+ 119.880169951,
+ 40.150267055699999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008742,
+ "name": "Sondok Airport",
+ "country": "KP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "39.747333",
+ "lng": "127.474611",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.474611,
+ 40.19764509108785,
+ 500.0
+ ],
+ [
+ 127.576569159902874,
+ 40.190759478382915,
+ 500.0
+ ],
+ [
+ 127.675369414203274,
+ 40.170315910275114,
+ 500.0
+ ],
+ [
+ 127.767957244064334,
+ 40.136947210588907,
+ 500.0
+ ],
+ [
+ 127.851480810051129,
+ 40.091685076410194,
+ 500.0
+ ],
+ [
+ 127.92338231150093,
+ 40.035926519560277,
+ 500.0
+ ],
+ [
+ 127.981478055443858,
+ 39.97138873376332,
+ 500.0
+ ],
+ [
+ 128.02402453541842,
+ 39.900054099750243,
+ 500.0
+ ],
+ [
+ 128.049768587187685,
+ 39.824107351306701,
+ 500.0
+ ],
+ [
+ 128.057980492766262,
+ 39.745867128897331,
+ 500.0
+ ],
+ [
+ 128.048469679860972,
+ 39.667714244280731,
+ 500.0
+ ],
+ [
+ 128.021583357170101,
+ 39.592018977915288,
+ 500.0
+ ],
+ [
+ 127.978189000919301,
+ 39.521069645226319,
+ 500.0
+ ],
+ [
+ 127.91964204746003,
+ 39.457004515401216,
+ 500.0
+ ],
+ [
+ 127.847740451041545,
+ 39.401748965386929,
+ 500.0
+ ],
+ [
+ 127.764667949070713,
+ 39.35695951886084,
+ 500.0
+ ],
+ [
+ 127.67292796250365,
+ 39.323976169036492,
+ 500.0
+ ],
+ [
+ 127.575270074093453,
+ 39.303784125690207,
+ 500.0
+ ],
+ [
+ 127.474611,
+ 39.296985867635044,
+ 500.0
+ ],
+ [
+ 127.373951925906539,
+ 39.303784125690207,
+ 500.0
+ ],
+ [
+ 127.276294037496342,
+ 39.323976169036492,
+ 500.0
+ ],
+ [
+ 127.184554050929279,
+ 39.35695951886084,
+ 500.0
+ ],
+ [
+ 127.101481548958446,
+ 39.401748965386929,
+ 500.0
+ ],
+ [
+ 127.029579952539962,
+ 39.457004515401216,
+ 500.0
+ ],
+ [
+ 126.971032999080691,
+ 39.521069645226319,
+ 500.0
+ ],
+ [
+ 126.927638642829891,
+ 39.592018977915288,
+ 500.0
+ ],
+ [
+ 126.900752320139034,
+ 39.667714244280731,
+ 500.0
+ ],
+ [
+ 126.891241507233715,
+ 39.745867128897331,
+ 500.0
+ ],
+ [
+ 126.899453412812292,
+ 39.824107351306701,
+ 500.0
+ ],
+ [
+ 126.925197464581586,
+ 39.900054099750243,
+ 500.0
+ ],
+ [
+ 126.967743944556133,
+ 39.97138873376332,
+ 500.0
+ ],
+ [
+ 127.025839688499062,
+ 40.035926519560277,
+ 500.0
+ ],
+ [
+ 127.097741189948863,
+ 40.091685076410194,
+ 500.0
+ ],
+ [
+ 127.181264755935658,
+ 40.136947210588907,
+ 500.0
+ ],
+ [
+ 127.273852585796718,
+ 40.170315910275114,
+ 500.0
+ ],
+ [
+ 127.372652840097118,
+ 40.190759478382915,
+ 500.0
+ ],
+ [
+ 127.474611,
+ 40.19764509108785,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268731,
+ "name": "Sondok Airport",
+ "country": "KP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "39.7472637238326",
+ "lng": "127.47409536471",
+ "radius": 4293,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.460628914,
+ 39.710066232599999,
+ 0.0
+ ],
+ [
+ 127.473644465,
+ 39.785874550800003,
+ 0.0
+ ],
+ [
+ 127.487567263,
+ 39.784461605600001,
+ 0.0
+ ],
+ [
+ 127.474536323,
+ 39.7086528297,
+ 0.0
+ ],
+ [
+ 127.460628914,
+ 39.710066232599999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268731,
+ "name": "Sondok Airport",
+ "country": "KP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "39.8023740144891",
+ "lng": "127.483563614905",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.473644465,
+ 39.785874550800003,
+ 60.0
+ ],
+ [
+ 127.472917874,
+ 39.818604936200003,
+ 60.0
+ ],
+ [
+ 127.499330942,
+ 39.815924403099999,
+ 60.0
+ ],
+ [
+ 127.487567263,
+ 39.784461605600001,
+ 60.0
+ ],
+ [
+ 127.473644465,
+ 39.785874550800003,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268731,
+ "name": "Sondok Airport",
+ "country": "KP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "39.6921528025498",
+ "lng": "127.464628570407",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.44888691,
+ 39.678602636400001,
+ 60.0
+ ],
+ [
+ 127.460628914,
+ 39.710066232599999,
+ 60.0
+ ],
+ [
+ 127.474536323,
+ 39.7086528297,
+ 60.0
+ ],
+ [
+ 127.475259591,
+ 39.675922416,
+ 60.0
+ ],
+ [
+ 127.44888691,
+ 39.678602636400001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268731,
+ "name": "Sondok Airport",
+ "country": "KP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "39.8570624129774",
+ "lng": "127.492974522384",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.472917874,
+ 39.818604936200003,
+ 150.0
+ ],
+ [
+ 127.4712198,
+ 39.894975817800002,
+ 150.0
+ ],
+ [
+ 127.526821465,
+ 39.8893329693,
+ 150.0
+ ],
+ [
+ 127.499330942,
+ 39.815924403099999,
+ 150.0
+ ],
+ [
+ 127.472917874,
+ 39.818604936200003,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268731,
+ "name": "Sondok Airport",
+ "country": "KP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "39.6374622097497",
+ "lng": "127.455249039524",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.421530449,
+ 39.605182988499998,
+ 150.0
+ ],
+ [
+ 127.44888691,
+ 39.678602636400001,
+ 150.0
+ ],
+ [
+ 127.475259591,
+ 39.675922416,
+ 150.0
+ ],
+ [
+ 127.476944555,
+ 39.599551433099997,
+ 150.0
+ ],
+ [
+ 127.421530449,
+ 39.605182988499998,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268732,
+ "name": "Sondok Airport",
+ "country": "KP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "39.7474180864384",
+ "lng": "127.472575294848",
+ "radius": 5237,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.425796684,
+ 39.740809201399998,
+ 0.0
+ ],
+ [
+ 127.429611571,
+ 39.763103079799997,
+ 0.0
+ ],
+ [
+ 127.436096994,
+ 39.7772064185,
+ 0.0
+ ],
+ [
+ 127.449488922,
+ 39.788061815200003,
+ 0.0
+ ],
+ [
+ 127.45808830199999,
+ 39.791652619300002,
+ 0.0
+ ],
+ [
+ 127.47722944,
+ 39.794381606599998,
+ 0.0
+ ],
+ [
+ 127.49615927399999,
+ 39.790889565299999,
+ 0.0
+ ],
+ [
+ 127.511600327,
+ 39.781781150599997,
+ 0.0
+ ],
+ [
+ 127.520881446,
+ 39.768633096599999,
+ 0.0
+ ],
+ [
+ 127.522660536,
+ 39.761238106299999,
+ 0.0
+ ],
+ [
+ 127.522397315,
+ 39.753701918700003,
+ 0.0
+ ],
+ [
+ 127.51624886,
+ 39.724058068,
+ 0.0
+ ],
+ [
+ 127.506064859,
+ 39.711314920100001,
+ 0.0
+ ],
+ [
+ 127.490027097,
+ 39.702857865299997,
+ 0.0
+ ],
+ [
+ 127.48065194,
+ 39.700729976799998,
+ 0.0
+ ],
+ [
+ 127.461217234,
+ 39.701135754,
+ 0.0
+ ],
+ [
+ 127.443674659,
+ 39.70758554,
+ 0.0
+ ],
+ [
+ 127.431054442,
+ 39.718965558400001,
+ 0.0
+ ],
+ [
+ 127.427317125,
+ 39.725914874200001,
+ 0.0
+ ],
+ [
+ 127.425539492,
+ 39.733309942200002,
+ 0.0
+ ],
+ [
+ 127.425796684,
+ 39.740809201399998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001332,
+ "name": "Zhangye Southeast Air Base Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "38.804285",
+ "lng": "100.672259",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.672259,
+ 39.254670347935708,
+ 500.0
+ ],
+ [
+ 100.772837974954072,
+ 39.247785089853181,
+ 500.0
+ ],
+ [
+ 100.870303719491957,
+ 39.227342439231933,
+ 500.0
+ ],
+ [
+ 100.961644686098012,
+ 39.193974802322558,
+ 500.0
+ ],
+ [
+ 101.04404869592635,
+ 39.148713249213472,
+ 500.0
+ ],
+ [
+ 101.114992875918844,
+ 39.092954048899543,
+ 500.0
+ ],
+ [
+ 101.17232256029331,
+ 39.028413649254666,
+ 500.0
+ ],
+ [
+ 101.214316503952347,
+ 38.957073799082345,
+ 500.0
+ ],
+ [
+ 101.2397364965083,
+ 38.881118819800527,
+ 500.0
+ ],
+ [
+ 101.247860245163253,
+ 38.802867239604836,
+ 500.0
+ ],
+ [
+ 101.238497148927152,
+ 38.724700103125627,
+ 500.0
+ ],
+ [
+ 101.211987263941424,
+ 38.648988272566761,
+ 500.0
+ ],
+ [
+ 101.169184324971752,
+ 38.578020955717264,
+ 500.0
+ ],
+ [
+ 101.111424124435004,
+ 38.513937548845796,
+ 500.0
+ ],
+ [
+ 101.040479857229656,
+ 38.45866468581881,
+ 500.0
+ ],
+ [
+ 100.958506229945726,
+ 38.413860155056895,
+ 500.0
+ ],
+ [
+ 100.867974228361604,
+ 38.380865096780013,
+ 500.0
+ ],
+ [
+ 100.771598463466347,
+ 38.360665634726352,
+ 500.0
+ ],
+ [
+ 100.672259,
+ 38.353864836096179,
+ 500.0
+ ],
+ [
+ 100.572919536533647,
+ 38.360665634726352,
+ 500.0
+ ],
+ [
+ 100.47654377163839,
+ 38.380865096780013,
+ 500.0
+ ],
+ [
+ 100.386011770054267,
+ 38.413860155056895,
+ 500.0
+ ],
+ [
+ 100.304038142770338,
+ 38.45866468581881,
+ 500.0
+ ],
+ [
+ 100.23309387556499,
+ 38.513937548845796,
+ 500.0
+ ],
+ [
+ 100.175333675028241,
+ 38.578020955717264,
+ 500.0
+ ],
+ [
+ 100.13253073605857,
+ 38.648988272566761,
+ 500.0
+ ],
+ [
+ 100.106020851072842,
+ 38.724700103125627,
+ 500.0
+ ],
+ [
+ 100.096657754836741,
+ 38.802867239604836,
+ 500.0
+ ],
+ [
+ 100.104781503491694,
+ 38.881118819800527,
+ 500.0
+ ],
+ [
+ 100.130201496047647,
+ 38.957073799082345,
+ 500.0
+ ],
+ [
+ 100.172195439706684,
+ 39.028413649254666,
+ 500.0
+ ],
+ [
+ 100.22952512408115,
+ 39.092954048899543,
+ 500.0
+ ],
+ [
+ 100.300469304073644,
+ 39.148713249213472,
+ 500.0
+ ],
+ [
+ 100.382873313901982,
+ 39.193974802322558,
+ 500.0
+ ],
+ [
+ 100.474214280508036,
+ 39.227342439231933,
+ 500.0
+ ],
+ [
+ 100.571680025045922,
+ 39.247785089853181,
+ 500.0
+ ],
+ [
+ 100.672259,
+ 39.254670347935708,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9338,
+ "name": "Zhangye Southeast Air Base Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "38.8269164243631",
+ "lng": "100.609685967329",
+ "radius": 13280,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.58460733299999,
+ 38.857862635499998,
+ 0.0
+ ],
+ [
+ 100.491334206,
+ 38.902898846799999,
+ 0.0
+ ],
+ [
+ 100.456981102,
+ 38.837643549399999,
+ 0.0
+ ],
+ [
+ 100.563639653,
+ 38.8159871362,
+ 0.0
+ ],
+ [
+ 100.569989186,
+ 38.786539645700003,
+ 0.0
+ ],
+ [
+ 100.580832138,
+ 38.772254958600001,
+ 0.0
+ ],
+ [
+ 100.596043331,
+ 38.760643056600003,
+ 0.0
+ ],
+ [
+ 100.642863886,
+ 38.742511924299997,
+ 0.0
+ ],
+ [
+ 100.68168258599999,
+ 38.737833891500003,
+ 0.0
+ ],
+ [
+ 100.70244672,
+ 38.7414659704,
+ 0.0
+ ],
+ [
+ 100.736964931,
+ 38.760401441900001,
+ 0.0
+ ],
+ [
+ 100.58460733299999,
+ 38.857862635499998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9338,
+ "name": "Zhangye Southeast Air Base Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "38.7904903864433",
+ "lng": "100.712020487513",
+ "radius": 13339,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.83372517399999,
+ 38.717111966200001,
+ 0.0
+ ],
+ [
+ 100.864734289,
+ 38.7756263514,
+ 0.0
+ ],
+ [
+ 100.761393072,
+ 38.797304177699999,
+ 0.0
+ ],
+ [
+ 100.755097042,
+ 38.826735171700001,
+ 0.0
+ ],
+ [
+ 100.744269858,
+ 38.841030933600003,
+ 0.0
+ ],
+ [
+ 100.729056807,
+ 38.852655006900001,
+ 0.0
+ ],
+ [
+ 100.678772311,
+ 38.874165187400003,
+ 0.0
+ ],
+ [
+ 100.640663698,
+ 38.8793865612,
+ 0.0
+ ],
+ [
+ 100.619751475,
+ 38.8761513217,
+ 0.0
+ ],
+ [
+ 100.58460733299999,
+ 38.857862635499998,
+ 0.0
+ ],
+ [
+ 100.736964931,
+ 38.760401441900001,
+ 0.0
+ ],
+ [
+ 100.83372517399999,
+ 38.717111966200001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9338,
+ "name": "Zhangye Southeast Air Base Airport",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "38.8071173173068",
+ "lng": "100.66138925948",
+ "radius": 23669,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.934444157,
+ 38.801600263799997,
+ 120.0
+ ],
+ [
+ 100.831469404,
+ 38.640676269799997,
+ 120.0
+ ],
+ [
+ 100.388325861,
+ 38.813023099699997,
+ 120.0
+ ],
+ [
+ 100.491550028,
+ 38.9739470934,
+ 120.0
+ ],
+ [
+ 100.934444157,
+ 38.801600263799997,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045016,
+ "name": "阿拉善右旗巴丹吉林机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "39.2554583974489",
+ "lng": "101.507709813862",
+ "radius": 13227,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.498642884,
+ 39.290044285299999,
+ 0.0
+ ],
+ [
+ 101.429216711,
+ 39.357747509200003,
+ 0.0
+ ],
+ [
+ 101.370830916,
+ 39.309557296,
+ 0.0
+ ],
+ [
+ 101.462707916,
+ 39.260362584500001,
+ 0.0
+ ],
+ [
+ 101.454411819,
+ 39.243376713400004,
+ 0.0
+ ],
+ [
+ 101.452542798,
+ 39.226841725900002,
+ 0.0
+ ],
+ [
+ 101.456261556,
+ 39.210495441600003,
+ 0.0
+ ],
+ [
+ 101.479072121,
+ 39.1827334611,
+ 0.0
+ ],
+ [
+ 101.518247096,
+ 39.157568568099997,
+ 0.0
+ ],
+ [
+ 101.559706481,
+ 39.150523978800003,
+ 0.0
+ ],
+ [
+ 101.600160256,
+ 39.160483882800001,
+ 0.0
+ ],
+ [
+ 101.498642884,
+ 39.290044285299999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045016,
+ "name": "阿拉善右旗巴丹吉林机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "39.194954902818",
+ "lng": "101.590958665026",
+ "radius": 13228,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.669393592,
+ 39.092713682599999,
+ 0.0
+ ],
+ [
+ 101.72765021799999,
+ 39.140893370599997,
+ 0.0
+ ],
+ [
+ 101.63611328,
+ 39.190198662699999,
+ 0.0
+ ],
+ [
+ 101.644404075,
+ 39.207060786900001,
+ 0.0
+ ],
+ [
+ 101.646347152,
+ 39.223590613600003,
+ 0.0
+ ],
+ [
+ 101.642701069,
+ 39.239946812600003,
+ 0.0
+ ],
+ [
+ 101.619986153,
+ 39.267764934100001,
+ 0.0
+ ],
+ [
+ 101.580707993,
+ 39.293006956100001,
+ 0.0
+ ],
+ [
+ 101.539161644,
+ 39.300041940200003,
+ 0.0
+ ],
+ [
+ 101.498642884,
+ 39.290044285299999,
+ 0.0
+ ],
+ [
+ 101.600160256,
+ 39.160483882800001,
+ 0.0
+ ],
+ [
+ 101.669393592,
+ 39.092713682599999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045016,
+ "name": "阿拉善右旗巴丹吉林机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "39.2250325892407",
+ "lng": "101.549143086059",
+ "radius": 23434,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.80794591,
+ 39.160337107,
+ 120.0
+ ],
+ [
+ 101.649395227,
+ 39.029152361400001,
+ 120.0
+ ],
+ [
+ 101.290191513,
+ 39.289944469399998,
+ 120.0
+ ],
+ [
+ 101.449332406,
+ 39.421129214099999,
+ 120.0
+ ],
+ [
+ 101.80794591,
+ 39.160337107,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045017,
+ "name": "阿拉善右旗巴丹吉林机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "39.223678",
+ "lng": "101.543942",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.543942,
+ 39.674030826650593,
+ 500.0
+ ],
+ [
+ 101.645126295571941,
+ 39.667145414921642,
+ 500.0
+ ],
+ [
+ 101.743177754735981,
+ 39.646702367862488,
+ 500.0
+ ],
+ [
+ 101.835065971481058,
+ 39.613334275717193,
+ 500.0
+ ],
+ [
+ 101.917961360942911,
+ 39.568072484821016,
+ 500.0
+ ],
+ [
+ 101.989325720577028,
+ 39.512313591394452,
+ 500.0
+ ],
+ [
+ 102.046991643988491,
+ 39.447774371766023,
+ 500.0
+ ],
+ [
+ 102.089228114251398,
+ 39.376436852842282,
+ 500.0
+ ],
+ [
+ 102.114790355872614,
+ 39.300485537196018,
+ 500.0
+ ],
+ [
+ 102.122952814992928,
+ 39.222239001700622,
+ 500.0
+ ],
+ [
+ 102.113524901069638,
+ 39.144078187317334,
+ 500.0
+ ],
+ [
+ 102.086849807618194,
+ 39.068373698592815,
+ 500.0
+ ],
+ [
+ 102.043787299125427,
+ 38.997414348563218,
+ 500.0
+ ],
+ [
+ 101.985681788943339,
+ 38.933339035162774,
+ 500.0
+ ],
+ [
+ 101.914317338740688,
+ 38.878073836655567,
+ 500.0
+ ],
+ [
+ 101.831861397290396,
+ 38.833275982477801,
+ 500.0
+ ],
+ [
+ 101.740799187321073,
+ 38.800286105940707,
+ 500.0
+ ],
+ [
+ 101.64386067055581,
+ 38.780089926882937,
+ 500.0
+ ],
+ [
+ 101.543942,
+ 38.773290252489716,
+ 500.0
+ ],
+ [
+ 101.444023329444192,
+ 38.780089926882937,
+ 500.0
+ ],
+ [
+ 101.347084812678929,
+ 38.800286105940707,
+ 500.0
+ ],
+ [
+ 101.256022602709606,
+ 38.833275982477801,
+ 500.0
+ ],
+ [
+ 101.173566661259315,
+ 38.878073836655567,
+ 500.0
+ ],
+ [
+ 101.102202211056664,
+ 38.933339035162774,
+ 500.0
+ ],
+ [
+ 101.044096700874576,
+ 38.997414348563218,
+ 500.0
+ ],
+ [
+ 101.001034192381809,
+ 39.068373698592815,
+ 500.0
+ ],
+ [
+ 100.974359098930364,
+ 39.144078187317334,
+ 500.0
+ ],
+ [
+ 100.964931185007075,
+ 39.222239001700622,
+ 500.0
+ ],
+ [
+ 100.973093644127388,
+ 39.300485537196018,
+ 500.0
+ ],
+ [
+ 100.998655885748605,
+ 39.376436852842282,
+ 500.0
+ ],
+ [
+ 101.040892356011511,
+ 39.447774371766023,
+ 500.0
+ ],
+ [
+ 101.098558279422974,
+ 39.512313591394452,
+ 500.0
+ ],
+ [
+ 101.169922639057091,
+ 39.568072484821016,
+ 500.0
+ ],
+ [
+ 101.252818028518945,
+ 39.613334275717193,
+ 500.0
+ ],
+ [
+ 101.344706245264021,
+ 39.646702367862488,
+ 500.0
+ ],
+ [
+ 101.442757704428061,
+ 39.667145414921642,
+ 500.0
+ ],
+ [
+ 101.543942,
+ 39.674030826650593,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2647,
+ "name": "Jinchuan Airport",
+ "country": "CN",
+ "city": "Jinchang",
+ "height": 0,
+ "level": 2,
+ "lat": "38.5707638763701",
+ "lng": "102.301274433763",
+ "radius": 13381,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.288361917,
+ 38.6062424343,
+ 0.0
+ ],
+ [
+ 102.213375523,
+ 38.669591952600001,
+ 0.0
+ ],
+ [
+ 102.16012779899999,
+ 38.6146266079,
+ 0.0
+ ],
+ [
+ 102.25844757599999,
+ 38.572998477,
+ 0.0
+ ],
+ [
+ 102.253365865,
+ 38.543872182900003,
+ 0.0
+ ],
+ [
+ 102.25817414399999,
+ 38.527705691,
+ 0.0
+ ],
+ [
+ 102.268164072,
+ 38.5130628804,
+ 0.0
+ ],
+ [
+ 102.282652791,
+ 38.500940427499998,
+ 0.0
+ ],
+ [
+ 102.346917151,
+ 38.470770011900001,
+ 0.0
+ ],
+ [
+ 102.388931785,
+ 38.471870247600002,
+ 0.0
+ ],
+ [
+ 102.288361917,
+ 38.6062424343,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2647,
+ "name": "Jinchuan Airport",
+ "country": "CN",
+ "city": "Jinchang",
+ "height": 0,
+ "level": 2,
+ "lat": "38.5169590281786",
+ "lng": "102.392907874279",
+ "radius": 13460,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.483289197,
+ 38.418741424700002,
+ 0.0
+ ],
+ [
+ 102.536535693,
+ 38.472040357899999,
+ 0.0
+ ],
+ [
+ 102.438217335,
+ 38.512002747399997,
+ 0.0
+ ],
+ [
+ 102.443319057,
+ 38.541054408500003,
+ 0.0
+ ],
+ [
+ 102.438541195,
+ 38.557226577599998,
+ 0.0
+ ],
+ [
+ 102.42857049,
+ 38.571879955299998,
+ 0.0
+ ],
+ [
+ 102.414084346,
+ 38.584014732200004,
+ 0.0
+ ],
+ [
+ 102.349801063,
+ 38.6141966064,
+ 0.0
+ ],
+ [
+ 102.3286598,
+ 38.615817818700002,
+ 0.0
+ ],
+ [
+ 102.288361917,
+ 38.6062424343,
+ 0.0
+ ],
+ [
+ 102.388931785,
+ 38.471870247600002,
+ 0.0
+ ],
+ [
+ 102.40824026,
+ 38.478726161,
+ 0.0
+ ],
+ [
+ 102.483289197,
+ 38.418741424700002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2647,
+ "name": "Jinchuan Airport",
+ "country": "CN",
+ "city": "Jinchang",
+ "height": 120,
+ "level": 2,
+ "lat": "38.5421912372725",
+ "lng": "102.348005811318",
+ "radius": 23802,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.617027515,
+ 38.503140252599998,
+ 120.0
+ ],
+ [
+ 102.48403755,
+ 38.356519486899998,
+ 120.0
+ ],
+ [
+ 102.078909705,
+ 38.581545595400002,
+ 120.0
+ ],
+ [
+ 102.212316421,
+ 38.728166360499998,
+ 120.0
+ ],
+ [
+ 102.617027515,
+ 38.503140252599998,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001422,
+ "name": "Jinchuan Airport",
+ "country": "CN",
+ "city": "Jinchang",
+ "height": 500,
+ "level": 2,
+ "lat": "38.542078",
+ "lng": "102.348383",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.348383,
+ 38.992483630203743,
+ 500.0
+ ],
+ [
+ 102.448589916634845,
+ 38.98559846503116,
+ 500.0
+ ],
+ [
+ 102.545695652289609,
+ 38.965156053284446,
+ 500.0
+ ],
+ [
+ 102.636700249676224,
+ 38.931788687530165,
+ 500.0
+ ],
+ [
+ 102.718802227849807,
+ 38.886527267190473,
+ 500.0
+ ],
+ [
+ 102.789488135873924,
+ 38.830767859140671,
+ 500.0
+ ],
+ [
+ 102.846611139427679,
+ 38.766226708455392,
+ 500.0
+ ],
+ [
+ 102.888456000637873,
+ 38.694885392368839,
+ 500.0
+ ],
+ [
+ 102.91378854571316,
+ 38.618928120789619,
+ 500.0
+ ],
+ [
+ 102.921888487814869,
+ 38.540673392448483,
+ 500.0
+ ],
+ [
+ 102.912565221066487,
+ 38.462502316850795,
+ 500.0
+ ],
+ [
+ 102.886156874554416,
+ 38.386785916426966,
+ 500.0
+ ],
+ [
+ 102.843513477855126,
+ 38.315813644079135,
+ 500.0
+ ],
+ [
+ 102.785965525058302,
+ 38.251725205313711,
+ 500.0
+ ],
+ [
+ 102.715279531846846,
+ 38.196447578665229,
+ 500.0
+ ],
+ [
+ 102.633602372401796,
+ 38.151638899261997,
+ 500.0
+ ],
+ [
+ 102.54339628091904,
+ 38.11864062170249,
+ 500.0
+ ],
+ [
+ 102.447366431888383,
+ 38.09843912020515,
+ 500.0
+ ],
+ [
+ 102.348383,
+ 38.091637623215441,
+ 500.0
+ ],
+ [
+ 102.249399568111613,
+ 38.09843912020515,
+ 500.0
+ ],
+ [
+ 102.153369719080956,
+ 38.11864062170249,
+ 500.0
+ ],
+ [
+ 102.0631636275982,
+ 38.151638899261997,
+ 500.0
+ ],
+ [
+ 101.98148646815315,
+ 38.196447578665229,
+ 500.0
+ ],
+ [
+ 101.910800474941695,
+ 38.251725205313711,
+ 500.0
+ ],
+ [
+ 101.853252522144871,
+ 38.315813644079135,
+ 500.0
+ ],
+ [
+ 101.810609125445581,
+ 38.386785916426966,
+ 500.0
+ ],
+ [
+ 101.78420077893351,
+ 38.462502316850795,
+ 500.0
+ ],
+ [
+ 101.774877512185128,
+ 38.540673392448483,
+ 500.0
+ ],
+ [
+ 101.782977454286836,
+ 38.618928120789619,
+ 500.0
+ ],
+ [
+ 101.808309999362123,
+ 38.694885392368839,
+ 500.0
+ ],
+ [
+ 101.850154860572317,
+ 38.766226708455392,
+ 500.0
+ ],
+ [
+ 101.907277864126073,
+ 38.830767859140671,
+ 500.0
+ ],
+ [
+ 101.97796377215019,
+ 38.886527267190473,
+ 500.0
+ ],
+ [
+ 102.060065750323773,
+ 38.931788687530165,
+ 500.0
+ ],
+ [
+ 102.151070347710387,
+ 38.965156053284446,
+ 500.0
+ ],
+ [
+ 102.248176083365152,
+ 38.98559846503116,
+ 500.0
+ ],
+ [
+ 102.348383,
+ 38.992483630203743,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045015,
+ "name": "阿拉善左旗巴彦浩特机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "38.748897",
+ "lng": "105.588407",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.588407,
+ 39.199286635620446,
+ 500.0
+ ],
+ [
+ 105.688906976095893,
+ 39.192401397362097,
+ 500.0
+ ],
+ [
+ 105.786296280304768,
+ 39.171958797764603,
+ 500.0
+ ],
+ [
+ 105.877565826122009,
+ 39.138591218978732,
+ 500.0
+ ],
+ [
+ 105.959905706218876,
+ 39.093329694912271,
+ 500.0
+ ],
+ [
+ 106.030795048134777,
+ 39.037570451708866,
+ 500.0
+ ],
+ [
+ 106.088080848905449,
+ 38.973029894242089,
+ 500.0
+ ],
+ [
+ 106.130043138880723,
+ 38.901689734927906,
+ 500.0
+ ],
+ [
+ 106.155444564675292,
+ 38.825734271518854,
+ 500.0
+ ],
+ [
+ 106.163563259319048,
+ 38.747482025925606,
+ 500.0
+ ],
+ [
+ 106.154208620690071,
+ 38.669314056479323,
+ 500.0
+ ],
+ [
+ 106.127720295678841,
+ 38.59360125928508,
+ 500.0
+ ],
+ [
+ 106.084951232272658,
+ 38.522632894016795,
+ 500.0
+ ],
+ [
+ 106.027236097868467,
+ 38.458548422413799,
+ 500.0
+ ],
+ [
+ 105.95634666917212,
+ 38.403274551321175,
+ 500.0
+ ],
+ [
+ 105.874435989753408,
+ 38.358469142573604,
+ 500.0
+ ],
+ [
+ 105.783973187228568,
+ 38.325473402961435,
+ 500.0
+ ],
+ [
+ 105.687670869016799,
+ 38.305273509263479,
+ 500.0
+ ],
+ [
+ 105.588407,
+ 38.29847256282482,
+ 500.0
+ ],
+ [
+ 105.489143130983209,
+ 38.305273509263479,
+ 500.0
+ ],
+ [
+ 105.392840812771439,
+ 38.325473402961435,
+ 500.0
+ ],
+ [
+ 105.302378010246599,
+ 38.358469142573604,
+ 500.0
+ ],
+ [
+ 105.220467330827887,
+ 38.403274551321175,
+ 500.0
+ ],
+ [
+ 105.14957790213154,
+ 38.458548422413799,
+ 500.0
+ ],
+ [
+ 105.091862767727349,
+ 38.522632894016795,
+ 500.0
+ ],
+ [
+ 105.049093704321166,
+ 38.59360125928508,
+ 500.0
+ ],
+ [
+ 105.022605379309937,
+ 38.669314056479323,
+ 500.0
+ ],
+ [
+ 105.013250740680959,
+ 38.747482025925606,
+ 500.0
+ ],
+ [
+ 105.021369435324715,
+ 38.825734271518854,
+ 500.0
+ ],
+ [
+ 105.046770861119285,
+ 38.901689734927906,
+ 500.0
+ ],
+ [
+ 105.088733151094559,
+ 38.973029894242089,
+ 500.0
+ ],
+ [
+ 105.14601895186523,
+ 39.037570451708866,
+ 500.0
+ ],
+ [
+ 105.216908293781131,
+ 39.093329694912271,
+ 500.0
+ ],
+ [
+ 105.299248173877999,
+ 39.138591218978732,
+ 500.0
+ ],
+ [
+ 105.390517719695239,
+ 39.171958797764603,
+ 500.0
+ ],
+ [
+ 105.487907023904114,
+ 39.192401397362097,
+ 500.0
+ ],
+ [
+ 105.588407,
+ 39.199286635620446,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045014,
+ "name": "阿拉善左旗巴彦浩特机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "38.7822176889382",
+ "lng": "105.547654509244",
+ "radius": 13228,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.544065789,
+ 38.817396091399999,
+ 0.0
+ ],
+ [
+ 105.48610988,
+ 38.891097219499997,
+ 0.0
+ ],
+ [
+ 105.42105307,
+ 38.848718234800003,
+ 0.0
+ ],
+ [
+ 105.504021847,
+ 38.791289813200002,
+ 0.0
+ ],
+ [
+ 105.49320746799999,
+ 38.775203764300002,
+ 0.0
+ ],
+ [
+ 105.488802686,
+ 38.758964723399998,
+ 0.0
+ ],
+ [
+ 105.48993862499999,
+ 38.742390142300003,
+ 0.0
+ ],
+ [
+ 105.508136723,
+ 38.712697047299997,
+ 0.0
+ ],
+ [
+ 105.54288158599999,
+ 38.684045382,
+ 0.0
+ ],
+ [
+ 105.582675127,
+ 38.673174612399997,
+ 0.0
+ ],
+ [
+ 105.62410195299999,
+ 38.679278603900002,
+ 0.0
+ ],
+ [
+ 105.544065789,
+ 38.817396091399999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045014,
+ "name": "阿拉善左旗巴彦浩特机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "38.7143682782592",
+ "lng": "105.620370366543",
+ "radius": 13229,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.681882165,
+ 38.605522885500001,
+ 0.0
+ ],
+ [
+ 105.746764268,
+ 38.647891665700001,
+ 0.0
+ ],
+ [
+ 105.66414131,
+ 38.705405761800002,
+ 0.0
+ ],
+ [
+ 105.67492386399999,
+ 38.721366307300002,
+ 0.0
+ ],
+ [
+ 105.679399682,
+ 38.737593140199998,
+ 0.0
+ ],
+ [
+ 105.678339519,
+ 38.7541707715,
+ 0.0
+ ],
+ [
+ 105.66025858499999,
+ 38.783911282200002,
+ 0.0
+ ],
+ [
+ 105.625440294,
+ 38.812652972400002,
+ 0.0
+ ],
+ [
+ 105.585570046,
+ 38.8235262217,
+ 0.0
+ ],
+ [
+ 105.544065789,
+ 38.817396091399999,
+ 0.0
+ ],
+ [
+ 105.62410195299999,
+ 38.679278603900002,
+ 0.0
+ ],
+ [
+ 105.681882165,
+ 38.605522885500001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045014,
+ "name": "阿拉善左旗巴彦浩特机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "38.7481595135733",
+ "lng": "105.583827665121",
+ "radius": 23435,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.828940305,
+ 38.659673805399997,
+ 120.0
+ ],
+ [
+ 105.652361742,
+ 38.544312105,
+ 120.0
+ ],
+ [
+ 105.338492952,
+ 38.836783501299998,
+ 120.0
+ ],
+ [
+ 105.515796377,
+ 38.9521452006,
+ 120.0
+ ],
+ [
+ 105.828940305,
+ 38.659673805399997,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7620,
+ "name": "Tianjin Binhai International Airport",
+ "country": "CN",
+ "city": "Tianjin",
+ "height": 0,
+ "level": 2,
+ "lat": "39.1262657343057",
+ "lng": "117.342892202016",
+ "radius": 18227,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.418069545860575,
+ 38.974897163335214,
+ 0.0
+ ],
+ [
+ 117.297451431903696,
+ 39.281735580245034,
+ 0.0
+ ],
+ [
+ 117.29582452699999,
+ 39.2860853241,
+ 0.0
+ ],
+ [
+ 117.215061557,
+ 39.2568678994,
+ 0.0
+ ],
+ [
+ 117.276745436,
+ 39.188598853099997,
+ 0.0
+ ],
+ [
+ 117.254443524,
+ 39.159507079500003,
+ 0.0
+ ],
+ [
+ 117.251545693,
+ 39.143061667700003,
+ 0.0
+ ],
+ [
+ 117.25423469499999,
+ 39.1265949999,
+ 0.0
+ ],
+ [
+ 117.262323575,
+ 39.111228880799999,
+ 0.0
+ ],
+ [
+ 117.30300687499999,
+ 39.060670036099999,
+ 0.0
+ ],
+ [
+ 117.320915998,
+ 39.051609229500002,
+ 0.0
+ ],
+ [
+ 117.36257178699999,
+ 39.0455525319,
+ 0.0
+ ],
+ [
+ 117.394175941,
+ 38.967249495799997,
+ 0.0
+ ],
+ [
+ 117.418069545860575,
+ 38.974897163335214,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7620,
+ "name": "Tianjin Binhai International Airport",
+ "country": "CN",
+ "city": "Tianjin",
+ "height": 0,
+ "level": 2,
+ "lat": "39.1283393227363",
+ "lng": "117.369300439728",
+ "radius": 18463,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.420940008,
+ 38.967208162699997,
+ 0.0
+ ],
+ [
+ 117.49660076,
+ 38.9998060729,
+ 0.0
+ ],
+ [
+ 117.434929083,
+ 39.068109166100001,
+ 0.0
+ ],
+ [
+ 117.456939244,
+ 39.093380348499998,
+ 0.0
+ ],
+ [
+ 117.4616381,
+ 39.109573091199998,
+ 0.0
+ ],
+ [
+ 117.45440949499999,
+ 39.142004328399999,
+ 0.0
+ ],
+ [
+ 117.434375027,
+ 39.173729096599999,
+ 0.0
+ ],
+ [
+ 117.412758443,
+ 39.194209274599999,
+ 0.0
+ ],
+ [
+ 117.394436084,
+ 39.202805013899997,
+ 0.0
+ ],
+ [
+ 117.352447537,
+ 39.207766615899999,
+ 0.0
+ ],
+ [
+ 117.317424066,
+ 39.289447594499997,
+ 0.0
+ ],
+ [
+ 117.297451431903696,
+ 39.281735580245034,
+ 0.0
+ ],
+ [
+ 117.418069545860575,
+ 38.974897163335214,
+ 0.0
+ ],
+ [
+ 117.420940008,
+ 38.967208162699997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7620,
+ "name": "Tianjin Binhai International Airport",
+ "country": "CN",
+ "city": "Tianjin",
+ "height": 120,
+ "level": 2,
+ "lat": "39.1253782893025",
+ "lng": "117.35558640845",
+ "radius": 24653,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.575747314,
+ 38.984212705899999,
+ 120.0
+ ],
+ [
+ 117.376041690876647,
+ 38.917650495490349,
+ 120.0
+ ],
+ [
+ 117.36097566,
+ 38.9114033647,
+ 120.0
+ ],
+ [
+ 117.123965326,
+ 39.255493340500003,
+ 120.0
+ ],
+ [
+ 117.164386066714201,
+ 39.272172127026053,
+ 120.0
+ ],
+ [
+ 117.162449247,
+ 39.275668112200002,
+ 120.0
+ ],
+ [
+ 117.215451195044679,
+ 39.29324310096915,
+ 120.0
+ ],
+ [
+ 117.329055819,
+ 39.340119710300002,
+ 120.0
+ ],
+ [
+ 117.33420034495829,
+ 39.332619294733163,
+ 120.0
+ ],
+ [
+ 117.376121018,
+ 39.346519828300003,
+ 120.0
+ ],
+ [
+ 117.575747314,
+ 38.984212705899999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001461,
+ "name": "Tianjin Binhai International Airport",
+ "country": "CN",
+ "city": "Tianjin",
+ "height": 500,
+ "level": 2,
+ "lat": "39.128408",
+ "lng": "117.354737",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.354737,
+ 39.578768222632974,
+ 500.0
+ ],
+ [
+ 117.455782673625535,
+ 39.571882846363849,
+ 500.0
+ ],
+ [
+ 117.553700000973194,
+ 39.551439890949283,
+ 500.0
+ ],
+ [
+ 117.645462894937367,
+ 39.51807190460039,
+ 500.0
+ ],
+ [
+ 117.728245756853966,
+ 39.472810170541074,
+ 500.0
+ ],
+ [
+ 117.79951389473878,
+ 39.417051210226418,
+ 500.0
+ ],
+ [
+ 117.857102819782881,
+ 39.352511724924618,
+ 500.0
+ ],
+ [
+ 117.899283752681995,
+ 39.281173677963388,
+ 500.0
+ ],
+ [
+ 117.924813421136903,
+ 39.205221530456114,
+ 500.0
+ ],
+ [
+ 117.932967017802312,
+ 39.126973848046994,
+ 500.0
+ ],
+ [
+ 117.923553949458395,
+ 39.04881159523427,
+ 500.0
+ ],
+ [
+ 117.896916690897513,
+ 38.973105435243255,
+ 500.0
+ ],
+ [
+ 117.853913625585534,
+ 38.902144271076246,
+ 500.0
+ ],
+ [
+ 117.795887192534764,
+ 38.83806711427453,
+ 500.0
+ ],
+ [
+ 117.724618964856489,
+ 38.782800169784004,
+ 500.0
+ ],
+ [
+ 117.642273473375042,
+ 38.738000794504138,
+ 500.0
+ ],
+ [
+ 117.551332680638779,
+ 38.705009737340177,
+ 500.0
+ ],
+ [
+ 117.454523033190554,
+ 38.684812810237197,
+ 500.0
+ ],
+ [
+ 117.354737,
+ 38.678012879675819,
+ 500.0
+ ],
+ [
+ 117.254950966809446,
+ 38.684812810237197,
+ 500.0
+ ],
+ [
+ 117.158141319361221,
+ 38.705009737340177,
+ 500.0
+ ],
+ [
+ 117.067200526624958,
+ 38.738000794504138,
+ 500.0
+ ],
+ [
+ 116.984855035143511,
+ 38.782800169784004,
+ 500.0
+ ],
+ [
+ 116.913586807465236,
+ 38.83806711427453,
+ 500.0
+ ],
+ [
+ 116.855560374414466,
+ 38.902144271076246,
+ 500.0
+ ],
+ [
+ 116.812557309102488,
+ 38.973105435243255,
+ 500.0
+ ],
+ [
+ 116.785920050541606,
+ 39.04881159523427,
+ 500.0
+ ],
+ [
+ 116.776506982197688,
+ 39.126973848046994,
+ 500.0
+ ],
+ [
+ 116.784660578863097,
+ 39.205221530456114,
+ 500.0
+ ],
+ [
+ 116.810190247318005,
+ 39.281173677963388,
+ 500.0
+ ],
+ [
+ 116.852371180217119,
+ 39.352511724924618,
+ 500.0
+ ],
+ [
+ 116.90996010526122,
+ 39.417051210226418,
+ 500.0
+ ],
+ [
+ 116.981228243146035,
+ 39.472810170541074,
+ 500.0
+ ],
+ [
+ 117.064011105062633,
+ 39.51807190460039,
+ 500.0
+ ],
+ [
+ 117.155773999026806,
+ 39.551439890949283,
+ 500.0
+ ],
+ [
+ 117.253691326374465,
+ 39.571882846363849,
+ 500.0
+ ],
+ [
+ 117.354737,
+ 39.578768222632974,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 614,
+ "name": "Zhoushuizi Airport",
+ "country": "CN",
+ "city": "Dalian",
+ "height": 0,
+ "level": 2,
+ "lat": "38.9627100885477",
+ "lng": "121.596637936015",
+ "radius": 13455,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.740812871,
+ 38.9172446595,
+ 0.0
+ ],
+ [
+ 121.74938832,
+ 38.985955369199999,
+ 0.0
+ ],
+ [
+ 121.639402202,
+ 38.977612581300001,
+ 0.0
+ ],
+ [
+ 121.6233088,
+ 39.004066740399999,
+ 0.0
+ ],
+ [
+ 121.607911915,
+ 39.015571741700001,
+ 0.0
+ ],
+ [
+ 121.58920302,
+ 39.023585496199999,
+ 0.0
+ ],
+ [
+ 121.528462684,
+ 39.032560357599998,
+ 0.0
+ ],
+ [
+ 121.48950678,
+ 39.027596868099998,
+ 0.0
+ ],
+ [
+ 121.471152684,
+ 39.019101016,
+ 0.0
+ ],
+ [
+ 121.445841496,
+ 38.992712235,
+ 0.0
+ ],
+ [
+ 121.63412380299999,
+ 38.938863336700003,
+ 0.0
+ ],
+ [
+ 121.740812871,
+ 38.9172446595,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 614,
+ "name": "Zhoushuizi Airport",
+ "country": "CN",
+ "city": "Dalian",
+ "height": 0,
+ "level": 2,
+ "lat": "38.9753562413314",
+ "lng": "121.484110849599",
+ "radius": 13591,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.445841496,
+ 38.992712235,
+ 0.0
+ ],
+ [
+ 121.335827394,
+ 39.016077023800001,
+ 0.0
+ ],
+ [
+ 121.330600539,
+ 38.949052500599997,
+ 0.0
+ ],
+ [
+ 121.440623313,
+ 38.95070394,
+ 0.0
+ ],
+ [
+ 121.455333147,
+ 38.927916031,
+ 0.0
+ ],
+ [
+ 121.470606902,
+ 38.916327413399998,
+ 0.0
+ ],
+ [
+ 121.489210902,
+ 38.908206522,
+ 0.0
+ ],
+ [
+ 121.551548951,
+ 38.899105356699998,
+ 0.0
+ ],
+ [
+ 121.590430725,
+ 38.904041197200002,
+ 0.0
+ ],
+ [
+ 121.608772065,
+ 38.912514764699999,
+ 0.0
+ ],
+ [
+ 121.63412380299999,
+ 38.938863336700003,
+ 0.0
+ ],
+ [
+ 121.445841496,
+ 38.992712235,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 614,
+ "name": "Zhoushuizi Airport",
+ "country": "CN",
+ "city": "Dalian",
+ "height": 120,
+ "level": 2,
+ "lat": "38.9653507161366",
+ "lng": "121.539475316197",
+ "radius": 23972,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.806433685,
+ 39.0239227629,
+ 120.0
+ ],
+ [
+ 121.770410375,
+ 38.846254539900002,
+ 120.0
+ ],
+ [
+ 121.272549662,
+ 38.9072962344,
+ 120.0
+ ],
+ [
+ 121.308604026,
+ 39.084964457399998,
+ 120.0
+ ],
+ [
+ 121.806433685,
+ 39.0239227629,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001393,
+ "name": "Zhoushuizi Airport",
+ "country": "CN",
+ "city": "Dalian",
+ "height": 500,
+ "level": 2,
+ "lat": "38.965356",
+ "lng": "121.54044",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.54044,
+ 39.415728869311856,
+ 500.0
+ ],
+ [
+ 121.641249953168241,
+ 39.408843552966303,
+ 500.0
+ ],
+ [
+ 121.73893919498947,
+ 39.388400752217265,
+ 500.0
+ ],
+ [
+ 121.830488982189109,
+ 39.355032943661811,
+ 500.0
+ ],
+ [
+ 121.913080494292913,
+ 39.309771303001703,
+ 500.0
+ ],
+ [
+ 121.984185008842474,
+ 39.254012224325265,
+ 500.0
+ ],
+ [
+ 122.041642998375593,
+ 39.189472281050776,
+ 500.0
+ ],
+ [
+ 122.083729488817227,
+ 39.118133328246735,
+ 500.0
+ ],
+ [
+ 122.109203764331454,
+ 39.042179756492111,
+ 500.0
+ ],
+ [
+ 122.117342287383707,
+ 38.963930112448104,
+ 500.0
+ ],
+ [
+ 122.107954460594243,
+ 38.88576540091394,
+ 500.0
+ ],
+ [
+ 122.08138153693865,
+ 38.810056385338918,
+ 500.0
+ ],
+ [
+ 122.038479551766457,
+ 38.739092122299027,
+ 500.0
+ ],
+ [
+ 121.980587586945362,
+ 38.675011817217936,
+ 500.0
+ ],
+ [
+ 121.909482983911332,
+ 38.619741891210921,
+ 500.0
+ ],
+ [
+ 121.827325311529393,
+ 38.574939918666246,
+ 500.0
+ ],
+ [
+ 121.736590988329979,
+ 38.541946845718201,
+ 500.0
+ ],
+ [
+ 121.6400004831346,
+ 38.521748641462672,
+ 500.0
+ ],
+ [
+ 121.54044,
+ 38.514948273548164,
+ 500.0
+ ],
+ [
+ 121.440879516865408,
+ 38.521748641462672,
+ 500.0
+ ],
+ [
+ 121.344289011670028,
+ 38.541946845718201,
+ 500.0
+ ],
+ [
+ 121.253554688470615,
+ 38.574939918666246,
+ 500.0
+ ],
+ [
+ 121.171397016088676,
+ 38.619741891210921,
+ 500.0
+ ],
+ [
+ 121.100292413054646,
+ 38.675011817217936,
+ 500.0
+ ],
+ [
+ 121.04240044823355,
+ 38.739092122299027,
+ 500.0
+ ],
+ [
+ 120.999498463061357,
+ 38.810056385338918,
+ 500.0
+ ],
+ [
+ 120.972925539405765,
+ 38.88576540091394,
+ 500.0
+ ],
+ [
+ 120.963537712616301,
+ 38.963930112448104,
+ 500.0
+ ],
+ [
+ 120.971676235668554,
+ 39.042179756492111,
+ 500.0
+ ],
+ [
+ 120.997150511182781,
+ 39.118133328246735,
+ 500.0
+ ],
+ [
+ 121.039237001624414,
+ 39.189472281050776,
+ 500.0
+ ],
+ [
+ 121.096694991157534,
+ 39.254012224325265,
+ 500.0
+ ],
+ [
+ 121.167799505707094,
+ 39.309771303001703,
+ 500.0
+ ],
+ [
+ 121.250391017810898,
+ 39.355032943661811,
+ 500.0
+ ],
+ [
+ 121.341940805010537,
+ 39.388400752217265,
+ 500.0
+ ],
+ [
+ 121.439630046831766,
+ 39.408843552966303,
+ 500.0
+ ],
+ [
+ 121.54044,
+ 39.415728869311856,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32783,
+ "name": "大长山岛",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "39.30827916641",
+ "lng": "122.647365933056",
+ "radius": 12673,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.64174803,
+ 39.422173799100001,
+ 0.0
+ ],
+ [
+ 122.557802573,
+ 39.3988034347,
+ 0.0
+ ],
+ [
+ 122.611073061,
+ 39.323128414800003,
+ 0.0
+ ],
+ [
+ 122.594659358,
+ 39.31134252,
+ 0.0
+ ],
+ [
+ 122.577162548,
+ 39.281344392599998,
+ 0.0
+ ],
+ [
+ 122.576493729,
+ 39.264754230699999,
+ 0.0
+ ],
+ [
+ 122.581392685,
+ 39.248595270099997,
+ 0.0
+ ],
+ [
+ 122.596244105,
+ 39.222940542,
+ 0.0
+ ],
+ [
+ 122.628617057,
+ 39.201631348600003,
+ 0.0
+ ],
+ [
+ 122.670392886,
+ 39.195705220699999,
+ 0.0
+ ],
+ [
+ 122.663202462,
+ 39.337653784700002,
+ 0.0
+ ],
+ [
+ 122.64174803,
+ 39.422173799100001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32783,
+ "name": "大长山岛",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "39.2250587764359",
+ "lng": "122.686089475857",
+ "radius": 12674,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.670392886,
+ 39.195705220699999,
+ 0.0
+ ],
+ [
+ 122.69176870299999,
+ 39.111163687800001,
+ 0.0
+ ],
+ [
+ 122.775424795,
+ 39.134527324099999,
+ 0.0
+ ],
+ [
+ 122.722446219,
+ 39.210229840300002,
+ 0.0
+ ],
+ [
+ 122.73875147699999,
+ 39.221901662199997,
+ 0.0
+ ],
+ [
+ 122.756374153,
+ 39.251850359099997,
+ 0.0
+ ],
+ [
+ 122.757125073,
+ 39.268438411799998,
+ 0.0
+ ],
+ [
+ 122.752303919,
+ 39.2846116403,
+ 0.0
+ ],
+ [
+ 122.737449187,
+ 39.310380146900002,
+ 0.0
+ ],
+ [
+ 122.705057075,
+ 39.331717643799998,
+ 0.0
+ ],
+ [
+ 122.663202462,
+ 39.337653784700002,
+ 0.0
+ ],
+ [
+ 122.670392886,
+ 39.195705220699999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32783,
+ "name": "大长山岛",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "39.2666277575698",
+ "lng": "122.666607807281",
+ "radius": 22906,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.475965148,
+ 39.410497944900001,
+ 120.0
+ ],
+ [
+ 122.69508327699999,
+ 39.471454025500002,
+ 120.0
+ ],
+ [
+ 122.856800573,
+ 39.122710819200002,
+ 120.0
+ ],
+ [
+ 122.638770074,
+ 39.061754737500003,
+ 120.0
+ ],
+ [
+ 122.475965148,
+ 39.410497944900001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001431,
+ "name": "大长山岛",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "39.266388888889",
+ "lng": "122.666944444445",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.666944444444994,
+ 39.716738398257007,
+ 500.0
+ ],
+ [
+ 122.768191101073356,
+ 39.709852970522604,
+ 500.0
+ ],
+ [
+ 122.866302901296379,
+ 39.689409882068915,
+ 500.0
+ ],
+ [
+ 122.958247496142022,
+ 39.656041742029707,
+ 500.0
+ ],
+ [
+ 123.041193507473054,
+ 39.610779925103166,
+ 500.0
+ ],
+ [
+ 123.112601153465562,
+ 39.555021061111702,
+ 500.0
+ ],
+ [
+ 123.170301715224511,
+ 39.490481960121016,
+ 500.0
+ ],
+ [
+ 123.212563169234514,
+ 39.419144677619201,
+ 500.0
+ ],
+ [
+ 123.238140063819714,
+ 39.343193734825491,
+ 500.0
+ ],
+ [
+ 123.246306509348358,
+ 39.264947713680847,
+ 500.0
+ ],
+ [
+ 123.236871916539002,
+ 39.186787544597244,
+ 500.0
+ ],
+ [
+ 123.210179802284188,
+ 39.111083805786564,
+ 500.0
+ ],
+ [
+ 123.16709055237888,
+ 39.040125269895547,
+ 500.0
+ ],
+ [
+ 123.108949468379336,
+ 38.976050783849082,
+ 500.0
+ ],
+ [
+ 123.037541731468323,
+ 38.920786369027674,
+ 500.0
+ ],
+ [
+ 122.955036103082634,
+ 38.87598919763095,
+ 500.0
+ ],
+ [
+ 122.863919272556615,
+ 38.842999851062359,
+ 500.0
+ ],
+ [
+ 122.766922782921725,
+ 38.822804007799512,
+ 500.0
+ ],
+ [
+ 122.666944444444994,
+ 38.816004448400406,
+ 500.0
+ ],
+ [
+ 122.566966105968262,
+ 38.822804007799512,
+ 500.0
+ ],
+ [
+ 122.469969616333373,
+ 38.842999851062359,
+ 500.0
+ ],
+ [
+ 122.378852785807354,
+ 38.87598919763095,
+ 500.0
+ ],
+ [
+ 122.296347157421664,
+ 38.920786369027674,
+ 500.0
+ ],
+ [
+ 122.224939420510651,
+ 38.976050783849082,
+ 500.0
+ ],
+ [
+ 122.166798336511107,
+ 39.040125269895547,
+ 500.0
+ ],
+ [
+ 122.1237090866058,
+ 39.111083805786564,
+ 500.0
+ ],
+ [
+ 122.097016972350985,
+ 39.186787544597244,
+ 500.0
+ ],
+ [
+ 122.08758237954163,
+ 39.264947713680847,
+ 500.0
+ ],
+ [
+ 122.095748825070274,
+ 39.343193734825491,
+ 500.0
+ ],
+ [
+ 122.121325719655474,
+ 39.419144677619201,
+ 500.0
+ ],
+ [
+ 122.163587173665476,
+ 39.490481960121016,
+ 500.0
+ ],
+ [
+ 122.221287735424426,
+ 39.555021061111702,
+ 500.0
+ ],
+ [
+ 122.292695381416934,
+ 39.610779925103166,
+ 500.0
+ ],
+ [
+ 122.375641392747966,
+ 39.656041742029707,
+ 500.0
+ ],
+ [
+ 122.467585987593608,
+ 39.689409882068915,
+ 500.0
+ ],
+ [
+ 122.565697787816632,
+ 39.709852970522604,
+ 500.0
+ ],
+ [
+ 122.666944444444994,
+ 39.716738398257007,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268583,
+ "name": "Sunan International Airport",
+ "country": "KP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "39.2450815947264",
+ "lng": "125.675892632334",
+ "radius": 5892,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.629230946,
+ 39.2283985487,
+ 0.0
+ ],
+ [
+ 125.630822953,
+ 39.2700172232,
+ 0.0
+ ],
+ [
+ 125.633920233,
+ 39.277145130900003,
+ 0.0
+ ],
+ [
+ 125.638865052,
+ 39.283618596,
+ 0.0
+ ],
+ [
+ 125.653362521,
+ 39.293510589900002,
+ 0.0
+ ],
+ [
+ 125.671808024,
+ 39.297980966600001,
+ 0.0
+ ],
+ [
+ 125.691008266,
+ 39.296255709,
+ 0.0
+ ],
+ [
+ 125.707638728,
+ 39.288633551,
+ 0.0
+ ],
+ [
+ 125.718821572,
+ 39.276434044299997,
+ 0.0
+ ],
+ [
+ 125.721718884,
+ 39.269255929300002,
+ 0.0
+ ],
+ [
+ 125.72262447599999,
+ 39.261749869100001,
+ 0.0
+ ],
+ [
+ 125.720967633,
+ 39.220095683,
+ 0.0
+ ],
+ [
+ 125.712898718,
+ 39.206506432600001,
+ 0.0
+ ],
+ [
+ 125.698397614,
+ 39.196633461499999,
+ 0.0
+ ],
+ [
+ 125.679971084,
+ 39.192182080400002,
+ 0.0
+ ],
+ [
+ 125.660801355,
+ 39.193920933400001,
+ 0.0
+ ],
+ [
+ 125.651983031,
+ 39.197059475300001,
+ 0.0
+ ],
+ [
+ 125.637787645,
+ 39.207195835500002,
+ 0.0
+ ],
+ [
+ 125.63303088799999,
+ 39.213751128600002,
+ 0.0
+ ],
+ [
+ 125.6301364,
+ 39.220929372599997,
+ 0.0
+ ],
+ [
+ 125.629230946,
+ 39.2283985487,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010115,
+ "name": "Sunan International Airport",
+ "country": "KP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "39.22616",
+ "lng": "125.676272",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.676272,
+ 39.67651263390411,
+ 500.0
+ ],
+ [
+ 125.777459915828302,
+ 39.669627221246891,
+ 500.0
+ ],
+ [
+ 125.875514877982312,
+ 39.649184171787496,
+ 500.0
+ ],
+ [
+ 125.967406367656594,
+ 39.615816076866906,
+ 500.0
+ ],
+ [
+ 126.050304695882147,
+ 39.570554284467406,
+ 500.0
+ ],
+ [
+ 126.121671568432376,
+ 39.51479539276076,
+ 500.0
+ ],
+ [
+ 126.179339502717283,
+ 39.450256180034515,
+ 500.0
+ ],
+ [
+ 126.22157742337464,
+ 39.378918674854859,
+ 500.0
+ ],
+ [
+ 126.247140515655914,
+ 39.302967380877099,
+ 500.0
+ ],
+ [
+ 126.255303206208254,
+ 39.224720875268574,
+ 500.0
+ ],
+ [
+ 126.245874904561205,
+ 39.146560098377421,
+ 500.0
+ ],
+ [
+ 126.219198823002429,
+ 39.070855653220434,
+ 500.0
+ ],
+ [
+ 126.176134762087031,
+ 38.999896350487631,
+ 500.0
+ ],
+ [
+ 126.11802718672979,
+ 38.935821085150316,
+ 500.0
+ ],
+ [
+ 126.046660223590735,
+ 38.880555932168491,
+ 500.0
+ ],
+ [
+ 125.964201397647358,
+ 38.835758117653853,
+ 500.0
+ ],
+ [
+ 125.873136016769934,
+ 38.802768271902629,
+ 500.0
+ ],
+ [
+ 125.776194134482282,
+ 38.782572112351069,
+ 500.0
+ ],
+ [
+ 125.676272,
+ 38.775772444637788,
+ 500.0
+ ],
+ [
+ 125.576349865517713,
+ 38.782572112351069,
+ 500.0
+ ],
+ [
+ 125.479407983230061,
+ 38.802768271902629,
+ 500.0
+ ],
+ [
+ 125.388342602352637,
+ 38.835758117653853,
+ 500.0
+ ],
+ [
+ 125.30588377640926,
+ 38.880555932168491,
+ 500.0
+ ],
+ [
+ 125.234516813270204,
+ 38.935821085150316,
+ 500.0
+ ],
+ [
+ 125.176409237912964,
+ 38.999896350487631,
+ 500.0
+ ],
+ [
+ 125.133345176997565,
+ 39.070855653220434,
+ 500.0
+ ],
+ [
+ 125.106669095438789,
+ 39.146560098377421,
+ 500.0
+ ],
+ [
+ 125.097240793791741,
+ 39.224720875268574,
+ 500.0
+ ],
+ [
+ 125.10540348434408,
+ 39.302967380877099,
+ 500.0
+ ],
+ [
+ 125.130966576625354,
+ 39.378918674854859,
+ 500.0
+ ],
+ [
+ 125.173204497282711,
+ 39.450256180034515,
+ 500.0
+ ],
+ [
+ 125.230872431567619,
+ 39.51479539276076,
+ 500.0
+ ],
+ [
+ 125.302239304117847,
+ 39.570554284467406,
+ 500.0
+ ],
+ [
+ 125.385137632343401,
+ 39.615816076866906,
+ 500.0
+ ],
+ [
+ 125.477029122017683,
+ 39.649184171787496,
+ 500.0
+ ],
+ [
+ 125.575084084171692,
+ 39.669627221246891,
+ 500.0
+ ],
+ [
+ 125.676272,
+ 39.67651263390411,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268582,
+ "name": "Sunan International Airport",
+ "country": "KP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "39.245083388626",
+ "lng": "125.675916414386",
+ "radius": 4936,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.668309371,
+ 39.201083042400001,
+ 0.0
+ ],
+ [
+ 125.669590215,
+ 39.2892055099,
+ 0.0
+ ],
+ [
+ 125.683533008,
+ 39.2890832394,
+ 0.0
+ ],
+ [
+ 125.682234656,
+ 39.200960712300002,
+ 0.0
+ ],
+ [
+ 125.668309371,
+ 39.201083042400001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268582,
+ "name": "Sunan International Airport",
+ "country": "KP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "39.3064986325969",
+ "lng": "125.676815740212",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.669590215,
+ 39.2892055099,
+ 60.0
+ ],
+ [
+ 125.663810181,
+ 39.321633687199999,
+ 60.0
+ ],
+ [
+ 125.690261342,
+ 39.321401725299999,
+ 60.0
+ ],
+ [
+ 125.683533008,
+ 39.2890832394,
+ 60.0
+ ],
+ [
+ 125.669590215,
+ 39.2892055099,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268582,
+ "name": "Sunan International Airport",
+ "country": "KP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "39.1836668057588",
+ "lng": "125.675018199816",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.661595433,
+ 39.1687641989,
+ 60.0
+ ],
+ [
+ 125.668309371,
+ 39.201083042400001,
+ 60.0
+ ],
+ [
+ 125.682234656,
+ 39.200960712300002,
+ 60.0
+ ],
+ [
+ 125.688001856,
+ 39.168532225299998,
+ 60.0
+ ],
+ [
+ 125.661595433,
+ 39.1687641989,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268582,
+ "name": "Sunan International Airport",
+ "country": "KP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "39.3616589597894",
+ "lng": "125.677624313484",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.663810181,
+ 39.321633687199999,
+ 150.0
+ ],
+ [
+ 125.650302564,
+ 39.397298320499999,
+ 150.0
+ ],
+ [
+ 125.705985,
+ 39.3968100166,
+ 150.0
+ ],
+ [
+ 125.690261342,
+ 39.321401725299999,
+ 150.0
+ ],
+ [
+ 125.663810181,
+ 39.321633687199999,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268582,
+ "name": "Sunan International Airport",
+ "country": "KP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "39.1285052047881",
+ "lng": "125.674212297984",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.645953543,
+ 39.093352068900003,
+ 150.0
+ ],
+ [
+ 125.661595433,
+ 39.1687641989,
+ 150.0
+ ],
+ [
+ 125.688001856,
+ 39.168532225299998,
+ 150.0
+ ],
+ [
+ 125.701438002,
+ 39.092864652199999,
+ 150.0
+ ],
+ [
+ 125.645953543,
+ 39.093352068900003,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045023,
+ "name": "莎车叶尔羌机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "38.244186",
+ "lng": "77.061265",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 77.061265,
+ 38.694614623315736,
+ 500.0
+ ],
+ [
+ 77.161055084229005,
+ 38.687729560871119,
+ 500.0
+ ],
+ [
+ 77.257757485842106,
+ 38.667287412458101,
+ 500.0
+ ],
+ [
+ 77.34838523164845,
+ 38.6339203427165,
+ 500.0
+ ],
+ [
+ 77.430148825460165,
+ 38.588659059036921,
+ 500.0
+ ],
+ [
+ 77.500545372261925,
+ 38.5328994009094,
+ 500.0
+ ],
+ [
+ 77.557436812064964,
+ 38.468357385329867,
+ 500.0
+ ],
+ [
+ 77.599114637995214,
+ 38.397014396703369,
+ 500.0
+ ],
+ [
+ 77.624349199795716,
+ 38.321054519836352,
+ 500.0
+ ],
+ [
+ 77.63242245930212,
+ 38.242796220852725,
+ 500.0
+ ],
+ [
+ 77.623143806449718,
+ 38.164620682998915,
+ 500.0
+ ],
+ [
+ 77.596849212463212,
+ 38.088899109931027,
+ 500.0
+ ],
+ [
+ 77.554384556628705,
+ 38.017921231460683,
+ 500.0
+ ],
+ [
+ 77.497074397500512,
+ 37.953827102275682,
+ 500.0
+ ],
+ [
+ 77.42667776774762,
+ 37.898544090003575,
+ 500.0
+ ],
+ [
+ 77.345332766172533,
+ 37.853730721116548,
+ 500.0
+ ],
+ [
+ 77.255491821461831,
+ 37.820728805039387,
+ 500.0
+ ],
+ [
+ 77.159849534985867,
+ 37.800524998686029,
+ 500.0
+ ],
+ [
+ 77.061265,
+ 37.793722712481475,
+ 500.0
+ ],
+ [
+ 76.962680465014145,
+ 37.800524998686029,
+ 500.0
+ ],
+ [
+ 76.867038178538181,
+ 37.820728805039387,
+ 500.0
+ ],
+ [
+ 76.777197233827479,
+ 37.853730721116548,
+ 500.0
+ ],
+ [
+ 76.695852232252392,
+ 37.898544090003575,
+ 500.0
+ ],
+ [
+ 76.6254556024995,
+ 37.953827102275682,
+ 500.0
+ ],
+ [
+ 76.568145443371307,
+ 38.017921231460683,
+ 500.0
+ ],
+ [
+ 76.5256807875368,
+ 38.088899109931027,
+ 500.0
+ ],
+ [
+ 76.499386193550293,
+ 38.164620682998915,
+ 500.0
+ ],
+ [
+ 76.490107540697892,
+ 38.242796220852725,
+ 500.0
+ ],
+ [
+ 76.498180800204295,
+ 38.321054519836352,
+ 500.0
+ ],
+ [
+ 76.523415362004798,
+ 38.397014396703369,
+ 500.0
+ ],
+ [
+ 76.565093187935048,
+ 38.468357385329867,
+ 500.0
+ ],
+ [
+ 76.621984627738087,
+ 38.5328994009094,
+ 500.0
+ ],
+ [
+ 76.692381174539847,
+ 38.588659059036921,
+ 500.0
+ ],
+ [
+ 76.774144768351562,
+ 38.6339203427165,
+ 500.0
+ ],
+ [
+ 76.864772514157906,
+ 38.667287412458101,
+ 500.0
+ ],
+ [
+ 76.961474915771007,
+ 38.687729560871119,
+ 500.0
+ ],
+ [
+ 77.061265,
+ 38.694614623315736,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045022,
+ "name": "莎车叶尔羌机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "38.2835427284361",
+ "lng": "77.0313581122013",
+ "radius": 13520,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 77.036372853700001,
+ 38.320878946500002,
+ 0.0
+ ],
+ [
+ 77.001430725700004,
+ 38.402852045300001,
+ 0.0
+ ],
+ [
+ 76.926305984300001,
+ 38.372953054,
+ 0.0
+ ],
+ [
+ 76.990124068399993,
+ 38.302455747499998,
+ 0.0
+ ],
+ [
+ 76.975046143699998,
+ 38.288676885199997,
+ 0.0
+ ],
+ [
+ 76.9624840866,
+ 38.2572767152,
+ 0.0
+ ],
+ [
+ 76.964350775599996,
+ 38.24074334,
+ 0.0
+ ],
+ [
+ 76.971600151700002,
+ 38.225152463500002,
+ 0.0
+ ],
+ [
+ 77.0001505802,
+ 38.186326144699997,
+ 0.0
+ ],
+ [
+ 77.035555562599995,
+ 38.168758545800003,
+ 0.0
+ ],
+ [
+ 77.077384973199997,
+ 38.167446764899999,
+ 0.0
+ ],
+ [
+ 77.036372853700001,
+ 38.320878946500002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045022,
+ "name": "莎车叶尔羌机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "38.2047389242524",
+ "lng": "77.0822566122375",
+ "radius": 13521,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 77.112212099299995,
+ 38.085443312,
+ 0.0
+ ],
+ [
+ 77.187080070299999,
+ 38.115334470699999,
+ 0.0
+ ],
+ [
+ 77.123579534599997,
+ 38.185875003100001,
+ 0.0
+ ],
+ [
+ 77.1385727782,
+ 38.199533836599997,
+ 0.0
+ ],
+ [
+ 77.151265478200003,
+ 38.230899092199998,
+ 0.0
+ ],
+ [
+ 77.1494756174,
+ 38.2474376901,
+ 0.0
+ ],
+ [
+ 77.142294337699994,
+ 38.263048624200003,
+ 0.0
+ ],
+ [
+ 77.113742151400004,
+ 38.301978956699998,
+ 0.0
+ ],
+ [
+ 77.078289960899994,
+ 38.319568589200003,
+ 0.0
+ ],
+ [
+ 77.036372853700001,
+ 38.320878946500002,
+ 0.0
+ ],
+ [
+ 77.077384973199997,
+ 38.167446764899999,
+ 0.0
+ ],
+ [
+ 77.112212099299995,
+ 38.085443312,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045022,
+ "name": "莎车叶尔羌机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "38.2440721810497",
+ "lng": "77.0566549763843",
+ "radius": 23707,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 77.269951489600004,
+ 38.11238254,
+ 120.0
+ ],
+ [
+ 77.066201085100005,
+ 38.031001335299997,
+ 120.0
+ ],
+ [
+ 76.842984859699996,
+ 38.375774971699997,
+ 120.0
+ ],
+ [
+ 77.047703905,
+ 38.457156175100003,
+ 120.0
+ ],
+ [
+ 77.269951489600004,
+ 38.11238254,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9389,
+ "name": "Nanjiang:shache",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "38.42",
+ "lng": "77.25",
+ "radius": 5000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 77.25,
+ 38.465043070082459,
+ 0.0
+ ],
+ [
+ 77.259948249616258,
+ 38.464358345131522,
+ 0.0
+ ],
+ [
+ 77.269593676873413,
+ 38.462325012983648,
+ 0.0
+ ],
+ [
+ 77.278642727014784,
+ 38.459004963897932,
+ 0.0
+ ],
+ [
+ 77.286820090827717,
+ 38.454499242055448,
+ 0.0
+ ],
+ [
+ 77.293877113051749,
+ 38.448944955282641,
+ 0.0
+ ],
+ [
+ 77.299599370534708,
+ 38.442511084466567,
+ 0.0
+ ],
+ [
+ 77.303813187131112,
+ 38.435393322977461,
+ 0.0
+ ],
+ [
+ 77.306390887454981,
+ 38.427808106068952,
+ 0.0
+ ],
+ [
+ 77.307254632714859,
+ 38.419986014635427,
+ 0.0
+ ],
+ [
+ 77.306378727377876,
+ 38.412164756154297,
+ 0.0
+ ],
+ [
+ 77.30379033365891,
+ 38.404581937636799,
+ 0.0
+ ],
+ [
+ 77.299568580129232,
+ 38.397467850696692,
+ 0.0
+ ],
+ [
+ 77.293842099486596,
+ 38.391038487383526,
+ 0.0
+ ],
+ [
+ 77.286785077254152,
+ 38.385488997396649,
+ 0.0
+ ],
+ [
+ 77.278611936587964,
+ 38.380987783059958,
+ 0.0
+ ],
+ [
+ 77.269570823376952,
+ 38.377671408527647,
+ 0.0
+ ],
+ [
+ 77.259936089523308,
+ 38.375640474774691,
+ 0.0
+ ],
+ [
+ 77.25,
+ 38.374956582777642,
+ 0.0
+ ],
+ [
+ 77.240063910476692,
+ 38.375640474774691,
+ 0.0
+ ],
+ [
+ 77.230429176623048,
+ 38.377671408527647,
+ 0.0
+ ],
+ [
+ 77.221388063412036,
+ 38.380987783059958,
+ 0.0
+ ],
+ [
+ 77.213214922745848,
+ 38.385488997396649,
+ 0.0
+ ],
+ [
+ 77.206157900513404,
+ 38.391038487383526,
+ 0.0
+ ],
+ [
+ 77.200431419870768,
+ 38.397467850696692,
+ 0.0
+ ],
+ [
+ 77.19620966634109,
+ 38.404581937636799,
+ 0.0
+ ],
+ [
+ 77.193621272622124,
+ 38.412164756154297,
+ 0.0
+ ],
+ [
+ 77.192745367285141,
+ 38.419986014635427,
+ 0.0
+ ],
+ [
+ 77.193609112545019,
+ 38.427808106068952,
+ 0.0
+ ],
+ [
+ 77.196186812868888,
+ 38.435393322977461,
+ 0.0
+ ],
+ [
+ 77.200400629465292,
+ 38.442511084466567,
+ 0.0
+ ],
+ [
+ 77.206122886948251,
+ 38.448944955282641,
+ 0.0
+ ],
+ [
+ 77.213179909172283,
+ 38.454499242055448,
+ 0.0
+ ],
+ [
+ 77.221357272985216,
+ 38.459004963897932,
+ 0.0
+ ],
+ [
+ 77.230406323126587,
+ 38.462325012983648,
+ 0.0
+ ],
+ [
+ 77.240051750383742,
+ 38.464358345131522,
+ 0.0
+ ],
+ [
+ 77.25,
+ 38.465043070082459,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2932,
+ "name": "Qiemo Airport",
+ "country": "CN",
+ "city": "Qiemo",
+ "height": 0,
+ "level": 2,
+ "lat": "38.2031271020258",
+ "lng": "85.4249452176797",
+ "radius": 13432,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.376777880399999,
+ 38.195138803200003,
+ 0.0
+ ],
+ [
+ 85.290087804799995,
+ 38.145208332800003,
+ 0.0
+ ],
+ [
+ 85.355335937099994,
+ 38.095435686,
+ 0.0
+ ],
+ [
+ 85.418632579600001,
+ 38.1670964598,
+ 0.0
+ ],
+ [
+ 85.4535333834,
+ 38.1608162028,
+ 0.0
+ ],
+ [
+ 85.474468608600006,
+ 38.162948546,
+ 0.0
+ ],
+ [
+ 85.510774070899998,
+ 38.179336771899997,
+ 0.0
+ ],
+ [
+ 85.534142846899996,
+ 38.197697679800001,
+ 0.0
+ ],
+ [
+ 85.5544164338,
+ 38.221065457500004,
+ 0.0
+ ],
+ [
+ 85.559116681199995,
+ 38.253770222699998,
+ 0.0
+ ],
+ [
+ 85.553268716,
+ 38.269720685,
+ 0.0
+ ],
+ [
+ 85.376777880399999,
+ 38.195138803200003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2932,
+ "name": "Qiemo Airport",
+ "country": "CN",
+ "city": "Qiemo",
+ "height": 0,
+ "level": 2,
+ "lat": "38.2656012126546",
+ "lng": "85.5002749512091",
+ "radius": 13332,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.636573564100004,
+ 38.319752866100004,
+ 0.0
+ ],
+ [
+ 85.576385163599994,
+ 38.369572888100002,
+ 0.0
+ ],
+ [
+ 85.513088550899994,
+ 38.301244309399998,
+ 0.0
+ ],
+ [
+ 85.473005888900005,
+ 38.3094290696,
+ 0.0
+ ],
+ [
+ 85.452045962400007,
+ 38.307193291099999,
+ 0.0
+ ],
+ [
+ 85.415821704500004,
+ 38.290608391600003,
+ 0.0
+ ],
+ [
+ 85.378448052699994,
+ 38.258707292499999,
+ 0.0
+ ],
+ [
+ 85.369959130699996,
+ 38.243506609800001,
+ 0.0
+ ],
+ [
+ 85.366771276400002,
+ 38.227098330899999,
+ 0.0
+ ],
+ [
+ 85.376777880399999,
+ 38.195138803200003,
+ 0.0
+ ],
+ [
+ 85.553268716,
+ 38.269720685,
+ 0.0
+ ],
+ [
+ 85.636573564100004,
+ 38.319752866100004,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2932,
+ "name": "Qiemo Airport",
+ "country": "CN",
+ "city": "Qiemo",
+ "height": 120,
+ "level": 2,
+ "lat": "38.2347763718482",
+ "lng": "85.4636741199949",
+ "radius": 23658,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.556071982199995,
+ 38.434818780199997,
+ 120.0
+ ],
+ [
+ 85.718298468100002,
+ 38.307638546299998,
+ 120.0
+ ],
+ [
+ 85.370832248300005,
+ 38.034933647,
+ 120.0
+ ],
+ [
+ 85.209212997899996,
+ 38.162113881800003,
+ 120.0
+ ],
+ [
+ 85.556071982199995,
+ 38.434818780199997,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001387,
+ "name": "Qiemo Airport",
+ "country": "CN",
+ "city": "Qiemo",
+ "height": 500,
+ "level": 2,
+ "lat": "38.2338892750042",
+ "lng": "85.464195620359",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.464195620359021,
+ 38.684318692114417,
+ 500.0
+ ],
+ [
+ 85.563971406974929,
+ 38.677433633168128,
+ 500.0
+ ],
+ [
+ 85.660659973957138,
+ 38.656991493707849,
+ 500.0
+ ],
+ [
+ 85.751274793461022,
+ 38.623624433974641,
+ 500.0
+ ],
+ [
+ 85.833026780373658,
+ 38.578363154756339,
+ 500.0
+ ],
+ [
+ 85.90341340175317,
+ 38.522603487725348,
+ 500.0
+ ],
+ [
+ 85.960296898583579,
+ 38.45806144203744,
+ 500.0
+ ],
+ [
+ 86.001968994883796,
+ 38.386718395471576,
+ 500.0
+ ],
+ [
+ 86.027200195577947,
+ 38.310758428539565,
+ 500.0
+ ],
+ [
+ 86.035272539656191,
+ 38.232500006254348,
+ 500.0
+ ],
+ [
+ 86.025995416933142,
+ 38.154324314411717,
+ 500.0
+ ],
+ [
+ 85.999704724636999,
+ 38.078602562916544,
+ 500.0
+ ],
+ [
+ 85.957246199710113,
+ 38.007624491122343,
+ 500.0
+ ],
+ [
+ 85.89994419712113,
+ 37.94353016574604,
+ 500.0
+ ],
+ [
+ 85.829557492866556,
+ 37.888246967817466,
+ 500.0
+ ],
+ [
+ 85.748223884740554,
+ 37.843433437287658,
+ 500.0
+ ],
+ [
+ 85.658395465081142,
+ 37.810431395802027,
+ 500.0
+ ],
+ [
+ 85.562766472575973,
+ 37.790227510010688,
+ 500.0
+ ],
+ [
+ 85.464195620359021,
+ 37.783425196606004,
+ 500.0
+ ],
+ [
+ 85.365624768142069,
+ 37.790227510010688,
+ 500.0
+ ],
+ [
+ 85.2699957756369,
+ 37.810431395802027,
+ 500.0
+ ],
+ [
+ 85.180167355977488,
+ 37.843433437287658,
+ 500.0
+ ],
+ [
+ 85.098833747851486,
+ 37.888246967817466,
+ 500.0
+ ],
+ [
+ 85.028447043596913,
+ 37.94353016574604,
+ 500.0
+ ],
+ [
+ 84.971145041007929,
+ 38.007624491122343,
+ 500.0
+ ],
+ [
+ 84.928686516081044,
+ 38.078602562916544,
+ 500.0
+ ],
+ [
+ 84.9023958237849,
+ 38.154324314411717,
+ 500.0
+ ],
+ [
+ 84.893118701061852,
+ 38.232500006254348,
+ 500.0
+ ],
+ [
+ 84.901191045140095,
+ 38.310758428539565,
+ 500.0
+ ],
+ [
+ 84.926422245834246,
+ 38.386718395471576,
+ 500.0
+ ],
+ [
+ 84.968094342134464,
+ 38.45806144203744,
+ 500.0
+ ],
+ [
+ 85.024977838964872,
+ 38.522603487725348,
+ 500.0
+ ],
+ [
+ 85.095364460344385,
+ 38.578363154756339,
+ 500.0
+ ],
+ [
+ 85.177116447257021,
+ 38.623624433974641,
+ 500.0
+ ],
+ [
+ 85.267731266760904,
+ 38.656991493707849,
+ 500.0
+ ],
+ [
+ 85.364419833743113,
+ 38.677433633168128,
+ 500.0
+ ],
+ [
+ 85.464195620359021,
+ 38.684318692114417,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001381,
+ "name": "花土沟",
+ "country": "CN",
+ "city": "海西",
+ "height": 500,
+ "level": 2,
+ "lat": "38.1983333333333",
+ "lng": "90.8420833333333",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 90.842083333333321,
+ 38.648765491013229,
+ 500.0
+ ],
+ [
+ 90.941809804743372,
+ 38.64188044412051,
+ 500.0
+ ],
+ [
+ 91.038450653424078,
+ 38.621438335499576,
+ 500.0
+ ],
+ [
+ 91.129020887607041,
+ 38.5880713102136,
+ 500.0
+ ],
+ [
+ 91.210732840050653,
+ 38.542810046268087,
+ 500.0
+ ],
+ [
+ 91.281085226673312,
+ 38.487050348361471,
+ 500.0
+ ],
+ [
+ 91.337941326575546,
+ 38.422508198598543,
+ 500.0
+ ],
+ [
+ 91.379593660178102,
+ 38.351164951897381,
+ 500.0
+ ],
+ [
+ 91.404813267664821,
+ 38.275204673954853,
+ 500.0
+ ],
+ [
+ 91.412882454158265,
+ 38.196945825955787,
+ 500.0
+ ],
+ [
+ 91.403610609068053,
+ 38.118769602499469,
+ 500.0
+ ],
+ [
+ 91.377333374403776,
+ 38.043047235060612,
+ 500.0
+ ],
+ [
+ 91.334895996143871,
+ 37.972068495927026,
+ 500.0
+ ],
+ [
+ 91.277622127054315,
+ 37.907973493333074,
+ 500.0
+ ],
+ [
+ 91.207269657818742,
+ 37.852689654564493,
+ 500.0
+ ],
+ [
+ 91.125975347992082,
+ 37.807875566092044,
+ 500.0
+ ],
+ [
+ 91.036190129775292,
+ 37.774873091738094,
+ 500.0
+ ],
+ [
+ 90.940606990885058,
+ 37.754668931754878,
+ 500.0
+ ],
+ [
+ 90.842083333333321,
+ 37.747866524465188,
+ 500.0
+ ],
+ [
+ 90.743559675781583,
+ 37.754668931754878,
+ 500.0
+ ],
+ [
+ 90.647976536891349,
+ 37.774873091738094,
+ 500.0
+ ],
+ [
+ 90.55819131867456,
+ 37.807875566092044,
+ 500.0
+ ],
+ [
+ 90.476897008847899,
+ 37.852689654564493,
+ 500.0
+ ],
+ [
+ 90.406544539612327,
+ 37.907973493333074,
+ 500.0
+ ],
+ [
+ 90.34927067052277,
+ 37.972068495927026,
+ 500.0
+ ],
+ [
+ 90.306833292262866,
+ 38.043047235060612,
+ 500.0
+ ],
+ [
+ 90.280556057598588,
+ 38.118769602499469,
+ 500.0
+ ],
+ [
+ 90.271284212508377,
+ 38.196945825955787,
+ 500.0
+ ],
+ [
+ 90.27935339900182,
+ 38.275204673954853,
+ 500.0
+ ],
+ [
+ 90.304573006488539,
+ 38.351164951897381,
+ 500.0
+ ],
+ [
+ 90.346225340091095,
+ 38.422508198598543,
+ 500.0
+ ],
+ [
+ 90.403081439993329,
+ 38.487050348361471,
+ 500.0
+ ],
+ [
+ 90.473433826615988,
+ 38.542810046268087,
+ 500.0
+ ],
+ [
+ 90.5551457790596,
+ 38.5880713102136,
+ 500.0
+ ],
+ [
+ 90.645716013242563,
+ 38.621438335499576,
+ 500.0
+ ],
+ [
+ 90.74235686192327,
+ 38.64188044412051,
+ 500.0
+ ],
+ [
+ 90.842083333333321,
+ 38.648765491013229,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33252,
+ "name": "花土沟",
+ "country": "CN",
+ "city": "海西",
+ "height": 0,
+ "level": 2,
+ "lat": "38.2369923868637",
+ "lng": "90.7974777175209",
+ "radius": 13063,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 90.808868541400003,
+ 38.2761798521,
+ 0.0
+ ],
+ [
+ 90.762240065200004,
+ 38.351176009900001,
+ 0.0
+ ],
+ [
+ 90.688395471099994,
+ 38.313348003500003,
+ 0.0
+ ],
+ [
+ 90.765064340600006,
+ 38.250042480399998,
+ 0.0
+ ],
+ [
+ 90.751140144700003,
+ 38.225649940300002,
+ 0.0
+ ],
+ [
+ 90.749479001300003,
+ 38.209103090699998,
+ 0.0
+ ],
+ [
+ 90.753324288200005,
+ 38.192782238,
+ 0.0
+ ],
+ [
+ 90.762410545500003,
+ 38.177799106400002,
+ 0.0
+ ],
+ [
+ 90.785708247599999,
+ 38.151176011899999,
+ 0.0
+ ],
+ [
+ 90.813271764600003,
+ 38.129446900399998,
+ 0.0
+ ],
+ [
+ 90.832604868900006,
+ 38.122798261600003,
+ 0.0
+ ],
+ [
+ 90.808868541400003,
+ 38.2761798521,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33252,
+ "name": "花土沟",
+ "country": "CN",
+ "city": "海西",
+ "height": 0,
+ "level": 2,
+ "lat": "38.1629965206924",
+ "lng": "90.86942016485",
+ "radius": 13651,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 90.921106315599999,
+ 38.047154145500002,
+ 0.0
+ ],
+ [
+ 90.989932844199998,
+ 38.084985745700003,
+ 0.0
+ ],
+ [
+ 90.919931024500002,
+ 38.144919985100003,
+ 0.0
+ ],
+ [
+ 90.935243900200007,
+ 38.173098172400003,
+ 0.0
+ ],
+ [
+ 90.9358695942,
+ 38.189689123100003,
+ 0.0
+ ],
+ [
+ 90.920991959399998,
+ 38.220455250900002,
+ 0.0
+ ],
+ [
+ 90.869959984800005,
+ 38.267943908399999,
+ 0.0
+ ],
+ [
+ 90.829922773700005,
+ 38.277703987700001,
+ 0.0
+ ],
+ [
+ 90.808868541400003,
+ 38.2761798521,
+ 0.0
+ ],
+ [
+ 90.832604868900006,
+ 38.122798261600003,
+ 0.0
+ ],
+ [
+ 90.87443319899999,
+ 38.122147895600001,
+ 0.0
+ ],
+ [
+ 90.921106315599999,
+ 38.047154145500002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33252,
+ "name": "花土沟",
+ "country": "CN",
+ "city": "海西",
+ "height": 120,
+ "level": 2,
+ "lat": "38.1990257990104",
+ "lng": "90.840928873029",
+ "radius": 24002,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.078842698700001,
+ 38.091382901199999,
+ 120.0
+ ],
+ [
+ 90.892806303,
+ 37.987061200799999,
+ 120.0
+ ],
+ [
+ 90.602734694600002,
+ 38.306766631800002,
+ 120.0
+ ],
+ [
+ 90.789589743500002,
+ 38.411088331,
+ 120.0
+ ],
+ [
+ 91.078842698700001,
+ 38.091382901199999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025582,
+ "name": "海北祁连机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "38.0118640209049",
+ "lng": "100.643599523279",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.643599523278809,
+ 38.462310538189016,
+ 500.0
+ ],
+ [
+ 100.743068790792762,
+ 38.45542555384133,
+ 500.0
+ ],
+ [
+ 100.839460763999796,
+ 38.43498360505162,
+ 500.0
+ ],
+ [
+ 100.929798462349851,
+ 38.401616757580548,
+ 500.0
+ ],
+ [
+ 101.011301613403276,
+ 38.356355570402371,
+ 500.0
+ ],
+ [
+ 101.08147544650646,
+ 38.300595707293184,
+ 500.0
+ ],
+ [
+ 101.138188655161443,
+ 38.236053009049904,
+ 500.0
+ ],
+ [
+ 101.179737913620187,
+ 38.164708711200674,
+ 500.0
+ ],
+ [
+ 101.204897053975927,
+ 38.088746802125506,
+ 500.0
+ ],
+ [
+ 101.212949769654372,
+ 38.010485723138082,
+ 500.0
+ ],
+ [
+ 101.203705448231517,
+ 37.932306715010135,
+ 500.0
+ ],
+ [
+ 101.177498400857004,
+ 37.856581122136333,
+ 500.0
+ ],
+ [
+ 101.135171313047479,
+ 37.785598889141212,
+ 500.0
+ ],
+ [
+ 101.078044175305237,
+ 37.721500341468982,
+ 500.0
+ ],
+ [
+ 101.007870260948394,
+ 37.666213148383676,
+ 500.0
+ ],
+ [
+ 100.926780914494373,
+ 37.621396139702426,
+ 500.0
+ ],
+ [
+ 100.837221017276008,
+ 37.58839139987046,
+ 500.0
+ ],
+ [
+ 100.741877032341407,
+ 37.568185804906577,
+ 500.0
+ ],
+ [
+ 100.643599523278809,
+ 37.561382906277437,
+ 500.0
+ ],
+ [
+ 100.545322014216211,
+ 37.568185804906577,
+ 500.0
+ ],
+ [
+ 100.44997802928161,
+ 37.58839139987046,
+ 500.0
+ ],
+ [
+ 100.360418132063245,
+ 37.621396139702426,
+ 500.0
+ ],
+ [
+ 100.279328785609223,
+ 37.666213148383676,
+ 500.0
+ ],
+ [
+ 100.20915487125238,
+ 37.721500341468982,
+ 500.0
+ ],
+ [
+ 100.152027733510138,
+ 37.785598889141212,
+ 500.0
+ ],
+ [
+ 100.109700645700613,
+ 37.856581122136333,
+ 500.0
+ ],
+ [
+ 100.0834935983261,
+ 37.932306715010135,
+ 500.0
+ ],
+ [
+ 100.074249276903245,
+ 38.010485723138082,
+ 500.0
+ ],
+ [
+ 100.082301992581691,
+ 38.088746802125506,
+ 500.0
+ ],
+ [
+ 100.107461132937431,
+ 38.164708711200674,
+ 500.0
+ ],
+ [
+ 100.149010391396175,
+ 38.236053009049904,
+ 500.0
+ ],
+ [
+ 100.205723600051158,
+ 38.300595707293184,
+ 500.0
+ ],
+ [
+ 100.275897433154341,
+ 38.356355570402371,
+ 500.0
+ ],
+ [
+ 100.357400584207767,
+ 38.401616757580548,
+ 500.0
+ ],
+ [
+ 100.447738282557822,
+ 38.43498360505162,
+ 500.0
+ ],
+ [
+ 100.544130255764856,
+ 38.45542555384133,
+ 500.0
+ ],
+ [
+ 100.643599523278809,
+ 38.462310538189016,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025581,
+ "name": "海北祁连机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "37.999675535436",
+ "lng": "100.699720126563",
+ "radius": 13776,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.73696452199999,
+ 37.973259756300003,
+ 0.0
+ ],
+ [
+ 100.840335472,
+ 37.944345229,
+ 0.0
+ ],
+ [
+ 100.856487382,
+ 38.009161936300004,
+ 0.0
+ ],
+ [
+ 100.746934239,
+ 38.013253735399999,
+ 0.0
+ ],
+ [
+ 100.742472527,
+ 38.030958326,
+ 0.0
+ ],
+ [
+ 100.732939874,
+ 38.045761465699997,
+ 0.0
+ ],
+ [
+ 100.718862859,
+ 38.058115606900003,
+ 0.0
+ ],
+ [
+ 100.681157664,
+ 38.072328036400002,
+ 0.0
+ ],
+ [
+ 100.618812425,
+ 38.0794907712,
+ 0.0
+ ],
+ [
+ 100.579469343,
+ 38.0683553426,
+ 0.0
+ ],
+ [
+ 100.552487974,
+ 38.043218454399998,
+ 0.0
+ ],
+ [
+ 100.73696452199999,
+ 37.973259756300003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025581,
+ "name": "海北祁连机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "38.0166168859089",
+ "lng": "100.589712080466",
+ "radius": 13774,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.449041453,
+ 38.072054380300003,
+ 0.0
+ ],
+ [
+ 100.43293260199999,
+ 38.007234197199999,
+ 0.0
+ ],
+ [
+ 100.542570247,
+ 38.003314495399998,
+ 0.0
+ ],
+ [
+ 100.547090873,
+ 37.985544218400001,
+ 0.0
+ ],
+ [
+ 100.556659129,
+ 37.970758490599998,
+ 0.0
+ ],
+ [
+ 100.57075163099999,
+ 37.958427209,
+ 0.0
+ ],
+ [
+ 100.608425358,
+ 37.944259425600002,
+ 0.0
+ ],
+ [
+ 100.670644845,
+ 37.937091202600001,
+ 0.0
+ ],
+ [
+ 100.709941417,
+ 37.948174104800003,
+ 0.0
+ ],
+ [
+ 100.73696452199999,
+ 37.973259756300003,
+ 0.0
+ ],
+ [
+ 100.552487974,
+ 38.043218454399998,
+ 0.0
+ ],
+ [
+ 100.449041453,
+ 38.072054380300003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025581,
+ "name": "海北祁连机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "38.0078353134455",
+ "lng": "100.644652264381",
+ "radius": 23944,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.379046738,
+ 37.9574012936,
+ 120.0
+ ],
+ [
+ 100.422907525,
+ 38.133917806500001,
+ 120.0
+ ],
+ [
+ 100.910283393,
+ 38.058763030100003,
+ 120.0
+ ],
+ [
+ 100.866467545,
+ 37.8822465171,
+ 120.0
+ ],
+ [
+ 100.379046738,
+ 37.9574012936,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001369,
+ "name": "Yinchuan Airport",
+ "country": "CN",
+ "city": "Yinchuan",
+ "height": 500,
+ "level": 2,
+ "lat": "38.324175",
+ "lng": "106.390045",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.390045,
+ 38.774597454578284,
+ 500.0
+ ],
+ [
+ 106.489946403777267,
+ 38.767712364838935,
+ 500.0
+ ],
+ [
+ 106.586756520168137,
+ 38.747270146540501,
+ 500.0
+ ],
+ [
+ 106.677484908531326,
+ 38.713902998546423,
+ 500.0
+ ],
+ [
+ 106.759338872075816,
+ 38.668641679618929,
+ 500.0
+ ],
+ [
+ 106.82981269672166,
+ 38.612882090073597,
+ 500.0
+ ],
+ [
+ 106.886765979158426,
+ 38.548340307910053,
+ 500.0
+ ],
+ [
+ 106.928488414840871,
+ 38.476997769095931,
+ 500.0
+ ],
+ [
+ 106.953749145337099,
+ 38.40103859186685,
+ 500.0
+ ],
+ [
+ 106.96182953181922,
+ 38.322781251013389,
+ 500.0
+ ],
+ [
+ 106.952538965213321,
+ 38.244606909978394,
+ 500.0
+ ],
+ [
+ 106.926213992915606,
+ 38.168886723840238,
+ 500.0
+ ],
+ [
+ 106.883701602514378,
+ 38.097910348218164,
+ 500.0
+ ],
+ [
+ 106.826327937673383,
+ 38.033817744261313,
+ 500.0
+ ],
+ [
+ 106.755854029482606,
+ 37.978536175376767,
+ 500.0
+ ],
+ [
+ 106.674420320344097,
+ 37.933724063218598,
+ 500.0
+ ],
+ [
+ 106.58448185768485,
+ 37.900723122177091,
+ 500.0
+ ],
+ [
+ 106.488736066640371,
+ 37.880519933451893,
+ 500.0
+ ],
+ [
+ 106.390045,
+ 37.873717858728874,
+ 500.0
+ ],
+ [
+ 106.29135393335963,
+ 37.880519933451893,
+ 500.0
+ ],
+ [
+ 106.195608142315152,
+ 37.900723122177091,
+ 500.0
+ ],
+ [
+ 106.105669679655904,
+ 37.933724063218598,
+ 500.0
+ ],
+ [
+ 106.024235970517395,
+ 37.978536175376767,
+ 500.0
+ ],
+ [
+ 105.953762062326618,
+ 38.033817744261313,
+ 500.0
+ ],
+ [
+ 105.896388397485623,
+ 38.097910348218164,
+ 500.0
+ ],
+ [
+ 105.853876007084395,
+ 38.168886723840238,
+ 500.0
+ ],
+ [
+ 105.82755103478668,
+ 38.244606909978394,
+ 500.0
+ ],
+ [
+ 105.818260468180782,
+ 38.322781251013389,
+ 500.0
+ ],
+ [
+ 105.826340854662902,
+ 38.40103859186685,
+ 500.0
+ ],
+ [
+ 105.851601585159131,
+ 38.476997769095931,
+ 500.0
+ ],
+ [
+ 105.893324020841575,
+ 38.548340307910053,
+ 500.0
+ ],
+ [
+ 105.950277303278341,
+ 38.612882090073597,
+ 500.0
+ ],
+ [
+ 106.020751127924186,
+ 38.668641679618929,
+ 500.0
+ ],
+ [
+ 106.102605091468675,
+ 38.713902998546423,
+ 500.0
+ ],
+ [
+ 106.193333479831864,
+ 38.747270146540501,
+ 500.0
+ ],
+ [
+ 106.290143596222734,
+ 38.767712364838935,
+ 500.0
+ ],
+ [
+ 106.390045,
+ 38.774597454578284,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2888,
+ "name": "Yinchuan Airport",
+ "country": "CN",
+ "city": "Yinchuan",
+ "height": 0,
+ "level": 2,
+ "lat": "38.3560679445257",
+ "lng": "106.422645300828",
+ "radius": 13763,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.468302354,
+ 38.376735658699999,
+ 0.0
+ ],
+ [
+ 106.536602512,
+ 38.441765656599998,
+ 0.0
+ ],
+ [
+ 106.460987872,
+ 38.476141407199997,
+ 0.0
+ ],
+ [
+ 106.417632962,
+ 38.397799768299997,
+ 0.0
+ ],
+ [
+ 106.38436150299999,
+ 38.397170628,
+ 0.0
+ ],
+ [
+ 106.364555394,
+ 38.391294136200003,
+ 0.0
+ ],
+ [
+ 106.33397494499999,
+ 38.368742881700001,
+ 0.0
+ ],
+ [
+ 106.308988812,
+ 38.3370905628,
+ 0.0
+ ],
+ [
+ 106.29826376699999,
+ 38.309157206400002,
+ 0.0
+ ],
+ [
+ 106.29973991,
+ 38.292599441199997,
+ 0.0
+ ],
+ [
+ 106.31844439299999,
+ 38.263143854699997,
+ 0.0
+ ],
+ [
+ 106.468302354,
+ 38.376735658699999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2888,
+ "name": "Yinchuan Airport",
+ "country": "CN",
+ "city": "Yinchuan",
+ "height": 0,
+ "level": 2,
+ "lat": "38.284293779944",
+ "lng": "106.365293729058",
+ "radius": 13652,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.251735063,
+ 38.1999125894,
+ 0.0
+ ],
+ [
+ 106.325673841,
+ 38.165524506,
+ 0.0
+ ],
+ [
+ 106.363989778,
+ 38.242184683600001,
+ 0.0
+ ],
+ [
+ 106.387049791,
+ 38.2408044485,
+ 0.0
+ ],
+ [
+ 106.426713333,
+ 38.251429965100002,
+ 0.0
+ ],
+ [
+ 106.442589052,
+ 38.262388672199997,
+ 0.0
+ ],
+ [
+ 106.47599318899999,
+ 38.304551283899997,
+ 0.0
+ ],
+ [
+ 106.486443317,
+ 38.330197913699998,
+ 0.0
+ ],
+ [
+ 106.485707577,
+ 38.346786117800001,
+ 0.0
+ ],
+ [
+ 106.468302354,
+ 38.376735658699999,
+ 0.0
+ ],
+ [
+ 106.31844439299999,
+ 38.263143854699997,
+ 0.0
+ ],
+ [
+ 106.251735063,
+ 38.1999125894,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2888,
+ "name": "Yinchuan Airport",
+ "country": "CN",
+ "city": "Yinchuan",
+ "height": 120,
+ "level": 2,
+ "lat": "38.3215587492963",
+ "lng": "106.39363929704",
+ "radius": 24124,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.360141672,
+ 38.106206113799999,
+ 120.0
+ ],
+ [
+ 106.164880851,
+ 38.1998801875,
+ 120.0
+ ],
+ [
+ 106.426560656,
+ 38.536969883200001,
+ 120.0
+ ],
+ [
+ 106.622731556,
+ 38.443295810800002,
+ 120.0
+ ],
+ [
+ 106.360141672,
+ 38.106206113799999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7039,
+ "name": "Yulin Airport",
+ "country": "CN",
+ "city": "Yulin",
+ "height": 0,
+ "level": 2,
+ "lat": "38.312709567238",
+ "lng": "109.615470087116",
+ "radius": 13570,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.617343152,
+ 38.190676940899998,
+ 0.0
+ ],
+ [
+ 109.731598965,
+ 38.231579247600003,
+ 0.0
+ ],
+ [
+ 109.658242722,
+ 38.3014311393,
+ 0.0
+ ],
+ [
+ 109.67559877,
+ 38.321629216300003,
+ 0.0
+ ],
+ [
+ 109.681236357,
+ 38.337627453400003,
+ 0.0
+ ],
+ [
+ 109.681404183,
+ 38.354225170600003,
+ 0.0
+ ],
+ [
+ 109.676087131,
+ 38.370291285199997,
+ 0.0
+ ],
+ [
+ 109.662709305,
+ 38.395375531200003,
+ 0.0
+ ],
+ [
+ 109.64044058499999,
+ 38.419960069200002,
+ 0.0
+ ],
+ [
+ 109.60264804099999,
+ 38.434336366099998,
+ 0.0
+ ],
+ [
+ 109.599083986,
+ 38.283964974200003,
+ 0.0
+ ],
+ [
+ 109.617343152,
+ 38.190676940899998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7039,
+ "name": "Yulin Airport",
+ "country": "CN",
+ "city": "Yulin",
+ "height": 0,
+ "level": 2,
+ "lat": "38.4025948283343",
+ "lng": "109.564072467664",
+ "radius": 13539,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.60264804099999,
+ 38.434336366099998,
+ 0.0
+ ],
+ [
+ 109.56937894399999,
+ 38.524290427499999,
+ 0.0
+ ],
+ [
+ 109.451730164,
+ 38.486768997,
+ 0.0
+ ],
+ [
+ 109.525092645,
+ 38.416920178600002,
+ 0.0
+ ],
+ [
+ 109.504911258,
+ 38.3895655038,
+ 0.0
+ ],
+ [
+ 109.501913181,
+ 38.3731344905,
+ 0.0
+ ],
+ [
+ 109.504441767,
+ 38.3566550838,
+ 0.0
+ ],
+ [
+ 109.522271006,
+ 38.321328800800003,
+ 0.0
+ ],
+ [
+ 109.540970228,
+ 38.300928929400001,
+ 0.0
+ ],
+ [
+ 109.558211877,
+ 38.291316520899997,
+ 0.0
+ ],
+ [
+ 109.599083986,
+ 38.283964974200003,
+ 0.0
+ ],
+ [
+ 109.60264804099999,
+ 38.434336366099998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7039,
+ "name": "Yulin Airport",
+ "country": "CN",
+ "city": "Yulin",
+ "height": 120,
+ "level": 2,
+ "lat": "38.3570420227343",
+ "lng": "109.593095537003",
+ "radius": 23576,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.791355784,
+ 38.213037927599999,
+ 120.0
+ ],
+ [
+ 109.579397056,
+ 38.145288325,
+ 120.0
+ ],
+ [
+ 109.39440968,
+ 38.501019941599999,
+ 120.0
+ ],
+ [
+ 109.607412411,
+ 38.568769543099997,
+ 120.0
+ ],
+ [
+ 109.791355784,
+ 38.213037927599999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001384,
+ "name": "Yulin Airport",
+ "country": "CN",
+ "city": "Yulin",
+ "height": 500,
+ "level": 2,
+ "lat": "38.35669",
+ "lng": "109.592737",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.592737,
+ 38.807109945904543,
+ 500.0
+ ],
+ [
+ 109.692683781392034,
+ 38.800224845009794,
+ 500.0
+ ],
+ [
+ 109.789537805948157,
+ 38.779782598131796,
+ 500.0
+ ],
+ [
+ 109.880307219558105,
+ 38.746415418072182,
+ 500.0
+ ],
+ [
+ 109.962198020745547,
+ 38.70115408451553,
+ 500.0
+ ],
+ [
+ 110.032703346283043,
+ 38.645394522550895,
+ 500.0
+ ],
+ [
+ 110.089681837651725,
+ 38.580852835025439,
+ 500.0
+ ],
+ [
+ 110.131422457532523,
+ 38.509510478911558,
+ 500.0
+ ],
+ [
+ 110.156693855024628,
+ 38.433551586067658,
+ 500.0
+ ],
+ [
+ 110.164777146476339,
+ 38.355294634825711,
+ 500.0
+ ],
+ [
+ 110.155481723243909,
+ 38.277120780579061,
+ 500.0
+ ],
+ [
+ 110.129144367612824,
+ 38.201401158641829,
+ 500.0
+ ],
+ [
+ 110.086612518968622,
+ 38.130425394440515,
+ 500.0
+ ],
+ [
+ 110.029212967127222,
+ 38.066333411054835,
+ 500.0
+ ],
+ [
+ 109.958707557802029,
+ 38.01105242947304,
+ 500.0
+ ],
+ [
+ 109.87723768871713,
+ 37.96624082868604,
+ 500.0
+ ],
+ [
+ 109.787259474771432,
+ 37.933240284402473,
+ 500.0
+ ],
+ [
+ 109.691471492141972,
+ 37.913037347004064,
+ 500.0
+ ],
+ [
+ 109.592737,
+ 37.906235358338243,
+ 500.0
+ ],
+ [
+ 109.494002507858028,
+ 37.913037347004064,
+ 500.0
+ ],
+ [
+ 109.398214525228568,
+ 37.933240284402473,
+ 500.0
+ ],
+ [
+ 109.308236311282869,
+ 37.96624082868604,
+ 500.0
+ ],
+ [
+ 109.22676644219797,
+ 38.01105242947304,
+ 500.0
+ ],
+ [
+ 109.156261032872777,
+ 38.066333411054835,
+ 500.0
+ ],
+ [
+ 109.098861481031378,
+ 38.130425394440515,
+ 500.0
+ ],
+ [
+ 109.056329632387175,
+ 38.201401158641829,
+ 500.0
+ ],
+ [
+ 109.02999227675609,
+ 38.277120780579061,
+ 500.0
+ ],
+ [
+ 109.02069685352366,
+ 38.355294634825711,
+ 500.0
+ ],
+ [
+ 109.028780144975372,
+ 38.433551586067658,
+ 500.0
+ ],
+ [
+ 109.054051542467477,
+ 38.509510478911558,
+ 500.0
+ ],
+ [
+ 109.095792162348275,
+ 38.580852835025439,
+ 500.0
+ ],
+ [
+ 109.152770653716956,
+ 38.645394522550895,
+ 500.0
+ ],
+ [
+ 109.223275979254453,
+ 38.70115408451553,
+ 500.0
+ ],
+ [
+ 109.305166780441894,
+ 38.746415418072182,
+ 500.0
+ ],
+ [
+ 109.395936194051842,
+ 38.779782598131796,
+ 500.0
+ ],
+ [
+ 109.492790218607965,
+ 38.800224845009794,
+ 500.0
+ ],
+ [
+ 109.592737,
+ 38.807109945904543,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001446,
+ "name": "五台山",
+ "country": "CN",
+ "city": "忻州",
+ "height": 500,
+ "level": 2,
+ "lat": "38.5970833333334",
+ "lng": "112.967916666667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.967916666666667,
+ 39.047484712073604,
+ 500.0
+ ],
+ [
+ 113.068201230115591,
+ 39.040599527606417,
+ 500.0
+ ],
+ [
+ 113.165382098003803,
+ 39.020157066307078,
+ 500.0
+ ],
+ [
+ 113.256456894282834,
+ 38.986789644505869,
+ 500.0
+ ],
+ [
+ 113.338621905445407,
+ 38.941528197298723,
+ 500.0
+ ],
+ [
+ 113.409361714208288,
+ 38.885768833806679,
+ 500.0
+ ],
+ [
+ 113.46652785183187,
+ 38.821227841487222,
+ 500.0
+ ],
+ [
+ 113.508403826702846,
+ 38.749886833421847,
+ 500.0
+ ],
+ [
+ 113.533754622528178,
+ 38.673930042802048,
+ 500.0
+ ],
+ [
+ 113.541859533741189,
+ 38.595675974479484,
+ 500.0
+ ],
+ [
+ 113.532527955393121,
+ 38.517505724347139,
+ 500.0
+ ],
+ [
+ 113.50609841865888,
+ 38.441790281278458,
+ 500.0
+ ],
+ [
+ 113.463421726313641,
+ 38.370819046863204,
+ 500.0
+ ],
+ [
+ 113.405829478153748,
+ 38.306731661883425,
+ 500.0
+ ],
+ [
+ 113.33508958378313,
+ 38.251455032740246,
+ 500.0
+ ],
+ [
+ 113.25335055199821,
+ 38.206647222005287,
+ 500.0
+ ],
+ [
+ 113.163076443462188,
+ 38.173649618487808,
+ 500.0
+ ],
+ [
+ 113.066974402090622,
+ 38.153448543989704,
+ 500.0
+ ],
+ [
+ 112.967916666666667,
+ 38.146647193213816,
+ 500.0
+ ],
+ [
+ 112.868858931242713,
+ 38.153448543989704,
+ 500.0
+ ],
+ [
+ 112.772756889871147,
+ 38.173649618487808,
+ 500.0
+ ],
+ [
+ 112.682482781335125,
+ 38.206647222005287,
+ 500.0
+ ],
+ [
+ 112.600743749550205,
+ 38.251455032740246,
+ 500.0
+ ],
+ [
+ 112.530003855179586,
+ 38.306731661883425,
+ 500.0
+ ],
+ [
+ 112.472411607019694,
+ 38.370819046863204,
+ 500.0
+ ],
+ [
+ 112.429734914674455,
+ 38.441790281278458,
+ 500.0
+ ],
+ [
+ 112.403305377940214,
+ 38.517505724347139,
+ 500.0
+ ],
+ [
+ 112.393973799592146,
+ 38.595675974479484,
+ 500.0
+ ],
+ [
+ 112.402078710805156,
+ 38.673930042802048,
+ 500.0
+ ],
+ [
+ 112.427429506630489,
+ 38.749886833421847,
+ 500.0
+ ],
+ [
+ 112.469305481501465,
+ 38.821227841487222,
+ 500.0
+ ],
+ [
+ 112.526471619125047,
+ 38.885768833806679,
+ 500.0
+ ],
+ [
+ 112.597211427887927,
+ 38.941528197298723,
+ 500.0
+ ],
+ [
+ 112.6793764390505,
+ 38.986789644505869,
+ 500.0
+ ],
+ [
+ 112.770451235329531,
+ 39.020157066307078,
+ 500.0
+ ],
+ [
+ 112.867632103217744,
+ 39.040599527606417,
+ 500.0
+ ],
+ [
+ 112.967916666666667,
+ 39.047484712073604,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33248,
+ "name": "五台山",
+ "country": "CN",
+ "city": "忻州",
+ "height": 0,
+ "level": 2,
+ "lat": "38.5832206746842",
+ "lng": "112.917421231915",
+ "radius": 13090,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.870315473,
+ 38.590622904,
+ 0.0
+ ],
+ [
+ 112.7670086,
+ 38.577382670699997,
+ 0.0
+ ],
+ [
+ 112.792841661,
+ 38.517134492399997,
+ 0.0
+ ],
+ [
+ 112.88786382799999,
+ 38.5554623385,
+ 0.0
+ ],
+ [
+ 112.91984272,
+ 38.535480232399998,
+ 0.0
+ ],
+ [
+ 112.940181482,
+ 38.530750043200001,
+ 0.0
+ ],
+ [
+ 112.96139138,
+ 38.530295082,
+ 0.0
+ ],
+ [
+ 113.010388042,
+ 38.5391534444,
+ 0.0
+ ],
+ [
+ 113.043718748,
+ 38.555565697799999,
+ 0.0
+ ],
+ [
+ 113.056285865,
+ 38.568942507300001,
+ 0.0
+ ],
+ [
+ 113.066335003,
+ 38.6009038304,
+ 0.0
+ ],
+ [
+ 112.870315473,
+ 38.590622904,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33248,
+ "name": "五台山",
+ "country": "CN",
+ "city": "忻州",
+ "height": 0,
+ "level": 2,
+ "lat": "38.6073094115558",
+ "lng": "113.021087919622",
+ "radius": 13233,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.172989736,
+ 38.615947969200001,
+ 0.0
+ ],
+ [
+ 113.143781456,
+ 38.6778761375,
+ 0.0
+ ],
+ [
+ 113.04711046,
+ 38.641210392600001,
+ 0.0
+ ],
+ [
+ 113.016883209,
+ 38.659467235,
+ 0.0
+ ],
+ [
+ 112.996515497,
+ 38.664217228299997,
+ 0.0
+ ],
+ [
+ 112.975266456,
+ 38.6646853341,
+ 0.0
+ ],
+ [
+ 112.926278619,
+ 38.6558467292,
+ 0.0
+ ],
+ [
+ 112.889758447,
+ 38.636854295399999,
+ 0.0
+ ],
+ [
+ 112.878126234,
+ 38.622964458699997,
+ 0.0
+ ],
+ [
+ 112.870315473,
+ 38.590622904,
+ 0.0
+ ],
+ [
+ 113.066335003,
+ 38.6009038304,
+ 0.0
+ ],
+ [
+ 113.172989736,
+ 38.615947969200001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33248,
+ "name": "五台山",
+ "country": "CN",
+ "city": "忻州",
+ "height": 120,
+ "level": 2,
+ "lat": "38.597047702493",
+ "lng": "112.968487518433",
+ "radius": 23496,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.181777186,
+ 38.727101103899997,
+ 120.0
+ ],
+ [
+ 113.23246062299999,
+ 38.551647588900003,
+ 120.0
+ ],
+ [
+ 112.755108409,
+ 38.467471369400002,
+ 120.0
+ ],
+ [
+ 112.704484375,
+ 38.642924884400003,
+ 120.0
+ ],
+ [
+ 113.181777186,
+ 38.727101103899997,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001419,
+ "name": "Shijiazhuang Zhengding International Airport",
+ "country": "CN",
+ "city": "Shijiazhuang",
+ "height": 500,
+ "level": 2,
+ "lat": "38.280833",
+ "lng": "114.696667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.696667,
+ 38.731258797595004,
+ 500.0
+ ],
+ [
+ 114.796508030286788,
+ 38.72437372267138,
+ 500.0
+ ],
+ [
+ 114.893259728222787,
+ 38.703931542314606,
+ 500.0
+ ],
+ [
+ 114.983933533725803,
+ 38.670564436832542,
+ 500.0
+ ],
+ [
+ 115.065738485837571,
+ 38.625303137134381,
+ 500.0
+ ],
+ [
+ 115.136170399381569,
+ 38.569543510556485,
+ 500.0
+ ],
+ [
+ 115.193090141930043,
+ 38.505001602021977,
+ 500.0
+ ],
+ [
+ 115.234788383886283,
+ 38.433658819539886,
+ 500.0
+ ],
+ [
+ 115.260034922054501,
+ 38.357699263217533,
+ 500.0
+ ],
+ [
+ 115.268111443361462,
+ 38.279441403141455,
+ 500.0
+ ],
+ [
+ 115.258827338184631,
+ 38.201266413484852,
+ 500.0
+ ],
+ [
+ 115.232518841427492,
+ 38.125545475655606,
+ 500.0
+ ],
+ [
+ 115.190032339590488,
+ 38.054568285488863,
+ 500.0
+ ],
+ [
+ 115.132693116659411,
+ 37.9904748548378,
+ 500.0
+ ],
+ [
+ 115.062261119892824,
+ 37.935192503604711,
+ 500.0
+ ],
+ [
+ 114.980875520659268,
+ 37.890379710263289,
+ 500.0
+ ],
+ [
+ 114.890989946134113,
+ 37.857378240720209,
+ 500.0
+ ],
+ [
+ 114.795300290009621,
+ 37.837174717218495,
+ 500.0
+ ],
+ [
+ 114.696667,
+ 37.830372527864675,
+ 500.0
+ ],
+ [
+ 114.598033709990389,
+ 37.837174717218495,
+ 500.0
+ ],
+ [
+ 114.502344053865897,
+ 37.857378240720209,
+ 500.0
+ ],
+ [
+ 114.412458479340742,
+ 37.890379710263289,
+ 500.0
+ ],
+ [
+ 114.331072880107186,
+ 37.935192503604711,
+ 500.0
+ ],
+ [
+ 114.260640883340599,
+ 37.9904748548378,
+ 500.0
+ ],
+ [
+ 114.203301660409522,
+ 38.054568285488863,
+ 500.0
+ ],
+ [
+ 114.160815158572518,
+ 38.125545475655606,
+ 500.0
+ ],
+ [
+ 114.134506661815379,
+ 38.201266413484852,
+ 500.0
+ ],
+ [
+ 114.125222556638548,
+ 38.279441403141455,
+ 500.0
+ ],
+ [
+ 114.133299077945509,
+ 38.357699263217533,
+ 500.0
+ ],
+ [
+ 114.158545616113727,
+ 38.433658819539886,
+ 500.0
+ ],
+ [
+ 114.200243858069967,
+ 38.505001602021977,
+ 500.0
+ ],
+ [
+ 114.257163600618441,
+ 38.569543510556485,
+ 500.0
+ ],
+ [
+ 114.327595514162439,
+ 38.625303137134381,
+ 500.0
+ ],
+ [
+ 114.409400466274207,
+ 38.670564436832542,
+ 500.0
+ ],
+ [
+ 114.500074271777223,
+ 38.703931542314606,
+ 500.0
+ ],
+ [
+ 114.596825969713223,
+ 38.72437372267138,
+ 500.0
+ ],
+ [
+ 114.696667,
+ 38.731258797595004,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8342,
+ "name": "Shijiazhuang Zhengding International Airport",
+ "country": "CN",
+ "city": "Shijiazhuang",
+ "height": 0,
+ "level": 2,
+ "lat": "38.3185622857841",
+ "lng": "114.668779889166",
+ "radius": 13649,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.66893185799999,
+ 38.357828841299998,
+ 0.0
+ ],
+ [
+ 114.623925535,
+ 38.436170481300003,
+ 0.0
+ ],
+ [
+ 114.551729462,
+ 38.4000728189,
+ 0.0
+ ],
+ [
+ 114.623400444,
+ 38.335104727699999,
+ 0.0
+ ],
+ [
+ 114.604308543,
+ 38.305641758599997,
+ 0.0
+ ],
+ [
+ 114.602694497,
+ 38.289091925199997,
+ 0.0
+ ],
+ [
+ 114.606592238,
+ 38.272778126399999,
+ 0.0
+ ],
+ [
+ 114.615732724,
+ 38.257811597699998,
+ 0.0
+ ],
+ [
+ 114.66372129,
+ 38.213667576600002,
+ 0.0
+ ],
+ [
+ 114.682602061,
+ 38.206223935,
+ 0.0
+ ],
+ [
+ 114.72437541799999,
+ 38.2038342954,
+ 0.0
+ ],
+ [
+ 114.66893185799999,
+ 38.357828841299998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8342,
+ "name": "Shijiazhuang Zhengding International Airport",
+ "country": "CN",
+ "city": "Shijiazhuang",
+ "height": 0,
+ "level": 2,
+ "lat": "38.2431628423863",
+ "lng": "114.724832987555",
+ "radius": 13651,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.769407688,
+ 38.1254970074,
+ 0.0
+ ],
+ [
+ 114.841598713,
+ 38.161595222,
+ 0.0
+ ],
+ [
+ 114.769930698,
+ 38.226563800400001,
+ 0.0
+ ],
+ [
+ 114.78898350599999,
+ 38.255932223800002,
+ 0.0
+ ],
+ [
+ 114.79063632099999,
+ 38.2724796539,
+ 0.0
+ ],
+ [
+ 114.786777052,
+ 38.288799085500003,
+ 0.0
+ ],
+ [
+ 114.77766527599999,
+ 38.303777860700002,
+ 0.0
+ ],
+ [
+ 114.729693482,
+ 38.347946108199999,
+ 0.0
+ ],
+ [
+ 114.690064167,
+ 38.3587828565,
+ 0.0
+ ],
+ [
+ 114.66893185799999,
+ 38.357828841299998,
+ 0.0
+ ],
+ [
+ 114.72437541799999,
+ 38.2038342954,
+ 0.0
+ ],
+ [
+ 114.769407688,
+ 38.1254970074,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8342,
+ "name": "Shijiazhuang Zhengding International Airport",
+ "country": "CN",
+ "city": "Shijiazhuang",
+ "height": 120,
+ "level": 2,
+ "lat": "38.2806728218866",
+ "lng": "114.69633710475",
+ "radius": 23847,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.939465814,
+ 38.1830950266,
+ 120.0
+ ],
+ [
+ 114.75959281199999,
+ 38.072052774900001,
+ 120.0
+ ],
+ [
+ 114.452962087,
+ 38.378374727299999,
+ 120.0
+ ],
+ [
+ 114.633595646,
+ 38.489416977899999,
+ 120.0
+ ],
+ [
+ 114.939465814,
+ 38.1830950266,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025591,
+ "name": "塔什库尔干红其拉甫机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "37.6627240447033",
+ "lng": "75.2929156722101",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.2929156722101,
+ 38.113197388037229,
+ 500.0
+ ],
+ [
+ 75.391909726477039,
+ 38.106312517849638,
+ 500.0
+ ],
+ [
+ 75.487841873100706,
+ 38.085870859941494,
+ 500.0
+ ],
+ [
+ 75.577749932316792,
+ 38.052504332907994,
+ 500.0
+ ],
+ [
+ 75.658867293922455,
+ 38.007243274848229,
+ 500.0
+ ],
+ [
+ 75.72871122150643,
+ 37.951483088080373,
+ 500.0
+ ],
+ [
+ 75.78516041269755,
+ 37.886939351301827,
+ 500.0
+ ],
+ [
+ 75.826519217227712,
+ 37.815593078726707,
+ 500.0
+ ],
+ [
+ 75.851566626643375,
+ 37.739628115646802,
+ 500.0
+ ],
+ [
+ 75.859588900622697,
+ 37.66136286707227,
+ 500.0
+ ],
+ [
+ 75.850395424514957,
+ 37.583178660230459,
+ 500.0
+ ],
+ [
+ 75.824318051527484,
+ 37.507447050035417,
+ 500.0
+ ],
+ [
+ 75.782194737110103,
+ 37.436458302065887,
+ 500.0
+ ],
+ [
+ 75.725338705638805,
+ 37.372353146114442,
+ 500.0
+ ],
+ [
+ 75.655494699278137,
+ 37.31705970180407,
+ 500.0
+ ],
+ [
+ 75.574784057259805,
+ 37.272237251804341,
+ 500.0
+ ],
+ [
+ 75.485640480572101,
+ 37.239228291099757,
+ 500.0
+ ],
+ [
+ 75.390738376296909,
+ 37.219020022767367,
+ 500.0
+ ],
+ [
+ 75.2929156722101,
+ 37.21221620880285,
+ 500.0
+ ],
+ [
+ 75.195092968123291,
+ 37.219020022767367,
+ 500.0
+ ],
+ [
+ 75.100190863848098,
+ 37.239228291099757,
+ 500.0
+ ],
+ [
+ 75.011047287160395,
+ 37.272237251804341,
+ 500.0
+ ],
+ [
+ 74.930336645142063,
+ 37.31705970180407,
+ 500.0
+ ],
+ [
+ 74.860492638781395,
+ 37.372353146114442,
+ 500.0
+ ],
+ [
+ 74.803636607310096,
+ 37.436458302065887,
+ 500.0
+ ],
+ [
+ 74.761513292892715,
+ 37.507447050035417,
+ 500.0
+ ],
+ [
+ 74.735435919905242,
+ 37.583178660230459,
+ 500.0
+ ],
+ [
+ 74.726242443797503,
+ 37.66136286707227,
+ 500.0
+ ],
+ [
+ 74.734264717776824,
+ 37.739628115646802,
+ 500.0
+ ],
+ [
+ 74.759312127192487,
+ 37.815593078726707,
+ 500.0
+ ],
+ [
+ 74.800670931722649,
+ 37.886939351301827,
+ 500.0
+ ],
+ [
+ 74.85712012291377,
+ 37.951483088080373,
+ 500.0
+ ],
+ [
+ 74.926964050497745,
+ 38.007243274848229,
+ 500.0
+ ],
+ [
+ 75.008081412103408,
+ 38.052504332907994,
+ 500.0
+ ],
+ [
+ 75.097989471319494,
+ 38.085870859941494,
+ 500.0
+ ],
+ [
+ 75.193921617943161,
+ 38.106312517849638,
+ 500.0
+ ],
+ [
+ 75.2929156722101,
+ 38.113197388037229,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025590,
+ "name": "塔什库尔干红其拉甫机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "37.6157229543391",
+ "lng": "75.3132055370838",
+ "radius": 13403,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.304606373699997,
+ 37.5797895774,
+ 0.0
+ ],
+ [
+ 75.332025478199995,
+ 37.496112631599999,
+ 0.0
+ ],
+ [
+ 75.408695945,
+ 37.521911478900002,
+ 0.0
+ ],
+ [
+ 75.351910062300007,
+ 37.595692890099997,
+ 0.0
+ ],
+ [
+ 75.367919504400007,
+ 37.608512403600002,
+ 0.0
+ ],
+ [
+ 75.383184032200006,
+ 37.639123868900001,
+ 0.0
+ ],
+ [
+ 75.3828387354,
+ 37.655719856200001,
+ 0.0
+ ],
+ [
+ 75.377078380399993,
+ 37.67167944,
+ 0.0
+ ],
+ [
+ 75.353245086599998,
+ 37.710052219200001,
+ 0.0
+ ],
+ [
+ 75.319677547599994,
+ 37.7294996993,
+ 0.0
+ ],
+ [
+ 75.278306205600003,
+ 37.733052458,
+ 0.0
+ ],
+ [
+ 75.304606373699997,
+ 37.5797895774,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025590,
+ "name": "塔什库尔干红其拉甫机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "37.6970879979095",
+ "lng": "75.2695709433156",
+ "radius": 13402,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.250798114800006,
+ 37.8167055256,
+ 0.0
+ ],
+ [
+ 75.173860234200006,
+ 37.790899708399998,
+ 0.0
+ ],
+ [
+ 75.230936873,
+ 37.717151392399998,
+ 0.0
+ ],
+ [
+ 75.214832013600002,
+ 37.704218849199997,
+ 0.0
+ ],
+ [
+ 75.199687232200006,
+ 37.673565984200003,
+ 0.0
+ ],
+ [
+ 75.200108027799999,
+ 37.656971087800002,
+ 0.0
+ ],
+ [
+ 75.205938388800007,
+ 37.641027706599999,
+ 0.0
+ ],
+ [
+ 75.229783990399994,
+ 37.602759414799998,
+ 0.0
+ ],
+ [
+ 75.263317672699998,
+ 37.583337261499999,
+ 0.0
+ ],
+ [
+ 75.304606373699997,
+ 37.5797895774,
+ 0.0
+ ],
+ [
+ 75.278306205600003,
+ 37.733052458,
+ 0.0
+ ],
+ [
+ 75.250798114800006,
+ 37.8167055256,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025590,
+ "name": "塔什库尔干红其拉甫机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "37.656353355395",
+ "lng": "75.2912559591471",
+ "radius": 23597,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.091621100099999,
+ 37.798142365499999,
+ 120.0
+ ],
+ [
+ 75.301250902,
+ 37.868422529299998,
+ 120.0
+ ],
+ [
+ 75.490491478899997,
+ 37.5145480216,
+ 120.0
+ ],
+ [
+ 75.281858414499993,
+ 37.444267856800003,
+ 120.0
+ ],
+ [
+ 75.091621100099999,
+ 37.798142365499999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9388,
+ "name": "Nanjiang:yecheng",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "37.88",
+ "lng": "77.43",
+ "radius": 5000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 77.43,
+ 37.925047223182496,
+ 0.0
+ ],
+ [
+ 77.439875058715756,
+ 37.924362443187043,
+ 0.0
+ ],
+ [
+ 77.449449533460182,
+ 37.922328946851096,
+ 0.0
+ ],
+ [
+ 77.458432038094571,
+ 37.919008627329397,
+ 0.0
+ ],
+ [
+ 77.466549294818492,
+ 37.914502533814449,
+ 0.0
+ ],
+ [
+ 77.473554479711495,
+ 37.908947781495677,
+ 0.0
+ ],
+ [
+ 77.479234744641772,
+ 37.902513361226461,
+ 0.0
+ ],
+ [
+ 77.483417684316379,
+ 37.895394979148953,
+ 0.0
+ ],
+ [
+ 77.485976552037698,
+ 37.887809086179779,
+ 0.0
+ ],
+ [
+ 77.486834068471595,
+ 37.87998628167626,
+ 0.0
+ ],
+ [
+ 77.485964712856529,
+ 37.872164294067311,
+ 0.0
+ ],
+ [
+ 77.48339543393142,
+ 37.864580753252582,
+ 0.0
+ ],
+ [
+ 77.47920476677379,
+ 37.8574659748855,
+ 0.0
+ ],
+ [
+ 77.473520390130275,
+ 37.85103597522275,
+ 0.0
+ ],
+ [
+ 77.466515205229243,
+ 37.845485927216593,
+ 0.0
+ ],
+ [
+ 77.458402060206268,
+ 37.840984254310861,
+ 0.0
+ ],
+ [
+ 77.449427283052103,
+ 37.83766753850383,
+ 0.0
+ ],
+ [
+ 77.439863219519509,
+ 37.835636394326045,
+ 0.0
+ ],
+ [
+ 77.43,
+ 37.834952431226661,
+ 0.0
+ ],
+ [
+ 77.420136780480505,
+ 37.835636394326045,
+ 0.0
+ ],
+ [
+ 77.410572716947911,
+ 37.83766753850383,
+ 0.0
+ ],
+ [
+ 77.401597939793746,
+ 37.840984254310861,
+ 0.0
+ ],
+ [
+ 77.393484794770771,
+ 37.845485927216593,
+ 0.0
+ ],
+ [
+ 77.386479609869738,
+ 37.85103597522275,
+ 0.0
+ ],
+ [
+ 77.380795233226223,
+ 37.8574659748855,
+ 0.0
+ ],
+ [
+ 77.376604566068593,
+ 37.864580753252582,
+ 0.0
+ ],
+ [
+ 77.374035287143485,
+ 37.872164294067311,
+ 0.0
+ ],
+ [
+ 77.373165931528419,
+ 37.87998628167626,
+ 0.0
+ ],
+ [
+ 77.374023447962315,
+ 37.887809086179779,
+ 0.0
+ ],
+ [
+ 77.376582315683635,
+ 37.895394979148953,
+ 0.0
+ ],
+ [
+ 77.380765255358241,
+ 37.902513361226461,
+ 0.0
+ ],
+ [
+ 77.386445520288518,
+ 37.908947781495677,
+ 0.0
+ ],
+ [
+ 77.393450705181522,
+ 37.914502533814449,
+ 0.0
+ ],
+ [
+ 77.401567961905442,
+ 37.919008627329397,
+ 0.0
+ ],
+ [
+ 77.410550466539831,
+ 37.922328946851096,
+ 0.0
+ ],
+ [
+ 77.420124941284257,
+ 37.924362443187043,
+ 0.0
+ ],
+ [
+ 77.43,
+ 37.925047223182496,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9387,
+ "name": "Nanjiang:hetian",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "37.11",
+ "lng": "79.93",
+ "radius": 7000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 79.93,
+ 37.173074259118877,
+ 0.0
+ ],
+ [
+ 79.943686839970695,
+ 37.172115234759865,
+ 0.0
+ ],
+ [
+ 79.956956801342983,
+ 37.169267371669648,
+ 0.0
+ ],
+ [
+ 79.969405794548834,
+ 37.164617403732493,
+ 0.0
+ ],
+ [
+ 79.980654904608514,
+ 37.15830692877001,
+ 0.0
+ ],
+ [
+ 79.990361983831306,
+ 37.150528068514532,
+ 0.0
+ ],
+ [
+ 79.998232089792012,
+ 37.14151758496665,
+ 0.0
+ ],
+ [
+ 80.004026446399067,
+ 37.131549637511327,
+ 0.0
+ ],
+ [
+ 80.007569655940529,
+ 37.120927406802181,
+ 0.0
+ ],
+ [
+ 80.008754948287788,
+ 37.109973845467096,
+ 0.0
+ ],
+ [
+ 80.007547317553943,
+ 37.099021841158972,
+ 0.0
+ ],
+ [
+ 80.003984463955561,
+ 37.088404093731221,
+ 0.0
+ ],
+ [
+ 79.998175526979495,
+ 37.078443015064188,
+ 0.0
+ ],
+ [
+ 79.990297662947057,
+ 37.069440957336894,
+ 0.0
+ ],
+ [
+ 79.980590583695431,
+ 37.061671063657755,
+ 0.0
+ ],
+ [
+ 79.96934923166333,
+ 37.055369014525915,
+ 0.0
+ ],
+ [
+ 79.9569148188165,
+ 37.050725915392441,
+ 0.0
+ ],
+ [
+ 79.943664501529938,
+ 37.047882535597161,
+ 0.0
+ ],
+ [
+ 79.93,
+ 37.046925068270468,
+ 0.0
+ ],
+ [
+ 79.916335498470076,
+ 37.047882535597161,
+ 0.0
+ ],
+ [
+ 79.903085181183513,
+ 37.050725915392441,
+ 0.0
+ ],
+ [
+ 79.890650768336684,
+ 37.055369014525915,
+ 0.0
+ ],
+ [
+ 79.879409416304583,
+ 37.061671063657755,
+ 0.0
+ ],
+ [
+ 79.869702337052956,
+ 37.069440957336894,
+ 0.0
+ ],
+ [
+ 79.861824473020519,
+ 37.078443015064188,
+ 0.0
+ ],
+ [
+ 79.856015536044453,
+ 37.088404093731221,
+ 0.0
+ ],
+ [
+ 79.852452682446071,
+ 37.099021841158972,
+ 0.0
+ ],
+ [
+ 79.851245051712226,
+ 37.109973845467096,
+ 0.0
+ ],
+ [
+ 79.852430344059485,
+ 37.120927406802181,
+ 0.0
+ ],
+ [
+ 79.855973553600947,
+ 37.131549637511327,
+ 0.0
+ ],
+ [
+ 79.861767910208002,
+ 37.14151758496665,
+ 0.0
+ ],
+ [
+ 79.869638016168707,
+ 37.150528068514532,
+ 0.0
+ ],
+ [
+ 79.8793450953915,
+ 37.15830692877001,
+ 0.0
+ ],
+ [
+ 79.89059420545118,
+ 37.164617403732493,
+ 0.0
+ ],
+ [
+ 79.903043198657031,
+ 37.169267371669648,
+ 0.0
+ ],
+ [
+ 79.916313160029318,
+ 37.172115234759865,
+ 0.0
+ ],
+ [
+ 79.93,
+ 37.173074259118877,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001472,
+ "name": "Zhongwei Shapotou Airport",
+ "country": "CN",
+ "city": "Zhongwei",
+ "height": 500,
+ "level": 2,
+ "lat": "37.572375",
+ "lng": "105.155111",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.155111,
+ 38.022855272042193,
+ 500.0
+ ],
+ [
+ 105.253983417617818,
+ 38.01597043078737,
+ 500.0
+ ],
+ [
+ 105.349797865792738,
+ 37.995528846421209,
+ 500.0
+ ],
+ [
+ 105.43959595303663,
+ 37.962162399731511,
+ 500.0
+ ],
+ [
+ 105.520614566066811,
+ 37.916901372077106,
+ 500.0
+ ],
+ [
+ 105.590374048775146,
+ 37.86114109861856,
+ 500.0
+ ],
+ [
+ 105.646755659551388,
+ 37.796597090746111,
+ 500.0
+ ],
+ [
+ 105.688065712921187,
+ 37.725250305867675,
+ 500.0
+ ],
+ [
+ 105.713084521270545,
+ 37.649284552596143,
+ 500.0
+ ],
+ [
+ 105.721099001377922,
+ 37.571018226733592,
+ 500.0
+ ],
+ [
+ 105.711918538248824,
+ 37.492832677877821,
+ 500.0
+ ],
+ [
+ 105.685874356137617,
+ 37.417099515226894,
+ 500.0
+ ],
+ [
+ 105.643803199903843,
+ 37.346109087050621,
+ 500.0
+ ],
+ [
+ 105.587016562108872,
+ 37.282002227282177,
+ 500.0
+ ],
+ [
+ 105.517257001250755,
+ 37.226707171515336,
+ 500.0
+ ],
+ [
+ 105.436643295506883,
+ 37.181883319021736,
+ 500.0
+ ],
+ [
+ 105.347606283985854,
+ 37.148873270487641,
+ 500.0
+ ],
+ [
+ 105.25281728772255,
+ 37.128664313195685,
+ 500.0
+ ],
+ [
+ 105.155111,
+ 37.121860263344246,
+ 500.0
+ ],
+ [
+ 105.05740471227746,
+ 37.128664313195685,
+ 500.0
+ ],
+ [
+ 104.962615716014156,
+ 37.148873270487641,
+ 500.0
+ ],
+ [
+ 104.873578704493127,
+ 37.181883319021736,
+ 500.0
+ ],
+ [
+ 104.792964998749255,
+ 37.226707171515336,
+ 500.0
+ ],
+ [
+ 104.723205437891139,
+ 37.282002227282177,
+ 500.0
+ ],
+ [
+ 104.666418800096167,
+ 37.346109087050621,
+ 500.0
+ ],
+ [
+ 104.624347643862393,
+ 37.417099515226894,
+ 500.0
+ ],
+ [
+ 104.598303461751186,
+ 37.492832677877821,
+ 500.0
+ ],
+ [
+ 104.589122998622088,
+ 37.571018226733592,
+ 500.0
+ ],
+ [
+ 104.597137478729465,
+ 37.649284552596143,
+ 500.0
+ ],
+ [
+ 104.622156287078823,
+ 37.725250305867675,
+ 500.0
+ ],
+ [
+ 104.663466340448622,
+ 37.796597090746111,
+ 500.0
+ ],
+ [
+ 104.719847951224864,
+ 37.86114109861856,
+ 500.0
+ ],
+ [
+ 104.789607433933199,
+ 37.916901372077106,
+ 500.0
+ ],
+ [
+ 104.87062604696338,
+ 37.962162399731511,
+ 500.0
+ ],
+ [
+ 104.960424134207273,
+ 37.995528846421209,
+ 500.0
+ ],
+ [
+ 105.056238582382193,
+ 38.01597043078737,
+ 500.0
+ ],
+ [
+ 105.155111,
+ 38.022855272042193,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8775,
+ "name": "Zhongwei Shapotou Airport",
+ "country": "CN",
+ "city": "Zhongwei",
+ "height": 0,
+ "level": 2,
+ "lat": "37.5782072093632",
+ "lng": "105.210665792054",
+ "radius": 13166,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.354292126,
+ 37.545663014600002,
+ 0.0
+ ],
+ [
+ 105.354255959,
+ 37.611025190900001,
+ 0.0
+ ],
+ [
+ 105.247561314,
+ 37.596040539199997,
+ 0.0
+ ],
+ [
+ 105.224699788,
+ 37.623380609599998,
+ 0.0
+ ],
+ [
+ 105.20732954899999,
+ 37.632667397600002,
+ 0.0
+ ],
+ [
+ 105.166603393,
+ 37.639231233700002,
+ 0.0
+ ],
+ [
+ 105.102697711,
+ 37.629316042399999,
+ 0.0
+ ],
+ [
+ 105.08531109,
+ 37.620049422400001,
+ 0.0
+ ],
+ [
+ 105.071549692,
+ 37.607532636599998,
+ 0.0
+ ],
+ [
+ 105.062350843,
+ 37.592620075600003,
+ 0.0
+ ],
+ [
+ 105.240580661,
+ 37.540540804499997,
+ 0.0
+ ],
+ [
+ 105.249300923,
+ 37.5556305705,
+ 0.0
+ ],
+ [
+ 105.354292126,
+ 37.545663014600002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8775,
+ "name": "Zhongwei Shapotou Airport",
+ "country": "CN",
+ "city": "Zhongwei",
+ "height": 0,
+ "level": 2,
+ "lat": "37.5716874681771",
+ "lng": "105.096528012802",
+ "radius": 13162,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.062350843,
+ 37.592620075600003,
+ 0.0
+ ],
+ [
+ 104.952355165,
+ 37.6026589513,
+ 0.0
+ ],
+ [
+ 104.959177954,
+ 37.532256183800001,
+ 0.0
+ ],
+ [
+ 105.062438559,
+ 37.550626484299997,
+ 0.0
+ ],
+ [
+ 105.085365659,
+ 37.523247463399997,
+ 0.0
+ ],
+ [
+ 105.102725171,
+ 37.513978058200003,
+ 0.0
+ ],
+ [
+ 105.143388224,
+ 37.507435029100002,
+ 0.0
+ ],
+ [
+ 105.210176874,
+ 37.518138383100002,
+ 0.0
+ ],
+ [
+ 105.227235952,
+ 37.527753387200001,
+ 0.0
+ ],
+ [
+ 105.240580661,
+ 37.540540804499997,
+ 0.0
+ ],
+ [
+ 105.062350843,
+ 37.592620075600003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8775,
+ "name": "Zhongwei Shapotou Airport",
+ "country": "CN",
+ "city": "Zhongwei",
+ "height": 120,
+ "level": 2,
+ "lat": "37.5728771160893",
+ "lng": "105.155078745807",
+ "radius": 23628,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.380937016,
+ 37.687587041100002,
+ 120.0
+ ],
+ [
+ 105.410786818,
+ 37.509284365900001,
+ 120.0
+ ],
+ [
+ 104.929177361,
+ 37.458651005500002,
+ 120.0
+ ],
+ [
+ 104.899347847,
+ 37.636953680700003,
+ 120.0
+ ],
+ [
+ 105.380937016,
+ 37.687587041100002,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001540,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Lueliang",
+ "height": 500,
+ "level": 2,
+ "lat": "37.683548",
+ "lng": "111.142161",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.142161,
+ 38.134019745598494,
+ 500.0
+ ],
+ [
+ 111.241183166998539,
+ 38.12713486870738,
+ 500.0
+ ],
+ [
+ 111.337142516143203,
+ 38.106693193749578,
+ 500.0
+ ],
+ [
+ 111.427075992111796,
+ 38.073326648050191,
+ 500.0
+ ],
+ [
+ 111.508216176485902,
+ 38.028065582810079,
+ 500.0
+ ],
+ [
+ 111.578079620932456,
+ 37.972305415855139,
+ 500.0
+ ],
+ [
+ 111.634544431240386,
+ 37.907761741425887,
+ 500.0
+ ],
+ [
+ 111.675914503046442,
+ 37.83641558685612,
+ 500.0
+ ],
+ [
+ 111.700968522635947,
+ 37.760450805911624,
+ 500.0
+ ],
+ [
+ 111.708992597830914,
+ 37.682185805735593,
+ 500.0
+ ],
+ [
+ 111.699796114072697,
+ 37.60400190839912,
+ 500.0
+ ],
+ [
+ 111.673711069942982,
+ 37.528270656293437,
+ 500.0
+ ],
+ [
+ 111.631575700690973,
+ 37.457282295917153,
+ 500.0
+ ],
+ [
+ 111.574703630953721,
+ 37.393177533031441,
+ 500.0
+ ],
+ [
+ 111.50484010758521,
+ 37.337884460496781,
+ 500.0
+ ],
+ [
+ 111.424107061724925,
+ 37.293062334073952,
+ 500.0
+ ],
+ [
+ 111.334938855792984,
+ 37.260053624353858,
+ 500.0
+ ],
+ [
+ 111.240010610110517,
+ 37.239845514980694,
+ 500.0
+ ],
+ [
+ 111.142161,
+ 37.233041755441192,
+ 500.0
+ ],
+ [
+ 111.044311389889486,
+ 37.239845514980694,
+ 500.0
+ ],
+ [
+ 110.949383144207019,
+ 37.260053624353858,
+ 500.0
+ ],
+ [
+ 110.860214938275078,
+ 37.293062334073952,
+ 500.0
+ ],
+ [
+ 110.779481892414793,
+ 37.337884460496781,
+ 500.0
+ ],
+ [
+ 110.709618369046282,
+ 37.393177533031441,
+ 500.0
+ ],
+ [
+ 110.65274629930903,
+ 37.457282295917153,
+ 500.0
+ ],
+ [
+ 110.610610930057021,
+ 37.528270656293437,
+ 500.0
+ ],
+ [
+ 110.584525885927306,
+ 37.60400190839912,
+ 500.0
+ ],
+ [
+ 110.575329402169089,
+ 37.682185805735593,
+ 500.0
+ ],
+ [
+ 110.583353477364057,
+ 37.760450805911624,
+ 500.0
+ ],
+ [
+ 110.608407496953561,
+ 37.83641558685612,
+ 500.0
+ ],
+ [
+ 110.649777568759617,
+ 37.907761741425887,
+ 500.0
+ ],
+ [
+ 110.706242379067547,
+ 37.972305415855139,
+ 500.0
+ ],
+ [
+ 110.776105823514101,
+ 38.028065582810079,
+ 500.0
+ ],
+ [
+ 110.857246007888207,
+ 38.073326648050191,
+ 500.0
+ ],
+ [
+ 110.9471794838568,
+ 38.106693193749578,
+ 500.0
+ ],
+ [
+ 111.043138833001464,
+ 38.12713486870738,
+ 500.0
+ ],
+ [
+ 111.142161,
+ 38.134019745598494,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33358,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Lueliang",
+ "height": 0,
+ "level": 2,
+ "lat": "37.6379614712907",
+ "lng": "111.150147897016",
+ "radius": 13328,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.129556509,
+ 37.605870563400003,
+ 0.0
+ ],
+ [
+ 111.127621793,
+ 37.519432708799997,
+ 0.0
+ ],
+ [
+ 111.2101598,
+ 37.5279340254,
+ 0.0
+ ],
+ [
+ 111.180458786,
+ 37.611110638500001,
+ 0.0
+ ],
+ [
+ 111.200254675,
+ 37.620058154900001,
+ 0.0
+ ],
+ [
+ 111.225348204,
+ 37.646293931899997,
+ 0.0
+ ],
+ [
+ 111.230651136,
+ 37.662352421199998,
+ 0.0
+ ],
+ [
+ 111.23052423,
+ 37.678950356400001,
+ 0.0
+ ],
+ [
+ 111.22082328899999,
+ 37.719633219199999,
+ 0.0
+ ],
+ [
+ 111.195096823,
+ 37.745503156300003,
+ 0.0
+ ],
+ [
+ 111.15644654899999,
+ 37.757723460299999,
+ 0.0
+ ],
+ [
+ 111.129556509,
+ 37.605870563400003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33358,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Lueliang",
+ "height": 0,
+ "level": 2,
+ "lat": "37.7256368022862",
+ "lng": "111.135749123113",
+ "radius": 13328,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.15840327399999,
+ 37.8441586589,
+ 0.0
+ ],
+ [
+ 111.075546718,
+ 37.835654828400003,
+ 0.0
+ ],
+ [
+ 111.10542832,
+ 37.752484799500003,
+ 0.0
+ ],
+ [
+ 111.085491065,
+ 37.7434508925,
+ 0.0
+ ],
+ [
+ 111.060472316,
+ 37.717150838099997,
+ 0.0
+ ],
+ [
+ 111.055237862,
+ 37.701077483799999,
+ 0.0
+ ],
+ [
+ 111.05544072399999,
+ 37.684480020899997,
+ 0.0
+ ],
+ [
+ 111.06521830299999,
+ 37.643897052500002,
+ 0.0
+ ],
+ [
+ 111.090963872,
+ 37.618061001699999,
+ 0.0
+ ],
+ [
+ 111.129556509,
+ 37.605870563400003,
+ 0.0
+ ],
+ [
+ 111.15644654899999,
+ 37.757723460299999,
+ 0.0
+ ],
+ [
+ 111.15840327399999,
+ 37.8441586589,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33358,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Lueliang",
+ "height": 120,
+ "level": 2,
+ "lat": "37.6817902902949",
+ "lng": "111.142901439467",
+ "radius": 23528,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.99875533,
+ 37.8600856208,
+ 120.0
+ ],
+ [
+ 111.224708473,
+ 37.883264302,
+ 120.0
+ ],
+ [
+ 111.286505842,
+ 37.503395917500001,
+ 120.0
+ ],
+ [
+ 111.06170681899999,
+ 37.480217235799998,
+ 120.0
+ ],
+ [
+ 110.99875533,
+ 37.8600856208,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7712,
+ "name": "Taiyuan Wusu Airport",
+ "country": "CN",
+ "city": "Taiyuan",
+ "height": 0,
+ "level": 2,
+ "lat": "37.7727855094623",
+ "lng": "112.586345551426",
+ "radius": 13658,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.566675161,
+ 37.807908144300001,
+ 0.0
+ ],
+ [
+ 112.493390963,
+ 37.871258228099997,
+ 0.0
+ ],
+ [
+ 112.441803287,
+ 37.817980758700003,
+ 0.0
+ ],
+ [
+ 112.535136784,
+ 37.776315993,
+ 0.0
+ ],
+ [
+ 112.530851974,
+ 37.744239819599997,
+ 0.0
+ ],
+ [
+ 112.536694952,
+ 37.728297756,
+ 0.0
+ ],
+ [
+ 112.56268281,
+ 37.702595554,
+ 0.0
+ ],
+ [
+ 112.59933191499999,
+ 37.6826058527,
+ 0.0
+ ],
+ [
+ 112.633678289,
+ 37.6718307055,
+ 0.0
+ ],
+ [
+ 112.654645947,
+ 37.671585943700002,
+ 0.0
+ ],
+ [
+ 112.693300302,
+ 37.683721508,
+ 0.0
+ ],
+ [
+ 112.566675161,
+ 37.807908144300001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7712,
+ "name": "Taiyuan Wusu Airport",
+ "country": "CN",
+ "city": "Taiyuan",
+ "height": 0,
+ "level": 2,
+ "lat": "37.7212543174892",
+ "lng": "112.676771433009",
+ "radius": 13656,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.768289193,
+ 37.622074768600001,
+ 0.0
+ ],
+ [
+ 112.819866243,
+ 37.673669624,
+ 0.0
+ ],
+ [
+ 112.724839183,
+ 37.7170744254,
+ 0.0
+ ],
+ [
+ 112.726634687,
+ 37.744430495800003,
+ 0.0
+ ],
+ [
+ 112.720507649,
+ 37.760306044399996,
+ 0.0
+ ],
+ [
+ 112.6940341,
+ 37.785709589,
+ 0.0
+ ],
+ [
+ 112.660683503,
+ 37.805719126200003,
+ 0.0
+ ],
+ [
+ 112.627019774,
+ 37.817675254900003,
+ 0.0
+ ],
+ [
+ 112.606046018,
+ 37.818669401199998,
+ 0.0
+ ],
+ [
+ 112.566675161,
+ 37.807908144300001,
+ 0.0
+ ],
+ [
+ 112.693300302,
+ 37.683721508,
+ 0.0
+ ],
+ [
+ 112.768289193,
+ 37.622074768600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7712,
+ "name": "Taiyuan Wusu Airport",
+ "country": "CN",
+ "city": "Taiyuan",
+ "height": 120,
+ "level": 2,
+ "lat": "37.7438658052632",
+ "lng": "112.62884694919",
+ "radius": 24073,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.897274343,
+ 37.701520161099999,
+ 120.0
+ ],
+ [
+ 112.76422081299999,
+ 37.5557565895,
+ 120.0
+ ],
+ [
+ 112.360340677,
+ 37.786508749200003,
+ 120.0
+ ],
+ [
+ 112.493809673,
+ 37.932272320199999,
+ 120.0
+ ],
+ [
+ 112.897274343,
+ 37.701520161099999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001344,
+ "name": "Taiyuan Wusu Airport",
+ "country": "CN",
+ "city": "Taiyuan",
+ "height": 500,
+ "level": 2,
+ "lat": "37.746401",
+ "lng": "112.629968",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.629968,
+ 38.196867921384388,
+ 500.0
+ ],
+ [
+ 112.729075196348248,
+ 38.189983024179867,
+ 500.0
+ ],
+ [
+ 112.825116821806432,
+ 38.169541297533307,
+ 500.0
+ ],
+ [
+ 112.915127172831362,
+ 38.136174695155638,
+ 500.0
+ ],
+ [
+ 112.996336386475264,
+ 38.090913607847938,
+ 500.0
+ ],
+ [
+ 113.066258861135793,
+ 38.035153500309114,
+ 500.0
+ ],
+ [
+ 113.122770912542634,
+ 37.970610013761785,
+ 500.0
+ ],
+ [
+ 113.164175062904079,
+ 37.899264215200276,
+ 500.0
+ ],
+ [
+ 113.189249075245172,
+ 37.823299984013424,
+ 500.0
+ ],
+ [
+ 113.197278598116981,
+ 37.745035733807036,
+ 500.0
+ ],
+ [
+ 113.188073017268735,
+ 37.666852771088735,
+ 500.0
+ ],
+ [
+ 113.161964771003611,
+ 37.591122600426367,
+ 500.0
+ ],
+ [
+ 113.119792940864343,
+ 37.520135410680915,
+ 500.0
+ ],
+ [
+ 113.062872362119222,
+ 37.456031835013938,
+ 500.0
+ ],
+ [
+ 112.992949808096327,
+ 37.40073988543314,
+ 500.0
+ ],
+ [
+ 112.912149000200486,
+ 37.355918736403034,
+ 500.0
+ ],
+ [
+ 112.822906301391086,
+ 37.322910784816465,
+ 500.0
+ ],
+ [
+ 112.727898989219312,
+ 37.302703155606608,
+ 500.0
+ ],
+ [
+ 112.629968,
+ 37.295899560467966,
+ 500.0
+ ],
+ [
+ 112.532037010780698,
+ 37.302703155606608,
+ 500.0
+ ],
+ [
+ 112.437029698608924,
+ 37.322910784816465,
+ 500.0
+ ],
+ [
+ 112.347786999799524,
+ 37.355918736403034,
+ 500.0
+ ],
+ [
+ 112.266986191903683,
+ 37.40073988543314,
+ 500.0
+ ],
+ [
+ 112.197063637880788,
+ 37.456031835013938,
+ 500.0
+ ],
+ [
+ 112.140143059135667,
+ 37.520135410680915,
+ 500.0
+ ],
+ [
+ 112.0979712289964,
+ 37.591122600426367,
+ 500.0
+ ],
+ [
+ 112.071862982731275,
+ 37.666852771088735,
+ 500.0
+ ],
+ [
+ 112.06265740188303,
+ 37.745035733807036,
+ 500.0
+ ],
+ [
+ 112.070686924754838,
+ 37.823299984013424,
+ 500.0
+ ],
+ [
+ 112.095760937095932,
+ 37.899264215200276,
+ 500.0
+ ],
+ [
+ 112.137165087457376,
+ 37.970610013761785,
+ 500.0
+ ],
+ [
+ 112.193677138864217,
+ 38.035153500309114,
+ 500.0
+ ],
+ [
+ 112.263599613524747,
+ 38.090913607847938,
+ 500.0
+ ],
+ [
+ 112.344808827168649,
+ 38.136174695155638,
+ 500.0
+ ],
+ [
+ 112.434819178193578,
+ 38.169541297533307,
+ 500.0
+ ],
+ [
+ 112.530860803651763,
+ 38.189983024179867,
+ 500.0
+ ],
+ [
+ 112.629968,
+ 38.196867921384388,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001390,
+ "name": "Dongying Shengli Airport",
+ "country": "CN",
+ "city": "Dongying",
+ "height": 500,
+ "level": 2,
+ "lat": "37.506138",
+ "lng": "118.788938",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.788938,
+ 37.956623348102994,
+ 500.0
+ ],
+ [
+ 118.887721589072456,
+ 37.94973852790384,
+ 500.0
+ ],
+ [
+ 118.983450084632224,
+ 37.929296997011015,
+ 500.0
+ ],
+ [
+ 119.073167861644478,
+ 37.895930608565841,
+ 500.0
+ ],
+ [
+ 119.154114360526307,
+ 37.850669602437009,
+ 500.0
+ ],
+ [
+ 119.223812174644777,
+ 37.794909264679475,
+ 500.0
+ ],
+ [
+ 119.280144432477158,
+ 37.730365057472454,
+ 500.0
+ ],
+ [
+ 119.32141888343395,
+ 37.659017896697442,
+ 500.0
+ ],
+ [
+ 119.346416804533661,
+ 37.583051564166759,
+ 500.0
+ ],
+ [
+ 119.35442559247825,
+ 37.504784448979436,
+ 500.0
+ ],
+ [
+ 119.345254632077001,
+ 37.426597917132348,
+ 500.0
+ ],
+ [
+ 119.319234688318872,
+ 37.3508636175699,
+ 500.0
+ ],
+ [
+ 119.277201622026581,
+ 37.279871959089881,
+ 500.0
+ ],
+ [
+ 119.220465661068914,
+ 37.215763851844912,
+ 500.0
+ ],
+ [
+ 119.150767769256632,
+ 37.160467616301446,
+ 500.0
+ ],
+ [
+ 119.070224854466304,
+ 37.115642737063119,
+ 500.0
+ ],
+ [
+ 118.98126566580676,
+ 37.082631892169793,
+ 500.0
+ ],
+ [
+ 118.886559270599207,
+ 37.062422430525871,
+ 500.0
+ ],
+ [
+ 118.788938,
+ 37.055618207995309,
+ 500.0
+ ],
+ [
+ 118.691316729400796,
+ 37.062422430525871,
+ 500.0
+ ],
+ [
+ 118.596610334193244,
+ 37.082631892169793,
+ 500.0
+ ],
+ [
+ 118.5076511455337,
+ 37.115642737063119,
+ 500.0
+ ],
+ [
+ 118.427108230743372,
+ 37.160467616301446,
+ 500.0
+ ],
+ [
+ 118.357410338931089,
+ 37.215763851844912,
+ 500.0
+ ],
+ [
+ 118.300674377973422,
+ 37.279871959089881,
+ 500.0
+ ],
+ [
+ 118.258641311681131,
+ 37.3508636175699,
+ 500.0
+ ],
+ [
+ 118.232621367923002,
+ 37.426597917132348,
+ 500.0
+ ],
+ [
+ 118.223450407521753,
+ 37.504784448979436,
+ 500.0
+ ],
+ [
+ 118.231459195466343,
+ 37.583051564166759,
+ 500.0
+ ],
+ [
+ 118.256457116566054,
+ 37.659017896697442,
+ 500.0
+ ],
+ [
+ 118.297731567522845,
+ 37.730365057472454,
+ 500.0
+ ],
+ [
+ 118.354063825355226,
+ 37.794909264679475,
+ 500.0
+ ],
+ [
+ 118.423761639473696,
+ 37.850669602437009,
+ 500.0
+ ],
+ [
+ 118.504708138355525,
+ 37.895930608565841,
+ 500.0
+ ],
+ [
+ 118.594425915367779,
+ 37.929296997011015,
+ 500.0
+ ],
+ [
+ 118.690154410927548,
+ 37.94973852790384,
+ 500.0
+ ],
+ [
+ 118.788938,
+ 37.956623348102994,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 684,
+ "name": "Dongying Shengli Airport",
+ "country": "CN",
+ "city": "Dongying",
+ "height": 0,
+ "level": 2,
+ "lat": "37.556792447134",
+ "lng": "118.777126628448",
+ "radius": 12905,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.81292329599999,
+ 37.582452164400003,
+ 0.0
+ ],
+ [
+ 118.82122227799999,
+ 37.667472336700001,
+ 0.0
+ ],
+ [
+ 118.738668204,
+ 37.664021616600003,
+ 0.0
+ ],
+ [
+ 118.757007787,
+ 37.5773606204,
+ 0.0
+ ],
+ [
+ 118.730127407,
+ 37.562240119199998,
+ 0.0
+ ],
+ [
+ 118.71803788699999,
+ 37.548688516299997,
+ 0.0
+ ],
+ [
+ 118.710788025,
+ 37.5331175265,
+ 0.0
+ ],
+ [
+ 118.708869199,
+ 37.5165891973,
+ 0.0
+ ],
+ [
+ 118.71053364,
+ 37.488310487200003,
+ 0.0
+ ],
+ [
+ 118.720668978,
+ 37.459405795899997,
+ 0.0
+ ],
+ [
+ 118.733161786,
+ 37.446096207399997,
+ 0.0
+ ],
+ [
+ 118.81292329599999,
+ 37.582452164400003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 684,
+ "name": "Dongying Shengli Airport",
+ "country": "CN",
+ "city": "Dongying",
+ "height": 0,
+ "level": 2,
+ "lat": "37.4605055634034",
+ "lng": "118.791891508791",
+ "radius": 13686,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.755430043,
+ 37.340880154399997,
+ 0.0
+ ],
+ [
+ 118.842991324,
+ 37.344309941900001,
+ 0.0
+ ],
+ [
+ 118.819651492,
+ 37.4309669736,
+ 0.0
+ ],
+ [
+ 118.85003652,
+ 37.446451602899998,
+ 0.0
+ ],
+ [
+ 118.862558556,
+ 37.4597439052,
+ 0.0
+ ],
+ [
+ 118.872800556,
+ 37.491636915199997,
+ 0.0
+ ],
+ [
+ 118.859348915,
+ 37.550609242900002,
+ 0.0
+ ],
+ [
+ 118.831769501,
+ 37.575211969400002,
+ 0.0
+ ],
+ [
+ 118.81292329599999,
+ 37.582452164400003,
+ 0.0
+ ],
+ [
+ 118.733161786,
+ 37.446096207399997,
+ 0.0
+ ],
+ [
+ 118.768757582,
+ 37.429232043699997,
+ 0.0
+ ],
+ [
+ 118.755430043,
+ 37.340880154399997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 684,
+ "name": "Dongying Shengli Airport",
+ "country": "CN",
+ "city": "Dongying",
+ "height": 120,
+ "level": 2,
+ "lat": "37.5041908079278",
+ "lng": "118.789944213253",
+ "radius": 23786,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.925270779,
+ 37.3192427603,
+ 120.0
+ ],
+ [
+ 118.70010643099999,
+ 37.3025312818,
+ 120.0
+ ],
+ [
+ 118.654057442,
+ 37.689035296699998,
+ 120.0
+ ],
+ [
+ 118.88039049299999,
+ 37.7057467749,
+ 120.0
+ ],
+ [
+ 118.925270779,
+ 37.3192427603,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001385,
+ "name": "Yantai Penglai International Airport",
+ "country": "CN",
+ "city": "Yantai",
+ "height": 500,
+ "level": 2,
+ "lat": "37.65906",
+ "lng": "120.978505",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.978505,
+ 38.10953362443059,
+ 500.0
+ ],
+ [
+ 121.077494110746045,
+ 38.102648755421157,
+ 500.0
+ ],
+ [
+ 121.173421473905563,
+ 38.082207100509095,
+ 500.0
+ ],
+ [
+ 121.263325063677541,
+ 38.048840576754159,
+ 500.0
+ ],
+ [
+ 121.344438411980647,
+ 38.003579519951067,
+ 500.0
+ ],
+ [
+ 121.414278907592504,
+ 37.947819329690532,
+ 500.0
+ ],
+ [
+ 121.470725352214927,
+ 37.883275581936225,
+ 500.0
+ ],
+ [
+ 121.512082175431175,
+ 37.811929288594847,
+ 500.0
+ ],
+ [
+ 121.537128422467234,
+ 37.735964293467923,
+ 500.0
+ ],
+ [
+ 121.545150379705134,
+ 37.657699001190764,
+ 500.0
+ ],
+ [
+ 121.53595743247844,
+ 37.579514739897917,
+ 500.0
+ ],
+ [
+ 121.50988140843134,
+ 37.503783066706468,
+ 500.0
+ ],
+ [
+ 121.467760213812255,
+ 37.432794250551531,
+ 500.0
+ ],
+ [
+ 121.410907002612845,
+ 37.368689025452966,
+ 500.0
+ ],
+ [
+ 121.34106642824986,
+ 37.313395515741426,
+ 500.0
+ ],
+ [
+ 121.260359725869989,
+ 37.268573008819892,
+ 500.0
+ ],
+ [
+ 121.171220480150865,
+ 37.235564003963738,
+ 500.0
+ ],
+ [
+ 121.076322972753516,
+ 37.215355707668358,
+ 500.0
+ ],
+ [
+ 120.978505,
+ 37.208551884129783,
+ 500.0
+ ],
+ [
+ 120.880687027246481,
+ 37.215355707668358,
+ 500.0
+ ],
+ [
+ 120.785789519849132,
+ 37.235564003963738,
+ 500.0
+ ],
+ [
+ 120.696650274130008,
+ 37.268573008819892,
+ 500.0
+ ],
+ [
+ 120.615943571750137,
+ 37.313395515741426,
+ 500.0
+ ],
+ [
+ 120.546102997387152,
+ 37.368689025452966,
+ 500.0
+ ],
+ [
+ 120.489249786187742,
+ 37.432794250551531,
+ 500.0
+ ],
+ [
+ 120.447128591568656,
+ 37.503783066706468,
+ 500.0
+ ],
+ [
+ 120.421052567521556,
+ 37.579514739897917,
+ 500.0
+ ],
+ [
+ 120.411859620294862,
+ 37.657699001190764,
+ 500.0
+ ],
+ [
+ 120.419881577532763,
+ 37.735964293467923,
+ 500.0
+ ],
+ [
+ 120.444927824568822,
+ 37.811929288594847,
+ 500.0
+ ],
+ [
+ 120.48628464778507,
+ 37.883275581936225,
+ 500.0
+ ],
+ [
+ 120.542731092407493,
+ 37.947819329690532,
+ 500.0
+ ],
+ [
+ 120.61257158801935,
+ 38.003579519951067,
+ 500.0
+ ],
+ [
+ 120.693684936322455,
+ 38.048840576754159,
+ 500.0
+ ],
+ [
+ 120.783588526094434,
+ 38.082207100509095,
+ 500.0
+ ],
+ [
+ 120.879515889253952,
+ 38.102648755421157,
+ 500.0
+ ],
+ [
+ 120.978505,
+ 38.10953362443059,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32568,
+ "name": "Yantai Penglai International Airport",
+ "country": "CN",
+ "city": "Yantai",
+ "height": 0,
+ "level": 2,
+ "lat": "37.6289327662474",
+ "lng": "120.939021485621",
+ "radius": 13472,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.893452677,
+ 37.618455569600002,
+ 0.0
+ ],
+ [
+ 120.811750171,
+ 37.561767964799998,
+ 0.0
+ ],
+ [
+ 120.875364921,
+ 37.518774669700001,
+ 0.0
+ ],
+ [
+ 120.93537337,
+ 37.5904428698,
+ 0.0
+ ],
+ [
+ 120.967609489,
+ 37.585346413499998,
+ 0.0
+ ],
+ [
+ 120.988350501,
+ 37.587662391400002,
+ 0.0
+ ],
+ [
+ 121.007631237,
+ 37.594150113,
+ 0.0
+ ],
+ [
+ 121.050828456,
+ 37.626051643,
+ 0.0
+ ],
+ [
+ 121.069838535,
+ 37.653255327,
+ 0.0
+ ],
+ [
+ 121.072507447,
+ 37.6697185469,
+ 0.0
+ ],
+ [
+ 121.061610695,
+ 37.701481221500003,
+ 0.0
+ ],
+ [
+ 120.893452677,
+ 37.618455569600002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32568,
+ "name": "Yantai Penglai International Airport",
+ "country": "CN",
+ "city": "Yantai",
+ "height": 0,
+ "level": 2,
+ "lat": "37.6890568210451",
+ "lng": "121.020169565573",
+ "radius": 13640,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.148254204,
+ 37.7582337817,
+ 0.0
+ ],
+ [
+ 121.082982677,
+ 37.801228185399999,
+ 0.0
+ ],
+ [
+ 121.024696094,
+ 37.729569226899997,
+ 0.0
+ ],
+ [
+ 120.98798132,
+ 37.734903014700002,
+ 0.0
+ ],
+ [
+ 120.967347594,
+ 37.731868713600001,
+ 0.0
+ ],
+ [
+ 120.948413163,
+ 37.724711094200003,
+ 0.0
+ ],
+ [
+ 120.904158767,
+ 37.690604677899998,
+ 0.0
+ ],
+ [
+ 120.887408912,
+ 37.666883258600002,
+ 0.0
+ ],
+ [
+ 120.884001397,
+ 37.650505699100002,
+ 0.0
+ ],
+ [
+ 120.893452677,
+ 37.618455569600002,
+ 0.0
+ ],
+ [
+ 121.061610695,
+ 37.701481221500003,
+ 0.0
+ ],
+ [
+ 121.148254204,
+ 37.7582337817,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32568,
+ "name": "Yantai Penglai International Airport",
+ "country": "CN",
+ "city": "Yantai",
+ "height": 120,
+ "level": 2,
+ "lat": "37.6585358909403",
+ "lng": "120.978249149797",
+ "radius": 23930,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.06816272899999,
+ 37.861667907600001,
+ 120.0
+ ],
+ [
+ 121.23172479599999,
+ 37.736576018599997,
+ 120.0
+ ],
+ [
+ 120.88789200799999,
+ 37.455595870400003,
+ 120.0
+ ],
+ [
+ 120.724947795,
+ 37.580687760399996,
+ 120.0
+ ],
+ [
+ 121.06816272899999,
+ 37.861667907600001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9118,
+ "name": "Yantai Laishan Airport",
+ "country": "CN",
+ "city": "Yantai",
+ "height": 0,
+ "level": 2,
+ "lat": "37.4317379408383",
+ "lng": "121.403723352914",
+ "radius": 13801,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.451460651,
+ 37.445525515600004,
+ 0.0
+ ],
+ [
+ 121.530020413,
+ 37.504926550199997,
+ 0.0
+ ],
+ [
+ 121.460614686,
+ 37.547353812200001,
+ 0.0
+ ],
+ [
+ 121.40823912899999,
+ 37.471976708600003,
+ 0.0
+ ],
+ [
+ 121.36643322899999,
+ 37.476037095599999,
+ 0.0
+ ],
+ [
+ 121.346307274,
+ 37.471522936900001,
+ 0.0
+ ],
+ [
+ 121.31376625,
+ 37.451125689199998,
+ 0.0
+ ],
+ [
+ 121.278396312,
+ 37.411228119800001,
+ 0.0
+ ],
+ [
+ 121.272844539,
+ 37.395226510400001,
+ 0.0
+ ],
+ [
+ 121.272696122,
+ 37.378628690100001,
+ 0.0
+ ],
+ [
+ 121.288267549,
+ 37.348131794700002,
+ 0.0
+ ],
+ [
+ 121.451460651,
+ 37.445525515600004,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9118,
+ "name": "Yantai Laishan Airport",
+ "country": "CN",
+ "city": "Yantai",
+ "height": 0,
+ "level": 2,
+ "lat": "37.3618872348071",
+ "lng": "121.336038313534",
+ "radius": 13799,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.209967539,
+ 37.288732137499998,
+ 0.0
+ ],
+ [
+ 121.279191008,
+ 37.246312601600003,
+ 0.0
+ ],
+ [
+ 121.33136117799999,
+ 37.321751806499996,
+ 0.0
+ ],
+ [
+ 121.35213745599999,
+ 37.317477380200003,
+ 0.0
+ ],
+ [
+ 121.393101005,
+ 37.322165826300001,
+ 0.0
+ ],
+ [
+ 121.411054093,
+ 37.330632934299999,
+ 0.0
+ ],
+ [
+ 121.450125325,
+ 37.367732774099998,
+ 0.0
+ ],
+ [
+ 121.466734488,
+ 37.398398009300003,
+ 0.0
+ ],
+ [
+ 121.461734002,
+ 37.431069969699998,
+ 0.0
+ ],
+ [
+ 121.451460651,
+ 37.445525515600004,
+ 0.0
+ ],
+ [
+ 121.288267549,
+ 37.348131794700002,
+ 0.0
+ ],
+ [
+ 121.209967539,
+ 37.288732137499998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9118,
+ "name": "Yantai Laishan Airport",
+ "country": "CN",
+ "city": "Yantai",
+ "height": 120,
+ "level": 2,
+ "lat": "37.3966958485169",
+ "lng": "121.37006994614",
+ "radius": 23955,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.309170352,
+ 37.186779441600002,
+ 120.0
+ ],
+ [
+ 121.130157739,
+ 37.296515680100001,
+ 120.0
+ ],
+ [
+ 121.430471098,
+ 37.606728621800002,
+ 120.0
+ ],
+ [
+ 121.610226188,
+ 37.4969923843,
+ 120.0
+ ],
+ [
+ 121.309170352,
+ 37.186779441600002,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001306,
+ "name": "Weihai Airport",
+ "country": "CN",
+ "city": "Weihai",
+ "height": 500,
+ "level": 2,
+ "lat": "37.186122",
+ "lng": "122.229146",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.229146,
+ 37.636631829397416,
+ 500.0
+ ],
+ [
+ 122.32750451517667,
+ 37.629747109110532,
+ 500.0
+ ],
+ [
+ 122.422821698557811,
+ 37.609305831412854,
+ 500.0
+ ],
+ [
+ 122.512155163049584,
+ 37.575939716711233,
+ 500.0
+ ],
+ [
+ 122.592756569106498,
+ 37.530678805684843,
+ 500.0
+ ],
+ [
+ 122.662159274561432,
+ 37.474918148661651,
+ 500.0
+ ],
+ [
+ 122.718255357110408,
+ 37.410372971632533,
+ 500.0
+ ],
+ [
+ 122.75935943300648,
+ 37.339023991253924,
+ 500.0
+ ],
+ [
+ 122.78425739593888,
+ 37.263054860905619,
+ 500.0
+ ],
+ [
+ 122.792238939840885,
+ 37.18478393785599,
+ 500.0
+ ],
+ [
+ 122.78311344918508,
+ 37.106592667311382,
+ 500.0
+ ],
+ [
+ 122.757209491713439,
+ 37.030852889641736,
+ 500.0
+ ],
+ [
+ 122.71535869816482,
+ 36.959855304953912,
+ 500.0
+ ],
+ [
+ 122.658865244570976,
+ 36.895741190122656,
+ 500.0
+ ],
+ [
+ 122.589462463583047,
+ 36.840439273912033,
+ 500.0
+ ],
+ [
+ 122.509258312847749,
+ 36.795609451401553,
+ 500.0
+ ],
+ [
+ 122.420671539776208,
+ 36.762594772712298,
+ 500.0
+ ],
+ [
+ 122.326360426467289,
+ 36.742382883151507,
+ 500.0
+ ],
+ [
+ 122.229146,
+ 36.735577829373184,
+ 500.0
+ ],
+ [
+ 122.131931573532711,
+ 36.742382883151507,
+ 500.0
+ ],
+ [
+ 122.037620460223792,
+ 36.762594772712298,
+ 500.0
+ ],
+ [
+ 121.949033687152252,
+ 36.795609451401553,
+ 500.0
+ ],
+ [
+ 121.868829536416953,
+ 36.840439273912033,
+ 500.0
+ ],
+ [
+ 121.799426755429025,
+ 36.895741190122656,
+ 500.0
+ ],
+ [
+ 121.74293330183518,
+ 36.959855304953912,
+ 500.0
+ ],
+ [
+ 121.701082508286561,
+ 37.030852889641736,
+ 500.0
+ ],
+ [
+ 121.67517855081492,
+ 37.106592667311382,
+ 500.0
+ ],
+ [
+ 121.666053060159115,
+ 37.18478393785599,
+ 500.0
+ ],
+ [
+ 121.67403460406112,
+ 37.263054860905619,
+ 500.0
+ ],
+ [
+ 121.69893256699352,
+ 37.339023991253924,
+ 500.0
+ ],
+ [
+ 121.740036642889592,
+ 37.410372971632533,
+ 500.0
+ ],
+ [
+ 121.796132725438568,
+ 37.474918148661651,
+ 500.0
+ ],
+ [
+ 121.865535430893502,
+ 37.530678805684843,
+ 500.0
+ ],
+ [
+ 121.946136836950416,
+ 37.575939716711233,
+ 500.0
+ ],
+ [
+ 122.035470301442189,
+ 37.609305831412854,
+ 500.0
+ ],
+ [
+ 122.13078748482333,
+ 37.629747109110532,
+ 500.0
+ ],
+ [
+ 122.229146,
+ 37.636631829397416,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7913,
+ "name": "Weihai Airport",
+ "country": "CN",
+ "city": "Weihai",
+ "height": 0,
+ "level": 2,
+ "lat": "37.1442868996807",
+ "lng": "122.211977985756",
+ "radius": 13635,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.171579455,
+ 37.1211179278,
+ 0.0
+ ],
+ [
+ 122.120942333,
+ 37.045466195800003,
+ 0.0
+ ],
+ [
+ 122.207119573,
+ 37.0217176405,
+ 0.0
+ ],
+ [
+ 122.225781192,
+ 37.106202572500003,
+ 0.0
+ ],
+ [
+ 122.265518505,
+ 37.113075917,
+ 0.0
+ ],
+ [
+ 122.282674381,
+ 37.122475813599998,
+ 0.0
+ ],
+ [
+ 122.296199193,
+ 37.135094327300003,
+ 0.0
+ ],
+ [
+ 122.316894889,
+ 37.177048622400001,
+ 0.0
+ ],
+ [
+ 122.320762129,
+ 37.209349355599997,
+ 0.0
+ ],
+ [
+ 122.314725403,
+ 37.225236177699998,
+ 0.0
+ ],
+ [
+ 122.288515652,
+ 37.250688619800002,
+ 0.0
+ ],
+ [
+ 122.171579455,
+ 37.1211179278,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7913,
+ "name": "Weihai Airport",
+ "country": "CN",
+ "city": "Weihai",
+ "height": 0,
+ "level": 2,
+ "lat": "37.2275315738466",
+ "lng": "122.248087960021",
+ "radius": 13636,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.33935173499999,
+ 37.3263574152,
+ 0.0
+ ],
+ [
+ 122.252891828,
+ 37.350110624700001,
+ 0.0
+ ],
+ [
+ 122.234158926,
+ 37.265642739699999,
+ 0.0
+ ],
+ [
+ 122.194240638,
+ 37.258710425899999,
+ 0.0
+ ],
+ [
+ 122.177084432,
+ 37.249275132500003,
+ 0.0
+ ],
+ [
+ 122.154662898,
+ 37.221624239400001,
+ 0.0
+ ],
+ [
+ 122.143035909,
+ 37.1947454182,
+ 0.0
+ ],
+ [
+ 122.139254987,
+ 37.16239979,
+ 0.0
+ ],
+ [
+ 122.145336673,
+ 37.146525076400003,
+ 0.0
+ ],
+ [
+ 122.171579455,
+ 37.1211179278,
+ 0.0
+ ],
+ [
+ 122.288515652,
+ 37.250688619800002,
+ 0.0
+ ],
+ [
+ 122.33935173499999,
+ 37.3263574152,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7913,
+ "name": "Weihai Airport",
+ "country": "CN",
+ "city": "Weihai",
+ "height": 120,
+ "level": 2,
+ "lat": "37.1858737552729",
+ "lng": "122.230153153327",
+ "radius": 23787,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.202721874,
+ 37.398687628300003,
+ 120.0
+ ],
+ [
+ 122.416632711,
+ 37.339950737099997,
+ 120.0
+ ],
+ [
+ 122.256983519,
+ 36.973017451099999,
+ 120.0
+ ],
+ [
+ 122.044109467,
+ 37.031754343300001,
+ 120.0
+ ],
+ [
+ 122.202721874,
+ 37.398687628300003,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001514,
+ "name": "Yantai Laishan Airport",
+ "country": "CN",
+ "city": "Yantai",
+ "height": 500,
+ "level": 2,
+ "lat": "37.398942",
+ "lng": "121.368233",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.368233,
+ 37.849435556632329,
+ 500.0
+ ],
+ [
+ 121.466873449122403,
+ 37.842550770233352,
+ 500.0
+ ],
+ [
+ 121.562463438972173,
+ 37.822109325097308,
+ 500.0
+ ],
+ [
+ 121.652051802358059,
+ 37.788743029749732,
+ 500.0
+ ],
+ [
+ 121.73288209473543,
+ 37.743482057104188,
+ 500.0
+ ],
+ [
+ 121.802480534314427,
+ 37.687721613974666,
+ 500.0
+ ],
+ [
+ 121.858733263101527,
+ 37.623177083136,
+ 500.0
+ ],
+ [
+ 121.89995034277608,
+ 37.551829313477199,
+ 500.0
+ ],
+ [
+ 121.924914604874118,
+ 37.475862043596592,
+ 500.0
+ ],
+ [
+ 121.932914219554704,
+ 37.397593651829354,
+ 500.0
+ ],
+ [
+ 121.923758571405116,
+ 37.319405530709538,
+ 500.0
+ ],
+ [
+ 121.897777685422497,
+ 37.243669393415011,
+ 500.0
+ ],
+ [
+ 121.855805997927675,
+ 37.172675746530871,
+ 500.0
+ ],
+ [
+ 121.799151698862374,
+ 37.108565623331401,
+ 500.0
+ ],
+ [
+ 121.729553182321112,
+ 37.053267481373823,
+ 500.0
+ ],
+ [
+ 121.649124342308923,
+ 37.00844094308971,
+ 500.0
+ ],
+ [
+ 121.560290560014593,
+ 36.975428811457654,
+ 500.0
+ ],
+ [
+ 121.46571727101167,
+ 36.955218534910522,
+ 500.0
+ ],
+ [
+ 121.368233,
+ 36.948414033377581,
+ 500.0
+ ],
+ [
+ 121.270748728988337,
+ 36.955218534910522,
+ 500.0
+ ],
+ [
+ 121.176175439985414,
+ 36.975428811457654,
+ 500.0
+ ],
+ [
+ 121.087341657691084,
+ 37.00844094308971,
+ 500.0
+ ],
+ [
+ 121.006912817678895,
+ 37.053267481373823,
+ 500.0
+ ],
+ [
+ 120.937314301137633,
+ 37.108565623331401,
+ 500.0
+ ],
+ [
+ 120.880660002072332,
+ 37.172675746530871,
+ 500.0
+ ],
+ [
+ 120.83868831457751,
+ 37.243669393415011,
+ 500.0
+ ],
+ [
+ 120.812707428594891,
+ 37.319405530709538,
+ 500.0
+ ],
+ [
+ 120.803551780445304,
+ 37.397593651829354,
+ 500.0
+ ],
+ [
+ 120.811551395125889,
+ 37.475862043596592,
+ 500.0
+ ],
+ [
+ 120.836515657223927,
+ 37.551829313477199,
+ 500.0
+ ],
+ [
+ 120.87773273689848,
+ 37.623177083136,
+ 500.0
+ ],
+ [
+ 120.933985465685581,
+ 37.687721613974666,
+ 500.0
+ ],
+ [
+ 121.003583905264577,
+ 37.743482057104188,
+ 500.0
+ ],
+ [
+ 121.084414197641948,
+ 37.788743029749732,
+ 500.0
+ ],
+ [
+ 121.174002561027834,
+ 37.822109325097308,
+ 500.0
+ ],
+ [
+ 121.269592550877604,
+ 37.842550770233352,
+ 500.0
+ ],
+ [
+ 121.368233,
+ 37.849435556632329,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1577,
+ "name": "Hotan Airport",
+ "country": "CN",
+ "city": "Hotan",
+ "height": 0,
+ "level": 2,
+ "lat": "37.0546716373969",
+ "lng": "79.8123114117825",
+ "radius": 13363,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 79.782875768599993,
+ 37.086182840699998,
+ 0.0
+ ],
+ [
+ 79.691256499,
+ 37.126215836,
+ 0.0
+ ],
+ [
+ 79.662042981,
+ 37.062608769199997,
+ 0.0
+ ],
+ [
+ 79.767038341399996,
+ 37.042614450599999,
+ 0.0
+ ],
+ [
+ 79.773852955199999,
+ 37.017728239100002,
+ 0.0
+ ],
+ [
+ 79.784677069500006,
+ 37.003558034299999,
+ 0.0
+ ],
+ [
+ 79.799720749299993,
+ 36.9921060868,
+ 0.0
+ ],
+ [
+ 79.851269873500001,
+ 36.974158399799997,
+ 0.0
+ ],
+ [
+ 79.888702238899995,
+ 36.9702940596,
+ 0.0
+ ],
+ [
+ 79.908874998599998,
+ 36.974263723,
+ 0.0
+ ],
+ [
+ 79.942072092700002,
+ 36.9937580669,
+ 0.0
+ ],
+ [
+ 79.782875768599993,
+ 37.086182840699998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1577,
+ "name": "Hotan Airport",
+ "country": "CN",
+ "city": "Hotan",
+ "height": 0,
+ "level": 2,
+ "lat": "37.0247110127682",
+ "lng": "79.9153820292805",
+ "radius": 13600,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 80.037058486800007,
+ 36.950447174300002,
+ 0.0
+ ],
+ [
+ 80.067990684799994,
+ 37.014017071799998,
+ 0.0
+ ],
+ [
+ 79.963002939199995,
+ 37.030668739100001,
+ 0.0
+ ],
+ [
+ 79.953920025499997,
+ 37.0613307514,
+ 0.0
+ ],
+ [
+ 79.941942696599995,
+ 37.074901542299997,
+ 0.0
+ ],
+ [
+ 79.925967056399998,
+ 37.085534528499998,
+ 0.0
+ ],
+ [
+ 79.873730141799996,
+ 37.102508462499998,
+ 0.0
+ ],
+ [
+ 79.837735239599994,
+ 37.1074779271,
+ 0.0
+ ],
+ [
+ 79.817301225799994,
+ 37.104327797499998,
+ 0.0
+ ],
+ [
+ 79.782875768599993,
+ 37.086182840699998,
+ 0.0
+ ],
+ [
+ 79.942072092700002,
+ 36.9937580669,
+ 0.0
+ ],
+ [
+ 80.037058486800007,
+ 36.950447174300002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1577,
+ "name": "Hotan Airport",
+ "country": "CN",
+ "city": "Hotan",
+ "height": 120,
+ "level": 2,
+ "lat": "37.037936293129",
+ "lng": "79.8622881936471",
+ "radius": 23784,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 80.129527380499994,
+ 37.054014687399999,
+ 120.0
+ ],
+ [
+ 80.050290188700004,
+ 36.885659586599999,
+ 120.0
+ ],
+ [
+ 79.59506624799999,
+ 37.022272204099998,
+ 120.0
+ ],
+ [
+ 79.674446134299998,
+ 37.190627304700001,
+ 120.0
+ ],
+ [
+ 80.129527380499994,
+ 37.054014687399999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001367,
+ "name": "Hotan Airport",
+ "country": "CN",
+ "city": "Hotan",
+ "height": 500,
+ "level": 2,
+ "lat": "37.040155",
+ "lng": "79.864516",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 79.864516,
+ 37.490675971638758,
+ 500.0
+ ],
+ [
+ 79.962682858570759,
+ 37.483791295948862,
+ 500.0
+ ],
+ [
+ 80.057814589921804,
+ 37.463350130971982,
+ 500.0
+ ],
+ [
+ 80.146974775430635,
+ 37.429984137025421,
+ 500.0
+ ],
+ [
+ 80.227420585172013,
+ 37.384723264619744,
+ 500.0
+ ],
+ [
+ 80.296690230437889,
+ 37.328962457387043,
+ 500.0
+ ],
+ [
+ 80.352679824054945,
+ 37.264416834437732,
+ 500.0
+ ],
+ [
+ 80.39370707861579,
+ 37.193067022317805,
+ 500.0
+ ],
+ [
+ 80.41855996966575,
+ 37.117096616393802,
+ 500.0
+ ],
+ [
+ 80.426529227233658,
+ 37.038823959713014,
+ 500.0
+ ],
+ [
+ 80.417424235942434,
+ 36.960630533595449,
+ 500.0
+ ],
+ [
+ 80.39157257308517,
+ 36.884888265391908,
+ 500.0
+ ],
+ [
+ 80.349803962304321,
+ 36.81388798746606,
+ 500.0
+ ],
+ [
+ 80.293419851049649,
+ 36.749771143130758,
+ 500.0
+ ],
+ [
+ 80.224150131213634,
+ 36.694466646426058,
+ 500.0
+ ],
+ [
+ 80.144098724861792,
+ 36.649634578679141,
+ 500.0
+ ],
+ [
+ 80.055679869675018,
+ 36.616618158829574,
+ 500.0
+ ],
+ [
+ 79.961546984701428,
+ 36.596405166663175,
+ 500.0
+ ],
+ [
+ 79.864516,
+ 36.589599735394643,
+ 500.0
+ ],
+ [
+ 79.767485015298561,
+ 36.596405166663175,
+ 500.0
+ ],
+ [
+ 79.673352130324972,
+ 36.616618158829574,
+ 500.0
+ ],
+ [
+ 79.584933275138198,
+ 36.649634578679141,
+ 500.0
+ ],
+ [
+ 79.504881868786356,
+ 36.694466646426058,
+ 500.0
+ ],
+ [
+ 79.435612148950341,
+ 36.749771143130758,
+ 500.0
+ ],
+ [
+ 79.379228037695668,
+ 36.81388798746606,
+ 500.0
+ ],
+ [
+ 79.337459426914819,
+ 36.884888265391908,
+ 500.0
+ ],
+ [
+ 79.311607764057555,
+ 36.960630533595449,
+ 500.0
+ ],
+ [
+ 79.302502772766331,
+ 37.038823959713014,
+ 500.0
+ ],
+ [
+ 79.310472030334239,
+ 37.117096616393802,
+ 500.0
+ ],
+ [
+ 79.335324921384199,
+ 37.193067022317805,
+ 500.0
+ ],
+ [
+ 79.376352175945044,
+ 37.264416834437732,
+ 500.0
+ ],
+ [
+ 79.4323417695621,
+ 37.328962457387043,
+ 500.0
+ ],
+ [
+ 79.501611414827977,
+ 37.384723264619744,
+ 500.0
+ ],
+ [
+ 79.582057224569354,
+ 37.429984137025421,
+ 500.0
+ ],
+ [
+ 79.671217410078185,
+ 37.463350130971982,
+ 500.0
+ ],
+ [
+ 79.766349141429231,
+ 37.483791295948862,
+ 500.0
+ ],
+ [
+ 79.864516,
+ 37.490675971638758,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025587,
+ "name": "于田万方机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "36.812469",
+ "lng": "81.78168",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.78168,
+ 37.263007320548311,
+ 500.0
+ ],
+ [
+ 81.879550659092502,
+ 37.256122713241133,
+ 500.0
+ ],
+ [
+ 81.974395779630427,
+ 37.235681720740999,
+ 500.0
+ ],
+ [
+ 82.063288166827192,
+ 37.202315910192347,
+ 500.0
+ ],
+ [
+ 82.143493505565914,
+ 37.157055092299849,
+ 500.0
+ ],
+ [
+ 82.212557508011486,
+ 37.101294045279275,
+ 500.0
+ ],
+ [
+ 82.268382523304751,
+ 37.036747722567561,
+ 500.0
+ ],
+ [
+ 82.309291049598258,
+ 36.96539661108438,
+ 500.0
+ ],
+ [
+ 82.33407428021971,
+ 36.889424216398403,
+ 500.0
+ ],
+ [
+ 82.342024546811913,
+ 36.81114885973421,
+ 500.0
+ ],
+ [
+ 82.332951234560596,
+ 36.732952078717162,
+ 500.0
+ ],
+ [
+ 82.307180390309256,
+ 36.657205935957187,
+ 500.0
+ ],
+ [
+ 82.265538790501495,
+ 36.58620146935165,
+ 500.0
+ ],
+ [
+ 82.209323665699344,
+ 36.522080380798009,
+ 500.0
+ ],
+ [
+ 82.140259590157825,
+ 36.466771872150765,
+ 500.0
+ ],
+ [
+ 82.060444248938538,
+ 36.421936314041119,
+ 500.0
+ ],
+ [
+ 81.972284909870083,
+ 36.388917187629602,
+ 500.0
+ ],
+ [
+ 81.878427476057979,
+ 36.368702481579689,
+ 500.0
+ ],
+ [
+ 81.78168,
+ 36.361896463554338,
+ 500.0
+ ],
+ [
+ 81.68493252394201,
+ 36.368702481579689,
+ 500.0
+ ],
+ [
+ 81.591075090129905,
+ 36.388917187629602,
+ 500.0
+ ],
+ [
+ 81.502915751061451,
+ 36.421936314041119,
+ 500.0
+ ],
+ [
+ 81.423100409842164,
+ 36.466771872150765,
+ 500.0
+ ],
+ [
+ 81.354036334300645,
+ 36.522080380798009,
+ 500.0
+ ],
+ [
+ 81.297821209498494,
+ 36.58620146935165,
+ 500.0
+ ],
+ [
+ 81.256179609690733,
+ 36.657205935957187,
+ 500.0
+ ],
+ [
+ 81.230408765439392,
+ 36.732952078717162,
+ 500.0
+ ],
+ [
+ 81.221335453188075,
+ 36.81114885973421,
+ 500.0
+ ],
+ [
+ 81.229285719780279,
+ 36.889424216398403,
+ 500.0
+ ],
+ [
+ 81.254068950401731,
+ 36.96539661108438,
+ 500.0
+ ],
+ [
+ 81.294977476695237,
+ 37.036747722567561,
+ 500.0
+ ],
+ [
+ 81.350802491988503,
+ 37.101294045279275,
+ 500.0
+ ],
+ [
+ 81.419866494434075,
+ 37.157055092299849,
+ 500.0
+ ],
+ [
+ 81.500071833172797,
+ 37.202315910192347,
+ 500.0
+ ],
+ [
+ 81.588964220369562,
+ 37.235681720740999,
+ 500.0
+ ],
+ [
+ 81.683809340907487,
+ 37.256122713241133,
+ 500.0
+ ],
+ [
+ 81.78168,
+ 37.263007320548311,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025586,
+ "name": "于田万方机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "36.8129731726675",
+ "lng": "81.8323916124069",
+ "radius": 13176,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.8703443351,
+ 36.796017137900002,
+ 0.0
+ ],
+ [
+ 81.978275710700004,
+ 36.793054278500001,
+ 0.0
+ ],
+ [
+ 81.968984794600004,
+ 36.858685523399998,
+ 0.0
+ ],
+ [
+ 81.864612506100002,
+ 36.836518757199997,
+ 0.0
+ ],
+ [
+ 81.853725309799998,
+ 36.852355186600001,
+ 0.0
+ ],
+ [
+ 81.821308022500006,
+ 36.872616904799997,
+ 0.0
+ ],
+ [
+ 81.780562674899997,
+ 36.8771834187,
+ 0.0
+ ],
+ [
+ 81.733147118700003,
+ 36.870432093300003,
+ 0.0
+ ],
+ [
+ 81.700455150400003,
+ 36.8504557949,
+ 0.0
+ ],
+ [
+ 81.69004800499999,
+ 36.836098368599998,
+ 0.0
+ ],
+ [
+ 81.684641553500001,
+ 36.820074197799997,
+ 0.0
+ ],
+ [
+ 81.8703443351,
+ 36.796017137900002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025586,
+ "name": "于田万方机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "36.802952358801",
+ "lng": "81.7226302188258",
+ "radius": 13174,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.576761918100004,
+ 36.822961149100003,
+ 0.0
+ ],
+ [
+ 81.586104928899999,
+ 36.757332094,
+ 0.0
+ ],
+ [
+ 81.690391593399994,
+ 36.779676375400001,
+ 0.0
+ ],
+ [
+ 81.701315647100003,
+ 36.763824615200001,
+ 0.0
+ ],
+ [
+ 81.733717729600002,
+ 36.743594543299999,
+ 0.0
+ ],
+ [
+ 81.774394641100002,
+ 36.739042858700003,
+ 0.0
+ ],
+ [
+ 81.821726329800001,
+ 36.745758003299997,
+ 0.0
+ ],
+ [
+ 81.8544327165,
+ 36.765672143499998,
+ 0.0
+ ],
+ [
+ 81.864880889399998,
+ 36.780005982699997,
+ 0.0
+ ],
+ [
+ 81.8703443351,
+ 36.796017137900002,
+ 0.0
+ ],
+ [
+ 81.684641553500001,
+ 36.820074197799997,
+ 0.0
+ ],
+ [
+ 81.576761918100004,
+ 36.822961149100003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025586,
+ "name": "于田万方机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "36.8076744144581",
+ "lng": "81.7775585838319",
+ "radius": 23385,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.554323731099998,
+ 36.697036124,
+ 120.0
+ ],
+ [
+ 81.528906722200006,
+ 36.875744869800002,
+ 120.0
+ ],
+ [
+ 82.000755192400007,
+ 36.9187740104,
+ 120.0
+ ],
+ [
+ 82.026186489300002,
+ 36.740065264499997,
+ 120.0
+ ],
+ [
+ 81.554323731099998,
+ 36.697036124,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2423,
+ "name": "Golmud Airport",
+ "country": "CN",
+ "city": "Golmud",
+ "height": 0,
+ "level": 2,
+ "lat": "36.4005820823071",
+ "lng": "94.8406489300408",
+ "radius": 14973,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.896781439099996,
+ 36.379125204,
+ 0.0
+ ],
+ [
+ 95.002527057400002,
+ 36.366675910300003,
+ 0.0
+ ],
+ [
+ 95.0017798903,
+ 36.436931152100001,
+ 0.0
+ ],
+ [
+ 94.896321588099994,
+ 36.423016158700001,
+ 0.0
+ ],
+ [
+ 94.887889292500006,
+ 36.438427393799998,
+ 0.0
+ ],
+ [
+ 94.874938926599995,
+ 36.451349244100001,
+ 0.0
+ ],
+ [
+ 94.839013678699999,
+ 36.467109021,
+ 0.0
+ ],
+ [
+ 94.731271429100005,
+ 36.466238249600003,
+ 0.0
+ ],
+ [
+ 94.695808001399996,
+ 36.449816565500001,
+ 0.0
+ ],
+ [
+ 94.683231584799998,
+ 36.436658034099999,
+ 0.0
+ ],
+ [
+ 94.675320743,
+ 36.421328710099999,
+ 0.0
+ ],
+ [
+ 94.896781439099996,
+ 36.379125204,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2423,
+ "name": "Golmud Airport",
+ "country": "CN",
+ "city": "Golmud",
+ "height": 0,
+ "level": 2,
+ "lat": "36.3997032518152",
+ "lng": "94.7314806360788",
+ "radius": 14972,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.569587154600001,
+ 36.433730425100002,
+ 0.0
+ ],
+ [
+ 94.570399072100003,
+ 36.363475290300002,
+ 0.0
+ ],
+ [
+ 94.675827202400001,
+ 36.3775347686,
+ 0.0
+ ],
+ [
+ 94.684306843300007,
+ 36.362078274700004,
+ 0.0
+ ],
+ [
+ 94.697266712,
+ 36.349172271500002,
+ 0.0
+ ],
+ [
+ 94.733157302400002,
+ 36.3334417915,
+ 0.0
+ ],
+ [
+ 94.840787377799998,
+ 36.334301404800001,
+ 0.0
+ ],
+ [
+ 94.876232536900005,
+ 36.350674843199997,
+ 0.0
+ ],
+ [
+ 94.888830768299997,
+ 36.363811204699999,
+ 0.0
+ ],
+ [
+ 94.896781439099996,
+ 36.379125204,
+ 0.0
+ ],
+ [
+ 94.675320743,
+ 36.421328710099999,
+ 0.0
+ ],
+ [
+ 94.569587154600001,
+ 36.433730425100002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2423,
+ "name": "Golmud Airport",
+ "country": "CN",
+ "city": "Golmud",
+ "height": 120,
+ "level": 2,
+ "lat": "36.3998055745803",
+ "lng": "94.7860808528775",
+ "radius": 25052,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.530513310900005,
+ 36.308177678500002,
+ 120.0
+ ],
+ [
+ 94.528377573200004,
+ 36.488033784300001,
+ 120.0
+ ],
+ [
+ 95.041636145799998,
+ 36.4919640297,
+ 120.0
+ ],
+ [
+ 95.043771991499995,
+ 36.312107923900001,
+ 120.0
+ ],
+ [
+ 94.530513310900005,
+ 36.308177678500002,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001416,
+ "name": "Golmud Airport",
+ "country": "CN",
+ "city": "Golmud",
+ "height": 500,
+ "level": 2,
+ "lat": "36.402839",
+ "lng": "94.786321",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.786321,
+ 36.853408433865383,
+ 500.0
+ ],
+ [
+ 94.883667106816773,
+ 36.846523946090187,
+ 500.0
+ ],
+ [
+ 94.978004655204529,
+ 36.826083253992884,
+ 500.0
+ ],
+ [
+ 95.066422784582642,
+ 36.792717758767118,
+ 500.0
+ ],
+ [
+ 95.14620225870226,
+ 36.74745702212747,
+ 500.0
+ ],
+ [
+ 95.214902073358417,
+ 36.691695527732122,
+ 500.0
+ ],
+ [
+ 95.270435622244818,
+ 36.627147934087546,
+ 500.0
+ ],
+ [
+ 95.311133879177717,
+ 36.555794479705199,
+ 500.0
+ ],
+ [
+ 95.335793736894942,
+ 36.479818510670349,
+ 500.0
+ ],
+ [
+ 95.343710364352006,
+ 36.401538310009315,
+ 500.0
+ ],
+ [
+ 95.334693148581025,
+ 36.323335516542187,
+ 500.0
+ ],
+ [
+ 95.309065426730342,
+ 36.247582434938238,
+ 500.0
+ ],
+ [
+ 95.267648756296353,
+ 36.17657047053207,
+ 500.0
+ ],
+ [
+ 95.211732900062188,
+ 36.112441787298934,
+ 500.0
+ ],
+ [
+ 95.143033014879947,
+ 36.057126101294365,
+ 500.0
+ ],
+ [
+ 95.06363574005583,
+ 36.012284299954274,
+ 500.0
+ ],
+ [
+ 94.975935999685348,
+ 35.979260332835516,
+ 500.0
+ ],
+ [
+ 94.882566385957162,
+ 35.959042561700798,
+ 500.0
+ ],
+ [
+ 94.786321,
+ 35.95223549436222,
+ 500.0
+ ],
+ [
+ 94.69007561404284,
+ 35.959042561700798,
+ 500.0
+ ],
+ [
+ 94.596706000314654,
+ 35.979260332835516,
+ 500.0
+ ],
+ [
+ 94.509006259944172,
+ 36.012284299954274,
+ 500.0
+ ],
+ [
+ 94.429608985120055,
+ 36.057126101294365,
+ 500.0
+ ],
+ [
+ 94.360909099937814,
+ 36.112441787298934,
+ 500.0
+ ],
+ [
+ 94.304993243703649,
+ 36.17657047053207,
+ 500.0
+ ],
+ [
+ 94.26357657326966,
+ 36.247582434938238,
+ 500.0
+ ],
+ [
+ 94.237948851418977,
+ 36.323335516542187,
+ 500.0
+ ],
+ [
+ 94.228931635647996,
+ 36.401538310009315,
+ 500.0
+ ],
+ [
+ 94.23684826310506,
+ 36.479818510670349,
+ 500.0
+ ],
+ [
+ 94.261508120822285,
+ 36.555794479705199,
+ 500.0
+ ],
+ [
+ 94.302206377755184,
+ 36.627147934087546,
+ 500.0
+ ],
+ [
+ 94.357739926641585,
+ 36.691695527732122,
+ 500.0
+ ],
+ [
+ 94.426439741297742,
+ 36.74745702212747,
+ 500.0
+ ],
+ [
+ 94.50621921541736,
+ 36.792717758767118,
+ 500.0
+ ],
+ [
+ 94.594637344795473,
+ 36.826083253992884,
+ 500.0
+ ],
+ [
+ 94.688974893183229,
+ 36.846523946090187,
+ 500.0
+ ],
+ [
+ 94.786321,
+ 36.853408433865383,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001434,
+ "name": "德令哈",
+ "country": "CN",
+ "city": "海西",
+ "height": 500,
+ "level": 2,
+ "lat": "37.1258333333333",
+ "lng": "97.26875",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.26875,
+ 37.576347766677664,
+ 500.0
+ ],
+ [
+ 97.367029187151374,
+ 37.56946306488345,
+ 500.0
+ ],
+ [
+ 97.462269610645521,
+ 37.549021833949233,
+ 500.0
+ ],
+ [
+ 97.551531353797571,
+ 37.515655769428996,
+ 500.0
+ ],
+ [
+ 97.632068357542082,
+ 37.470394874708006,
+ 500.0
+ ],
+ [
+ 97.701415988593212,
+ 37.414634155983677,
+ 500.0
+ ],
+ [
+ 97.757467994807172,
+ 37.350088795038204,
+ 500.0
+ ],
+ [
+ 97.798540274017199,
+ 37.278739471252614,
+ 500.0
+ ],
+ [
+ 97.823419581585952,
+ 37.202769814002956,
+ 500.0
+ ],
+ [
+ 97.831396040270775,
+ 37.124498174661674,
+ 500.0
+ ],
+ [
+ 97.822279034584994,
+ 37.046306013352535,
+ 500.0
+ ],
+ [
+ 97.796396722299789,
+ 36.970565206396479,
+ 500.0
+ ],
+ [
+ 97.75457994478252,
+ 36.89956650857296,
+ 500.0
+ ],
+ [
+ 97.698131748681718,
+ 36.835451265563492,
+ 500.0
+ ],
+ [
+ 97.628784042496974,
+ 36.78014828272903,
+ 500.0
+ ],
+ [
+ 97.548643113527959,
+ 36.735317532148841,
+ 500.0
+ ],
+ [
+ 97.46012584258952,
+ 36.702302133738733,
+ 500.0
+ ],
+ [
+ 97.365888498945438,
+ 36.682089788403744,
+ 500.0
+ ],
+ [
+ 97.26875,
+ 36.67528457858495,
+ 500.0
+ ],
+ [
+ 97.171611501054556,
+ 36.682089788403744,
+ 500.0
+ ],
+ [
+ 97.077374157410475,
+ 36.702302133738733,
+ 500.0
+ ],
+ [
+ 96.988856886472036,
+ 36.735317532148841,
+ 500.0
+ ],
+ [
+ 96.90871595750302,
+ 36.78014828272903,
+ 500.0
+ ],
+ [
+ 96.839368251318277,
+ 36.835451265563492,
+ 500.0
+ ],
+ [
+ 96.782920055217474,
+ 36.89956650857296,
+ 500.0
+ ],
+ [
+ 96.741103277700205,
+ 36.970565206396479,
+ 500.0
+ ],
+ [
+ 96.715220965415,
+ 37.046306013352535,
+ 500.0
+ ],
+ [
+ 96.706103959729219,
+ 37.124498174661674,
+ 500.0
+ ],
+ [
+ 96.714080418414042,
+ 37.202769814002956,
+ 500.0
+ ],
+ [
+ 96.738959725982795,
+ 37.278739471252614,
+ 500.0
+ ],
+ [
+ 96.780032005192822,
+ 37.350088795038204,
+ 500.0
+ ],
+ [
+ 96.836084011406783,
+ 37.414634155983677,
+ 500.0
+ ],
+ [
+ 96.905431642457913,
+ 37.470394874708006,
+ 500.0
+ ],
+ [
+ 96.985968646202423,
+ 37.515655769428996,
+ 500.0
+ ],
+ [
+ 97.075230389354473,
+ 37.549021833949233,
+ 500.0
+ ],
+ [
+ 97.17047081284862,
+ 37.56946306488345,
+ 500.0
+ ],
+ [
+ 97.26875,
+ 37.576347766677664,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33228,
+ "name": "德令哈",
+ "country": "CN",
+ "city": "海西",
+ "height": 0,
+ "level": 2,
+ "lat": "37.136353960572",
+ "lng": "97.3210454866568",
+ "radius": 13471,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.472920360399996,
+ 37.140900869399999,
+ 0.0
+ ],
+ [
+ 97.4437744178,
+ 37.207875713299998,
+ 0.0
+ ],
+ [
+ 97.350505434200002,
+ 37.1695262259,
+ 0.0
+ ],
+ [
+ 97.322332893500004,
+ 37.187051410700001,
+ 0.0
+ ],
+ [
+ 97.302464688,
+ 37.192049606,
+ 0.0
+ ],
+ [
+ 97.281648634500002,
+ 37.192777396899999,
+ 0.0
+ ],
+ [
+ 97.226295831399995,
+ 37.180849402100002,
+ 0.0
+ ],
+ [
+ 97.194147903100003,
+ 37.165477794700003,
+ 0.0
+ ],
+ [
+ 97.181345089700002,
+ 37.1523860876,
+ 0.0
+ ],
+ [
+ 97.170364309700005,
+ 37.120659111899997,
+ 0.0
+ ],
+ [
+ 97.364614781300006,
+ 37.1292114914,
+ 0.0
+ ],
+ [
+ 97.472920360399996,
+ 37.140900869399999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33228,
+ "name": "德令哈",
+ "country": "CN",
+ "city": "海西",
+ "height": 0,
+ "level": 2,
+ "lat": "37.1071429957685",
+ "lng": "97.217113868376",
+ "radius": 13306,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.170364309700005,
+ 37.120659111899997,
+ 0.0
+ ],
+ [
+ 97.0670789391,
+ 37.109097838499999,
+ 0.0
+ ],
+ [
+ 97.091187022300005,
+ 37.042133901500002,
+ 0.0
+ ],
+ [
+ 97.1895355491,
+ 37.083796701899999,
+ 0.0
+ ],
+ [
+ 97.217881483300005,
+ 37.064556436799997,
+ 0.0
+ ],
+ [
+ 97.237500640199997,
+ 37.059043078,
+ 0.0
+ ],
+ [
+ 97.2786844261,
+ 37.060812284299999,
+ 0.0
+ ],
+ [
+ 97.308671662199998,
+ 37.069142151400001,
+ 0.0
+ ],
+ [
+ 97.340705458900004,
+ 37.084439222100002,
+ 0.0
+ ],
+ [
+ 97.361690746199997,
+ 37.112777819500003,
+ 0.0
+ ],
+ [
+ 97.364614781300006,
+ 37.1292114914,
+ 0.0
+ ],
+ [
+ 97.170364309700005,
+ 37.120659111899997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33228,
+ "name": "德令哈",
+ "country": "CN",
+ "city": "海西",
+ "height": 120,
+ "level": 2,
+ "lat": "37.1245862216192",
+ "lng": "97.2689361889447",
+ "radius": 23723,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.465373602499994,
+ 37.269624483800001,
+ 120.0
+ ],
+ [
+ 97.534453399300006,
+ 37.0983870958,
+ 120.0
+ ],
+ [
+ 97.072369832700005,
+ 36.979983494899997,
+ 120.0
+ ],
+ [
+ 97.003398014799998,
+ 37.151220883,
+ 120.0
+ ],
+ [
+ 97.465373602499994,
+ 37.269624483800001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7809,
+ "name": "Xining Caojiabu Airport",
+ "country": "CN",
+ "city": "Xining",
+ "height": 0,
+ "level": 2,
+ "lat": "36.5412217632491",
+ "lng": "101.987219336576",
+ "radius": 13773,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.957844861,
+ 36.574505466,
+ 0.0
+ ],
+ [
+ 101.86289611399999,
+ 36.614542484300003,
+ 0.0
+ ],
+ [
+ 101.833689659,
+ 36.552642515599999,
+ 0.0
+ ],
+ [
+ 101.940403449,
+ 36.534255017299998,
+ 0.0
+ ],
+ [
+ 101.94882968899999,
+ 36.507587270199998,
+ 0.0
+ ],
+ [
+ 101.96044703699999,
+ 36.4938653118,
+ 0.0
+ ],
+ [
+ 101.976082266,
+ 36.4830261444,
+ 0.0
+ ],
+ [
+ 102.03463408,
+ 36.462483525099998,
+ 0.0
+ ],
+ [
+ 102.071360301,
+ 36.459406310699997,
+ 0.0
+ ],
+ [
+ 102.091291271,
+ 36.463713693899997,
+ 0.0
+ ],
+ [
+ 102.123751681,
+ 36.4837610756,
+ 0.0
+ ],
+ [
+ 101.957844861,
+ 36.574505466,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7809,
+ "name": "Xining Caojiabu Airport",
+ "country": "CN",
+ "city": "Xining",
+ "height": 0,
+ "level": 2,
+ "lat": "36.5101341862654",
+ "lng": "102.089145144841",
+ "radius": 13741,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.21881511,
+ 36.443802082200001,
+ 0.0
+ ],
+ [
+ 102.242895408,
+ 36.510780932300001,
+ 0.0
+ ],
+ [
+ 102.137916887,
+ 36.525758846499997,
+ 0.0
+ ],
+ [
+ 102.131054478,
+ 36.550720727700003,
+ 0.0
+ ],
+ [
+ 102.120239881,
+ 36.564864256200003,
+ 0.0
+ ],
+ [
+ 102.087054299,
+ 36.584176639399999,
+ 0.0
+ ],
+ [
+ 102.043682351,
+ 36.5958545521,
+ 0.0
+ ],
+ [
+ 102.010701798,
+ 36.598313550199997,
+ 0.0
+ ],
+ [
+ 101.990666668,
+ 36.594219204600002,
+ 0.0
+ ],
+ [
+ 101.957844861,
+ 36.574505466,
+ 0.0
+ ],
+ [
+ 102.123751681,
+ 36.4837610756,
+ 0.0
+ ],
+ [
+ 102.21881511,
+ 36.443802082200001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7809,
+ "name": "Xining Caojiabu Airport",
+ "country": "CN",
+ "city": "Xining",
+ "height": 120,
+ "level": 2,
+ "lat": "36.529185860236",
+ "lng": "102.039792162988",
+ "radius": 24154,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.30948267799999,
+ 36.544444905799999,
+ 120.0
+ ],
+ [
+ 102.23121683,
+ 36.375954923,
+ 120.0
+ ],
+ [
+ 101.770117766,
+ 36.514347444400002,
+ 120.0
+ ],
+ [
+ 101.848523775,
+ 36.682837427099997,
+ 120.0
+ ],
+ [
+ 102.30948267799999,
+ 36.544444905799999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001323,
+ "name": "Xining Caojiabu Airport",
+ "country": "CN",
+ "city": "Xining",
+ "height": 500,
+ "level": 2,
+ "lat": "36.529386",
+ "lng": "102.039922",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.039922,
+ 36.979945835911508,
+ 500.0
+ ],
+ [
+ 102.137429022397285,
+ 36.973061311677327,
+ 500.0
+ ],
+ [
+ 102.231922277521633,
+ 36.952620528101285,
+ 500.0
+ ],
+ [
+ 102.32048589407367,
+ 36.919254937417222,
+ 500.0
+ ],
+ [
+ 102.400396010143183,
+ 36.873994177917041,
+ 500.0
+ ],
+ [
+ 102.469207546535813,
+ 36.818232823844795,
+ 500.0
+ ],
+ [
+ 102.52483050878368,
+ 36.753685624396141,
+ 500.0
+ ],
+ [
+ 102.565593270554302,
+ 36.6823328944458,
+ 500.0
+ ],
+ [
+ 102.59029097607845,
+ 36.606358029069014,
+ 500.0
+ ],
+ [
+ 102.598217923799183,
+ 36.528079322950532,
+ 500.0
+ ],
+ [
+ 102.589183500079045,
+ 36.449878383664739,
+ 500.0
+ ],
+ [
+ 102.563511873237047,
+ 36.374127441278254,
+ 500.0
+ ],
+ [
+ 102.522026201731933,
+ 36.303117787933019,
+ 500.0
+ ],
+ [
+ 102.466018539213209,
+ 36.23899144528319,
+ 500.0
+ ],
+ [
+ 102.397206931511676,
+ 36.183677971023677,
+ 500.0
+ ],
+ [
+ 102.317681406461446,
+ 36.13883809343551,
+ 500.0
+ ],
+ [
+ 102.22984067487856,
+ 36.105815617832135,
+ 500.0
+ ],
+ [
+ 102.136321412380966,
+ 36.085598791081303,
+ 500.0
+ ],
+ [
+ 102.039922,
+ 36.078792047042249,
+ 500.0
+ ],
+ [
+ 101.943522587619043,
+ 36.085598791081303,
+ 500.0
+ ],
+ [
+ 101.850003325121449,
+ 36.105815617832135,
+ 500.0
+ ],
+ [
+ 101.762162593538562,
+ 36.13883809343551,
+ 500.0
+ ],
+ [
+ 101.682637068488333,
+ 36.183677971023677,
+ 500.0
+ ],
+ [
+ 101.613825460786799,
+ 36.23899144528319,
+ 500.0
+ ],
+ [
+ 101.557817798268076,
+ 36.303117787933019,
+ 500.0
+ ],
+ [
+ 101.516332126762961,
+ 36.374127441278254,
+ 500.0
+ ],
+ [
+ 101.490660499920963,
+ 36.449878383664739,
+ 500.0
+ ],
+ [
+ 101.481626076200826,
+ 36.528079322950532,
+ 500.0
+ ],
+ [
+ 101.489553023921559,
+ 36.606358029069014,
+ 500.0
+ ],
+ [
+ 101.514250729445706,
+ 36.6823328944458,
+ 500.0
+ ],
+ [
+ 101.555013491216329,
+ 36.753685624396141,
+ 500.0
+ ],
+ [
+ 101.610636453464195,
+ 36.818232823844795,
+ 500.0
+ ],
+ [
+ 101.679447989856826,
+ 36.873994177917041,
+ 500.0
+ ],
+ [
+ 101.759358105926339,
+ 36.919254937417222,
+ 500.0
+ ],
+ [
+ 101.847921722478375,
+ 36.952620528101285,
+ 500.0
+ ],
+ [
+ 101.942414977602724,
+ 36.973061311677327,
+ 500.0
+ ],
+ [
+ 102.039922,
+ 36.979945835911508,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3814,
+ "name": "Lanzhou Zhongchuan Airport",
+ "country": "CN",
+ "city": "Lanzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "36.5569032317468",
+ "lng": "103.618300396653",
+ "radius": 13754,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 103.642909639,
+ 36.592447636099998,
+ 0.0
+ ],
+ [
+ 103.65290578699999,
+ 36.677439701300003,
+ 0.0
+ ],
+ [
+ 103.568676228,
+ 36.674010041400003,
+ 0.0
+ ],
+ [
+ 103.590364634,
+ 36.5923683364,
+ 0.0
+ ],
+ [
+ 103.571673723,
+ 36.584440508100002,
+ 0.0
+ ],
+ [
+ 103.5456225,
+ 36.559033823199997,
+ 0.0
+ ],
+ [
+ 103.539594853,
+ 36.543157583899998,
+ 0.0
+ ],
+ [
+ 103.540549489,
+ 36.493287027100003,
+ 0.0
+ ],
+ [
+ 103.550948555,
+ 36.4639822563,
+ 0.0
+ ],
+ [
+ 103.563449733,
+ 36.450776014,
+ 0.0
+ ],
+ [
+ 103.59879886,
+ 36.4342054472,
+ 0.0
+ ],
+ [
+ 103.642909639,
+ 36.592447636099998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3814,
+ "name": "Lanzhou Zhongchuan Airport",
+ "country": "CN",
+ "city": "Lanzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "36.4698495278663",
+ "lng": "103.624732053756",
+ "radius": 13728,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 103.592119796,
+ 36.349206342199999,
+ 0.0
+ ],
+ [
+ 103.672978587,
+ 36.352648632399998,
+ 0.0
+ ],
+ [
+ 103.651300868,
+ 36.434300107399999,
+ 0.0
+ ],
+ [
+ 103.683783146,
+ 36.453372946800002,
+ 0.0
+ ],
+ [
+ 103.69461186,
+ 36.467502762899997,
+ 0.0
+ ],
+ [
+ 103.700527384,
+ 36.483404805399999,
+ 0.0
+ ],
+ [
+ 103.70111769099999,
+ 36.533380645,
+ 0.0
+ ],
+ [
+ 103.690786801,
+ 36.562616286699999,
+ 0.0
+ ],
+ [
+ 103.67829691599999,
+ 36.5758404563,
+ 0.0
+ ],
+ [
+ 103.642909639,
+ 36.592447636099998,
+ 0.0
+ ],
+ [
+ 103.59879886,
+ 36.4342054472,
+ 0.0
+ ],
+ [
+ 103.592119796,
+ 36.349206342199999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3814,
+ "name": "Lanzhou Zhongchuan Airport",
+ "country": "CN",
+ "city": "Lanzhou",
+ "height": 120,
+ "level": 2,
+ "lat": "36.5133611214898",
+ "lng": "103.6204018762",
+ "radius": 24032,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 103.736905789,
+ 36.318620618099999,
+ 120.0
+ ],
+ [
+ 103.513726055,
+ 36.315008012500002,
+ 120.0
+ ],
+ [
+ 103.503334815,
+ 36.707997250799998,
+ 120.0
+ ],
+ [
+ 103.727650707,
+ 36.711609856300001,
+ 120.0
+ ],
+ [
+ 103.736905789,
+ 36.318620618099999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001423,
+ "name": "Lanzhou Zhongchuan Airport",
+ "country": "CN",
+ "city": "Lanzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "36.515492",
+ "lng": "103.619412",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 103.619412,
+ 36.966052890315346,
+ 500.0
+ ],
+ [
+ 103.716901305652314,
+ 36.959168370104273,
+ 500.0
+ ],
+ [
+ 103.811377417527837,
+ 36.938727596629008,
+ 500.0
+ ],
+ [
+ 103.899925016008908,
+ 36.905362016509677,
+ 500.0
+ ],
+ [
+ 103.979820748470729,
+ 36.860101259615639,
+ 500.0
+ ],
+ [
+ 104.048619984373488,
+ 36.804339890227389,
+ 500.0
+ ],
+ [
+ 104.104233102282464,
+ 36.739792647565146,
+ 500.0
+ ],
+ [
+ 104.144988762136833,
+ 36.668439838103168,
+ 500.0
+ ],
+ [
+ 104.169682300672591,
+ 36.592464851525818,
+ 500.0
+ ],
+ [
+ 104.177608112171143,
+ 36.514185981231734,
+ 500.0
+ ],
+ [
+ 104.168575583064595,
+ 36.435984838226624,
+ 500.0
+ ],
+ [
+ 104.142908790157364,
+ 36.360233660775719,
+ 500.0
+ ],
+ [
+ 104.101430715641371,
+ 36.289223753462664,
+ 500.0
+ ],
+ [
+ 104.04543316094248,
+ 36.225097153586184,
+ 500.0
+ ],
+ [
+ 103.976633853817233,
+ 36.169783436249489,
+ 500.0
+ ],
+ [
+ 103.897122449026142,
+ 36.124943347229554,
+ 500.0
+ ],
+ [
+ 103.809297240471423,
+ 36.091920707696708,
+ 500.0
+ ],
+ [
+ 103.715794454189833,
+ 36.071703777149324,
+ 500.0
+ ],
+ [
+ 103.619412,
+ 36.064896997576469,
+ 500.0
+ ],
+ [
+ 103.523029545810161,
+ 36.071703777149324,
+ 500.0
+ ],
+ [
+ 103.429526759528571,
+ 36.091920707696708,
+ 500.0
+ ],
+ [
+ 103.341701550973852,
+ 36.124943347229554,
+ 500.0
+ ],
+ [
+ 103.26219014618276,
+ 36.169783436249489,
+ 500.0
+ ],
+ [
+ 103.193390839057514,
+ 36.225097153586184,
+ 500.0
+ ],
+ [
+ 103.137393284358623,
+ 36.289223753462664,
+ 500.0
+ ],
+ [
+ 103.09591520984263,
+ 36.360233660775719,
+ 500.0
+ ],
+ [
+ 103.070248416935399,
+ 36.435984838226624,
+ 500.0
+ ],
+ [
+ 103.061215887828851,
+ 36.514185981231734,
+ 500.0
+ ],
+ [
+ 103.069141699327403,
+ 36.592464851525818,
+ 500.0
+ ],
+ [
+ 103.093835237863161,
+ 36.668439838103168,
+ 500.0
+ ],
+ [
+ 103.13459089771753,
+ 36.739792647565146,
+ 500.0
+ ],
+ [
+ 103.190204015626506,
+ 36.804339890227389,
+ 500.0
+ ],
+ [
+ 103.259003251529265,
+ 36.860101259615639,
+ 500.0
+ ],
+ [
+ 103.338898983991086,
+ 36.905362016509677,
+ 500.0
+ ],
+ [
+ 103.427446582472157,
+ 36.938727596629008,
+ 500.0
+ ],
+ [
+ 103.52192269434768,
+ 36.959168370104273,
+ 500.0
+ ],
+ [
+ 103.619412,
+ 36.966052890315346,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286027,
+ "name": "Yanan nanniwan Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "36.5222736873773",
+ "lng": "109.449854811983",
+ "radius": 13619,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.463823198,
+ 36.558901623200001,
+ 0.0
+ ],
+ [
+ 109.451275724,
+ 36.644751311,
+ 0.0
+ ],
+ [
+ 109.371829068,
+ 36.627514821200002,
+ 0.0
+ ],
+ [
+ 109.414901761,
+ 36.548279245899998,
+ 0.0
+ ],
+ [
+ 109.396984097,
+ 36.537213656399999,
+ 0.0
+ ],
+ [
+ 109.376984662,
+ 36.508492165100002,
+ 0.0
+ ],
+ [
+ 109.374567091,
+ 36.492008086799999,
+ 0.0
+ ],
+ [
+ 109.377538625,
+ 36.4755827002,
+ 0.0
+ ],
+ [
+ 109.39558125,
+ 36.431236827299998,
+ 0.0
+ ],
+ [
+ 109.424987782,
+ 36.408361321199997,
+ 0.0
+ ],
+ [
+ 109.464657035,
+ 36.400370669499999,
+ 0.0
+ ],
+ [
+ 109.463823198,
+ 36.558901623200001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286027,
+ "name": "Yanan nanniwan Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "36.4369882674607",
+ "lng": "109.478507535512",
+ "radius": 13619,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.47717151,
+ 36.3145094801,
+ 0.0
+ ],
+ [
+ 109.556331218,
+ 36.3317414602,
+ 0.0
+ ],
+ [
+ 109.513488258,
+ 36.410992869099999,
+ 0.0
+ ],
+ [
+ 109.53128982699999,
+ 36.421961017400001,
+ 0.0
+ ],
+ [
+ 109.551381951,
+ 36.450630533800002,
+ 0.0
+ ],
+ [
+ 109.553869091,
+ 36.4671077932,
+ 0.0
+ ],
+ [
+ 109.55096843299999,
+ 36.483541331799998,
+ 0.0
+ ],
+ [
+ 109.532979365,
+ 36.5279870532,
+ 0.0
+ ],
+ [
+ 109.503563953,
+ 36.550892903399998,
+ 0.0
+ ],
+ [
+ 109.463823198,
+ 36.558901623200001,
+ 0.0
+ ],
+ [
+ 109.464657035,
+ 36.400370669499999,
+ 0.0
+ ],
+ [
+ 109.47717151,
+ 36.3145094801,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286027,
+ "name": "Yanan nanniwan Airport",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "36.4796071383076",
+ "lng": "109.464093067176",
+ "radius": 23798,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.634841948,
+ 36.315539044099999,
+ 120.0
+ ],
+ [
+ 109.419412592,
+ 36.268624713299999,
+ 120.0
+ ],
+ [
+ 109.292884398,
+ 36.643609297399998,
+ 120.0
+ ],
+ [
+ 109.509358799,
+ 36.690523627399998,
+ 120.0
+ ],
+ [
+ 109.634841948,
+ 36.315539044099999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001508,
+ "name": "Yanan nanniwan Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "36.4657825",
+ "lng": "109.46888924",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.46888924,
+ 36.916347161490251,
+ 500.0
+ ],
+ [
+ 109.566315258971187,
+ 36.909462655632076,
+ 500.0
+ ],
+ [
+ 109.660730132764741,
+ 36.889021918179452,
+ 500.0
+ ],
+ [
+ 109.749220512439834,
+ 36.855656375687893,
+ 500.0
+ ],
+ [
+ 109.829064864606366,
+ 36.810395627922944,
+ 500.0
+ ],
+ [
+ 109.897820161381617,
+ 36.75463420355392,
+ 500.0
+ ],
+ [
+ 109.953398113861638,
+ 36.690086806148486,
+ 500.0
+ ],
+ [
+ 109.994128404595386,
+ 36.618733712158885,
+ 500.0
+ ],
+ [
+ 110.018807057984162,
+ 36.542758292006766,
+ 500.0
+ ],
+ [
+ 110.026728810666924,
+ 36.464478834501655,
+ 500.0
+ ],
+ [
+ 110.017703049332823,
+ 36.386276962924271,
+ 500.0
+ ],
+ [
+ 109.99205352388968,
+ 36.310524944856887,
+ 500.0
+ ],
+ [
+ 109.950602586882724,
+ 36.239514129368587,
+ 500.0
+ ],
+ [
+ 109.894641138760264,
+ 36.175386609692907,
+ 500.0
+ ],
+ [
+ 109.825885771070759,
+ 36.120072023172739,
+ 500.0
+ ],
+ [
+ 109.746424805899764,
+ 36.075231178137322,
+ 500.0
+ ],
+ [
+ 109.658655047869615,
+ 36.042207952448948,
+ 500.0
+ ],
+ [
+ 109.565211117044669,
+ 36.021990650763186,
+ 500.0
+ ],
+ [
+ 109.46888924,
+ 36.015183744134838,
+ 500.0
+ ],
+ [
+ 109.372567362955323,
+ 36.021990650763186,
+ 500.0
+ ],
+ [
+ 109.279123432130376,
+ 36.042207952448948,
+ 500.0
+ ],
+ [
+ 109.191353674100228,
+ 36.075231178137322,
+ 500.0
+ ],
+ [
+ 109.111892708929233,
+ 36.120072023172739,
+ 500.0
+ ],
+ [
+ 109.043137341239728,
+ 36.175386609692907,
+ 500.0
+ ],
+ [
+ 108.987175893117268,
+ 36.239514129368587,
+ 500.0
+ ],
+ [
+ 108.945724956110311,
+ 36.310524944856887,
+ 500.0
+ ],
+ [
+ 108.920075430667168,
+ 36.386276962924271,
+ 500.0
+ ],
+ [
+ 108.911049669333067,
+ 36.464478834501655,
+ 500.0
+ ],
+ [
+ 108.918971422015829,
+ 36.542758292006766,
+ 500.0
+ ],
+ [
+ 108.943650075404605,
+ 36.618733712158885,
+ 500.0
+ ],
+ [
+ 108.984380366138353,
+ 36.690086806148486,
+ 500.0
+ ],
+ [
+ 109.039958318618375,
+ 36.75463420355392,
+ 500.0
+ ],
+ [
+ 109.108713615393626,
+ 36.810395627922944,
+ 500.0
+ ],
+ [
+ 109.188557967560158,
+ 36.855656375687893,
+ 500.0
+ ],
+ [
+ 109.277048347235251,
+ 36.889021918179452,
+ 500.0
+ ],
+ [
+ 109.371463221028804,
+ 36.909462655632076,
+ 500.0
+ ],
+ [
+ 109.46888924,
+ 36.916347161490251,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001320,
+ "name": "Handan Airport",
+ "country": "CN",
+ "city": "Handan",
+ "height": 500,
+ "level": 2,
+ "lat": "36.52455",
+ "lng": "114.424158",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.424158,
+ 36.975110202928519,
+ 500.0
+ ],
+ [
+ 114.521658854454856,
+ 36.968225680095209,
+ 500.0
+ ],
+ [
+ 114.616146141294962,
+ 36.947784900036496,
+ 500.0
+ ],
+ [
+ 114.704704181284612,
+ 36.914419313031999,
+ 500.0
+ ],
+ [
+ 114.784609289817269,
+ 36.869158554441633,
+ 500.0
+ ],
+ [
+ 114.85341654389407,
+ 36.813397195040992,
+ 500.0
+ ],
+ [
+ 114.909036078915534,
+ 36.748849980553125,
+ 500.0
+ ],
+ [
+ 114.949796368212276,
+ 36.677497222928402,
+ 500.0
+ ],
+ [
+ 114.974492623034081,
+ 36.601522315365365,
+ 500.0
+ ],
+ [
+ 114.982419175189207,
+ 36.523243552100915,
+ 500.0
+ ],
+ [
+ 114.973385411064285,
+ 36.445042541903788,
+ 500.0
+ ],
+ [
+ 114.947715467118215,
+ 36.369291517694471,
+ 500.0
+ ],
+ [
+ 114.906232440443759,
+ 36.298281775945803,
+ 500.0
+ ],
+ [
+ 114.8502282968808,
+ 36.234155343757749,
+ 500.0
+ ],
+ [
+ 114.781420971525193,
+ 36.178841784885066,
+ 500.0
+ ],
+ [
+ 114.70190036232853,
+ 36.134001833699052,
+ 500.0
+ ],
+ [
+ 114.614065034961712,
+ 36.100979301032943,
+ 500.0
+ ],
+ [
+ 114.520551508524704,
+ 36.080762438151204,
+ 500.0
+ ],
+ [
+ 114.424158,
+ 36.073955681743065,
+ 500.0
+ ],
+ [
+ 114.327764491475307,
+ 36.080762438151204,
+ 500.0
+ ],
+ [
+ 114.234250965038299,
+ 36.100979301032943,
+ 500.0
+ ],
+ [
+ 114.146415637671481,
+ 36.134001833699052,
+ 500.0
+ ],
+ [
+ 114.066895028474818,
+ 36.178841784885066,
+ 500.0
+ ],
+ [
+ 113.998087703119211,
+ 36.234155343757749,
+ 500.0
+ ],
+ [
+ 113.942083559556252,
+ 36.298281775945803,
+ 500.0
+ ],
+ [
+ 113.900600532881796,
+ 36.369291517694471,
+ 500.0
+ ],
+ [
+ 113.874930588935726,
+ 36.445042541903788,
+ 500.0
+ ],
+ [
+ 113.865896824810804,
+ 36.523243552100915,
+ 500.0
+ ],
+ [
+ 113.87382337696593,
+ 36.601522315365365,
+ 500.0
+ ],
+ [
+ 113.898519631787735,
+ 36.677497222928402,
+ 500.0
+ ],
+ [
+ 113.939279921084477,
+ 36.748849980553125,
+ 500.0
+ ],
+ [
+ 113.994899456105941,
+ 36.813397195040992,
+ 500.0
+ ],
+ [
+ 114.063706710182743,
+ 36.869158554441633,
+ 500.0
+ ],
+ [
+ 114.143611818715399,
+ 36.914419313031999,
+ 500.0
+ ],
+ [
+ 114.232169858705049,
+ 36.947784900036496,
+ 500.0
+ ],
+ [
+ 114.326657145545155,
+ 36.968225680095209,
+ 500.0
+ ],
+ [
+ 114.424158,
+ 36.975110202928519,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001503,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Xingtai",
+ "height": 500,
+ "level": 2,
+ "lat": "36.882984",
+ "lng": "114.428826",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.428826,
+ 37.333516951667207,
+ 500.0
+ ],
+ [
+ 114.52678803587807,
+ 37.326632323333484,
+ 500.0
+ ],
+ [
+ 114.621721575162368,
+ 37.306191277846978,
+ 500.0
+ ],
+ [
+ 114.710696577568157,
+ 37.27282541113594,
+ 500.0
+ ],
+ [
+ 114.790976101199362,
+ 37.227564577094377,
+ 500.0
+ ],
+ [
+ 114.860103544220522,
+ 37.171803605037063,
+ 500.0
+ ],
+ [
+ 114.915979331867419,
+ 37.107257499575731,
+ 500.0
+ ],
+ [
+ 114.956924485926862,
+ 37.035906790752357,
+ 500.0
+ ],
+ [
+ 114.981729207006907,
+ 36.959935011856864,
+ 500.0
+ ],
+ [
+ 114.989685332612041,
+ 36.881660490826143,
+ 500.0
+ ],
+ [
+ 114.980602247713804,
+ 36.803464747851478,
+ 500.0
+ ],
+ [
+ 114.954806471264078,
+ 36.727719803707082,
+ 500.0
+ ],
+ [
+ 114.913125688890773,
+ 36.656716632735645,
+ 500.0
+ ],
+ [
+ 114.85685843204935,
+ 36.592596856884306,
+ 500.0
+ ],
+ [
+ 114.787730915479244,
+ 36.537289589024709,
+ 500.0
+ ],
+ [
+ 114.707842748359056,
+ 36.49245511034718,
+ 500.0
+ ],
+ [
+ 114.619603348723871,
+ 36.459436820945584,
+ 500.0
+ ],
+ [
+ 114.525660938358186,
+ 36.439222644908547,
+ 500.0
+ ],
+ [
+ 114.428826,
+ 36.432416808334331,
+ 500.0
+ ],
+ [
+ 114.331991061641816,
+ 36.439222644908547,
+ 500.0
+ ],
+ [
+ 114.238048651276131,
+ 36.459436820945584,
+ 500.0
+ ],
+ [
+ 114.149809251640946,
+ 36.49245511034718,
+ 500.0
+ ],
+ [
+ 114.069921084520757,
+ 36.537289589024709,
+ 500.0
+ ],
+ [
+ 114.000793567950652,
+ 36.592596856884306,
+ 500.0
+ ],
+ [
+ 113.944526311109229,
+ 36.656716632735645,
+ 500.0
+ ],
+ [
+ 113.902845528735924,
+ 36.727719803707082,
+ 500.0
+ ],
+ [
+ 113.877049752286197,
+ 36.803464747851478,
+ 500.0
+ ],
+ [
+ 113.867966667387961,
+ 36.881660490826143,
+ 500.0
+ ],
+ [
+ 113.875922792993094,
+ 36.959935011856864,
+ 500.0
+ ],
+ [
+ 113.900727514073139,
+ 37.035906790752357,
+ 500.0
+ ],
+ [
+ 113.941672668132583,
+ 37.107257499575731,
+ 500.0
+ ],
+ [
+ 113.99754845577948,
+ 37.171803605037063,
+ 500.0
+ ],
+ [
+ 114.066675898800639,
+ 37.227564577094377,
+ 500.0
+ ],
+ [
+ 114.146955422431844,
+ 37.27282541113594,
+ 500.0
+ ],
+ [
+ 114.235930424837633,
+ 37.306191277846978,
+ 500.0
+ ],
+ [
+ 114.330863964121932,
+ 37.326632323333484,
+ 500.0
+ ],
+ [
+ 114.428826,
+ 37.333516951667207,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1378,
+ "name": "Handan Airport",
+ "country": "CN",
+ "city": "Handan",
+ "height": 0,
+ "level": 2,
+ "lat": "36.4944090269551",
+ "lng": "114.384249871279",
+ "radius": 13746,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.335345734,
+ 36.487064482100003,
+ 0.0
+ ],
+ [
+ 114.247457925,
+ 36.438012411499997,
+ 0.0
+ ],
+ [
+ 114.307147629,
+ 36.387473037,
+ 0.0
+ ],
+ [
+ 114.372522333,
+ 36.455617736500002,
+ 0.0
+ ],
+ [
+ 114.391965431,
+ 36.448876497500002,
+ 0.0
+ ],
+ [
+ 114.43287899,
+ 36.448508841399999,
+ 0.0
+ ],
+ [
+ 114.452032994,
+ 36.454684214499999,
+ 0.0
+ ],
+ [
+ 114.496375758,
+ 36.4858578917,
+ 0.0
+ ],
+ [
+ 114.518455549,
+ 36.514050336799997,
+ 0.0
+ ],
+ [
+ 114.519894015,
+ 36.546942512100003,
+ 0.0
+ ],
+ [
+ 114.512661408,
+ 36.562490725899998,
+ 0.0
+ ],
+ [
+ 114.335345734,
+ 36.487064482100003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1378,
+ "name": "Handan Airport",
+ "country": "CN",
+ "city": "Handan",
+ "height": 0,
+ "level": 2,
+ "lat": "36.5550895758832",
+ "lng": "114.463808516367",
+ "radius": 13747,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.600793915,
+ 36.6115327953,
+ 0.0
+ ],
+ [
+ 114.540989557,
+ 36.662079937,
+ 0.0
+ ],
+ [
+ 114.475389031,
+ 36.594021370199997,
+ 0.0
+ ],
+ [
+ 114.43539281,
+ 36.603114624299998,
+ 0.0
+ ],
+ [
+ 114.41486793599999,
+ 36.6011143928,
+ 0.0
+ ],
+ [
+ 114.379168122,
+ 36.584938416599996,
+ 0.0
+ ],
+ [
+ 114.33790820599999,
+ 36.550613150799997,
+ 0.0
+ ],
+ [
+ 114.329388585,
+ 36.535491940599996,
+ 0.0
+ ],
+ [
+ 114.32603251099999,
+ 36.519114256500004,
+ 0.0
+ ],
+ [
+ 114.335345734,
+ 36.487064482100003,
+ 0.0
+ ],
+ [
+ 114.512661408,
+ 36.562490725899998,
+ 0.0
+ ],
+ [
+ 114.600793915,
+ 36.6115327953,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1378,
+ "name": "Handan Airport",
+ "country": "CN",
+ "city": "Handan",
+ "height": 120,
+ "level": 2,
+ "lat": "36.5245863686234",
+ "lng": "114.424217495999",
+ "radius": 23903,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.523170994,
+ 36.724351038899997,
+ 120.0
+ ],
+ [
+ 114.677549329,
+ 36.593912493600001,
+ 120.0
+ ],
+ [
+ 114.324869011,
+ 36.325030430699996,
+ 120.0
+ ],
+ [
+ 114.171026318,
+ 36.455468976799999,
+ 120.0
+ ],
+ [
+ 114.523170994,
+ 36.724351038899997,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7810,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Xingtai",
+ "height": 0,
+ "level": 2,
+ "lat": "36.840031722619",
+ "lng": "114.446003270623",
+ "radius": 13711,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.431023756,
+ 36.801787465099999,
+ 0.0
+ ],
+ [
+ 114.44558586,
+ 36.716724213,
+ 0.0
+ ],
+ [
+ 114.531551542,
+ 36.737508217600002,
+ 0.0
+ ],
+ [
+ 114.484991105,
+ 36.814824364,
+ 0.0
+ ],
+ [
+ 114.512341129,
+ 36.839038647700001,
+ 0.0
+ ],
+ [
+ 114.519350945,
+ 36.854660253200002,
+ 0.0
+ ],
+ [
+ 114.521070779,
+ 36.871201359200001,
+ 0.0
+ ],
+ [
+ 114.506571475,
+ 36.916256180300003,
+ 0.0
+ ],
+ [
+ 114.48574287,
+ 36.944405209300001,
+ 0.0
+ ],
+ [
+ 114.469151769,
+ 36.9543901471,
+ 0.0
+ ],
+ [
+ 114.429269039,
+ 36.962611408,
+ 0.0
+ ],
+ [
+ 114.431023756,
+ 36.801787465099999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7810,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Xingtai",
+ "height": 0,
+ "level": 2,
+ "lat": "36.9243550669977",
+ "lng": "114.414169086249",
+ "radius": 13711,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.414658341,
+ 37.047661627,
+ 0.0
+ ],
+ [
+ 114.328403464,
+ 37.026873482500001,
+ 0.0
+ ],
+ [
+ 114.37520913,
+ 36.949572502300001,
+ 0.0
+ ],
+ [
+ 114.347784919,
+ 36.925225177,
+ 0.0
+ ],
+ [
+ 114.34083533099999,
+ 36.909584522700001,
+ 0.0
+ ],
+ [
+ 114.342949156,
+ 36.876715490499997,
+ 0.0
+ ],
+ [
+ 114.35378055699999,
+ 36.848090194900003,
+ 0.0
+ ],
+ [
+ 114.37463886,
+ 36.819960973800001,
+ 0.0
+ ],
+ [
+ 114.391215009,
+ 36.809991179400001,
+ 0.0
+ ],
+ [
+ 114.431023756,
+ 36.801787465099999,
+ 0.0
+ ],
+ [
+ 114.429269039,
+ 36.962611408,
+ 0.0
+ ],
+ [
+ 114.414658341,
+ 37.047661627,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7810,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Xingtai",
+ "height": 120,
+ "level": 2,
+ "lat": "36.8821612761322",
+ "lng": "114.4299815919",
+ "radius": 23861,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.251718319,
+ 37.042666434300003,
+ 120.0
+ ],
+ [
+ 114.467516755,
+ 37.09465006,
+ 120.0
+ ],
+ [
+ 114.60779171,
+ 36.7216006401,
+ 120.0
+ ],
+ [
+ 114.393044968,
+ 36.669617013500002,
+ 120.0
+ ],
+ [
+ 114.251718319,
+ 37.042666434300003,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7513,
+ "name": "Yaoqiang Airport",
+ "country": "CN",
+ "city": "Jinan",
+ "height": 0,
+ "level": 2,
+ "lat": "36.9021010891533",
+ "lng": "117.217471214408",
+ "radius": 13712,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.241285199,
+ 36.935743768199998,
+ 0.0
+ ],
+ [
+ 117.259619042,
+ 37.020728991399999,
+ 0.0
+ ],
+ [
+ 117.175395807,
+ 37.020745405200003,
+ 0.0
+ ],
+ [
+ 117.188712167,
+ 36.935724967600002,
+ 0.0
+ ],
+ [
+ 117.159363923,
+ 36.920271927400002,
+ 0.0
+ ],
+ [
+ 117.147058571,
+ 36.906903960800001,
+ 0.0
+ ],
+ [
+ 117.139503281,
+ 36.891444439,
+ 0.0
+ ],
+ [
+ 117.137209621,
+ 36.840000739799997,
+ 0.0
+ ],
+ [
+ 117.144327973,
+ 36.814182442800004,
+ 0.0
+ ],
+ [
+ 117.155295224,
+ 36.800097148100001,
+ 0.0
+ ],
+ [
+ 117.188723166,
+ 36.780950548200003,
+ 0.0
+ ],
+ [
+ 117.241285199,
+ 36.935743768199998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7513,
+ "name": "Yaoqiang Airport",
+ "country": "CN",
+ "city": "Jinan",
+ "height": 0,
+ "level": 2,
+ "lat": "36.8136793645011",
+ "lng": "117.215822995492",
+ "radius": 13760,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.175418062,
+ 36.694236544900001,
+ 0.0
+ ],
+ [
+ 117.256253949,
+ 36.694242196899999,
+ 0.0
+ ],
+ [
+ 117.241278227,
+ 36.780933788399999,
+ 0.0
+ ],
+ [
+ 117.27287145699999,
+ 36.795560383199998,
+ 0.0
+ ],
+ [
+ 117.285971631,
+ 36.808424015699998,
+ 0.0
+ ],
+ [
+ 117.29778844,
+ 36.839947921300002,
+ 0.0
+ ],
+ [
+ 117.297790893,
+ 36.875000740399997,
+ 0.0
+ ],
+ [
+ 117.288377116,
+ 36.904909973300001,
+ 0.0
+ ],
+ [
+ 117.276271408,
+ 36.918393788300001,
+ 0.0
+ ],
+ [
+ 117.241285199,
+ 36.935743768199998,
+ 0.0
+ ],
+ [
+ 117.188723166,
+ 36.780950548200003,
+ 0.0
+ ],
+ [
+ 117.175418062,
+ 36.694236544900001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7513,
+ "name": "Yaoqiang Airport",
+ "country": "CN",
+ "city": "Jinan",
+ "height": 120,
+ "level": 2,
+ "lat": "36.8575277400312",
+ "lng": "117.217499999714",
+ "radius": 24116,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.329608118,
+ 36.6601108817,
+ 120.0
+ ],
+ [
+ 117.105391882,
+ 36.6601108817,
+ 120.0
+ ],
+ [
+ 117.104811381,
+ 37.054838775100002,
+ 120.0
+ ],
+ [
+ 117.330188619,
+ 37.054838775100002,
+ 120.0
+ ],
+ [
+ 117.329608118,
+ 36.6601108817,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001418,
+ "name": "Yaoqiang Airport",
+ "country": "CN",
+ "city": "Jinan",
+ "height": 500,
+ "level": 2,
+ "lat": "36.857421",
+ "lng": "117.211492",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.211492,
+ 37.307955898417518,
+ 500.0
+ ],
+ [
+ 117.309420873192181,
+ 37.301071277721917,
+ 500.0
+ ],
+ [
+ 117.404322323333375,
+ 37.280630251488176,
+ 500.0
+ ],
+ [
+ 117.493267342837157,
+ 37.247264405202422,
+ 500.0
+ ],
+ [
+ 117.573519943126328,
+ 37.202003577090494,
+ 500.0
+ ],
+ [
+ 117.642624362168007,
+ 37.146242577929335,
+ 500.0
+ ],
+ [
+ 117.698481723424493,
+ 37.081696393764936,
+ 500.0
+ ],
+ [
+ 117.739413584485533,
+ 37.010345538994251,
+ 500.0
+ ],
+ [
+ 117.76421050623523,
+ 36.934373536848497,
+ 500.0
+ ],
+ [
+ 117.772164505507476,
+ 36.856098712826487,
+ 500.0
+ ],
+ [
+ 117.763084967347496,
+ 36.777902593440118,
+ 500.0
+ ],
+ [
+ 117.73729823936533,
+ 36.702157214635463,
+ 500.0
+ ],
+ [
+ 117.695631677223659,
+ 36.631153573805271,
+ 500.0
+ ],
+ [
+ 117.639383340254028,
+ 36.567033321894066,
+ 500.0
+ ],
+ [
+ 117.570278847827993,
+ 36.511725604047349,
+ 500.0
+ ],
+ [
+ 117.490417110820644,
+ 36.466890733895703,
+ 500.0
+ ],
+ [
+ 117.402206766911362,
+ 36.433872140936074,
+ 500.0
+ ],
+ [
+ 117.308295196386979,
+ 36.413657772678519,
+ 500.0
+ ],
+ [
+ 117.211492,
+ 36.406851870297025,
+ 500.0
+ ],
+ [
+ 117.114688803613035,
+ 36.413657772678519,
+ 500.0
+ ],
+ [
+ 117.020777233088651,
+ 36.433872140936074,
+ 500.0
+ ],
+ [
+ 116.93256688917937,
+ 36.466890733895703,
+ 500.0
+ ],
+ [
+ 116.852705152172021,
+ 36.511725604047349,
+ 500.0
+ ],
+ [
+ 116.783600659745986,
+ 36.567033321894066,
+ 500.0
+ ],
+ [
+ 116.727352322776355,
+ 36.631153573805271,
+ 500.0
+ ],
+ [
+ 116.685685760634684,
+ 36.702157214635463,
+ 500.0
+ ],
+ [
+ 116.659899032652518,
+ 36.777902593440118,
+ 500.0
+ ],
+ [
+ 116.650819494492538,
+ 36.856098712826487,
+ 500.0
+ ],
+ [
+ 116.658773493764784,
+ 36.934373536848497,
+ 500.0
+ ],
+ [
+ 116.683570415514481,
+ 37.010345538994251,
+ 500.0
+ ],
+ [
+ 116.724502276575521,
+ 37.081696393764936,
+ 500.0
+ ],
+ [
+ 116.780359637832007,
+ 37.146242577929335,
+ 500.0
+ ],
+ [
+ 116.849464056873686,
+ 37.202003577090494,
+ 500.0
+ ],
+ [
+ 116.929716657162857,
+ 37.247264405202422,
+ 500.0
+ ],
+ [
+ 117.018661676666639,
+ 37.280630251488176,
+ 500.0
+ ],
+ [
+ 117.113563126807833,
+ 37.301071277721917,
+ 500.0
+ ],
+ [
+ 117.211492,
+ 37.307955898417518,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001355,
+ "name": "Weifang Airport",
+ "country": "CN",
+ "city": "Weifang",
+ "height": 500,
+ "level": 2,
+ "lat": "36.646667",
+ "lng": "119.118333",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.118333,
+ 37.097217929581262,
+ 500.0
+ ],
+ [
+ 119.215990058365264,
+ 37.090333371187079,
+ 500.0
+ ],
+ [
+ 119.310628492704708,
+ 37.069892501781787,
+ 500.0
+ ],
+ [
+ 119.399327759712975,
+ 37.036526821082575,
+ 500.0
+ ],
+ [
+ 119.479359684528134,
+ 36.99126603862431,
+ 500.0
+ ],
+ [
+ 119.548275388482537,
+ 36.935504812931285,
+ 500.0
+ ],
+ [
+ 119.603981718063466,
+ 36.870957977584524,
+ 500.0
+ ],
+ [
+ 119.644804622658327,
+ 36.799605918530432,
+ 500.0
+ ],
+ [
+ 119.669537616296509,
+ 36.72363207646864,
+ 500.0
+ ],
+ [
+ 119.677474185855004,
+ 36.645354757001208,
+ 500.0
+ ],
+ [
+ 119.668423717151043,
+ 36.567155538731086,
+ 500.0
+ ],
+ [
+ 119.642711153535586,
+ 36.491406582443595,
+ 500.0
+ ],
+ [
+ 119.601161146217635,
+ 36.420399075121225,
+ 500.0
+ ],
+ [
+ 119.545067884828555,
+ 36.356274906176608,
+ 500.0
+ ],
+ [
+ 119.476152108830945,
+ 36.300963486147957,
+ 500.0
+ ],
+ [
+ 119.396507005447361,
+ 36.256125395415552,
+ 500.0
+ ],
+ [
+ 119.308534816141844,
+ 36.223104305246302,
+ 500.0
+ ],
+ [
+ 119.214876023822882,
+ 36.202888355733904,
+ 500.0
+ ],
+ [
+ 119.118333,
+ 36.1960819120115,
+ 500.0
+ ],
+ [
+ 119.021789976177132,
+ 36.202888355733904,
+ 500.0
+ ],
+ [
+ 118.92813118385817,
+ 36.223104305246302,
+ 500.0
+ ],
+ [
+ 118.840158994552652,
+ 36.256125395415552,
+ 500.0
+ ],
+ [
+ 118.760513891169069,
+ 36.300963486147957,
+ 500.0
+ ],
+ [
+ 118.691598115171459,
+ 36.356274906176608,
+ 500.0
+ ],
+ [
+ 118.635504853782379,
+ 36.420399075121225,
+ 500.0
+ ],
+ [
+ 118.593954846464428,
+ 36.491406582443595,
+ 500.0
+ ],
+ [
+ 118.568242282848971,
+ 36.567155538731086,
+ 500.0
+ ],
+ [
+ 118.559191814145009,
+ 36.645354757001208,
+ 500.0
+ ],
+ [
+ 118.567128383703505,
+ 36.72363207646864,
+ 500.0
+ ],
+ [
+ 118.591861377341687,
+ 36.799605918530432,
+ 500.0
+ ],
+ [
+ 118.632684281936548,
+ 36.870957977584524,
+ 500.0
+ ],
+ [
+ 118.688390611517477,
+ 36.935504812931285,
+ 500.0
+ ],
+ [
+ 118.75730631547188,
+ 36.99126603862431,
+ 500.0
+ ],
+ [
+ 118.837338240287039,
+ 37.036526821082575,
+ 500.0
+ ],
+ [
+ 118.926037507295305,
+ 37.069892501781787,
+ 500.0
+ ],
+ [
+ 119.02067594163475,
+ 37.090333371187079,
+ 500.0
+ ],
+ [
+ 119.118333,
+ 37.097217929581262,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7912,
+ "name": "Weifang Airport",
+ "country": "CN",
+ "city": "Weifang",
+ "height": 0,
+ "level": 2,
+ "lat": "36.6062332234769",
+ "lng": "119.134700789181",
+ "radius": 13220,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.134045115,
+ 36.487335422299999,
+ 0.0
+ ],
+ [
+ 119.214813396,
+ 36.506254454299999,
+ 0.0
+ ],
+ [
+ 119.168154483,
+ 36.584602576100004,
+ 0.0
+ ],
+ [
+ 119.191262477,
+ 36.603846144400002,
+ 0.0
+ ],
+ [
+ 119.19978104099999,
+ 36.6189704787,
+ 0.0
+ ],
+ [
+ 119.203134659,
+ 36.635349060300001,
+ 0.0
+ ],
+ [
+ 119.201091588,
+ 36.651866151,
+ 0.0
+ ],
+ [
+ 119.185230182,
+ 36.6911114834,
+ 0.0
+ ],
+ [
+ 119.156982115,
+ 36.714992696300001,
+ 0.0
+ ],
+ [
+ 119.117612654,
+ 36.724339455100001,
+ 0.0
+ ],
+ [
+ 119.117331123,
+ 36.572367870900003,
+ 0.0
+ ],
+ [
+ 119.134045115,
+ 36.487335422299999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7912,
+ "name": "Weifang Airport",
+ "country": "CN",
+ "city": "Weifang",
+ "height": 0,
+ "level": 2,
+ "lat": "36.690671608903",
+ "lng": "119.105431259823",
+ "radius": 13197,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.117612654,
+ 36.724339455100001,
+ 0.0
+ ],
+ [
+ 119.102613374,
+ 36.809338662899997,
+ 0.0
+ ],
+ [
+ 119.025190357,
+ 36.790432926400001,
+ 0.0
+ ],
+ [
+ 119.06686107,
+ 36.712105114,
+ 0.0
+ ],
+ [
+ 119.04356679199999,
+ 36.689904010100001,
+ 0.0
+ ],
+ [
+ 119.036700568,
+ 36.674245769499997,
+ 0.0
+ ],
+ [
+ 119.035122956,
+ 36.657695839600002,
+ 0.0
+ ],
+ [
+ 119.047256285,
+ 36.616418794200001,
+ 0.0
+ ],
+ [
+ 119.06303739499999,
+ 36.593987435400003,
+ 0.0
+ ],
+ [
+ 119.078552013,
+ 36.583018471499997,
+ 0.0
+ ],
+ [
+ 119.117331123,
+ 36.572367870900003,
+ 0.0
+ ],
+ [
+ 119.117612654,
+ 36.724339455100001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7912,
+ "name": "Weifang Airport",
+ "country": "CN",
+ "city": "Weifang",
+ "height": 120,
+ "level": 2,
+ "lat": "36.6462441914008",
+ "lng": "119.11983997119",
+ "radius": 23615,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.291573313,
+ 36.484747832,
+ 120.0
+ ],
+ [
+ 119.076027882,
+ 36.4367989753,
+ 120.0
+ ],
+ [
+ 118.94765134399999,
+ 36.807675569300002,
+ 120.0
+ ],
+ [
+ 119.16423722099999,
+ 36.855624425099997,
+ 120.0
+ ],
+ [
+ 119.291573313,
+ 36.484747832,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281942,
+ "name": "Gilgit Airport",
+ "country": "PK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "35.9188218433267",
+ "lng": "74.3336712561048",
+ "radius": 3869,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.291288930899995,
+ 35.913107393700002,
+ 0.0
+ ],
+ [
+ 74.371847058499995,
+ 35.934796273499998,
+ 0.0
+ ],
+ [
+ 74.376052632300002,
+ 35.924555795300002,
+ 0.0
+ ],
+ [
+ 74.295491107700002,
+ 35.9028663112,
+ 0.0
+ ],
+ [
+ 74.291288930899995,
+ 35.913107393700002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281942,
+ "name": "Gilgit Airport",
+ "country": "PK",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "35.9351509651529",
+ "lng": "74.3942899112209",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.371847058499995,
+ 35.934796273499998,
+ 60.0
+ ],
+ [
+ 74.407910544100005,
+ 35.949598466399998,
+ 60.0
+ ],
+ [
+ 74.415878443300002,
+ 35.930174106400003,
+ 60.0
+ ],
+ [
+ 74.376052632300002,
+ 35.924555795300002,
+ 60.0
+ ],
+ [
+ 74.371847058499995,
+ 35.934796273499998,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281942,
+ "name": "Gilgit Airport",
+ "country": "PK",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "35.9025113433892",
+ "lng": "74.2730570148215",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.251473312300007,
+ 35.9074816575,
+ 60.0
+ ],
+ [
+ 74.291288930899995,
+ 35.913107393700002,
+ 60.0
+ ],
+ [
+ 74.295491107700002,
+ 35.9028663112,
+ 60.0
+ ],
+ [
+ 74.259452426899998,
+ 35.888058523,
+ 60.0
+ ],
+ [
+ 74.251473312300007,
+ 35.9074816575,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281942,
+ "name": "Gilgit Airport",
+ "country": "PK",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "35.952530033042",
+ "lng": "74.4589585286996",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.407910544100005,
+ 35.949598466399998,
+ 150.0
+ ],
+ [
+ 74.492111223500004,
+ 35.984094930300003,
+ 150.0
+ ],
+ [
+ 74.508827303399997,
+ 35.943232331700003,
+ 150.0
+ ],
+ [
+ 74.415878443300002,
+ 35.930174106400003,
+ 150.0
+ ],
+ [
+ 74.407910544100005,
+ 35.949598466399998,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281942,
+ "name": "Gilgit Airport",
+ "country": "PK",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "35.8850850093227",
+ "lng": "74.2084482338243",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.158592262499994,
+ 35.894303842500001,
+ 150.0
+ ],
+ [
+ 74.251473312300007,
+ 35.9074816575,
+ 150.0
+ ],
+ [
+ 74.259452426899998,
+ 35.888058523,
+ 150.0
+ ],
+ [
+ 74.175414592799996,
+ 35.853465184,
+ 150.0
+ ],
+ [
+ 74.158592262499994,
+ 35.894303842500001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010332,
+ "name": "Gilgit Airport",
+ "country": "PK",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "35.918504",
+ "lng": "74.33048",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.33048,
+ 36.369110049497174,
+ 500.0
+ ],
+ [
+ 74.427219458447695,
+ 36.362225697562032,
+ 500.0
+ ],
+ [
+ 74.520969994982224,
+ 36.341785345123064,
+ 500.0
+ ],
+ [
+ 74.608839638766469,
+ 36.308420199859107,
+ 500.0
+ ],
+ [
+ 74.688126591912862,
+ 36.263159533167325,
+ 500.0
+ ],
+ [
+ 74.756405212893966,
+ 36.20739748532516,
+ 500.0
+ ],
+ [
+ 74.811601669083046,
+ 36.142848371155232,
+ 500.0
+ ],
+ [
+ 74.852056737437778,
+ 36.071492139935877,
+ 500.0
+ ],
+ [
+ 74.87657390330078,
+ 35.995511952487199,
+ 500.0
+ ],
+ [
+ 74.884451618209582,
+ 35.917226048336346,
+ 500.0
+ ],
+ [
+ 74.875499272364635,
+ 35.839016185725178,
+ 500.0
+ ],
+ [
+ 74.850037069851808,
+ 35.763254953385136,
+ 500.0
+ ],
+ [
+ 74.808880532758977,
+ 35.69223418725106,
+ 500.0
+ ],
+ [
+ 74.753310787300776,
+ 35.628096592500114,
+ 500.0
+ ],
+ [
+ 74.685032098701186,
+ 35.57277248727145,
+ 500.0
+ ],
+ [
+ 74.606118331226341,
+ 35.52792336404594,
+ 500.0
+ ],
+ [
+ 74.51895013269656,
+ 35.494893720709875,
+ 500.0
+ ],
+ [
+ 74.42614470043037,
+ 35.474672355778367,
+ 500.0
+ ],
+ [
+ 74.33048,
+ 35.467864058178222,
+ 500.0
+ ],
+ [
+ 74.234815299569618,
+ 35.474672355778367,
+ 500.0
+ ],
+ [
+ 74.142009867303429,
+ 35.494893720709875,
+ 500.0
+ ],
+ [
+ 74.054841668773648,
+ 35.52792336404594,
+ 500.0
+ ],
+ [
+ 73.975927901298803,
+ 35.57277248727145,
+ 500.0
+ ],
+ [
+ 73.907649212699212,
+ 35.628096592500114,
+ 500.0
+ ],
+ [
+ 73.852079467241012,
+ 35.69223418725106,
+ 500.0
+ ],
+ [
+ 73.81092293014818,
+ 35.763254953385136,
+ 500.0
+ ],
+ [
+ 73.785460727635353,
+ 35.839016185725178,
+ 500.0
+ ],
+ [
+ 73.776508381790407,
+ 35.917226048336346,
+ 500.0
+ ],
+ [
+ 73.784386096699208,
+ 35.995511952487199,
+ 500.0
+ ],
+ [
+ 73.808903262562211,
+ 36.071492139935877,
+ 500.0
+ ],
+ [
+ 73.849358330916942,
+ 36.142848371155232,
+ 500.0
+ ],
+ [
+ 73.904554787106022,
+ 36.20739748532516,
+ 500.0
+ ],
+ [
+ 73.972833408087126,
+ 36.263159533167325,
+ 500.0
+ ],
+ [
+ 74.05212036123352,
+ 36.308420199859107,
+ 500.0
+ ],
+ [
+ 74.139990005017765,
+ 36.341785345123064,
+ 500.0
+ ],
+ [
+ 74.233740541552294,
+ 36.362225697562032,
+ 500.0
+ ],
+ [
+ 74.33048,
+ 36.369110049497174,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281943,
+ "name": "Gilgit Airport",
+ "country": "PK",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "35.9188313931356",
+ "lng": "74.3336673354284",
+ "radius": 4818,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.310985187,
+ 35.950636127300001,
+ 0.0
+ ],
+ [
+ 74.337377672,
+ 35.956915069799997,
+ 0.0
+ ],
+ [
+ 74.346668068400007,
+ 35.956967920799997,
+ 0.0
+ ],
+ [
+ 74.3557687622,
+ 35.955455387500002,
+ 0.0
+ ],
+ [
+ 74.371833894,
+ 35.948064531599996,
+ 0.0
+ ],
+ [
+ 74.378095665,
+ 35.942509594599997,
+ 0.0
+ ],
+ [
+ 74.385721469,
+ 35.928885027,
+ 0.0
+ ],
+ [
+ 74.386752918799999,
+ 35.921411178699998,
+ 0.0
+ ],
+ [
+ 74.3830320207,
+ 35.9067595239,
+ 0.0
+ ],
+ [
+ 74.3784432689,
+ 35.900221895199998,
+ 0.0
+ ],
+ [
+ 74.364804472100005,
+ 35.8901382735,
+ 0.0
+ ],
+ [
+ 74.338996683800005,
+ 35.882360620699998,
+ 0.0
+ ],
+ [
+ 74.320648922100006,
+ 35.880700222900003,
+ 0.0
+ ],
+ [
+ 74.311557352799994,
+ 35.882214836199999,
+ 0.0
+ ],
+ [
+ 74.295505816200006,
+ 35.8896060147,
+ 0.0
+ ],
+ [
+ 74.284549193700002,
+ 35.901646464400002,
+ 0.0
+ ],
+ [
+ 74.281618464800005,
+ 35.908782349900001,
+ 0.0
+ ],
+ [
+ 74.281489084200004,
+ 35.92374034,
+ 0.0
+ ],
+ [
+ 74.288885080499995,
+ 35.937447540400001,
+ 0.0
+ ],
+ [
+ 74.295052643899993,
+ 35.9430708493,
+ 0.0
+ ],
+ [
+ 74.310985187,
+ 35.950636127300001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2562,
+ "name": "Guyuan Liupanshan Airport",
+ "country": "CN",
+ "city": "Guyuan",
+ "height": 0,
+ "level": 2,
+ "lat": "36.1222905166029",
+ "lng": "106.216296806056",
+ "radius": 13395,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.242827382,
+ 36.240841902,
+ 0.0
+ ],
+ [
+ 106.160316341,
+ 36.233964895699998,
+ 0.0
+ ],
+ [
+ 106.187019487,
+ 36.150678020800001,
+ 0.0
+ ],
+ [
+ 106.157372305,
+ 36.134096389100002,
+ 0.0
+ ],
+ [
+ 106.145720207,
+ 36.120424336500001,
+ 0.0
+ ],
+ [
+ 106.138849284,
+ 36.1047817416,
+ 0.0
+ ],
+ [
+ 106.13722230899999,
+ 36.063286773400002,
+ 0.0
+ ],
+ [
+ 106.141388144,
+ 36.044404430500002,
+ 0.0
+ ],
+ [
+ 106.164016655,
+ 36.017048413300003,
+ 0.0
+ ],
+ [
+ 106.200511894,
+ 36.002498298200003,
+ 0.0
+ ],
+ [
+ 106.236200174,
+ 36.155815066800002,
+ 0.0
+ ],
+ [
+ 106.242827382,
+ 36.240841902,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2562,
+ "name": "Guyuan Liupanshan Airport",
+ "country": "CN",
+ "city": "Guyuan",
+ "height": 0,
+ "level": 2,
+ "lat": "36.0358690232165",
+ "lng": "106.219607492744",
+ "radius": 13420,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.200511894,
+ 36.002498298200003,
+ 0.0
+ ],
+ [
+ 106.19050564299999,
+ 35.917496009899999,
+ 0.0
+ ],
+ [
+ 106.271314825,
+ 35.922661389799998,
+ 0.0
+ ],
+ [
+ 106.246312794,
+ 36.007656992400001,
+ 0.0
+ ],
+ [
+ 106.275860069,
+ 36.024171348,
+ 0.0
+ ],
+ [
+ 106.28753321,
+ 36.037823706200001,
+ 0.0
+ ],
+ [
+ 106.294442377,
+ 36.0534536041,
+ 0.0
+ ],
+ [
+ 106.296114186,
+ 36.0699967324,
+ 0.0
+ ],
+ [
+ 106.29300775,
+ 36.111795949799998,
+ 0.0
+ ],
+ [
+ 106.271914548,
+ 36.139955415700001,
+ 0.0
+ ],
+ [
+ 106.236200174,
+ 36.155815066800002,
+ 0.0
+ ],
+ [
+ 106.200511894,
+ 36.002498298200003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2562,
+ "name": "Guyuan Liupanshan Airport",
+ "country": "CN",
+ "city": "Guyuan",
+ "height": 120,
+ "level": 2,
+ "lat": "36.0791935990545",
+ "lng": "106.216663251696",
+ "radius": 23612,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.105115646,
+ 36.2715061233,
+ 120.0
+ ],
+ [
+ 106.32821080799999,
+ 36.271506141700002,
+ 120.0
+ ],
+ [
+ 106.327666412,
+ 35.886778216899998,
+ 120.0
+ ],
+ [
+ 106.10566014,
+ 35.886778198499997,
+ 120.0
+ ],
+ [
+ 106.105115646,
+ 36.2715061233,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001403,
+ "name": "Guyuan Liupanshan Airport",
+ "country": "CN",
+ "city": "Guyuan",
+ "height": 500,
+ "level": 2,
+ "lat": "36.079094",
+ "lng": "106.216948",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.216948,
+ 36.529687930150068,
+ 500.0
+ ],
+ [
+ 106.31388699494633,
+ 36.52280353381034,
+ 500.0
+ ],
+ [
+ 106.407830609323781,
+ 36.502363070547169,
+ 500.0
+ ],
+ [
+ 106.49588065923983,
+ 36.468997811884613,
+ 500.0
+ ],
+ [
+ 106.575329611089813,
+ 36.423737124999214,
+ 500.0
+ ],
+ [
+ 106.643746770300851,
+ 36.367975263446262,
+ 500.0
+ ],
+ [
+ 106.699054102711997,
+ 36.303426655411087,
+ 500.0
+ ],
+ [
+ 106.739589160765505,
+ 36.232071345546828,
+ 500.0
+ ],
+ [
+ 106.764153261266983,
+ 36.156092555715226,
+ 500.0
+ ],
+ [
+ 106.772043775940276,
+ 36.077808539673981,
+ 500.0
+ ],
+ [
+ 106.763070093847389,
+ 35.999601016100186,
+ 500.0
+ ],
+ [
+ 106.737553449528946,
+ 35.923842479797379,
+ 500.0
+ ],
+ [
+ 106.696311350196893,
+ 35.85282462438672,
+ 500.0
+ ],
+ [
+ 106.640627762790714,
+ 35.788689976213028,
+ 500.0
+ ],
+ [
+ 106.572210535012388,
+ 35.733368654484735,
+ 500.0
+ ],
+ [
+ 106.493137733106281,
+ 35.688521951783372,
+ 500.0
+ ],
+ [
+ 106.405794700655605,
+ 35.65549418483873,
+ 500.0
+ ],
+ [
+ 106.312803698662407,
+ 35.635274007874031,
+ 500.0
+ ],
+ [
+ 106.216948,
+ 35.628466116943528,
+ 500.0
+ ],
+ [
+ 106.121092301337598,
+ 35.635274007874031,
+ 500.0
+ ],
+ [
+ 106.028101299344399,
+ 35.65549418483873,
+ 500.0
+ ],
+ [
+ 105.940758266893724,
+ 35.688521951783372,
+ 500.0
+ ],
+ [
+ 105.861685464987616,
+ 35.733368654484735,
+ 500.0
+ ],
+ [
+ 105.79326823720929,
+ 35.788689976213028,
+ 500.0
+ ],
+ [
+ 105.737584649803111,
+ 35.85282462438672,
+ 500.0
+ ],
+ [
+ 105.696342550471059,
+ 35.923842479797379,
+ 500.0
+ ],
+ [
+ 105.670825906152615,
+ 35.999601016100186,
+ 500.0
+ ],
+ [
+ 105.661852224059729,
+ 36.077808539673981,
+ 500.0
+ ],
+ [
+ 105.669742738733021,
+ 36.156092555715226,
+ 500.0
+ ],
+ [
+ 105.6943068392345,
+ 36.232071345546828,
+ 500.0
+ ],
+ [
+ 105.734841897288007,
+ 36.303426655411087,
+ 500.0
+ ],
+ [
+ 105.790149229699153,
+ 36.367975263446262,
+ 500.0
+ ],
+ [
+ 105.858566388910191,
+ 36.423737124999214,
+ 500.0
+ ],
+ [
+ 105.938015340760174,
+ 36.468997811884613,
+ 500.0
+ ],
+ [
+ 106.026065390676223,
+ 36.502363070547169,
+ 500.0
+ ],
+ [
+ 106.120009005053674,
+ 36.52280353381034,
+ 500.0
+ ],
+ [
+ 106.216948,
+ 36.529687930150068,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33202,
+ "name": "乔李 ",
+ "country": "CN",
+ "city": "临汾",
+ "height": 0,
+ "level": 2,
+ "lat": "36.1764884487734",
+ "lng": "111.626459210072",
+ "radius": 13252,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.652759119,
+ 36.210905204100001,
+ 0.0
+ ],
+ [
+ 111.649447162,
+ 36.294216099099998,
+ 0.0
+ ],
+ [
+ 111.566940078,
+ 36.285569130299997,
+ 0.0
+ ],
+ [
+ 111.598588951,
+ 36.200537278299997,
+ 0.0
+ ],
+ [
+ 111.571418976,
+ 36.1807385336,
+ 0.0
+ ],
+ [
+ 111.56209176599999,
+ 36.1659462406,
+ 0.0
+ ],
+ [
+ 111.557827388,
+ 36.149709028899998,
+ 0.0
+ ],
+ [
+ 111.558913433,
+ 36.133133977599996,
+ 0.0
+ ],
+ [
+ 111.581070724,
+ 36.082975883800003,
+ 0.0
+ ],
+ [
+ 111.59515731499999,
+ 36.070897820699997,
+ 0.0
+ ],
+ [
+ 111.632292545,
+ 36.057402768899998,
+ 0.0
+ ],
+ [
+ 111.652759119,
+ 36.210905204100001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33202,
+ "name": "乔李 ",
+ "country": "CN",
+ "city": "临汾",
+ "height": 0,
+ "level": 2,
+ "lat": "36.0917827847516",
+ "lng": "111.655308186965",
+ "radius": 13247,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.63222847599999,
+ 35.974113587700003,
+ 0.0
+ ],
+ [
+ 111.71471687899999,
+ 35.982757303500001,
+ 0.0
+ ],
+ [
+ 111.681414514,
+ 36.067806174300003,
+ 0.0
+ ],
+ [
+ 111.708502998,
+ 36.087543508,
+ 0.0
+ ],
+ [
+ 111.717851648,
+ 36.102323125600002,
+ 0.0
+ ],
+ [
+ 111.722150041,
+ 36.118554041,
+ 0.0
+ ],
+ [
+ 111.719431344,
+ 36.155150971300003,
+ 0.0
+ ],
+ [
+ 111.71444083,
+ 36.171350267599998,
+ 0.0
+ ],
+ [
+ 111.69017463599999,
+ 36.197800807900002,
+ 0.0
+ ],
+ [
+ 111.652759119,
+ 36.210905204100001,
+ 0.0
+ ],
+ [
+ 111.632292545,
+ 36.057402768899998,
+ 0.0
+ ],
+ [
+ 111.63222847599999,
+ 35.974113587700003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33202,
+ "name": "乔李 ",
+ "country": "CN",
+ "city": "临汾",
+ "height": 120,
+ "level": 2,
+ "lat": "36.1333454467645",
+ "lng": "111.64155804643",
+ "radius": 23463,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.794072298,
+ 35.962116758299999,
+ 120.0
+ ],
+ [
+ 111.575658332,
+ 35.929176556199998,
+ 120.0
+ ],
+ [
+ 111.488564732,
+ 36.304489243900001,
+ 120.0
+ ],
+ [
+ 111.708025772,
+ 36.3374294455,
+ 120.0
+ ],
+ [
+ 111.794072298,
+ 35.962116758299999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1831,
+ "name": "Changzhi Airport",
+ "country": "CN",
+ "city": "Changzhi",
+ "height": 0,
+ "level": 2,
+ "lat": "36.2039491741664",
+ "lng": "113.118406631331",
+ "radius": 13437,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.08747396299999,
+ 36.176455192900001,
+ 0.0
+ ],
+ [
+ 113.05694097,
+ 36.093768357199998,
+ 0.0
+ ],
+ [
+ 113.139625613,
+ 36.0843264023,
+ 0.0
+ ],
+ [
+ 113.138666964,
+ 36.170619164900003,
+ 0.0
+ ],
+ [
+ 113.15982195399999,
+ 36.175063205900003,
+ 0.0
+ ],
+ [
+ 113.192152773,
+ 36.1951206281,
+ 0.0
+ ],
+ [
+ 113.207741029,
+ 36.225535084100002,
+ 0.0
+ ],
+ [
+ 113.21245387099999,
+ 36.268249595199997,
+ 0.0
+ ],
+ [
+ 113.207223945,
+ 36.284303410200003,
+ 0.0
+ ],
+ [
+ 113.19701479,
+ 36.298718310200002,
+ 0.0
+ ],
+ [
+ 113.164728651,
+ 36.318875872299998,
+ 0.0
+ ],
+ [
+ 113.08747396299999,
+ 36.176455192900001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1831,
+ "name": "Changzhi Airport",
+ "country": "CN",
+ "city": "Changzhi",
+ "height": 0,
+ "level": 2,
+ "lat": "36.2913963003276",
+ "lng": "113.133741825511",
+ "radius": 13437,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.195389754,
+ 36.401572133,
+ 0.0
+ ],
+ [
+ 113.112407024,
+ 36.411016507100001,
+ 0.0
+ ],
+ [
+ 113.1133957,
+ 36.324727687299998,
+ 0.0
+ ],
+ [
+ 113.092089073,
+ 36.320235867400001,
+ 0.0
+ ],
+ [
+ 113.05977308,
+ 36.300108800300002,
+ 0.0
+ ],
+ [
+ 113.049542801,
+ 36.285703548500003,
+ 0.0
+ ],
+ [
+ 113.044289465,
+ 36.269654681900001,
+ 0.0
+ ],
+ [
+ 113.03969148,
+ 36.227011866700003,
+ 0.0
+ ],
+ [
+ 113.055197199,
+ 36.196569860300002,
+ 0.0
+ ],
+ [
+ 113.08747396299999,
+ 36.176455192900001,
+ 0.0
+ ],
+ [
+ 113.164728651,
+ 36.318875872299998,
+ 0.0
+ ],
+ [
+ 113.195389754,
+ 36.401572133,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1831,
+ "name": "Changzhi Airport",
+ "country": "CN",
+ "city": "Changzhi",
+ "height": 120,
+ "level": 2,
+ "lat": "36.2476648434848",
+ "lng": "113.126123009977",
+ "radius": 23623,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.04883562099999,
+ 36.4507959042,
+ 120.0
+ ],
+ [
+ 113.27020692,
+ 36.425613347700001,
+ 120.0
+ ],
+ [
+ 113.20283621199999,
+ 36.044441599499997,
+ 120.0
+ ],
+ [
+ 112.98254203899999,
+ 36.069624156499998,
+ 120.0
+ ],
+ [
+ 113.04883562099999,
+ 36.4507959042,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001335,
+ "name": "乔李 ",
+ "country": "CN",
+ "city": "临汾",
+ "height": 500,
+ "level": 2,
+ "lat": "36.1341666666667",
+ "lng": "111.64125",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.64125,
+ 36.58475643571493,
+ 500.0
+ ],
+ [
+ 111.738257789729147,
+ 36.577872024003867,
+ 500.0
+ ],
+ [
+ 111.832267972095678,
+ 36.557431522330212,
+ 500.0
+ ],
+ [
+ 111.920380221095172,
+ 36.524066224185241,
+ 500.0
+ ],
+ [
+ 111.999885025594125,
+ 36.478805529701013,
+ 500.0
+ ],
+ [
+ 112.068349948869241,
+ 36.423043731410964,
+ 500.0
+ ],
+ [
+ 112.123695508198381,
+ 36.358495296511165,
+ 500.0
+ ],
+ [
+ 112.164258144320542,
+ 36.287140302481639,
+ 500.0
+ ],
+ [
+ 112.188838426414577,
+ 36.211161992205113,
+ 500.0
+ ],
+ [
+ 112.196733353938853,
+ 36.132878624362824,
+ 500.0
+ ],
+ [
+ 112.187752315582529,
+ 36.054671904055972,
+ 500.0
+ ],
+ [
+ 112.162216901170751,
+ 35.978914293817454,
+ 500.0
+ ],
+ [
+ 112.120945302335244,
+ 35.907897438358653,
+ 500.0
+ ],
+ [
+ 112.065222465415459,
+ 35.843763802556111,
+ 500.0
+ ],
+ [
+ 111.99675747324423,
+ 35.788443437237405,
+ 500.0
+ ],
+ [
+ 111.917629840780961,
+ 35.743597566268178,
+ 500.0
+ ],
+ [
+ 111.83022653056743,
+ 35.7105704441041,
+ 500.0
+ ],
+ [
+ 111.73717154941474,
+ 35.690350675366403,
+ 500.0
+ ],
+ [
+ 111.64125,
+ 35.683542924183186,
+ 500.0
+ ],
+ [
+ 111.545328450585259,
+ 35.690350675366403,
+ 500.0
+ ],
+ [
+ 111.452273469432569,
+ 35.7105704441041,
+ 500.0
+ ],
+ [
+ 111.364870159219038,
+ 35.743597566268178,
+ 500.0
+ ],
+ [
+ 111.285742526755769,
+ 35.788443437237405,
+ 500.0
+ ],
+ [
+ 111.217277534584539,
+ 35.843763802556111,
+ 500.0
+ ],
+ [
+ 111.161554697664755,
+ 35.907897438358653,
+ 500.0
+ ],
+ [
+ 111.120283098829248,
+ 35.978914293817454,
+ 500.0
+ ],
+ [
+ 111.09474768441747,
+ 36.054671904055972,
+ 500.0
+ ],
+ [
+ 111.085766646061145,
+ 36.132878624362824,
+ 500.0
+ ],
+ [
+ 111.093661573585422,
+ 36.211161992205113,
+ 500.0
+ ],
+ [
+ 111.118241855679457,
+ 36.287140302481639,
+ 500.0
+ ],
+ [
+ 111.158804491801618,
+ 36.358495296511165,
+ 500.0
+ ],
+ [
+ 111.214150051130758,
+ 36.423043731410964,
+ 500.0
+ ],
+ [
+ 111.282614974405874,
+ 36.478805529701013,
+ 500.0
+ ],
+ [
+ 111.362119778904827,
+ 36.524066224185241,
+ 500.0
+ ],
+ [
+ 111.45023202790432,
+ 36.557431522330212,
+ 500.0
+ ],
+ [
+ 111.544242210270852,
+ 36.577872024003867,
+ 500.0
+ ],
+ [
+ 111.64125,
+ 36.58475643571493,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001507,
+ "name": "Changzhi Airport",
+ "country": "CN",
+ "city": "Changzhi",
+ "height": 500,
+ "level": 2,
+ "lat": "36.247652",
+ "lng": "113.126255",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.126255,
+ 36.698233186693884,
+ 500.0
+ ],
+ [
+ 113.223405143996771,
+ 36.691348743073355,
+ 500.0
+ ],
+ [
+ 113.317553072774075,
+ 36.670908161586517,
+ 500.0
+ ],
+ [
+ 113.405794027708723,
+ 36.637542781108515,
+ 500.0
+ ],
+ [
+ 113.485414405630266,
+ 36.592282069858314,
+ 500.0
+ ],
+ [
+ 113.553978164858052,
+ 36.53652040090185,
+ 500.0
+ ],
+ [
+ 113.609402825244402,
+ 36.471972322040664,
+ 500.0
+ ],
+ [
+ 113.650022527164055,
+ 36.400617978593203,
+ 500.0
+ ],
+ [
+ 113.674636292807904,
+ 36.324640656901508,
+ 500.0
+ ],
+ [
+ 113.682540351365162,
+ 36.246358625863515,
+ 500.0
+ ],
+ [
+ 113.673544090789989,
+ 36.168153562593709,
+ 500.0
+ ],
+ [
+ 113.647969836106512,
+ 36.092397863031742,
+ 500.0
+ ],
+ [
+ 113.606637195196683,
+ 36.021383070934007,
+ 500.0
+ ],
+ [
+ 113.550833141026757,
+ 35.957251524286889,
+ 500.0
+ ],
+ [
+ 113.4822693122196,
+ 35.901933132751218,
+ 500.0
+ ],
+ [
+ 113.4030282214799,
+ 35.857088978330275,
+ 500.0
+ ],
+ [
+ 113.315500181370766,
+ 35.824063186914721,
+ 500.0
+ ],
+ [
+ 113.222312811212447,
+ 35.803844260721604,
+ 500.0
+ ],
+ [
+ 113.126255,
+ 35.797036797966747,
+ 500.0
+ ],
+ [
+ 113.030197188787554,
+ 35.803844260721604,
+ 500.0
+ ],
+ [
+ 112.937009818629235,
+ 35.824063186914721,
+ 500.0
+ ],
+ [
+ 112.849481778520101,
+ 35.857088978330275,
+ 500.0
+ ],
+ [
+ 112.770240687780401,
+ 35.901933132751218,
+ 500.0
+ ],
+ [
+ 112.701676858973244,
+ 35.957251524286889,
+ 500.0
+ ],
+ [
+ 112.645872804803318,
+ 36.021383070934007,
+ 500.0
+ ],
+ [
+ 112.604540163893489,
+ 36.092397863031742,
+ 500.0
+ ],
+ [
+ 112.578965909210012,
+ 36.168153562593709,
+ 500.0
+ ],
+ [
+ 112.569969648634839,
+ 36.246358625863515,
+ 500.0
+ ],
+ [
+ 112.577873707192097,
+ 36.324640656901508,
+ 500.0
+ ],
+ [
+ 112.602487472835946,
+ 36.400617978593203,
+ 500.0
+ ],
+ [
+ 112.643107174755599,
+ 36.471972322040664,
+ 500.0
+ ],
+ [
+ 112.698531835141949,
+ 36.53652040090185,
+ 500.0
+ ],
+ [
+ 112.767095594369735,
+ 36.592282069858314,
+ 500.0
+ ],
+ [
+ 112.846715972291278,
+ 36.637542781108515,
+ 500.0
+ ],
+ [
+ 112.934956927225926,
+ 36.670908161586517,
+ 500.0
+ ],
+ [
+ 113.029104856003229,
+ 36.691348743073355,
+ 500.0
+ ],
+ [
+ 113.126255,
+ 36.698233186693884,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001605,
+ "name": "青岛胶东国际机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "36.35840807",
+ "lng": "120.0893436",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.0893436,
+ 36.808980870730736,
+ 500.0
+ ],
+ [
+ 120.186633447675192,
+ 36.802096395659305,
+ 500.0
+ ],
+ [
+ 120.280916558011555,
+ 36.781655735405764,
+ 500.0
+ ],
+ [
+ 120.369283822254729,
+ 36.748290273291062,
+ 500.0
+ ],
+ [
+ 120.449017621366409,
+ 36.703029544215177,
+ 500.0
+ ],
+ [
+ 120.517678375836354,
+ 36.647268000117684,
+ 500.0
+ ],
+ [
+ 120.573180663934323,
+ 36.582720267752592,
+ 500.0
+ ],
+ [
+ 120.613856368555716,
+ 36.511366558898935,
+ 500.0
+ ],
+ [
+ 120.63850299377151,
+ 36.435390202499796,
+ 500.0
+ ],
+ [
+ 120.646416012907238,
+ 36.35710947751766,
+ 500.0
+ ],
+ [
+ 120.63740481324831,
+ 36.278906033739176,
+ 500.0
+ ],
+ [
+ 120.61179244136359,
+ 36.203152201989226,
+ 500.0
+ ],
+ [
+ 120.570399895029325,
+ 36.132139427277025,
+ 500.0
+ ],
+ [
+ 120.514516136098237,
+ 36.068009923456607,
+ 500.0
+ ],
+ [
+ 120.445855311374729,
+ 36.012693462080719,
+ 500.0
+ ],
+ [
+ 120.366502875461464,
+ 35.967850986359196,
+ 500.0
+ ],
+ [
+ 120.27885242853236,
+ 35.934826496396532,
+ 500.0
+ ],
+ [
+ 120.185535135118485,
+ 35.914608394218128,
+ 500.0
+ ],
+ [
+ 120.0893436,
+ 35.907801213551302,
+ 500.0
+ ],
+ [
+ 119.993152064881528,
+ 35.914608394218128,
+ 500.0
+ ],
+ [
+ 119.899834771467653,
+ 35.934826496396532,
+ 500.0
+ ],
+ [
+ 119.812184324538549,
+ 35.967850986359196,
+ 500.0
+ ],
+ [
+ 119.732831888625284,
+ 36.012693462080719,
+ 500.0
+ ],
+ [
+ 119.664171063901776,
+ 36.068009923456607,
+ 500.0
+ ],
+ [
+ 119.608287304970688,
+ 36.132139427277025,
+ 500.0
+ ],
+ [
+ 119.566894758636423,
+ 36.203152201989226,
+ 500.0
+ ],
+ [
+ 119.541282386751703,
+ 36.278906033739176,
+ 500.0
+ ],
+ [
+ 119.532271187092775,
+ 36.35710947751766,
+ 500.0
+ ],
+ [
+ 119.540184206228503,
+ 36.435390202499796,
+ 500.0
+ ],
+ [
+ 119.564830831444297,
+ 36.511366558898935,
+ 500.0
+ ],
+ [
+ 119.60550653606569,
+ 36.582720267752592,
+ 500.0
+ ],
+ [
+ 119.661008824163659,
+ 36.647268000117684,
+ 500.0
+ ],
+ [
+ 119.729669578633604,
+ 36.703029544215177,
+ 500.0
+ ],
+ [
+ 119.809403377745284,
+ 36.748290273291062,
+ 500.0
+ ],
+ [
+ 119.897770641988458,
+ 36.781655735405764,
+ 500.0
+ ],
+ [
+ 119.992053752324821,
+ 36.802096395659305,
+ 500.0
+ ],
+ [
+ 120.0893436,
+ 36.808980870730736,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001604,
+ "name": "青岛胶东国际机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "36.3317215567194",
+ "lng": "120.142327674273",
+ "radius": 13508,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.093900605,
+ 36.4467796713,
+ 0.0
+ ],
+ [
+ 120.175686732031167,
+ 36.213252949918093,
+ 0.0
+ ],
+ [
+ 120.199773078,
+ 36.219412242200001,
+ 0.0
+ ],
+ [
+ 120.152798214,
+ 36.297103420500001,
+ 0.0
+ ],
+ [
+ 120.169965743,
+ 36.308674533,
+ 0.0
+ ],
+ [
+ 120.18847905299999,
+ 36.338013008899999,
+ 0.0
+ ],
+ [
+ 120.190079809,
+ 36.354561095599998,
+ 0.0
+ ],
+ [
+ 120.186307524,
+ 36.3708789891,
+ 0.0
+ ],
+ [
+ 120.164552115,
+ 36.418292279,
+ 0.0
+ ],
+ [
+ 120.13397702,
+ 36.440156617500001,
+ 0.0
+ ],
+ [
+ 120.093900605,
+ 36.4467796713,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001604,
+ "name": "青岛胶东国际机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "36.3606746169642",
+ "lng": "120.088465209311",
+ "radius": 19091,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.100099727,
+ 36.189234935599998,
+ 0.0
+ ],
+ [
+ 120.178149574,
+ 36.209175047499997,
+ 0.0
+ ],
+ [
+ 120.175686732031167,
+ 36.213252949918093,
+ 0.0
+ ],
+ [
+ 120.093900605,
+ 36.4467796713,
+ 0.0
+ ],
+ [
+ 120.07677932,
+ 36.532113165399998,
+ 0.0
+ ],
+ [
+ 119.99844624399999,
+ 36.512148845799999,
+ 0.0
+ ],
+ [
+ 120.000953229389708,
+ 36.508025138307708,
+ 0.0
+ ],
+ [
+ 119.977014109,
+ 36.501929577200002,
+ 0.0
+ ],
+ [
+ 120.02418918399999,
+ 36.424243457700001,
+ 0.0
+ ],
+ [
+ 120.006903042,
+ 36.412572163299998,
+ 0.0
+ ],
+ [
+ 119.98847856499999,
+ 36.383190232799997,
+ 0.0
+ ],
+ [
+ 119.986941538,
+ 36.366638192800004,
+ 0.0
+ ],
+ [
+ 119.990776534,
+ 36.3503298129,
+ 0.0
+ ],
+ [
+ 120.012537201,
+ 36.303055692,
+ 0.0
+ ],
+ [
+ 120.043079574,
+ 36.281210494699998,
+ 0.0
+ ],
+ [
+ 120.083071209,
+ 36.274588967699998,
+ 0.0
+ ],
+ [
+ 120.100099727,
+ 36.189234935599998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001604,
+ "name": "青岛胶东国际机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "36.3606367475522",
+ "lng": "120.088444298884",
+ "radius": 24688,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.257315428,
+ 36.195687169400003,
+ 120.0
+ ],
+ [
+ 120.044903393,
+ 36.141402232399997,
+ 120.0
+ ],
+ [
+ 119.897411768,
+ 36.515306903599999,
+ 120.0
+ ],
+ [
+ 119.920503332378388,
+ 36.521180004134678,
+ 120.0
+ ],
+ [
+ 119.918804248,
+ 36.525478980800003,
+ 120.0
+ ],
+ [
+ 120.132231198,
+ 36.579855376,
+ 120.0
+ ],
+ [
+ 120.278978263,
+ 36.205971456900002,
+ 120.0
+ ],
+ [
+ 120.255628407437257,
+ 36.199993783859675,
+ 120.0
+ ],
+ [
+ 120.257315428,
+ 36.195687169400003,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284227,
+ "name": "Skardu Airport",
+ "country": "PK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "35.3394942760043",
+ "lng": "75.5414066989641",
+ "radius": 4866,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.518157604799995,
+ 35.378939261,
+ 0.0
+ ],
+ [
+ 75.575789995899996,
+ 35.305902548699997,
+ 0.0
+ ],
+ [
+ 75.564671895,
+ 35.300060063700002,
+ 0.0
+ ],
+ [
+ 75.527040549738345,
+ 35.347741415599558,
+ 0.0
+ ],
+ [
+ 75.556300420900001,
+ 35.3018957468,
+ 0.0
+ ],
+ [
+ 75.544572615299998,
+ 35.296910849,
+ 0.0
+ ],
+ [
+ 75.5040193114,
+ 35.360437122800001,
+ 0.0
+ ],
+ [
+ 75.513757402967016,
+ 35.364572022933224,
+ 0.0
+ ],
+ [
+ 75.5070278707,
+ 35.373098776200003,
+ 0.0
+ ],
+ [
+ 75.518157604799995,
+ 35.378939261,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284227,
+ "name": "Skardu Airport",
+ "country": "PK",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "35.2875252965053",
+ "lng": "75.5727683148303",
+ "radius": 2763,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.575789995899996,
+ 35.305902548699997,
+ 60.0
+ ],
+ [
+ 75.602244636199998,
+ 35.281298466199999,
+ 60.0
+ ],
+ [
+ 75.581157282,
+ 35.2702187521,
+ 60.0
+ ],
+ [
+ 75.578589313882446,
+ 35.274867204500609,
+ 60.0
+ ],
+ [
+ 75.557632628099995,
+ 35.2659604324,
+ 60.0
+ ],
+ [
+ 75.544572615299998,
+ 35.296910849,
+ 60.0
+ ],
+ [
+ 75.556300420900001,
+ 35.3018957468,
+ 60.0
+ ],
+ [
+ 75.575690531469689,
+ 35.280114486183429,
+ 60.0
+ ],
+ [
+ 75.564671895,
+ 35.300060063700002,
+ 60.0
+ ],
+ [
+ 75.575789995899996,
+ 35.305902548699997,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284227,
+ "name": "Skardu Airport",
+ "country": "PK",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "35.3846092160721",
+ "lng": "75.5028360075783",
+ "radius": 2689,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.501651994400007,
+ 35.408781297799997,
+ 60.0
+ ],
+ [
+ 75.518157604799995,
+ 35.378939261,
+ 60.0
+ ],
+ [
+ 75.511517443505184,
+ 35.375454742792876,
+ 60.0
+ ],
+ [
+ 75.5070278707,
+ 35.373098776200003,
+ 60.0
+ ],
+ [
+ 75.513757402967016,
+ 35.364572022933224,
+ 60.0
+ ],
+ [
+ 75.5040193114,
+ 35.360437122800001,
+ 60.0
+ ],
+ [
+ 75.48041523099999,
+ 35.386916497599998,
+ 60.0
+ ],
+ [
+ 75.48847021343876,
+ 35.390337061293579,
+ 60.0
+ ],
+ [
+ 75.480541745899998,
+ 35.397701847800001,
+ 60.0
+ ],
+ [
+ 75.501651994400007,
+ 35.408781297799997,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284227,
+ "name": "Skardu Airport",
+ "country": "PK",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "35.2396227406992",
+ "lng": "75.6076364577165",
+ "radius": 5403,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.602244636199998,
+ 35.281298466199999,
+ 150.0
+ ],
+ [
+ 75.663909660300007,
+ 35.223866572,
+ 150.0
+ ],
+ [
+ 75.619576006700001,
+ 35.200580342199999,
+ 150.0
+ ],
+ [
+ 75.61665067976044,
+ 35.205882837743502,
+ 150.0
+ ],
+ [
+ 75.588067235599993,
+ 35.193737344900001,
+ 150.0
+ ],
+ [
+ 75.557632628099995,
+ 35.2659604324,
+ 150.0
+ ],
+ [
+ 75.578589313882446,
+ 35.274867204500609,
+ 150.0
+ ],
+ [
+ 75.581157282,
+ 35.2702187521,
+ 150.0
+ ],
+ [
+ 75.602244636199998,
+ 35.281298466199999,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284227,
+ "name": "Skardu Airport",
+ "country": "PK",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "35.432213173198",
+ "lng": "75.468199991881",
+ "radius": 5156,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.463091317,
+ 35.478403971,
+ 150.0
+ ],
+ [
+ 75.469215796943715,
+ 35.467346004844025,
+ 150.0
+ ],
+ [
+ 75.472126970900007,
+ 35.4685825197,
+ 150.0
+ ],
+ [
+ 75.483763426462019,
+ 35.441079742836187,
+ 150.0
+ ],
+ [
+ 75.501651994400007,
+ 35.408781297799997,
+ 150.0
+ ],
+ [
+ 75.480541745899998,
+ 35.397701847800001,
+ 150.0
+ ],
+ [
+ 75.48847021343876,
+ 35.390337061293579,
+ 150.0
+ ],
+ [
+ 75.48041523099999,
+ 35.386916497599998,
+ 150.0
+ ],
+ [
+ 75.425278722300007,
+ 35.4486838272,
+ 150.0
+ ],
+ [
+ 75.425485596249544,
+ 35.448771696463652,
+ 150.0
+ ],
+ [
+ 75.418677881299999,
+ 35.455086503700002,
+ 150.0
+ ],
+ [
+ 75.463091317,
+ 35.478403971,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284228,
+ "name": "Skardu Airport",
+ "country": "PK",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "35.3391401263554",
+ "lng": "75.540732302037",
+ "radius": 5828,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.567597632299993,
+ 35.372795948899999,
+ 0.0
+ ],
+ [
+ 75.593569167200002,
+ 35.3384081178,
+ 0.0
+ ],
+ [
+ 75.596352525200004,
+ 35.323623117899999,
+ 0.0
+ ],
+ [
+ 75.591525112,
+ 35.309192717499997,
+ 0.0
+ ],
+ [
+ 75.579924988200005,
+ 35.297611255100001,
+ 0.0
+ ],
+ [
+ 75.563558693600001,
+ 35.290879712600002,
+ 0.0
+ ],
+ [
+ 75.552387237850965,
+ 35.290440935345337,
+ 0.0
+ ],
+ [
+ 75.542431257199993,
+ 35.287852353799998,
+ 0.0
+ ],
+ [
+ 75.524123298500001,
+ 35.288507676899997,
+ 0.0
+ ],
+ [
+ 75.507722516,
+ 35.295182271400002,
+ 0.0
+ ],
+ [
+ 75.496070450199994,
+ 35.306710714399998,
+ 0.0
+ ],
+ [
+ 75.482682988799993,
+ 35.329362639800003,
+ 0.0
+ ],
+ [
+ 75.481546849300003,
+ 35.344292256099997,
+ 0.0
+ ],
+ [
+ 75.491268162500006,
+ 35.3697777235,
+ 0.0
+ ],
+ [
+ 75.502861557900005,
+ 35.381370565099999,
+ 0.0
+ ],
+ [
+ 75.510615025700005,
+ 35.385444429,
+ 0.0
+ ],
+ [
+ 75.528354949399997,
+ 35.389263648700002,
+ 0.0
+ ],
+ [
+ 75.5375651863,
+ 35.388841878100003,
+ 0.0
+ ],
+ [
+ 75.554668632599999,
+ 35.383427052899997,
+ 0.0
+ ],
+ [
+ 75.567597632299993,
+ 35.372795948899999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010622,
+ "name": "Skardu Airport",
+ "country": "PK",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "35.340144",
+ "lng": "75.539587",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.539587,
+ 35.790793515508568,
+ 500.0
+ ],
+ [
+ 75.635620821605258,
+ 35.783909318547963,
+ 500.0
+ ],
+ [
+ 75.728688560893318,
+ 35.763469351286467,
+ 500.0
+ ],
+ [
+ 75.815920218251534,
+ 35.730104594009596,
+ 500.0
+ ],
+ [
+ 75.894634279255214,
+ 35.684843977008484,
+ 500.0
+ ],
+ [
+ 75.962422971995281,
+ 35.629081237194541,
+ 500.0
+ ],
+ [
+ 76.017227322510564,
+ 35.56453028583757,
+ 500.0
+ ],
+ [
+ 76.057399511529525,
+ 35.493170732906925,
+ 500.0
+ ],
+ [
+ 76.081750693896723,
+ 35.417185522439198,
+ 500.0
+ ],
+ [
+ 76.08958314043268,
+ 35.338892844203137,
+ 500.0
+ ],
+ [
+ 76.08070624581373,
+ 35.260674598620902,
+ 500.0
+ ],
+ [
+ 76.055436570227897,
+ 35.18490371057058,
+ 500.0
+ ],
+ [
+ 76.014582615522968,
+ 35.113872524774294,
+ 500.0
+ ],
+ [
+ 75.959415461734224,
+ 35.049724385487082,
+ 500.0
+ ],
+ [
+ 75.891626704672134,
+ 34.99439032160668,
+ 500.0
+ ],
+ [
+ 75.813275348394896,
+ 34.949532539759424,
+ 500.0
+ ],
+ [
+ 75.726725434383837,
+ 34.916496184983828,
+ 500.0
+ ],
+ [
+ 75.634576252636421,
+ 34.896270571240898,
+ 500.0
+ ],
+ [
+ 75.539587,
+ 34.889460819216893,
+ 500.0
+ ],
+ [
+ 75.444597747363574,
+ 34.896270571240898,
+ 500.0
+ ],
+ [
+ 75.352448565616157,
+ 34.916496184983828,
+ 500.0
+ ],
+ [
+ 75.265898651605099,
+ 34.949532539759424,
+ 500.0
+ ],
+ [
+ 75.18754729532786,
+ 34.99439032160668,
+ 500.0
+ ],
+ [
+ 75.119758538265771,
+ 35.049724385487082,
+ 500.0
+ ],
+ [
+ 75.064591384477026,
+ 35.113872524774294,
+ 500.0
+ ],
+ [
+ 75.023737429772098,
+ 35.18490371057058,
+ 500.0
+ ],
+ [
+ 74.998467754186265,
+ 35.260674598620902,
+ 500.0
+ ],
+ [
+ 74.989590859567315,
+ 35.338892844203137,
+ 500.0
+ ],
+ [
+ 74.997423306103272,
+ 35.417185522439198,
+ 500.0
+ ],
+ [
+ 75.02177448847047,
+ 35.493170732906925,
+ 500.0
+ ],
+ [
+ 75.061946677489431,
+ 35.56453028583757,
+ 500.0
+ ],
+ [
+ 75.116751028004714,
+ 35.629081237194541,
+ 500.0
+ ],
+ [
+ 75.18453972074478,
+ 35.684843977008484,
+ 500.0
+ ],
+ [
+ 75.26325378174846,
+ 35.730104594009596,
+ 500.0
+ ],
+ [
+ 75.350485439106677,
+ 35.763469351286467,
+ 500.0
+ ],
+ [
+ 75.443553178394737,
+ 35.783909318547963,
+ 500.0
+ ],
+ [
+ 75.539587,
+ 35.790793515508568,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001483,
+ "name": "Qingyang Airport",
+ "country": "CN",
+ "city": "Qingyang",
+ "height": 500,
+ "level": 2,
+ "lat": "35.803899",
+ "lng": "107.598061",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.598061,
+ 36.254513685299031,
+ 500.0
+ ],
+ [
+ 107.694659025257181,
+ 36.247629364679248,
+ 500.0
+ ],
+ [
+ 107.788272706494368,
+ 36.22718909027445,
+ 500.0
+ ],
+ [
+ 107.87601447669762,
+ 36.193824024390338,
+ 500.0
+ ],
+ [
+ 107.955186603484876,
+ 36.148563370358097,
+ 500.0
+ ],
+ [
+ 108.023367026979372,
+ 36.09280118795828,
+ 500.0
+ ],
+ [
+ 108.078484892673472,
+ 36.028251711465217,
+ 500.0
+ ],
+ [
+ 108.118883263143957,
+ 35.956894822406028,
+ 500.0
+ ],
+ [
+ 108.143367160874107,
+ 35.880913638267849,
+ 500.0
+ ],
+ [
+ 108.151235802841441,
+ 35.80262638853516,
+ 500.0
+ ],
+ [
+ 108.142298580097531,
+ 35.724414859663888,
+ 500.0
+ ],
+ [
+ 108.116874966356562,
+ 35.648651707260115,
+ 500.0
+ ],
+ [
+ 108.075779076634831,
+ 35.57762886854313,
+ 500.0
+ ],
+ [
+ 108.020290023599713,
+ 35.513489175944336,
+ 500.0
+ ],
+ [
+ 107.952109533154783,
+ 35.458163089147824,
+ 500.0
+ ],
+ [
+ 107.873308491134509,
+ 35.413312242862801,
+ 500.0
+ ],
+ [
+ 107.786264216930874,
+ 35.380281263865783,
+ 500.0
+ ],
+ [
+ 107.693590318654941,
+ 35.360059053332414,
+ 500.0
+ ],
+ [
+ 107.598061,
+ 35.353250466265955,
+ 500.0
+ ],
+ [
+ 107.502531681345062,
+ 35.360059053332414,
+ 500.0
+ ],
+ [
+ 107.409857783069128,
+ 35.380281263865783,
+ 500.0
+ ],
+ [
+ 107.322813508865494,
+ 35.413312242862801,
+ 500.0
+ ],
+ [
+ 107.24401246684522,
+ 35.458163089147824,
+ 500.0
+ ],
+ [
+ 107.175831976400289,
+ 35.513489175944336,
+ 500.0
+ ],
+ [
+ 107.120342923365172,
+ 35.57762886854313,
+ 500.0
+ ],
+ [
+ 107.079247033643441,
+ 35.648651707260115,
+ 500.0
+ ],
+ [
+ 107.053823419902471,
+ 35.724414859663888,
+ 500.0
+ ],
+ [
+ 107.044886197158561,
+ 35.80262638853516,
+ 500.0
+ ],
+ [
+ 107.052754839125896,
+ 35.880913638267849,
+ 500.0
+ ],
+ [
+ 107.077238736856046,
+ 35.956894822406028,
+ 500.0
+ ],
+ [
+ 107.11763710732653,
+ 36.028251711465217,
+ 500.0
+ ],
+ [
+ 107.172754973020631,
+ 36.09280118795828,
+ 500.0
+ ],
+ [
+ 107.240935396515127,
+ 36.148563370358097,
+ 500.0
+ ],
+ [
+ 107.320107523302383,
+ 36.193824024390338,
+ 500.0
+ ],
+ [
+ 107.407849293505635,
+ 36.22718909027445,
+ 500.0
+ ],
+ [
+ 107.501462974742822,
+ 36.247629364679248,
+ 500.0
+ ],
+ [
+ 107.598061,
+ 36.254513685299031,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2933,
+ "name": "Qingyang Airport",
+ "country": "CN",
+ "city": "Qingyang",
+ "height": 0,
+ "level": 2,
+ "lat": "35.835678783213",
+ "lng": "107.566187430596",
+ "radius": 13288,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.558666477,
+ 35.874551101800002,
+ 0.0
+ ],
+ [
+ 107.505377827,
+ 35.944554661200002,
+ 0.0
+ ],
+ [
+ 107.441789392,
+ 35.899854868399999,
+ 0.0
+ ],
+ [
+ 107.521785088,
+ 35.846565610900001,
+ 0.0
+ ],
+ [
+ 107.508584047,
+ 35.815559207600003,
+ 0.0
+ ],
+ [
+ 107.50980081,
+ 35.798990326899997,
+ 0.0
+ ],
+ [
+ 107.51626182299999,
+ 35.783241209,
+ 0.0
+ ],
+ [
+ 107.52752418599999,
+ 35.769384341,
+ 0.0
+ ],
+ [
+ 107.579752898,
+ 35.734094587400001,
+ 0.0
+ ],
+ [
+ 107.59927071,
+ 35.729147327600003,
+ 0.0
+ ],
+ [
+ 107.639651599,
+ 35.732096756700003,
+ 0.0
+ ],
+ [
+ 107.558666477,
+ 35.874551101800002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2933,
+ "name": "Qingyang Airport",
+ "country": "CN",
+ "city": "Qingyang",
+ "height": 0,
+ "level": 2,
+ "lat": "35.7697775859643",
+ "lng": "107.633452778726",
+ "radius": 13460,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.692954245,
+ 35.6587792057,
+ 0.0
+ ],
+ [
+ 107.758210658,
+ 35.703448232699998,
+ 0.0
+ ],
+ [
+ 107.67654616599999,
+ 35.761771916400001,
+ 0.0
+ ],
+ [
+ 107.686116091,
+ 35.787616811100001,
+ 0.0
+ ],
+ [
+ 107.685034974,
+ 35.804191870300002,
+ 0.0
+ ],
+ [
+ 107.678699666,
+ 35.819974995899997,
+ 0.0
+ ],
+ [
+ 107.6508402,
+ 35.8555874045,
+ 0.0
+ ],
+ [
+ 107.618719801,
+ 35.875033979,
+ 0.0
+ ],
+ [
+ 107.598882539,
+ 35.8791739232,
+ 0.0
+ ],
+ [
+ 107.558666477,
+ 35.874551101800002,
+ 0.0
+ ],
+ [
+ 107.639651599,
+ 35.732096756700003,
+ 0.0
+ ],
+ [
+ 107.692954245,
+ 35.6587792057,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2933,
+ "name": "Qingyang Airport",
+ "country": "CN",
+ "city": "Qingyang",
+ "height": 120,
+ "level": 2,
+ "lat": "35.80275211457",
+ "lng": "107.598871462789",
+ "radius": 23617,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.836681278,
+ 35.714023780200002,
+ 120.0
+ ],
+ [
+ 107.66769984699999,
+ 35.597838044299998,
+ 120.0
+ ],
+ [
+ 107.360869751,
+ 35.891610937499998,
+ 120.0
+ ],
+ [
+ 107.53047729,
+ 36.0077966725,
+ 120.0
+ ],
+ [
+ 107.836681278,
+ 35.714023780200002,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002388,
+ "name": "陕西省渭南市蒲城发电公司",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "34.9784778402482",
+ "lng": "109.796768085756",
+ "radius": 1402,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.784610176086431,
+ 34.976824502966195,
+ 0.0
+ ],
+ [
+ 109.783342952728276,
+ 34.984657269273647,
+ 0.0
+ ],
+ [
+ 109.80690084457396,
+ 34.98727209037412,
+ 0.0
+ ],
+ [
+ 109.810191192626945,
+ 34.972296933864115,
+ 0.0
+ ],
+ [
+ 109.798173160552977,
+ 34.970784034416724,
+ 0.0
+ ],
+ [
+ 109.78594299316407,
+ 34.969783480040832,
+ 0.0
+ ],
+ [
+ 109.784610176086431,
+ 34.976824502966195,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2687,
+ "name": "Jining Qufu Airport",
+ "country": "CN",
+ "city": "Jining",
+ "height": 0,
+ "level": 2,
+ "lat": "35.2815072973267",
+ "lng": "116.295329583966",
+ "radius": 13235,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.252225403,
+ 35.302501362299999,
+ 0.0
+ ],
+ [
+ 116.150570661,
+ 35.295886003600003,
+ 0.0
+ ],
+ [
+ 116.162652728,
+ 35.232203665,
+ 0.0
+ ],
+ [
+ 116.261016942,
+ 35.257191522100001,
+ 0.0
+ ],
+ [
+ 116.288097329,
+ 35.233790905900001,
+ 0.0
+ ],
+ [
+ 116.306593323,
+ 35.226917614800001,
+ 0.0
+ ],
+ [
+ 116.346859763,
+ 35.225780776199997,
+ 0.0
+ ],
+ [
+ 116.407479619,
+ 35.243914218,
+ 0.0
+ ],
+ [
+ 116.434371188,
+ 35.268430113599997,
+ 0.0
+ ],
+ [
+ 116.44111143,
+ 35.284089717100002,
+ 0.0
+ ],
+ [
+ 116.252225403,
+ 35.302501362299999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2687,
+ "name": "Jining Qufu Airport",
+ "country": "CN",
+ "city": "Jining",
+ "height": 0,
+ "level": 2,
+ "lat": "35.3058866964503",
+ "lng": "116.398199740448",
+ "radius": 13251,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.542768412,
+ 35.289118818200002,
+ 0.0
+ ],
+ [
+ 116.530660414,
+ 35.356138023699998,
+ 0.0
+ ],
+ [
+ 116.429004985,
+ 35.326133542,
+ 0.0
+ ],
+ [
+ 116.404866009,
+ 35.3476428751,
+ 0.0
+ ],
+ [
+ 116.386694481,
+ 35.355115369799996,
+ 0.0
+ ],
+ [
+ 116.366768763,
+ 35.358494153300001,
+ 0.0
+ ],
+ [
+ 116.316460159,
+ 35.355883409800001,
+ 0.0
+ ],
+ [
+ 116.282879433,
+ 35.344245939300002,
+ 0.0
+ ],
+ [
+ 116.268259654,
+ 35.332701664799998,
+ 0.0
+ ],
+ [
+ 116.257804647,
+ 35.318462978299998,
+ 0.0
+ ],
+ [
+ 116.252225403,
+ 35.302501362299999,
+ 0.0
+ ],
+ [
+ 116.44111143,
+ 35.284089717100002,
+ 0.0
+ ],
+ [
+ 116.542768412,
+ 35.289118818200002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2687,
+ "name": "Jining Qufu Airport",
+ "country": "CN",
+ "city": "Jining",
+ "height": 120,
+ "level": 2,
+ "lat": "35.292925884313",
+ "lng": "116.346365576376",
+ "radius": 23578,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.553948698,
+ 35.420600433700002,
+ 120.0
+ ],
+ [
+ 116.59923564,
+ 35.244571436599998,
+ 120.0
+ ],
+ [
+ 116.138713399,
+ 35.165681047,
+ 120.0
+ ],
+ [
+ 116.093470576,
+ 35.341710044199999,
+ 120.0
+ ],
+ [
+ 116.553948698,
+ 35.420600433700002,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001608,
+ "name": "菏泽牡丹机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "35.2574160334914",
+ "lng": "115.726636539331",
+ "radius": 13435,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.744181272,
+ 35.291381796400003,
+ 0.0
+ ],
+ [
+ 115.739978633,
+ 35.377755232600002,
+ 0.0
+ ],
+ [
+ 115.660398992,
+ 35.365483143,
+ 0.0
+ ],
+ [
+ 115.695172428,
+ 35.283819060399999,
+ 0.0
+ ],
+ [
+ 115.676550651,
+ 35.273899038,
+ 0.0
+ ],
+ [
+ 115.65421282299999,
+ 35.2465029715,
+ 0.0
+ ],
+ [
+ 115.650283934,
+ 35.230217881500003,
+ 0.0
+ ],
+ [
+ 115.65164941,
+ 35.213657168200001,
+ 0.0
+ ],
+ [
+ 115.66440077,
+ 35.171657189199998,
+ 0.0
+ ],
+ [
+ 115.691105028,
+ 35.1470281864,
+ 0.0
+ ],
+ [
+ 115.729281832,
+ 35.136604741100001,
+ 0.0
+ ],
+ [
+ 115.744181272,
+ 35.291381796400003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001608,
+ "name": "菏泽牡丹机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "35.1705692327765",
+ "lng": "115.746724761235",
+ "radius": 13435,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.733481935,
+ 35.050225420499999,
+ 0.0
+ ],
+ [
+ 115.81278375799999,
+ 35.062494292399997,
+ 0.0
+ ],
+ [
+ 115.778195369,
+ 35.144167703,
+ 0.0
+ ],
+ [
+ 115.79669844199999,
+ 35.154002483399999,
+ 0.0
+ ],
+ [
+ 115.819111902,
+ 35.181343357899998,
+ 0.0
+ ],
+ [
+ 115.823103846,
+ 35.197617821400002,
+ 0.0
+ ],
+ [
+ 115.821805746,
+ 35.2141821369,
+ 0.0
+ ],
+ [
+ 115.80911468399999,
+ 35.256275803,
+ 0.0
+ ],
+ [
+ 115.782416544,
+ 35.280935221100002,
+ 0.0
+ ],
+ [
+ 115.744181272,
+ 35.291381796400003,
+ 0.0
+ ],
+ [
+ 115.729281832,
+ 35.136604741100001,
+ 0.0
+ ],
+ [
+ 115.733481935,
+ 35.050225420499999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001608,
+ "name": "菏泽牡丹机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "35.2139796262247",
+ "lng": "115.736621520229",
+ "radius": 23627,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.88831561,
+ 35.041471033,
+ 120.0
+ ],
+ [
+ 115.672496257,
+ 35.008067285800003,
+ 120.0
+ ],
+ [
+ 115.584466206,
+ 35.386406808799997,
+ 120.0
+ ],
+ [
+ 115.80129374,
+ 35.419810555399998,
+ 120.0
+ ],
+ [
+ 115.88831561,
+ 35.041471033,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001329,
+ "name": "Jining Qufu Airport",
+ "country": "CN",
+ "city": "Jining",
+ "height": 500,
+ "level": 2,
+ "lat": "35.292778",
+ "lng": "116.346667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.346667,
+ 35.743431062308801,
+ 500.0
+ ],
+ [
+ 116.442643920818881,
+ 35.736546877711149,
+ 500.0
+ ],
+ [
+ 116.535656601015148,
+ 35.71610694106792,
+ 500.0
+ ],
+ [
+ 116.622836812656757,
+ 35.682742214214528,
+ 500.0
+ ],
+ [
+ 116.701504676918944,
+ 35.637481599767298,
+ 500.0
+ ],
+ [
+ 116.769253862864957,
+ 35.581718801915329,
+ 500.0
+ ],
+ [
+ 116.824026594726448,
+ 35.517167699198552,
+ 500.0
+ ],
+ [
+ 116.864175972840343,
+ 35.445807874080728,
+ 500.0
+ ],
+ [
+ 116.888513770538225,
+ 35.369822253050351,
+ 500.0
+ ],
+ [
+ 116.896342566647377,
+ 35.291529021900118,
+ 500.0
+ ],
+ [
+ 116.887471756219469,
+ 35.213310092672188,
+ 500.0
+ ],
+ [
+ 116.862217605604755,
+ 35.137538417625649,
+ 500.0
+ ],
+ [
+ 116.82138805053772,
+ 35.06650638289203,
+ 500.0
+ ],
+ [
+ 116.766253360926257,
+ 35.002357384722394,
+ 500.0
+ ],
+ [
+ 116.698504110920098,
+ 34.947022509833168,
+ 500.0
+ ],
+ [
+ 116.620198106262038,
+ 34.902164022940184,
+ 500.0
+ ],
+ [
+ 116.533698049325707,
+ 34.869127121719991,
+ 500.0
+ ],
+ [
+ 116.441601786106418,
+ 34.848901162058056,
+ 500.0
+ ],
+ [
+ 116.346667,
+ 34.842091291624506,
+ 500.0
+ ],
+ [
+ 116.251732213893575,
+ 34.848901162058056,
+ 500.0
+ ],
+ [
+ 116.159635950674286,
+ 34.869127121719991,
+ 500.0
+ ],
+ [
+ 116.073135893737955,
+ 34.902164022940184,
+ 500.0
+ ],
+ [
+ 115.994829889079895,
+ 34.947022509833168,
+ 500.0
+ ],
+ [
+ 115.927080639073736,
+ 35.002357384722394,
+ 500.0
+ ],
+ [
+ 115.871945949462273,
+ 35.06650638289203,
+ 500.0
+ ],
+ [
+ 115.831116394395238,
+ 35.137538417625649,
+ 500.0
+ ],
+ [
+ 115.805862243780524,
+ 35.213310092672188,
+ 500.0
+ ],
+ [
+ 115.796991433352616,
+ 35.291529021900118,
+ 500.0
+ ],
+ [
+ 115.804820229461768,
+ 35.369822253050351,
+ 500.0
+ ],
+ [
+ 115.82915802715965,
+ 35.445807874080728,
+ 500.0
+ ],
+ [
+ 115.869307405273545,
+ 35.517167699198552,
+ 500.0
+ ],
+ [
+ 115.924080137135036,
+ 35.581718801915329,
+ 500.0
+ ],
+ [
+ 115.991829323081049,
+ 35.637481599767298,
+ 500.0
+ ],
+ [
+ 116.070497187343236,
+ 35.682742214214528,
+ 500.0
+ ],
+ [
+ 116.157677398984845,
+ 35.71610694106792,
+ 500.0
+ ],
+ [
+ 116.250690079181112,
+ 35.736546877711149,
+ 500.0
+ ],
+ [
+ 116.346667,
+ 35.743431062308801,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001609,
+ "name": "菏泽牡丹机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "35.21316934",
+ "lng": "115.7359856",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.7359856,
+ 35.663828358940862,
+ 500.0
+ ],
+ [
+ 115.831867186484459,
+ 35.656944195013786,
+ 500.0
+ ],
+ [
+ 115.924787618003194,
+ 35.636504309527446,
+ 500.0
+ ],
+ [
+ 116.011881634978863,
+ 35.6031396333657,
+ 500.0
+ ],
+ [
+ 116.090472098949604,
+ 35.557879022718687,
+ 500.0
+ ],
+ [
+ 116.15815509325779,
+ 35.502116126883152,
+ 500.0
+ ],
+ [
+ 116.212874849653701,
+ 35.437564769496355,
+ 500.0
+ ],
+ [
+ 116.252986009240729,
+ 35.36620448688732,
+ 500.0
+ ],
+ [
+ 116.277301381602484,
+ 35.29021817611968,
+ 500.0
+ ],
+ [
+ 116.285124061620763,
+ 35.211924016335864,
+ 500.0
+ ],
+ [
+ 116.276263444976038,
+ 35.133703939098865,
+ 500.0
+ ],
+ [
+ 116.251035305702644,
+ 35.05793094263673,
+ 500.0
+ ],
+ [
+ 116.210246631031296,
+ 34.986897482590322,
+ 500.0
+ ],
+ [
+ 116.155166333530872,
+ 34.922747042485085,
+ 500.0
+ ],
+ [
+ 116.087483275599965,
+ 34.867410806082162,
+ 500.0
+ ],
+ [
+ 116.009253255258045,
+ 34.82255113559512,
+ 500.0
+ ],
+ [
+ 115.922836731270735,
+ 34.7895133170477,
+ 500.0
+ ],
+ [
+ 115.830829130286403,
+ 34.769286776690841,
+ 500.0
+ ],
+ [
+ 115.7359856,
+ 34.762476707483941,
+ 500.0
+ ],
+ [
+ 115.641142069713609,
+ 34.769286776690841,
+ 500.0
+ ],
+ [
+ 115.549134468729278,
+ 34.7895133170477,
+ 500.0
+ ],
+ [
+ 115.462717944741968,
+ 34.82255113559512,
+ 500.0
+ ],
+ [
+ 115.384487924400048,
+ 34.867410806082162,
+ 500.0
+ ],
+ [
+ 115.316804866469141,
+ 34.922747042485085,
+ 500.0
+ ],
+ [
+ 115.261724568968717,
+ 34.986897482590322,
+ 500.0
+ ],
+ [
+ 115.220935894297369,
+ 35.05793094263673,
+ 500.0
+ ],
+ [
+ 115.195707755023975,
+ 35.133703939098865,
+ 500.0
+ ],
+ [
+ 115.18684713837925,
+ 35.211924016335864,
+ 500.0
+ ],
+ [
+ 115.194669818397529,
+ 35.29021817611968,
+ 500.0
+ ],
+ [
+ 115.218985190759284,
+ 35.36620448688732,
+ 500.0
+ ],
+ [
+ 115.259096350346312,
+ 35.437564769496355,
+ 500.0
+ ],
+ [
+ 115.313816106742223,
+ 35.502116126883152,
+ 500.0
+ ],
+ [
+ 115.381499101050409,
+ 35.557879022718687,
+ 500.0
+ ],
+ [
+ 115.46008956502115,
+ 35.6031396333657,
+ 500.0
+ ],
+ [
+ 115.547183581996819,
+ 35.636504309527446,
+ 500.0
+ ],
+ [
+ 115.640104013515554,
+ 35.656944195013786,
+ 500.0
+ ],
+ [
+ 115.7359856,
+ 35.663828358940862,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042919,
+ "name": "济宁大安机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "35.6578897504558",
+ "lng": "116.793543867089",
+ "radius": 12557,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.82575148399999,
+ 35.642668842900001,
+ 0.0
+ ],
+ [
+ 116.931979835,
+ 35.647836157100002,
+ 0.0
+ ],
+ [
+ 116.915267692,
+ 35.712476262400003,
+ 0.0
+ ],
+ [
+ 116.815440706,
+ 35.682557684199999,
+ 0.0
+ ],
+ [
+ 116.802917974,
+ 35.697515018799997,
+ 0.0
+ ],
+ [
+ 116.76876958,
+ 35.7152442788,
+ 0.0
+ ],
+ [
+ 116.728273849,
+ 35.716721212300001,
+ 0.0
+ ],
+ [
+ 116.696342378,
+ 35.708791009599999,
+ 0.0
+ ],
+ [
+ 116.666590047,
+ 35.686443209099998,
+ 0.0
+ ],
+ [
+ 116.658044116,
+ 35.671366328700003,
+ 0.0
+ ],
+ [
+ 116.65459516599999,
+ 35.655006328,
+ 0.0
+ ],
+ [
+ 116.82575148399999,
+ 35.642668842900001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042919,
+ "name": "济宁大安机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "35.6396385361358",
+ "lng": "116.68684984206",
+ "radius": 12556,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.548451418,
+ 35.649761121799997,
+ 0.0
+ ],
+ [
+ 116.565205218,
+ 35.585125153600004,
+ 0.0
+ ],
+ [
+ 116.664909198,
+ 35.615218693300001,
+ 0.0
+ ],
+ [
+ 116.67745199399999,
+ 35.600263307399999,
+ 0.0
+ ],
+ [
+ 116.711571255,
+ 35.582559481,
+ 0.0
+ ],
+ [
+ 116.751999322,
+ 35.581087747399998,
+ 0.0
+ ],
+ [
+ 116.783861788,
+ 35.5889751506,
+ 0.0
+ ],
+ [
+ 116.81364795499999,
+ 35.611261143599997,
+ 0.0
+ ],
+ [
+ 116.822242041,
+ 35.626317514900002,
+ 0.0
+ ],
+ [
+ 116.82575148399999,
+ 35.642668842900001,
+ 0.0
+ ],
+ [
+ 116.65459516599999,
+ 35.655006328,
+ 0.0
+ ],
+ [
+ 116.548451418,
+ 35.649761121799997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042919,
+ "name": "济宁大安机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "35.6485110140112",
+ "lng": "116.740267176877",
+ "radius": 22812,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.540975461,
+ 35.522732288699999,
+ 120.0
+ ],
+ [
+ 116.49541075499999,
+ 35.698740638300002,
+ 120.0
+ ],
+ [
+ 116.939486578,
+ 35.774691626900001,
+ 120.0
+ ],
+ [
+ 116.985094626,
+ 35.598683277299997,
+ 120.0
+ ],
+ [
+ 116.540975461,
+ 35.522732288699999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042920,
+ "name": "济宁大安机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "35.643524",
+ "lng": "116.748783",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.748783,
+ 36.094150751291899,
+ 500.0
+ ],
+ [
+ 116.845184448395358,
+ 36.087266473982744,
+ 500.0
+ ],
+ [
+ 116.938607915478229,
+ 36.066826307334949,
+ 500.0
+ ],
+ [
+ 117.026171955020843,
+ 36.033461350422996,
+ 500.0
+ ],
+ [
+ 117.105184485232485,
+ 35.988200711724964,
+ 500.0
+ ],
+ [
+ 117.173228424357461,
+ 35.932438338851476,
+ 500.0
+ ],
+ [
+ 117.228237057198555,
+ 35.867888353847178,
+ 500.0
+ ],
+ [
+ 117.268556623165352,
+ 35.796530543861756,
+ 500.0
+ ],
+ [
+ 117.292994281277345,
+ 35.72054796605908,
+ 500.0
+ ],
+ [
+ 117.300850312459545,
+ 35.642258836024489,
+ 500.0
+ ],
+ [
+ 117.291934108994226,
+ 35.564044979663883,
+ 500.0
+ ],
+ [
+ 117.266564129477402,
+ 35.488279145945874,
+ 500.0
+ ],
+ [
+ 117.225552533239494,
+ 35.417253413437265,
+ 500.0
+ ],
+ [
+ 117.170175634304044,
+ 35.353110792131261,
+ 500.0
+ ],
+ [
+ 117.102131629151032,
+ 35.297781939199169,
+ 500.0
+ ],
+ [
+ 117.023487263872909,
+ 35.252928687783353,
+ 500.0
+ ],
+ [
+ 116.936615231670118,
+ 35.219895844480895,
+ 500.0
+ ],
+ [
+ 116.8441241520201,
+ 35.199672453692344,
+ 500.0
+ ],
+ [
+ 116.748783,
+ 35.192863462605921,
+ 500.0
+ ],
+ [
+ 116.653441847979906,
+ 35.199672453692344,
+ 500.0
+ ],
+ [
+ 116.560950768329889,
+ 35.219895844480895,
+ 500.0
+ ],
+ [
+ 116.474078736127097,
+ 35.252928687783353,
+ 500.0
+ ],
+ [
+ 116.395434370848974,
+ 35.297781939199169,
+ 500.0
+ ],
+ [
+ 116.327390365695962,
+ 35.353110792131261,
+ 500.0
+ ],
+ [
+ 116.272013466760512,
+ 35.417253413437265,
+ 500.0
+ ],
+ [
+ 116.231001870522604,
+ 35.488279145945874,
+ 500.0
+ ],
+ [
+ 116.20563189100578,
+ 35.564044979663883,
+ 500.0
+ ],
+ [
+ 116.196715687540461,
+ 35.642258836024489,
+ 500.0
+ ],
+ [
+ 116.204571718722661,
+ 35.72054796605908,
+ 500.0
+ ],
+ [
+ 116.229009376834654,
+ 35.796530543861756,
+ 500.0
+ ],
+ [
+ 116.269328942801451,
+ 35.867888353847178,
+ 500.0
+ ],
+ [
+ 116.324337575642545,
+ 35.932438338851476,
+ 500.0
+ ],
+ [
+ 116.392381514767521,
+ 35.988200711724964,
+ 500.0
+ ],
+ [
+ 116.471394044979164,
+ 36.033461350422996,
+ 500.0
+ ],
+ [
+ 116.558958084521777,
+ 36.066826307334949,
+ 500.0
+ ],
+ [
+ 116.652381551604648,
+ 36.087266473982744,
+ 500.0
+ ],
+ [
+ 116.748783,
+ 36.094150751291899,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33250,
+ "name": "山字河",
+ "country": "CN",
+ "city": "日照",
+ "height": 0,
+ "level": 2,
+ "lat": "35.4254821563199",
+ "lng": "119.279439739936",
+ "radius": 13422,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.26490949399999,
+ 35.464573184599999,
+ 0.0
+ ],
+ [
+ 119.186622579,
+ 35.519591872100001,
+ 0.0
+ ],
+ [
+ 119.138561283,
+ 35.462872849299998,
+ 0.0
+ ],
+ [
+ 119.236894118,
+ 35.4295417911,
+ 0.0
+ ],
+ [
+ 119.235717733,
+ 35.399380954100003,
+ 0.0
+ ],
+ [
+ 119.242482407,
+ 35.3837255985,
+ 0.0
+ ],
+ [
+ 119.253983297,
+ 35.370030116099997,
+ 0.0
+ ],
+ [
+ 119.299420327,
+ 35.340901689100001,
+ 0.0
+ ],
+ [
+ 119.330617866,
+ 35.331509721400003,
+ 0.0
+ ],
+ [
+ 119.350962688,
+ 35.331378434,
+ 0.0
+ ],
+ [
+ 119.388362767,
+ 35.343723689900003,
+ 0.0
+ ],
+ [
+ 119.26490949399999,
+ 35.464573184599999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33250,
+ "name": "山字河",
+ "country": "CN",
+ "city": "日照",
+ "height": 0,
+ "level": 2,
+ "lat": "35.3755392001528",
+ "lng": "119.367439402624",
+ "radius": 13576,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.46840460599999,
+ 35.2854089613,
+ 0.0
+ ],
+ [
+ 119.511438895,
+ 35.342122264300002,
+ 0.0
+ ],
+ [
+ 119.419776522,
+ 35.378781210699998,
+ 0.0
+ ],
+ [
+ 119.423148498,
+ 35.3974483171,
+ 0.0
+ ],
+ [
+ 119.412589099,
+ 35.429215766,
+ 0.0
+ ],
+ [
+ 119.400141233,
+ 35.442354998500001,
+ 0.0
+ ],
+ [
+ 119.35392599799999,
+ 35.4674254715,
+ 0.0
+ ],
+ [
+ 119.322745539,
+ 35.476800523100003,
+ 0.0
+ ],
+ [
+ 119.302363996,
+ 35.476933380699997,
+ 0.0
+ ],
+ [
+ 119.26490949399999,
+ 35.464573184599999,
+ 0.0
+ ],
+ [
+ 119.388362767,
+ 35.343723689900003,
+ 0.0
+ ],
+ [
+ 119.46840460599999,
+ 35.2854089613,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33250,
+ "name": "山字河",
+ "country": "CN",
+ "city": "日照",
+ "height": 120,
+ "level": 2,
+ "lat": "35.4047136506638",
+ "lng": "119.326390571509",
+ "radius": 23843,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.58584296,
+ 35.369498842799999,
+ 120.0
+ ],
+ [
+ 119.461696485,
+ 35.220891623,
+ 120.0
+ ],
+ [
+ 119.066882209,
+ 35.440210458700001,
+ 120.0
+ ],
+ [
+ 119.191366922,
+ 35.588817678,
+ 120.0
+ ],
+ [
+ 119.58584296,
+ 35.369498842799999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9721,
+ "name": "Linyi Airport",
+ "country": "CN",
+ "city": "Linyi Shi",
+ "height": 0,
+ "level": 2,
+ "lat": "35.0954577508581",
+ "lng": "118.413305145056",
+ "radius": 13533,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.436278064,
+ 35.127385159500001,
+ 0.0
+ ],
+ [
+ 118.45459001899999,
+ 35.21239537,
+ 0.0
+ ],
+ [
+ 118.372091492,
+ 35.212412164,
+ 0.0
+ ],
+ [
+ 118.385406737,
+ 35.1273900897,
+ 0.0
+ ],
+ [
+ 118.356041128,
+ 35.112878816200002,
+ 0.0
+ ],
+ [
+ 118.335263278,
+ 35.084696493599999,
+ 0.0
+ ],
+ [
+ 118.332233371,
+ 35.068284517199999,
+ 0.0
+ ],
+ [
+ 118.333744161,
+ 35.023312638599997,
+ 0.0
+ ],
+ [
+ 118.35185626,
+ 34.993933155100002,
+ 0.0
+ ],
+ [
+ 118.38546111,
+ 34.97590014,
+ 0.0
+ ],
+ [
+ 118.436278064,
+ 35.127385159500001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9721,
+ "name": "Linyi Airport",
+ "country": "CN",
+ "city": "Linyi Shi",
+ "height": 0,
+ "level": 2,
+ "lat": "35.0077850412157",
+ "lng": "118.411656553854",
+ "radius": 13486,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.372104613,
+ 34.890912043,
+ 0.0
+ ],
+ [
+ 118.45123398,
+ 34.890917839099998,
+ 0.0
+ ],
+ [
+ 118.436223498,
+ 34.975904984899998,
+ 0.0
+ ],
+ [
+ 118.469881363,
+ 34.993998285499998,
+ 0.0
+ ],
+ [
+ 118.48127393,
+ 35.007724632200002,
+ 0.0
+ ],
+ [
+ 118.487944218,
+ 35.023398107299997,
+ 0.0
+ ],
+ [
+ 118.489435216,
+ 35.039951384699997,
+ 0.0
+ ],
+ [
+ 118.48943212,
+ 35.068334027299997,
+ 0.0
+ ],
+ [
+ 118.48123741,
+ 35.095518252300003,
+ 0.0
+ ],
+ [
+ 118.454533205,
+ 35.120135038299999,
+ 0.0
+ ],
+ [
+ 118.436278064,
+ 35.127385159500001,
+ 0.0
+ ],
+ [
+ 118.38546111,
+ 34.97590014,
+ 0.0
+ ],
+ [
+ 118.372104613,
+ 34.890912043,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9721,
+ "name": "Linyi Airport",
+ "country": "CN",
+ "city": "Linyi Shi",
+ "height": 120,
+ "level": 2,
+ "lat": "35.0541927076421",
+ "lng": "118.410833333057",
+ "radius": 23780,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.520433211,
+ 34.860112551,
+ 120.0
+ ],
+ [
+ 118.301233455,
+ 34.860112551,
+ 120.0
+ ],
+ [
+ 118.300711392,
+ 35.248173823199998,
+ 120.0
+ ],
+ [
+ 118.520955275,
+ 35.248173823199998,
+ 120.0
+ ],
+ [
+ 118.520433211,
+ 34.860112551,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001455,
+ "name": "Linyi Airport",
+ "country": "CN",
+ "city": "Linyi Shi",
+ "height": 500,
+ "level": 2,
+ "lat": "35.050282",
+ "lng": "118.411995",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.411995,
+ 35.500953188966264,
+ 500.0
+ ],
+ [
+ 118.507682687791316,
+ 35.49406906691825,
+ 500.0
+ ],
+ [
+ 118.600415496453166,
+ 35.473629284937225,
+ 500.0
+ ],
+ [
+ 118.687334203674823,
+ 35.440264710801351,
+ 500.0
+ ],
+ [
+ 118.765767244567954,
+ 35.39500410604645,
+ 500.0
+ ],
+ [
+ 118.833315612849404,
+ 35.339241008058643,
+ 500.0
+ ],
+ [
+ 118.887927623353832,
+ 35.274689128552936,
+ 500.0
+ ],
+ [
+ 118.92796105095475,
+ 35.203327909827308,
+ 500.0
+ ],
+ [
+ 118.952230812877076,
+ 35.127340189003199,
+ 500.0
+ ],
+ [
+ 118.960041053608677,
+ 35.049044131740523,
+ 500.0
+ ],
+ [
+ 118.951201170100106,
+ 34.970821709507348,
+ 500.0
+ ],
+ [
+ 118.926025935043569,
+ 34.895046014389948,
+ 500.0
+ ],
+ [
+ 118.885320406480162,
+ 34.824009643909577,
+ 500.0
+ ],
+ [
+ 118.830350736261153,
+ 34.759856259711945,
+ 500.0
+ ],
+ [
+ 118.76280230524155,
+ 34.704517243607548,
+ 500.0
+ ],
+ [
+ 118.684726827942583,
+ 34.659655156778143,
+ 500.0
+ ],
+ [
+ 118.598480199894681,
+ 34.626615465539409,
+ 500.0
+ ],
+ [
+ 118.506652927105179,
+ 34.606387739737436,
+ 500.0
+ ],
+ [
+ 118.411995,
+ 34.599577264753414,
+ 500.0
+ ],
+ [
+ 118.31733707289483,
+ 34.606387739737436,
+ 500.0
+ ],
+ [
+ 118.225509800105328,
+ 34.626615465539409,
+ 500.0
+ ],
+ [
+ 118.139263172057426,
+ 34.659655156778143,
+ 500.0
+ ],
+ [
+ 118.061187694758459,
+ 34.704517243607548,
+ 500.0
+ ],
+ [
+ 117.993639263738856,
+ 34.759856259711945,
+ 500.0
+ ],
+ [
+ 117.938669593519847,
+ 34.824009643909577,
+ 500.0
+ ],
+ [
+ 117.89796406495644,
+ 34.895046014389948,
+ 500.0
+ ],
+ [
+ 117.872788829899903,
+ 34.970821709507348,
+ 500.0
+ ],
+ [
+ 117.863948946391332,
+ 35.049044131740523,
+ 500.0
+ ],
+ [
+ 117.871759187122933,
+ 35.127340189003199,
+ 500.0
+ ],
+ [
+ 117.89602894904526,
+ 35.203327909827308,
+ 500.0
+ ],
+ [
+ 117.936062376646177,
+ 35.274689128552936,
+ 500.0
+ ],
+ [
+ 117.990674387150605,
+ 35.339241008058643,
+ 500.0
+ ],
+ [
+ 118.058222755432055,
+ 35.39500410604645,
+ 500.0
+ ],
+ [
+ 118.136655796325186,
+ 35.440264710801351,
+ 500.0
+ ],
+ [
+ 118.223574503546843,
+ 35.473629284937225,
+ 500.0
+ ],
+ [
+ 118.316307312208693,
+ 35.49406906691825,
+ 500.0
+ ],
+ [
+ 118.411995,
+ 35.500953188966264,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001421,
+ "name": "山字河",
+ "country": "CN",
+ "city": "日照",
+ "height": 500,
+ "level": 2,
+ "lat": "35.4041666666667",
+ "lng": "119.3275",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.3275,
+ 35.85481138494233,
+ 500.0
+ ],
+ [
+ 119.423610944068628,
+ 35.847927171194257,
+ 500.0
+ ],
+ [
+ 119.516753309609186,
+ 35.827487162330748,
+ 500.0
+ ],
+ [
+ 119.604054695695865,
+ 35.794122363616545,
+ 500.0
+ ],
+ [
+ 119.682831371035846,
+ 35.748861742811563,
+ 500.0
+ ],
+ [
+ 119.750673610651035,
+ 35.693099081130647,
+ 500.0
+ ],
+ [
+ 119.805520816573875,
+ 35.628548334159078,
+ 500.0
+ ],
+ [
+ 119.845723923117006,
+ 35.557189149111309,
+ 500.0
+ ],
+ [
+ 119.870093246844064,
+ 35.481204493791552,
+ 500.0
+ ],
+ [
+ 119.877930641112499,
+ 35.402912563365966,
+ 500.0
+ ],
+ [
+ 119.869045500090706,
+ 35.324695242544202,
+ 500.0
+ ],
+ [
+ 119.843754782226881,
+ 35.248925419158759,
+ 500.0
+ ],
+ [
+ 119.802867756663602,
+ 35.177895381898303,
+ 500.0
+ ],
+ [
+ 119.747656601462396,
+ 35.113748404655063,
+ 500.0
+ ],
+ [
+ 119.67981429716933,
+ 35.05841543808225,
+ 500.0
+ ],
+ [
+ 119.601401472015482,
+ 35.013558610194195,
+ 500.0
+ ],
+ [
+ 119.514783982486563,
+ 34.980522994794313,
+ 500.0
+ ],
+ [
+ 119.42256307576065,
+ 34.960297849107043,
+ 500.0
+ ],
+ [
+ 119.3275,
+ 34.953488257301217,
+ 500.0
+ ],
+ [
+ 119.232436924239295,
+ 34.960297849107043,
+ 500.0
+ ],
+ [
+ 119.140216017513382,
+ 34.980522994794313,
+ 500.0
+ ],
+ [
+ 119.053598527984462,
+ 35.013558610194195,
+ 500.0
+ ],
+ [
+ 118.975185702830615,
+ 35.05841543808225,
+ 500.0
+ ],
+ [
+ 118.907343398537549,
+ 35.113748404655063,
+ 500.0
+ ],
+ [
+ 118.852132243336342,
+ 35.177895381898303,
+ 500.0
+ ],
+ [
+ 118.811245217773063,
+ 35.248925419158759,
+ 500.0
+ ],
+ [
+ 118.785954499909238,
+ 35.324695242544202,
+ 500.0
+ ],
+ [
+ 118.777069358887445,
+ 35.402912563365966,
+ 500.0
+ ],
+ [
+ 118.78490675315588,
+ 35.481204493791552,
+ 500.0
+ ],
+ [
+ 118.809276076882938,
+ 35.557189149111309,
+ 500.0
+ ],
+ [
+ 118.84947918342607,
+ 35.628548334159078,
+ 500.0
+ ],
+ [
+ 118.90432638934891,
+ 35.693099081130647,
+ 500.0
+ ],
+ [
+ 118.972168628964099,
+ 35.748861742811563,
+ 500.0
+ ],
+ [
+ 119.050945304304079,
+ 35.794122363616545,
+ 500.0
+ ],
+ [
+ 119.138246690390758,
+ 35.827487162330748,
+ 500.0
+ ],
+ [
+ 119.231389055931317,
+ 35.847927171194257,
+ 500.0
+ ],
+ [
+ 119.3275,
+ 35.85481138494233,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001458,
+ "name": "玛沁",
+ "country": "CN",
+ "city": "果洛",
+ "height": 500,
+ "level": 2,
+ "lat": "34.4175",
+ "lng": "100.3",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.3,
+ 34.868218232740688,
+ 500.0
+ ],
+ [
+ 100.394949069570046,
+ 34.861334268350475,
+ 500.0
+ ],
+ [
+ 100.486967166500008,
+ 34.840894874342567,
+ 500.0
+ ],
+ [
+ 100.573218066261063,
+ 34.807530676135336,
+ 500.0
+ ],
+ [
+ 100.651051435522902,
+ 34.762270071764725,
+ 500.0
+ ],
+ [
+ 100.718086973352186,
+ 34.706506168902685,
+ 500.0
+ ],
+ [
+ 100.772288548593025,
+ 34.641952249615308,
+ 500.0
+ ],
+ [
+ 100.81202587386035,
+ 34.570587395435815,
+ 500.0
+ ],
+ [
+ 100.836121895130304,
+ 34.494594213880617,
+ 500.0
+ ],
+ [
+ 100.84388475502135,
+ 34.416290819736126,
+ 500.0
+ ],
+ [
+ 100.835123854905603,
+ 34.338059338979711,
+ 500.0
+ ],
+ [
+ 100.810150152398862,
+ 34.262273225771352,
+ 500.0
+ ],
+ [
+ 100.769761355873072,
+ 34.191225624459634,
+ 500.0
+ ],
+ [
+ 100.715213099982236,
+ 34.127060882938231,
+ 500.0
+ ],
+ [
+ 100.648177502722803,
+ 34.071711145915181,
+ 500.0
+ ],
+ [
+ 100.570690723058732,
+ 34.02683974094461,
+ 500.0
+ ],
+ [
+ 100.485091273916254,
+ 33.993792828750408,
+ 500.0
+ ],
+ [
+ 100.393950917653214,
+ 33.973560532236831,
+ 500.0
+ ],
+ [
+ 100.3,
+ 33.966748492745921,
+ 500.0
+ ],
+ [
+ 100.206049082346837,
+ 33.973560532236831,
+ 500.0
+ ],
+ [
+ 100.114908726083797,
+ 33.993792828750408,
+ 500.0
+ ],
+ [
+ 100.029309276941319,
+ 34.02683974094461,
+ 500.0
+ ],
+ [
+ 99.951822497277249,
+ 34.071711145915181,
+ 500.0
+ ],
+ [
+ 99.884786900017815,
+ 34.127060882938231,
+ 500.0
+ ],
+ [
+ 99.830238644126979,
+ 34.191225624459634,
+ 500.0
+ ],
+ [
+ 99.789849847601189,
+ 34.262273225771352,
+ 500.0
+ ],
+ [
+ 99.764876145094448,
+ 34.338059338979711,
+ 500.0
+ ],
+ [
+ 99.756115244978702,
+ 34.416290819736126,
+ 500.0
+ ],
+ [
+ 99.763878104869747,
+ 34.494594213880617,
+ 500.0
+ ],
+ [
+ 99.787974126139702,
+ 34.570587395435815,
+ 500.0
+ ],
+ [
+ 99.827711451407026,
+ 34.641952249615308,
+ 500.0
+ ],
+ [
+ 99.881913026647865,
+ 34.706506168902685,
+ 500.0
+ ],
+ [
+ 99.948948564477149,
+ 34.762270071764725,
+ 500.0
+ ],
+ [
+ 100.026781933738988,
+ 34.807530676135336,
+ 500.0
+ ],
+ [
+ 100.113032833500043,
+ 34.840894874342567,
+ 500.0
+ ],
+ [
+ 100.205050930430005,
+ 34.861334268350475,
+ 500.0
+ ],
+ [
+ 100.3,
+ 34.868218232740688,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33230,
+ "name": "玛沁",
+ "country": "CN",
+ "city": "果洛",
+ "height": 0,
+ "level": 2,
+ "lat": "34.4418032414384",
+ "lng": "100.25048421132",
+ "radius": 13598,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.234849486,
+ 34.476234254399998,
+ 0.0
+ ],
+ [
+ 100.151527182,
+ 34.5329204624,
+ 0.0
+ ],
+ [
+ 100.111942967,
+ 34.472812357400002,
+ 0.0
+ ],
+ [
+ 100.205277807,
+ 34.4394773008,
+ 0.0
+ ],
+ [
+ 100.207086244,
+ 34.408497611800001,
+ 0.0
+ ],
+ [
+ 100.215387169,
+ 34.3933783863,
+ 0.0
+ ],
+ [
+ 100.228144105,
+ 34.3805459262,
+ 0.0
+ ],
+ [
+ 100.279444018,
+ 34.355893291500003,
+ 0.0
+ ],
+ [
+ 100.309642735,
+ 34.3467042666,
+ 0.0
+ ],
+ [
+ 100.349225536,
+ 34.350606476899998,
+ 0.0
+ ],
+ [
+ 100.234849486,
+ 34.476234254399998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33230,
+ "name": "玛沁",
+ "country": "CN",
+ "city": "果洛",
+ "height": 0,
+ "level": 2,
+ "lat": "34.3999925385715",
+ "lng": "100.350637658224",
+ "radius": 13587,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.446771149,
+ 34.307077244600002,
+ 0.0
+ ],
+ [
+ 100.491416066,
+ 34.362134395799998,
+ 0.0
+ ],
+ [
+ 100.393075173,
+ 34.395484145700003,
+ 0.0
+ ],
+ [
+ 100.39257885,
+ 34.425117117900001,
+ 0.0
+ ],
+ [
+ 100.385114911,
+ 34.440531493899996,
+ 0.0
+ ],
+ [
+ 100.373064647,
+ 34.4538263456,
+ 0.0
+ ],
+ [
+ 100.322203945,
+ 34.484116049199997,
+ 0.0
+ ],
+ [
+ 100.290842237,
+ 34.491660017900003,
+ 0.0
+ ],
+ [
+ 100.270740899,
+ 34.490655189500004,
+ 0.0
+ ],
+ [
+ 100.234849486,
+ 34.476234254399998,
+ 0.0
+ ],
+ [
+ 100.349225536,
+ 34.350606476899998,
+ 0.0
+ ],
+ [
+ 100.36676005,
+ 34.358727611299997,
+ 0.0
+ ],
+ [
+ 100.446771149,
+ 34.307077244600002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33230,
+ "name": "玛沁",
+ "country": "CN",
+ "city": "果洛",
+ "height": 120,
+ "level": 2,
+ "lat": "34.4184498517933",
+ "lng": "100.30058076216",
+ "radius": 24054,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.561028488,
+ 34.393498754500001,
+ 120.0
+ ],
+ [
+ 100.448120979,
+ 34.239697488399997,
+ 120.0
+ ],
+ [
+ 100.040097905,
+ 34.443704999799998,
+ 120.0
+ ],
+ [
+ 100.153281213,
+ 34.5975062654,
+ 120.0
+ ],
+ [
+ 100.561028488,
+ 34.393498754500001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001408,
+ "name": "夏河",
+ "country": "CN",
+ "city": "甘南",
+ "height": 500,
+ "level": 2,
+ "lat": "34.8191666666666",
+ "lng": "102.623333333333",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.623333333333335,
+ 35.269855081478482,
+ 500.0
+ ],
+ [
+ 102.71874856944946,
+ 35.262971017919654,
+ 500.0
+ ],
+ [
+ 102.81121774473435,
+ 35.242531380182676,
+ 500.0
+ ],
+ [
+ 102.897890119972416,
+ 35.20916694701755,
+ 500.0
+ ],
+ [
+ 102.976101961852436,
+ 35.163906346428348,
+ 500.0
+ ],
+ [
+ 103.043461163820226,
+ 35.10814295793574,
+ 500.0
+ ],
+ [
+ 103.09792177801296,
+ 35.043590335393553,
+ 500.0
+ ],
+ [
+ 103.137845982702302,
+ 34.972227788511425,
+ 500.0
+ ],
+ [
+ 103.162051656650945,
+ 34.896238069959161,
+ 500.0
+ ],
+ [
+ 103.169844419173174,
+ 34.817939326545385,
+ 500.0
+ ],
+ [
+ 103.161033668953721,
+ 34.739713586269382,
+ 500.0
+ ],
+ [
+ 103.135932771577799,
+ 34.663934073930271,
+ 500.0
+ ],
+ [
+ 103.095344074208072,
+ 34.592893587570565,
+ 500.0
+ ],
+ [
+ 103.040529849412664,
+ 34.528736040527839,
+ 500.0
+ ],
+ [
+ 102.973170585938249,
+ 34.473393094440269,
+ 500.0
+ ],
+ [
+ 102.895312260427289,
+ 34.428527591603242,
+ 500.0
+ ],
+ [
+ 102.809304356508605,
+ 34.395485253053671,
+ 500.0
+ ],
+ [
+ 102.717730466157604,
+ 34.375255851510865,
+ 500.0
+ ],
+ [
+ 102.623333333333335,
+ 34.368444802930199,
+ 500.0
+ ],
+ [
+ 102.528936200509065,
+ 34.375255851510865,
+ 500.0
+ ],
+ [
+ 102.437362310158065,
+ 34.395485253053671,
+ 500.0
+ ],
+ [
+ 102.351354406239381,
+ 34.428527591603242,
+ 500.0
+ ],
+ [
+ 102.273496080728421,
+ 34.473393094440269,
+ 500.0
+ ],
+ [
+ 102.206136817254006,
+ 34.528736040527839,
+ 500.0
+ ],
+ [
+ 102.151322592458598,
+ 34.592893587570565,
+ 500.0
+ ],
+ [
+ 102.11073389508887,
+ 34.663934073930271,
+ 500.0
+ ],
+ [
+ 102.085632997712949,
+ 34.739713586269382,
+ 500.0
+ ],
+ [
+ 102.076822247493496,
+ 34.817939326545385,
+ 500.0
+ ],
+ [
+ 102.084615010015725,
+ 34.896238069959161,
+ 500.0
+ ],
+ [
+ 102.108820683964368,
+ 34.972227788511425,
+ 500.0
+ ],
+ [
+ 102.148744888653709,
+ 35.043590335393553,
+ 500.0
+ ],
+ [
+ 102.203205502846444,
+ 35.10814295793574,
+ 500.0
+ ],
+ [
+ 102.270564704814234,
+ 35.163906346428348,
+ 500.0
+ ],
+ [
+ 102.348776546694253,
+ 35.20916694701755,
+ 500.0
+ ],
+ [
+ 102.43544892193232,
+ 35.242531380182676,
+ 500.0
+ ],
+ [
+ 102.52791809721721,
+ 35.262971017919654,
+ 500.0
+ ],
+ [
+ 102.623333333333335,
+ 35.269855081478482,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33232,
+ "name": "夏河",
+ "country": "CN",
+ "city": "甘南",
+ "height": 0,
+ "level": 2,
+ "lat": "34.8283402058602",
+ "lng": "102.571092242894",
+ "radius": 13450,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.539409432,
+ 34.856134273599999,
+ 0.0
+ ],
+ [
+ 102.44273809,
+ 34.887827185699997,
+ 0.0
+ ],
+ [
+ 102.423824008,
+ 34.824191757400001,
+ 0.0
+ ],
+ [
+ 102.527167307,
+ 34.817515509499998,
+ 0.0
+ ],
+ [
+ 102.537544854,
+ 34.790204984600003,
+ 0.0
+ ],
+ [
+ 102.549937872,
+ 34.777093959699997,
+ 0.0
+ ],
+ [
+ 102.56603627699999,
+ 34.7670622033,
+ 0.0
+ ],
+ [
+ 102.639544352,
+ 34.751315024299998,
+ 0.0
+ ],
+ [
+ 102.678412576,
+ 34.759280995200001,
+ 0.0
+ ],
+ [
+ 102.70724033499999,
+ 34.782138700799997,
+ 0.0
+ ],
+ [
+ 102.539409432,
+ 34.856134273599999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33232,
+ "name": "夏河",
+ "country": "CN",
+ "city": "甘南",
+ "height": 0,
+ "level": 2,
+ "lat": "34.8096740408082",
+ "lng": "102.673843588169",
+ "radius": 13313,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.800563151,
+ 34.750495722099998,
+ 0.0
+ ],
+ [
+ 102.819478694,
+ 34.815837243,
+ 0.0
+ ],
+ [
+ 102.719535448,
+ 34.8207818522,
+ 0.0
+ ],
+ [
+ 102.707429558,
+ 34.849874998499999,
+ 0.0
+ ],
+ [
+ 102.694332057,
+ 34.862523683100001,
+ 0.0
+ ],
+ [
+ 102.677687427,
+ 34.871957649800002,
+ 0.0
+ ],
+ [
+ 102.62360417799999,
+ 34.885871446099998,
+ 0.0
+ ],
+ [
+ 102.586742664,
+ 34.885460810600001,
+ 0.0
+ ],
+ [
+ 102.567989087,
+ 34.879229324299999,
+ 0.0
+ ],
+ [
+ 102.551844315,
+ 34.869226171500003,
+ 0.0
+ ],
+ [
+ 102.539409432,
+ 34.856134273599999,
+ 0.0
+ ],
+ [
+ 102.70724033499999,
+ 34.782138700799997,
+ 0.0
+ ],
+ [
+ 102.800563151,
+ 34.750495722099998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33232,
+ "name": "夏河",
+ "country": "CN",
+ "city": "甘南",
+ "height": 120,
+ "level": 2,
+ "lat": "34.8191909900116",
+ "lng": "102.621105262405",
+ "radius": 23815,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.878162923,
+ 34.856034403400002,
+ 120.0
+ ],
+ [
+ 102.821567691,
+ 34.682282250699998,
+ 120.0
+ ],
+ [
+ 102.36407416199999,
+ 34.782762541399997,
+ 120.0
+ ],
+ [
+ 102.420738469,
+ 34.956514694100001,
+ 120.0
+ ],
+ [
+ 102.878162923,
+ 34.856034403400002,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001464,
+ "name": "Tianshui Maijishan Airport",
+ "country": "CN",
+ "city": "Tianshui",
+ "height": 500,
+ "level": 2,
+ "lat": "34.559994",
+ "lng": "105.860257",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.860257,
+ 35.010701672294267,
+ 500.0
+ ],
+ [
+ 105.95537038732671,
+ 35.003817673073584,
+ 500.0
+ ],
+ [
+ 106.04754748360503,
+ 34.983378193581935,
+ 500.0
+ ],
+ [
+ 106.133946948047978,
+ 34.950013913433146,
+ 500.0
+ ],
+ [
+ 106.211913723982789,
+ 34.904753311944376,
+ 500.0
+ ],
+ [
+ 106.279063349123419,
+ 34.848989592867625,
+ 500.0
+ ],
+ [
+ 106.33335623203142,
+ 34.784436134319975,
+ 500.0
+ ],
+ [
+ 106.373159429553738,
+ 34.713072098459293,
+ 500.0
+ ],
+ [
+ 106.397294101547757,
+ 34.637080144065379,
+ 500.0
+ ],
+ [
+ 106.405067501230704,
+ 34.558778397180575,
+ 500.0
+ ],
+ [
+ 106.396289029080862,
+ 34.480548949065003,
+ 500.0
+ ],
+ [
+ 106.371270491562697,
+ 34.404765172698902,
+ 500.0
+ ],
+ [
+ 106.330811232239355,
+ 34.33372008989366,
+ 500.0
+ ],
+ [
+ 106.276169225614566,
+ 34.269557894796421,
+ 500.0
+ ],
+ [
+ 106.209019540316248,
+ 34.214210561213299,
+ 500.0
+ ],
+ [
+ 106.131401795931339,
+ 34.169341245026317,
+ 500.0
+ ],
+ [
+ 106.045658372396872,
+ 34.136295951411157,
+ 500.0
+ ],
+ [
+ 105.954365201800371,
+ 34.116064679387563,
+ 500.0
+ ],
+ [
+ 105.860257,
+ 34.109252990562986,
+ 500.0
+ ],
+ [
+ 105.766148798199637,
+ 34.116064679387563,
+ 500.0
+ ],
+ [
+ 105.674855627603137,
+ 34.136295951411157,
+ 500.0
+ ],
+ [
+ 105.58911220406867,
+ 34.169341245026317,
+ 500.0
+ ],
+ [
+ 105.51149445968376,
+ 34.214210561213299,
+ 500.0
+ ],
+ [
+ 105.444344774385442,
+ 34.269557894796421,
+ 500.0
+ ],
+ [
+ 105.389702767760653,
+ 34.33372008989366,
+ 500.0
+ ],
+ [
+ 105.349243508437311,
+ 34.404765172698902,
+ 500.0
+ ],
+ [
+ 105.324224970919147,
+ 34.480548949065003,
+ 500.0
+ ],
+ [
+ 105.315446498769305,
+ 34.558778397180575,
+ 500.0
+ ],
+ [
+ 105.323219898452251,
+ 34.637080144065379,
+ 500.0
+ ],
+ [
+ 105.347354570446271,
+ 34.713072098459293,
+ 500.0
+ ],
+ [
+ 105.387157767968588,
+ 34.784436134319975,
+ 500.0
+ ],
+ [
+ 105.44145065087659,
+ 34.848989592867625,
+ 500.0
+ ],
+ [
+ 105.508600276017219,
+ 34.904753311944376,
+ 500.0
+ ],
+ [
+ 105.586567051952031,
+ 34.950013913433146,
+ 500.0
+ ],
+ [
+ 105.672966516394979,
+ 34.983378193581935,
+ 500.0
+ ],
+ [
+ 105.765143612673299,
+ 35.003817673073584,
+ 500.0
+ ],
+ [
+ 105.860257,
+ 35.010701672294267,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7395,
+ "name": "Tianshui Maijishan Airport",
+ "country": "CN",
+ "city": "Tianshui",
+ "height": 0,
+ "level": 2,
+ "lat": "34.5688206211636",
+ "lng": "105.807703745458",
+ "radius": 13484,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.677981101,
+ 34.6262971759,
+ 0.0
+ ],
+ [
+ 105.66108848099999,
+ 34.557487668900002,
+ 0.0
+ ],
+ [
+ 105.765467546,
+ 34.553644512299996,
+ 0.0
+ ],
+ [
+ 105.769693461,
+ 34.537083811099997,
+ 0.0
+ ],
+ [
+ 105.778844509,
+ 34.522296449499997,
+ 0.0
+ ],
+ [
+ 105.792325535,
+ 34.509962928900002,
+ 0.0
+ ],
+ [
+ 105.828370531,
+ 34.495790138499999,
+ 0.0
+ ],
+ [
+ 105.879608744,
+ 34.489263558300003,
+ 0.0
+ ],
+ [
+ 105.917611291,
+ 34.499374165900001,
+ 0.0
+ ],
+ [
+ 105.944403786,
+ 34.523783647,
+ 0.0
+ ],
+ [
+ 105.77599646199999,
+ 34.596538605200003,
+ 0.0
+ ],
+ [
+ 105.677981101,
+ 34.6262971759,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7395,
+ "name": "Tianshui Maijishan Airport",
+ "country": "CN",
+ "city": "Tianshui",
+ "height": 0,
+ "level": 2,
+ "lat": "34.5513543072749",
+ "lng": "105.912685531681",
+ "radius": 13485,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.944403786,
+ 34.523783647,
+ 0.0
+ ],
+ [
+ 106.042353656,
+ 34.493948449299999,
+ 0.0
+ ],
+ [
+ 106.059296548,
+ 34.562755043499997,
+ 0.0
+ ],
+ [
+ 105.954989213,
+ 34.566753814899997,
+ 0.0
+ ],
+ [
+ 105.950810463,
+ 34.583261638899998,
+ 0.0
+ ],
+ [
+ 105.941689088,
+ 34.598064232500001,
+ 0.0
+ ],
+ [
+ 105.928220777,
+ 34.610417734099997,
+ 0.0
+ ],
+ [
+ 105.89214866,
+ 34.624629430900001,
+ 0.0
+ ],
+ [
+ 105.840800613,
+ 34.631153409,
+ 0.0
+ ],
+ [
+ 105.802756415,
+ 34.620995525399998,
+ 0.0
+ ],
+ [
+ 105.77599646199999,
+ 34.596538605200003,
+ 0.0
+ ],
+ [
+ 105.944403786,
+ 34.523783647,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7395,
+ "name": "Tianshui Maijishan Airport",
+ "country": "CN",
+ "city": "Tianshui",
+ "height": 120,
+ "level": 2,
+ "lat": "34.5598123226123",
+ "lng": "105.860139467368",
+ "radius": 23657,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.60901882899999,
+ 34.510089803699998,
+ 120.0
+ ],
+ [
+ 105.65232266,
+ 34.686386597599999,
+ 120.0
+ ],
+ [
+ 106.111283581,
+ 34.609957639199997,
+ 120.0
+ ],
+ [
+ 106.068019522,
+ 34.433660845200002,
+ 120.0
+ ],
+ [
+ 105.60901882899999,
+ 34.510089803699998,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002367,
+ "name": "陕西液化天然气公司",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "34.2569511289964",
+ "lng": "108.119318172274",
+ "radius": 1145,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.109982051849371,
+ 34.263771499729103,
+ 0.0
+ ],
+ [
+ 108.114386367797863,
+ 34.262284877555786,
+ 0.0
+ ],
+ [
+ 108.126073989868161,
+ 34.262542924001437,
+ 0.0
+ ],
+ [
+ 108.128826675415041,
+ 34.250296162470292,
+ 0.0
+ ],
+ [
+ 108.108158760070808,
+ 34.25237078028573,
+ 0.0
+ ],
+ [
+ 108.109982051849371,
+ 34.263771499729103,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001478,
+ "name": "Xi'an Xianyang International Airport",
+ "country": "CN",
+ "city": "Xianyang",
+ "height": 500,
+ "level": 2,
+ "lat": "34.439518",
+ "lng": "108.758366",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.758366,
+ 34.890234602237562,
+ 500.0
+ ],
+ [
+ 108.853340384226385,
+ 34.883350632489972,
+ 500.0
+ ],
+ [
+ 108.945382976461687,
+ 34.862911225341989,
+ 500.0
+ ],
+ [
+ 109.031656763968954,
+ 34.829547014571986,
+ 500.0
+ ],
+ [
+ 109.109510685741938,
+ 34.784286410753943,
+ 500.0
+ ],
+ [
+ 109.176563799751136,
+ 34.728522536380389,
+ 500.0
+ ],
+ [
+ 109.23077944175121,
+ 34.663968688333014,
+ 500.0
+ ],
+ [
+ 109.270526915211477,
+ 34.592603960580163,
+ 500.0
+ ],
+ [
+ 109.294628890941311,
+ 34.51661096854307,
+ 500.0
+ ],
+ [
+ 109.30239337454168,
+ 34.438307828740143,
+ 500.0
+ ],
+ [
+ 109.293629767251502,
+ 34.360076661787296,
+ 500.0
+ ],
+ [
+ 109.268649157465191,
+ 34.284290909314258,
+ 500.0
+ ],
+ [
+ 109.22824950547691,
+ 34.213243696758028,
+ 500.0
+ ],
+ [
+ 109.173686806421244,
+ 34.149079348285291,
+ 500.0
+ ],
+ [
+ 109.106633632870128,
+ 34.093729982230151,
+ 500.0
+ ],
+ [
+ 109.029126676929238,
+ 34.048858899654228,
+ 500.0
+ ],
+ [
+ 108.943505047271302,
+ 34.015812237277324,
+ 500.0
+ ],
+ [
+ 108.852341148634395,
+ 33.995580098885888,
+ 500.0
+ ],
+ [
+ 108.758366,
+ 33.988768113517423,
+ 500.0
+ ],
+ [
+ 108.664390851365596,
+ 33.995580098885888,
+ 500.0
+ ],
+ [
+ 108.573226952728689,
+ 34.015812237277324,
+ 500.0
+ ],
+ [
+ 108.487605323070753,
+ 34.048858899654228,
+ 500.0
+ ],
+ [
+ 108.410098367129862,
+ 34.093729982230151,
+ 500.0
+ ],
+ [
+ 108.343045193578746,
+ 34.149079348285291,
+ 500.0
+ ],
+ [
+ 108.28848249452308,
+ 34.213243696758028,
+ 500.0
+ ],
+ [
+ 108.248082842534799,
+ 34.284290909314258,
+ 500.0
+ ],
+ [
+ 108.223102232748488,
+ 34.360076661787296,
+ 500.0
+ ],
+ [
+ 108.214338625458311,
+ 34.438307828740143,
+ 500.0
+ ],
+ [
+ 108.222103109058679,
+ 34.51661096854307,
+ 500.0
+ ],
+ [
+ 108.246205084788514,
+ 34.592603960580163,
+ 500.0
+ ],
+ [
+ 108.285952558248781,
+ 34.663968688333014,
+ 500.0
+ ],
+ [
+ 108.340168200248854,
+ 34.728522536380389,
+ 500.0
+ ],
+ [
+ 108.407221314258052,
+ 34.784286410753943,
+ 500.0
+ ],
+ [
+ 108.485075236031037,
+ 34.829547014571986,
+ 500.0
+ ],
+ [
+ 108.571349023538303,
+ 34.862911225341989,
+ 500.0
+ ],
+ [
+ 108.663391615773605,
+ 34.883350632489972,
+ 500.0
+ ],
+ [
+ 108.758366,
+ 34.890234602237562,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7775,
+ "name": "Xi'an Xianyang International Airport",
+ "country": "CN",
+ "city": "Xianyang",
+ "height": 0,
+ "level": 2,
+ "lat": "34.4034964228096",
+ "lng": "108.724875265779",
+ "radius": 13684,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.853173087,
+ 34.466333358,
+ 0.0
+ ],
+ [
+ 108.66853399199999,
+ 34.415244175799998,
+ 0.0
+ ],
+ [
+ 108.581854335,
+ 34.368641316599998,
+ 0.0
+ ],
+ [
+ 108.595835938677212,
+ 34.354674601416725,
+ 0.0
+ ],
+ [
+ 108.590182267,
+ 34.351955370900001,
+ 0.0
+ ],
+ [
+ 108.643450298,
+ 34.300411329500001,
+ 0.0
+ ],
+ [
+ 108.7117901,
+ 34.367078412300003,
+ 0.0
+ ],
+ [
+ 108.743940785,
+ 34.357701325599997,
+ 0.0
+ ],
+ [
+ 108.764044935,
+ 34.357937194500003,
+ 0.0
+ ],
+ [
+ 108.800665257,
+ 34.370954631300002,
+ 0.0
+ ],
+ [
+ 108.83572874799999,
+ 34.395997946800001,
+ 0.0
+ ],
+ [
+ 108.853487851,
+ 34.417670474099999,
+ 0.0
+ ],
+ [
+ 108.858592697,
+ 34.4337257177,
+ 0.0
+ ],
+ [
+ 108.853173087,
+ 34.466333358,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7775,
+ "name": "Xi'an Xianyang International Airport",
+ "country": "CN",
+ "city": "Xianyang",
+ "height": 0,
+ "level": 2,
+ "lat": "34.464959193747",
+ "lng": "108.80537263317",
+ "radius": 13712,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.885052101506446,
+ 34.561539075071828,
+ 0.0
+ ],
+ [
+ 108.869840017,
+ 34.576252140500003,
+ 0.0
+ ],
+ [
+ 108.804858459,
+ 34.511253636399999,
+ 0.0
+ ],
+ [
+ 108.770476234,
+ 34.520586792800003,
+ 0.0
+ ],
+ [
+ 108.750355812,
+ 34.519762394,
+ 0.0
+ ],
+ [
+ 108.714263415,
+ 34.505664359599997,
+ 0.0
+ ],
+ [
+ 108.687598054,
+ 34.485664424200003,
+ 0.0
+ ],
+ [
+ 108.669058714,
+ 34.463905827799998,
+ 0.0
+ ],
+ [
+ 108.663676512,
+ 34.447911889300002,
+ 0.0
+ ],
+ [
+ 108.66853399199999,
+ 34.415244175799998,
+ 0.0
+ ],
+ [
+ 108.853173087,
+ 34.466333358,
+ 0.0
+ ],
+ [
+ 108.943150872,
+ 34.513034116500002,
+ 0.0
+ ],
+ [
+ 108.889888579,
+ 34.566255702600003,
+ 0.0
+ ],
+ [
+ 108.885052101506446,
+ 34.561539075071828,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7775,
+ "name": "Xi'an Xianyang International Airport",
+ "country": "CN",
+ "city": "Xianyang",
+ "height": 120,
+ "level": 2,
+ "lat": "34.436443728876",
+ "lng": "108.7632120187",
+ "radius": 24423,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.865301081,
+ 34.639357506099998,
+ 120.0
+ ],
+ [
+ 108.880374437358995,
+ 34.624243117118134,
+ 120.0
+ ],
+ [
+ 108.884024362,
+ 34.626707545599999,
+ 120.0
+ ],
+ [
+ 109.022319111,
+ 34.487497982199997,
+ 120.0
+ ],
+ [
+ 108.651218251,
+ 34.237209959600001,
+ 120.0
+ ],
+ [
+ 108.51333703,
+ 34.376419523599999,
+ 120.0
+ ],
+ [
+ 108.517084003127707,
+ 34.378949479203172,
+ 120.0
+ ],
+ [
+ 108.502552998,
+ 34.393562978600002,
+ 120.0
+ ],
+ [
+ 108.865301081,
+ 34.639357506099998,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8923,
+ "name": "Yuncheng Guangong Airport",
+ "country": "CN",
+ "city": "Yuncheng",
+ "height": 0,
+ "level": 2,
+ "lat": "35.1255307938488",
+ "lng": "111.084016271251",
+ "radius": 13820,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.130417646,
+ 35.1116991301,
+ 0.0
+ ],
+ [
+ 111.235577811,
+ 35.116618887900003,
+ 0.0
+ ],
+ [
+ 111.218022828,
+ 35.1842104455,
+ 0.0
+ ],
+ [
+ 111.11949456799999,
+ 35.153782144099999,
+ 0.0
+ ],
+ [
+ 111.10742422,
+ 35.167870919899997,
+ 0.0
+ ],
+ [
+ 111.073353338,
+ 35.185411521399999,
+ 0.0
+ ],
+ [
+ 111.033112088,
+ 35.186665423199997,
+ 0.0
+ ],
+ [
+ 110.974683235,
+ 35.174340025399999,
+ 0.0
+ ],
+ [
+ 110.94469021099999,
+ 35.152385168800002,
+ 0.0
+ ],
+ [
+ 110.935904191,
+ 35.137422311,
+ 0.0
+ ],
+ [
+ 110.93215558199999,
+ 35.121109669299997,
+ 0.0
+ ],
+ [
+ 111.130417646,
+ 35.1116991301,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8923,
+ "name": "Yuncheng Guangong Airport",
+ "country": "CN",
+ "city": "Yuncheng",
+ "height": 0,
+ "level": 2,
+ "lat": "35.1071381992626",
+ "lng": "110.978603860365",
+ "radius": 13818,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.827082325,
+ 35.1161362211,
+ 0.0
+ ],
+ [
+ 110.844682441,
+ 35.048547683499997,
+ 0.0
+ ],
+ [
+ 110.943091067,
+ 35.079126432700001,
+ 0.0
+ ],
+ [
+ 110.955182967,
+ 35.065028932099999,
+ 0.0
+ ],
+ [
+ 110.989220307,
+ 35.047510128699997,
+ 0.0
+ ],
+ [
+ 111.029392942,
+ 35.046257442799998,
+ 0.0
+ ],
+ [
+ 111.087771152,
+ 35.058549970100003,
+ 0.0
+ ],
+ [
+ 111.117788704,
+ 35.080450719300003,
+ 0.0
+ ],
+ [
+ 111.12661599,
+ 35.095394889300003,
+ 0.0
+ ],
+ [
+ 111.130417646,
+ 35.1116991301,
+ 0.0
+ ],
+ [
+ 110.93215558199999,
+ 35.121109669299997,
+ 0.0
+ ],
+ [
+ 110.827082325,
+ 35.1161362211,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8923,
+ "name": "Yuncheng Guangong Airport",
+ "country": "CN",
+ "city": "Yuncheng",
+ "height": 120,
+ "level": 2,
+ "lat": "35.116053531405",
+ "lng": "111.031389081591",
+ "radius": 23974,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.819964776,
+ 34.987478558399999,
+ 120.0
+ ],
+ [
+ 110.774160033,
+ 35.163393153299999,
+ 120.0
+ ],
+ [
+ 111.242738857,
+ 35.245067406499999,
+ 120.0
+ ],
+ [
+ 111.288589539,
+ 35.069152811499997,
+ 120.0
+ ],
+ [
+ 110.819964776,
+ 34.987478558399999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001388,
+ "name": "Yuncheng Guangong Airport",
+ "country": "CN",
+ "city": "Yuncheng",
+ "height": 500,
+ "level": 2,
+ "lat": "35.116556",
+ "lng": "111.031423",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.031423,
+ 35.567222240255639,
+ 500.0
+ ],
+ [
+ 111.127189391096479,
+ 35.560338101234905,
+ 500.0
+ ],
+ [
+ 111.219998355710274,
+ 35.539898277327858,
+ 500.0
+ ],
+ [
+ 111.306988221011281,
+ 35.506533661952311,
+ 500.0
+ ],
+ [
+ 111.385485159802101,
+ 35.46127305510155,
+ 500.0
+ ],
+ [
+ 111.453088172680012,
+ 35.405510039629455,
+ 500.0
+ ],
+ [
+ 111.507743917154613,
+ 35.340958372722106,
+ 500.0
+ ],
+ [
+ 111.547808896099781,
+ 35.269597534877057,
+ 500.0
+ ],
+ [
+ 111.572097171246767,
+ 35.193610387561861,
+ 500.0
+ ],
+ [
+ 111.579912461048039,
+ 35.115315101902134,
+ 500.0
+ ],
+ [
+ 111.571064161940825,
+ 35.037093633135797,
+ 500.0
+ ],
+ [
+ 111.545867453066847,
+ 34.961319035193235,
+ 500.0
+ ],
+ [
+ 111.505128175531596,
+ 34.890283847924344,
+ 500.0
+ ],
+ [
+ 111.450113601767868,
+ 34.826131660576131,
+ 500.0
+ ],
+ [
+ 111.382510525793577,
+ 34.770793774461843,
+ 500.0
+ ],
+ [
+ 111.304372319622587,
+ 34.725932669893403,
+ 500.0
+ ],
+ [
+ 111.218056730998541,
+ 34.692893739907987,
+ 500.0
+ ],
+ [
+ 111.126156263208117,
+ 34.67266649598848,
+ 500.0
+ ],
+ [
+ 111.031423,
+ 34.665856185951903,
+ 500.0
+ ],
+ [
+ 110.936689736791891,
+ 34.67266649598848,
+ 500.0
+ ],
+ [
+ 110.844789269001467,
+ 34.692893739907987,
+ 500.0
+ ],
+ [
+ 110.758473680377421,
+ 34.725932669893403,
+ 500.0
+ ],
+ [
+ 110.68033547420643,
+ 34.770793774461843,
+ 500.0
+ ],
+ [
+ 110.61273239823214,
+ 34.826131660576131,
+ 500.0
+ ],
+ [
+ 110.557717824468412,
+ 34.890283847924344,
+ 500.0
+ ],
+ [
+ 110.51697854693316,
+ 34.961319035193235,
+ 500.0
+ ],
+ [
+ 110.491781838059183,
+ 35.037093633135797,
+ 500.0
+ ],
+ [
+ 110.482933538951968,
+ 35.115315101902134,
+ 500.0
+ ],
+ [
+ 110.49074882875324,
+ 35.193610387561861,
+ 500.0
+ ],
+ [
+ 110.515037103900227,
+ 35.269597534877057,
+ 500.0
+ ],
+ [
+ 110.555102082845394,
+ 35.340958372722106,
+ 500.0
+ ],
+ [
+ 110.609757827319996,
+ 35.405510039629455,
+ 500.0
+ ],
+ [
+ 110.677360840197906,
+ 35.46127305510155,
+ 500.0
+ ],
+ [
+ 110.755857778988727,
+ 35.506533661952311,
+ 500.0
+ ],
+ [
+ 110.842847644289733,
+ 35.539898277327858,
+ 500.0
+ ],
+ [
+ 110.935656608903528,
+ 35.560338101234905,
+ 500.0
+ ],
+ [
+ 111.031423,
+ 35.567222240255639,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4089,
+ "name": "Luoyang Airport",
+ "country": "CN",
+ "city": "Luoyang",
+ "height": 0,
+ "level": 2,
+ "lat": "34.7299412731996",
+ "lng": "112.334999366853",
+ "radius": 13076,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.295500184,
+ 34.742435667400002,
+ 0.0
+ ],
+ [
+ 112.19219547199999,
+ 34.737509790700003,
+ 0.0
+ ],
+ [
+ 112.212793954,
+ 34.668821689300003,
+ 0.0
+ ],
+ [
+ 112.307776648,
+ 34.702160407599997,
+ 0.0
+ ],
+ [
+ 112.33340056199999,
+ 34.681422539,
+ 0.0
+ ],
+ [
+ 112.35189377899999,
+ 34.674773111299999,
+ 0.0
+ ],
+ [
+ 112.391906097,
+ 34.674122322800002,
+ 0.0
+ ],
+ [
+ 112.449334863,
+ 34.6947848525,
+ 0.0
+ ],
+ [
+ 112.47300624099999,
+ 34.721328467699998,
+ 0.0
+ ],
+ [
+ 112.477807823,
+ 34.737450785599997,
+ 0.0
+ ],
+ [
+ 112.295500184,
+ 34.742435667400002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4089,
+ "name": "Luoyang Airport",
+ "country": "CN",
+ "city": "Luoyang",
+ "height": 0,
+ "level": 2,
+ "lat": "34.754699083966",
+ "lng": "112.438074582363",
+ "radius": 13097,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.581165657,
+ 34.747516106500001,
+ 0.0
+ ],
+ [
+ 112.563940443,
+ 34.811156175400001,
+ 0.0
+ ],
+ [
+ 112.468950652,
+ 34.777819102099997,
+ 0.0
+ ],
+ [
+ 112.443337282,
+ 34.7985625357,
+ 0.0
+ ],
+ [
+ 112.424821556,
+ 34.8052217587,
+ 0.0
+ ],
+ [
+ 112.404836069,
+ 34.807715890399997,
+ 0.0
+ ],
+ [
+ 112.354746734,
+ 34.802541612600002,
+ 0.0
+ ],
+ [
+ 112.319621323,
+ 34.786882129600002,
+ 0.0
+ ],
+ [
+ 112.306894861,
+ 34.773988703800001,
+ 0.0
+ ],
+ [
+ 112.298668293,
+ 34.758828522199998,
+ 0.0
+ ],
+ [
+ 112.295500184,
+ 34.742435667400002,
+ 0.0
+ ],
+ [
+ 112.477807823,
+ 34.737450785599997,
+ 0.0
+ ],
+ [
+ 112.581165657,
+ 34.747516106500001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4089,
+ "name": "Luoyang Airport",
+ "country": "CN",
+ "city": "Luoyang",
+ "height": 120,
+ "level": 2,
+ "lat": "34.7408584875034",
+ "lng": "112.387632284273",
+ "radius": 23561,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.587500479,
+ 34.874908798,
+ 120.0
+ ],
+ [
+ 112.64069792799999,
+ 34.7004312961,
+ 120.0
+ ],
+ [
+ 112.187680008,
+ 34.607219606800001,
+ 120.0
+ ],
+ [
+ 112.134542544,
+ 34.781697108800003,
+ 120.0
+ ],
+ [
+ 112.587500479,
+ 34.874908798,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001484,
+ "name": "Luoyang Airport",
+ "country": "CN",
+ "city": "Luoyang",
+ "height": 500,
+ "level": 2,
+ "lat": "34.741252",
+ "lng": "112.387992",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.387992,
+ 35.191946210845543,
+ 500.0
+ ],
+ [
+ 112.483316085045942,
+ 35.185062166765164,
+ 500.0
+ ],
+ [
+ 112.575697059497202,
+ 35.164622576983952,
+ 500.0
+ ],
+ [
+ 112.662287022233173,
+ 35.131258190371618,
+ 500.0
+ ],
+ [
+ 112.74042486007221,
+ 35.085997590116406,
+ 500.0
+ ],
+ [
+ 112.807720774837065,
+ 35.030234102758889,
+ 500.0
+ ],
+ [
+ 112.862130738144259,
+ 34.965681229179552,
+ 500.0
+ ],
+ [
+ 112.902018401472972,
+ 34.894318234605109,
+ 500.0
+ ],
+ [
+ 112.926202634398649,
+ 34.81832784339003,
+ 500.0
+ ],
+ [
+ 112.933989549643925,
+ 34.740028196059271,
+ 500.0
+ ],
+ [
+ 112.925188546452461,
+ 34.6618013396454,
+ 500.0
+ ],
+ [
+ 112.900112519616528,
+ 34.586020543566583,
+ 500.0
+ ],
+ [
+ 112.859562909311009,
+ 34.514978673258163,
+ 500.0
+ ],
+ [
+ 112.804800690217277,
+ 34.450819726636347,
+ 500.0
+ ],
+ [
+ 112.737504714354856,
+ 34.395475459366445,
+ 500.0
+ ],
+ [
+ 112.659719038695457,
+ 34.350608808199944,
+ 500.0
+ ],
+ [
+ 112.573791001717311,
+ 34.317565579760604,
+ 500.0
+ ],
+ [
+ 112.482301882273902,
+ 34.29733561493299,
+ 500.0
+ ],
+ [
+ 112.387992,
+ 34.290524373545246,
+ 500.0
+ ],
+ [
+ 112.293682117726092,
+ 34.29733561493299,
+ 500.0
+ ],
+ [
+ 112.202192998282683,
+ 34.317565579760604,
+ 500.0
+ ],
+ [
+ 112.116264961304537,
+ 34.350608808199944,
+ 500.0
+ ],
+ [
+ 112.038479285645138,
+ 34.395475459366445,
+ 500.0
+ ],
+ [
+ 111.971183309782717,
+ 34.450819726636347,
+ 500.0
+ ],
+ [
+ 111.916421090688985,
+ 34.514978673258163,
+ 500.0
+ ],
+ [
+ 111.875871480383466,
+ 34.586020543566583,
+ 500.0
+ ],
+ [
+ 111.850795453547533,
+ 34.6618013396454,
+ 500.0
+ ],
+ [
+ 111.841994450356069,
+ 34.740028196059271,
+ 500.0
+ ],
+ [
+ 111.849781365601345,
+ 34.81832784339003,
+ 500.0
+ ],
+ [
+ 111.873965598527022,
+ 34.894318234605109,
+ 500.0
+ ],
+ [
+ 111.913853261855735,
+ 34.965681229179552,
+ 500.0
+ ],
+ [
+ 111.968263225162929,
+ 35.030234102758889,
+ 500.0
+ ],
+ [
+ 112.035559139927784,
+ 35.085997590116406,
+ 500.0
+ ],
+ [
+ 112.113696977766821,
+ 35.131258190371618,
+ 500.0
+ ],
+ [
+ 112.200286940502792,
+ 35.164622576983952,
+ 500.0
+ ],
+ [
+ 112.292667914954052,
+ 35.185062166765164,
+ 500.0
+ ],
+ [
+ 112.387992,
+ 35.191946210845543,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001414,
+ "name": "Xinzheng Airport",
+ "country": "CN",
+ "city": "Zhengzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "34.520638",
+ "lng": "113.841789",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.841789,
+ 34.971348590987311,
+ 500.0
+ ],
+ [
+ 113.936856888013381,
+ 34.964464601424396,
+ 500.0
+ ],
+ [
+ 114.028989957634678,
+ 34.944025145648645,
+ 500.0
+ ],
+ [
+ 114.1153482847579,
+ 34.910660888283552,
+ 500.0
+ ],
+ [
+ 114.193278120593376,
+ 34.865400286164096,
+ 500.0
+ ],
+ [
+ 114.260396155124212,
+ 34.80963651646622,
+ 500.0
+ ],
+ [
+ 114.314663755056543,
+ 34.745082930738278,
+ 500.0
+ ],
+ [
+ 114.354448712614584,
+ 34.673718668834979,
+ 500.0
+ ],
+ [
+ 114.378572682230697,
+ 34.597726375352416,
+ 500.0
+ ],
+ [
+ 114.386343163400085,
+ 34.519424173212876,
+ 500.0
+ ],
+ [
+ 114.377569556855235,
+ 34.441194163269849,
+ 500.0
+ ],
+ [
+ 114.352563434024319,
+ 34.365409740945573,
+ 500.0
+ ],
+ [
+ 114.312123685697813,
+ 34.294363961930301,
+ 500.0
+ ],
+ [
+ 114.257507638487027,
+ 34.230201062880589,
+ 500.0
+ ],
+ [
+ 114.190389544000439,
+ 34.17485306485613,
+ 500.0
+ ],
+ [
+ 114.112808063585902,
+ 34.129983171205993,
+ 500.0
+ ],
+ [
+ 114.027104506408719,
+ 34.096937430114828,
+ 500.0
+ ],
+ [
+ 113.935853649957977,
+ 34.076705874856422,
+ 500.0
+ ],
+ [
+ 113.841789,
+ 34.069894089084819,
+ 500.0
+ ],
+ [
+ 113.747724350042034,
+ 34.076705874856422,
+ 500.0
+ ],
+ [
+ 113.656473493591292,
+ 34.096937430114828,
+ 500.0
+ ],
+ [
+ 113.570769936414109,
+ 34.129983171205993,
+ 500.0
+ ],
+ [
+ 113.493188455999572,
+ 34.17485306485613,
+ 500.0
+ ],
+ [
+ 113.426070361512984,
+ 34.230201062880589,
+ 500.0
+ ],
+ [
+ 113.371454314302198,
+ 34.294363961930301,
+ 500.0
+ ],
+ [
+ 113.331014565975693,
+ 34.365409740945573,
+ 500.0
+ ],
+ [
+ 113.306008443144776,
+ 34.441194163269849,
+ 500.0
+ ],
+ [
+ 113.297234836599927,
+ 34.519424173212876,
+ 500.0
+ ],
+ [
+ 113.305005317769314,
+ 34.597726375352416,
+ 500.0
+ ],
+ [
+ 113.329129287385427,
+ 34.673718668834979,
+ 500.0
+ ],
+ [
+ 113.368914244943468,
+ 34.745082930738278,
+ 500.0
+ ],
+ [
+ 113.423181844875799,
+ 34.80963651646622,
+ 500.0
+ ],
+ [
+ 113.490299879406635,
+ 34.865400286164096,
+ 500.0
+ ],
+ [
+ 113.568229715242111,
+ 34.910660888283552,
+ 500.0
+ ],
+ [
+ 113.654588042365333,
+ 34.944025145648645,
+ 500.0
+ ],
+ [
+ 113.746721111986631,
+ 34.964464601424396,
+ 500.0
+ ],
+ [
+ 113.841789,
+ 34.971348590987311,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1791,
+ "name": "Xinzheng Airport",
+ "country": "CN",
+ "city": "Zhengzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "34.5169139354695",
+ "lng": "113.838271923082",
+ "radius": 18184,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.013875092005762,
+ 34.445328653486015,
+ 0.0
+ ],
+ [
+ 113.682883552639808,
+ 34.605943105155042,
+ 0.0
+ ],
+ [
+ 113.674617925,
+ 34.60955248,
+ 0.0
+ ],
+ [
+ 113.64369697,
+ 34.549341665199996,
+ 0.0
+ ],
+ [
+ 113.747049382,
+ 34.527650468799997,
+ 0.0
+ ],
+ [
+ 113.753608486,
+ 34.5011149133,
+ 0.0
+ ],
+ [
+ 113.76407197,
+ 34.486932855100001,
+ 0.0
+ ],
+ [
+ 113.778628552,
+ 34.475464569700002,
+ 0.0
+ ],
+ [
+ 113.82791259,
+ 34.452503628,
+ 0.0
+ ],
+ [
+ 113.867367919,
+ 34.448032725499999,
+ 0.0
+ ],
+ [
+ 113.886844047,
+ 34.452223864499999,
+ 0.0
+ ],
+ [
+ 113.918677345,
+ 34.472082096900003,
+ 0.0
+ ],
+ [
+ 114.005372114,
+ 34.428778933899999,
+ 0.0
+ ],
+ [
+ 114.013875092005762,
+ 34.445328653486015,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1791,
+ "name": "Xinzheng Airport",
+ "country": "CN",
+ "city": "Zhengzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "34.5326136192632",
+ "lng": "113.858505339781",
+ "radius": 18280,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.023661999,
+ 34.440437139300002,
+ 0.0
+ ],
+ [
+ 114.054623279,
+ 34.502341298,
+ 0.0
+ ],
+ [
+ 113.956278915,
+ 34.525689198099997,
+ 0.0
+ ],
+ [
+ 113.949774662,
+ 34.5521525216,
+ 0.0
+ ],
+ [
+ 113.93933124,
+ 34.566348705700001,
+ 0.0
+ ],
+ [
+ 113.924778176,
+ 34.577833692799999,
+ 0.0
+ ],
+ [
+ 113.868744093,
+ 34.600833343399998,
+ 0.0
+ ],
+ [
+ 113.83504865,
+ 34.604226927299997,
+ 0.0
+ ],
+ [
+ 113.815418862,
+ 34.600427525599997,
+ 0.0
+ ],
+ [
+ 113.78297119299999,
+ 34.581199670399997,
+ 0.0
+ ],
+ [
+ 113.69297491899999,
+ 34.624557350800004,
+ 0.0
+ ],
+ [
+ 113.682883552639808,
+ 34.605943105155042,
+ 0.0
+ ],
+ [
+ 114.013875092005762,
+ 34.445328653486015,
+ 0.0
+ ],
+ [
+ 114.023661999,
+ 34.440437139300002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1791,
+ "name": "Xinzheng Airport",
+ "country": "CN",
+ "city": "Zhengzhou",
+ "height": 120,
+ "level": 2,
+ "lat": "34.5249922797887",
+ "lng": "113.850222576015",
+ "radius": 24764,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.120529687,
+ 34.527970521299999,
+ 120.0
+ ],
+ [
+ 114.025224808,
+ 34.366185747300001,
+ 120.0
+ ],
+ [
+ 114.017490598371054,
+ 34.369280049985072,
+ 120.0
+ ],
+ [
+ 114.008738906,
+ 34.354047258800001,
+ 120.0
+ ],
+ [
+ 113.579936728,
+ 34.5214186149,
+ 120.0
+ ],
+ [
+ 113.673508412,
+ 34.683958272600002,
+ 120.0
+ ],
+ [
+ 113.679425290160125,
+ 34.68164776695609,
+ 120.0
+ ],
+ [
+ 113.69035050399999,
+ 34.700155547400001,
+ 120.0
+ ],
+ [
+ 114.120529687,
+ 34.527970521299999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001748,
+ "name": "Lianyungang Huaguoshan Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "34.4531794665145",
+ "lng": "119.20263847511",
+ "radius": 13504,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.241593186,
+ 34.472284578599997,
+ 0.0
+ ],
+ [
+ 119.301360439,
+ 34.543347991600001,
+ 0.0
+ ],
+ [
+ 119.229464393,
+ 34.572600445,
+ 0.0
+ ],
+ [
+ 119.197284141,
+ 34.490332638300004,
+ 0.0
+ ],
+ [
+ 119.155629316,
+ 34.488164035399997,
+ 0.0
+ ],
+ [
+ 119.137659892,
+ 34.480673312199997,
+ 0.0
+ ],
+ [
+ 119.111648255,
+ 34.455706511099997,
+ 0.0
+ ],
+ [
+ 119.09042352,
+ 34.414740376200001,
+ 0.0
+ ],
+ [
+ 119.089405892,
+ 34.398163385300002,
+ 0.0
+ ],
+ [
+ 119.09362202,
+ 34.381933883599999,
+ 0.0
+ ],
+ [
+ 119.116259307,
+ 34.354839832,
+ 0.0
+ ],
+ [
+ 119.241593186,
+ 34.472284578599997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001748,
+ "name": "Lianyungang Huaguoshan Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "34.3739364409343",
+ "lng": "119.155222376465",
+ "radius": 13503,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.056694827,
+ 34.283780936299998,
+ 0.0
+ ],
+ [
+ 119.128375774,
+ 34.254535199199999,
+ 0.0
+ ],
+ [
+ 119.16043981599999,
+ 34.336832796899998,
+ 0.0
+ ],
+ [
+ 119.182259086,
+ 34.335594995100003,
+ 0.0
+ ],
+ [
+ 119.219898194,
+ 34.346428438,
+ 0.0
+ ],
+ [
+ 119.23490851299999,
+ 34.357470713700003,
+ 0.0
+ ],
+ [
+ 119.260257756,
+ 34.3952128269,
+ 0.0
+ ],
+ [
+ 119.268354864,
+ 34.428912416899998,
+ 0.0
+ ],
+ [
+ 119.25505672,
+ 34.459944075599999,
+ 0.0
+ ],
+ [
+ 119.241593186,
+ 34.472284578599997,
+ 0.0
+ ],
+ [
+ 119.116259307,
+ 34.354839832,
+ 0.0
+ ],
+ [
+ 119.056694827,
+ 34.283780936299998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001748,
+ "name": "Lianyungang Huaguoshan Airport",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "34.413505118767",
+ "lng": "119.179056941816",
+ "radius": 23691,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.172906297,
+ 34.200501629900003,
+ 120.0
+ ],
+ [
+ 118.97781508,
+ 34.280127566300003,
+ 120.0
+ ],
+ [
+ 119.184712615,
+ 34.626515274699997,
+ 120.0
+ ],
+ [
+ 119.380613503,
+ 34.546889339300002,
+ 120.0
+ ],
+ [
+ 119.172906297,
+ 34.200501629900003,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001749,
+ "name": "Lianyungang Huaguoshan Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "34.41365001",
+ "lng": "119.17902902",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.17902902,
+ 34.864368527796294,
+ 500.0
+ ],
+ [
+ 119.27397366596702,
+ 34.857484564341938,
+ 500.0
+ ],
+ [
+ 119.365987482471326,
+ 34.837045172629097,
+ 500.0
+ ],
+ [
+ 119.452234382719368,
+ 34.803680976614878,
+ 500.0
+ ],
+ [
+ 119.530064160538416,
+ 34.758420372143675,
+ 500.0
+ ],
+ [
+ 119.597096627023419,
+ 34.702656464296908,
+ 500.0
+ ],
+ [
+ 119.651295744173055,
+ 34.638102532551045,
+ 500.0
+ ],
+ [
+ 119.69103129609833,
+ 34.566737656265801,
+ 500.0
+ ],
+ [
+ 119.715126276859294,
+ 34.490744441575977,
+ 500.0
+ ],
+ [
+ 119.722888853017338,
+ 34.412441002965444,
+ 500.0
+ ],
+ [
+ 119.714128425967715,
+ 34.334209467348892,
+ 500.0
+ ],
+ [
+ 119.689155930473106,
+ 34.258423291076816,
+ 500.0
+ ],
+ [
+ 119.648769030883145,
+ 34.187375621803753,
+ 500.0
+ ],
+ [
+ 119.594223298859518,
+ 34.123210811571084,
+ 500.0
+ ],
+ [
+ 119.527190772963905,
+ 34.067861009697225,
+ 500.0
+ ],
+ [
+ 119.44970751899649,
+ 34.02298954836742,
+ 500.0
+ ],
+ [
+ 119.364111945780039,
+ 33.989942592501713,
+ 500.0
+ ],
+ [
+ 119.272975703420002,
+ 33.969710268346226,
+ 500.0
+ ],
+ [
+ 119.17902902,
+ 33.962898219393992,
+ 500.0
+ ],
+ [
+ 119.085082336580001,
+ 33.969710268346226,
+ 500.0
+ ],
+ [
+ 118.993946094219964,
+ 33.989942592501713,
+ 500.0
+ ],
+ [
+ 118.908350521003513,
+ 34.02298954836742,
+ 500.0
+ ],
+ [
+ 118.830867267036098,
+ 34.067861009697225,
+ 500.0
+ ],
+ [
+ 118.763834741140485,
+ 34.123210811571084,
+ 500.0
+ ],
+ [
+ 118.709289009116858,
+ 34.187375621803753,
+ 500.0
+ ],
+ [
+ 118.668902109526897,
+ 34.258423291076816,
+ 500.0
+ ],
+ [
+ 118.643929614032288,
+ 34.334209467348892,
+ 500.0
+ ],
+ [
+ 118.635169186982665,
+ 34.412441002965444,
+ 500.0
+ ],
+ [
+ 118.642931763140709,
+ 34.490744441575977,
+ 500.0
+ ],
+ [
+ 118.667026743901673,
+ 34.566737656265801,
+ 500.0
+ ],
+ [
+ 118.706762295826948,
+ 34.638102532551045,
+ 500.0
+ ],
+ [
+ 118.760961412976584,
+ 34.702656464296908,
+ 500.0
+ ],
+ [
+ 118.827993879461587,
+ 34.758420372143675,
+ 500.0
+ ],
+ [
+ 118.905823657280635,
+ 34.803680976614878,
+ 500.0
+ ],
+ [
+ 118.992070557528677,
+ 34.837045172629097,
+ 500.0
+ ],
+ [
+ 119.084084374032983,
+ 34.857484564341938,
+ 500.0
+ ],
+ [
+ 119.17902902,
+ 34.864368527796294,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283437,
+ "name": "Leh Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "34.1356821384483",
+ "lng": "77.5466247696571",
+ "radius": 5370,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 77.601216034610445,
+ 34.128108662762045,
+ 0.0
+ ],
+ [
+ 77.600423262099994,
+ 34.120507744599998,
+ 0.0
+ ],
+ [
+ 77.5933330087,
+ 34.106749363200002,
+ 0.0
+ ],
+ [
+ 77.580091587699997,
+ 34.096562956,
+ 0.0
+ ],
+ [
+ 77.561774939100005,
+ 34.091114810199997,
+ 0.0
+ ],
+ [
+ 77.533499889200002,
+ 34.092969145,
+ 0.0
+ ],
+ [
+ 77.516295898899997,
+ 34.097527960500003,
+ 0.0
+ ],
+ [
+ 77.499100266,
+ 34.108431068800002,
+ 0.0
+ ],
+ [
+ 77.494080492099997,
+ 34.11469867,
+ 0.0
+ ],
+ [
+ 77.489236105499998,
+ 34.129109398399997,
+ 0.0
+ ],
+ [
+ 77.489624047299998,
+ 34.1366229156,
+ 0.0
+ ],
+ [
+ 77.495938535500002,
+ 34.1506386402,
+ 0.0
+ ],
+ [
+ 77.501589844099996,
+ 34.156528029900002,
+ 0.0
+ ],
+ [
+ 77.516650666100006,
+ 34.164791119900002,
+ 0.0
+ ],
+ [
+ 77.553191064100005,
+ 34.175889855400001,
+ 0.0
+ ],
+ [
+ 77.562263590699999,
+ 34.1763572905,
+ 0.0
+ ],
+ [
+ 77.5797723787,
+ 34.172626198800003,
+ 0.0
+ ],
+ [
+ 77.598952065,
+ 34.1570559492,
+ 0.0
+ ],
+ [
+ 77.603794269600002,
+ 34.142644349699999,
+ 0.0
+ ],
+ [
+ 77.601216034610445,
+ 34.128108662762045,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009774,
+ "name": "Leh Airport",
+ "country": "IN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "34.135997",
+ "lng": "77.546988",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 77.546988,
+ 34.586736037024274,
+ 500.0
+ ],
+ [
+ 77.641615834309107,
+ 34.579852140357687,
+ 500.0
+ ],
+ [
+ 77.733323093359601,
+ 34.559412912192272,
+ 500.0
+ ],
+ [
+ 77.819283554810269,
+ 34.526048871515577,
+ 500.0
+ ],
+ [
+ 77.896856119382221,
+ 34.480788256745484,
+ 500.0
+ ],
+ [
+ 77.963668621513136,
+ 34.425023986885378,
+ 500.0
+ ],
+ [
+ 78.01769169482229,
+ 34.36046915541236,
+ 500.0
+ ],
+ [
+ 78.057300243851998,
+ 34.289102685601243,
+ 500.0
+ ],
+ [
+ 78.081320706302549,
+ 34.213107084421225,
+ 500.0
+ ],
+ [
+ 78.089062963386411,
+ 34.134800444744108,
+ 500.0
+ ],
+ [
+ 78.080336417996349,
+ 34.056564960990542,
+ 500.0
+ ],
+ [
+ 78.055450368002795,
+ 33.980774247086266,
+ 500.0
+ ],
+ [
+ 78.015199324750341,
+ 33.909721688435731,
+ 500.0
+ ],
+ [
+ 77.960834348320944,
+ 33.84555193533226,
+ 500.0
+ ],
+ [
+ 77.894021788168473,
+ 33.790197468599835,
+ 500.0
+ ],
+ [
+ 77.816791037822597,
+ 33.745321953410937,
+ 500.0
+ ],
+ [
+ 77.731473050443981,
+ 33.712271856392931,
+ 500.0
+ ],
+ [
+ 77.64063143695806,
+ 33.692037544081572,
+ 500.0
+ ],
+ [
+ 77.546988,
+ 33.685224814625016,
+ 500.0
+ ],
+ [
+ 77.453344563041938,
+ 33.692037544081572,
+ 500.0
+ ],
+ [
+ 77.362502949556017,
+ 33.712271856392931,
+ 500.0
+ ],
+ [
+ 77.277184962177401,
+ 33.745321953410937,
+ 500.0
+ ],
+ [
+ 77.199954211831525,
+ 33.790197468599835,
+ 500.0
+ ],
+ [
+ 77.133141651679054,
+ 33.84555193533226,
+ 500.0
+ ],
+ [
+ 77.078776675249657,
+ 33.909721688435731,
+ 500.0
+ ],
+ [
+ 77.038525631997203,
+ 33.980774247086266,
+ 500.0
+ ],
+ [
+ 77.013639582003648,
+ 34.056564960990542,
+ 500.0
+ ],
+ [
+ 77.004913036613587,
+ 34.134800444744108,
+ 500.0
+ ],
+ [
+ 77.012655293697449,
+ 34.213107084421225,
+ 500.0
+ ],
+ [
+ 77.036675756148,
+ 34.289102685601243,
+ 500.0
+ ],
+ [
+ 77.076284305177708,
+ 34.36046915541236,
+ 500.0
+ ],
+ [
+ 77.130307378486862,
+ 34.425023986885378,
+ 500.0
+ ],
+ [
+ 77.197119880617777,
+ 34.480788256745484,
+ 500.0
+ ],
+ [
+ 77.274692445189729,
+ 34.526048871515577,
+ 500.0
+ ],
+ [
+ 77.360652906640397,
+ 34.559412912192272,
+ 500.0
+ ],
+ [
+ 77.452360165690891,
+ 34.579852140357687,
+ 500.0
+ ],
+ [
+ 77.546988,
+ 34.586736037024274,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283436,
+ "name": "Leh Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "34.1358607860733",
+ "lng": "77.5465184302817",
+ "radius": 4416,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 77.5252558408,
+ 34.117598551,
+ 0.0
+ ],
+ [
+ 77.534410066216381,
+ 34.122134381542679,
+ 0.0
+ ],
+ [
+ 77.508945548,
+ 34.115180947100001,
+ 0.0
+ ],
+ [
+ 77.508024115864032,
+ 34.117493423249705,
+ 0.0
+ ],
+ [
+ 77.504689196900003,
+ 34.116403584399997,
+ 0.0
+ ],
+ [
+ 77.499903553600006,
+ 34.12644193,
+ 0.0
+ ],
+ [
+ 77.588340157700003,
+ 34.155343211400002,
+ 0.0
+ ],
+ [
+ 77.593130740800007,
+ 34.145305945,
+ 0.0
+ ],
+ [
+ 77.584809028155462,
+ 34.14258644091791,
+ 0.0
+ ],
+ [
+ 77.589099147699997,
+ 34.136654327899997,
+ 0.0
+ ],
+ [
+ 77.531950182100005,
+ 34.108338677,
+ 0.0
+ ],
+ [
+ 77.5252558408,
+ 34.117598551,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283436,
+ "name": "Leh Airport",
+ "country": "IN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "34.1157713620118",
+ "lng": "77.4850042022466",
+ "radius": 2205,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 77.504689196900003,
+ 34.116403584399997,
+ 60.0
+ ],
+ [
+ 77.508024115864032,
+ 34.117493423249705,
+ 60.0
+ ],
+ [
+ 77.508945548,
+ 34.115180947100001,
+ 60.0
+ ],
+ [
+ 77.473645766,
+ 34.100438690399997,
+ 60.0
+ ],
+ [
+ 77.473278401678741,
+ 34.101359633049952,
+ 60.0
+ ],
+ [
+ 77.470466138299997,
+ 34.100012721799999,
+ 60.0
+ ],
+ [
+ 77.461381596600006,
+ 34.119051244399998,
+ 60.0
+ ],
+ [
+ 77.499903553600006,
+ 34.12644193,
+ 60.0
+ ],
+ [
+ 77.504689196900003,
+ 34.116403584399997,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283436,
+ "name": "Leh Airport",
+ "country": "IN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "34.1529333091902",
+ "lng": "77.6032926401147",
+ "radius": 2742,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 77.624133506755342,
+ 34.151249338076489,
+ 60.0
+ ],
+ [
+ 77.6256690023,
+ 34.149124982,
+ 60.0
+ ],
+ [
+ 77.609003446500651,
+ 34.143441875407667,
+ 60.0
+ ],
+ [
+ 77.611172594600006,
+ 34.137993405499998,
+ 60.0
+ ],
+ [
+ 77.584006990942825,
+ 34.134131312276693,
+ 60.0
+ ],
+ [
+ 77.589099147699997,
+ 34.136654327899997,
+ 60.0
+ ],
+ [
+ 77.584809028155462,
+ 34.14258644091791,
+ 60.0
+ ],
+ [
+ 77.593130740800007,
+ 34.145305945,
+ 60.0
+ ],
+ [
+ 77.590013965391137,
+ 34.1518362367066,
+ 60.0
+ ],
+ [
+ 77.588340157700003,
+ 34.155343211400002,
+ 60.0
+ ],
+ [
+ 77.622586877299995,
+ 34.171732288900003,
+ 60.0
+ ],
+ [
+ 77.631665604099993,
+ 34.152693280699999,
+ 60.0
+ ],
+ [
+ 77.624133506755342,
+ 34.151249338076489,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283436,
+ "name": "Leh Airport",
+ "country": "IN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "34.1040536559088",
+ "lng": "77.5106178687235",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 77.488704838399997,
+ 34.105117423,
+ 60.0
+ ],
+ [
+ 77.5252558408,
+ 34.117598551,
+ 60.0
+ ],
+ [
+ 77.531950182100005,
+ 34.108338677,
+ 60.0
+ ],
+ [
+ 77.501407817300006,
+ 34.087555798499999,
+ 60.0
+ ],
+ [
+ 77.488704838399997,
+ 34.105117423,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283436,
+ "name": "Leh Airport",
+ "country": "IN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "34.1724724517071",
+ "lng": "77.6585670653172",
+ "radius": 5806,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 77.615181303854953,
+ 34.168188284728494,
+ 150.0
+ ],
+ [
+ 77.684363205699995,
+ 34.215136668299998,
+ 150.0
+ ],
+ [
+ 77.691817849386865,
+ 34.204809907582984,
+ 150.0
+ ],
+ [
+ 77.702547619100002,
+ 34.209936445899999,
+ 150.0
+ ],
+ [
+ 77.721606467699999,
+ 34.169883555,
+ 150.0
+ ],
+ [
+ 77.69649874103051,
+ 34.165084749526912,
+ 150.0
+ ],
+ [
+ 77.702141129500006,
+ 34.150875533499999,
+ 150.0
+ ],
+ [
+ 77.611172594600006,
+ 34.137993405499998,
+ 150.0
+ ],
+ [
+ 77.609003446500651,
+ 34.143441875407667,
+ 150.0
+ ],
+ [
+ 77.6256690023,
+ 34.149124982,
+ 150.0
+ ],
+ [
+ 77.624133506755342,
+ 34.151249338076489,
+ 150.0
+ ],
+ [
+ 77.631665604099993,
+ 34.152693280699999,
+ 150.0
+ ],
+ [
+ 77.622586877299995,
+ 34.171732288900003,
+ 150.0
+ ],
+ [
+ 77.615181303854953,
+ 34.168188284728494,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283436,
+ "name": "Leh Airport",
+ "country": "IN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "34.0930742483305",
+ "lng": "77.4362157595557",
+ "radius": 6034,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 77.467433510537262,
+ 34.097839796175819,
+ 150.0
+ ],
+ [
+ 77.488704838399997,
+ 34.105117423,
+ 150.0
+ ],
+ [
+ 77.501407817300006,
+ 34.087555798499999,
+ 150.0
+ ],
+ [
+ 77.430200584199994,
+ 34.039033057700003,
+ 150.0
+ ],
+ [
+ 77.407805921544409,
+ 34.069953768180874,
+ 150.0
+ ],
+ [
+ 77.390663885500004,
+ 34.061730501600003,
+ 150.0
+ ],
+ [
+ 77.371523248499997,
+ 34.101759557500003,
+ 150.0
+ ],
+ [
+ 77.376633416247756,
+ 34.102742921011235,
+ 150.0
+ ],
+ [
+ 77.374982644699998,
+ 34.1068706366,
+ 150.0
+ ],
+ [
+ 77.465065202485889,
+ 34.119757967918147,
+ 150.0
+ ],
+ [
+ 77.461381596600006,
+ 34.119051244399998,
+ 150.0
+ ],
+ [
+ 77.470466138299997,
+ 34.100012721799999,
+ 150.0
+ ],
+ [
+ 77.473278401678741,
+ 34.101359633049952,
+ 150.0
+ ],
+ [
+ 77.473645766,
+ 34.100438690399997,
+ 150.0
+ ],
+ [
+ 77.467433510537262,
+ 34.097839796175819,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001255,
+ "name": "陇南成县机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "33.78946584",
+ "lng": "105.78641005",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.78641005,
+ 34.240230378289958,
+ 500.0
+ ],
+ [
+ 105.880648531948907,
+ 34.233346563106771,
+ 500.0
+ ],
+ [
+ 105.97197904100021,
+ 34.212907533836898,
+ 500.0
+ ],
+ [
+ 106.057587478170774,
+ 34.179543679584619,
+ 500.0
+ ],
+ [
+ 106.134843936496395,
+ 34.134283043984638,
+ 500.0
+ ],
+ [
+ 106.201386111023481,
+ 34.078518315825228,
+ 500.0
+ ],
+ [
+ 106.255192834663092,
+ 34.013962358503164,
+ 500.0
+ ],
+ [
+ 106.294645304755178,
+ 33.942593902287733,
+ 500.0
+ ],
+ [
+ 106.318574190914092,
+ 33.866595331657031,
+ 500.0
+ ],
+ [
+ 106.326291481226178,
+ 33.788284713062232,
+ 500.0
+ ],
+ [
+ 106.317606579903028,
+ 33.71004432490119,
+ 500.0
+ ],
+ [
+ 106.292826772517515,
+ 33.634247976657612,
+ 500.0
+ ],
+ [
+ 106.252742694858426,
+ 33.563189348621492,
+ 500.0
+ ],
+ [
+ 106.19859986190086,
+ 33.49901346092777,
+ 500.0
+ ],
+ [
+ 106.132057631035366,
+ 33.443653205434799,
+ 500.0
+ ],
+ [
+ 106.055137195712192,
+ 33.398772660167026,
+ 500.0
+ ],
+ [
+ 105.970160346542528,
+ 33.365718665814185,
+ 500.0
+ ],
+ [
+ 105.879680815056247,
+ 33.345481886825681,
+ 500.0
+ ],
+ [
+ 105.78641005,
+ 33.338668313092541,
+ 500.0
+ ],
+ [
+ 105.693139284943754,
+ 33.345481886825681,
+ 500.0
+ ],
+ [
+ 105.602659753457473,
+ 33.365718665814185,
+ 500.0
+ ],
+ [
+ 105.51768290428781,
+ 33.398772660167026,
+ 500.0
+ ],
+ [
+ 105.440762468964635,
+ 33.443653205434799,
+ 500.0
+ ],
+ [
+ 105.374220238099142,
+ 33.49901346092777,
+ 500.0
+ ],
+ [
+ 105.320077405141575,
+ 33.563189348621492,
+ 500.0
+ ],
+ [
+ 105.279993327482487,
+ 33.634247976657612,
+ 500.0
+ ],
+ [
+ 105.255213520096973,
+ 33.71004432490119,
+ 500.0
+ ],
+ [
+ 105.246528618773823,
+ 33.788284713062232,
+ 500.0
+ ],
+ [
+ 105.25424590908591,
+ 33.866595331657031,
+ 500.0
+ ],
+ [
+ 105.278174795244823,
+ 33.942593902287733,
+ 500.0
+ ],
+ [
+ 105.31762726533691,
+ 34.013962358503164,
+ 500.0
+ ],
+ [
+ 105.37143398897652,
+ 34.078518315825228,
+ 500.0
+ ],
+ [
+ 105.437976163503606,
+ 34.134283043984638,
+ 500.0
+ ],
+ [
+ 105.515232621829227,
+ 34.179543679584619,
+ 500.0
+ ],
+ [
+ 105.600841058999791,
+ 34.212907533836898,
+ 500.0
+ ],
+ [
+ 105.692171568051094,
+ 34.233346563106771,
+ 500.0
+ ],
+ [
+ 105.78641005,
+ 34.240230378289958,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001254,
+ "name": "陇南成县机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "33.7848749214585",
+ "lng": "105.736180866338",
+ "radius": 13469,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.69651183,
+ 33.802018509600003,
+ 0.0
+ ],
+ [
+ 105.592622467,
+ 33.805865586400003,
+ 0.0
+ ],
+ [
+ 105.60076413199999,
+ 33.740159289499999,
+ 0.0
+ ],
+ [
+ 105.701525939,
+ 33.761567838600001,
+ 0.0
+ ],
+ [
+ 105.711847164,
+ 33.745608092600001,
+ 0.0
+ ],
+ [
+ 105.742797661,
+ 33.725096004400001,
+ 0.0
+ ],
+ [
+ 105.781926514,
+ 33.720190350400003,
+ 0.0
+ ],
+ [
+ 105.834106069,
+ 33.727041589300001,
+ 0.0
+ ],
+ [
+ 105.865875933,
+ 33.746668849300001,
+ 0.0
+ ],
+ [
+ 105.87612885599999,
+ 33.760910774899997,
+ 0.0
+ ],
+ [
+ 105.881601442,
+ 33.776873404299998,
+ 0.0
+ ],
+ [
+ 105.69651183,
+ 33.802018509600003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001254,
+ "name": "陇南成县机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "33.7938658978911",
+ "lng": "105.84196205349",
+ "radius": 13470,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.98553189499999,
+ 33.7729628895,
+ 0.0
+ ],
+ [
+ 105.97743482,
+ 33.8386708739,
+ 0.0
+ ],
+ [
+ 105.876604394,
+ 33.817416598599998,
+ 0.0
+ ],
+ [
+ 105.866316935,
+ 33.833358468299998,
+ 0.0
+ ],
+ [
+ 105.835354585,
+ 33.853898989,
+ 0.0
+ ],
+ [
+ 105.79616708899999,
+ 33.8588184603,
+ 0.0
+ ],
+ [
+ 105.743917028,
+ 33.8519369017,
+ 0.0
+ ],
+ [
+ 105.71215643799999,
+ 33.832255702700003,
+ 0.0
+ ],
+ [
+ 105.701937017,
+ 33.817992927299997,
+ 0.0
+ ],
+ [
+ 105.69651183,
+ 33.802018509600003,
+ 0.0
+ ],
+ [
+ 105.881601442,
+ 33.776873404299998,
+ 0.0
+ ],
+ [
+ 105.98553189499999,
+ 33.7729628895,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001254,
+ "name": "陇南成县机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "33.7891050718138",
+ "lng": "105.789107957165",
+ "radius": 23659,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.008888087,
+ 33.898431463800001,
+ 120.0
+ ],
+ [
+ 106.030944016,
+ 33.7195031973,
+ 120.0
+ ],
+ [
+ 105.569302109,
+ 33.6802041686,
+ 120.0
+ ],
+ [
+ 105.547256301,
+ 33.859132435200003,
+ 120.0
+ ],
+ [
+ 106.008888087,
+ 33.898431463800001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7840,
+ "name": "Xuzhou Guanyin Airport",
+ "country": "CN",
+ "city": "Xuzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "34.0593168345328",
+ "lng": "117.505313081746",
+ "radius": 13660,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.46067472,
+ 34.0725819456,
+ 0.0
+ ],
+ [
+ 117.358979515,
+ 34.079266492,
+ 0.0
+ ],
+ [
+ 117.367564279,
+ 34.013914254200003,
+ 0.0
+ ],
+ [
+ 117.467572429,
+ 34.03391023,
+ 0.0
+ ],
+ [
+ 117.486882782,
+ 34.009741679,
+ 0.0
+ ],
+ [
+ 117.50311801399999,
+ 34.000027715,
+ 0.0
+ ],
+ [
+ 117.54174549299999,
+ 33.9924364512,
+ 0.0
+ ],
+ [
+ 117.617787759,
+ 34.006541059600004,
+ 0.0
+ ],
+ [
+ 117.645343981,
+ 34.030238247,
+ 0.0
+ ],
+ [
+ 117.652670309,
+ 34.045686336300001,
+ 0.0
+ ],
+ [
+ 117.46067472,
+ 34.0725819456,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7840,
+ "name": "Xuzhou Guanyin Airport",
+ "country": "CN",
+ "city": "Xuzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "34.0583850722131",
+ "lng": "117.608107342397",
+ "radius": 13671,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.754319464,
+ 34.037375506099998,
+ 0.0
+ ],
+ [
+ 117.745761396,
+ 34.104423166399997,
+ 0.0
+ ],
+ [
+ 117.64579103299999,
+ 34.087741851600001,
+ 0.0
+ ],
+ [
+ 117.624574804,
+ 34.110328847300003,
+ 0.0
+ ],
+ [
+ 117.607500781,
+ 34.119028201799999,
+ 0.0
+ ],
+ [
+ 117.588286451,
+ 34.123769678199999,
+ 0.0
+ ],
+ [
+ 117.529919513,
+ 34.1242301833,
+ 0.0
+ ],
+ [
+ 117.49277914699999,
+ 34.113340941099999,
+ 0.0
+ ],
+ [
+ 117.477853408,
+ 34.1022605701,
+ 0.0
+ ],
+ [
+ 117.466903597,
+ 34.088358050399997,
+ 0.0
+ ],
+ [
+ 117.46067472,
+ 34.0725819456,
+ 0.0
+ ],
+ [
+ 117.652670309,
+ 34.045686336300001,
+ 0.0
+ ],
+ [
+ 117.754319464,
+ 34.037375506099998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7840,
+ "name": "Xuzhou Guanyin Airport",
+ "country": "CN",
+ "city": "Xuzhou",
+ "height": 120,
+ "level": 2,
+ "lat": "34.059171740696",
+ "lng": "117.555041840928",
+ "radius": 23958,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.782141998,
+ 34.164381563900001,
+ 120.0
+ ],
+ [
+ 117.799142981,
+ 33.985069348800003,
+ 120.0
+ ],
+ [
+ 117.327924276,
+ 33.954405443600002,
+ 120.0
+ ],
+ [
+ 117.310929443,
+ 34.1337176587,
+ 120.0
+ ],
+ [
+ 117.782141998,
+ 34.164381563900001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001471,
+ "name": "Xuzhou Guanyin Airport",
+ "country": "CN",
+ "city": "Xuzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "34.059269",
+ "lng": "117.55631",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.55631,
+ 34.510013693914011,
+ 500.0
+ ],
+ [
+ 117.650851049079009,
+ 34.503129815464362,
+ 500.0
+ ],
+ [
+ 117.742474331892979,
+ 34.48269063182579,
+ 500.0
+ ],
+ [
+ 117.828356328327757,
+ 34.449326633120712,
+ 500.0
+ ],
+ [
+ 117.90585843380893,
+ 34.404066014477827,
+ 500.0
+ ],
+ [
+ 117.972610680652778,
+ 34.348301643735176,
+ 500.0
+ ],
+ [
+ 118.026585530066015,
+ 34.283746563231006,
+ 500.0
+ ],
+ [
+ 118.066159289241483,
+ 34.212379653335176,
+ 500.0
+ ],
+ [
+ 118.09015933918289,
+ 34.136383393774992,
+ 500.0
+ ],
+ [
+ 118.097896030758889,
+ 34.058075871520664,
+ 500.0
+ ],
+ [
+ 118.089178767211465,
+ 33.979839299614,
+ 500.0
+ ],
+ [
+ 118.064316397940175,
+ 33.904047335386814,
+ 500.0
+ ],
+ [
+ 118.024102570504212,
+ 33.832993429712474,
+ 500.0
+ ],
+ [
+ 117.969787109052561,
+ 33.768822315002438,
+ 500.0
+ ],
+ [
+ 117.903034804564584,
+ 33.713466563349016,
+ 500.0
+ ],
+ [
+ 117.825873222805953,
+ 33.668589931598312,
+ 500.0
+ ],
+ [
+ 117.74063127461207,
+ 33.635538969438805,
+ 500.0
+ ],
+ [
+ 117.649870368772099,
+ 33.615304109558558,
+ 500.0
+ ],
+ [
+ 117.55631,
+ 33.608491192682607,
+ 500.0
+ ],
+ [
+ 117.462749631227894,
+ 33.615304109558558,
+ 500.0
+ ],
+ [
+ 117.371988725387922,
+ 33.635538969438805,
+ 500.0
+ ],
+ [
+ 117.28674677719404,
+ 33.668589931598312,
+ 500.0
+ ],
+ [
+ 117.209585195435409,
+ 33.713466563349016,
+ 500.0
+ ],
+ [
+ 117.142832890947432,
+ 33.768822315002438,
+ 500.0
+ ],
+ [
+ 117.088517429495781,
+ 33.832993429712474,
+ 500.0
+ ],
+ [
+ 117.048303602059818,
+ 33.904047335386814,
+ 500.0
+ ],
+ [
+ 117.023441232788528,
+ 33.979839299614,
+ 500.0
+ ],
+ [
+ 117.014723969241103,
+ 34.058075871520664,
+ 500.0
+ ],
+ [
+ 117.022460660817103,
+ 34.136383393774992,
+ 500.0
+ ],
+ [
+ 117.04646071075851,
+ 34.212379653335176,
+ 500.0
+ ],
+ [
+ 117.086034469933978,
+ 34.283746563231006,
+ 500.0
+ ],
+ [
+ 117.140009319347215,
+ 34.348301643735176,
+ 500.0
+ ],
+ [
+ 117.206761566191062,
+ 34.404066014477827,
+ 500.0
+ ],
+ [
+ 117.284263671672235,
+ 34.449326633120712,
+ 500.0
+ ],
+ [
+ 117.370145668107014,
+ 34.48269063182579,
+ 500.0
+ ],
+ [
+ 117.461768950920984,
+ 34.503129815464362,
+ 500.0
+ ],
+ [
+ 117.55631,
+ 34.510013693914011,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001340,
+ "name": "Lianshui Airport",
+ "country": "CN",
+ "city": "Huai'an",
+ "height": 500,
+ "level": 2,
+ "lat": "33.790812",
+ "lng": "119.125253",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.125253,
+ 34.241576439462726,
+ 500.0
+ ],
+ [
+ 119.219492981584551,
+ 34.234692623966865,
+ 500.0
+ ],
+ [
+ 119.310824941731383,
+ 34.214253593935105,
+ 500.0
+ ],
+ [
+ 119.396434734762209,
+ 34.180889738973882,
+ 500.0
+ ],
+ [
+ 119.473692410603832,
+ 34.135629103471011,
+ 500.0
+ ],
+ [
+ 119.54023562632301,
+ 34.079864377104791,
+ 500.0
+ ],
+ [
+ 119.594043183250207,
+ 34.015308424161439,
+ 500.0
+ ],
+ [
+ 119.633496254488136,
+ 33.943939975656228,
+ 500.0
+ ],
+ [
+ 119.657425493352122,
+ 33.867941416540411,
+ 500.0
+ ],
+ [
+ 119.66514287981461,
+ 33.789630813366678,
+ 500.0
+ ],
+ [
+ 119.656457818083439,
+ 33.711390444207261,
+ 500.0
+ ],
+ [
+ 119.631677601483574,
+ 33.635594117788592,
+ 500.0
+ ],
+ [
+ 119.591592880732392,
+ 33.564535513259074,
+ 500.0
+ ],
+ [
+ 119.537449192163805,
+ 33.50035964932205,
+ 500.0
+ ],
+ [
+ 119.470905920099767,
+ 33.44499941624494,
+ 500.0
+ ],
+ [
+ 119.39398428957422,
+ 33.400118890454202,
+ 500.0
+ ],
+ [
+ 119.309006126488271,
+ 33.367064911191804,
+ 500.0
+ ],
+ [
+ 119.218525200422192,
+ 33.346828141754038,
+ 500.0
+ ],
+ [
+ 119.125253,
+ 33.340014571289835,
+ 500.0
+ ],
+ [
+ 119.031980799577809,
+ 33.346828141754038,
+ 500.0
+ ],
+ [
+ 118.941499873511731,
+ 33.367064911191804,
+ 500.0
+ ],
+ [
+ 118.856521710425781,
+ 33.400118890454202,
+ 500.0
+ ],
+ [
+ 118.779600079900234,
+ 33.44499941624494,
+ 500.0
+ ],
+ [
+ 118.713056807836196,
+ 33.50035964932205,
+ 500.0
+ ],
+ [
+ 118.658913119267609,
+ 33.564535513259074,
+ 500.0
+ ],
+ [
+ 118.618828398516428,
+ 33.635594117788592,
+ 500.0
+ ],
+ [
+ 118.594048181916563,
+ 33.711390444207261,
+ 500.0
+ ],
+ [
+ 118.585363120185391,
+ 33.789630813366678,
+ 500.0
+ ],
+ [
+ 118.59308050664788,
+ 33.867941416540411,
+ 500.0
+ ],
+ [
+ 118.617009745511865,
+ 33.943939975656228,
+ 500.0
+ ],
+ [
+ 118.656462816749794,
+ 34.015308424161439,
+ 500.0
+ ],
+ [
+ 118.710270373676991,
+ 34.079864377104791,
+ 500.0
+ ],
+ [
+ 118.77681358939617,
+ 34.135629103471011,
+ 500.0
+ ],
+ [
+ 118.854071265237792,
+ 34.180889738973882,
+ 500.0
+ ],
+ [
+ 118.939681058268619,
+ 34.214253593935105,
+ 500.0
+ ],
+ [
+ 119.03101301841545,
+ 34.234692623966865,
+ 500.0
+ ],
+ [
+ 119.125253,
+ 34.241576439462726,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1432,
+ "name": "Lianshui Airport",
+ "country": "CN",
+ "city": "Huai'an",
+ "height": 0,
+ "level": 2,
+ "lat": "33.7509084251837",
+ "lng": "119.099094699138",
+ "radius": 12959,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.05517953899999,
+ 33.743303223700003,
+ 0.0
+ ],
+ [
+ 118.983488571,
+ 33.685059180400003,
+ 0.0
+ ],
+ [
+ 119.048798618,
+ 33.642135349699998,
+ 0.0
+ ],
+ [
+ 119.09378175499999,
+ 33.718797464300003,
+ 0.0
+ ],
+ [
+ 119.129692699,
+ 33.716794416,
+ 0.0
+ ],
+ [
+ 119.148748958,
+ 33.721720575100001,
+ 0.0
+ ],
+ [
+ 119.179175652,
+ 33.742766555800003,
+ 0.0
+ ],
+ [
+ 119.19922791499999,
+ 33.766160972800002,
+ 0.0
+ ],
+ [
+ 119.211685703,
+ 33.790637698200001,
+ 0.0
+ ],
+ [
+ 119.212860159,
+ 33.807207219399999,
+ 0.0
+ ],
+ [
+ 119.20883286599999,
+ 33.823464700899997,
+ 0.0
+ ],
+ [
+ 119.05517953899999,
+ 33.743303223700003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1432,
+ "name": "Lianshui Airport",
+ "country": "CN",
+ "city": "Huai'an",
+ "height": 0,
+ "level": 2,
+ "lat": "33.8271203316178",
+ "lng": "119.157559235743",
+ "radius": 13281,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.271516905,
+ 33.900000488700002,
+ 0.0
+ ],
+ [
+ 119.206191457,
+ 33.939529065199999,
+ 0.0
+ ],
+ [
+ 119.15614782,
+ 33.862849707,
+ 0.0
+ ],
+ [
+ 119.12026655699999,
+ 33.864822917700003,
+ 0.0
+ ],
+ [
+ 119.101182789,
+ 33.859885105300002,
+ 0.0
+ ],
+ [
+ 119.07074528299999,
+ 33.838808375299998,
+ 0.0
+ ],
+ [
+ 119.041440321,
+ 33.790607487800003,
+ 0.0
+ ],
+ [
+ 119.04094477,
+ 33.774014359799999,
+ 0.0
+ ],
+ [
+ 119.05517953899999,
+ 33.743303223700003,
+ 0.0
+ ],
+ [
+ 119.20883286599999,
+ 33.823464700899997,
+ 0.0
+ ],
+ [
+ 119.199875572,
+ 33.838301740699997,
+ 0.0
+ ],
+ [
+ 119.271516905,
+ 33.900000488700002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1432,
+ "name": "Lianshui Airport",
+ "country": "CN",
+ "city": "Huai'an",
+ "height": 120,
+ "level": 2,
+ "lat": "33.791556918027",
+ "lng": "119.126502771961",
+ "radius": 23667,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.165816917,
+ 34.001885699699997,
+ 120.0
+ ],
+ [
+ 119.345844822,
+ 33.901634168900003,
+ 120.0
+ ],
+ [
+ 119.086747725,
+ 33.581297993900002,
+ 120.0
+ ],
+ [
+ 118.90739216,
+ 33.681549525599998,
+ 120.0
+ ],
+ [
+ 119.165816917,
+ 34.001885699699997,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001445,
+ "name": "Yushu Batang Airport",
+ "country": "CN",
+ "city": "Yushu",
+ "height": 500,
+ "level": 2,
+ "lat": "32.836405715413",
+ "lng": "97.0364695275015",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.036469527501495,
+ 33.287239740603425,
+ 500.0
+ ],
+ [
+ 97.129670970159424,
+ 33.280356139881,
+ 500.0
+ ],
+ [
+ 97.219998008616116,
+ 33.259917630868948,
+ 500.0
+ ],
+ [
+ 97.304668836553702,
+ 33.226554251633686,
+ 500.0
+ ],
+ [
+ 97.381083359407938,
+ 33.181293519399937,
+ 500.0
+ ],
+ [
+ 97.446905536949814,
+ 33.125527500873375,
+ 500.0
+ ],
+ [
+ 97.500136040977637,
+ 33.060968437908201,
+ 500.0
+ ],
+ [
+ 97.539172828656035,
+ 32.989594539723221,
+ 500.0
+ ],
+ [
+ 97.562857839059063,
+ 32.913587860747789,
+ 500.0
+ ],
+ [
+ 97.570508668564671,
+ 32.835266397586608,
+ 500.0
+ ],
+ [
+ 97.561934720683212,
+ 32.75701265781624,
+ 500.0
+ ],
+ [
+ 97.53743791664175,
+ 32.681200982362583,
+ 500.0
+ ],
+ [
+ 97.497798565329248,
+ 32.610125852059703,
+ 500.0
+ ],
+ [
+ 97.444247408871774,
+ 32.545933290675045,
+ 500.0
+ ],
+ [
+ 97.378425179347602,
+ 32.490557305292221,
+ 500.0
+ ],
+ [
+ 97.302331229281506,
+ 32.445663094012609,
+ 500.0
+ ],
+ [
+ 97.218262946924767,
+ 32.41259851234156,
+ 500.0
+ ],
+ [
+ 97.12874775408882,
+ 32.392355032953311,
+ 500.0
+ ],
+ [
+ 97.036469527501495,
+ 32.385539165930176,
+ 500.0
+ ],
+ [
+ 96.94419130091417,
+ 32.392355032953311,
+ 500.0
+ ],
+ [
+ 96.854676108078223,
+ 32.41259851234156,
+ 500.0
+ ],
+ [
+ 96.770607825721484,
+ 32.445663094012609,
+ 500.0
+ ],
+ [
+ 96.694513875655389,
+ 32.490557305292221,
+ 500.0
+ ],
+ [
+ 96.628691646131216,
+ 32.545933290675045,
+ 500.0
+ ],
+ [
+ 96.575140489673743,
+ 32.610125852059703,
+ 500.0
+ ],
+ [
+ 96.535501138361241,
+ 32.681200982362583,
+ 500.0
+ ],
+ [
+ 96.511004334319779,
+ 32.75701265781624,
+ 500.0
+ ],
+ [
+ 96.50243038643832,
+ 32.835266397586608,
+ 500.0
+ ],
+ [
+ 96.510081215943927,
+ 32.913587860747789,
+ 500.0
+ ],
+ [
+ 96.533766226346955,
+ 32.989594539723221,
+ 500.0
+ ],
+ [
+ 96.572803014025354,
+ 33.060968437908201,
+ 500.0
+ ],
+ [
+ 96.626033518053177,
+ 33.125527500873375,
+ 500.0
+ ],
+ [
+ 96.691855695595052,
+ 33.181293519399937,
+ 500.0
+ ],
+ [
+ 96.768270218449288,
+ 33.226554251633686,
+ 500.0
+ ],
+ [
+ 96.852941046386874,
+ 33.259917630868948,
+ 500.0
+ ],
+ [
+ 96.943268084843567,
+ 33.280356139881,
+ 500.0
+ ],
+ [
+ 97.036469527501495,
+ 33.287239740603425,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9252,
+ "name": "Yushu Batang Airport",
+ "country": "CN",
+ "city": "Yushu",
+ "height": 0,
+ "level": 2,
+ "lat": "32.8485162874488",
+ "lng": "96.987010419184",
+ "radius": 13720,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 96.952736993,
+ 32.876130985899998,
+ 0.0
+ ],
+ [
+ 96.856073873200003,
+ 32.904489838,
+ 0.0
+ ],
+ [
+ 96.840565913600003,
+ 32.839145675200001,
+ 0.0
+ ],
+ [
+ 96.938873160900002,
+ 32.832503444300002,
+ 0.0
+ ],
+ [
+ 96.952461683300001,
+ 32.801719240499999,
+ 0.0
+ ],
+ [
+ 96.96587994,
+ 32.789542435100003,
+ 0.0
+ ],
+ [
+ 97.0014445921,
+ 32.775787286499998,
+ 0.0
+ ],
+ [
+ 97.038093226300006,
+ 32.770790299600002,
+ 0.0
+ ],
+ [
+ 97.076269285199999,
+ 32.770946365199997,
+ 0.0
+ ],
+ [
+ 97.110211376799995,
+ 32.787343161499997,
+ 0.0
+ ],
+ [
+ 97.122267481099996,
+ 32.8004881365,
+ 0.0
+ ],
+ [
+ 96.952736993,
+ 32.876130985899998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9252,
+ "name": "Yushu Batang Airport",
+ "country": "CN",
+ "city": "Yushu",
+ "height": 0,
+ "level": 2,
+ "lat": "32.8266093108327",
+ "lng": "97.0884583177871",
+ "radius": 13822,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.217235102499998,
+ 32.7655018779,
+ 0.0
+ ],
+ [
+ 97.236119827500005,
+ 32.834169906299998,
+ 0.0
+ ],
+ [
+ 97.131120700799997,
+ 32.840835826499998,
+ 0.0
+ ],
+ [
+ 97.119662849199997,
+ 32.8666322439,
+ 0.0
+ ],
+ [
+ 97.106835045099999,
+ 32.879258702900003,
+ 0.0
+ ],
+ [
+ 97.090549759699996,
+ 32.888664585500003,
+ 0.0
+ ],
+ [
+ 97.035231085099994,
+ 32.904211477600001,
+ 0.0
+ ],
+ [
+ 96.999872233100007,
+ 32.904442917600001,
+ 0.0
+ ],
+ [
+ 96.981363385799995,
+ 32.898611453699999,
+ 0.0
+ ],
+ [
+ 96.952736993,
+ 32.876130985899998,
+ 0.0
+ ],
+ [
+ 97.122267481099996,
+ 32.8004881365,
+ 0.0
+ ],
+ [
+ 97.217235102499998,
+ 32.7655018779,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9252,
+ "name": "Yushu Batang Airport",
+ "country": "CN",
+ "city": "Yushu",
+ "height": 120,
+ "level": 2,
+ "lat": "32.8358790054037",
+ "lng": "97.0365453626858",
+ "radius": 23950,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.288210038399995,
+ 32.877129615400001,
+ 120.0
+ ],
+ [
+ 97.237566921300001,
+ 32.702376511899999,
+ 120.0
+ ],
+ [
+ 96.784905718900006,
+ 32.795023642300002,
+ 120.0
+ ],
+ [
+ 96.835601711300001,
+ 32.969776745799997,
+ 120.0
+ ],
+ [
+ 97.288210038399995,
+ 32.877129615400001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2761,
+ "name": "Jiuzhai Huanglong Airport",
+ "country": "CN",
+ "city": "Jiuzhaigou",
+ "height": 0,
+ "level": 2,
+ "lat": "32.895569040139",
+ "lng": "103.694950191903",
+ "radius": 13993,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 103.73124722599999,
+ 32.924791961,
+ 0.0
+ ],
+ [
+ 103.771481484,
+ 33.003793362700002,
+ 0.0
+ ],
+ [
+ 103.68888748099999,
+ 33.021310744099999,
+ 0.0
+ ],
+ [
+ 103.679529763,
+ 32.9357753683,
+ 0.0
+ ],
+ [
+ 103.642040711,
+ 32.926222731400003,
+ 0.0
+ ],
+ [
+ 103.626758635,
+ 32.915689856100002,
+ 0.0
+ ],
+ [
+ 103.615248491,
+ 32.9021944976,
+ 0.0
+ ],
+ [
+ 103.598063518,
+ 32.8525626347,
+ 0.0
+ ],
+ [
+ 103.59794365099999,
+ 32.819700968299998,
+ 0.0
+ ],
+ [
+ 103.60543720299999,
+ 32.804343982100001,
+ 0.0
+ ],
+ [
+ 103.633019754,
+ 32.780985907,
+ 0.0
+ ],
+ [
+ 103.73124722599999,
+ 32.924791961,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2761,
+ "name": "Jiuzhai Huanglong Airport",
+ "country": "CN",
+ "city": "Jiuzhaigou",
+ "height": 0,
+ "level": 2,
+ "lat": "32.8102217792989",
+ "lng": "103.669278829765",
+ "radius": 13992,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 103.592925876,
+ 32.701998313899999,
+ 0.0
+ ],
+ [
+ 103.675270548,
+ 32.684483858599997,
+ 0.0
+ ],
+ [
+ 103.684607844,
+ 32.770027038,
+ 0.0
+ ],
+ [
+ 103.721952748,
+ 32.7795183725,
+ 0.0
+ ],
+ [
+ 103.737240933,
+ 32.790020920700002,
+ 0.0
+ ],
+ [
+ 103.748778486,
+ 32.803490957599998,
+ 0.0
+ ],
+ [
+ 103.766093287,
+ 32.853192853,
+ 0.0
+ ],
+ [
+ 103.76628479599999,
+ 32.886025782499999,
+ 0.0
+ ],
+ [
+ 103.758820877,
+ 32.901395314,
+ 0.0
+ ],
+ [
+ 103.73124722599999,
+ 32.924791961,
+ 0.0
+ ],
+ [
+ 103.633019754,
+ 32.780985907,
+ 0.0
+ ],
+ [
+ 103.592925876,
+ 32.701998313899999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2761,
+ "name": "Jiuzhai Huanglong Airport",
+ "country": "CN",
+ "city": "Jiuzhaigou",
+ "height": 120,
+ "level": 2,
+ "lat": "32.8528779847373",
+ "lng": "103.68218956793",
+ "radius": 24127,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 103.728132918,
+ 32.639361365799999,
+ 120.0
+ ],
+ [
+ 103.520998448,
+ 32.683433679899998,
+ 120.0
+ ],
+ [
+ 103.635749488,
+ 33.066333463100001,
+ 120.0
+ ],
+ [
+ 103.843779793,
+ 33.0222611497,
+ 120.0
+ ],
+ [
+ 103.728132918,
+ 32.639361365799999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001382,
+ "name": "Jiuzhai Huanglong Airport",
+ "country": "CN",
+ "city": "Jiuzhaigou",
+ "height": 500,
+ "level": 2,
+ "lat": "32.852589",
+ "lng": "103.683409",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 103.683409,
+ 33.303421853511544,
+ 500.0
+ ],
+ [
+ 103.776627646625784,
+ 33.296538249254951,
+ 500.0
+ ],
+ [
+ 103.866971332123967,
+ 33.276099731705514,
+ 500.0
+ ],
+ [
+ 103.951657714423121,
+ 33.242736344817395,
+ 500.0
+ ],
+ [
+ 104.028086204360008,
+ 33.197475614644169,
+ 500.0
+ ],
+ [
+ 104.093920325972874,
+ 33.141709618324093,
+ 500.0
+ ],
+ [
+ 104.147160388765244,
+ 33.077150608133145,
+ 500.0
+ ],
+ [
+ 104.186204071883822,
+ 33.005776802023334,
+ 500.0
+ ],
+ [
+ 104.209893127485302,
+ 32.929770259949237,
+ 500.0
+ ],
+ [
+ 104.217545058962187,
+ 32.851448979670458,
+ 500.0
+ ],
+ [
+ 104.20896926990099,
+ 32.773195464895878,
+ 500.0
+ ],
+ [
+ 104.184467770588967,
+ 32.697384047606285,
+ 500.0
+ ],
+ [
+ 104.144821041296524,
+ 32.626309195169668,
+ 500.0
+ ],
+ [
+ 104.091260069272792,
+ 32.56211691447529,
+ 500.0
+ ],
+ [
+ 104.025425895606858,
+ 32.50674119385377,
+ 500.0
+ ],
+ [
+ 103.949318235151409,
+ 32.461847212572557,
+ 500.0
+ ],
+ [
+ 103.86523488094825,
+ 32.428782809073127,
+ 500.0
+ ],
+ [
+ 103.775703691213693,
+ 32.408539442439604,
+ 500.0
+ ],
+ [
+ 103.683409,
+ 32.401723614007331,
+ 500.0
+ ],
+ [
+ 103.591114308786302,
+ 32.408539442439604,
+ 500.0
+ ],
+ [
+ 103.501583119051745,
+ 32.428782809073127,
+ 500.0
+ ],
+ [
+ 103.417499764848586,
+ 32.461847212572557,
+ 500.0
+ ],
+ [
+ 103.341392104393137,
+ 32.50674119385377,
+ 500.0
+ ],
+ [
+ 103.275557930727203,
+ 32.56211691447529,
+ 500.0
+ ],
+ [
+ 103.221996958703471,
+ 32.626309195169668,
+ 500.0
+ ],
+ [
+ 103.182350229411028,
+ 32.697384047606285,
+ 500.0
+ ],
+ [
+ 103.157848730099005,
+ 32.773195464895878,
+ 500.0
+ ],
+ [
+ 103.149272941037808,
+ 32.851448979670458,
+ 500.0
+ ],
+ [
+ 103.156924872514693,
+ 32.929770259949237,
+ 500.0
+ ],
+ [
+ 103.180613928116173,
+ 33.005776802023334,
+ 500.0
+ ],
+ [
+ 103.219657611234751,
+ 33.077150608133145,
+ 500.0
+ ],
+ [
+ 103.272897674027121,
+ 33.141709618324093,
+ 500.0
+ ],
+ [
+ 103.338731795639987,
+ 33.197475614644169,
+ 500.0
+ ],
+ [
+ 103.415160285576874,
+ 33.242736344817395,
+ 500.0
+ ],
+ [
+ 103.499846667876028,
+ 33.276099731705514,
+ 500.0
+ ],
+ [
+ 103.590190353374211,
+ 33.296538249254951,
+ 500.0
+ ],
+ [
+ 103.683409,
+ 33.303421853511544,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001328,
+ "name": "Hanzhong Airport",
+ "country": "CN",
+ "city": "Hanzhong",
+ "height": 500,
+ "level": 2,
+ "lat": "33.12814593839",
+ "lng": "107.191006678845",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.191006678845,
+ 33.578958796988289,
+ 500.0
+ ],
+ [
+ 107.284520388562257,
+ 33.572075132013389,
+ 500.0
+ ],
+ [
+ 107.37514958560935,
+ 33.551636467605512,
+ 500.0
+ ],
+ [
+ 107.460102739478387,
+ 33.518272948350898,
+ 500.0
+ ],
+ [
+ 107.536770778354565,
+ 33.473012251205141,
+ 500.0
+ ],
+ [
+ 107.602809753157786,
+ 33.417246631623982,
+ 500.0
+ ],
+ [
+ 107.656213759703945,
+ 33.352688520024046,
+ 500.0
+ ],
+ [
+ 107.695375708768282,
+ 33.281316283652821,
+ 500.0
+ ],
+ [
+ 107.719134146483896,
+ 33.205312076950939,
+ 500.0
+ ],
+ [
+ 107.726804981143616,
+ 33.126993917498915,
+ 500.0
+ ],
+ [
+ 107.718197617259904,
+ 33.048744243017794,
+ 500.0
+ ],
+ [
+ 107.693615592182169,
+ 32.972937232756784,
+ 500.0
+ ],
+ [
+ 107.653842325157257,
+ 32.901867124120358,
+ 500.0
+ ],
+ [
+ 107.600113007230945,
+ 32.837679635744969,
+ 500.0
+ ],
+ [
+ 107.534073979152936,
+ 32.782308435680882,
+ 500.0
+ ],
+ [
+ 107.457731170035188,
+ 32.737418381530489,
+ 500.0
+ ],
+ [
+ 107.373389315624607,
+ 32.704357020301295,
+ 500.0
+ ],
+ [
+ 107.283583759214409,
+ 32.684115578971479,
+ 500.0
+ ],
+ [
+ 107.191006678845,
+ 32.677300409487287,
+ 500.0
+ ],
+ [
+ 107.09842959847559,
+ 32.684115578971479,
+ 500.0
+ ],
+ [
+ 107.008624042065392,
+ 32.704357020301295,
+ 500.0
+ ],
+ [
+ 106.924282187654811,
+ 32.737418381530489,
+ 500.0
+ ],
+ [
+ 106.847939378537063,
+ 32.782308435680882,
+ 500.0
+ ],
+ [
+ 106.781900350459054,
+ 32.837679635744969,
+ 500.0
+ ],
+ [
+ 106.728171032532742,
+ 32.901867124120358,
+ 500.0
+ ],
+ [
+ 106.68839776550783,
+ 32.972937232756784,
+ 500.0
+ ],
+ [
+ 106.663815740430096,
+ 33.048744243017794,
+ 500.0
+ ],
+ [
+ 106.655208376546383,
+ 33.126993917498915,
+ 500.0
+ ],
+ [
+ 106.662879211206103,
+ 33.205312076950939,
+ 500.0
+ ],
+ [
+ 106.686637648921717,
+ 33.281316283652821,
+ 500.0
+ ],
+ [
+ 106.725799597986054,
+ 33.352688520024046,
+ 500.0
+ ],
+ [
+ 106.779203604532213,
+ 33.417246631623982,
+ 500.0
+ ],
+ [
+ 106.845242579335434,
+ 33.473012251205141,
+ 500.0
+ ],
+ [
+ 106.921910618211612,
+ 33.518272948350898,
+ 500.0
+ ],
+ [
+ 107.006863772080649,
+ 33.551636467605512,
+ 500.0
+ ],
+ [
+ 107.097492969127742,
+ 33.572075132013389,
+ 500.0
+ ],
+ [
+ 107.191006678845,
+ 33.578958796988289,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1629,
+ "name": "Hanzhong Airport",
+ "country": "CN",
+ "city": "Hanzhong",
+ "height": 0,
+ "level": 2,
+ "lat": "33.1154602657069",
+ "lng": "107.156064800431",
+ "radius": 12942,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.11711485799999,
+ 33.129021055199999,
+ 0.0
+ ],
+ [
+ 107.017111488,
+ 33.114066718,
+ 0.0
+ ],
+ [
+ 107.039501582,
+ 33.0521456106,
+ 0.0
+ ],
+ [
+ 107.129551864,
+ 33.092131563700001,
+ 0.0
+ ],
+ [
+ 107.160660213,
+ 33.069668949300002,
+ 0.0
+ ],
+ [
+ 107.179542654,
+ 33.064658959399999,
+ 0.0
+ ],
+ [
+ 107.218671246,
+ 33.067479451700002,
+ 0.0
+ ],
+ [
+ 107.26970782,
+ 33.0912650012,
+ 0.0
+ ],
+ [
+ 107.289951867,
+ 33.1194725338,
+ 0.0
+ ],
+ [
+ 107.292888187,
+ 33.135887608899999,
+ 0.0
+ ],
+ [
+ 107.11711485799999,
+ 33.129021055199999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1629,
+ "name": "Hanzhong Airport",
+ "country": "CN",
+ "city": "Hanzhong",
+ "height": 0,
+ "level": 2,
+ "lat": "33.1456574784104",
+ "lng": "107.25615739883",
+ "radius": 13077,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.396252391,
+ 33.154302964800003,
+ 0.0
+ ],
+ [
+ 107.367066643,
+ 33.217880436400002,
+ 0.0
+ ],
+ [
+ 107.277083784,
+ 33.176209677099997,
+ 0.0
+ ],
+ [
+ 107.24935906,
+ 33.195022477099997,
+ 0.0
+ ],
+ [
+ 107.230487415,
+ 33.200134061900002,
+ 0.0
+ ],
+ [
+ 107.210676926,
+ 33.2009812569,
+ 0.0
+ ],
+ [
+ 107.166311162,
+ 33.192515355399998,
+ 0.0
+ ],
+ [
+ 107.135978208,
+ 33.1750507255,
+ 0.0
+ ],
+ [
+ 107.12490739899999,
+ 33.1612803298,
+ 0.0
+ ],
+ [
+ 107.118474229,
+ 33.145580217300001,
+ 0.0
+ ],
+ [
+ 107.11711485799999,
+ 33.129021055199999,
+ 0.0
+ ],
+ [
+ 107.292888187,
+ 33.135887608899999,
+ 0.0
+ ],
+ [
+ 107.396252391,
+ 33.154302964800003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1629,
+ "name": "Hanzhong Airport",
+ "country": "CN",
+ "city": "Hanzhong",
+ "height": 120,
+ "level": 2,
+ "lat": "33.1334059038262",
+ "lng": "107.205165948477",
+ "radius": 23473,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.383608627,
+ 33.282643440400001,
+ 120.0
+ ],
+ [
+ 107.456080333,
+ 33.1133106614,
+ 120.0
+ ],
+ [
+ 107.026601635,
+ 32.984525057299997,
+ 120.0
+ ],
+ [
+ 106.954236179,
+ 33.1538578364,
+ 120.0
+ ],
+ [
+ 107.383608627,
+ 33.282643440400001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4303,
+ "name": "Nanyang Airport",
+ "country": "CN",
+ "city": "Nanyang",
+ "height": 0,
+ "level": 2,
+ "lat": "32.9469686843858",
+ "lng": "112.583903875588",
+ "radius": 13251,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.541863315,
+ 32.940073737399999,
+ 0.0
+ ],
+ [
+ 112.460184051,
+ 32.8885209289,
+ 0.0
+ ],
+ [
+ 112.52029801499999,
+ 32.840432764500001,
+ 0.0
+ ],
+ [
+ 112.57529851699999,
+ 32.912099475700003,
+ 0.0
+ ],
+ [
+ 112.611466265,
+ 32.907847394299999,
+ 0.0
+ ],
+ [
+ 112.63069374299999,
+ 32.911712326900002,
+ 0.0
+ ],
+ [
+ 112.648077329,
+ 32.919620884099999,
+ 0.0
+ ],
+ [
+ 112.684121913,
+ 32.951057649200003,
+ 0.0
+ ],
+ [
+ 112.699468356,
+ 32.974754324300001,
+ 0.0
+ ],
+ [
+ 112.702488353,
+ 32.991158106699999,
+ 0.0
+ ],
+ [
+ 112.693178079,
+ 33.023131099700002,
+ 0.0
+ ],
+ [
+ 112.541863315,
+ 32.940073737399999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4303,
+ "name": "Nanyang Airport",
+ "country": "CN",
+ "city": "Nanyang",
+ "height": 0,
+ "level": 2,
+ "lat": "33.0167703722619",
+ "lng": "112.651231069212",
+ "radius": 13296,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.77482217799999,
+ 33.076496994800003,
+ 0.0
+ ],
+ [
+ 112.713012046,
+ 33.124563295199998,
+ 0.0
+ ],
+ [
+ 112.658020268,
+ 33.051231401599999,
+ 0.0
+ ],
+ [
+ 112.625720766,
+ 33.056728585,
+ 0.0
+ ],
+ [
+ 112.60613893599999,
+ 33.054251546800003,
+ 0.0
+ ],
+ [
+ 112.587991613,
+ 33.047608349,
+ 0.0
+ ],
+ [
+ 112.54920608899999,
+ 33.0172713328,
+ 0.0
+ ],
+ [
+ 112.53133317699999,
+ 32.987928600099998,
+ 0.0
+ ],
+ [
+ 112.529768144,
+ 32.9713823628,
+ 0.0
+ ],
+ [
+ 112.541863315,
+ 32.940073737399999,
+ 0.0
+ ],
+ [
+ 112.693178079,
+ 33.023131099700002,
+ 0.0
+ ],
+ [
+ 112.77482217799999,
+ 33.076496994800003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4303,
+ "name": "Nanyang Airport",
+ "country": "CN",
+ "city": "Nanyang",
+ "height": 120,
+ "level": 2,
+ "lat": "32.9839934158819",
+ "lng": "112.617344907805",
+ "radius": 23738,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.697631859,
+ 33.186599117900002,
+ 120.0
+ ],
+ [
+ 112.85381543699999,
+ 33.063139311900002,
+ 120.0
+ ],
+ [
+ 112.536701437,
+ 32.781538982900003,
+ 120.0
+ ],
+ [
+ 112.381015262,
+ 32.9049987896,
+ 120.0
+ ],
+ [
+ 112.697631859,
+ 33.186599117900002,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001311,
+ "name": "Nanyang Airport",
+ "country": "CN",
+ "city": "Nanyang",
+ "height": 500,
+ "level": 2,
+ "lat": "32.982777",
+ "lng": "112.617473",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.617473,
+ 33.433600417253281,
+ 500.0
+ ],
+ [
+ 112.71083054857921,
+ 33.426716784438952,
+ 500.0
+ ],
+ [
+ 112.80130863955678,
+ 33.406278197860793,
+ 500.0
+ ],
+ [
+ 112.886120605326539,
+ 33.372914748927172,
+ 500.0
+ ],
+ [
+ 112.962661863452837,
+ 33.32765403485093,
+ 500.0
+ ],
+ [
+ 113.028592419959793,
+ 33.271888216856624,
+ 500.0
+ ],
+ [
+ 113.081909659239557,
+ 33.207329631221128,
+ 500.0
+ ],
+ [
+ 113.12100901573929,
+ 33.135956566291526,
+ 500.0
+ ],
+ [
+ 113.144730732420925,
+ 33.059951126566126,
+ 500.0
+ ],
+ [
+ 113.152391561851317,
+ 32.981631319131928,
+ 500.0
+ ],
+ [
+ 113.143800908140165,
+ 32.903379616552364,
+ 500.0
+ ],
+ [
+ 113.119261500536112,
+ 32.827570278748389,
+ 500.0
+ ],
+ [
+ 113.079555202926912,
+ 32.756497664599493,
+ 500.0
+ ],
+ [
+ 113.025914981577614,
+ 32.69230764501237,
+ 500.0
+ ],
+ [
+ 112.959984372444282,
+ 32.636934057228089,
+ 500.0
+ ],
+ [
+ 112.883766015759221,
+ 32.592041928772026,
+ 500.0
+ ],
+ [
+ 112.799560972821993,
+ 32.558978960604883,
+ 500.0
+ ],
+ [
+ 112.709900625393217,
+ 32.538736502317199,
+ 500.0
+ ],
+ [
+ 112.617473,
+ 32.53192098477146,
+ 500.0
+ ],
+ [
+ 112.52504537460679,
+ 32.538736502317199,
+ 500.0
+ ],
+ [
+ 112.435385027178015,
+ 32.558978960604883,
+ 500.0
+ ],
+ [
+ 112.351179984240787,
+ 32.592041928772026,
+ 500.0
+ ],
+ [
+ 112.274961627555726,
+ 32.636934057228089,
+ 500.0
+ ],
+ [
+ 112.209031018422394,
+ 32.69230764501237,
+ 500.0
+ ],
+ [
+ 112.155390797073096,
+ 32.756497664599493,
+ 500.0
+ ],
+ [
+ 112.115684499463896,
+ 32.827570278748389,
+ 500.0
+ ],
+ [
+ 112.091145091859843,
+ 32.903379616552364,
+ 500.0
+ ],
+ [
+ 112.082554438148691,
+ 32.981631319131928,
+ 500.0
+ ],
+ [
+ 112.090215267579083,
+ 33.059951126566126,
+ 500.0
+ ],
+ [
+ 112.113936984260718,
+ 33.135956566291526,
+ 500.0
+ ],
+ [
+ 112.153036340760451,
+ 33.207329631221128,
+ 500.0
+ ],
+ [
+ 112.206353580040215,
+ 33.271888216856624,
+ 500.0
+ ],
+ [
+ 112.272284136547171,
+ 33.32765403485093,
+ 500.0
+ ],
+ [
+ 112.348825394673469,
+ 33.372914748927172,
+ 500.0
+ ],
+ [
+ 112.433637360443228,
+ 33.406278197860793,
+ 500.0
+ ],
+ [
+ 112.524115451420798,
+ 33.426716784438952,
+ 500.0
+ ],
+ [
+ 112.617473,
+ 33.433600417253281,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001394,
+ "name": "阜阳机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "32.881944444444",
+ "lng": "115.734166666667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.734166666666994,
+ 33.332775171861115,
+ 500.0
+ ],
+ [
+ 115.827416555420385,
+ 33.325891561184939,
+ 500.0
+ ],
+ [
+ 115.917790471680902,
+ 33.305453028124973,
+ 500.0
+ ],
+ [
+ 116.002505100460837,
+ 33.272089627321641,
+ 500.0
+ ],
+ [
+ 116.078958954415768,
+ 33.22682890085288,
+ 500.0
+ ],
+ [
+ 116.144814766301693,
+ 33.171062944792212,
+ 500.0
+ ],
+ [
+ 116.198072187700362,
+ 33.106504030331401,
+ 500.0
+ ],
+ [
+ 116.237128392880365,
+ 33.035130391273732,
+ 500.0
+ ],
+ [
+ 116.260824794555475,
+ 32.959124097602782,
+ 500.0
+ ],
+ [
+ 116.268478727252713,
+ 32.880803149175676,
+ 500.0
+ ],
+ [
+ 116.259899594690367,
+ 32.802550042683364,
+ 500.0
+ ],
+ [
+ 116.235389568880805,
+ 32.726739093873675,
+ 500.0
+ ],
+ [
+ 116.195729441314157,
+ 32.655664745676873,
+ 500.0
+ ],
+ [
+ 116.14215064437434,
+ 32.591472974351966,
+ 500.0
+ ],
+ [
+ 116.076294780306668,
+ 32.536097734196765,
+ 500.0
+ ],
+ [
+ 116.000162221945814,
+ 32.491204170298978,
+ 500.0
+ ],
+ [
+ 115.916051497430018,
+ 32.458140090132723,
+ 500.0
+ ],
+ [
+ 115.826491257485699,
+ 32.437896928118811,
+ 500.0
+ ],
+ [
+ 115.734166666666994,
+ 32.431081169718617,
+ 500.0
+ ],
+ [
+ 115.641842075848288,
+ 32.437896928118811,
+ 500.0
+ ],
+ [
+ 115.552281835903969,
+ 32.458140090132723,
+ 500.0
+ ],
+ [
+ 115.468171111388173,
+ 32.491204170298978,
+ 500.0
+ ],
+ [
+ 115.392038553027319,
+ 32.536097734196765,
+ 500.0
+ ],
+ [
+ 115.326182688959648,
+ 32.591472974351966,
+ 500.0
+ ],
+ [
+ 115.272603892019831,
+ 32.655664745676873,
+ 500.0
+ ],
+ [
+ 115.232943764453182,
+ 32.726739093873675,
+ 500.0
+ ],
+ [
+ 115.20843373864362,
+ 32.802550042683364,
+ 500.0
+ ],
+ [
+ 115.199854606081274,
+ 32.880803149175676,
+ 500.0
+ ],
+ [
+ 115.207508538778512,
+ 32.959124097602782,
+ 500.0
+ ],
+ [
+ 115.231204940453622,
+ 33.035130391273732,
+ 500.0
+ ],
+ [
+ 115.270261145633626,
+ 33.106504030331401,
+ 500.0
+ ],
+ [
+ 115.323518567032295,
+ 33.171062944792212,
+ 500.0
+ ],
+ [
+ 115.38937437891822,
+ 33.22682890085288,
+ 500.0
+ ],
+ [
+ 115.46582823287315,
+ 33.272089627321641,
+ 500.0
+ ],
+ [
+ 115.550542861653085,
+ 33.305453028124973,
+ 500.0
+ ],
+ [
+ 115.640916777913603,
+ 33.325891561184939,
+ 500.0
+ ],
+ [
+ 115.734166666666994,
+ 33.332775171861115,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32763,
+ "name": "阜阳机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "32.9235585138703",
+ "lng": "115.753056061685",
+ "radius": 13508,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.841447941,
+ 33.019788482099997,
+ 0.0
+ ],
+ [
+ 115.763917938,
+ 33.044703973,
+ 0.0
+ ],
+ [
+ 115.742231717,
+ 32.960580497899997,
+ 0.0
+ ],
+ [
+ 115.721855644,
+ 32.9599255758,
+ 0.0
+ ],
+ [
+ 115.68629078,
+ 32.946046769,
+ 0.0
+ ],
+ [
+ 115.663774629,
+ 32.919100620899997,
+ 0.0
+ ],
+ [
+ 115.64763374499999,
+ 32.877936497100002,
+ 0.0
+ ],
+ [
+ 115.648037865,
+ 32.861341728799999,
+ 0.0
+ ],
+ [
+ 115.65354038,
+ 32.8454001327,
+ 0.0
+ ],
+ [
+ 115.678010512,
+ 32.819700588400003,
+ 0.0
+ ],
+ [
+ 115.790514738,
+ 32.945046771199998,
+ 0.0
+ ],
+ [
+ 115.841447941,
+ 33.019788482099997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32763,
+ "name": "阜阳机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "32.8411936634798",
+ "lng": "115.71545650726",
+ "radius": 13508,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.678010512,
+ 32.819700588400003,
+ 0.0
+ ],
+ [
+ 115.627246368,
+ 32.744969469899999,
+ 0.0
+ ],
+ [
+ 115.704556663,
+ 32.720058733499997,
+ 0.0
+ ],
+ [
+ 115.726170869,
+ 32.804200423499999,
+ 0.0
+ ],
+ [
+ 115.74642287899999,
+ 32.804838584499997,
+ 0.0
+ ],
+ [
+ 115.78196307,
+ 32.8186594887,
+ 0.0
+ ],
+ [
+ 115.804533488,
+ 32.845558499699997,
+ 0.0
+ ],
+ [
+ 115.82077886899999,
+ 32.886761098699999,
+ 0.0
+ ],
+ [
+ 115.820418866,
+ 32.903356585,
+ 0.0
+ ],
+ [
+ 115.814954208,
+ 32.919308231599999,
+ 0.0
+ ],
+ [
+ 115.790514738,
+ 32.945046771199998,
+ 0.0
+ ],
+ [
+ 115.678010512,
+ 32.819700588400003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32763,
+ "name": "阜阳机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "32.8823412507158",
+ "lng": "115.734358437722",
+ "radius": 23681,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.71639844,
+ 33.094780634700001,
+ 120.0
+ ],
+ [
+ 115.916797949,
+ 33.030406392300002,
+ 120.0
+ ],
+ [
+ 115.75183915,
+ 32.669876172899997,
+ 120.0
+ ],
+ [
+ 115.552253217,
+ 32.734250416199998,
+ 120.0
+ ],
+ [
+ 115.71639844,
+ 33.094780634700001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001312,
+ "name": "Yancheng Airport",
+ "country": "CN",
+ "city": "Yancheng",
+ "height": 500,
+ "level": 2,
+ "lat": "33.42635",
+ "lng": "120.20318",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.20318,
+ 33.877141127285846,
+ 500.0
+ ],
+ [
+ 120.297017591530505,
+ 33.870257395396628,
+ 500.0
+ ],
+ [
+ 120.387960186396995,
+ 33.849818568731187,
+ 500.0
+ ],
+ [
+ 120.473206168620607,
+ 33.816454901600579,
+ 500.0
+ ],
+ [
+ 120.550137155538906,
+ 33.771194235500822,
+ 500.0
+ ],
+ [
+ 120.616400995217049,
+ 33.715429020330738,
+ 500.0
+ ],
+ [
+ 120.669984962875091,
+ 33.65087188077721,
+ 500.0
+ ],
+ [
+ 120.709276734966551,
+ 33.579501346940667,
+ 500.0
+ ],
+ [
+ 120.733111338035542,
+ 33.503499676403777,
+ 500.0
+ ],
+ [
+ 120.7408029288639,
+ 33.425184908545646,
+ 500.0
+ ],
+ [
+ 120.732160912233837,
+ 33.346939409405493,
+ 500.0
+ ],
+ [
+ 120.707490500914261,
+ 33.271137192057679,
+ 500.0
+ ],
+ [
+ 120.667578339446735,
+ 33.200072243605113,
+ 500.0
+ ],
+ [
+ 120.613664232694433,
+ 33.135889968893245,
+ 500.0
+ ],
+ [
+ 120.547400338383525,
+ 33.080523687295674,
+ 500.0
+ ],
+ [
+ 120.470799406857239,
+ 33.035637906223407,
+ 500.0
+ ],
+ [
+ 120.386173795035944,
+ 33.002579855403241,
+ 500.0
+ ],
+ [
+ 120.296067063052789,
+ 32.98234050912319,
+ 500.0
+ ],
+ [
+ 120.20318,
+ 32.975526056692608,
+ 500.0
+ ],
+ [
+ 120.110292936947218,
+ 32.98234050912319,
+ 500.0
+ ],
+ [
+ 120.020186204964062,
+ 33.002579855403241,
+ 500.0
+ ],
+ [
+ 119.935560593142768,
+ 33.035637906223407,
+ 500.0
+ ],
+ [
+ 119.858959661616481,
+ 33.080523687295674,
+ 500.0
+ ],
+ [
+ 119.792695767305574,
+ 33.135889968893245,
+ 500.0
+ ],
+ [
+ 119.738781660553272,
+ 33.200072243605113,
+ 500.0
+ ],
+ [
+ 119.698869499085745,
+ 33.271137192057679,
+ 500.0
+ ],
+ [
+ 119.674199087766169,
+ 33.346939409405493,
+ 500.0
+ ],
+ [
+ 119.665557071136107,
+ 33.425184908545646,
+ 500.0
+ ],
+ [
+ 119.673248661964465,
+ 33.503499676403777,
+ 500.0
+ ],
+ [
+ 119.697083265033456,
+ 33.579501346940667,
+ 500.0
+ ],
+ [
+ 119.736375037124915,
+ 33.65087188077721,
+ 500.0
+ ],
+ [
+ 119.789959004782958,
+ 33.715429020330738,
+ 500.0
+ ],
+ [
+ 119.856222844461101,
+ 33.771194235500822,
+ 500.0
+ ],
+ [
+ 119.9331538313794,
+ 33.816454901600579,
+ 500.0
+ ],
+ [
+ 120.018399813603011,
+ 33.849818568731187,
+ 500.0
+ ],
+ [
+ 120.109342408469502,
+ 33.870257395396628,
+ 500.0
+ ],
+ [
+ 120.20318,
+ 33.877141127285846,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9121,
+ "name": "Yancheng Airport",
+ "country": "CN",
+ "city": "Yancheng",
+ "height": 0,
+ "level": 2,
+ "lat": "33.4604030399235",
+ "lng": "120.235890870117",
+ "radius": 13402,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.278823481,
+ 33.470654173500002,
+ 0.0
+ ],
+ [
+ 120.354668351,
+ 33.529075552099997,
+ 0.0
+ ],
+ [
+ 120.289296198,
+ 33.572406894300002,
+ 0.0
+ ],
+ [
+ 120.238100089,
+ 33.497673130499997,
+ 0.0
+ ],
+ [
+ 120.19842896,
+ 33.502223322799999,
+ 0.0
+ ],
+ [
+ 120.179194302,
+ 33.497952934099999,
+ 0.0
+ ],
+ [
+ 120.147853544,
+ 33.477952356400003,
+ 0.0
+ ],
+ [
+ 120.118972214,
+ 33.444308469500001,
+ 0.0
+ ],
+ [
+ 120.113378732,
+ 33.428380078700002,
+ 0.0
+ ],
+ [
+ 120.112916684,
+ 33.411786320300003,
+ 0.0
+ ],
+ [
+ 120.127149987,
+ 33.381093935800003,
+ 0.0
+ ],
+ [
+ 120.278823481,
+ 33.470654173500002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9121,
+ "name": "Yancheng Airport",
+ "country": "CN",
+ "city": "Yancheng",
+ "height": 0,
+ "level": 2,
+ "lat": "33.391316065202",
+ "lng": "120.170115147603",
+ "radius": 13401,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.051517627,
+ 33.3226701691,
+ 0.0
+ ],
+ [
+ 120.116749831,
+ 33.2793460396,
+ 0.0
+ ],
+ [
+ 120.167773043,
+ 33.354137944500003,
+ 0.0
+ ],
+ [
+ 120.187444013,
+ 33.349626911800001,
+ 0.0
+ ],
+ [
+ 120.22652322499999,
+ 33.353827576500002,
+ 0.0
+ ],
+ [
+ 120.243764611,
+ 33.362080803600001,
+ 0.0
+ ],
+ [
+ 120.276102428,
+ 33.3929134105,
+ 0.0
+ ],
+ [
+ 120.292466021,
+ 33.423340702200001,
+ 0.0
+ ],
+ [
+ 120.288326004,
+ 33.456071364300001,
+ 0.0
+ ],
+ [
+ 120.278823481,
+ 33.470654173500002,
+ 0.0
+ ],
+ [
+ 120.127149987,
+ 33.381093935800003,
+ 0.0
+ ],
+ [
+ 120.051517627,
+ 33.3226701691,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9121,
+ "name": "Yancheng Airport",
+ "country": "CN",
+ "city": "Yancheng",
+ "height": 120,
+ "level": 2,
+ "lat": "33.4257577577694",
+ "lng": "120.203154875752",
+ "radius": 23582,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.144131366,
+ 33.219491541700002,
+ 120.0
+ ],
+ [
+ 119.975704741,
+ 33.331398742,
+ 120.0
+ ],
+ [
+ 120.261779765,
+ 33.632127385300002,
+ 120.0
+ ],
+ [
+ 120.430790882,
+ 33.520220185900001,
+ 120.0
+ ],
+ [
+ 120.144131366,
+ 33.219491541700002,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001325,
+ "name": "Ngari Gunsa Airport",
+ "country": "CN",
+ "city": "Shiquanhe",
+ "height": 500,
+ "level": 2,
+ "lat": "32.100104",
+ "lng": "80.053293",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 80.053293,
+ 32.55099101921676,
+ 500.0
+ ],
+ [
+ 80.145726127787341,
+ 32.54410757586151,
+ 500.0
+ ],
+ [
+ 80.235309725077357,
+ 32.523669445884771,
+ 500.0
+ ],
+ [
+ 80.319285913477003,
+ 32.490306402018916,
+ 500.0
+ ],
+ [
+ 80.395076687991178,
+ 32.445045563620369,
+ 500.0
+ ],
+ [
+ 80.460365468427455,
+ 32.38927852727317,
+ 500.0
+ ],
+ [
+ 80.513169106188585,
+ 32.3247170652457,
+ 500.0
+ ],
+ [
+ 80.551897973482497,
+ 32.253338993349743,
+ 500.0
+ ],
+ [
+ 80.575402355146451,
+ 32.17732611731337,
+ 500.0
+ ],
+ [
+ 80.583003997721946,
+ 32.098996382169958,
+ 500.0
+ ],
+ [
+ 80.574512298394893,
+ 32.020732470497279,
+ 500.0
+ ],
+ [
+ 80.550225198012072,
+ 31.944909127291776,
+ 500.0
+ ],
+ [
+ 80.51091534897472,
+ 31.873821441436437,
+ 500.0
+ ],
+ [
+ 80.457802544363702,
+ 31.809616198714455,
+ 500.0
+ ],
+ [
+ 80.392513715056111,
+ 31.754228252828931,
+ 500.0
+ ],
+ [
+ 80.317032032516622,
+ 31.70932365214431,
+ 500.0
+ ],
+ [
+ 80.233636808887567,
+ 31.676251022522472,
+ 500.0
+ ],
+ [
+ 80.144835979187761,
+ 31.656002450178249,
+ 500.0
+ ],
+ [
+ 80.053293,
+ 31.649184840088687,
+ 500.0
+ ],
+ [
+ 79.961750020812232,
+ 31.656002450178249,
+ 500.0
+ ],
+ [
+ 79.872949191112426,
+ 31.676251022522472,
+ 500.0
+ ],
+ [
+ 79.789553967483371,
+ 31.70932365214431,
+ 500.0
+ ],
+ [
+ 79.714072284943882,
+ 31.754228252828931,
+ 500.0
+ ],
+ [
+ 79.648783455636291,
+ 31.809616198714455,
+ 500.0
+ ],
+ [
+ 79.595670651025273,
+ 31.873821441436437,
+ 500.0
+ ],
+ [
+ 79.556360801987921,
+ 31.944909127291776,
+ 500.0
+ ],
+ [
+ 79.5320737016051,
+ 32.020732470497279,
+ 500.0
+ ],
+ [
+ 79.523582002278047,
+ 32.098996382169958,
+ 500.0
+ ],
+ [
+ 79.531183644853542,
+ 32.17732611731337,
+ 500.0
+ ],
+ [
+ 79.554688026517496,
+ 32.253338993349743,
+ 500.0
+ ],
+ [
+ 79.593416893811408,
+ 32.3247170652457,
+ 500.0
+ ],
+ [
+ 79.646220531572538,
+ 32.38927852727317,
+ 500.0
+ ],
+ [
+ 79.711509312008815,
+ 32.445045563620369,
+ 500.0
+ ],
+ [
+ 79.78730008652299,
+ 32.490306402018916,
+ 500.0
+ ],
+ [
+ 79.871276274922636,
+ 32.523669445884771,
+ 500.0
+ ],
+ [
+ 79.960859872212652,
+ 32.54410757586151,
+ 500.0
+ ],
+ [
+ 80.053293,
+ 32.55099101921676,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4218,
+ "name": "Ngari Gunsa Airport",
+ "country": "CN",
+ "city": "Shiquanhe",
+ "height": 0,
+ "level": 2,
+ "lat": "32.0609410946342",
+ "lng": "80.0772152988628",
+ "radius": 14660,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 80.077230760600003,
+ 32.0133814366,
+ 0.0
+ ],
+ [
+ 80.110080075200003,
+ 31.9320761408,
+ 0.0
+ ],
+ [
+ 80.184156525099993,
+ 31.9652307886,
+ 0.0
+ ],
+ [
+ 80.123607477899995,
+ 32.034122407300003,
+ 0.0
+ ],
+ [
+ 80.135867333600004,
+ 32.0470585343,
+ 0.0
+ ],
+ [
+ 80.143765474,
+ 32.062247076200002,
+ 0.0
+ ],
+ [
+ 80.146757772,
+ 32.078650489399998,
+ 0.0
+ ],
+ [
+ 80.144637736500002,
+ 32.095151254900003,
+ 0.0
+ ],
+ [
+ 80.100239651500004,
+ 32.166494321199998,
+ 0.0
+ ],
+ [
+ 80.067673493599997,
+ 32.1844781896,
+ 0.0
+ ],
+ [
+ 80.028841983199996,
+ 32.186259439300002,
+ 0.0
+ ],
+ [
+ 80.077230760600003,
+ 32.0133814366,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4218,
+ "name": "Ngari Gunsa Airport",
+ "country": "CN",
+ "city": "Shiquanhe",
+ "height": 0,
+ "level": 2,
+ "lat": "32.1386630413486",
+ "lng": "80.0287579188395",
+ "radius": 14660,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 79.995904300299998,
+ 32.267541552200001,
+ 0.0
+ ],
+ [
+ 79.9216284651,
+ 32.234382592400003,
+ 0.0
+ ],
+ [
+ 79.982417192400007,
+ 32.165520006100003,
+ 0.0
+ ],
+ [
+ 79.970090581299999,
+ 32.152484499499998,
+ 0.0
+ ],
+ [
+ 79.962233693900004,
+ 32.137277718199996,
+ 0.0
+ ],
+ [
+ 79.959294376800003,
+ 32.120867185199998,
+ 0.0
+ ],
+ [
+ 79.961470354400006,
+ 32.104371590100001,
+ 0.0
+ ],
+ [
+ 80.005943914200003,
+ 32.0331237981,
+ 0.0
+ ],
+ [
+ 80.038471766200004,
+ 32.015160232,
+ 0.0
+ ],
+ [
+ 80.077230760600003,
+ 32.0133814366,
+ 0.0
+ ],
+ [
+ 80.028841983199996,
+ 32.186259439300002,
+ 0.0
+ ],
+ [
+ 79.995904300299998,
+ 32.267541552200001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4218,
+ "name": "Ngari Gunsa Airport",
+ "country": "CN",
+ "city": "Shiquanhe",
+ "height": 120,
+ "level": 2,
+ "lat": "32.0997347437931",
+ "lng": "80.0528561747371",
+ "radius": 24755,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 79.846589950400002,
+ 32.237860016399999,
+ 120.0
+ ],
+ [
+ 80.034723750799998,
+ 32.321835299,
+ 120.0
+ ],
+ [
+ 80.258833340199999,
+ 31.961638897299999,
+ 120.0
+ ],
+ [
+ 80.071439998399995,
+ 31.877663613799999,
+ 120.0
+ ],
+ [
+ 79.846589950400002,
+ 32.237860016399999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001473,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Aba",
+ "height": 500,
+ "level": 2,
+ "lat": "32.531989",
+ "lng": "102.354197",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.354197,
+ 32.98284501032817,
+ 500.0
+ ],
+ [
+ 102.447077384312223,
+ 32.975961475459293,
+ 500.0
+ ],
+ [
+ 102.537093758020887,
+ 32.955523125320781,
+ 500.0
+ ],
+ [
+ 102.62147431324577,
+ 32.92215988768092,
+ 500.0
+ ],
+ [
+ 102.697628185769162,
+ 32.876899114370921,
+ 500.0
+ ],
+ [
+ 102.763227467052076,
+ 32.821132676662835,
+ 500.0
+ ],
+ [
+ 102.816279589967479,
+ 32.756572621189626,
+ 500.0
+ ],
+ [
+ 102.855187699851697,
+ 32.68519699359689,
+ 500.0
+ ],
+ [
+ 102.878797223707082,
+ 32.609187744864101,
+ 500.0
+ ],
+ [
+ 102.886427492777514,
+ 32.530862850049949,
+ 500.0
+ ],
+ [
+ 102.877887908659602,
+ 32.452604889317783,
+ 500.0
+ ],
+ [
+ 102.853478730037054,
+ 32.376788371345107,
+ 500.0
+ ],
+ [
+ 102.813977067033775,
+ 32.305708029453747,
+ 500.0
+ ],
+ [
+ 102.760609086967293,
+ 32.241510203855825,
+ 500.0
+ ],
+ [
+ 102.695009755013956,
+ 32.18612925322202,
+ 500.0
+ ],
+ [
+ 102.619171662010046,
+ 32.141230728755502,
+ 500.0
+ ],
+ [
+ 102.535384642306582,
+ 32.108162805878038,
+ 500.0
+ ],
+ [
+ 102.44616797403549,
+ 32.08791721205548,
+ 500.0
+ ],
+ [
+ 102.354197,
+ 32.081100621361351,
+ 500.0
+ ],
+ [
+ 102.262226025964509,
+ 32.08791721205548,
+ 500.0
+ ],
+ [
+ 102.173009357693417,
+ 32.108162805878038,
+ 500.0
+ ],
+ [
+ 102.089222337989952,
+ 32.141230728755502,
+ 500.0
+ ],
+ [
+ 102.013384244986042,
+ 32.18612925322202,
+ 500.0
+ ],
+ [
+ 101.947784913032706,
+ 32.241510203855825,
+ 500.0
+ ],
+ [
+ 101.894416932966223,
+ 32.305708029453747,
+ 500.0
+ ],
+ [
+ 101.854915269962945,
+ 32.376788371345107,
+ 500.0
+ ],
+ [
+ 101.830506091340396,
+ 32.452604889317783,
+ 500.0
+ ],
+ [
+ 101.821966507222484,
+ 32.530862850049949,
+ 500.0
+ ],
+ [
+ 101.829596776292917,
+ 32.609187744864101,
+ 500.0
+ ],
+ [
+ 101.853206300148301,
+ 32.68519699359689,
+ 500.0
+ ],
+ [
+ 101.892114410032519,
+ 32.756572621189626,
+ 500.0
+ ],
+ [
+ 101.945166532947923,
+ 32.821132676662835,
+ 500.0
+ ],
+ [
+ 102.010765814230837,
+ 32.876899114370921,
+ 500.0
+ ],
+ [
+ 102.086919686754229,
+ 32.92215988768092,
+ 500.0
+ ],
+ [
+ 102.171300241979111,
+ 32.955523125320781,
+ 500.0
+ ],
+ [
+ 102.261316615687775,
+ 32.975961475459293,
+ 500.0
+ ],
+ [
+ 102.354197,
+ 32.98284501032817,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 950,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Aba",
+ "height": 0,
+ "level": 2,
+ "lat": "32.4895413939054",
+ "lng": "102.36705075772",
+ "radius": 14237,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.355064583,
+ 32.446789898399999,
+ 0.0
+ ],
+ [
+ 102.368578695,
+ 32.361504717199999,
+ 0.0
+ ],
+ [
+ 102.448077119,
+ 32.381289759600001,
+ 0.0
+ ],
+ [
+ 102.404669715,
+ 32.459126314899997,
+ 0.0
+ ],
+ [
+ 102.420114391,
+ 32.4699041155,
+ 0.0
+ ],
+ [
+ 102.43147589199999,
+ 32.483455333899997,
+ 0.0
+ ],
+ [
+ 102.43829543299999,
+ 32.499025011500002,
+ 0.0
+ ],
+ [
+ 102.44010618199999,
+ 32.515552856900001,
+ 0.0
+ ],
+ [
+ 102.415513176,
+ 32.585771555299999,
+ 0.0
+ ],
+ [
+ 102.38748438499999,
+ 32.608698106200002,
+ 0.0
+ ],
+ [
+ 102.34959462499999,
+ 32.616736373,
+ 0.0
+ ],
+ [
+ 102.355064583,
+ 32.446789898399999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 950,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Aba",
+ "height": 0,
+ "level": 2,
+ "lat": "32.5739741841664",
+ "lng": "102.337510108086",
+ "radius": 14237,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.336045756,
+ 32.702011162700003,
+ 0.0
+ ],
+ [
+ 102.25630474899999,
+ 32.682222853299997,
+ 0.0
+ ],
+ [
+ 102.299910014,
+ 32.604398733799997,
+ 0.0
+ ],
+ [
+ 102.28436947,
+ 32.593533758600003,
+ 0.0
+ ],
+ [
+ 102.273037836,
+ 32.579956514899997,
+ 0.0
+ ],
+ [
+ 102.266265587,
+ 32.564370273900003,
+ 0.0
+ ],
+ [
+ 102.264512127,
+ 32.547837964199999,
+ 0.0
+ ],
+ [
+ 102.289220004,
+ 32.4777123772,
+ 0.0
+ ],
+ [
+ 102.317238308,
+ 32.454812230899996,
+ 0.0
+ ],
+ [
+ 102.355064583,
+ 32.446789898399999,
+ 0.0
+ ],
+ [
+ 102.34959462499999,
+ 32.616736373,
+ 0.0
+ ],
+ [
+ 102.336045756,
+ 32.702011162700003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 950,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Aba",
+ "height": 120,
+ "level": 2,
+ "lat": "32.5317310107263",
+ "lng": "102.352195364854",
+ "radius": 24362,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.182664999,
+ 32.697900264399998,
+ 120.0
+ ],
+ [
+ 102.387730275,
+ 32.748774707700001,
+ 120.0
+ ],
+ [
+ 102.521345379,
+ 32.365514674400004,
+ 120.0
+ ],
+ [
+ 102.317153189,
+ 32.3146402303,
+ 120.0
+ ],
+ [
+ 102.182664999,
+ 32.697900264399998,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2561,
+ "name": "Guangyuan Airport",
+ "country": "CN",
+ "city": "Guangyuan",
+ "height": 0,
+ "level": 2,
+ "lat": "32.39649257758",
+ "lng": "105.74686614157",
+ "radius": 13110,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.88609105899999,
+ 32.387475225199999,
+ 0.0
+ ],
+ [
+ 105.87064291,
+ 32.4511361677,
+ 0.0
+ ],
+ [
+ 105.77561335599999,
+ 32.426147678500001,
+ 0.0
+ ],
+ [
+ 105.751680895,
+ 32.446262254099999,
+ 0.0
+ ],
+ [
+ 105.733770504,
+ 32.453123095499997,
+ 0.0
+ ],
+ [
+ 105.714364532,
+ 32.455835531799998,
+ 0.0
+ ],
+ [
+ 105.666452384,
+ 32.450880955300001,
+ 0.0
+ ],
+ [
+ 105.63511004199999,
+ 32.438399422400003,
+ 0.0
+ ],
+ [
+ 105.621466723,
+ 32.426445365,
+ 0.0
+ ],
+ [
+ 105.607228193,
+ 32.395806522599997,
+ 0.0
+ ],
+ [
+ 105.784428115,
+ 32.384105353,
+ 0.0
+ ],
+ [
+ 105.88609105899999,
+ 32.387475225199999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2561,
+ "name": "Guangyuan Airport",
+ "country": "CN",
+ "city": "Guangyuan",
+ "height": 0,
+ "level": 2,
+ "lat": "32.3859267416753",
+ "lng": "105.644054253108",
+ "radius": 13182,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.607228193,
+ 32.395806522599997,
+ 0.0
+ ],
+ [
+ 105.503872659,
+ 32.392490705,
+ 0.0
+ ],
+ [
+ 105.52103629299999,
+ 32.3288591743,
+ 0.0
+ ],
+ [
+ 105.617726859,
+ 32.357183223200003,
+ 0.0
+ ],
+ [
+ 105.640568546,
+ 32.3360216405,
+ 0.0
+ ],
+ [
+ 105.65805045,
+ 32.328451732399998,
+ 0.0
+ ],
+ [
+ 105.677253521,
+ 32.3249601347,
+ 0.0
+ ],
+ [
+ 105.723533543,
+ 32.327450067699999,
+ 0.0
+ ],
+ [
+ 105.757603144,
+ 32.341038683299999,
+ 0.0
+ ],
+ [
+ 105.770938644,
+ 32.353227858499999,
+ 0.0
+ ],
+ [
+ 105.784428115,
+ 32.384105353,
+ 0.0
+ ],
+ [
+ 105.607228193,
+ 32.395806522599997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2561,
+ "name": "Guangyuan Airport",
+ "country": "CN",
+ "city": "Guangyuan",
+ "height": 120,
+ "level": 2,
+ "lat": "32.389207624525",
+ "lng": "105.69547410915",
+ "radius": 23529,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.909606014,
+ 32.499302398399998,
+ 120.0
+ ],
+ [
+ 105.93238302,
+ 32.320468916499998,
+ 120.0
+ ],
+ [
+ 105.481316264,
+ 32.279510931200001,
+ 120.0
+ ],
+ [
+ 105.458549585,
+ 32.458344413100001,
+ 120.0
+ ],
+ [
+ 105.909606014,
+ 32.499302398399998,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001535,
+ "name": "Guangyuan Airport",
+ "country": "CN",
+ "city": "Guangyuan",
+ "height": 500,
+ "level": 2,
+ "lat": "32.390036",
+ "lng": "105.69462",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.69462,
+ 32.840902226238477,
+ 500.0
+ ],
+ [
+ 105.787352320033364,
+ 32.834018721686746,
+ 500.0
+ ],
+ [
+ 105.877225422949451,
+ 32.813580444561396,
+ 500.0
+ ],
+ [
+ 105.961472112090718,
+ 32.780217271488155,
+ 500.0
+ ],
+ [
+ 106.037505780187672,
+ 32.734956477610119,
+ 500.0
+ ],
+ [
+ 106.103002268904959,
+ 32.679189843584886,
+ 500.0
+ ],
+ [
+ 106.15597212913751,
+ 32.614629325534715,
+ 500.0
+ ],
+ [
+ 106.19482089876341,
+ 32.543252893278648,
+ 500.0
+ ],
+ [
+ 106.218395613122894,
+ 32.467242449862439,
+ 500.0
+ ],
+ [
+ 106.22601640324983,
+ 32.38891596040888,
+ 500.0
+ ],
+ [
+ 106.217492669520226,
+ 32.310656038818315,
+ 500.0
+ ],
+ [
+ 106.193123903543665,
+ 32.234837271659536,
+ 500.0
+ ],
+ [
+ 106.153685739935469,
+ 32.163754509463551,
+ 500.0
+ ],
+ [
+ 106.100402235985982,
+ 32.099554239329436,
+ 500.0
+ ],
+ [
+ 106.034905697197516,
+ 32.044170983122612,
+ 500.0
+ ],
+ [
+ 105.959185596103993,
+ 31.999270455942916,
+ 500.0
+ ],
+ [
+ 105.875528283555468,
+ 31.966200981705864,
+ 500.0
+ ],
+ [
+ 105.786449282327638,
+ 31.945954406143244,
+ 500.0
+ ],
+ [
+ 105.69462,
+ 31.939137479448366,
+ 500.0
+ ],
+ [
+ 105.602790717672363,
+ 31.945954406143244,
+ 500.0
+ ],
+ [
+ 105.513711716444533,
+ 31.966200981705864,
+ 500.0
+ ],
+ [
+ 105.430054403896008,
+ 31.999270455942916,
+ 500.0
+ ],
+ [
+ 105.354334302802485,
+ 32.044170983122612,
+ 500.0
+ ],
+ [
+ 105.288837764014019,
+ 32.099554239329436,
+ 500.0
+ ],
+ [
+ 105.235554260064532,
+ 32.163754509463551,
+ 500.0
+ ],
+ [
+ 105.196116096456336,
+ 32.234837271659536,
+ 500.0
+ ],
+ [
+ 105.171747330479775,
+ 32.310656038818315,
+ 500.0
+ ],
+ [
+ 105.163223596750171,
+ 32.38891596040888,
+ 500.0
+ ],
+ [
+ 105.170844386877107,
+ 32.467242449862439,
+ 500.0
+ ],
+ [
+ 105.194419101236591,
+ 32.543252893278648,
+ 500.0
+ ],
+ [
+ 105.233267870862491,
+ 32.614629325534715,
+ 500.0
+ ],
+ [
+ 105.286237731095042,
+ 32.679189843584886,
+ 500.0
+ ],
+ [
+ 105.351734219812329,
+ 32.734956477610119,
+ 500.0
+ ],
+ [
+ 105.427767887909283,
+ 32.780217271488155,
+ 500.0
+ ],
+ [
+ 105.51201457705055,
+ 32.813580444561396,
+ 500.0
+ ],
+ [
+ 105.601887679966637,
+ 32.834018721686746,
+ 500.0
+ ],
+ [
+ 105.69462,
+ 32.840902226238477,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001541,
+ "name": "安康富强机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "32.7612903163086",
+ "lng": "108.82142995634",
+ "radius": 13358,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.788383873,
+ 32.784637044299998,
+ 0.0
+ ],
+ [
+ 108.68873032,
+ 32.8058492,
+ 0.0
+ ],
+ [
+ 108.680822825,
+ 32.740133083800004,
+ 0.0
+ ],
+ [
+ 108.783516019,
+ 32.744174930900002,
+ 0.0
+ ],
+ [
+ 108.789678774,
+ 32.7268040672,
+ 0.0
+ ],
+ [
+ 108.814720253,
+ 32.701519396400002,
+ 0.0
+ ],
+ [
+ 108.851421097,
+ 32.690147892900001,
+ 0.0
+ ],
+ [
+ 108.90112856499999,
+ 32.688305361499999,
+ 0.0
+ ],
+ [
+ 108.936584042,
+ 32.702195634299997,
+ 0.0
+ ],
+ [
+ 108.949923525,
+ 32.714423358099999,
+ 0.0
+ ],
+ [
+ 108.959050543,
+ 32.7291386733,
+ 0.0
+ ],
+ [
+ 108.788383873,
+ 32.784637044299998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001541,
+ "name": "安康富强机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "32.7523342189196",
+ "lng": "108.926002620691",
+ "radius": 13359,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.058673818,
+ 32.7078565379,
+ 0.0
+ ],
+ [
+ 109.066624117,
+ 32.773571018,
+ 0.0
+ ],
+ [
+ 108.96395384,
+ 32.769680898399997,
+ 0.0
+ ],
+ [
+ 108.957835478,
+ 32.787012724199997,
+ 0.0
+ ],
+ [
+ 108.932817686,
+ 32.812330782499998,
+ 0.0
+ ],
+ [
+ 108.896080036,
+ 32.823733259199997,
+ 0.0
+ ],
+ [
+ 108.846277752,
+ 32.825561294300002,
+ 0.0
+ ],
+ [
+ 108.810800544,
+ 32.811621646500001,
+ 0.0
+ ],
+ [
+ 108.797477312,
+ 32.799370196700004,
+ 0.0
+ ],
+ [
+ 108.788383873,
+ 32.784637044299998,
+ 0.0
+ ],
+ [
+ 108.959050543,
+ 32.7291386733,
+ 0.0
+ ],
+ [
+ 109.058673818,
+ 32.7078565379,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001541,
+ "name": "安康富强机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "32.7565588410823",
+ "lng": "108.873692521881",
+ "radius": 23555,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.11142813,
+ 32.826824455,
+ 120.0
+ ],
+ [
+ 109.089790836,
+ 32.647883346299999,
+ 120.0
+ ],
+ [
+ 108.63597549,
+ 32.68669747,
+ 120.0
+ ],
+ [
+ 108.657622217,
+ 32.8656385787,
+ 120.0
+ ],
+ [
+ 109.11142813,
+ 32.826824455,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001542,
+ "name": "安康富强机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "32.75681917",
+ "lng": "108.87125015",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.87125015,
+ 33.207658953046199,
+ 500.0
+ ],
+ [
+ 108.964367187042853,
+ 33.200775369654373,
+ 500.0
+ ],
+ [
+ 109.054612552283842,
+ 33.180336902490751,
+ 500.0
+ ],
+ [
+ 109.13920706792436,
+ 33.146973560702463,
+ 500.0
+ ],
+ [
+ 109.21555306600294,
+ 33.101712818149217,
+ 500.0
+ ],
+ [
+ 109.281316644077705,
+ 33.045946690294613,
+ 500.0
+ ],
+ [
+ 109.334500251425354,
+ 32.981387367804786,
+ 500.0
+ ],
+ [
+ 109.373503209201715,
+ 32.910013017005426,
+ 500.0
+ ],
+ [
+ 109.39716837350683,
+ 32.834005665192109,
+ 500.0
+ ],
+ [
+ 109.404813796889428,
+ 32.755683303304025,
+ 500.0
+ ],
+ [
+ 109.396248882448759,
+ 32.677428457925451,
+ 500.0
+ ],
+ [
+ 109.371775114427976,
+ 32.601615513933091,
+ 500.0
+ ],
+ [
+ 109.332171960853728,
+ 32.530539018320802,
+ 500.0
+ ],
+ [
+ 109.278668961209192,
+ 32.466345077778293,
+ 500.0
+ ],
+ [
+ 109.212905331498717,
+ 32.410967791521792,
+ 500.0
+ ],
+ [
+ 109.136878646606448,
+ 32.366072450182614,
+ 500.0
+ ],
+ [
+ 109.052884308830897,
+ 32.333006993099765,
+ 500.0
+ ],
+ [
+ 108.963447598941315,
+ 32.312762959715123,
+ 500.0
+ ],
+ [
+ 108.87125015,
+ 32.30594690308444,
+ 500.0
+ ],
+ [
+ 108.779052701058674,
+ 32.312762959715123,
+ 500.0
+ ],
+ [
+ 108.689615991169092,
+ 32.333006993099765,
+ 500.0
+ ],
+ [
+ 108.605621653393541,
+ 32.366072450182614,
+ 500.0
+ ],
+ [
+ 108.529594968501272,
+ 32.410967791521792,
+ 500.0
+ ],
+ [
+ 108.463831338790797,
+ 32.466345077778293,
+ 500.0
+ ],
+ [
+ 108.410328339146261,
+ 32.530539018320802,
+ 500.0
+ ],
+ [
+ 108.370725185572013,
+ 32.601615513933091,
+ 500.0
+ ],
+ [
+ 108.34625141755123,
+ 32.677428457925451,
+ 500.0
+ ],
+ [
+ 108.337686503110561,
+ 32.755683303304025,
+ 500.0
+ ],
+ [
+ 108.345331926493159,
+ 32.834005665192109,
+ 500.0
+ ],
+ [
+ 108.368997090798274,
+ 32.910013017005426,
+ 500.0
+ ],
+ [
+ 108.408000048574635,
+ 32.981387367804786,
+ 500.0
+ ],
+ [
+ 108.461183655922284,
+ 33.045946690294613,
+ 500.0
+ ],
+ [
+ 108.526947233997049,
+ 33.101712818149217,
+ 500.0
+ ],
+ [
+ 108.603293232075629,
+ 33.146973560702463,
+ 500.0
+ ],
+ [
+ 108.687887747716147,
+ 33.180336902490751,
+ 500.0
+ ],
+ [
+ 108.778133112957136,
+ 33.200775369654373,
+ 500.0
+ ],
+ [
+ 108.87125015,
+ 33.207658953046199,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33220,
+ "name": "武当山",
+ "country": "CN",
+ "city": "十堰",
+ "height": 0,
+ "level": 2,
+ "lat": "32.6236427808969",
+ "lng": "110.869819656911",
+ "radius": 13170,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.858450961,
+ 32.65624108,
+ 0.0
+ ],
+ [
+ 110.79011660099999,
+ 32.721255222800004,
+ 0.0
+ ],
+ [
+ 110.74021621,
+ 32.669692757699998,
+ 0.0
+ ],
+ [
+ 110.82354979,
+ 32.626360955099997,
+ 0.0
+ ],
+ [
+ 110.818014417,
+ 32.609993313300002,
+ 0.0
+ ],
+ [
+ 110.822634245,
+ 32.577311796700002,
+ 0.0
+ ],
+ [
+ 110.83226935099999,
+ 32.562835266599997,
+ 0.0
+ ],
+ [
+ 110.867638855,
+ 32.535984030900003,
+ 0.0
+ ],
+ [
+ 110.899566191,
+ 32.522417843100001,
+ 0.0
+ ],
+ [
+ 110.91915904699999,
+ 32.520813010399998,
+ 0.0
+ ],
+ [
+ 110.956501155,
+ 32.530400668200002,
+ 0.0
+ ],
+ [
+ 110.858450961,
+ 32.65624108,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33220,
+ "name": "武当山",
+ "country": "CN",
+ "city": "十堰",
+ "height": 0,
+ "level": 2,
+ "lat": "32.562478533673",
+ "lng": "110.942773042487",
+ "radius": 13079,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.021564259,
+ 32.465410584600001,
+ 0.0
+ ],
+ [
+ 111.071446096,
+ 32.516980162499998,
+ 0.0
+ ],
+ [
+ 110.986453303,
+ 32.560291322300003,
+ 0.0
+ ],
+ [
+ 110.994060141,
+ 32.591793999399997,
+ 0.0
+ ],
+ [
+ 110.990421919,
+ 32.608106789799997,
+ 0.0
+ ],
+ [
+ 110.969054449,
+ 32.635663110899998,
+ 0.0
+ ],
+ [
+ 110.944007437,
+ 32.652364265199999,
+ 0.0
+ ],
+ [
+ 110.91554417899999,
+ 32.663843571199997,
+ 0.0
+ ],
+ [
+ 110.895936448,
+ 32.665584963900002,
+ 0.0
+ ],
+ [
+ 110.858450961,
+ 32.65624108,
+ 0.0
+ ],
+ [
+ 110.956501155,
+ 32.530400668200002,
+ 0.0
+ ],
+ [
+ 111.021564259,
+ 32.465410584600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33220,
+ "name": "武当山",
+ "country": "CN",
+ "city": "十堰",
+ "height": 120,
+ "level": 2,
+ "lat": "32.593527755144",
+ "lng": "110.906415410222",
+ "radius": 23624,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.151259016,
+ 32.542915105900001,
+ 120.0
+ ],
+ [
+ 111.017510691,
+ 32.402846612399998,
+ 120.0
+ ],
+ [
+ 110.661494557,
+ 32.644350659600001,
+ 120.0
+ ],
+ [
+ 110.79560381899999,
+ 32.784419152600002,
+ 120.0
+ ],
+ [
+ 111.151259016,
+ 32.542915105900001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001467,
+ "name": "武当山",
+ "country": "CN",
+ "city": "十堰",
+ "height": 500,
+ "level": 2,
+ "lat": "32.5933333333333",
+ "lng": "110.90625",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.90625,
+ 33.044184921770913,
+ 500.0
+ ],
+ [
+ 110.999194692921449,
+ 33.037301373725221,
+ 500.0
+ ],
+ [
+ 111.089273293332823,
+ 33.016862991828177,
+ 500.0
+ ],
+ [
+ 111.17371199060446,
+ 32.983499726005888,
+ 500.0
+ ],
+ [
+ 111.249918071630674,
+ 32.938238961315356,
+ 500.0
+ ],
+ [
+ 111.315561999063704,
+ 32.882472608288566,
+ 500.0
+ ],
+ [
+ 111.368649851524665,
+ 32.817912752774404,
+ 500.0
+ ],
+ [
+ 111.40758373517555,
+ 32.746537473274266,
+ 500.0
+ ],
+ [
+ 111.431208378427954,
+ 32.670528741541546,
+ 500.0
+ ],
+ [
+ 111.438842765094904,
+ 32.592204536950092,
+ 500.0
+ ],
+ [
+ 111.430296297234335,
+ 32.513947425061744,
+ 500.0
+ ],
+ [
+ 111.405869566621405,
+ 32.438131880828017,
+ 500.0
+ ],
+ [
+ 111.3663403241721,
+ 32.367052586815348,
+ 500.0
+ ],
+ [
+ 111.312935653602068,
+ 32.302855819626764,
+ 500.0
+ ],
+ [
+ 111.247291675237221,
+ 32.247475867261059,
+ 500.0
+ ],
+ [
+ 111.17140233428799,
+ 32.202578209945266,
+ 500.0
+ ],
+ [
+ 111.087558978126339,
+ 32.169510958795506,
+ 500.0
+ ],
+ [
+ 110.998282516007308,
+ 32.149265790062344,
+ 500.0
+ ],
+ [
+ 110.90625,
+ 32.142449344855628,
+ 500.0
+ ],
+ [
+ 110.814217483992692,
+ 32.149265790062344,
+ 500.0
+ ],
+ [
+ 110.724941021873661,
+ 32.169510958795506,
+ 500.0
+ ],
+ [
+ 110.64109766571201,
+ 32.202578209945266,
+ 500.0
+ ],
+ [
+ 110.565208324762779,
+ 32.247475867261059,
+ 500.0
+ ],
+ [
+ 110.499564346397932,
+ 32.302855819626764,
+ 500.0
+ ],
+ [
+ 110.4461596758279,
+ 32.367052586815348,
+ 500.0
+ ],
+ [
+ 110.406630433378595,
+ 32.438131880828017,
+ 500.0
+ ],
+ [
+ 110.382203702765665,
+ 32.513947425061744,
+ 500.0
+ ],
+ [
+ 110.373657234905096,
+ 32.592204536950092,
+ 500.0
+ ],
+ [
+ 110.381291621572046,
+ 32.670528741541546,
+ 500.0
+ ],
+ [
+ 110.40491626482445,
+ 32.746537473274266,
+ 500.0
+ ],
+ [
+ 110.443850148475335,
+ 32.817912752774404,
+ 500.0
+ ],
+ [
+ 110.496938000936296,
+ 32.882472608288566,
+ 500.0
+ ],
+ [
+ 110.562581928369326,
+ 32.938238961315356,
+ 500.0
+ ],
+ [
+ 110.63878800939554,
+ 32.983499726005888,
+ 500.0
+ ],
+ [
+ 110.723226706667177,
+ 33.016862991828177,
+ 500.0
+ ],
+ [
+ 110.813305307078551,
+ 33.037301373725221,
+ 500.0
+ ],
+ [
+ 110.90625,
+ 33.044184921770913,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7761,
+ "name": "Xiangfan Airport",
+ "country": "CN",
+ "city": "Xiangfan",
+ "height": 0,
+ "level": 2,
+ "lat": "32.1069857339371",
+ "lng": "112.285266283549",
+ "radius": 13175,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.25035026,
+ 32.084442768599999,
+ 0.0
+ ],
+ [
+ 112.21864817399999,
+ 32.0028127259,
+ 0.0
+ ],
+ [
+ 112.299371811,
+ 31.9891003135,
+ 0.0
+ ],
+ [
+ 112.30274013099999,
+ 32.0774627698,
+ 0.0
+ ],
+ [
+ 112.332570125,
+ 32.088385333799998,
+ 0.0
+ ],
+ [
+ 112.346813681,
+ 32.099782423199997,
+ 0.0
+ ],
+ [
+ 112.357093336,
+ 32.113913294900001,
+ 0.0
+ ],
+ [
+ 112.36938054399999,
+ 32.151516016199999,
+ 0.0
+ ],
+ [
+ 112.367538006,
+ 32.181033583400001,
+ 0.0
+ ],
+ [
+ 112.359570655,
+ 32.196200544500002,
+ 0.0
+ ],
+ [
+ 112.331365306,
+ 32.218865133500003,
+ 0.0
+ ],
+ [
+ 112.25035026,
+ 32.084442768599999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7761,
+ "name": "Xiangfan Airport",
+ "country": "CN",
+ "city": "Xiangfan",
+ "height": 0,
+ "level": 2,
+ "lat": "32.1927853851629",
+ "lng": "112.305899518737",
+ "radius": 13133,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.362990173,
+ 32.300577671900001,
+ 0.0
+ ],
+ [
+ 112.282243097,
+ 32.309191322,
+ 0.0
+ ],
+ [
+ 112.28227939,
+ 32.224222291,
+ 0.0
+ ],
+ [
+ 112.249194169,
+ 32.213921711,
+ 0.0
+ ],
+ [
+ 112.234452382,
+ 32.2029709217,
+ 0.0
+ ],
+ [
+ 112.22356608299999,
+ 32.189163862400001,
+ 0.0
+ ],
+ [
+ 112.212284461,
+ 32.150142028,
+ 0.0
+ ],
+ [
+ 112.21437445,
+ 32.122382626799997,
+ 0.0
+ ],
+ [
+ 112.222276486,
+ 32.107193598599999,
+ 0.0
+ ],
+ [
+ 112.25035026,
+ 32.084442768599999,
+ 0.0
+ ],
+ [
+ 112.331365306,
+ 32.218865133500003,
+ 0.0
+ ],
+ [
+ 112.362990173,
+ 32.300577671900001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7761,
+ "name": "Xiangfan Airport",
+ "country": "CN",
+ "city": "Xiangfan",
+ "height": 120,
+ "level": 2,
+ "lat": "32.1512557204454",
+ "lng": "112.290518953391",
+ "radius": 23513,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.23500769,
+ 32.357438074599997,
+ 120.0
+ ],
+ [
+ 112.442936122,
+ 32.3188667963,
+ 120.0
+ ],
+ [
+ 112.3455606,
+ 31.945007160799999,
+ 120.0
+ ],
+ [
+ 112.138483206,
+ 31.983578439599999,
+ 120.0
+ ],
+ [
+ 112.23500769,
+ 32.357438074599997,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001480,
+ "name": "Xiangfan Airport",
+ "country": "CN",
+ "city": "Xiangfan",
+ "height": 500,
+ "level": 2,
+ "lat": "32.150763",
+ "lng": "112.291666",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.291666,
+ 32.601646393205414,
+ 500.0
+ ],
+ [
+ 112.384151094751743,
+ 32.594762939225262,
+ 500.0
+ ],
+ [
+ 112.473784976481483,
+ 32.574324783722076,
+ 500.0
+ ],
+ [
+ 112.55780814825745,
+ 32.540961717527367,
+ 500.0
+ ],
+ [
+ 112.633641110918049,
+ 32.49570088713682,
+ 500.0
+ ],
+ [
+ 112.698965968002824,
+ 32.439933921201224,
+ 500.0
+ ],
+ [
+ 112.751798476579523,
+ 32.375372624016713,
+ 500.0
+ ],
+ [
+ 112.79054816920376,
+ 32.303994838221769,
+ 500.0
+ ],
+ [
+ 112.814064766351464,
+ 32.227982386492961,
+ 500.0
+ ],
+ [
+ 112.821669734028291,
+ 32.149653217354796,
+ 500.0
+ ],
+ [
+ 112.813172470047405,
+ 32.071390001407899,
+ 500.0
+ ],
+ [
+ 112.788871184683742,
+ 31.995567456031235,
+ 500.0
+ ],
+ [
+ 112.74953904838884,
+ 31.924480628561962,
+ 500.0
+ ],
+ [
+ 112.696396594947331,
+ 31.860276252722926,
+ 500.0
+ ],
+ [
+ 112.631071688783905,
+ 31.804889124378814,
+ 500.0
+ ],
+ [
+ 112.555548595795202,
+ 31.759985233806926,
+ 500.0
+ ],
+ [
+ 112.472107850645074,
+ 31.726913154240478,
+ 500.0
+ ],
+ [
+ 112.383258706209958,
+ 31.70666492997832,
+ 500.0
+ ],
+ [
+ 112.291666,
+ 31.699847439018811,
+ 500.0
+ ],
+ [
+ 112.200073293790055,
+ 31.70666492997832,
+ 500.0
+ ],
+ [
+ 112.111224149354939,
+ 31.726913154240478,
+ 500.0
+ ],
+ [
+ 112.027783404204811,
+ 31.759985233806926,
+ 500.0
+ ],
+ [
+ 111.952260311216108,
+ 31.804889124378814,
+ 500.0
+ ],
+ [
+ 111.886935405052682,
+ 31.860276252722926,
+ 500.0
+ ],
+ [
+ 111.833792951611173,
+ 31.924480628561962,
+ 500.0
+ ],
+ [
+ 111.79446081531627,
+ 31.995567456031235,
+ 500.0
+ ],
+ [
+ 111.770159529952608,
+ 32.071390001407899,
+ 500.0
+ ],
+ [
+ 111.761662265971722,
+ 32.149653217354796,
+ 500.0
+ ],
+ [
+ 111.769267233648549,
+ 32.227982386492961,
+ 500.0
+ ],
+ [
+ 111.792783830796253,
+ 32.303994838221769,
+ 500.0
+ ],
+ [
+ 111.831533523420489,
+ 32.375372624016713,
+ 500.0
+ ],
+ [
+ 111.884366031997189,
+ 32.439933921201224,
+ 500.0
+ ],
+ [
+ 111.949690889081964,
+ 32.49570088713682,
+ 500.0
+ ],
+ [
+ 112.025523851742562,
+ 32.540961717527367,
+ 500.0
+ ],
+ [
+ 112.10954702351853,
+ 32.574324783722076,
+ 500.0
+ ],
+ [
+ 112.199180905248269,
+ 32.594762939225262,
+ 500.0
+ ],
+ [
+ 112.291666,
+ 32.601646393205414,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32236,
+ "name": "扬州泰州机场",
+ "country": "CN",
+ "city": "Yangzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "32.6082639485074",
+ "lng": "119.706250047639",
+ "radius": 13485,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.72433678199999,
+ 32.6442698432,
+ 0.0
+ ],
+ [
+ 119.716013192,
+ 32.729260009800001,
+ 0.0
+ ],
+ [
+ 119.635275637,
+ 32.713797442800001,
+ 0.0
+ ],
+ [
+ 119.675288014,
+ 32.6371538585,
+ 0.0
+ ],
+ [
+ 119.650919847,
+ 32.616209789300001,
+ 0.0
+ ],
+ [
+ 119.643038414,
+ 32.600997164100001,
+ 0.0
+ ],
+ [
+ 119.642305511,
+ 32.5680904799,
+ 0.0
+ ],
+ [
+ 119.650627895,
+ 32.539795246,
+ 0.0
+ ],
+ [
+ 119.66656575099999,
+ 32.510375092700002,
+ 0.0
+ ],
+ [
+ 119.680907233,
+ 32.499007767,
+ 0.0
+ ],
+ [
+ 119.717400146,
+ 32.487353841,
+ 0.0
+ ],
+ [
+ 119.72433678199999,
+ 32.6442698432,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32236,
+ "name": "扬州泰州机场",
+ "country": "CN",
+ "city": "Yangzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "32.5233187203249",
+ "lng": "119.732391350965",
+ "radius": 13470,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.724021331,
+ 32.402383359399998,
+ 0.0
+ ],
+ [
+ 119.803048187,
+ 32.417858852199998,
+ 0.0
+ ],
+ [
+ 119.76470763,
+ 32.4995083118,
+ 0.0
+ ],
+ [
+ 119.788070092,
+ 32.5203008716,
+ 0.0
+ ],
+ [
+ 119.79574552299999,
+ 32.535585595299999,
+ 0.0
+ ],
+ [
+ 119.798468838,
+ 32.5520243088,
+ 0.0
+ ],
+ [
+ 119.791040308,
+ 32.596868234600002,
+ 0.0
+ ],
+ [
+ 119.775668687,
+ 32.621922071900002,
+ 0.0
+ ],
+ [
+ 119.761102747,
+ 32.633103032400001,
+ 0.0
+ ],
+ [
+ 119.72433678199999,
+ 32.6442698432,
+ 0.0
+ ],
+ [
+ 119.717400146,
+ 32.487353841,
+ 0.0
+ ],
+ [
+ 119.724021331,
+ 32.402383359399998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32236,
+ "name": "扬州泰州机场",
+ "country": "CN",
+ "city": "Yangzhou",
+ "height": 120,
+ "level": 2,
+ "lat": "32.5683410934428",
+ "lng": "119.719900898644",
+ "radius": 23807,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.869214387,
+ 32.395197902200003,
+ 120.0
+ ],
+ [
+ 119.660306604,
+ 32.360218395099999,
+ 120.0
+ ],
+ [
+ 119.570181647,
+ 32.741412378500002,
+ 120.0
+ ],
+ [
+ 119.779979109,
+ 32.776391885199999,
+ 120.0
+ ],
+ [
+ 119.869214387,
+ 32.395197902200003,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001456,
+ "name": "扬州泰州机场",
+ "country": "CN",
+ "city": "Yangzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "32.564196",
+ "lng": "119.712789",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.712789,
+ 33.015049689281589,
+ 500.0
+ ],
+ [
+ 119.805703123222045,
+ 33.008166147500376,
+ 500.0
+ ],
+ [
+ 119.895752143584573,
+ 32.987727780703764,
+ 500.0
+ ],
+ [
+ 119.98016320248081,
+ 32.954364528289048,
+ 500.0
+ ],
+ [
+ 120.056344465689207,
+ 32.909103759525173,
+ 500.0
+ ],
+ [
+ 120.121967170130517,
+ 32.853337366288798,
+ 500.0
+ ],
+ [
+ 120.175038038182464,
+ 32.788777415794286,
+ 500.0
+ ],
+ [
+ 120.213959669990032,
+ 32.717401970930517,
+ 500.0
+ ],
+ [
+ 120.237577126049644,
+ 32.641392993579217,
+ 500.0
+ ],
+ [
+ 120.245209555333119,
+ 32.56306846106294,
+ 500.0
+ ],
+ [
+ 120.236666359684207,
+ 32.484810945880632,
+ 500.0
+ ],
+ [
+ 120.212247972545157,
+ 32.408994939007897,
+ 500.0
+ ],
+ [
+ 120.172731840230156,
+ 32.337915147126822,
+ 500.0
+ ],
+ [
+ 120.119344610840002,
+ 32.27371787706344,
+ 500.0
+ ],
+ [
+ 120.053721855591235,
+ 32.218337450395467,
+ 500.0
+ ],
+ [
+ 119.977856875879453,
+ 32.173439381073408,
+ 500.0
+ ],
+ [
+ 119.8940402998454,
+ 32.140371810767419,
+ 500.0
+ ],
+ [
+ 119.804792261369784,
+ 32.120126440062442,
+ 500.0
+ ],
+ [
+ 119.712789,
+ 32.113309925730562,
+ 500.0
+ ],
+ [
+ 119.620785738630218,
+ 32.120126440062442,
+ 500.0
+ ],
+ [
+ 119.531537700154601,
+ 32.140371810767419,
+ 500.0
+ ],
+ [
+ 119.447721124120548,
+ 32.173439381073408,
+ 500.0
+ ],
+ [
+ 119.371856144408767,
+ 32.218337450395467,
+ 500.0
+ ],
+ [
+ 119.306233389159999,
+ 32.27371787706344,
+ 500.0
+ ],
+ [
+ 119.252846159769845,
+ 32.337915147126822,
+ 500.0
+ ],
+ [
+ 119.213330027454845,
+ 32.408994939007897,
+ 500.0
+ ],
+ [
+ 119.188911640315794,
+ 32.484810945880632,
+ 500.0
+ ],
+ [
+ 119.180368444666883,
+ 32.56306846106294,
+ 500.0
+ ],
+ [
+ 119.188000873950358,
+ 32.641392993579217,
+ 500.0
+ ],
+ [
+ 119.211618330009969,
+ 32.717401970930517,
+ 500.0
+ ],
+ [
+ 119.250539961817537,
+ 32.788777415794286,
+ 500.0
+ ],
+ [
+ 119.303610829869484,
+ 32.853337366288798,
+ 500.0
+ ],
+ [
+ 119.369233534310794,
+ 32.909103759525173,
+ 500.0
+ ],
+ [
+ 119.445414797519192,
+ 32.954364528289048,
+ 500.0
+ ],
+ [
+ 119.529825856415428,
+ 32.987727780703764,
+ 500.0
+ ],
+ [
+ 119.619874876777956,
+ 33.008166147500376,
+ 500.0
+ ],
+ [
+ 119.712789,
+ 33.015049689281589,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4373,
+ "name": "Nantong Airport",
+ "country": "CN",
+ "city": "Nantong",
+ "height": 0,
+ "level": 2,
+ "lat": "32.0302339385098",
+ "lng": "120.983060438384",
+ "radius": 13696,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.957176617,
+ 31.995889221100001,
+ 0.0
+ ],
+ [
+ 120.947172218,
+ 31.910883254200002,
+ 0.0
+ ],
+ [
+ 121.026231728,
+ 31.912631890299998,
+ 0.0
+ ],
+ [
+ 121.00622346199999,
+ 31.999286782599999,
+ 0.0
+ ],
+ [
+ 121.037404397,
+ 32.0161348627,
+ 0.0
+ ],
+ [
+ 121.048837481,
+ 32.029608534099999,
+ 0.0
+ ],
+ [
+ 121.055770541,
+ 32.045131433599998,
+ 0.0
+ ],
+ [
+ 121.057729084,
+ 32.061646458200002,
+ 0.0
+ ],
+ [
+ 121.04558313,
+ 32.121553896800002,
+ 0.0
+ ],
+ [
+ 121.019032163,
+ 32.1455896489,
+ 0.0
+ ],
+ [
+ 121.001178809,
+ 32.152446234199999,
+ 0.0
+ ],
+ [
+ 120.957176617,
+ 31.995889221100001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4373,
+ "name": "Nantong Airport",
+ "country": "CN",
+ "city": "Nantong",
+ "height": 0,
+ "level": 2,
+ "lat": "32.117863853703",
+ "lng": "120.975026948633",
+ "radius": 13666,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.016217084,
+ 32.235724818900003,
+ 0.0
+ ],
+ [
+ 120.93376902,
+ 32.235707829299997,
+ 0.0
+ ],
+ [
+ 120.953805257,
+ 32.152416361900002,
+ 0.0
+ ],
+ [
+ 120.93418252,
+ 32.1441532005,
+ 0.0
+ ],
+ [
+ 120.919694303,
+ 32.132973074399999,
+ 0.0
+ ],
+ [
+ 120.903180314,
+ 32.103180349399999,
+ 0.0
+ ],
+ [
+ 120.903939202,
+ 32.058310646300001,
+ 0.0
+ ],
+ [
+ 120.912797746,
+ 32.026744832699997,
+ 0.0
+ ],
+ [
+ 120.92420994699999,
+ 32.013258659,
+ 0.0
+ ],
+ [
+ 120.957176617,
+ 31.995889221100001,
+ 0.0
+ ],
+ [
+ 121.001178809,
+ 32.152446234199999,
+ 0.0
+ ],
+ [
+ 121.016217084,
+ 32.235724818900003,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4373,
+ "name": "Nantong Airport",
+ "country": "CN",
+ "city": "Nantong",
+ "height": 120,
+ "level": 2,
+ "lat": "32.0741881198376",
+ "lng": "120.979548440655",
+ "radius": 23784,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.85641568299999,
+ 32.260968522299997,
+ 120.0
+ ],
+ [
+ 121.06853886499999,
+ 32.274381263499997,
+ 120.0
+ ],
+ [
+ 121.102248613,
+ 31.8873220559,
+ 120.0
+ ],
+ [
+ 120.891021549,
+ 31.873909314500001,
+ 120.0
+ ],
+ [
+ 120.85641568299999,
+ 32.260968522299997,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001522,
+ "name": "Nantong Airport",
+ "country": "CN",
+ "city": "Nantong",
+ "height": 500,
+ "level": 2,
+ "lat": "32.073597",
+ "lng": "120.978388",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.978388,
+ 32.524485915298797,
+ 500.0
+ ],
+ [
+ 121.070793988470982,
+ 32.517602477491863,
+ 500.0
+ ],
+ [
+ 121.160351325137427,
+ 32.497164360841516,
+ 500.0
+ ],
+ [
+ 121.244302976882011,
+ 32.463801328618914,
+ 500.0
+ ],
+ [
+ 121.320071719030821,
+ 32.418540485993553,
+ 500.0
+ ],
+ [
+ 121.385341658803895,
+ 32.362773412786744,
+ 500.0
+ ],
+ [
+ 121.438130219110349,
+ 32.298211864524717,
+ 500.0
+ ],
+ [
+ 121.476848210654822,
+ 32.226833642996084,
+ 500.0
+ ],
+ [
+ 121.500346212999403,
+ 32.150820545069983,
+ 500.0
+ ],
+ [
+ 121.507946119182122,
+ 32.072490513956147,
+ 500.0
+ ],
+ [
+ 121.499457326048557,
+ 31.9942262384955,
+ 500.0
+ ],
+ [
+ 121.475177633725849,
+ 31.918402478124221,
+ 500.0
+ ],
+ [
+ 121.435879424056182,
+ 31.847314343446982,
+ 500.0
+ ],
+ [
+ 121.38278210328545,
+ 31.783108647465632,
+ 500.0
+ ],
+ [
+ 121.317512114749192,
+ 31.727720274122909,
+ 500.0
+ ],
+ [
+ 121.242052058355071,
+ 31.682815302152886,
+ 500.0
+ ],
+ [
+ 121.158680607800406,
+ 31.64974238493329,
+ 500.0
+ ],
+ [
+ 121.069905009875285,
+ 31.629493630593906,
+ 500.0
+ ],
+ [
+ 120.978388,
+ 31.622675958217119,
+ 500.0
+ ],
+ [
+ 120.886870990124706,
+ 31.629493630593906,
+ 500.0
+ ],
+ [
+ 120.798095392199585,
+ 31.64974238493329,
+ 500.0
+ ],
+ [
+ 120.71472394164492,
+ 31.682815302152886,
+ 500.0
+ ],
+ [
+ 120.639263885250799,
+ 31.727720274122909,
+ 500.0
+ ],
+ [
+ 120.573993896714541,
+ 31.783108647465632,
+ 500.0
+ ],
+ [
+ 120.520896575943809,
+ 31.847314343446982,
+ 500.0
+ ],
+ [
+ 120.481598366274142,
+ 31.918402478124221,
+ 500.0
+ ],
+ [
+ 120.457318673951434,
+ 31.9942262384955,
+ 500.0
+ ],
+ [
+ 120.448829880817868,
+ 32.072490513956147,
+ 500.0
+ ],
+ [
+ 120.456429787000587,
+ 32.150820545069983,
+ 500.0
+ ],
+ [
+ 120.479927789345169,
+ 32.226833642996084,
+ 500.0
+ ],
+ [
+ 120.518645780889642,
+ 32.298211864524717,
+ 500.0
+ ],
+ [
+ 120.571434341196095,
+ 32.362773412786744,
+ 500.0
+ ],
+ [
+ 120.63670428096917,
+ 32.418540485993553,
+ 500.0
+ ],
+ [
+ 120.71247302311798,
+ 32.463801328618914,
+ 500.0
+ ],
+ [
+ 120.796424674862564,
+ 32.497164360841516,
+ 500.0
+ ],
+ [
+ 120.885982011529009,
+ 32.517602477491863,
+ 500.0
+ ],
+ [
+ 120.978388,
+ 32.524485915298797,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284599,
+ "name": "Kullu Manali Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "31.8764987768766",
+ "lng": "77.1544962906617",
+ "radius": 7225,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 77.147225372600005,
+ 31.908146499,
+ 0.0
+ ],
+ [
+ 77.173658537400001,
+ 31.848663252200001,
+ 0.0
+ ],
+ [
+ 77.192440745,
+ 31.820080627799999,
+ 0.0
+ ],
+ [
+ 77.169899150299997,
+ 31.812853691400001,
+ 0.0
+ ],
+ [
+ 77.161772647099994,
+ 31.844852404400001,
+ 0.0
+ ],
+ [
+ 77.1353316406,
+ 31.904336023500001,
+ 0.0
+ ],
+ [
+ 77.116527658,
+ 31.932916472,
+ 0.0
+ ],
+ [
+ 77.139089024300006,
+ 31.940144949099999,
+ 0.0
+ ],
+ [
+ 77.147225372600005,
+ 31.908146499,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045025,
+ "name": "甘孜格萨尔机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "31.758803",
+ "lng": "99.550698",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.550698,
+ 32.209714369019636,
+ 500.0
+ ],
+ [
+ 99.642784403834952,
+ 32.202830996542161,
+ 500.0
+ ],
+ [
+ 99.732032503545128,
+ 32.182393036633606,
+ 500.0
+ ],
+ [
+ 99.815695220125207,
+ 32.149030140672863,
+ 500.0
+ ],
+ [
+ 99.891204518018057,
+ 32.103769246049531,
+ 500.0
+ ],
+ [
+ 99.956252599337887,
+ 32.048001734344766,
+ 500.0
+ ],
+ [
+ 100.008863616824826,
+ 31.983439163092616,
+ 500.0
+ ],
+ [
+ 100.047453544533099,
+ 31.912059168257052,
+ 500.0
+ ],
+ [
+ 100.070876432169882,
+ 31.836043441975388,
+ 500.0
+ ],
+ [
+ 100.078455897273088,
+ 31.757709905955878,
+ 500.0
+ ],
+ [
+ 100.070001331989204,
+ 31.679441323211229,
+ 500.0
+ ],
+ [
+ 100.045808878668979,
+ 31.603612624091419,
+ 500.0
+ ],
+ [
+ 100.006647732505328,
+ 31.532519176274498,
+ 500.0
+ ],
+ [
+ 99.953732744029963,
+ 31.468308114881129,
+ 500.0
+ ],
+ [
+ 99.888684615211019,
+ 31.412914681720764,
+ 500.0
+ ],
+ [
+ 99.813479215533775,
+ 31.368005314934653,
+ 500.0
+ ],
+ [
+ 99.730387700912786,
+ 31.334928993537076,
+ 500.0
+ ],
+ [
+ 99.641909214385166,
+ 31.314678085012687,
+ 500.0
+ ],
+ [
+ 99.550698,
+ 31.307859675376168,
+ 500.0
+ ],
+ [
+ 99.459486785614828,
+ 31.314678085012687,
+ 500.0
+ ],
+ [
+ 99.371008299087208,
+ 31.334928993537076,
+ 500.0
+ ],
+ [
+ 99.287916784466219,
+ 31.368005314934653,
+ 500.0
+ ],
+ [
+ 99.212711384788975,
+ 31.412914681720764,
+ 500.0
+ ],
+ [
+ 99.147663255970031,
+ 31.468308114881129,
+ 500.0
+ ],
+ [
+ 99.094748267494666,
+ 31.532519176274498,
+ 500.0
+ ],
+ [
+ 99.055587121331016,
+ 31.603612624091419,
+ 500.0
+ ],
+ [
+ 99.03139466801079,
+ 31.679441323211229,
+ 500.0
+ ],
+ [
+ 99.022940102726906,
+ 31.757709905955878,
+ 500.0
+ ],
+ [
+ 99.030519567830112,
+ 31.836043441975388,
+ 500.0
+ ],
+ [
+ 99.053942455466895,
+ 31.912059168257052,
+ 500.0
+ ],
+ [
+ 99.092532383175168,
+ 31.983439163092616,
+ 500.0
+ ],
+ [
+ 99.145143400662107,
+ 32.048001734344766,
+ 500.0
+ ],
+ [
+ 99.210191481981937,
+ 32.103769246049531,
+ 500.0
+ ],
+ [
+ 99.285700779874787,
+ 32.149030140672863,
+ 500.0
+ ],
+ [
+ 99.369363496454866,
+ 32.182393036633606,
+ 500.0
+ ],
+ [
+ 99.458611596165042,
+ 32.202830996542161,
+ 500.0
+ ],
+ [
+ 99.550698,
+ 32.209714369019636,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045024,
+ "name": "甘孜格萨尔机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "31.7364287046686",
+ "lng": "99.6034289802485",
+ "radius": 14000,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.714304454499995,
+ 31.653037429200001,
+ 0.0
+ ],
+ [
+ 99.748705356200006,
+ 31.712254100199999,
+ 0.0
+ ],
+ [
+ 99.652030346,
+ 31.738836570099998,
+ 0.0
+ ],
+ [
+ 99.653502533500003,
+ 31.756859059300002,
+ 0.0
+ ],
+ [
+ 99.649545433,
+ 31.77311275,
+ 0.0
+ ],
+ [
+ 99.640772790300005,
+ 31.787941407800002,
+ 0.0
+ ],
+ [
+ 99.627780858099996,
+ 31.800333577499998,
+ 0.0
+ ],
+ [
+ 99.5535897054,
+ 31.8310746147,
+ 0.0
+ ],
+ [
+ 99.514972917600005,
+ 31.828473675800002,
+ 0.0
+ ],
+ [
+ 99.483071244900003,
+ 31.809807633799998,
+ 0.0
+ ],
+ [
+ 99.630806740799997,
+ 31.702312346399999,
+ 0.0
+ ],
+ [
+ 99.714304454499995,
+ 31.653037429200001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045024,
+ "name": "甘孜格萨尔机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "31.7755608153739",
+ "lng": "99.5103939068028",
+ "radius": 14000,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.483071244900003,
+ 31.809807633799998,
+ 0.0
+ ],
+ [
+ 99.399459294799996,
+ 31.859025601100001,
+ 0.0
+ ],
+ [
+ 99.365042315,
+ 31.799803363799999,
+ 0.0
+ ],
+ [
+ 99.461883458800003,
+ 31.77333366,
+ 0.0
+ ],
+ [
+ 99.460440486300001,
+ 31.755230322300001,
+ 0.0
+ ],
+ [
+ 99.464440594699994,
+ 31.7389843809,
+ 0.0
+ ],
+ [
+ 99.473246471400003,
+ 31.7241719658,
+ 0.0
+ ],
+ [
+ 99.486256440600002,
+ 31.711801609399998,
+ 0.0
+ ],
+ [
+ 99.560359867499997,
+ 31.681108793700002,
+ 0.0
+ ],
+ [
+ 99.598917549700005,
+ 31.683684620400001,
+ 0.0
+ ],
+ [
+ 99.630806740799997,
+ 31.702312346399999,
+ 0.0
+ ],
+ [
+ 99.483071244900003,
+ 31.809807633799998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045024,
+ "name": "甘孜格萨尔机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "31.7557864967219",
+ "lng": "99.5567997964517",
+ "radius": 24153,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.812126079500004,
+ 31.7489246612,
+ 120.0
+ ],
+ [
+ 99.718458408100005,
+ 31.5876925546,
+ 120.0
+ ],
+ [
+ 99.301466080899999,
+ 31.7629620419,
+ 120.0
+ ],
+ [
+ 99.395311274099996,
+ 31.9241941483,
+ 120.0
+ ],
+ [
+ 99.812126079500004,
+ 31.7489246612,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001527,
+ "name": "Mianyang Airport",
+ "country": "CN",
+ "city": "Mianyang",
+ "height": 500,
+ "level": 2,
+ "lat": "31.430296",
+ "lng": "104.740692",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.740692,
+ 31.881230673074736,
+ 500.0
+ ],
+ [
+ 104.832450191144304,
+ 31.874347367739549,
+ 500.0
+ ],
+ [
+ 104.921380706155773,
+ 31.853909568618537,
+ 500.0
+ ],
+ [
+ 105.004746689705016,
+ 31.820546811227349,
+ 500.0
+ ],
+ [
+ 105.079989544025921,
+ 31.775285859221526,
+ 500.0
+ ],
+ [
+ 105.144809784929237,
+ 31.719517888909085,
+ 500.0
+ ],
+ [
+ 105.197238476540335,
+ 31.654954252815376,
+ 500.0
+ ],
+ [
+ 105.235696895108617,
+ 31.583572415222637,
+ 500.0
+ ],
+ [
+ 105.259042653227866,
+ 31.507553959879772,
+ 500.0
+ ],
+ [
+ 105.266601138236609,
+ 31.429216786340177,
+ 500.0
+ ],
+ [
+ 105.258181736014791,
+ 31.35094373459556,
+ 500.0
+ ],
+ [
+ 105.234078884922511,
+ 31.275109912226419,
+ 500.0
+ ],
+ [
+ 105.195058506181581,
+ 31.204010953435819,
+ 500.0
+ ],
+ [
+ 105.142330770674334,
+ 31.1397943272896,
+ 500.0
+ ],
+ [
+ 105.077510483552999,
+ 31.08439564660106,
+ 500.0
+ ],
+ [
+ 105.002566602318126,
+ 31.039481722117223,
+ 500.0
+ ],
+ [
+ 104.91976256289017,
+ 31.006401870453796,
+ 500.0
+ ],
+ [
+ 104.831589187069767,
+ 30.986148727984549,
+ 500.0
+ ],
+ [
+ 104.740692,
+ 30.979329553795516,
+ 500.0
+ ],
+ [
+ 104.649794812930224,
+ 30.986148727984549,
+ 500.0
+ ],
+ [
+ 104.561621437109821,
+ 31.006401870453796,
+ 500.0
+ ],
+ [
+ 104.478817397681865,
+ 31.039481722117223,
+ 500.0
+ ],
+ [
+ 104.403873516446993,
+ 31.08439564660106,
+ 500.0
+ ],
+ [
+ 104.339053229325657,
+ 31.1397943272896,
+ 500.0
+ ],
+ [
+ 104.28632549381841,
+ 31.204010953435819,
+ 500.0
+ ],
+ [
+ 104.247305115077481,
+ 31.275109912226419,
+ 500.0
+ ],
+ [
+ 104.2232022639852,
+ 31.35094373459556,
+ 500.0
+ ],
+ [
+ 104.214782861763382,
+ 31.429216786340177,
+ 500.0
+ ],
+ [
+ 104.222341346772126,
+ 31.507553959879772,
+ 500.0
+ ],
+ [
+ 104.245687104891374,
+ 31.583572415222637,
+ 500.0
+ ],
+ [
+ 104.284145523459657,
+ 31.654954252815376,
+ 500.0
+ ],
+ [
+ 104.336574215070755,
+ 31.719517888909085,
+ 500.0
+ ],
+ [
+ 104.401394455974071,
+ 31.775285859221526,
+ 500.0
+ ],
+ [
+ 104.476637310294976,
+ 31.820546811227349,
+ 500.0
+ ],
+ [
+ 104.560003293844218,
+ 31.853909568618537,
+ 500.0
+ ],
+ [
+ 104.648933808855688,
+ 31.874347367739549,
+ 500.0
+ ],
+ [
+ 104.740692,
+ 31.881230673074736,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6406,
+ "name": "Mianyang Airport",
+ "country": "CN",
+ "city": "Mianyang",
+ "height": 0,
+ "level": 2,
+ "lat": "31.4649108966151",
+ "lng": "104.708232078303",
+ "radius": 13348,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.657895432,
+ 31.577023014400002,
+ 0.0
+ ],
+ [
+ 104.593954285,
+ 31.535026579299998,
+ 0.0
+ ],
+ [
+ 104.667090384,
+ 31.4755445009,
+ 0.0
+ ],
+ [
+ 104.657112285,
+ 31.460424254300001,
+ 0.0
+ ],
+ [
+ 104.652396143,
+ 31.444320986,
+ 0.0
+ ],
+ [
+ 104.652726689,
+ 31.427725143100002,
+ 0.0
+ ],
+ [
+ 104.668085481,
+ 31.3975354387,
+ 0.0
+ ],
+ [
+ 104.699124509,
+ 31.3666530484,
+ 0.0
+ ],
+ [
+ 104.734730049,
+ 31.35405027,
+ 0.0
+ ],
+ [
+ 104.772944785,
+ 31.358326978099999,
+ 0.0
+ ],
+ [
+ 104.70678244,
+ 31.501629831500001,
+ 0.0
+ ],
+ [
+ 104.657895432,
+ 31.577023014400002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6406,
+ "name": "Mianyang Airport",
+ "country": "CN",
+ "city": "Mianyang",
+ "height": 0,
+ "level": 2,
+ "lat": "31.3949867757318",
+ "lng": "104.771398671014",
+ "radius": 13348,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.772944785,
+ 31.358326978099999,
+ 0.0
+ ],
+ [
+ 104.821713761,
+ 31.282894452899999,
+ 0.0
+ ],
+ [
+ 104.885523676,
+ 31.324884036099998,
+ 0.0
+ ],
+ [
+ 104.812628285,
+ 31.384423285,
+ 0.0
+ ],
+ [
+ 104.822577159,
+ 31.399447564199999,
+ 0.0
+ ],
+ [
+ 104.827341673,
+ 31.415539975200002,
+ 0.0
+ ],
+ [
+ 104.827064159,
+ 31.432136524899999,
+ 0.0
+ ],
+ [
+ 104.811791132,
+ 31.462359978599999,
+ 0.0
+ ],
+ [
+ 104.78071063,
+ 31.493313808,
+ 0.0
+ ],
+ [
+ 104.74505495,
+ 31.505922322699998,
+ 0.0
+ ],
+ [
+ 104.70678244,
+ 31.501629831500001,
+ 0.0
+ ],
+ [
+ 104.772944785,
+ 31.358326978099999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6406,
+ "name": "Mianyang Airport",
+ "country": "CN",
+ "city": "Mianyang",
+ "height": 120,
+ "level": 2,
+ "lat": "31.4298517719869",
+ "lng": "104.739684235249",
+ "radius": 23535,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.51904160799999,
+ 31.526765750100001,
+ 120.0
+ ],
+ [
+ 104.686274254,
+ 31.6365611652,
+ 120.0
+ ],
+ [
+ 104.960154311,
+ 31.333029581800002,
+ 120.0
+ ],
+ [
+ 104.793462205,
+ 31.223234165899999,
+ 120.0
+ ],
+ [
+ 104.51904160799999,
+ 31.526765750100001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002180,
+ "name": "Bazhong Enyang Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "31.7226069048731",
+ "lng": "106.593977023096",
+ "radius": 13390,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.552307583,
+ 31.731491713899999,
+ 0.0
+ ],
+ [
+ 106.452743114,
+ 31.714307573700001,
+ 0.0
+ ],
+ [
+ 106.479165105,
+ 31.6521955312,
+ 0.0
+ ],
+ [
+ 106.568581235,
+ 31.6932525076,
+ 0.0
+ ],
+ [
+ 106.582894712,
+ 31.6798553613,
+ 0.0
+ ],
+ [
+ 106.618070522,
+ 31.666179582800002,
+ 0.0
+ ],
+ [
+ 106.637559396,
+ 31.6655810882,
+ 0.0
+ ],
+ [
+ 106.683661379,
+ 31.677624488399999,
+ 0.0
+ ],
+ [
+ 106.716734734,
+ 31.697306162,
+ 0.0
+ ],
+ [
+ 106.732703708,
+ 31.727284236900001,
+ 0.0
+ ],
+ [
+ 106.733344773,
+ 31.743873519099999,
+ 0.0
+ ],
+ [
+ 106.552307583,
+ 31.731491713899999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002180,
+ "name": "Bazhong Enyang Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "31.7526423205687",
+ "lng": "106.691724787127",
+ "radius": 13391,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.83302306,
+ 31.761012304499999,
+ 0.0
+ ],
+ [
+ 106.806611432,
+ 31.8231293246,
+ 0.0
+ ],
+ [
+ 106.71705351,
+ 31.782199369,
+ 0.0
+ ],
+ [
+ 106.68619322799999,
+ 31.8044164569,
+ 0.0
+ ],
+ [
+ 106.64800306799999,
+ 31.809884772099998,
+ 0.0
+ ],
+ [
+ 106.62896842,
+ 31.806164761,
+ 0.0
+ ],
+ [
+ 106.583016368,
+ 31.789465200399999,
+ 0.0
+ ],
+ [
+ 106.568793836,
+ 31.778092446,
+ 0.0
+ ],
+ [
+ 106.55852196,
+ 31.7639771702,
+ 0.0
+ ],
+ [
+ 106.552307583,
+ 31.731491713899999,
+ 0.0
+ ],
+ [
+ 106.733344773,
+ 31.743873519099999,
+ 0.0
+ ],
+ [
+ 106.83302306,
+ 31.761012304499999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002180,
+ "name": "Bazhong Enyang Airport",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "31.7374072080554",
+ "lng": "106.642943707894",
+ "radius": 23586,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.819375032,
+ 31.887456945899999,
+ 120.0
+ ],
+ [
+ 106.89131532899999,
+ 31.7183027972,
+ 120.0
+ ],
+ [
+ 106.466397773,
+ 31.587698293,
+ 120.0
+ ],
+ [
+ 106.39455883399999,
+ 31.7568524418,
+ 120.0
+ ],
+ [
+ 106.819375032,
+ 31.887456945899999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002181,
+ "name": "Bazhong Enyang Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "31.73748575",
+ "lng": "106.642485",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.642485,
+ 32.188398635242038,
+ 500.0
+ ],
+ [
+ 106.734549942481692,
+ 32.181515267152399,
+ 500.0
+ ],
+ [
+ 106.82377727575691,
+ 32.161077317760544,
+ 500.0
+ ],
+ [
+ 106.907420589305076,
+ 32.127714430899076,
+ 500.0
+ ],
+ [
+ 106.982912464673547,
+ 32.082453532642241,
+ 500.0
+ ],
+ [
+ 107.04794564758889,
+ 32.026685991201582,
+ 500.0
+ ],
+ [
+ 107.100544742721212,
+ 31.962123350758592,
+ 500.0
+ ],
+ [
+ 107.139126070845663,
+ 31.890743236094782,
+ 500.0
+ ],
+ [
+ 107.162543914671971,
+ 31.814727332286395,
+ 500.0
+ ],
+ [
+ 107.170122007503352,
+ 31.736393559595648,
+ 500.0
+ ],
+ [
+ 107.161669741122978,
+ 31.658124686043827,
+ 500.0
+ ],
+ [
+ 107.137483146506966,
+ 31.582295653516709,
+ 500.0
+ ],
+ [
+ 107.098331204809384,
+ 31.511201847041548,
+ 500.0
+ ],
+ [
+ 107.045428460596511,
+ 31.44699042347732,
+ 500.0
+ ],
+ [
+ 106.980395230266367,
+ 31.391596648784144,
+ 500.0
+ ],
+ [
+ 106.90520693133476,
+ 31.346686985357998,
+ 500.0
+ ],
+ [
+ 106.822134214892742,
+ 31.313610434189101,
+ 500.0
+ ],
+ [
+ 106.733675679822014,
+ 31.29335938026508,
+ 500.0
+ ],
+ [
+ 106.642485,
+ 31.286540920866393,
+ 500.0
+ ],
+ [
+ 106.551294320177973,
+ 31.29335938026508,
+ 500.0
+ ],
+ [
+ 106.462835785107245,
+ 31.313610434189101,
+ 500.0
+ ],
+ [
+ 106.379763068665227,
+ 31.346686985357998,
+ 500.0
+ ],
+ [
+ 106.30457476973362,
+ 31.391596648784144,
+ 500.0
+ ],
+ [
+ 106.239541539403476,
+ 31.44699042347732,
+ 500.0
+ ],
+ [
+ 106.186638795190603,
+ 31.511201847041548,
+ 500.0
+ ],
+ [
+ 106.147486853493021,
+ 31.582295653516709,
+ 500.0
+ ],
+ [
+ 106.123300258877009,
+ 31.658124686043827,
+ 500.0
+ ],
+ [
+ 106.114847992496635,
+ 31.736393559595648,
+ 500.0
+ ],
+ [
+ 106.122426085328016,
+ 31.814727332286395,
+ 500.0
+ ],
+ [
+ 106.145843929154324,
+ 31.890743236094782,
+ 500.0
+ ],
+ [
+ 106.184425257278775,
+ 31.962123350758592,
+ 500.0
+ ],
+ [
+ 106.237024352411098,
+ 32.026685991201582,
+ 500.0
+ ],
+ [
+ 106.302057535326441,
+ 32.082453532642241,
+ 500.0
+ ],
+ [
+ 106.377549410694911,
+ 32.127714430899076,
+ 500.0
+ ],
+ [
+ 106.461192724243077,
+ 32.161077317760544,
+ 500.0
+ ],
+ [
+ 106.550420057518295,
+ 32.181515267152399,
+ 500.0
+ ],
+ [
+ 106.642485,
+ 32.188398635242038,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001539,
+ "name": "红坪",
+ "country": "CN",
+ "city": "神农架",
+ "height": 500,
+ "level": 2,
+ "lat": "31.6275",
+ "lng": "110.339166666667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.339166666666671,
+ 32.078420699386868,
+ 500.0
+ ],
+ [
+ 110.431121240882135,
+ 32.071537353866646,
+ 500.0
+ ],
+ [
+ 110.520241779680234,
+ 32.051099458548187,
+ 500.0
+ ],
+ [
+ 110.603785310381852,
+ 32.017736618390948,
+ 500.0
+ ],
+ [
+ 110.679187588128997,
+ 31.972475701179956,
+ 500.0
+ ],
+ [
+ 110.744144154275148,
+ 31.916708006255767,
+ 500.0
+ ],
+ [
+ 110.796681937599473,
+ 31.852145009017093,
+ 500.0
+ ],
+ [
+ 110.835219041903215,
+ 31.780764276642763,
+ 500.0
+ ],
+ [
+ 110.858610948081463,
+ 31.704747457839151,
+ 500.0
+ ],
+ [
+ 110.866181984690513,
+ 31.626412465426498,
+ 500.0
+ ],
+ [
+ 110.85774154154474,
+ 31.54814209323877,
+ 500.0
+ ],
+ [
+ 110.833585076758069,
+ 31.472311342603039,
+ 500.0
+ ],
+ [
+ 110.794480470667693,
+ 31.401215687940059,
+ 500.0
+ ],
+ [
+ 110.741640694301026,
+ 31.337002398116468,
+ 500.0
+ ],
+ [
+ 110.676684081172425,
+ 31.281606863529625,
+ 500.0
+ ],
+ [
+ 110.601583724486289,
+ 31.23669567154953,
+ 500.0
+ ],
+ [
+ 110.518607679254472,
+ 31.203617936399056,
+ 500.0
+ ],
+ [
+ 110.430251746047261,
+ 31.183366133251649,
+ 500.0
+ ],
+ [
+ 110.339166666666671,
+ 31.17654741743597,
+ 500.0
+ ],
+ [
+ 110.24808158728608,
+ 31.183366133251649,
+ 500.0
+ ],
+ [
+ 110.159725654078869,
+ 31.203617936399056,
+ 500.0
+ ],
+ [
+ 110.076749608847052,
+ 31.23669567154953,
+ 500.0
+ ],
+ [
+ 110.001649252160917,
+ 31.281606863529625,
+ 500.0
+ ],
+ [
+ 109.936692639032316,
+ 31.337002398116468,
+ 500.0
+ ],
+ [
+ 109.883852862665648,
+ 31.401215687940059,
+ 500.0
+ ],
+ [
+ 109.844748256575272,
+ 31.472311342603039,
+ 500.0
+ ],
+ [
+ 109.820591791788601,
+ 31.54814209323877,
+ 500.0
+ ],
+ [
+ 109.812151348642828,
+ 31.626412465426498,
+ 500.0
+ ],
+ [
+ 109.819722385251879,
+ 31.704747457839151,
+ 500.0
+ ],
+ [
+ 109.843114291430126,
+ 31.780764276642763,
+ 500.0
+ ],
+ [
+ 109.881651395733869,
+ 31.852145009017093,
+ 500.0
+ ],
+ [
+ 109.934189179058194,
+ 31.916708006255767,
+ 500.0
+ ],
+ [
+ 109.999145745204345,
+ 31.972475701179956,
+ 500.0
+ ],
+ [
+ 110.07454802295149,
+ 32.017736618390948,
+ 500.0
+ ],
+ [
+ 110.158091553653108,
+ 32.051099458548187,
+ 500.0
+ ],
+ [
+ 110.247212092451207,
+ 32.071537353866646,
+ 500.0
+ ],
+ [
+ 110.339166666666671,
+ 32.078420699386868,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33218,
+ "name": "红坪",
+ "country": "CN",
+ "city": "神农架",
+ "height": 0,
+ "level": 2,
+ "lat": "31.5853086442469",
+ "lng": "110.357104071259",
+ "radius": 13321,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.335676848,
+ 31.550734365299999,
+ 0.0
+ ],
+ [
+ 110.34905051299999,
+ 31.465702649499999,
+ 0.0
+ ],
+ [
+ 110.42301982799999,
+ 31.479496543,
+ 0.0
+ ],
+ [
+ 110.38639174799999,
+ 31.561243704900001,
+ 0.0
+ ],
+ [
+ 110.409257098,
+ 31.580615578300002,
+ 0.0
+ ],
+ [
+ 110.417551156,
+ 31.595635061399999,
+ 0.0
+ ],
+ [
+ 110.421000741,
+ 31.611971211099998,
+ 0.0
+ ],
+ [
+ 110.419368301,
+ 31.6285111382,
+ 0.0
+ ],
+ [
+ 110.40403405399999,
+ 31.670274561799999,
+ 0.0
+ ],
+ [
+ 110.377845823,
+ 31.694494165,
+ 0.0
+ ],
+ [
+ 110.3409255,
+ 31.704317144400001,
+ 0.0
+ ],
+ [
+ 110.335676848,
+ 31.550734365299999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33218,
+ "name": "红坪",
+ "country": "CN",
+ "city": "神农架",
+ "height": 0,
+ "level": 2,
+ "lat": "31.6690752982677",
+ "lng": "110.326059213272",
+ "radius": 13190,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.330959135,
+ 31.7876261111,
+ 0.0
+ ],
+ [
+ 110.25361014,
+ 31.770434741799999,
+ 0.0
+ ],
+ [
+ 110.293630553,
+ 31.693810267,
+ 0.0
+ ],
+ [
+ 110.26765088,
+ 31.669858291699999,
+ 0.0
+ ],
+ [
+ 110.260870439,
+ 31.6542956945,
+ 0.0
+ ],
+ [
+ 110.259054362,
+ 31.6377696148,
+ 0.0
+ ],
+ [
+ 110.26897567499999,
+ 31.596448578,
+ 0.0
+ ],
+ [
+ 110.284486771,
+ 31.572312512300002,
+ 0.0
+ ],
+ [
+ 110.299119228,
+ 31.561354952199999,
+ 0.0
+ ],
+ [
+ 110.335676848,
+ 31.550734365299999,
+ 0.0
+ ],
+ [
+ 110.3409255,
+ 31.704317144400001,
+ 0.0
+ ],
+ [
+ 110.330959135,
+ 31.7876261111,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33218,
+ "name": "红坪",
+ "country": "CN",
+ "city": "神农架",
+ "height": 120,
+ "level": 2,
+ "lat": "31.624999482564",
+ "lng": "110.34029880406",
+ "radius": 23652,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.181749732,
+ 31.789475689,
+ 120.0
+ ],
+ [
+ 110.386821408,
+ 31.833998448900001,
+ 120.0
+ ],
+ [
+ 110.498486029,
+ 31.460466145200002,
+ 120.0
+ ],
+ [
+ 110.294236,
+ 31.4159433847,
+ 120.0
+ ],
+ [
+ 110.181749732,
+ 31.789475689,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001501,
+ "name": "Hefei Xinqiao Airport",
+ "country": "CN",
+ "city": "Hefei",
+ "height": 500,
+ "level": 2,
+ "lat": "31.987054",
+ "lng": "116.972606",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.972606,
+ 32.437949100049451,
+ 500.0
+ ],
+ [
+ 117.064923629442319,
+ 32.431065680304997,
+ 500.0
+ ],
+ [
+ 117.15439546793084,
+ 32.410627607022327,
+ 500.0
+ ],
+ [
+ 117.238267234395806,
+ 32.377264612625453,
+ 500.0
+ ],
+ [
+ 117.313964244725227,
+ 32.332003756029188,
+ 500.0
+ ],
+ [
+ 117.379172844198635,
+ 32.276236562402417,
+ 500.0
+ ],
+ [
+ 117.431912316405899,
+ 32.211674732686284,
+ 500.0
+ ],
+ [
+ 117.470594899667674,
+ 32.14029602295053,
+ 500.0
+ ],
+ [
+ 117.494072133058609,
+ 32.064282201184476,
+ 500.0
+ ],
+ [
+ 117.501666386520242,
+ 31.985951204658392,
+ 500.0
+ ],
+ [
+ 117.493187055728285,
+ 31.907685742642961,
+ 500.0
+ ],
+ [
+ 117.468931482597867,
+ 31.831860621667037,
+ 500.0
+ ],
+ [
+ 117.429671168040443,
+ 31.760771023173387,
+ 500.0
+ ],
+ [
+ 117.376624258819803,
+ 31.696563848927667,
+ 500.0
+ ],
+ [
+ 117.311415610934347,
+ 31.641174081487637,
+ 500.0
+ ],
+ [
+ 117.23602596344675,
+ 31.596267898626621,
+ 500.0
+ ],
+ [
+ 117.152731911464102,
+ 31.563194043455166,
+ 500.0
+ ],
+ [
+ 117.064038461127126,
+ 31.542944695570785,
+ 500.0
+ ],
+ [
+ 116.972606,
+ 31.53612682005549,
+ 500.0
+ ],
+ [
+ 116.881173538872872,
+ 31.542944695570785,
+ 500.0
+ ],
+ [
+ 116.792480088535896,
+ 31.563194043455166,
+ 500.0
+ ],
+ [
+ 116.709186036553248,
+ 31.596267898626621,
+ 500.0
+ ],
+ [
+ 116.633796389065651,
+ 31.641174081487637,
+ 500.0
+ ],
+ [
+ 116.568587741180195,
+ 31.696563848927667,
+ 500.0
+ ],
+ [
+ 116.515540831959555,
+ 31.760771023173387,
+ 500.0
+ ],
+ [
+ 116.476280517402131,
+ 31.831860621667037,
+ 500.0
+ ],
+ [
+ 116.452024944271713,
+ 31.907685742642961,
+ 500.0
+ ],
+ [
+ 116.443545613479756,
+ 31.985951204658392,
+ 500.0
+ ],
+ [
+ 116.451139866941389,
+ 32.064282201184476,
+ 500.0
+ ],
+ [
+ 116.474617100332324,
+ 32.14029602295053,
+ 500.0
+ ],
+ [
+ 116.513299683594099,
+ 32.211674732686284,
+ 500.0
+ ],
+ [
+ 116.566039155801363,
+ 32.276236562402417,
+ 500.0
+ ],
+ [
+ 116.631247755274771,
+ 32.332003756029188,
+ 500.0
+ ],
+ [
+ 116.706944765604192,
+ 32.377264612625453,
+ 500.0
+ ],
+ [
+ 116.790816532069158,
+ 32.410627607022327,
+ 500.0
+ ],
+ [
+ 116.880288370557679,
+ 32.431065680304997,
+ 500.0
+ ],
+ [
+ 116.972606,
+ 32.437949100049451,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1406,
+ "name": "Hefei Xinqiao Airport",
+ "country": "CN",
+ "city": "Hefei",
+ "height": 0,
+ "level": 2,
+ "lat": "32.0259933971841",
+ "lng": "116.953375691035",
+ "radius": 13605,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.952259861,
+ 32.064480745799997,
+ 0.0
+ ],
+ [
+ 116.917294252,
+ 32.144474752100002,
+ 0.0
+ ],
+ [
+ 116.848520074,
+ 32.110117670699999,
+ 0.0
+ ],
+ [
+ 116.908519415,
+ 32.043434080700003,
+ 0.0
+ ],
+ [
+ 116.891630037,
+ 32.015881753599999,
+ 0.0
+ ],
+ [
+ 116.88964460699999,
+ 31.999369121,
+ 0.0
+ ],
+ [
+ 116.892766138,
+ 31.982983380699999,
+ 0.0
+ ],
+ [
+ 116.919089668,
+ 31.941206203699998,
+ 0.0
+ ],
+ [
+ 116.94453040099999,
+ 31.918618158499999,
+ 0.0
+ ],
+ [
+ 116.962312794,
+ 31.911714184,
+ 0.0
+ ],
+ [
+ 117.00105905,
+ 31.9105116667,
+ 0.0
+ ],
+ [
+ 116.952259861,
+ 32.064480745799997,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1406,
+ "name": "Hefei Xinqiao Airport",
+ "country": "CN",
+ "city": "Hefei",
+ "height": 0,
+ "level": 2,
+ "lat": "31.9516050527944",
+ "lng": "117.003507028285",
+ "radius": 13449,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.036056468,
+ 31.833852629900001,
+ 0.0
+ ],
+ [
+ 117.104809468,
+ 31.866550191399998,
+ 0.0
+ ],
+ [
+ 117.04148047699999,
+ 31.9349184386,
+ 0.0
+ ],
+ [
+ 117.058643798,
+ 31.960368029200001,
+ 0.0
+ ],
+ [
+ 117.061689143,
+ 31.976763978600001,
+ 0.0
+ ],
+ [
+ 117.052598831,
+ 32.008760741400003,
+ 0.0
+ ],
+ [
+ 117.03424387,
+ 32.035461495299998,
+ 0.0
+ ],
+ [
+ 117.008997773,
+ 32.056996290599997,
+ 0.0
+ ],
+ [
+ 116.991086057,
+ 32.063709669399998,
+ 0.0
+ ],
+ [
+ 116.952259861,
+ 32.064480745799997,
+ 0.0
+ ],
+ [
+ 117.00105905,
+ 31.9105116667,
+ 0.0
+ ],
+ [
+ 117.036056468,
+ 31.833852629900001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1406,
+ "name": "Hefei Xinqiao Airport",
+ "country": "CN",
+ "city": "Hefei",
+ "height": 120,
+ "level": 2,
+ "lat": "31.9882557404548",
+ "lng": "116.976447243358",
+ "radius": 23908,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.18389941,
+ 31.864849261900002,
+ 120.0
+ ],
+ [
+ 117.00103053399999,
+ 31.774260222300001,
+ 120.0
+ ],
+ [
+ 116.768745374,
+ 32.111698011,
+ 120.0
+ ],
+ [
+ 116.952288164,
+ 32.202287049799999,
+ 120.0
+ ],
+ [
+ 117.18389941,
+ 31.864849261900002,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001346,
+ "name": "Nanjing Lukou Airport",
+ "country": "CN",
+ "city": "Nanjing",
+ "height": 500,
+ "level": 2,
+ "lat": "31.73207",
+ "lng": "118.866446",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.866446,
+ 32.182983270358022,
+ 500.0
+ ],
+ [
+ 118.958505493746188,
+ 32.176099903382429,
+ 500.0
+ ],
+ [
+ 119.047727554716559,
+ 32.155661956660488,
+ 500.0
+ ],
+ [
+ 119.131365942109923,
+ 32.122299072108262,
+ 500.0
+ ],
+ [
+ 119.206853394148226,
+ 32.077038172926194,
+ 500.0
+ ],
+ [
+ 119.271882794573713,
+ 32.02127062393032,
+ 500.0
+ ],
+ [
+ 119.324478862795075,
+ 31.956707965910937,
+ 500.0
+ ],
+ [
+ 119.36305800761464,
+ 31.885327820809561,
+ 500.0
+ ],
+ [
+ 119.386474570897562,
+ 31.809311871909117,
+ 500.0
+ ],
+ [
+ 119.394052315337333,
+ 31.730978039104656,
+ 500.0
+ ],
+ [
+ 119.38560063262392,
+ 31.652709091689637,
+ 500.0
+ ],
+ [
+ 119.361415525455953,
+ 31.576879974479787,
+ 500.0
+ ],
+ [
+ 119.322265920645165,
+ 31.505786076908805,
+ 500.0
+ ],
+ [
+ 119.269366285076885,
+ 31.441574561356894,
+ 500.0
+ ],
+ [
+ 119.204336837257983,
+ 31.386180699918071,
+ 500.0
+ ],
+ [
+ 119.129152879955683,
+ 31.341270961148656,
+ 500.0
+ ],
+ [
+ 119.046084936093976,
+ 31.308194351620468,
+ 500.0
+ ],
+ [
+ 118.957631466402077,
+ 31.2879432607666,
+ 500.0
+ ],
+ [
+ 118.866446,
+ 31.28112478872891,
+ 500.0
+ ],
+ [
+ 118.775260533597915,
+ 31.2879432607666,
+ 500.0
+ ],
+ [
+ 118.686807063906016,
+ 31.308194351620468,
+ 500.0
+ ],
+ [
+ 118.60373912004431,
+ 31.341270961148656,
+ 500.0
+ ],
+ [
+ 118.528555162742009,
+ 31.386180699918071,
+ 500.0
+ ],
+ [
+ 118.463525714923108,
+ 31.441574561356894,
+ 500.0
+ ],
+ [
+ 118.410626079354827,
+ 31.505786076908805,
+ 500.0
+ ],
+ [
+ 118.371476474544039,
+ 31.576879974479787,
+ 500.0
+ ],
+ [
+ 118.347291367376073,
+ 31.652709091689637,
+ 500.0
+ ],
+ [
+ 118.338839684662659,
+ 31.730978039104656,
+ 500.0
+ ],
+ [
+ 118.346417429102431,
+ 31.809311871909117,
+ 500.0
+ ],
+ [
+ 118.369833992385352,
+ 31.885327820809561,
+ 500.0
+ ],
+ [
+ 118.408413137204917,
+ 31.956707965910937,
+ 500.0
+ ],
+ [
+ 118.461009205426279,
+ 32.02127062393032,
+ 500.0
+ ],
+ [
+ 118.526038605851767,
+ 32.077038172926194,
+ 500.0
+ ],
+ [
+ 118.601526057890069,
+ 32.122299072108262,
+ 500.0
+ ],
+ [
+ 118.685164445283434,
+ 32.155661956660488,
+ 500.0
+ ],
+ [
+ 118.774386506253805,
+ 32.176099903382429,
+ 500.0
+ ],
+ [
+ 118.866446,
+ 32.182983270358022,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001447,
+ "name": "Changzhou Airport",
+ "country": "CN",
+ "city": "Zhenjiang Shi",
+ "height": 500,
+ "level": 2,
+ "lat": "31.919481",
+ "lng": "119.77526",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.77526,
+ 32.370380922929826,
+ 500.0
+ ],
+ [
+ 119.867508902191744,
+ 32.363497517233881,
+ 500.0
+ ],
+ [
+ 119.95691423869475,
+ 32.34305947766466,
+ 500.0
+ ],
+ [
+ 120.040723869069751,
+ 32.309696512606038,
+ 500.0
+ ],
+ [
+ 120.116365085327075,
+ 32.264435644925257,
+ 500.0
+ ],
+ [
+ 120.181525973561719,
+ 32.208668357199123,
+ 500.0
+ ],
+ [
+ 120.234227264628942,
+ 32.144106307829809,
+ 500.0
+ ],
+ [
+ 120.272882307249773,
+ 32.072727217258844,
+ 500.0
+ ],
+ [
+ 120.296343386781786,
+ 31.996712830972307,
+ 500.0
+ ],
+ [
+ 120.303933244052615,
+ 31.918381081618136,
+ 500.0
+ ],
+ [
+ 120.295461273761049,
+ 31.840114694398498,
+ 500.0
+ ],
+ [
+ 120.271224461348467,
+ 31.764288512556952,
+ 500.0
+ ],
+ [
+ 120.231993622461871,
+ 31.693197772760492,
+ 500.0
+ ],
+ [
+ 120.178985924172579,
+ 31.628989445972532,
+ 500.0
+ ],
+ [
+ 120.113824987798139,
+ 31.573598591627945,
+ 500.0
+ ],
+ [
+ 120.038490105008464,
+ 31.528691464708047,
+ 500.0
+ ],
+ [
+ 119.955256254180455,
+ 31.495616878276614,
+ 500.0
+ ],
+ [
+ 119.866626698697786,
+ 31.475367067645617,
+ 500.0
+ ],
+ [
+ 119.77526,
+ 31.468549033757348,
+ 500.0
+ ],
+ [
+ 119.68389330130222,
+ 31.475367067645617,
+ 500.0
+ ],
+ [
+ 119.595263745819551,
+ 31.495616878276614,
+ 500.0
+ ],
+ [
+ 119.512029894991542,
+ 31.528691464708047,
+ 500.0
+ ],
+ [
+ 119.436695012201866,
+ 31.573598591627945,
+ 500.0
+ ],
+ [
+ 119.371534075827427,
+ 31.628989445972532,
+ 500.0
+ ],
+ [
+ 119.318526377538134,
+ 31.693197772760492,
+ 500.0
+ ],
+ [
+ 119.279295538651539,
+ 31.764288512556952,
+ 500.0
+ ],
+ [
+ 119.255058726238957,
+ 31.840114694398498,
+ 500.0
+ ],
+ [
+ 119.246586755947391,
+ 31.918381081618136,
+ 500.0
+ ],
+ [
+ 119.25417661321822,
+ 31.996712830972307,
+ 500.0
+ ],
+ [
+ 119.277637692750233,
+ 32.072727217258844,
+ 500.0
+ ],
+ [
+ 119.316292735371064,
+ 32.144106307829809,
+ 500.0
+ ],
+ [
+ 119.368994026438287,
+ 32.208668357199123,
+ 500.0
+ ],
+ [
+ 119.434154914672931,
+ 32.264435644925257,
+ 500.0
+ ],
+ [
+ 119.509796130930255,
+ 32.309696512606038,
+ 500.0
+ ],
+ [
+ 119.593605761305255,
+ 32.34305947766466,
+ 500.0
+ ],
+ [
+ 119.683011097808262,
+ 32.363497517233881,
+ 500.0
+ ],
+ [
+ 119.77526,
+ 32.370380922929826,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4256,
+ "name": "Nanjing Lukou Airport",
+ "country": "CN",
+ "city": "Nanjing",
+ "height": 0,
+ "level": 2,
+ "lat": "31.6998590246015",
+ "lng": "118.818915953568",
+ "radius": 13623,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.95305205,
+ 31.744488225200001,
+ 0.0
+ ],
+ [
+ 118.773641083,
+ 31.717097923600001,
+ 0.0
+ ],
+ [
+ 118.681987776,
+ 31.685523631799999,
+ 0.0
+ ],
+ [
+ 118.694138763802727,
+ 31.666763984091695,
+ 0.0
+ ],
+ [
+ 118.681950454,
+ 31.662113607199998,
+ 0.0
+ ],
+ [
+ 118.724926193,
+ 31.6070758531,
+ 0.0
+ ],
+ [
+ 118.80156537,
+ 31.6620772387,
+ 0.0
+ ],
+ [
+ 118.83072233599999,
+ 31.649951460800001,
+ 0.0
+ ],
+ [
+ 118.85011335,
+ 31.6482148198,
+ 0.0
+ ],
+ [
+ 118.869372261,
+ 31.650806811199999,
+ 0.0
+ ],
+ [
+ 118.918887237,
+ 31.6742341249,
+ 0.0
+ ],
+ [
+ 118.94482918,
+ 31.696329948100001,
+ 0.0
+ ],
+ [
+ 118.952534769,
+ 31.711578687900001,
+ 0.0
+ ],
+ [
+ 118.95305205,
+ 31.744488225200001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4256,
+ "name": "Nanjing Lukou Airport",
+ "country": "CN",
+ "city": "Nanjing",
+ "height": 0,
+ "level": 2,
+ "lat": "31.7618595777705",
+ "lng": "118.907651982998",
+ "radius": 13615,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.033591727561159,
+ 31.795683094414095,
+ 0.0
+ ],
+ [
+ 119.04470683,
+ 31.799528245,
+ 0.0
+ ],
+ [
+ 119.001742566,
+ 31.854590732,
+ 0.0
+ ],
+ [
+ 118.9251013,
+ 31.8029227701,
+ 0.0
+ ],
+ [
+ 118.895996518,
+ 31.8150149318,
+ 0.0
+ ],
+ [
+ 118.876571696,
+ 31.816760707,
+ 0.0
+ ],
+ [
+ 118.83943178299999,
+ 31.807425476199999,
+ 0.0
+ ],
+ [
+ 118.804429277,
+ 31.7874239225,
+ 0.0
+ ],
+ [
+ 118.780364314,
+ 31.765424439,
+ 0.0
+ ],
+ [
+ 118.773131554,
+ 31.750007548700001,
+ 0.0
+ ],
+ [
+ 118.770839266,
+ 31.733524184899998,
+ 0.0
+ ],
+ [
+ 118.773641083,
+ 31.717097923600001,
+ 0.0
+ ],
+ [
+ 118.95305205,
+ 31.744488225200001,
+ 0.0
+ ],
+ [
+ 119.044706175,
+ 31.779527491900001,
+ 0.0
+ ],
+ [
+ 119.033591727561159,
+ 31.795683094414095,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4256,
+ "name": "Nanjing Lukou Airport",
+ "country": "CN",
+ "city": "Nanjing",
+ "height": 120,
+ "level": 2,
+ "lat": "31.7354047315685",
+ "lng": "118.856966125679",
+ "radius": 24984,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.09564098950716,
+ 31.774906758929646,
+ 120.0
+ ],
+ [
+ 119.114583077,
+ 31.7495721182,
+ 120.0
+ ],
+ [
+ 118.726657973,
+ 31.5400133011,
+ 120.0
+ ],
+ [
+ 118.613402311,
+ 31.691833188699999,
+ 120.0
+ ],
+ [
+ 118.617609110392436,
+ 31.694107222531059,
+ 120.0
+ ],
+ [
+ 118.61275450799999,
+ 31.6998213418,
+ 120.0
+ ],
+ [
+ 118.987824922,
+ 31.930663023800001,
+ 120.0
+ ],
+ [
+ 119.11194384,
+ 31.7849322892,
+ 120.0
+ ],
+ [
+ 119.09564098950716,
+ 31.774906758929646,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2185,
+ "name": "Changzhou Airport",
+ "country": "CN",
+ "city": "Zhenjiang Shi",
+ "height": 0,
+ "level": 2,
+ "lat": "31.9339555950937",
+ "lng": "119.725725220097",
+ "radius": 13585,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.701231152,
+ 31.967850109600001,
+ 0.0
+ ],
+ [
+ 119.609582716,
+ 32.006208302099999,
+ 0.0
+ ],
+ [
+ 119.58211241399999,
+ 31.942617913599999,
+ 0.0
+ ],
+ [
+ 119.683788412,
+ 31.925940177499999,
+ 0.0
+ ],
+ [
+ 119.691527979,
+ 31.899527908700001,
+ 0.0
+ ],
+ [
+ 119.702409484,
+ 31.8857385799,
+ 0.0
+ ],
+ [
+ 119.71712021899999,
+ 31.874808820199998,
+ 0.0
+ ],
+ [
+ 119.767990587,
+ 31.855815768,
+ 0.0
+ ],
+ [
+ 119.801693322,
+ 31.852237919499998,
+ 0.0
+ ],
+ [
+ 119.820696657,
+ 31.856105646900001,
+ 0.0
+ ],
+ [
+ 119.852063779,
+ 31.875433290099998,
+ 0.0
+ ],
+ [
+ 119.701231152,
+ 31.967850109600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2185,
+ "name": "Changzhou Airport",
+ "country": "CN",
+ "city": "Zhenjiang Shi",
+ "height": 0,
+ "level": 2,
+ "lat": "31.9043606820118",
+ "lng": "119.824297659636",
+ "radius": 13590,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.940381804,
+ 31.8321167862,
+ 0.0
+ ],
+ [
+ 119.967901271,
+ 31.8956974884,
+ 0.0
+ ],
+ [
+ 119.869555519,
+ 31.915713408199998,
+ 0.0
+ ],
+ [
+ 119.861039647,
+ 31.946310179200001,
+ 0.0
+ ],
+ [
+ 119.84978866199999,
+ 31.959888492699999,
+ 0.0
+ ],
+ [
+ 119.834775646,
+ 31.9705318412,
+ 0.0
+ ],
+ [
+ 119.785357694,
+ 31.98751327,
+ 0.0
+ ],
+ [
+ 119.751643544,
+ 31.991078976800001,
+ 0.0
+ ],
+ [
+ 119.73261455399999,
+ 31.987203282199999,
+ 0.0
+ ],
+ [
+ 119.701231152,
+ 31.967850109600001,
+ 0.0
+ ],
+ [
+ 119.852063779,
+ 31.875433290099998,
+ 0.0
+ ],
+ [
+ 119.940381804,
+ 31.8321167862,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2185,
+ "name": "Changzhou Airport",
+ "country": "CN",
+ "city": "Zhenjiang Shi",
+ "height": 120,
+ "level": 2,
+ "lat": "31.9217581400533",
+ "lng": "119.77608073245",
+ "radius": 23845,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.028317882,
+ 31.934440092700001,
+ 120.0
+ ],
+ [
+ 119.950884003,
+ 31.767033645800002,
+ 120.0
+ ],
+ [
+ 119.52385456099999,
+ 31.909415102600001,
+ 120.0
+ ],
+ [
+ 119.60140841099999,
+ 32.076821549400002,
+ 120.0
+ ],
+ [
+ 120.028317882,
+ 31.934440092700001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8079,
+ "name": "Sunan Shuofang International Airport",
+ "country": "CN",
+ "city": "Wuxi",
+ "height": 0,
+ "level": 2,
+ "lat": "31.4574446873222",
+ "lng": "120.413106445644",
+ "radius": 13827,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.375217099,
+ 31.432881160800001,
+ 0.0
+ ],
+ [
+ 120.325958906,
+ 31.357790153900002,
+ 0.0
+ ],
+ [
+ 120.402342729,
+ 31.333433337799999,
+ 0.0
+ ],
+ [
+ 120.422799423,
+ 31.417725313799998,
+ 0.0
+ ],
+ [
+ 120.442744417,
+ 31.418507545099999,
+ 0.0
+ ],
+ [
+ 120.47760989,
+ 31.4325819313,
+ 0.0
+ ],
+ [
+ 120.499570451,
+ 31.459641532700001,
+ 0.0
+ ],
+ [
+ 120.517587815,
+ 31.506494319800002,
+ 0.0
+ ],
+ [
+ 120.517066172,
+ 31.523086600599999,
+ 0.0
+ ],
+ [
+ 120.51152344,
+ 31.538998285400002,
+ 0.0
+ ],
+ [
+ 120.48719440399999,
+ 31.564559939399999,
+ 0.0
+ ],
+ [
+ 120.375217099,
+ 31.432881160800001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8079,
+ "name": "Sunan Shuofang International Airport",
+ "country": "CN",
+ "city": "Wuxi",
+ "height": 0,
+ "level": 2,
+ "lat": "31.5400014738401",
+ "lng": "120.44928950846",
+ "radius": 13827,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.536609741,
+ 31.639661845199999,
+ 0.0
+ ],
+ [
+ 120.460014511,
+ 31.6640228264,
+ 0.0
+ ],
+ [
+ 120.439494524,
+ 31.579746868699999,
+ 0.0
+ ],
+ [
+ 120.41943329199999,
+ 31.5789476992,
+ 0.0
+ ],
+ [
+ 120.384544015,
+ 31.564817965900001,
+ 0.0
+ ],
+ [
+ 120.36263435399999,
+ 31.537713866099999,
+ 0.0
+ ],
+ [
+ 120.344723834,
+ 31.490899561700001,
+ 0.0
+ ],
+ [
+ 120.34528599399999,
+ 31.4743082474,
+ 0.0
+ ],
+ [
+ 120.350862866,
+ 31.458406214899998,
+ 0.0
+ ],
+ [
+ 120.375217099,
+ 31.432881160800001,
+ 0.0
+ ],
+ [
+ 120.48719440399999,
+ 31.564559939399999,
+ 0.0
+ ],
+ [
+ 120.536609741,
+ 31.639661845199999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8079,
+ "name": "Sunan Shuofang International Airport",
+ "country": "CN",
+ "city": "Wuxi",
+ "height": 120,
+ "level": 2,
+ "lat": "31.4986904563006",
+ "lng": "120.431293837895",
+ "radius": 23979,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.412718658,
+ 31.7137638594,
+ 120.0
+ ],
+ [
+ 120.610713669,
+ 31.6508130018,
+ 120.0
+ ],
+ [
+ 120.44941533799999,
+ 31.283591534399999,
+ 120.0
+ ],
+ [
+ 120.252196408,
+ 31.3465423928,
+ 120.0
+ ],
+ [
+ 120.412718658,
+ 31.7137638594,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001523,
+ "name": "Sunan Shuofang International Airport",
+ "country": "CN",
+ "city": "Wuxi",
+ "height": 500,
+ "level": 2,
+ "lat": "31.49862",
+ "lng": "120.435263",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.435263,
+ 31.949549837115747,
+ 500.0
+ ],
+ [
+ 120.527089012486243,
+ 31.942666517897827,
+ 500.0
+ ],
+ [
+ 120.616085152603574,
+ 31.9222286855547,
+ 500.0
+ ],
+ [
+ 120.699512452344905,
+ 31.888865899624889,
+ 500.0
+ ],
+ [
+ 120.774810363681823,
+ 31.843604959785761,
+ 500.0
+ ],
+ [
+ 120.839677684473514,
+ 31.787837084906265,
+ 500.0
+ ],
+ [
+ 120.892144050700637,
+ 31.723273670017438,
+ 500.0
+ ],
+ [
+ 120.930629643025512,
+ 31.65189221499606,
+ 500.0
+ ],
+ [
+ 120.953991337897406,
+ 31.575874326059974,
+ 500.0
+ ],
+ [
+ 120.961554157058274,
+ 31.497537907348296,
+ 500.0
+ ],
+ [
+ 120.953127487810946,
+ 31.41926578287903,
+ 500.0
+ ],
+ [
+ 120.929006120754522,
+ 31.343433023466975,
+ 500.0
+ ],
+ [
+ 120.889956653752677,
+ 31.272335208029041,
+ 500.0
+ ],
+ [
+ 120.837190224765564,
+ 31.208119736360764,
+ 500.0
+ ],
+ [
+ 120.772322857492526,
+ 31.152722144317881,
+ 500.0
+ ],
+ [
+ 120.697324937702106,
+ 31.107809165357004,
+ 500.0
+ ],
+ [
+ 120.614461496494954,
+ 31.074730046063817,
+ 500.0
+ ],
+ [
+ 120.52622507504347,
+ 31.054477367034874,
+ 500.0
+ ],
+ [
+ 120.435263,
+ 31.047658351454832,
+ 500.0
+ ],
+ [
+ 120.344300924956542,
+ 31.054477367034874,
+ 500.0
+ ],
+ [
+ 120.256064503505058,
+ 31.074730046063817,
+ 500.0
+ ],
+ [
+ 120.173201062297906,
+ 31.107809165357004,
+ 500.0
+ ],
+ [
+ 120.098203142507487,
+ 31.152722144317881,
+ 500.0
+ ],
+ [
+ 120.033335775234448,
+ 31.208119736360764,
+ 500.0
+ ],
+ [
+ 119.980569346247336,
+ 31.272335208029041,
+ 500.0
+ ],
+ [
+ 119.94151987924549,
+ 31.343433023466975,
+ 500.0
+ ],
+ [
+ 119.917398512189067,
+ 31.41926578287903,
+ 500.0
+ ],
+ [
+ 119.908971842941739,
+ 31.497537907348296,
+ 500.0
+ ],
+ [
+ 119.916534662102606,
+ 31.575874326059974,
+ 500.0
+ ],
+ [
+ 119.939896356974501,
+ 31.65189221499606,
+ 500.0
+ ],
+ [
+ 119.978381949299376,
+ 31.723273670017438,
+ 500.0
+ ],
+ [
+ 120.030848315526498,
+ 31.787837084906265,
+ 500.0
+ ],
+ [
+ 120.095715636318189,
+ 31.843604959785761,
+ 500.0
+ ],
+ [
+ 120.171013547655107,
+ 31.888865899624889,
+ 500.0
+ ],
+ [
+ 120.254440847396438,
+ 31.9222286855547,
+ 500.0
+ ],
+ [
+ 120.343436987513769,
+ 31.942666517897827,
+ 500.0
+ ],
+ [
+ 120.435263,
+ 31.949549837115747,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287824,
+ "name": "Shimla Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "31.0817469880533",
+ "lng": "77.0679115261136",
+ "radius": 7302,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 77.052039210499998,
+ 31.111752821700001,
+ 0.0
+ ],
+ [
+ 77.094256749500005,
+ 31.057749847699998,
+ 0.0
+ ],
+ [
+ 77.119971576200001,
+ 31.033538087699998,
+ 0.0
+ ],
+ [
+ 77.100118204699996,
+ 31.022150702600001,
+ 0.0
+ ],
+ [
+ 77.083789386500001,
+ 31.051745276,
+ 0.0
+ ],
+ [
+ 77.041565445800003,
+ 31.105748829100001,
+ 0.0
+ ],
+ [
+ 77.015826346699995,
+ 31.129956904299998,
+ 0.0
+ ],
+ [
+ 77.035692135100007,
+ 31.141346238800001,
+ 0.0
+ ],
+ [
+ 77.052039210499998,
+ 31.111752821700001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001368,
+ "name": "Guanghan Airport",
+ "country": "CN",
+ "city": "Civil Aviation Flight University of China",
+ "height": 500,
+ "level": 2,
+ "lat": "30.948072",
+ "lng": "104.329336",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.329336,
+ 31.399040638947259,
+ 500.0
+ ],
+ [
+ 104.420622028308756,
+ 31.392157430481305,
+ 500.0
+ ],
+ [
+ 104.509095671732481,
+ 31.371719862880195,
+ 500.0
+ ],
+ [
+ 104.592034784287492,
+ 31.338357303198435,
+ 500.0
+ ],
+ [
+ 104.666894346494743,
+ 31.293096262486607,
+ 500.0
+ ],
+ [
+ 104.731386834656874,
+ 31.237327618589891,
+ 500.0
+ ],
+ [
+ 104.783553255230999,
+ 31.17276242596121,
+ 500.0
+ ],
+ [
+ 104.821822510985839,
+ 31.101377899287694,
+ 500.0
+ ],
+ [
+ 104.845057338098073,
+ 31.025355464794178,
+ 500.0
+ ],
+ [
+ 104.852585667358099,
+ 30.947012989964904,
+ 500.0
+ ],
+ [
+ 104.844216872715435,
+ 30.868733426963171,
+ 500.0
+ ],
+ [
+ 104.82024293825954,
+ 30.792892141427796,
+ 500.0
+ ],
+ [
+ 104.781425072742834,
+ 30.721785155581685,
+ 500.0
+ ],
+ [
+ 104.728966713098941,
+ 30.657560424651965,
+ 500.0
+ ],
+ [
+ 104.66447418053167,
+ 30.602154101572168,
+ 500.0
+ ],
+ [
+ 104.589906489361525,
+ 30.55723353955786,
+ 500.0
+ ],
+ [
+ 104.507515971146603,
+ 30.524148546746833,
+ 500.0
+ ],
+ [
+ 104.419781479471709,
+ 30.503892151005992,
+ 500.0
+ ],
+ [
+ 104.329336,
+ 30.497071863412348,
+ 500.0
+ ],
+ [
+ 104.238890520528287,
+ 30.503892151005992,
+ 500.0
+ ],
+ [
+ 104.151156028853393,
+ 30.524148546746833,
+ 500.0
+ ],
+ [
+ 104.068765510638471,
+ 30.55723353955786,
+ 500.0
+ ],
+ [
+ 103.994197819468326,
+ 30.602154101572168,
+ 500.0
+ ],
+ [
+ 103.929705286901054,
+ 30.657560424651965,
+ 500.0
+ ],
+ [
+ 103.877246927257161,
+ 30.721785155581685,
+ 500.0
+ ],
+ [
+ 103.838429061740456,
+ 30.792892141427796,
+ 500.0
+ ],
+ [
+ 103.81445512728456,
+ 30.868733426963171,
+ 500.0
+ ],
+ [
+ 103.806086332641897,
+ 30.947012989964904,
+ 500.0
+ ],
+ [
+ 103.813614661901923,
+ 31.025355464794178,
+ 500.0
+ ],
+ [
+ 103.836849489014156,
+ 31.101377899287694,
+ 500.0
+ ],
+ [
+ 103.875118744768997,
+ 31.17276242596121,
+ 500.0
+ ],
+ [
+ 103.927285165343122,
+ 31.237327618589891,
+ 500.0
+ ],
+ [
+ 103.991777653505252,
+ 31.293096262486607,
+ 500.0
+ ],
+ [
+ 104.066637215712504,
+ 31.338357303198435,
+ 500.0
+ ],
+ [
+ 104.149576328267514,
+ 31.371719862880195,
+ 500.0
+ ],
+ [
+ 104.23804997169124,
+ 31.392157430481305,
+ 500.0
+ ],
+ [
+ 104.329336,
+ 31.399040638947259,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002561,
+ "name": "阆中古城机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "31.4904245302495",
+ "lng": "106.027614822388",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.027614822387704,
+ 31.94135494774299,
+ 500.0
+ ],
+ [
+ 106.119432687510169,
+ 31.93447163019249,
+ 500.0
+ ],
+ [
+ 106.208420944094684,
+ 31.914033801840244,
+ 500.0
+ ],
+ [
+ 106.291840877927612,
+ 31.880671019341147,
+ 500.0
+ ],
+ [
+ 106.36713217526362,
+ 31.835410078048664,
+ 500.0
+ ],
+ [
+ 106.431993840338478,
+ 31.779642191722925,
+ 500.0
+ ],
+ [
+ 106.48445568069593,
+ 31.715078750292761,
+ 500.0
+ ],
+ [
+ 106.522938008612343,
+ 31.643697249362276,
+ 500.0
+ ],
+ [
+ 106.546297788972311,
+ 31.567679292452173,
+ 500.0
+ ],
+ [
+ 106.55386008744,
+ 31.489342783150892,
+ 500.0
+ ],
+ [
+ 106.545434291150968,
+ 31.411070547393521,
+ 500.0
+ ],
+ [
+ 106.521315148393541,
+ 31.335237660407568,
+ 500.0
+ ],
+ [
+ 106.482269175749806,
+ 31.264139707745571,
+ 500.0
+ ],
+ [
+ 106.429507395007363,
+ 31.199924097517147,
+ 500.0
+ ],
+ [
+ 106.364645683482848,
+ 31.144526374814774,
+ 500.0
+ ],
+ [
+ 106.289654255366841,
+ 31.099613282371738,
+ 500.0
+ ],
+ [
+ 106.206797950129442,
+ 31.066534075178961,
+ 500.0
+ ],
+ [
+ 106.11856910239203,
+ 31.046281340527528,
+ 500.0
+ ],
+ [
+ 106.027614822387704,
+ 31.039462305911105,
+ 500.0
+ ],
+ [
+ 105.936660542383379,
+ 31.046281340527528,
+ 500.0
+ ],
+ [
+ 105.848431694645967,
+ 31.066534075178961,
+ 500.0
+ ],
+ [
+ 105.765575389408568,
+ 31.099613282371738,
+ 500.0
+ ],
+ [
+ 105.69058396129256,
+ 31.144526374814774,
+ 500.0
+ ],
+ [
+ 105.625722249768046,
+ 31.199924097517147,
+ 500.0
+ ],
+ [
+ 105.572960469025602,
+ 31.264139707745571,
+ 500.0
+ ],
+ [
+ 105.533914496381868,
+ 31.335237660407568,
+ 500.0
+ ],
+ [
+ 105.50979535362444,
+ 31.411070547393521,
+ 500.0
+ ],
+ [
+ 105.501369557335408,
+ 31.489342783150892,
+ 500.0
+ ],
+ [
+ 105.508931855803098,
+ 31.567679292452173,
+ 500.0
+ ],
+ [
+ 105.532291636163066,
+ 31.643697249362276,
+ 500.0
+ ],
+ [
+ 105.570773964079478,
+ 31.715078750292761,
+ 500.0
+ ],
+ [
+ 105.623235804436931,
+ 31.779642191722925,
+ 500.0
+ ],
+ [
+ 105.688097469511789,
+ 31.835410078048664,
+ 500.0
+ ],
+ [
+ 105.763388766847797,
+ 31.880671019341147,
+ 500.0
+ ],
+ [
+ 105.846808700680725,
+ 31.914033801840244,
+ 500.0
+ ],
+ [
+ 105.935796957265239,
+ 31.93447163019249,
+ 500.0
+ ],
+ [
+ 106.027614822387704,
+ 31.94135494774299,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002560,
+ "name": "阆中古城机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "31.4628967855569",
+ "lng": "106.010511212975",
+ "radius": 13476,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.91211376,
+ 31.375503446700002,
+ 0.0
+ ],
+ [
+ 105.980401535,
+ 31.344456441799998,
+ 0.0
+ ],
+ [
+ 106.014369912,
+ 31.425903394900001,
+ 0.0
+ ],
+ [
+ 106.03543543799999,
+ 31.424114679799999,
+ 0.0
+ ],
+ [
+ 106.0722279,
+ 31.433994756699999,
+ 0.0
+ ],
+ [
+ 106.0871404,
+ 31.444654057400001,
+ 0.0
+ ],
+ [
+ 106.112725283,
+ 31.481287678,
+ 0.0
+ ],
+ [
+ 106.121763441,
+ 31.5147688405,
+ 0.0
+ ],
+ [
+ 106.110015229,
+ 31.546120975200001,
+ 0.0
+ ],
+ [
+ 106.097438036,
+ 31.558794978,
+ 0.0
+ ],
+ [
+ 105.972282363,
+ 31.4450212695,
+ 0.0
+ ],
+ [
+ 105.91211376,
+ 31.375503446700002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002560,
+ "name": "阆中古城机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "31.540908629837",
+ "lng": "106.059220968288",
+ "radius": 13477,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.097438036,
+ 31.558794978,
+ 0.0
+ ],
+ [
+ 106.157786444,
+ 31.6283157198,
+ 0.0
+ ],
+ [
+ 106.089319913,
+ 31.659369032499999,
+ 0.0
+ ],
+ [
+ 106.05524097599999,
+ 31.5779521937,
+ 0.0
+ ],
+ [
+ 106.014886508,
+ 31.576839404099999,
+ 0.0
+ ],
+ [
+ 105.99723871,
+ 31.569808184799999,
+ 0.0
+ ],
+ [
+ 105.971181317,
+ 31.545513751,
+ 0.0
+ ],
+ [
+ 105.949453817,
+ 31.505548998199998,
+ 0.0
+ ],
+ [
+ 105.9478715,
+ 31.489005684199999,
+ 0.0
+ ],
+ [
+ 105.951363895,
+ 31.472676848399999,
+ 0.0
+ ],
+ [
+ 105.972282363,
+ 31.4450212695,
+ 0.0
+ ],
+ [
+ 106.097438036,
+ 31.558794978,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002560,
+ "name": "阆中古城机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "31.5018496320277",
+ "lng": "106.034980402929",
+ "radius": 23666,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.021542974,
+ 31.289324560299999,
+ 120.0
+ ],
+ [
+ 105.835675908,
+ 31.373856572200001,
+ 120.0
+ ],
+ [
+ 106.047997052,
+ 31.714392354899999,
+ 120.0
+ ],
+ [
+ 106.234542364,
+ 31.629860343800001,
+ 120.0
+ ],
+ [
+ 106.021542974,
+ 31.289324560299999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2317,
+ "name": "Guanghan Airport",
+ "country": "CN",
+ "city": "Civil Aviation Flight University of China",
+ "height": 0,
+ "level": 2,
+ "lat": "30.9224590200861",
+ "lng": "104.371296156208",
+ "radius": 13387,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.384935261,
+ 30.887202193899999,
+ 0.0
+ ],
+ [
+ 104.456148559,
+ 30.826587817099998,
+ 0.0
+ ],
+ [
+ 104.50386343,
+ 30.883005071700001,
+ 0.0
+ ],
+ [
+ 104.414691987,
+ 30.922367929699998,
+ 0.0
+ ],
+ [
+ 104.41910232399999,
+ 30.938941391499998,
+ 0.0
+ ],
+ [
+ 104.418317779,
+ 30.9555259869,
+ 0.0
+ ],
+ [
+ 104.412553547,
+ 30.971371182799999,
+ 0.0
+ ],
+ [
+ 104.38796264299999,
+ 30.996645246300002,
+ 0.0
+ ],
+ [
+ 104.347784974,
+ 31.019132918,
+ 0.0
+ ],
+ [
+ 104.309619231,
+ 31.022802831,
+ 0.0
+ ],
+ [
+ 104.274432361,
+ 31.0096175139,
+ 0.0
+ ],
+ [
+ 104.384935261,
+ 30.887202193899999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2317,
+ "name": "Guanghan Airport",
+ "country": "CN",
+ "city": "Civil Aviation Flight University of China",
+ "height": 0,
+ "level": 2,
+ "lat": "30.9742644286965",
+ "lng": "104.28800209949",
+ "radius": 13386,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.203091748,
+ 31.0701740499,
+ 0.0
+ ],
+ [
+ 104.155330217,
+ 31.013750399,
+ 0.0
+ ],
+ [
+ 104.244704518,
+ 30.9744827492,
+ 0.0
+ ],
+ [
+ 104.240306055,
+ 30.957824715099999,
+ 0.0
+ ],
+ [
+ 104.241137601,
+ 30.941241803400001,
+ 0.0
+ ],
+ [
+ 104.246943788,
+ 30.925408368799999,
+ 0.0
+ ],
+ [
+ 104.27157811,
+ 30.900178582900001,
+ 0.0
+ ],
+ [
+ 104.311675346,
+ 30.877735084499999,
+ 0.0
+ ],
+ [
+ 104.349781247,
+ 30.874050372,
+ 0.0
+ ],
+ [
+ 104.384935261,
+ 30.887202193899999,
+ 0.0
+ ],
+ [
+ 104.274432361,
+ 31.0096175139,
+ 0.0
+ ],
+ [
+ 104.203091748,
+ 31.0701740499,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2317,
+ "name": "Guanghan Airport",
+ "country": "CN",
+ "city": "Civil Aviation Flight University of China",
+ "height": 120,
+ "level": 2,
+ "lat": "30.9481968790296",
+ "lng": "104.32952444635",
+ "radius": 23568,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.086778436,
+ 30.9882049729,
+ 120.0
+ ],
+ [
+ 104.21006544799999,
+ 31.133799376300001,
+ 120.0
+ ],
+ [
+ 104.572218189,
+ 30.9084118026,
+ 120.0
+ ],
+ [
+ 104.449221647,
+ 30.762817398799999,
+ 120.0
+ ],
+ [
+ 104.086778436,
+ 30.9882049729,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045013,
+ "name": "达州金垭机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "31.04517",
+ "lng": "107.437831",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.437831,
+ 31.496131823367275,
+ 500.0
+ ],
+ [
+ 107.529211189170184,
+ 31.489248595544765,
+ 500.0
+ ],
+ [
+ 107.617775943805555,
+ 31.468810981718356,
+ 500.0
+ ],
+ [
+ 107.70080018434497,
+ 31.435448382711463,
+ 500.0
+ ],
+ [
+ 107.775736183343938,
+ 31.390187360210909,
+ 500.0
+ ],
+ [
+ 107.840294031838496,
+ 31.334418851890998,
+ 500.0
+ ],
+ [
+ 107.892512753573314,
+ 31.269853971955399,
+ 500.0
+ ],
+ [
+ 107.930819730521392,
+ 31.198469985123229,
+ 500.0
+ ],
+ [
+ 107.954076677290729,
+ 31.122448349191771,
+ 500.0
+ ],
+ [
+ 107.961611017706772,
+ 31.044106938063514,
+ 500.0
+ ],
+ [
+ 107.953232128394973,
+ 30.965828681397383,
+ 500.0
+ ],
+ [
+ 107.929232483183767,
+ 30.889988893072978,
+ 500.0
+ ],
+ [
+ 107.89037423086765,
+ 30.818883517490871,
+ 500.0
+ ],
+ [
+ 107.837862151482014,
+ 30.75466041237231,
+ 500.0
+ ],
+ [
+ 107.773304258223575,
+ 30.699255622321225,
+ 500.0
+ ],
+ [
+ 107.698661548293188,
+ 30.65433639175064,
+ 500.0
+ ],
+ [
+ 107.616188567575463,
+ 30.621252430212358,
+ 500.0
+ ],
+ [
+ 107.528366556145855,
+ 30.600996687049243,
+ 500.0
+ ],
+ [
+ 107.437831,
+ 30.594176622794429,
+ 500.0
+ ],
+ [
+ 107.347295443854151,
+ 30.600996687049243,
+ 500.0
+ ],
+ [
+ 107.259473432424542,
+ 30.621252430212358,
+ 500.0
+ ],
+ [
+ 107.177000451706817,
+ 30.65433639175064,
+ 500.0
+ ],
+ [
+ 107.10235774177643,
+ 30.699255622321225,
+ 500.0
+ ],
+ [
+ 107.037799848517992,
+ 30.75466041237231,
+ 500.0
+ ],
+ [
+ 106.985287769132356,
+ 30.818883517490871,
+ 500.0
+ ],
+ [
+ 106.946429516816238,
+ 30.889988893072978,
+ 500.0
+ ],
+ [
+ 106.922429871605033,
+ 30.965828681397383,
+ 500.0
+ ],
+ [
+ 106.914050982293233,
+ 31.044106938063514,
+ 500.0
+ ],
+ [
+ 106.921585322709277,
+ 31.122448349191771,
+ 500.0
+ ],
+ [
+ 106.944842269478613,
+ 31.198469985123229,
+ 500.0
+ ],
+ [
+ 106.983149246426692,
+ 31.269853971955399,
+ 500.0
+ ],
+ [
+ 107.035367968161509,
+ 31.334418851890998,
+ 500.0
+ ],
+ [
+ 107.099925816656068,
+ 31.390187360210909,
+ 500.0
+ ],
+ [
+ 107.174861815655035,
+ 31.435448382711463,
+ 500.0
+ ],
+ [
+ 107.257886056194451,
+ 31.468810981718356,
+ 500.0
+ ],
+ [
+ 107.346450810829822,
+ 31.489248595544765,
+ 500.0
+ ],
+ [
+ 107.437831,
+ 31.496131823367275,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4130,
+ "name": "Nanchong Airport",
+ "country": "CN",
+ "city": "Nanchong",
+ "height": 0,
+ "level": 2,
+ "lat": "30.8177715980965",
+ "lng": "106.205670926139",
+ "radius": 13589,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.250520717,
+ 30.816221507200002,
+ 0.0
+ ],
+ [
+ 106.343161741,
+ 30.849371354199999,
+ 0.0
+ ],
+ [
+ 106.301455758,
+ 30.9081919636,
+ 0.0
+ ],
+ [
+ 106.224592446,
+ 30.8528128743,
+ 0.0
+ ],
+ [
+ 106.190106605,
+ 30.868681970299999,
+ 0.0
+ ],
+ [
+ 106.17085367,
+ 30.870233812599999,
+ 0.0
+ ],
+ [
+ 106.134215701,
+ 30.8605289578,
+ 0.0
+ ],
+ [
+ 106.090661395,
+ 30.8352484778,
+ 0.0
+ ],
+ [
+ 106.079230813,
+ 30.821863499199999,
+ 0.0
+ ],
+ [
+ 106.072226572,
+ 30.8063936715,
+ 0.0
+ ],
+ [
+ 106.073064286,
+ 30.773489061700001,
+ 0.0
+ ],
+ [
+ 106.250520717,
+ 30.816221507200002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4130,
+ "name": "Nanchong Airport",
+ "country": "CN",
+ "city": "Nanchong",
+ "height": 0,
+ "level": 2,
+ "lat": "30.7718612334784",
+ "lng": "106.117963869577",
+ "radius": 13588,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.980579449,
+ 30.740313915400002,
+ 0.0
+ ],
+ [
+ 106.022257333,
+ 30.681499177599999,
+ 0.0
+ ],
+ [
+ 106.098951643,
+ 30.736976749499998,
+ 0.0
+ ],
+ [
+ 106.115280389,
+ 30.726899657699999,
+ 0.0
+ ],
+ [
+ 106.152602988,
+ 30.719562372,
+ 0.0
+ ],
+ [
+ 106.17164015199999,
+ 30.722331643499999,
+ 0.0
+ ],
+ [
+ 106.21700169099999,
+ 30.7437831897,
+ 0.0
+ ],
+ [
+ 106.244226029,
+ 30.767859286299998,
+ 0.0
+ ],
+ [
+ 106.253416513,
+ 30.799810670799999,
+ 0.0
+ ],
+ [
+ 106.250520717,
+ 30.816221507200002,
+ 0.0
+ ],
+ [
+ 106.073064286,
+ 30.773489061700001,
+ 0.0
+ ],
+ [
+ 105.980579449,
+ 30.740313915400002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4130,
+ "name": "Nanchong Airport",
+ "country": "CN",
+ "city": "Nanchong",
+ "height": 120,
+ "level": 2,
+ "lat": "30.7946400608178",
+ "lng": "106.161943253638",
+ "radius": 23760,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.023605229,
+ 30.617123738699998,
+ 120.0
+ ],
+ [
+ 105.914783277,
+ 30.770729039,
+ 120.0
+ ],
+ [
+ 106.300080711,
+ 30.972413071799998,
+ 120.0
+ ],
+ [
+ 106.409131206,
+ 30.8188077718,
+ 120.0
+ ],
+ [
+ 106.023605229,
+ 30.617123738699998,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045012,
+ "name": "达州金垭机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "31.0901541848091",
+ "lng": "107.453642194876",
+ "radius": 13330,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.53553027,
+ 31.187413488899999,
+ 0.0
+ ],
+ [
+ 107.46288204,
+ 31.209775944800001,
+ 0.0
+ ],
+ [
+ 107.442979068,
+ 31.1250329509,
+ 0.0
+ ],
+ [
+ 107.421818161,
+ 31.124208578800001,
+ 0.0
+ ],
+ [
+ 107.38721160599999,
+ 31.1098745615,
+ 0.0
+ ],
+ [
+ 107.365625788,
+ 31.082642692299999,
+ 0.0
+ ],
+ [
+ 107.351994387,
+ 31.042994130499999,
+ 0.0
+ ],
+ [
+ 107.353204506,
+ 31.0264283106,
+ 0.0
+ ],
+ [
+ 107.359375553,
+ 31.010695149499998,
+ 0.0
+ ],
+ [
+ 107.38460186099999,
+ 30.985882790800002,
+ 0.0
+ ],
+ [
+ 107.487747067,
+ 31.111238777699999,
+ 0.0
+ ],
+ [
+ 107.53553027,
+ 31.187413488899999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045012,
+ "name": "达州金垭机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "31.0069698003924",
+ "lng": "107.418698412941",
+ "radius": 13329,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.38460186099999,
+ 30.985882790800002,
+ 0.0
+ ],
+ [
+ 107.336969426,
+ 30.909714262400001,
+ 0.0
+ ],
+ [
+ 107.409415336,
+ 30.8873566812,
+ 0.0
+ ],
+ [
+ 107.429259313,
+ 30.972115363499999,
+ 0.0
+ ],
+ [
+ 107.450307272,
+ 30.972922638,
+ 0.0
+ ],
+ [
+ 107.48489444099999,
+ 30.9872026844,
+ 0.0
+ ],
+ [
+ 107.506532484,
+ 31.0143914706,
+ 0.0
+ ],
+ [
+ 107.520258142,
+ 31.054077356400001,
+ 0.0
+ ],
+ [
+ 107.519087856,
+ 31.0706452949,
+ 0.0
+ ],
+ [
+ 107.512949887,
+ 31.086389063,
+ 0.0
+ ],
+ [
+ 107.487747067,
+ 31.111238777699999,
+ 0.0
+ ],
+ [
+ 107.38460186099999,
+ 30.985882790800002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045012,
+ "name": "达州金垭机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "31.0485339773745",
+ "lng": "107.436255724426",
+ "radius": 23529,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.41296429099999,
+ 31.259197671799999,
+ 120.0
+ ],
+ [
+ 107.610882419,
+ 31.198297783099999,
+ 120.0
+ ],
+ [
+ 107.459109642,
+ 30.837839220100001,
+ 120.0
+ ],
+ [
+ 107.261939692,
+ 30.898739109600001,
+ 120.0
+ ],
+ [
+ 107.41296429099999,
+ 31.259197671799999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001479,
+ "name": "Nanchong Airport",
+ "country": "CN",
+ "city": "Nanchong",
+ "height": 500,
+ "level": 2,
+ "lat": "30.795106",
+ "lng": "106.162383",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.162383,
+ 31.246085351567032,
+ 500.0
+ ],
+ [
+ 106.253521612831548,
+ 31.239202173455013,
+ 500.0
+ ],
+ [
+ 106.341852615434746,
+ 31.218764678309647,
+ 500.0
+ ],
+ [
+ 106.424658454734143,
+ 31.185402180138844,
+ 500.0
+ ],
+ [
+ 106.499398350892008,
+ 31.140141110449647,
+ 500.0
+ ],
+ [
+ 106.563788514567804,
+ 31.084372253102266,
+ 500.0
+ ],
+ [
+ 106.61587305625892,
+ 31.019806568687248,
+ 500.0
+ ],
+ [
+ 106.654083259517662,
+ 30.948421193297001,
+ 500.0
+ ],
+ [
+ 106.677283459643832,
+ 30.87239750356186,
+ 500.0
+ ],
+ [
+ 106.68480238083643,
+ 30.794053356890931,
+ 500.0
+ ],
+ [
+ 106.676449392538373,
+ 30.715771740814358,
+ 500.0
+ ],
+ [
+ 106.652515711801399,
+ 30.639928102303632,
+ 500.0
+ ],
+ [
+ 106.613761075399353,
+ 30.568818585867632,
+ 500.0
+ ],
+ [
+ 106.561386817347213,
+ 30.504591299950238,
+ 500.0
+ ],
+ [
+ 106.496996609825061,
+ 30.449182567711784,
+ 500.0
+ ],
+ [
+ 106.422546362851705,
+ 30.404259913340219,
+ 500.0
+ ],
+ [
+ 106.340284941467928,
+ 30.371173299893453,
+ 500.0
+ ],
+ [
+ 106.252687463321891,
+ 30.350915878634076,
+ 500.0
+ ],
+ [
+ 106.162383,
+ 30.344095240066153,
+ 500.0
+ ],
+ [
+ 106.07207853667812,
+ 30.350915878634076,
+ 500.0
+ ],
+ [
+ 105.984481058532083,
+ 30.371173299893453,
+ 500.0
+ ],
+ [
+ 105.902219637148306,
+ 30.404259913340219,
+ 500.0
+ ],
+ [
+ 105.82776939017495,
+ 30.449182567711784,
+ 500.0
+ ],
+ [
+ 105.763379182652798,
+ 30.504591299950238,
+ 500.0
+ ],
+ [
+ 105.711004924600658,
+ 30.568818585867632,
+ 500.0
+ ],
+ [
+ 105.672250288198612,
+ 30.639928102303632,
+ 500.0
+ ],
+ [
+ 105.648316607461638,
+ 30.715771740814358,
+ 500.0
+ ],
+ [
+ 105.639963619163581,
+ 30.794053356890931,
+ 500.0
+ ],
+ [
+ 105.647482540356179,
+ 30.87239750356186,
+ 500.0
+ ],
+ [
+ 105.670682740482349,
+ 30.948421193297001,
+ 500.0
+ ],
+ [
+ 105.708892943741091,
+ 31.019806568687248,
+ 500.0
+ ],
+ [
+ 105.760977485432207,
+ 31.084372253102266,
+ 500.0
+ ],
+ [
+ 105.825367649108003,
+ 31.140141110449647,
+ 500.0
+ ],
+ [
+ 105.900107545265868,
+ 31.185402180138844,
+ 500.0
+ ],
+ [
+ 105.982913384565265,
+ 31.218764678309647,
+ 500.0
+ ],
+ [
+ 106.071244387168463,
+ 31.239202173455013,
+ 500.0
+ ],
+ [
+ 106.162383,
+ 31.246085351567032,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8096,
+ "name": "Wanxian Airport",
+ "country": "CN",
+ "city": "Wanxian",
+ "height": 0,
+ "level": 2,
+ "lat": "30.8223631145571",
+ "lng": "108.386898069515",
+ "radius": 13042,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.36290624199999,
+ 30.846183777899999,
+ 0.0
+ ],
+ [
+ 108.2762807,
+ 30.891214702900001,
+ 0.0
+ ],
+ [
+ 108.250447009,
+ 30.827634546100001,
+ 0.0
+ ],
+ [
+ 108.345442816,
+ 30.809306944100001,
+ 0.0
+ ],
+ [
+ 108.346852915,
+ 30.791425099,
+ 0.0
+ ],
+ [
+ 108.364227774,
+ 30.762092717800002,
+ 0.0
+ ],
+ [
+ 108.37890717499999,
+ 30.751305176,
+ 0.0
+ ],
+ [
+ 108.416288679,
+ 30.7391614105,
+ 0.0
+ ],
+ [
+ 108.45000514199999,
+ 30.734805102500001,
+ 0.0
+ ],
+ [
+ 108.46887553099999,
+ 30.7383301954,
+ 0.0
+ ],
+ [
+ 108.50034163799999,
+ 30.7570896535,
+ 0.0
+ ],
+ [
+ 108.36290624199999,
+ 30.846183777899999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8096,
+ "name": "Wanxian Airport",
+ "country": "CN",
+ "city": "Wanxian",
+ "height": 0,
+ "level": 2,
+ "lat": "30.7869251736572",
+ "lng": "108.481441581417",
+ "radius": 13097,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.590389458,
+ 30.715452952300001,
+ 0.0
+ ],
+ [
+ 108.617918089,
+ 30.7756551009,
+ 0.0
+ ],
+ [
+ 108.521256102,
+ 30.7939821314,
+ 0.0
+ ],
+ [
+ 108.51986935399999,
+ 30.811861886599999,
+ 0.0
+ ],
+ [
+ 108.50251864099999,
+ 30.841208736799999,
+ 0.0
+ ],
+ [
+ 108.487834097,
+ 30.852004902,
+ 0.0
+ ],
+ [
+ 108.447015181,
+ 30.8675147754,
+ 0.0
+ ],
+ [
+ 108.411865456,
+ 30.870714511199999,
+ 0.0
+ ],
+ [
+ 108.393210091,
+ 30.866345001300001,
+ 0.0
+ ],
+ [
+ 108.36290624199999,
+ 30.846183777899999,
+ 0.0
+ ],
+ [
+ 108.50034163799999,
+ 30.7570896535,
+ 0.0
+ ],
+ [
+ 108.590389458,
+ 30.715452952300001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8096,
+ "name": "Wanxian Airport",
+ "country": "CN",
+ "city": "Wanxian",
+ "height": 120,
+ "level": 2,
+ "lat": "30.8021892046956",
+ "lng": "108.432351947593",
+ "radius": 23348,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.675640852,
+ 30.823004576,
+ 120.0
+ ],
+ [
+ 108.605051285,
+ 30.6536823056,
+ 120.0
+ ],
+ [
+ 108.189078607,
+ 30.7816929454,
+ 120.0
+ ],
+ [
+ 108.259762262,
+ 30.9510152157,
+ 120.0
+ ],
+ [
+ 108.675640852,
+ 30.823004576,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001486,
+ "name": "Wanxian Airport",
+ "country": "CN",
+ "city": "Wanxian",
+ "height": 500,
+ "level": 2,
+ "lat": "30.801736",
+ "lng": "108.433089",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.433089,
+ 31.252714887874895,
+ 500.0
+ ],
+ [
+ 108.52423397891755,
+ 31.245831708450673,
+ 500.0
+ ],
+ [
+ 108.612571141409305,
+ 31.225394210173818,
+ 500.0
+ ],
+ [
+ 108.695382736051883,
+ 31.192031709347614,
+ 500.0
+ ],
+ [
+ 108.770127799916736,
+ 31.146770640920995,
+ 500.0
+ ],
+ [
+ 108.83452238239505,
+ 31.091001792821032,
+ 500.0
+ ],
+ [
+ 108.886610459938282,
+ 31.026436129699796,
+ 500.0
+ ],
+ [
+ 108.924823213288747,
+ 30.955050791050578,
+ 500.0
+ ],
+ [
+ 108.948024908694308,
+ 30.879027155649705,
+ 500.0
+ ],
+ [
+ 108.955544236098092,
+ 30.800683081342072,
+ 500.0
+ ],
+ [
+ 108.94719056514586,
+ 30.722401554127131,
+ 500.0
+ ],
+ [
+ 108.923255146021788,
+ 30.64655801745646,
+ 500.0
+ ],
+ [
+ 108.884497779073726,
+ 30.575448610546641,
+ 500.0
+ ],
+ [
+ 108.832119889135555,
+ 30.511221435210594,
+ 500.0
+ ],
+ [
+ 108.767725262786811,
+ 30.455812807241493,
+ 500.0
+ ],
+ [
+ 108.693269944103534,
+ 30.41089024342779,
+ 500.0
+ ],
+ [
+ 108.611002947822485,
+ 30.377803700122538,
+ 500.0
+ ],
+ [
+ 108.523399552919685,
+ 30.357546323247831,
+ 500.0
+ ],
+ [
+ 108.433089,
+ 30.350725699870146,
+ 500.0
+ ],
+ [
+ 108.342778447080306,
+ 30.357546323247831,
+ 500.0
+ ],
+ [
+ 108.255175052177506,
+ 30.377803700122538,
+ 500.0
+ ],
+ [
+ 108.172908055896457,
+ 30.41089024342779,
+ 500.0
+ ],
+ [
+ 108.098452737213179,
+ 30.455812807241493,
+ 500.0
+ ],
+ [
+ 108.034058110864436,
+ 30.511221435210594,
+ 500.0
+ ],
+ [
+ 107.981680220926265,
+ 30.575448610546641,
+ 500.0
+ ],
+ [
+ 107.942922853978203,
+ 30.64655801745646,
+ 500.0
+ ],
+ [
+ 107.918987434854131,
+ 30.722401554127131,
+ 500.0
+ ],
+ [
+ 107.910633763901899,
+ 30.800683081342072,
+ 500.0
+ ],
+ [
+ 107.918153091305683,
+ 30.879027155649705,
+ 500.0
+ ],
+ [
+ 107.941354786711244,
+ 30.955050791050578,
+ 500.0
+ ],
+ [
+ 107.979567540061709,
+ 31.026436129699796,
+ 500.0
+ ],
+ [
+ 108.03165561760494,
+ 31.091001792821032,
+ 500.0
+ ],
+ [
+ 108.096050200083255,
+ 31.146770640920995,
+ 500.0
+ ],
+ [
+ 108.170795263948108,
+ 31.192031709347614,
+ 500.0
+ ],
+ [
+ 108.253606858590686,
+ 31.225394210173818,
+ 500.0
+ ],
+ [
+ 108.34194402108244,
+ 31.245831708450673,
+ 500.0
+ ],
+ [
+ 108.433089,
+ 31.252714887874895,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002399,
+ "name": "重庆巫山机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "31.06863143",
+ "lng": "109.70917225",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.70917225,
+ 31.51959160474399,
+ 500.0
+ ],
+ [
+ 109.800575259468687,
+ 31.512708372233686,
+ 500.0
+ ],
+ [
+ 109.889162095322121,
+ 31.49227074720983,
+ 500.0
+ ],
+ [
+ 109.972206967047299,
+ 31.458908138666608,
+ 500.0
+ ],
+ [
+ 110.04716149092188,
+ 31.413647120542894,
+ 500.0
+ ],
+ [
+ 110.111735179905992,
+ 31.357878644989245,
+ 500.0
+ ],
+ [
+ 110.16396657722261,
+ 31.293313840666709,
+ 500.0
+ ],
+ [
+ 110.202282696263879,
+ 31.221929984400234,
+ 500.0
+ ],
+ [
+ 110.225545004040484,
+ 31.145908541626625,
+ 500.0
+ ],
+ [
+ 110.233080801492264,
+ 31.067567387802004,
+ 500.0
+ ],
+ [
+ 110.224699465870088,
+ 30.989289447141299,
+ 500.0
+ ],
+ [
+ 110.200693589669669,
+ 30.913450021002483,
+ 500.0
+ ],
+ [
+ 110.161825549488654,
+ 30.842345034958953,
+ 500.0
+ ],
+ [
+ 110.109300450854533,
+ 30.77812232314292,
+ 500.0
+ ],
+ [
+ 110.044726717019401,
+ 30.722717903950933,
+ 500.0
+ ],
+ [
+ 109.970065825746559,
+ 30.677798995474394,
+ 500.0
+ ],
+ [
+ 109.887572859584523,
+ 30.644715283415177,
+ 500.0
+ ],
+ [
+ 109.799729637005939,
+ 30.624459698119711,
+ 500.0
+ ],
+ [
+ 109.70917225,
+ 30.61763968789371,
+ 500.0
+ ],
+ [
+ 109.61861486299405,
+ 30.624459698119711,
+ 500.0
+ ],
+ [
+ 109.530771640415466,
+ 30.644715283415177,
+ 500.0
+ ],
+ [
+ 109.44827867425343,
+ 30.677798995474394,
+ 500.0
+ ],
+ [
+ 109.373617782980588,
+ 30.722717903950933,
+ 500.0
+ ],
+ [
+ 109.309044049145456,
+ 30.77812232314292,
+ 500.0
+ ],
+ [
+ 109.256518950511335,
+ 30.842345034958953,
+ 500.0
+ ],
+ [
+ 109.21765091033032,
+ 30.913450021002483,
+ 500.0
+ ],
+ [
+ 109.193645034129901,
+ 30.989289447141299,
+ 500.0
+ ],
+ [
+ 109.185263698507725,
+ 31.067567387802004,
+ 500.0
+ ],
+ [
+ 109.192799495959505,
+ 31.145908541626625,
+ 500.0
+ ],
+ [
+ 109.21606180373611,
+ 31.221929984400234,
+ 500.0
+ ],
+ [
+ 109.25437792277738,
+ 31.293313840666709,
+ 500.0
+ ],
+ [
+ 109.306609320093997,
+ 31.357878644989245,
+ 500.0
+ ],
+ [
+ 109.371183009078109,
+ 31.413647120542894,
+ 500.0
+ ],
+ [
+ 109.44613753295269,
+ 31.458908138666608,
+ 500.0
+ ],
+ [
+ 109.529182404677869,
+ 31.49227074720983,
+ 500.0
+ ],
+ [
+ 109.617769240531302,
+ 31.512708372233686,
+ 500.0
+ ],
+ [
+ 109.70917225,
+ 31.51959160474399,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002398,
+ "name": "重庆巫山机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "31.0951139286081",
+ "lng": "109.750844498959",
+ "radius": 13476,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.794096829,
+ 31.0978755742,
+ 0.0
+ ],
+ [
+ 109.882453254,
+ 31.1397714786,
+ 0.0
+ ],
+ [
+ 109.83556081899999,
+ 31.1922323754,
+ 0.0
+ ],
+ [
+ 109.765184059,
+ 31.1302430249,
+ 0.0
+ ],
+ [
+ 109.728133099,
+ 31.143512155300002,
+ 0.0
+ ],
+ [
+ 109.708740527,
+ 31.143369037700001,
+ 0.0
+ ],
+ [
+ 109.673347306,
+ 31.130504777900001,
+ 0.0
+ ],
+ [
+ 109.634274383,
+ 31.1018421335,
+ 0.0
+ ],
+ [
+ 109.62481876699999,
+ 31.087352818300001,
+ 0.0
+ ],
+ [
+ 109.620066664,
+ 31.071261298700001,
+ 0.0
+ ],
+ [
+ 109.625616586,
+ 31.038694041100001,
+ 0.0
+ ],
+ [
+ 109.794096829,
+ 31.0978755742,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002398,
+ "name": "重庆巫山机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "31.0413854693113",
+ "lng": "109.66891985704",
+ "radius": 13475,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.53743533799999,
+ 30.9967768986,
+ 0.0
+ ],
+ [
+ 109.58426684699999,
+ 30.944323216200001,
+ 0.0
+ ],
+ [
+ 109.654466754,
+ 31.006398695600002,
+ 0.0
+ ],
+ [
+ 109.672698508,
+ 30.9973043946,
+ 0.0
+ ],
+ [
+ 109.710804166,
+ 30.9932721218,
+ 0.0
+ ],
+ [
+ 109.72946776,
+ 30.997693317100001,
+ 0.0
+ ],
+ [
+ 109.77035819,
+ 31.0219582137,
+ 0.0
+ ],
+ [
+ 109.794763524,
+ 31.049215348400001,
+ 0.0
+ ],
+ [
+ 109.799332306,
+ 31.081894326600001,
+ 0.0
+ ],
+ [
+ 109.794096829,
+ 31.0978755742,
+ 0.0
+ ],
+ [
+ 109.625616586,
+ 31.038694041100001,
+ 0.0
+ ],
+ [
+ 109.53743533799999,
+ 30.9967768986,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002398,
+ "name": "重庆巫山机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "31.0681001239377",
+ "lng": "109.710015257147",
+ "radius": 23665,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.59488744799999,
+ 30.879544638900001,
+ 120.0
+ ],
+ [
+ 109.467404619,
+ 31.022366482399999,
+ 120.0
+ ],
+ [
+ 109.824891123,
+ 31.256865935899999,
+ 120.0
+ ],
+ [
+ 109.952688694,
+ 31.1140440928,
+ 120.0
+ ],
+ [
+ 109.59488744799999,
+ 30.879544638900001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001543,
+ "name": "安徽芜湖机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "31.132312483288",
+ "lng": "118.706550004178",
+ "radius": 13479,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.749674301,
+ 31.13662425,
+ 0.0
+ ],
+ [
+ 118.835960079,
+ 31.181622348099999,
+ 0.0
+ ],
+ [
+ 118.786542702,
+ 31.232372717499999,
+ 0.0
+ ],
+ [
+ 118.719205852,
+ 31.167936150500001,
+ 0.0
+ ],
+ [
+ 118.681526164,
+ 31.179877556800001,
+ 0.0
+ ],
+ [
+ 118.662149918,
+ 31.179044982800001,
+ 0.0
+ ],
+ [
+ 118.62739879199999,
+ 31.164933278500001,
+ 0.0
+ ],
+ [
+ 118.589688948,
+ 31.134873412,
+ 0.0
+ ],
+ [
+ 118.580940582,
+ 31.120060584499999,
+ 0.0
+ ],
+ [
+ 118.576970731,
+ 31.103814061,
+ 0.0
+ ],
+ [
+ 118.584095176,
+ 31.071472040100002,
+ 0.0
+ ],
+ [
+ 118.749674301,
+ 31.13662425,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001543,
+ "name": "安徽芜湖机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "31.0757198642031",
+ "lng": "118.627268738115",
+ "radius": 13478,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.497989972,
+ 31.026455614500001,
+ 0.0
+ ],
+ [
+ 118.54733501299999,
+ 30.9757126033,
+ 0.0
+ ],
+ [
+ 118.614495104,
+ 31.040229692699999,
+ 0.0
+ ],
+ [
+ 118.633155879,
+ 31.0317918141,
+ 0.0
+ ],
+ [
+ 118.671437844,
+ 31.029116475199999,
+ 0.0
+ ],
+ [
+ 118.689878697,
+ 31.0341967815,
+ 0.0
+ ],
+ [
+ 118.72962476799999,
+ 31.059928538299999,
+ 0.0
+ ],
+ [
+ 118.752699036,
+ 31.088029626899999,
+ 0.0
+ ],
+ [
+ 118.755682214,
+ 31.1208428389,
+ 0.0
+ ],
+ [
+ 118.749674301,
+ 31.13662425,
+ 0.0
+ ],
+ [
+ 118.584095176,
+ 31.071472040100002,
+ 0.0
+ ],
+ [
+ 118.497989972,
+ 31.026455614500001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001543,
+ "name": "安徽芜湖机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "31.1038761177067",
+ "lng": "118.667044852456",
+ "radius": 23668,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.56107991499999,
+ 30.9113699625,
+ 120.0
+ ],
+ [
+ 118.426756625,
+ 31.049533284599999,
+ 120.0
+ ],
+ [
+ 118.772738511,
+ 31.296573761099999,
+ 120.0
+ ],
+ [
+ 118.907411682,
+ 31.158410439499999,
+ 120.0
+ ],
+ [
+ 118.56107991499999,
+ 30.9113699625,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001544,
+ "name": "安徽芜湖机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "31.10456673",
+ "lng": "118.66734233",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.66734233,
+ 31.555524378234388,
+ 500.0
+ ],
+ [
+ 118.758780344618557,
+ 31.548641138535665,
+ 500.0
+ ],
+ [
+ 118.847401051922589,
+ 31.528203496339188,
+ 500.0
+ ],
+ [
+ 118.930477570845966,
+ 31.49484087316273,
+ 500.0
+ ],
+ [
+ 119.005460510977358,
+ 31.449579861724185,
+ 500.0
+ ],
+ [
+ 119.070058498541513,
+ 31.393811436362284,
+ 500.0
+ ],
+ [
+ 119.122309339664255,
+ 31.329246747897216,
+ 500.0
+ ],
+ [
+ 119.160639482346838,
+ 31.257863091708838,
+ 500.0
+ ],
+ [
+ 119.183910013786985,
+ 31.181841944943486,
+ 500.0
+ ],
+ [
+ 119.191448046409192,
+ 31.103501185439079,
+ 500.0
+ ],
+ [
+ 119.18306295840641,
+ 31.025223729067477,
+ 500.0
+ ],
+ [
+ 119.159047524286507,
+ 30.949384857995891,
+ 500.0
+ ],
+ [
+ 119.120164470070236,
+ 30.878280468943171,
+ 500.0
+ ],
+ [
+ 119.067619400562251,
+ 30.814058359888826,
+ 500.0
+ ],
+ [
+ 119.003021368013222,
+ 30.758654509063938,
+ 500.0
+ ],
+ [
+ 118.928332587346262,
+ 30.71373609421941,
+ 500.0
+ ],
+ [
+ 118.8458089643335,
+ 30.680652764504948,
+ 500.0
+ ],
+ [
+ 118.757933204694069,
+ 30.660397421153217,
+ 500.0
+ ],
+ [
+ 118.66734233,
+ 30.653577493730332,
+ 500.0
+ ],
+ [
+ 118.576751455305924,
+ 30.660397421153217,
+ 500.0
+ ],
+ [
+ 118.488875695666493,
+ 30.680652764504948,
+ 500.0
+ ],
+ [
+ 118.406352072653732,
+ 30.71373609421941,
+ 500.0
+ ],
+ [
+ 118.331663291986771,
+ 30.758654509063938,
+ 500.0
+ ],
+ [
+ 118.267065259437743,
+ 30.814058359888826,
+ 500.0
+ ],
+ [
+ 118.214520189929758,
+ 30.878280468943171,
+ 500.0
+ ],
+ [
+ 118.175637135713487,
+ 30.949384857995891,
+ 500.0
+ ],
+ [
+ 118.151621701593584,
+ 31.025223729067477,
+ 500.0
+ ],
+ [
+ 118.143236613590801,
+ 31.103501185439079,
+ 500.0
+ ],
+ [
+ 118.150774646213009,
+ 31.181841944943486,
+ 500.0
+ ],
+ [
+ 118.174045177653156,
+ 31.257863091708838,
+ 500.0
+ ],
+ [
+ 118.212375320335738,
+ 31.329246747897216,
+ 500.0
+ ],
+ [
+ 118.26462616145848,
+ 31.393811436362284,
+ 500.0
+ ],
+ [
+ 118.329224149022636,
+ 31.449579861724185,
+ 500.0
+ ],
+ [
+ 118.404207089154028,
+ 31.49484087316273,
+ 500.0
+ ],
+ [
+ 118.487283608077405,
+ 31.528203496339188,
+ 500.0
+ ],
+ [
+ 118.575904315381436,
+ 31.548641138535665,
+ 500.0
+ ],
+ [
+ 118.66734233,
+ 31.555524378234388,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001333,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Jiaxing",
+ "height": 500,
+ "level": 2,
+ "lat": "30.705043",
+ "lng": "120.680211",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.680211,
+ 31.156028644800454,
+ 500.0
+ ],
+ [
+ 120.771263343613626,
+ 31.149145484483665,
+ 500.0
+ ],
+ [
+ 120.859510871308558,
+ 31.128708031799469,
+ 500.0
+ ],
+ [
+ 120.942238717940612,
+ 31.095345569609268,
+ 500.0
+ ],
+ [
+ 121.016908584834781,
+ 31.050084482715562,
+ 500.0
+ ],
+ [
+ 121.081238868069974,
+ 30.994315499794247,
+ 500.0
+ ],
+ [
+ 121.133275494641666,
+ 30.929749526323096,
+ 500.0
+ ],
+ [
+ 121.171451141287591,
+ 30.85836365224641,
+ 500.0
+ ],
+ [
+ 121.194631079006328,
+ 30.782339225075305,
+ 500.0
+ ],
+ [
+ 121.20214449614376,
+ 30.703994096306289,
+ 500.0
+ ],
+ [
+ 121.193800759319615,
+ 30.625711274242718,
+ 500.0
+ ],
+ [
+ 121.169890636521046,
+ 30.549866253623968,
+ 500.0
+ ],
+ [
+ 121.131173002941793,
+ 30.478755250778924,
+ 500.0
+ ],
+ [
+ 121.078847961829439,
+ 30.414526464138415,
+ 500.0
+ ],
+ [
+ 121.014517635073332,
+ 30.359116316841504,
+ 500.0
+ ],
+ [
+ 120.940136116041927,
+ 30.314192433494249,
+ 500.0
+ ],
+ [
+ 120.857950241228536,
+ 30.281104868145789,
+ 500.0
+ ],
+ [
+ 120.770432942134377,
+ 30.260846844535095,
+ 500.0
+ ],
+ [
+ 120.680211,
+ 30.254025999818058,
+ 500.0
+ ],
+ [
+ 120.589989057865623,
+ 30.260846844535095,
+ 500.0
+ ],
+ [
+ 120.502471758771463,
+ 30.281104868145789,
+ 500.0
+ ],
+ [
+ 120.420285883958073,
+ 30.314192433494249,
+ 500.0
+ ],
+ [
+ 120.345904364926668,
+ 30.359116316841504,
+ 500.0
+ ],
+ [
+ 120.281574038170561,
+ 30.414526464138415,
+ 500.0
+ ],
+ [
+ 120.229248997058207,
+ 30.478755250778924,
+ 500.0
+ ],
+ [
+ 120.190531363478954,
+ 30.549866253623968,
+ 500.0
+ ],
+ [
+ 120.166621240680385,
+ 30.625711274242718,
+ 500.0
+ ],
+ [
+ 120.15827750385624,
+ 30.703994096306289,
+ 500.0
+ ],
+ [
+ 120.165790920993672,
+ 30.782339225075305,
+ 500.0
+ ],
+ [
+ 120.188970858712409,
+ 30.85836365224641,
+ 500.0
+ ],
+ [
+ 120.227146505358334,
+ 30.929749526323096,
+ 500.0
+ ],
+ [
+ 120.279183131930026,
+ 30.994315499794247,
+ 500.0
+ ],
+ [
+ 120.343513415165219,
+ 31.050084482715562,
+ 500.0
+ ],
+ [
+ 120.418183282059388,
+ 31.095345569609268,
+ 500.0
+ ],
+ [
+ 120.500911128691442,
+ 31.128708031799469,
+ 500.0
+ ],
+ [
+ 120.589158656386374,
+ 31.149145484483665,
+ 500.0
+ ],
+ [
+ 120.680211,
+ 31.156028644800454,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9741,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Jiaxing",
+ "height": 0,
+ "level": 2,
+ "lat": "30.738729741889",
+ "lng": "120.713301918459",
+ "radius": 13678,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.75820036499999,
+ 30.748599673099999,
+ 0.0
+ ],
+ [
+ 120.834924903,
+ 30.8036312857,
+ 0.0
+ ],
+ [
+ 120.771798678,
+ 30.8510133658,
+ 0.0
+ ],
+ [
+ 120.718589963,
+ 30.778356615100002,
+ 0.0
+ ],
+ [
+ 120.681099931,
+ 30.784017053700001,
+ 0.0
+ ],
+ [
+ 120.662234096,
+ 30.7804389848,
+ 0.0
+ ],
+ [
+ 120.630841729,
+ 30.761579156900002,
+ 0.0
+ ],
+ [
+ 120.608435243,
+ 30.739512486500001,
+ 0.0
+ ],
+ [
+ 120.591010481,
+ 30.710433358300001,
+ 0.0
+ ],
+ [
+ 120.589380823,
+ 30.693894371399999,
+ 0.0
+ ],
+ [
+ 120.60098683299999,
+ 30.662532025,
+ 0.0
+ ],
+ [
+ 120.75820036499999,
+ 30.748599673099999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9741,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Jiaxing",
+ "height": 0,
+ "level": 2,
+ "lat": "30.6723740423936",
+ "lng": "120.645913272284",
+ "radius": 13677,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.524448801,
+ 30.607499668100001,
+ 0.0
+ ],
+ [
+ 120.587465475,
+ 30.560123485,
+ 0.0
+ ],
+ [
+ 120.640515834,
+ 30.632837455899999,
+ 0.0
+ ],
+ [
+ 120.677896494,
+ 30.627173096100002,
+ 0.0
+ ],
+ [
+ 120.696737334,
+ 30.630731796399999,
+ 0.0
+ ],
+ [
+ 120.713868203,
+ 30.638362917399999,
+ 0.0
+ ],
+ [
+ 120.750605033,
+ 30.6716630204,
+ 0.0
+ ],
+ [
+ 120.768060674,
+ 30.7006799802,
+ 0.0
+ ],
+ [
+ 120.76973384,
+ 30.717215763799999,
+ 0.0
+ ],
+ [
+ 120.75820036499999,
+ 30.748599673099999,
+ 0.0
+ ],
+ [
+ 120.60098683299999,
+ 30.662532025,
+ 0.0
+ ],
+ [
+ 120.524448801,
+ 30.607499668100001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9741,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Jiaxing",
+ "height": 120,
+ "level": 2,
+ "lat": "30.705445747408",
+ "lng": "120.679748206067",
+ "radius": 23830,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.60953176699999,
+ 30.499829808299999,
+ 120.0
+ ],
+ [
+ 120.45220910899999,
+ 30.618145740199999,
+ 120.0
+ ],
+ [
+ 120.749631226,
+ 30.911179072300001,
+ 120.0
+ ],
+ [
+ 120.907432461,
+ 30.7928631411,
+ 120.0
+ ],
+ [
+ 120.60953176699999,
+ 30.499829808299999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002167,
+ "name": "Shanghai Pudong International Airport",
+ "country": "CN",
+ "city": "Shanghai",
+ "height": 500,
+ "level": 2,
+ "lat": "31.144291",
+ "lng": "121.810136",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.810136,
+ 31.595245853431368,
+ 500.0
+ ],
+ [
+ 121.901612783789815,
+ 31.588362605774506,
+ 500.0
+ ],
+ [
+ 121.990271004678078,
+ 31.567924944563664,
+ 500.0
+ ],
+ [
+ 122.073382573794916,
+ 31.534562305172848,
+ 500.0
+ ],
+ [
+ 122.14839698580306,
+ 31.489301301097161,
+ 500.0
+ ],
+ [
+ 122.213021884847393,
+ 31.433532931224452,
+ 500.0
+ ],
+ [
+ 122.265294260695612,
+ 31.368968370891857,
+ 500.0
+ ],
+ [
+ 122.303639935153186,
+ 31.297584936008612,
+ 500.0
+ ],
+ [
+ 122.326919574748274,
+ 31.221564116676891,
+ 500.0
+ ],
+ [
+ 122.33446008309808,
+ 31.143223793370588,
+ 500.0
+ ],
+ [
+ 122.326070839414868,
+ 31.064946872732172,
+ 500.0
+ ],
+ [
+ 122.302044819765868,
+ 30.989108615698477,
+ 500.0
+ ],
+ [
+ 122.263145137146466,
+ 30.918004887066648,
+ 500.0
+ ],
+ [
+ 122.210577949309339,
+ 30.853783444820774,
+ 500.0
+ ],
+ [
+ 122.145953005131688,
+ 30.798380222757206,
+ 500.0
+ ],
+ [
+ 122.07123333596418,
+ 30.753462353998739,
+ 500.0
+ ],
+ [
+ 121.988675759334541,
+ 30.720379447258022,
+ 500.0
+ ],
+ [
+ 121.900763963633523,
+ 30.70012437155982,
+ 500.0
+ ],
+ [
+ 121.810136,
+ 30.693304535739006,
+ 500.0
+ ],
+ [
+ 121.719508036366477,
+ 30.70012437155982,
+ 500.0
+ ],
+ [
+ 121.631596240665459,
+ 30.720379447258022,
+ 500.0
+ ],
+ [
+ 121.54903866403582,
+ 30.753462353998739,
+ 500.0
+ ],
+ [
+ 121.474318994868312,
+ 30.798380222757206,
+ 500.0
+ ],
+ [
+ 121.409694050690661,
+ 30.853783444820774,
+ 500.0
+ ],
+ [
+ 121.357126862853534,
+ 30.918004887066648,
+ 500.0
+ ],
+ [
+ 121.318227180234132,
+ 30.989108615698477,
+ 500.0
+ ],
+ [
+ 121.294201160585132,
+ 31.064946872732172,
+ 500.0
+ ],
+ [
+ 121.28581191690192,
+ 31.143223793370588,
+ 500.0
+ ],
+ [
+ 121.293352425251726,
+ 31.221564116676891,
+ 500.0
+ ],
+ [
+ 121.316632064846814,
+ 31.297584936008612,
+ 500.0
+ ],
+ [
+ 121.354977739304388,
+ 31.368968370891857,
+ 500.0
+ ],
+ [
+ 121.407250115152607,
+ 31.433532931224452,
+ 500.0
+ ],
+ [
+ 121.471875014196939,
+ 31.489301301097161,
+ 500.0
+ ],
+ [
+ 121.546889426205084,
+ 31.534562305172848,
+ 500.0
+ ],
+ [
+ 121.630000995321922,
+ 31.567924944563664,
+ 500.0
+ ],
+ [
+ 121.718659216210185,
+ 31.588362605774506,
+ 500.0
+ ],
+ [
+ 121.810136,
+ 31.595245853431368,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6150,
+ "name": "Shanghai Pudong International Airport",
+ "country": "CN",
+ "city": "Shanghai",
+ "height": 0,
+ "level": 2,
+ "lat": "31.1445042395219",
+ "lng": "121.800710383728",
+ "radius": 9232,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.819208932,
+ 31.226014174,
+ 0.0
+ ],
+ [
+ 121.718177128333039,
+ 31.186621366743505,
+ 0.0
+ ],
+ [
+ 121.7163477,
+ 31.184791285700001,
+ 0.0
+ ],
+ [
+ 121.709482,
+ 31.1692672241,
+ 0.0
+ ],
+ [
+ 121.710673558,
+ 31.1363705467,
+ 0.0
+ ],
+ [
+ 121.724008993,
+ 31.104702028599998,
+ 0.0
+ ],
+ [
+ 121.741623768,
+ 31.0808413484,
+ 0.0
+ ],
+ [
+ 121.757022656,
+ 31.07076395,
+ 0.0
+ ],
+ [
+ 121.759743007341527,
+ 31.070144100777739,
+ 0.0
+ ],
+ [
+ 121.76182648299999,
+ 31.068439078699999,
+ 0.0
+ ],
+ [
+ 121.794281738146196,
+ 31.061654885174725,
+ 0.0
+ ],
+ [
+ 121.819208932,
+ 31.226014174,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6150,
+ "name": "Shanghai Pudong International Airport",
+ "country": "CN",
+ "city": "Shanghai",
+ "height": 0,
+ "level": 2,
+ "lat": "31.2488247015381",
+ "lng": "121.76033067986",
+ "radius": 7994,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.770801957145281,
+ 31.301386422940951,
+ 0.0
+ ],
+ [
+ 121.769174758,
+ 31.309366966300001,
+ 0.0
+ ],
+ [
+ 121.696926692,
+ 31.2887078354,
+ 0.0
+ ],
+ [
+ 121.697939052444084,
+ 31.286983939582786,
+ 0.0
+ ],
+ [
+ 121.691928647,
+ 31.285379687700001,
+ 0.0
+ ],
+ [
+ 121.736384781937815,
+ 31.206351454101092,
+ 0.0
+ ],
+ [
+ 121.718806678,
+ 31.188264937100001,
+ 0.0
+ ],
+ [
+ 121.718177128333039,
+ 31.186621366743505,
+ 0.0
+ ],
+ [
+ 121.819208932,
+ 31.226014174,
+ 0.0
+ ],
+ [
+ 121.8025398,
+ 31.311014264,
+ 0.0
+ ],
+ [
+ 121.774682769285363,
+ 31.302357566497296,
+ 0.0
+ ],
+ [
+ 121.770801957145281,
+ 31.301386422940951,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6150,
+ "name": "Shanghai Pudong International Airport",
+ "country": "CN",
+ "city": "Shanghai",
+ "height": 0,
+ "level": 2,
+ "lat": "31.1503174869753",
+ "lng": "121.846159136877",
+ "radius": 8798,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.87306633199999,
+ 31.074615197,
+ 0.0
+ ],
+ [
+ 121.898291308,
+ 31.0999774585,
+ 0.0
+ ],
+ [
+ 121.904199056,
+ 31.115786198199999,
+ 0.0
+ ],
+ [
+ 121.90512744599999,
+ 31.132365399600001,
+ 0.0
+ ],
+ [
+ 121.901010647,
+ 31.148585324199999,
+ 0.0
+ ],
+ [
+ 121.885072120629246,
+ 31.177373052097188,
+ 0.0
+ ],
+ [
+ 121.884328424,
+ 31.1802898167,
+ 0.0
+ ],
+ [
+ 121.880828847695128,
+ 31.185037134947709,
+ 0.0
+ ],
+ [
+ 121.870148105,
+ 31.204328398600001,
+ 0.0
+ ],
+ [
+ 121.838232174,
+ 31.222717747099999,
+ 0.0
+ ],
+ [
+ 121.819208932,
+ 31.226014174,
+ 0.0
+ ],
+ [
+ 121.87306633199999,
+ 31.074615197,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6150,
+ "name": "Shanghai Pudong International Airport",
+ "country": "CN",
+ "city": "Shanghai",
+ "height": 0,
+ "level": 2,
+ "lat": "31.1005319952915",
+ "lng": "121.83075402477",
+ "radius": 13996,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.819208932,
+ 31.226014174,
+ 0.0
+ ],
+ [
+ 121.794281738146196,
+ 31.061654885174725,
+ 0.0
+ ],
+ [
+ 121.810771218,
+ 30.9773354344,
+ 0.0
+ ],
+ [
+ 121.812164778390581,
+ 30.97768412696275,
+ 0.0
+ ],
+ [
+ 121.812485615,
+ 30.975638589599999,
+ 0.0
+ ],
+ [
+ 121.839174405096713,
+ 30.984119765951423,
+ 0.0
+ ],
+ [
+ 121.840841786,
+ 30.975625022599999,
+ 0.0
+ ],
+ [
+ 121.913059491,
+ 30.996266987599999,
+ 0.0
+ ],
+ [
+ 121.911632216929988,
+ 30.998806665619831,
+ 0.0
+ ],
+ [
+ 121.919747935,
+ 31.001327587599999,
+ 0.0
+ ],
+ [
+ 121.87306633199999,
+ 31.074615197,
+ 0.0
+ ],
+ [
+ 121.819208932,
+ 31.226014174,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6150,
+ "name": "Shanghai Pudong International Airport",
+ "country": "CN",
+ "city": "Shanghai",
+ "height": 120,
+ "level": 2,
+ "lat": "31.145726118545",
+ "lng": "121.809357514195",
+ "radius": 25063,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.828111047655327,
+ 31.352771429384909,
+ 120.0
+ ],
+ [
+ 121.850012441,
+ 31.358929906499998,
+ 120.0
+ ],
+ [
+ 121.99354125,
+ 30.984741578600001,
+ 120.0
+ ],
+ [
+ 121.986055173371611,
+ 30.982628236577607,
+ 120.0
+ ],
+ [
+ 121.986939937,
+ 30.980203454400002,
+ 120.0
+ ],
+ [
+ 121.78679421699999,
+ 30.926443693700001,
+ 120.0
+ ],
+ [
+ 121.783922668869181,
+ 30.934268103062173,
+ 120.0
+ ],
+ [
+ 121.757782546,
+ 30.927141587600001,
+ 120.0
+ ],
+ [
+ 121.757266653582406,
+ 30.928526610964646,
+ 120.0
+ ],
+ [
+ 121.757260051,
+ 30.928524914299999,
+ 120.0
+ ],
+ [
+ 121.75714087195,
+ 30.928864298617682,
+ 120.0
+ ],
+ [
+ 121.619224175,
+ 31.299131123900001,
+ 120.0
+ ],
+ [
+ 121.62642989321256,
+ 31.301087909508915,
+ 120.0
+ ],
+ [
+ 121.624547744,
+ 31.306447676400001,
+ 120.0
+ ],
+ [
+ 121.826259755,
+ 31.3580753944,
+ 120.0
+ ],
+ [
+ 121.828111047655327,
+ 31.352771429384909,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045152,
+ "name": "上海禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "31.2309664734651",
+ "lng": "121.431595484604",
+ "radius": 644,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.432150585012778,
+ 31.236740358461596,
+ 0.0
+ ],
+ [
+ 121.425004293802488,
+ 31.230209994991135,
+ 0.0
+ ],
+ [
+ 121.431040452030686,
+ 31.225192586084514,
+ 0.0
+ ],
+ [
+ 121.437813289608556,
+ 31.22905411701413,
+ 0.0
+ ],
+ [
+ 121.432150585012778,
+ 31.236740358461596,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001380,
+ "name": "Shanghai Hongqiao International Airport",
+ "country": "CN",
+ "city": "Shanghai",
+ "height": 500,
+ "level": 2,
+ "lat": "31.197971",
+ "lng": "121.337757",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.337757,
+ 31.648922073609182,
+ 500.0
+ ],
+ [
+ 121.429286295375363,
+ 31.642038815178392,
+ 500.0
+ ],
+ [
+ 121.517995327224014,
+ 31.621601128220409,
+ 500.0
+ ],
+ [
+ 121.601154370768356,
+ 31.588238466853671,
+ 500.0
+ ],
+ [
+ 121.676211410556377,
+ 31.542977472680263,
+ 500.0
+ ],
+ [
+ 121.740872760544477,
+ 31.487209177797588,
+ 500.0
+ ],
+ [
+ 121.793174304765344,
+ 31.422644790708777,
+ 500.0
+ ],
+ [
+ 121.831541016846529,
+ 31.351261655094945,
+ 500.0
+ ],
+ [
+ 121.854832993506108,
+ 31.275241278585202,
+ 500.0
+ ],
+ [
+ 121.862376855503427,
+ 31.196901545220758,
+ 500.0
+ ],
+ [
+ 121.853981983391492,
+ 31.118625349161338,
+ 500.0
+ ],
+ [
+ 121.829941626203265,
+ 31.042787922627706,
+ 500.0
+ ],
+ [
+ 121.791019421043742,
+ 30.971685087239589,
+ 500.0
+ ],
+ [
+ 121.73842227459069,
+ 30.907464546882995,
+ 500.0
+ ],
+ [
+ 121.673760879267832,
+ 30.852062175251845,
+ 500.0
+ ],
+ [
+ 121.598999372255079,
+ 30.807145045105177,
+ 500.0
+ ],
+ [
+ 121.516395806044457,
+ 30.774062710460907,
+ 500.0
+ ],
+ [
+ 121.428435200059255,
+ 30.753807996779894,
+ 500.0
+ ],
+ [
+ 121.337757,
+ 30.746988284856361,
+ 500.0
+ ],
+ [
+ 121.247078799940738,
+ 30.753807996779894,
+ 500.0
+ ],
+ [
+ 121.159118193955536,
+ 30.774062710460907,
+ 500.0
+ ],
+ [
+ 121.076514627744913,
+ 30.807145045105177,
+ 500.0
+ ],
+ [
+ 121.001753120732161,
+ 30.852062175251845,
+ 500.0
+ ],
+ [
+ 120.937091725409303,
+ 30.907464546882995,
+ 500.0
+ ],
+ [
+ 120.88449457895625,
+ 30.971685087239589,
+ 500.0
+ ],
+ [
+ 120.845572373796728,
+ 31.042787922627706,
+ 500.0
+ ],
+ [
+ 120.821532016608501,
+ 31.118625349161338,
+ 500.0
+ ],
+ [
+ 120.813137144496565,
+ 31.196901545220758,
+ 500.0
+ ],
+ [
+ 120.820681006493885,
+ 31.275241278585202,
+ 500.0
+ ],
+ [
+ 120.843972983153463,
+ 31.351261655094945,
+ 500.0
+ ],
+ [
+ 120.882339695234649,
+ 31.422644790708777,
+ 500.0
+ ],
+ [
+ 120.934641239455516,
+ 31.487209177797588,
+ 500.0
+ ],
+ [
+ 120.999302589443616,
+ 31.542977472680263,
+ 500.0
+ ],
+ [
+ 121.074359629231637,
+ 31.588238466853671,
+ 500.0
+ ],
+ [
+ 121.157518672775979,
+ 31.621601128220409,
+ 500.0
+ ],
+ [
+ 121.24622770462463,
+ 31.642038815178392,
+ 500.0
+ ],
+ [
+ 121.337757,
+ 31.648922073609182,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8273,
+ "name": "Shanghai Hongqiao International Airport",
+ "country": "CN",
+ "city": "Shanghai",
+ "height": 0,
+ "level": 2,
+ "lat": "31.1977996759815",
+ "lng": "121.327526958951",
+ "radius": 18371,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.364514757740523,
+ 31.359084400233876,
+ 0.0
+ ],
+ [
+ 121.285464365988133,
+ 31.359063601875345,
+ 0.0
+ ],
+ [
+ 121.302078243123646,
+ 31.272323602407077,
+ 0.0
+ ],
+ [
+ 121.275893351353844,
+ 31.25704818115868,
+ 0.0
+ ],
+ [
+ 121.264514649904569,
+ 31.243596299605663,
+ 0.0
+ ],
+ [
+ 121.255619724155537,
+ 31.211575104187673,
+ 0.0
+ ],
+ [
+ 121.257284160822238,
+ 31.181644649541042,
+ 0.0
+ ],
+ [
+ 121.266289398106906,
+ 31.15317251717547,
+ 0.0
+ ],
+ [
+ 121.277702702388282,
+ 31.139756366835762,
+ 0.0
+ ],
+ [
+ 121.280340514140306,
+ 31.138374142005638,
+ 0.0
+ ],
+ [
+ 121.283510352541242,
+ 31.135001867845787,
+ 0.0
+ ],
+ [
+ 121.310474317039933,
+ 31.122346854409152,
+ 0.0
+ ],
+ [
+ 121.300528252861824,
+ 31.034202258144745,
+ 0.0
+ ],
+ [
+ 121.307218819114482,
+ 31.034494991382189,
+ 0.0
+ ],
+ [
+ 121.357860684132021,
+ 31.274082285618377,
+ 0.0
+ ],
+ [
+ 121.369521407345673,
+ 31.359076574249215,
+ 0.0
+ ],
+ [
+ 121.364513417891771,
+ 31.359075906481202,
+ 0.0
+ ],
+ [
+ 121.364514757740523,
+ 31.359084400233876,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8273,
+ "name": "Shanghai Hongqiao International Airport",
+ "country": "CN",
+ "city": "Shanghai",
+ "height": 0,
+ "level": 2,
+ "lat": "31.153547398811",
+ "lng": "121.33638982088",
+ "radius": 13557,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.307218819114482,
+ 31.034494991382189,
+ 0.0
+ ],
+ [
+ 121.307188891683197,
+ 31.034213503426002,
+ 0.0
+ ],
+ [
+ 121.320258213490789,
+ 31.035061826460613,
+ 0.0
+ ],
+ [
+ 121.379555465356759,
+ 31.037639139302392,
+ 0.0
+ ],
+ [
+ 121.379267302831877,
+ 31.038889207895849,
+ 0.0
+ ],
+ [
+ 121.386257135915884,
+ 31.039343872554539,
+ 0.0
+ ],
+ [
+ 121.366237856979296,
+ 31.120987049664599,
+ 0.0
+ ],
+ [
+ 121.395340278668357,
+ 31.139914148014299,
+ 0.0
+ ],
+ [
+ 121.405339424043262,
+ 31.154138918631801,
+ 0.0
+ ],
+ [
+ 121.411053279037446,
+ 31.186684077290224,
+ 0.0
+ ],
+ [
+ 121.409381646425004,
+ 31.218381549569827,
+ 0.0
+ ],
+ [
+ 121.401335384034951,
+ 31.242664620059799,
+ 0.0
+ ],
+ [
+ 121.375431363160942,
+ 31.26701626033244,
+ 0.0
+ ],
+ [
+ 121.357860684132021,
+ 31.274082285618377,
+ 0.0
+ ],
+ [
+ 121.307218819114482,
+ 31.034494991382189,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8273,
+ "name": "Shanghai Hongqiao International Airport",
+ "country": "CN",
+ "city": "Shanghai",
+ "height": 120,
+ "level": 2,
+ "lat": "31.1981007812795",
+ "lng": "121.334418577711",
+ "radius": 24058,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.451839333354684,
+ 31.006520479524372,
+ 120.0
+ ],
+ [
+ 121.242233494262351,
+ 30.998026817440874,
+ 120.0
+ ],
+ [
+ 121.242208501418702,
+ 30.998458408657015,
+ 120.0
+ ],
+ [
+ 121.238256347358146,
+ 30.998300755447325,
+ 120.0
+ ],
+ [
+ 121.216521465791601,
+ 31.389574026310797,
+ 120.0
+ ],
+ [
+ 121.427004735767497,
+ 31.397940266045246,
+ 120.0
+ ],
+ [
+ 121.427012919249478,
+ 31.397786302170076,
+ 120.0
+ ],
+ [
+ 121.430638265015489,
+ 31.39793327047736,
+ 120.0
+ ],
+ [
+ 121.451839333354684,
+ 31.006520479524372,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000128,
+ "name": "上海禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "31.2310089100964",
+ "lng": "121.469867258266",
+ "radius": 528,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.46734438,
+ 31.2352433,
+ 0.0
+ ],
+ [
+ 121.470519385200006,
+ 31.235728311,
+ 0.0
+ ],
+ [
+ 121.474628702,
+ 31.22937758,
+ 0.0
+ ],
+ [
+ 121.474072596170004,
+ 31.2281321643,
+ 0.0
+ ],
+ [
+ 121.472493653,
+ 31.227374494,
+ 0.0
+ ],
+ [
+ 121.46937244,
+ 31.226275556,
+ 0.0
+ ],
+ [
+ 121.467129014500003,
+ 31.230007,
+ 0.0
+ ],
+ [
+ 121.465730102600006,
+ 31.23310914,
+ 0.0
+ ],
+ [
+ 121.46734438,
+ 31.2352433,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000122,
+ "name": "上海禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "31.2046523668189",
+ "lng": "121.436525210807",
+ "radius": 426,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.43334774,
+ 31.2057148,
+ 0.0
+ ],
+ [
+ 121.4330458,
+ 31.20222764,
+ 0.0
+ ],
+ [
+ 121.435981266,
+ 31.201257283699999,
+ 0.0
+ ],
+ [
+ 121.4383564,
+ 31.201928843,
+ 0.0
+ ],
+ [
+ 121.4400048,
+ 31.207077,
+ 0.0
+ ],
+ [
+ 121.435470872899998,
+ 31.20716691,
+ 0.0
+ ],
+ [
+ 121.43334774,
+ 31.2057148,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045030,
+ "name": "阿里普兰机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "30.4359563879903",
+ "lng": "81.1064720875835",
+ "radius": 14480,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.102403438699994,
+ 30.481131894600001,
+ 0.0
+ ],
+ [
+ 81.063585523200004,
+ 30.560833961699998,
+ 0.0
+ ],
+ [
+ 80.997992473099998,
+ 30.5266210365,
+ 0.0
+ ],
+ [
+ 81.062013057200005,
+ 30.460049810099999,
+ 0.0
+ ],
+ [
+ 81.049520881700005,
+ 30.445438876099999,
+ 0.0
+ ],
+ [
+ 81.042722044499996,
+ 30.4299101758,
+ 0.0
+ ],
+ [
+ 81.043934595899998,
+ 30.3970143138,
+ 0.0
+ ],
+ [
+ 81.078627588900005,
+ 30.343782551899999,
+ 0.0
+ ],
+ [
+ 81.091774969,
+ 30.329692789,
+ 0.0
+ ],
+ [
+ 81.1254444259,
+ 30.314247994199999,
+ 0.0
+ ],
+ [
+ 81.163546894899994,
+ 30.315393772,
+ 0.0
+ ],
+ [
+ 81.102403438699994,
+ 30.481131894600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045030,
+ "name": "阿里普兰机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "30.3605234284938",
+ "lng": "81.1593814626114",
+ "radius": 14481,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.202273276599996,
+ 30.235667236200001,
+ 0.0
+ ],
+ [
+ 81.267698509900001,
+ 30.269874793900001,
+ 0.0
+ ],
+ [
+ 81.203905176899994,
+ 30.336482645099998,
+ 0.0
+ ],
+ [
+ 81.216345222499996,
+ 30.350998841,
+ 0.0
+ ],
+ [
+ 81.223184884899993,
+ 30.366512396099999,
+ 0.0
+ ],
+ [
+ 81.222072810399993,
+ 30.3994108895,
+ 0.0
+ ],
+ [
+ 81.187433043300004,
+ 30.452719865700001,
+ 0.0
+ ],
+ [
+ 81.174283647899998,
+ 30.466821350699998,
+ 0.0
+ ],
+ [
+ 81.140570922799995,
+ 30.482281339299998,
+ 0.0
+ ],
+ [
+ 81.102403438699994,
+ 30.481131894600001,
+ 0.0
+ ],
+ [
+ 81.163546894899994,
+ 30.315393772,
+ 0.0
+ ],
+ [
+ 81.202273276599996,
+ 30.235667236200001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045030,
+ "name": "阿里普兰机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "30.3981704852656",
+ "lng": "81.1328045146684",
+ "radius": 24602,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.343237881799993,
+ 30.271806176,
+ 120.0
+ ],
+ [
+ 81.165146062900007,
+ 30.1786831758,
+ 120.0
+ ],
+ [
+ 80.922135164400004,
+ 30.524580017200002,
+ 120.0
+ ],
+ [
+ 81.100858845299996,
+ 30.6177030166,
+ 120.0
+ ],
+ [
+ 81.343237881799993,
+ 30.271806176,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045031,
+ "name": "阿里普兰机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "30.3791997",
+ "lng": "81.1463752",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.1463752,
+ 30.830208024872597,
+ 500.0
+ ],
+ [
+ 81.237118654298186,
+ 30.823324928501783,
+ 500.0
+ ],
+ [
+ 81.325067298592259,
+ 30.80288762831529,
+ 500.0
+ ],
+ [
+ 81.407515892650778,
+ 30.769525295012762,
+ 500.0
+ ],
+ [
+ 81.48193502215949,
+ 30.724264145206696,
+ 500.0
+ ],
+ [
+ 81.546050908349955,
+ 30.668494708842516,
+ 500.0
+ ],
+ [
+ 81.597915982096907,
+ 30.603927692921555,
+ 500.0
+ ],
+ [
+ 81.635967907982888,
+ 30.532540021193324,
+ 500.0
+ ],
+ [
+ 81.65907530648829,
+ 30.456512936302076,
+ 500.0
+ ],
+ [
+ 81.666569026791336,
+ 30.378164268461287,
+ 500.0
+ ],
+ [
+ 81.65825842421188,
+ 30.299877100813514,
+ 500.0
+ ],
+ [
+ 81.634432657664064,
+ 30.224027100180344,
+ 500.0
+ ],
+ [
+ 81.595847516400923,
+ 30.152910741623675,
+ 500.0
+ ],
+ [
+ 81.54369869613943,
+ 30.088676547763185,
+ 500.0
+ ],
+ [
+ 81.47958276758385,
+ 30.033261301934353,
+ 500.0
+ ],
+ [
+ 81.40544731968258,
+ 29.988332990533031,
+ 500.0
+ ],
+ [
+ 81.323531926287956,
+ 29.955241995442929,
+ 500.0
+ ],
+ [
+ 81.236301692401412,
+ 29.934981801535113,
+ 500.0
+ ],
+ [
+ 81.1463752,
+ 29.928160214053936,
+ 500.0
+ ],
+ [
+ 81.056448707598577,
+ 29.934981801535113,
+ 500.0
+ ],
+ [
+ 80.969218473712033,
+ 29.955241995442929,
+ 500.0
+ ],
+ [
+ 80.887303080317409,
+ 29.988332990533031,
+ 500.0
+ ],
+ [
+ 80.813167632416139,
+ 30.033261301934353,
+ 500.0
+ ],
+ [
+ 80.749051703860559,
+ 30.088676547763185,
+ 500.0
+ ],
+ [
+ 80.696902883599066,
+ 30.152910741623675,
+ 500.0
+ ],
+ [
+ 80.658317742335925,
+ 30.224027100180344,
+ 500.0
+ ],
+ [
+ 80.634491975788109,
+ 30.299877100813514,
+ 500.0
+ ],
+ [
+ 80.626181373208652,
+ 30.378164268461287,
+ 500.0
+ ],
+ [
+ 80.633675093511698,
+ 30.456512936302076,
+ 500.0
+ ],
+ [
+ 80.656782492017101,
+ 30.532540021193324,
+ 500.0
+ ],
+ [
+ 80.694834417903081,
+ 30.603927692921555,
+ 500.0
+ ],
+ [
+ 80.746699491650034,
+ 30.668494708842516,
+ 500.0
+ ],
+ [
+ 80.810815377840498,
+ 30.724264145206696,
+ 500.0
+ ],
+ [
+ 80.88523450734921,
+ 30.769525295012762,
+ 500.0
+ ],
+ [
+ 80.967683101407729,
+ 30.80288762831529,
+ 500.0
+ ],
+ [
+ 81.055631745701803,
+ 30.823324928501783,
+ 500.0
+ ],
+ [
+ 81.1463752,
+ 30.830208024872597,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001521,
+ "name": "Changdu Bangda Airport",
+ "country": "CN",
+ "city": "Qamdo",
+ "height": 500,
+ "level": 2,
+ "lat": "30.549778",
+ "lng": "97.106511",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.106511,
+ 31.000774469293489,
+ 500.0
+ ],
+ [
+ 97.197415528574268,
+ 30.993891339529227,
+ 500.0
+ ],
+ [
+ 97.285520029270103,
+ 30.973453959721169,
+ 500.0
+ ],
+ [
+ 97.368114242682267,
+ 30.940091559183625,
+ 500.0
+ ],
+ [
+ 97.442664121535458,
+ 30.894830442424031,
+ 500.0
+ ],
+ [
+ 97.506891806496114,
+ 30.839061243243723,
+ 500.0
+ ],
+ [
+ 97.558846336936909,
+ 30.774494772368065,
+ 500.0
+ ],
+ [
+ 97.596962776564069,
+ 30.703108040400878,
+ 500.0
+ ],
+ [
+ 97.620107999390839,
+ 30.627082344790534,
+ 500.0
+ ],
+ [
+ 97.627611988744903,
+ 30.548735526871955,
+ 500.0
+ ],
+ [
+ 97.619284106076549,
+ 30.470450630672161,
+ 500.0
+ ],
+ [
+ 97.595414349608063,
+ 30.394603233072797,
+ 500.0
+ ],
+ [
+ 97.556760118000938,
+ 30.323489673905971,
+ 500.0
+ ],
+ [
+ 97.504519405481375,
+ 30.259258306348251,
+ 500.0
+ ],
+ [
+ 97.440291677554725,
+ 30.203845725469673,
+ 500.0
+ ],
+ [
+ 97.366027914952639,
+ 30.158919728565703,
+ 500.0
+ ],
+ [
+ 97.283971478598488,
+ 30.125830526165728,
+ 500.0
+ ],
+ [
+ 97.196591554510363,
+ 30.105571466649842,
+ 500.0
+ ],
+ [
+ 97.106511,
+ 30.098750267403894,
+ 500.0
+ ],
+ [
+ 97.016430445489632,
+ 30.105571466649842,
+ 500.0
+ ],
+ [
+ 96.929050521401507,
+ 30.125830526165728,
+ 500.0
+ ],
+ [
+ 96.846994085047356,
+ 30.158919728565703,
+ 500.0
+ ],
+ [
+ 96.77273032244527,
+ 30.203845725469673,
+ 500.0
+ ],
+ [
+ 96.70850259451862,
+ 30.259258306348251,
+ 500.0
+ ],
+ [
+ 96.656261881999058,
+ 30.323489673905971,
+ 500.0
+ ],
+ [
+ 96.617607650391932,
+ 30.394603233072797,
+ 500.0
+ ],
+ [
+ 96.593737893923446,
+ 30.470450630672161,
+ 500.0
+ ],
+ [
+ 96.585410011255092,
+ 30.548735526871955,
+ 500.0
+ ],
+ [
+ 96.592914000609156,
+ 30.627082344790534,
+ 500.0
+ ],
+ [
+ 96.616059223435926,
+ 30.703108040400878,
+ 500.0
+ ],
+ [
+ 96.654175663063086,
+ 30.774494772368065,
+ 500.0
+ ],
+ [
+ 96.706130193503881,
+ 30.839061243243723,
+ 500.0
+ ],
+ [
+ 96.770357878464537,
+ 30.894830442424031,
+ 500.0
+ ],
+ [
+ 96.844907757317728,
+ 30.940091559183625,
+ 500.0
+ ],
+ [
+ 96.927501970729892,
+ 30.973453959721169,
+ 500.0
+ ],
+ [
+ 97.015606471425727,
+ 30.993891339529227,
+ 500.0
+ ],
+ [
+ 97.106511,
+ 31.000774469293489,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3425,
+ "name": "Changdu Bangda Airport",
+ "country": "CN",
+ "city": "Qamdo",
+ "height": 0,
+ "level": 2,
+ "lat": "30.5175280367621",
+ "lng": "97.1434910850726",
+ "radius": 15038,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.157504562300005,
+ 30.468366083399999,
+ 0.0
+ ],
+ [
+ 97.208398983099997,
+ 30.3944013847,
+ 0.0
+ ],
+ [
+ 97.271491433199998,
+ 30.439286375199998,
+ 0.0
+ ],
+ [
+ 97.19694443,
+ 30.496404633600001,
+ 0.0
+ ],
+ [
+ 97.205823139200007,
+ 30.511305007800001,
+ 0.0
+ ],
+ [
+ 97.209865452499997,
+ 30.527533848600001,
+ 0.0
+ ],
+ [
+ 97.208894281300005,
+ 30.544110996800001,
+ 0.0
+ ],
+ [
+ 97.2029733225,
+ 30.559906640099999,
+ 0.0
+ ],
+ [
+ 97.138051413,
+ 30.6276094959,
+ 0.0
+ ],
+ [
+ 97.102391284399999,
+ 30.639515462799999,
+ 0.0
+ ],
+ [
+ 97.064590772100004,
+ 30.634473950899999,
+ 0.0
+ ],
+ [
+ 97.157504562300005,
+ 30.468366083399999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3425,
+ "name": "Changdu Bangda Airport",
+ "country": "CN",
+ "city": "Qamdo",
+ "height": 0,
+ "level": 2,
+ "lat": "30.585246007264",
+ "lng": "97.0785205079772",
+ "radius": 15037,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.013581566799999,
+ 30.7084066155,
+ 0.0
+ ],
+ [
+ 96.950356791800004,
+ 30.663517155899999,
+ 0.0
+ ],
+ [
+ 97.025138350899994,
+ 30.606446674,
+ 0.0
+ ],
+ [
+ 97.016227222200001,
+ 30.5914465673,
+ 0.0
+ ],
+ [
+ 97.012229732500003,
+ 30.575209008600002,
+ 0.0
+ ],
+ [
+ 97.013250212,
+ 30.558634043,
+ 0.0
+ ],
+ [
+ 97.019216628400002,
+ 30.542851112,
+ 0.0
+ ],
+ [
+ 97.084164403499997,
+ 30.475231079899999,
+ 0.0
+ ],
+ [
+ 97.119768740500007,
+ 30.463335131800001,
+ 0.0
+ ],
+ [
+ 97.157504562300005,
+ 30.468366083399999,
+ 0.0
+ ],
+ [
+ 97.064590772100004,
+ 30.634473950899999,
+ 0.0
+ ],
+ [
+ 97.013581566799999,
+ 30.7084066155,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3425,
+ "name": "Changdu Bangda Airport",
+ "country": "CN",
+ "city": "Qamdo",
+ "height": 120,
+ "level": 2,
+ "lat": "30.5512710761332",
+ "lng": "97.1108606838106",
+ "radius": 25112,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 96.877077157800002,
+ 30.653803612600001,
+ 120.0
+ ],
+ [
+ 97.038386397099998,
+ 30.768334515199999,
+ 120.0
+ ],
+ [
+ 97.344464896199995,
+ 30.448865940299999,
+ 120.0
+ ],
+ [
+ 97.183685675500001,
+ 30.334335036900001,
+ 120.0
+ ],
+ [
+ 96.877077157800002,
+ 30.653803612600001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001476,
+ "name": "康定",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "30.143055555556",
+ "lng": "101.738611111111",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.738611111110998,
+ 30.594080229148005,
+ 500.0
+ ],
+ [
+ 101.829133839602648,
+ 30.587197178734105,
+ 500.0
+ ],
+ [
+ 101.916868908938,
+ 30.566759988084865,
+ 500.0
+ ],
+ [
+ 101.999117957363012,
+ 30.533397747118247,
+ 500.0
+ ],
+ [
+ 102.073357919639847,
+ 30.488136551309633,
+ 500.0
+ ],
+ [
+ 102.137320608889283,
+ 30.432366787466734,
+ 500.0
+ ],
+ [
+ 102.189063103371851,
+ 30.36779901963067,
+ 500.0
+ ],
+ [
+ 102.227026631370279,
+ 30.296410051837583,
+ 500.0
+ ],
+ [
+ 102.250082205999803,
+ 30.220381051190458,
+ 500.0
+ ],
+ [
+ 102.257561862152144,
+ 30.142029832571271,
+ 500.0
+ ],
+ [
+ 102.249274945857678,
+ 30.063739533040813,
+ 500.0
+ ],
+ [
+ 102.225509465015179,
+ 29.987885943404304,
+ 500.0
+ ],
+ [
+ 102.187019002684522,
+ 29.916765725148696,
+ 500.0
+ ],
+ [
+ 102.134996104311909,
+ 29.85252763449434,
+ 500.0
+ ],
+ [
+ 102.071033373514297,
+ 29.79710871433625,
+ 500.0
+ ],
+ [
+ 101.997073751471973,
+ 29.752177211789672,
+ 500.0
+ ],
+ [
+ 101.915351622949657,
+ 29.719083744997011,
+ 500.0
+ ],
+ [
+ 101.828326501375457,
+ 29.698821987023358,
+ 500.0
+ ],
+ [
+ 101.738611111110998,
+ 29.691999864254363,
+ 500.0
+ ],
+ [
+ 101.648895720846539,
+ 29.698821987023358,
+ 500.0
+ ],
+ [
+ 101.561870599272339,
+ 29.719083744997011,
+ 500.0
+ ],
+ [
+ 101.480148470750024,
+ 29.752177211789672,
+ 500.0
+ ],
+ [
+ 101.4061888487077,
+ 29.79710871433625,
+ 500.0
+ ],
+ [
+ 101.342226117910087,
+ 29.85252763449434,
+ 500.0
+ ],
+ [
+ 101.290203219537474,
+ 29.916765725148696,
+ 500.0
+ ],
+ [
+ 101.251712757206818,
+ 29.987885943404304,
+ 500.0
+ ],
+ [
+ 101.227947276364318,
+ 30.063739533040813,
+ 500.0
+ ],
+ [
+ 101.219660360069852,
+ 30.142029832571271,
+ 500.0
+ ],
+ [
+ 101.227140016222194,
+ 30.220381051190458,
+ 500.0
+ ],
+ [
+ 101.250195590851717,
+ 30.296410051837583,
+ 500.0
+ ],
+ [
+ 101.288159118850146,
+ 30.36779901963067,
+ 500.0
+ ],
+ [
+ 101.339901613332714,
+ 30.432366787466734,
+ 500.0
+ ],
+ [
+ 101.40386430258215,
+ 30.488136551309633,
+ 500.0
+ ],
+ [
+ 101.478104264858985,
+ 30.533397747118247,
+ 500.0
+ ],
+ [
+ 101.560353313283997,
+ 30.566759988084865,
+ 500.0
+ ],
+ [
+ 101.648088382619349,
+ 30.587197178734105,
+ 500.0
+ ],
+ [
+ 101.738611111110998,
+ 30.594080229148005,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32774,
+ "name": "康定",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "30.1814949327492",
+ "lng": "101.710121115208",
+ "radius": 13852,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.712209199,
+ 30.221163562400001,
+ 0.0
+ ],
+ [
+ 101.677292048,
+ 30.3028040642,
+ 0.0
+ ],
+ [
+ 101.60688300299999,
+ 30.268460495599999,
+ 0.0
+ ],
+ [
+ 101.670219341,
+ 30.201810002199998,
+ 0.0
+ ],
+ [
+ 101.65393925799999,
+ 30.1720749674,
+ 0.0
+ ],
+ [
+ 101.652991693,
+ 30.155496959099999,
+ 0.0
+ ],
+ [
+ 101.657038175,
+ 30.1392717451,
+ 0.0
+ ],
+ [
+ 101.68411456,
+ 30.092862291,
+ 0.0
+ ],
+ [
+ 101.707211943,
+ 30.073299984399998,
+ 0.0
+ ],
+ [
+ 101.724707135,
+ 30.066498232200001,
+ 0.0
+ ],
+ [
+ 101.762719667,
+ 30.065518736400001,
+ 0.0
+ ],
+ [
+ 101.712209199,
+ 30.221163562400001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32774,
+ "name": "康定",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "30.1064112747039",
+ "lng": "101.768199847327",
+ "radius": 13848,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.802755497,
+ 29.985511367600001,
+ 0.0
+ ],
+ [
+ 101.869778248,
+ 30.018192092,
+ 0.0
+ ],
+ [
+ 101.804783671,
+ 30.084898505200002,
+ 0.0
+ ],
+ [
+ 101.823119201,
+ 30.114054947100001,
+ 0.0
+ ],
+ [
+ 101.825099647,
+ 30.130564555799999,
+ 0.0
+ ],
+ [
+ 101.822071885,
+ 30.146954958199998,
+ 0.0
+ ],
+ [
+ 101.814239924,
+ 30.162108846700001,
+ 0.0
+ ],
+ [
+ 101.767514198,
+ 30.211987734899999,
+ 0.0
+ ],
+ [
+ 101.731368127,
+ 30.222362008,
+ 0.0
+ ],
+ [
+ 101.712209199,
+ 30.221163562400001,
+ 0.0
+ ],
+ [
+ 101.762719667,
+ 30.065518736400001,
+ 0.0
+ ],
+ [
+ 101.802755497,
+ 29.985511367600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32774,
+ "name": "康定",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "30.1424223150925",
+ "lng": "101.73854629173",
+ "radius": 24116,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.945069297,
+ 30.019528727200001,
+ 120.0
+ ],
+ [
+ 101.76705531,
+ 29.9269455805,
+ 120.0
+ ],
+ [
+ 101.531797663,
+ 30.265355857,
+ 120.0
+ ],
+ [
+ 101.710423229,
+ 30.3579390029,
+ 120.0
+ ],
+ [
+ 101.945069297,
+ 30.019528727200001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2075,
+ "name": "Chengdu Shuangliu International Airport",
+ "country": "CN",
+ "city": "Chengdu",
+ "height": 0,
+ "level": 2,
+ "lat": "30.5100024238829",
+ "lng": "103.928096017301",
+ "radius": 15429,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.017813147887736,
+ 30.625273730521663,
+ 0.0
+ ],
+ [
+ 103.864671250643923,
+ 30.433762929246932,
+ 0.0
+ ],
+ [
+ 103.83859142,
+ 30.394669815699999,
+ 0.0
+ ],
+ [
+ 103.910800778,
+ 30.372280764900001,
+ 0.0
+ ],
+ [
+ 103.934140602,
+ 30.4539507422,
+ 0.0
+ ],
+ [
+ 103.966506061,
+ 30.4601482735,
+ 0.0
+ ],
+ [
+ 103.982656199,
+ 30.469188280299999,
+ 0.0
+ ],
+ [
+ 103.995544808,
+ 30.481521713100001,
+ 0.0
+ ],
+ [
+ 104.02096114299999,
+ 30.524648859599999,
+ 0.0
+ ],
+ [
+ 104.025358279,
+ 30.554284624899999,
+ 0.0
+ ],
+ [
+ 104.022359371196544,
+ 30.564792940822748,
+ 0.0
+ ],
+ [
+ 104.02429484,
+ 30.5679820605,
+ 0.0
+ ],
+ [
+ 104.029715998,
+ 30.584889950800001,
+ 0.0
+ ],
+ [
+ 104.029717672,
+ 30.6014881899,
+ 0.0
+ ],
+ [
+ 104.024727416,
+ 30.617521136099999,
+ 0.0
+ ],
+ [
+ 104.017813147887736,
+ 30.625273730521663,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2075,
+ "name": "Chengdu Shuangliu International Airport",
+ "country": "CN",
+ "city": "Chengdu",
+ "height": 0,
+ "level": 2,
+ "lat": "30.5800446448878",
+ "lng": "103.948182750976",
+ "radius": 18479,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.028352967606821,
+ 30.681509054739845,
+ 0.0
+ ],
+ [
+ 104.054747997,
+ 30.7186591259,
+ 0.0
+ ],
+ [
+ 103.97917819,
+ 30.741042254,
+ 0.0
+ ],
+ [
+ 103.959242141,
+ 30.65941046,
+ 0.0
+ ],
+ [
+ 103.92455629,
+ 30.654001203499998,
+ 0.0
+ ],
+ [
+ 103.89486386599999,
+ 30.6332495029,
+ 0.0
+ ],
+ [
+ 103.869038739,
+ 30.5886855113,
+ 0.0
+ ],
+ [
+ 103.863616707,
+ 30.571722450399999,
+ 0.0
+ ],
+ [
+ 103.863639606,
+ 30.555124222900002,
+ 0.0
+ ],
+ [
+ 103.866955424132371,
+ 30.544516367228127,
+ 0.0
+ ],
+ [
+ 103.865691516,
+ 30.541988256700002,
+ 0.0
+ ],
+ [
+ 103.861317337,
+ 30.512254009700001,
+ 0.0
+ ],
+ [
+ 103.86594871699999,
+ 30.4961425674,
+ 0.0
+ ],
+ [
+ 103.873781071540478,
+ 30.486988644986472,
+ 0.0
+ ],
+ [
+ 103.841921861,
+ 30.441343602100002,
+ 0.0
+ ],
+ [
+ 103.864671250643923,
+ 30.433762929246932,
+ 0.0
+ ],
+ [
+ 104.017813147887736,
+ 30.625273730521663,
+ 0.0
+ ],
+ [
+ 104.051418084,
+ 30.673645732299999,
+ 0.0
+ ],
+ [
+ 104.028352967606821,
+ 30.681509054739845,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2075,
+ "name": "Chengdu Shuangliu International Airport",
+ "country": "CN",
+ "city": "Chengdu",
+ "height": 120,
+ "level": 2,
+ "lat": "30.5562280415569",
+ "lng": "103.94616663045",
+ "radius": 26481,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.119834237293873,
+ 30.68102682527168,
+ 120.0
+ ],
+ [
+ 104.13479639099999,
+ 30.675036030899999,
+ 120.0
+ ],
+ [
+ 103.941456962,
+ 30.318105266300002,
+ 120.0
+ ],
+ [
+ 103.752502409,
+ 30.3940405335,
+ 120.0
+ ],
+ [
+ 103.773041165539709,
+ 30.432094773180918,
+ 120.0
+ ],
+ [
+ 103.75426042799999,
+ 30.4398439223,
+ 120.0
+ ],
+ [
+ 103.950899467,
+ 30.7943506465,
+ 120.0
+ ],
+ [
+ 104.139707836,
+ 30.716730435500001,
+ 120.0
+ ],
+ [
+ 104.119834237293873,
+ 30.68102682527168,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001317,
+ "name": "Chengdu Shuangliu International Airport",
+ "country": "CN",
+ "city": "Chengdu",
+ "height": 500,
+ "level": 2,
+ "lat": "30.578333",
+ "lng": "103.946945",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 103.946945,
+ 31.029327480911878,
+ 500.0
+ ],
+ [
+ 104.037876627310311,
+ 31.022444345540229,
+ 500.0
+ ],
+ [
+ 104.126007348935204,
+ 31.002006952359206,
+ 500.0
+ ],
+ [
+ 104.208626061086562,
+ 30.968644540517051,
+ 500.0
+ ],
+ [
+ 104.283197937072416,
+ 30.923383429267471,
+ 500.0
+ ],
+ [
+ 104.347444431063579,
+ 30.867614269835677,
+ 500.0
+ ],
+ [
+ 104.399414011848563,
+ 30.803047890348612,
+ 500.0
+ ],
+ [
+ 104.437541305547143,
+ 30.731661315981274,
+ 500.0
+ ],
+ [
+ 104.460692892315876,
+ 30.655635853376211,
+ 500.0
+ ],
+ [
+ 104.46819860976801,
+ 30.577289345734325,
+ 500.0
+ ],
+ [
+ 104.459867820333599,
+ 30.499004830521137,
+ 500.0
+ ],
+ [
+ 104.435990663386804,
+ 30.423157869531131,
+ 500.0
+ ],
+ [
+ 104.39732480830753,
+ 30.352044779912354,
+ 500.0
+ ],
+ [
+ 104.345068635985811,
+ 30.287813886418682,
+ 500.0
+ ],
+ [
+ 104.280822098927175,
+ 30.232401752540699,
+ 500.0
+ ],
+ [
+ 104.206536748494884,
+ 30.18747614385482,
+ 500.0
+ ],
+ [
+ 104.124456582767053,
+ 30.154387242148413,
+ 500.0
+ ],
+ [
+ 104.037051474387681,
+ 30.134128372907568,
+ 500.0
+ ],
+ [
+ 103.946945,
+ 30.12730723878148,
+ 500.0
+ ],
+ [
+ 103.856838525612318,
+ 30.134128372907568,
+ 500.0
+ ],
+ [
+ 103.769433417232946,
+ 30.154387242148413,
+ 500.0
+ ],
+ [
+ 103.687353251505115,
+ 30.18747614385482,
+ 500.0
+ ],
+ [
+ 103.613067901072824,
+ 30.232401752540699,
+ 500.0
+ ],
+ [
+ 103.548821364014188,
+ 30.287813886418682,
+ 500.0
+ ],
+ [
+ 103.496565191692468,
+ 30.352044779912354,
+ 500.0
+ ],
+ [
+ 103.457899336613195,
+ 30.423157869531131,
+ 500.0
+ ],
+ [
+ 103.4340221796664,
+ 30.499004830521137,
+ 500.0
+ ],
+ [
+ 103.425691390231989,
+ 30.577289345734325,
+ 500.0
+ ],
+ [
+ 103.433197107684123,
+ 30.655635853376211,
+ 500.0
+ ],
+ [
+ 103.456348694452856,
+ 30.731661315981274,
+ 500.0
+ ],
+ [
+ 103.494475988151436,
+ 30.803047890348612,
+ 500.0
+ ],
+ [
+ 103.54644556893642,
+ 30.867614269835677,
+ 500.0
+ ],
+ [
+ 103.610692062927583,
+ 30.923383429267471,
+ 500.0
+ ],
+ [
+ 103.685263938913437,
+ 30.968644540517051,
+ 500.0
+ ],
+ [
+ 103.767882651064795,
+ 31.002006952359206,
+ 500.0
+ ],
+ [
+ 103.856013372689688,
+ 31.022444345540229,
+ 500.0
+ ],
+ [
+ 103.946945,
+ 31.029327480911878,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001277,
+ "name": "天府国际机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "30.2914952003967",
+ "lng": "104.579377290638",
+ "radius": 10859,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.56093646799999,
+ 30.257324480099999,
+ 0.0
+ ],
+ [
+ 104.647045444,
+ 30.213254549799998,
+ 0.0
+ ],
+ [
+ 104.675967141,
+ 30.274403631599998,
+ 0.0
+ ],
+ [
+ 104.578781791,
+ 30.2950395726,
+ 0.0
+ ],
+ [
+ 104.578737457,
+ 30.313089946800002,
+ 0.0
+ ],
+ [
+ 104.5735073,
+ 30.3290623862,
+ 0.0
+ ],
+ [
+ 104.563663674,
+ 30.3433215186,
+ 0.0
+ ],
+ [
+ 104.549876225,
+ 30.3548946694,
+ 0.0
+ ],
+ [
+ 104.511601118020963,
+ 30.369700988307663,
+ 0.0
+ ],
+ [
+ 104.56093646799999,
+ 30.257324480099999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001277,
+ "name": "天府国际机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "30.3464045286524",
+ "lng": "104.441449312356",
+ "radius": 15155,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.312547402,
+ 30.402461386700001,
+ 0.0
+ ],
+ [
+ 104.283623537,
+ 30.3413080242,
+ 0.0
+ ],
+ [
+ 104.35041110140898,
+ 30.327219639602649,
+ 0.0
+ ],
+ [
+ 104.34317052199999,
+ 30.312893436300001,
+ 0.0
+ ],
+ [
+ 104.338059392,
+ 30.295332321,
+ 0.0
+ ],
+ [
+ 104.338590137,
+ 30.278740410299999,
+ 0.0
+ ],
+ [
+ 104.344074477,
+ 30.2628323466,
+ 0.0
+ ],
+ [
+ 104.36808968699999,
+ 30.2372810494,
+ 0.0
+ ],
+ [
+ 104.56093646799999,
+ 30.257324480099999,
+ 0.0
+ ],
+ [
+ 104.511601118020963,
+ 30.369700988307663,
+ 0.0
+ ],
+ [
+ 104.555676713,
+ 30.432103950599998,
+ 0.0
+ ],
+ [
+ 104.526989304905669,
+ 30.442558229018044,
+ 0.0
+ ],
+ [
+ 104.535868066,
+ 30.455701749799999,
+ 0.0
+ ],
+ [
+ 104.46471654,
+ 30.4802126698,
+ 0.0
+ ],
+ [
+ 104.44155461699999,
+ 30.3961145054,
+ 0.0
+ ],
+ [
+ 104.402067315,
+ 30.391258052400001,
+ 0.0
+ ],
+ [
+ 104.373428118214534,
+ 30.371372490751693,
+ 0.0
+ ],
+ [
+ 104.312547402,
+ 30.402461386700001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001277,
+ "name": "天府国际机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "30.2100098505693",
+ "lng": "104.439299456114",
+ "radius": 12815,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.36808968699999,
+ 30.2372810494,
+ 0.0
+ ],
+ [
+ 104.317779497,
+ 30.162583041400001,
+ 0.0
+ ],
+ [
+ 104.338115779918155,
+ 30.155558350969528,
+ 0.0
+ ],
+ [
+ 104.33531484,
+ 30.1515810838,
+ 0.0
+ ],
+ [
+ 104.405681708,
+ 30.125871851100001,
+ 0.0
+ ],
+ [
+ 104.430681077,
+ 30.209578375300001,
+ 0.0
+ ],
+ [
+ 104.470134159,
+ 30.213726126299999,
+ 0.0
+ ],
+ [
+ 104.498411659854312,
+ 30.232534615013037,
+ 0.0
+ ],
+ [
+ 104.531148236,
+ 30.236805000699999,
+ 0.0
+ ],
+ [
+ 104.56093646799999,
+ 30.257324480099999,
+ 0.0
+ ],
+ [
+ 104.36808968699999,
+ 30.2372810494,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001277,
+ "name": "天府国际机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "30.2971513030323",
+ "lng": "104.461450916007",
+ "radius": 26356,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.22423879599999,
+ 30.300617661099999,
+ 120.0
+ ],
+ [
+ 104.30298674,
+ 30.467160065800002,
+ 120.0
+ ],
+ [
+ 104.375832362570065,
+ 30.441502412780835,
+ 120.0
+ ],
+ [
+ 104.417226863,
+ 30.5310905897,
+ 120.0
+ ],
+ [
+ 104.611057147,
+ 30.464325394799999,
+ 120.0
+ ],
+ [
+ 104.604073369994722,
+ 30.449275025221578,
+ 120.0
+ ],
+ [
+ 104.631026413,
+ 30.439454846299999,
+ 120.0
+ ],
+ [
+ 104.594285458431358,
+ 30.364558959806992,
+ 120.0
+ ],
+ [
+ 104.735225249,
+ 30.314917209,
+ 120.0
+ ],
+ [
+ 104.65659952199999,
+ 30.148374804100001,
+ 120.0
+ ],
+ [
+ 104.513033171059746,
+ 30.198927386982398,
+ 120.0
+ ],
+ [
+ 104.45179796,
+ 30.074100324900002,
+ 120.0
+ ],
+ [
+ 104.260288982,
+ 30.144135866399999,
+ 120.0
+ ],
+ [
+ 104.26184613854808,
+ 30.147322815215539,
+ 120.0
+ ],
+ [
+ 104.24292823899999,
+ 30.153864248,
+ 120.0
+ ],
+ [
+ 104.298632413133291,
+ 30.274422180951465,
+ 120.0
+ ],
+ [
+ 104.22423879599999,
+ 30.300617661099999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001278,
+ "name": "天府国际机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "30.32272423",
+ "lng": "104.44505509",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.44505509,
+ 30.773736471555921,
+ 500.0
+ ],
+ [
+ 104.535745518122681,
+ 30.766853386203667,
+ 500.0
+ ],
+ [
+ 104.623642854063021,
+ 30.746416112283335,
+ 500.0
+ ],
+ [
+ 104.706043509987396,
+ 30.713053801136958,
+ 500.0
+ ],
+ [
+ 104.780419596815776,
+ 30.667792640349422,
+ 500.0
+ ],
+ [
+ 104.844498679134361,
+ 30.612023125566918,
+ 500.0
+ ],
+ [
+ 104.896334304296957,
+ 30.547455929534575,
+ 500.0
+ ],
+ [
+ 104.934364993053748,
+ 30.476067947316654,
+ 500.0
+ ],
+ [
+ 104.957459940746944,
+ 30.400040403457009,
+ 500.0
+ ],
+ [
+ 104.964950281490744,
+ 30.321691124495985,
+ 500.0
+ ],
+ [
+ 104.956645368469154,
+ 30.243403206495838,
+ 500.0
+ ],
+ [
+ 104.932834084176477,
+ 30.167552345985403,
+ 500.0
+ ],
+ [
+ 104.894271687942009,
+ 30.09643506269413,
+ 500.0
+ ],
+ [
+ 104.842153118734089,
+ 30.032199935211406,
+ 500.0
+ ],
+ [
+ 104.778073994247322,
+ 29.976783809060933,
+ 500.0
+ ],
+ [
+ 104.703980786858878,
+ 29.931854733103748,
+ 500.0
+ ],
+ [
+ 104.622111823767327,
+ 29.898763145827569,
+ 500.0
+ ],
+ [
+ 104.534930866594635,
+ 29.878502577191437,
+ 500.0
+ ],
+ [
+ 104.44505509,
+ 29.871680861462867,
+ 500.0
+ ],
+ [
+ 104.355179313405358,
+ 29.878502577191437,
+ 500.0
+ ],
+ [
+ 104.267998356232667,
+ 29.898763145827569,
+ 500.0
+ ],
+ [
+ 104.186129393141115,
+ 29.931854733103748,
+ 500.0
+ ],
+ [
+ 104.112036185752672,
+ 29.976783809060933,
+ 500.0
+ ],
+ [
+ 104.047957061265905,
+ 30.032199935211406,
+ 500.0
+ ],
+ [
+ 103.995838492057985,
+ 30.09643506269413,
+ 500.0
+ ],
+ [
+ 103.957276095823516,
+ 30.167552345985403,
+ 500.0
+ ],
+ [
+ 103.93346481153084,
+ 30.243403206495838,
+ 500.0
+ ],
+ [
+ 103.92515989850925,
+ 30.321691124495985,
+ 500.0
+ ],
+ [
+ 103.93265023925305,
+ 30.400040403457009,
+ 500.0
+ ],
+ [
+ 103.955745186946245,
+ 30.476067947316654,
+ 500.0
+ ],
+ [
+ 103.993775875703037,
+ 30.547455929534575,
+ 500.0
+ ],
+ [
+ 104.045611500865633,
+ 30.612023125566918,
+ 500.0
+ ],
+ [
+ 104.109690583184218,
+ 30.667792640349422,
+ 500.0
+ ],
+ [
+ 104.184066670012598,
+ 30.713053801136958,
+ 500.0
+ ],
+ [
+ 104.266467325936972,
+ 30.746416112283335,
+ 500.0
+ ],
+ [
+ 104.354364661877312,
+ 30.766853386203667,
+ 500.0
+ ],
+ [
+ 104.44505509,
+ 30.773736471555921,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002378,
+ "name": "湖北恩施恒通公司沥青配置中心",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "30.35469",
+ "lng": "109.479199",
+ "radius": 1204,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.479199,
+ 30.365550688469511,
+ 0.0
+ ],
+ [
+ 109.481373872982587,
+ 30.365385672252543,
+ 0.0
+ ],
+ [
+ 109.483482642195568,
+ 30.364895639144311,
+ 0.0
+ ],
+ [
+ 109.485461214976127,
+ 30.364095483183942,
+ 0.0
+ ],
+ [
+ 109.48724945945736,
+ 30.363009523800145,
+ 0.0
+ ],
+ [
+ 109.488793033325692,
+ 30.361670766021444,
+ 0.0
+ ],
+ [
+ 109.490045035877898,
+ 30.360119896584873,
+ 0.0
+ ],
+ [
+ 109.490967433073166,
+ 30.358404046572829,
+ 0.0
+ ],
+ [
+ 109.491532212281342,
+ 30.356575358309581,
+ 0.0
+ ],
+ [
+ 109.491722231749307,
+ 30.354689400188093,
+ 0.0
+ ],
+ [
+ 109.491531739178598,
+ 30.352803477695101,
+ 0.0
+ ],
+ [
+ 109.490966543930867,
+ 30.350974892020012,
+ 0.0
+ ],
+ [
+ 109.490043837939709,
+ 30.349259199182146,
+ 0.0
+ ],
+ [
+ 109.488791671080619,
+ 30.34770852254826,
+ 0.0
+ ],
+ [
+ 109.487248097212287,
+ 30.346369969945886,
+ 0.0
+ ],
+ [
+ 109.485460017037894,
+ 30.345284203364773,
+ 0.0
+ ],
+ [
+ 109.483481753053226,
+ 30.344484204578578,
+ 0.0
+ ],
+ [
+ 109.481373399879828,
+ 30.343994274058517,
+ 0.0
+ ],
+ [
+ 109.479199,
+ 30.343829293470051,
+ 0.0
+ ],
+ [
+ 109.47702460012016,
+ 30.343994274058517,
+ 0.0
+ ],
+ [
+ 109.474916246946762,
+ 30.344484204578578,
+ 0.0
+ ],
+ [
+ 109.472937982962094,
+ 30.345284203364773,
+ 0.0
+ ],
+ [
+ 109.471149902787701,
+ 30.346369969945886,
+ 0.0
+ ],
+ [
+ 109.469606328919369,
+ 30.34770852254826,
+ 0.0
+ ],
+ [
+ 109.46835416206028,
+ 30.349259199182146,
+ 0.0
+ ],
+ [
+ 109.467431456069122,
+ 30.350974892020012,
+ 0.0
+ ],
+ [
+ 109.466866260821391,
+ 30.352803477695101,
+ 0.0
+ ],
+ [
+ 109.466675768250681,
+ 30.354689400188093,
+ 0.0
+ ],
+ [
+ 109.466865787718646,
+ 30.356575358309581,
+ 0.0
+ ],
+ [
+ 109.467430566926822,
+ 30.358404046572829,
+ 0.0
+ ],
+ [
+ 109.46835296412209,
+ 30.360119896584873,
+ 0.0
+ ],
+ [
+ 109.469604966674297,
+ 30.361670766021444,
+ 0.0
+ ],
+ [
+ 109.471148540542629,
+ 30.363009523800145,
+ 0.0
+ ],
+ [
+ 109.472936785023862,
+ 30.364095483183942,
+ 0.0
+ ],
+ [
+ 109.47491535780442,
+ 30.364895639144311,
+ 0.0
+ ],
+ [
+ 109.477024127017401,
+ 30.365385672252543,
+ 0.0
+ ],
+ [
+ 109.479199,
+ 30.365550688469511,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 141,
+ "name": "Enshi Airport",
+ "country": "CN",
+ "city": "Enshi",
+ "height": 0,
+ "level": 2,
+ "lat": "30.3658438591341",
+ "lng": "109.48608220556",
+ "radius": 13216,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.55131557,
+ 30.470547287500001,
+ 0.0
+ ],
+ [
+ 109.473991369,
+ 30.484244201599999,
+ 0.0
+ ],
+ [
+ 109.475655655,
+ 30.3959081484,
+ 0.0
+ ],
+ [
+ 109.440954188,
+ 30.383682521400001,
+ 0.0
+ ],
+ [
+ 109.427221814,
+ 30.372057156299999,
+ 0.0
+ ],
+ [
+ 109.417448066,
+ 30.357760802200001,
+ 0.0
+ ],
+ [
+ 109.412297808,
+ 30.3417686668,
+ 0.0
+ ],
+ [
+ 109.413439186,
+ 30.287763833900001,
+ 0.0
+ ],
+ [
+ 109.421870626,
+ 30.272847846099999,
+ 0.0
+ ],
+ [
+ 109.45041385899999,
+ 30.251043527499998,
+ 0.0
+ ],
+ [
+ 109.521321282,
+ 30.3888942084,
+ 0.0
+ ],
+ [
+ 109.55131557,
+ 30.470547287500001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 141,
+ "name": "Enshi Airport",
+ "country": "CN",
+ "city": "Enshi",
+ "height": 0,
+ "level": 2,
+ "lat": "30.2767986631078",
+ "lng": "109.475810600793",
+ "radius": 13207,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.45041385899999,
+ 30.251043527499998,
+ 0.0
+ ],
+ [
+ 109.417038702,
+ 30.169423405700002,
+ 0.0
+ ],
+ [
+ 109.49435913799999,
+ 30.159106387400001,
+ 0.0
+ ],
+ [
+ 109.497721779,
+ 30.247464746599999,
+ 0.0
+ ],
+ [
+ 109.52787349899999,
+ 30.2593512055,
+ 0.0
+ ],
+ [
+ 109.541455049,
+ 30.271094250600001,
+ 0.0
+ ],
+ [
+ 109.556026242,
+ 30.301506631500001,
+ 0.0
+ ],
+ [
+ 109.55936222299999,
+ 30.321525314100001,
+ 0.0
+ ],
+ [
+ 109.55726462299999,
+ 30.351391467300001,
+ 0.0
+ ],
+ [
+ 109.537003618,
+ 30.379277397599999,
+ 0.0
+ ],
+ [
+ 109.521321282,
+ 30.3888942084,
+ 0.0
+ ],
+ [
+ 109.45041385899999,
+ 30.251043527499998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 141,
+ "name": "Enshi Airport",
+ "country": "CN",
+ "city": "Enshi",
+ "height": 120,
+ "level": 2,
+ "lat": "30.3208507928866",
+ "lng": "109.484630373406",
+ "radius": 23449,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.402664464,
+ 30.519541412599999,
+ 120.0
+ ],
+ [
+ 109.610407218,
+ 30.501703820500001,
+ 120.0
+ ],
+ [
+ 109.566175563,
+ 30.122082043399999,
+ 120.0
+ ],
+ [
+ 109.359236249,
+ 30.1399196357,
+ 120.0
+ ],
+ [
+ 109.402664464,
+ 30.519541412599999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001491,
+ "name": "Enshi Airport",
+ "country": "CN",
+ "city": "Enshi",
+ "height": 500,
+ "level": 2,
+ "lat": "30.322501",
+ "lng": "109.485498",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.485498,
+ 30.773513257028942,
+ 500.0
+ ],
+ [
+ 109.576188218824456,
+ 30.766630171720209,
+ 500.0
+ ],
+ [
+ 109.664085352247014,
+ 30.746192897903597,
+ 500.0
+ ],
+ [
+ 109.746485818956273,
+ 30.71283058684471,
+ 500.0
+ ],
+ [
+ 109.820861735892436,
+ 30.667569426013735,
+ 500.0
+ ],
+ [
+ 109.884940672944069,
+ 30.611799910921381,
+ 500.0
+ ],
+ [
+ 109.936776181871764,
+ 30.547232714177451,
+ 500.0
+ ],
+ [
+ 109.974806786805047,
+ 30.475844730732923,
+ 500.0
+ ],
+ [
+ 109.997901685355046,
+ 30.399817185060108,
+ 500.0
+ ],
+ [
+ 110.005392012760524,
+ 30.321467903684866,
+ 500.0
+ ],
+ [
+ 109.997087122196945,
+ 30.243179982720477,
+ 500.0
+ ],
+ [
+ 109.973275895067431,
+ 30.167329118813129,
+ 500.0
+ ],
+ [
+ 109.934713588609526,
+ 30.096211831868736,
+ 500.0
+ ],
+ [
+ 109.882595138804575,
+ 30.03197670069779,
+ 500.0
+ ],
+ [
+ 109.818516159585542,
+ 29.976560571069641,
+ 500.0
+ ],
+ [
+ 109.744423118922427,
+ 29.931631492092119,
+ 500.0
+ ],
+ [
+ 109.662554339093205,
+ 29.898539902476546,
+ 500.0
+ ],
+ [
+ 109.575373576417547,
+ 29.878279332360062,
+ 500.0
+ ],
+ [
+ 109.485498,
+ 29.871457616124854,
+ 500.0
+ ],
+ [
+ 109.395622423582466,
+ 29.878279332360062,
+ 500.0
+ ],
+ [
+ 109.308441660906809,
+ 29.898539902476546,
+ 500.0
+ ],
+ [
+ 109.226572881077587,
+ 29.931631492092119,
+ 500.0
+ ],
+ [
+ 109.152479840414472,
+ 29.976560571069641,
+ 500.0
+ ],
+ [
+ 109.088400861195439,
+ 30.03197670069779,
+ 500.0
+ ],
+ [
+ 109.036282411390488,
+ 30.096211831868736,
+ 500.0
+ ],
+ [
+ 108.997720104932583,
+ 30.167329118813129,
+ 500.0
+ ],
+ [
+ 108.973908877803069,
+ 30.243179982720477,
+ 500.0
+ ],
+ [
+ 108.96560398723949,
+ 30.321467903684866,
+ 500.0
+ ],
+ [
+ 108.973094314644968,
+ 30.399817185060108,
+ 500.0
+ ],
+ [
+ 108.996189213194967,
+ 30.475844730732923,
+ 500.0
+ ],
+ [
+ 109.03421981812825,
+ 30.547232714177451,
+ 500.0
+ ],
+ [
+ 109.086055327055945,
+ 30.611799910921381,
+ 500.0
+ ],
+ [
+ 109.150134264107578,
+ 30.667569426013735,
+ 500.0
+ ],
+ [
+ 109.22451018104374,
+ 30.71283058684471,
+ 500.0
+ ],
+ [
+ 109.306910647753,
+ 30.746192897903597,
+ 500.0
+ ],
+ [
+ 109.394807781175558,
+ 30.766630171720209,
+ 500.0
+ ],
+ [
+ 109.485498,
+ 30.773513257028942,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001497,
+ "name": "Yichang Airport",
+ "country": "CN",
+ "city": "Yichang",
+ "height": 500,
+ "level": 2,
+ "lat": "30.549027",
+ "lng": "111.482049",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.482049,
+ 31.000023521573738,
+ 500.0
+ ],
+ [
+ 111.572952816396935,
+ 30.993140391956882,
+ 500.0
+ ],
+ [
+ 111.661056627985033,
+ 30.97270301250035,
+ 500.0
+ ],
+ [
+ 111.743650197550323,
+ 30.939340612259919,
+ 500.0
+ ],
+ [
+ 111.818199498301269,
+ 30.894079495355321,
+ 500.0
+ ],
+ [
+ 111.882426688946012,
+ 30.838310295129773,
+ 500.0
+ ],
+ [
+ 111.934380823852649,
+ 30.773743821851134,
+ 500.0
+ ],
+ [
+ 111.972496978227454,
+ 30.70235708574015,
+ 500.0
+ ],
+ [
+ 111.995642033806334,
+ 30.626331384003414,
+ 500.0
+ ],
+ [
+ 112.0031459777463,
+ 30.547984557926828,
+ 500.0
+ ],
+ [
+ 111.994818171471678,
+ 30.469699651709895,
+ 500.0
+ ],
+ [
+ 111.970948609494982,
+ 30.393852242630981,
+ 500.0
+ ],
+ [
+ 111.932294683362841,
+ 30.322738671118564,
+ 500.0
+ ],
+ [
+ 111.880054377139444,
+ 30.258507291096532,
+ 500.0
+ ],
+ [
+ 111.815827143531379,
+ 30.203094698465208,
+ 500.0
+ ],
+ [
+ 111.74156394827358,
+ 30.158168691354032,
+ 500.0
+ ],
+ [
+ 111.659508135544641,
+ 30.125079481048072,
+ 500.0
+ ],
+ [
+ 111.572128873317652,
+ 30.104820416529396,
+ 500.0
+ ],
+ [
+ 111.482049,
+ 30.097999215571278,
+ 500.0
+ ],
+ [
+ 111.391969126682355,
+ 30.104820416529396,
+ 500.0
+ ],
+ [
+ 111.304589864455366,
+ 30.125079481048072,
+ 500.0
+ ],
+ [
+ 111.222534051726427,
+ 30.158168691354032,
+ 500.0
+ ],
+ [
+ 111.148270856468628,
+ 30.203094698465208,
+ 500.0
+ ],
+ [
+ 111.084043622860563,
+ 30.258507291096532,
+ 500.0
+ ],
+ [
+ 111.031803316637166,
+ 30.322738671118564,
+ 500.0
+ ],
+ [
+ 110.993149390505025,
+ 30.393852242630981,
+ 500.0
+ ],
+ [
+ 110.969279828528329,
+ 30.469699651709895,
+ 500.0
+ ],
+ [
+ 110.960952022253707,
+ 30.547984557926828,
+ 500.0
+ ],
+ [
+ 110.968455966193673,
+ 30.626331384003414,
+ 500.0
+ ],
+ [
+ 110.991601021772553,
+ 30.70235708574015,
+ 500.0
+ ],
+ [
+ 111.029717176147358,
+ 30.773743821851134,
+ 500.0
+ ],
+ [
+ 111.081671311053995,
+ 30.838310295129773,
+ 500.0
+ ],
+ [
+ 111.145898501698738,
+ 30.894079495355321,
+ 500.0
+ ],
+ [
+ 111.220447802449684,
+ 30.939340612259919,
+ 500.0
+ ],
+ [
+ 111.303041372014974,
+ 30.97270301250035,
+ 500.0
+ ],
+ [
+ 111.391145183603072,
+ 30.993140391956882,
+ 500.0
+ ],
+ [
+ 111.482049,
+ 31.000023521573738,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9024,
+ "name": "Yichang Airport",
+ "country": "CN",
+ "city": "Yichang",
+ "height": 0,
+ "level": 2,
+ "lat": "30.5861609011334",
+ "lng": "111.442242701191",
+ "radius": 13167,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.43349156,
+ 30.622906846700001,
+ 0.0
+ ],
+ [
+ 111.37185311099999,
+ 30.687915466100002,
+ 0.0
+ ],
+ [
+ 111.31857167,
+ 30.638059623299998,
+ 0.0
+ ],
+ [
+ 111.400230594,
+ 30.589761305100001,
+ 0.0
+ ],
+ [
+ 111.39350671699999,
+ 30.559999600400001,
+ 0.0
+ ],
+ [
+ 111.396948771,
+ 30.5436681857,
+ 0.0
+ ],
+ [
+ 111.40517961,
+ 30.528660071899999,
+ 0.0
+ ],
+ [
+ 111.437625189,
+ 30.499339330200002,
+ 0.0
+ ],
+ [
+ 111.466996777,
+ 30.48507956,
+ 0.0
+ ],
+ [
+ 111.486035525,
+ 30.482567658499999,
+ 0.0
+ ],
+ [
+ 111.523128676,
+ 30.490408023299999,
+ 0.0
+ ],
+ [
+ 111.43349156,
+ 30.622906846700001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9024,
+ "name": "Yichang Airport",
+ "country": "CN",
+ "city": "Yichang",
+ "height": 0,
+ "level": 2,
+ "lat": "30.5313333143377",
+ "lng": "111.521784700722",
+ "radius": 13233,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.58477501199999,
+ 30.425422653,
+ 0.0
+ ],
+ [
+ 111.641440321,
+ 30.471876849499999,
+ 0.0
+ ],
+ [
+ 111.556433299,
+ 30.520246338100002,
+ 0.0
+ ],
+ [
+ 111.563162905,
+ 30.5499566083,
+ 0.0
+ ],
+ [
+ 111.559739368,
+ 30.566290943799999,
+ 0.0
+ ],
+ [
+ 111.551520761,
+ 30.581305323199999,
+ 0.0
+ ],
+ [
+ 111.52238734,
+ 30.610651208299998,
+ 0.0
+ ],
+ [
+ 111.50734984499999,
+ 30.621175863800001,
+ 0.0
+ ],
+ [
+ 111.470690545,
+ 30.630561786499999,
+ 0.0
+ ],
+ [
+ 111.43349156,
+ 30.622906846700001,
+ 0.0
+ ],
+ [
+ 111.523128676,
+ 30.490408023299999,
+ 0.0
+ ],
+ [
+ 111.58477501199999,
+ 30.425422653,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9024,
+ "name": "Yichang Airport",
+ "country": "CN",
+ "city": "Yichang",
+ "height": 120,
+ "level": 2,
+ "lat": "30.5548442978491",
+ "lng": "111.478936800865",
+ "radius": 23509,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.707493593,
+ 30.477827513699999,
+ 120.0
+ ],
+ [
+ 111.556062234,
+ 30.35414493,
+ 120.0
+ ],
+ [
+ 111.250257874,
+ 30.631991802200002,
+ 120.0
+ ],
+ [
+ 111.402123366,
+ 30.755674385199999,
+ 120.0
+ ],
+ [
+ 111.707493593,
+ 30.477827513699999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001466,
+ "name": "Wuhan Tianhe International Airport",
+ "country": "CN",
+ "city": "Wuhan",
+ "height": 500,
+ "level": 2,
+ "lat": "30.780599",
+ "lng": "114.21142",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.21142,
+ 31.231579365966478,
+ 500.0
+ ],
+ [
+ 114.302544690655466,
+ 31.224696190724579,
+ 500.0
+ ],
+ [
+ 114.390862222023458,
+ 31.204258702428405,
+ 500.0
+ ],
+ [
+ 114.473655474802882,
+ 31.170896210064619,
+ 500.0
+ ],
+ [
+ 114.54838406956361,
+ 31.125635137610828,
+ 500.0
+ ],
+ [
+ 114.612764569647766,
+ 31.069866260030832,
+ 500.0
+ ],
+ [
+ 114.66484137870134,
+ 31.005300529030247,
+ 500.0
+ ],
+ [
+ 114.703046005113634,
+ 30.933915073261868,
+ 500.0
+ ],
+ [
+ 114.726242935194449,
+ 30.857891264661564,
+ 500.0
+ ],
+ [
+ 114.733760968055464,
+ 30.779546959685131,
+ 500.0
+ ],
+ [
+ 114.725409472693443,
+ 30.701265149211316,
+ 500.0
+ ],
+ [
+ 114.701479593699219,
+ 30.625421287911831,
+ 500.0
+ ],
+ [
+ 114.662730928812579,
+ 30.554311531873019,
+ 500.0
+ ],
+ [
+ 114.610364613432338,
+ 30.4900840040447,
+ 500.0
+ ],
+ [
+ 114.545984069554422,
+ 30.434675043703741,
+ 500.0
+ ],
+ [
+ 114.47154491402442,
+ 30.389752191225398,
+ 500.0
+ ],
+ [
+ 114.389295684509946,
+ 30.35666542433518,
+ 500.0
+ ],
+ [
+ 114.301711145849112,
+ 30.33640790597871,
+ 500.0
+ ],
+ [
+ 114.21142,
+ 30.329587234180224,
+ 500.0
+ ],
+ [
+ 114.121128854150896,
+ 30.33640790597871,
+ 500.0
+ ],
+ [
+ 114.033544315490062,
+ 30.35666542433518,
+ 500.0
+ ],
+ [
+ 113.951295085975588,
+ 30.389752191225398,
+ 500.0
+ ],
+ [
+ 113.876855930445586,
+ 30.434675043703741,
+ 500.0
+ ],
+ [
+ 113.812475386567669,
+ 30.4900840040447,
+ 500.0
+ ],
+ [
+ 113.760109071187429,
+ 30.554311531873019,
+ 500.0
+ ],
+ [
+ 113.721360406300789,
+ 30.625421287911831,
+ 500.0
+ ],
+ [
+ 113.697430527306565,
+ 30.701265149211316,
+ 500.0
+ ],
+ [
+ 113.689079031944544,
+ 30.779546959685131,
+ 500.0
+ ],
+ [
+ 113.696597064805559,
+ 30.857891264661564,
+ 500.0
+ ],
+ [
+ 113.719793994886373,
+ 30.933915073261868,
+ 500.0
+ ],
+ [
+ 113.757998621298668,
+ 31.005300529030247,
+ 500.0
+ ],
+ [
+ 113.810075430352242,
+ 31.069866260030832,
+ 500.0
+ ],
+ [
+ 113.874455930436397,
+ 31.125635137610828,
+ 500.0
+ ],
+ [
+ 113.949184525197126,
+ 31.170896210064619,
+ 500.0
+ ],
+ [
+ 114.03197777797655,
+ 31.204258702428405,
+ 500.0
+ ],
+ [
+ 114.120295309344542,
+ 31.224696190724579,
+ 500.0
+ ],
+ [
+ 114.21142,
+ 31.231579365966478,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001603,
+ "name": "荆州沙市机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "30.29463829",
+ "lng": "112.44813345",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.44813345,
+ 30.745652477789289,
+ 500.0
+ ],
+ [
+ 112.538797563412174,
+ 30.738769397910055,
+ 500.0
+ ],
+ [
+ 112.62666943714153,
+ 30.718332137035411,
+ 500.0
+ ],
+ [
+ 112.709046303384625,
+ 30.684969836889607,
+ 500.0
+ ],
+ [
+ 112.783401029981576,
+ 30.639708670635081,
+ 500.0
+ ],
+ [
+ 112.847461848173907,
+ 30.58393911687633,
+ 500.0
+ ],
+ [
+ 112.899282859375276,
+ 30.519371831338074,
+ 500.0
+ ],
+ [
+ 112.937303009207412,
+ 30.447983694832001,
+ 500.0
+ ],
+ [
+ 112.960391778277511,
+ 30.37195592290848,
+ 500.0
+ ],
+ [
+ 112.967880442082006,
+ 30.293606340282764,
+ 500.0
+ ],
+ [
+ 112.959578352722787,
+ 30.215318049436423,
+ 500.0
+ ],
+ [
+ 112.935774255496383,
+ 30.13946676165909,
+ 500.0
+ ],
+ [
+ 112.89722314673368,
+ 30.068349018874521,
+ 500.0
+ ],
+ [
+ 112.845119589846277,
+ 30.004113427482505,
+ 500.0
+ ],
+ [
+ 112.78105872958335,
+ 29.948696863907273,
+ 500.0
+ ],
+ [
+ 112.7069864842165,
+ 29.903767408048225,
+ 500.0
+ ],
+ [
+ 112.625140562293012,
+ 29.870675526519207,
+ 500.0
+ ],
+ [
+ 112.537984058790556,
+ 29.850414771683297,
+ 500.0
+ ],
+ [
+ 112.44813345,
+ 29.843592992229496,
+ 500.0
+ ],
+ [
+ 112.358282841209444,
+ 29.850414771683297,
+ 500.0
+ ],
+ [
+ 112.271126337706988,
+ 29.870675526519207,
+ 500.0
+ ],
+ [
+ 112.1892804157835,
+ 29.903767408048225,
+ 500.0
+ ],
+ [
+ 112.115208170416651,
+ 29.948696863907273,
+ 500.0
+ ],
+ [
+ 112.051147310153723,
+ 30.004113427482505,
+ 500.0
+ ],
+ [
+ 111.999043753266321,
+ 30.068349018874521,
+ 500.0
+ ],
+ [
+ 111.960492644503617,
+ 30.13946676165909,
+ 500.0
+ ],
+ [
+ 111.936688547277214,
+ 30.215318049436423,
+ 500.0
+ ],
+ [
+ 111.928386457917995,
+ 30.293606340282764,
+ 500.0
+ ],
+ [
+ 111.935875121722489,
+ 30.37195592290848,
+ 500.0
+ ],
+ [
+ 111.958963890792589,
+ 30.447983694832001,
+ 500.0
+ ],
+ [
+ 111.996984040624724,
+ 30.519371831338074,
+ 500.0
+ ],
+ [
+ 112.048805051826093,
+ 30.58393911687633,
+ 500.0
+ ],
+ [
+ 112.112865870018425,
+ 30.639708670635081,
+ 500.0
+ ],
+ [
+ 112.187220596615376,
+ 30.684969836889607,
+ 500.0
+ ],
+ [
+ 112.269597462858471,
+ 30.718332137035411,
+ 500.0
+ ],
+ [
+ 112.357469336587826,
+ 30.738769397910055,
+ 500.0
+ ],
+ [
+ 112.44813345,
+ 30.745652477789289,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8075,
+ "name": "Wuhan Tianhe International Airport",
+ "country": "CN",
+ "city": "Wuhan",
+ "height": 0,
+ "level": 2,
+ "lat": "30.7642286704606",
+ "lng": "114.227413881761",
+ "radius": 18335,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.357486896721767,
+ 30.883124997184176,
+ 0.0
+ ],
+ [
+ 114.069084485780863,
+ 30.672200163245741,
+ 0.0
+ ],
+ [
+ 114.0685476,
+ 30.67182373,
+ 0.0
+ ],
+ [
+ 114.126957962,
+ 30.623766155,
+ 0.0
+ ],
+ [
+ 114.183655489,
+ 30.698771800399999,
+ 0.0
+ ],
+ [
+ 114.2187192,
+ 30.6938594129,
+ 0.0
+ ],
+ [
+ 114.237590775,
+ 30.6973479103,
+ 0.0
+ ],
+ [
+ 114.269092631,
+ 30.716046323099999,
+ 0.0
+ ],
+ [
+ 114.303031133,
+ 30.7512856568,
+ 0.0
+ ],
+ [
+ 114.31045184,
+ 30.766610076199999,
+ 0.0
+ ],
+ [
+ 114.310515454,
+ 30.799522509,
+ 0.0
+ ],
+ [
+ 114.303149139,
+ 30.814867603700002,
+ 0.0
+ ],
+ [
+ 114.37645703,
+ 30.868188052899999,
+ 0.0
+ ],
+ [
+ 114.357486896721767,
+ 30.883124997184176,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8075,
+ "name": "Wuhan Tianhe International Airport",
+ "country": "CN",
+ "city": "Wuhan",
+ "height": 0,
+ "level": 2,
+ "lat": "30.7842623129287",
+ "lng": "114.206508296442",
+ "radius": 18424,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.359796806,
+ 30.884911725199999,
+ 0.0
+ ],
+ [
+ 114.301309417,
+ 30.926221183399999,
+ 0.0
+ ],
+ [
+ 114.249682779,
+ 30.856229247,
+ 0.0
+ ],
+ [
+ 114.212031438,
+ 30.8609263701,
+ 0.0
+ ],
+ [
+ 114.193280809,
+ 30.856874806,
+ 0.0
+ ],
+ [
+ 114.162520847,
+ 30.8372326191,
+ 0.0
+ ],
+ [
+ 114.139198014,
+ 30.813911577599999,
+ 0.0
+ ],
+ [
+ 114.12536601799999,
+ 30.789910598300001,
+ 0.0
+ ],
+ [
+ 114.123120451,
+ 30.773424857399998,
+ 0.0
+ ],
+ [
+ 114.133563704,
+ 30.741759524300001,
+ 0.0
+ ],
+ [
+ 114.053540579,
+ 30.683432956800001,
+ 0.0
+ ],
+ [
+ 114.069084485780863,
+ 30.672200163245741,
+ 0.0
+ ],
+ [
+ 114.357486896721767,
+ 30.883124997184176,
+ 0.0
+ ],
+ [
+ 114.359796806,
+ 30.884911725199999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8075,
+ "name": "Wuhan Tianhe International Airport",
+ "country": "CN",
+ "city": "Wuhan",
+ "height": 120,
+ "level": 2,
+ "lat": "30.776598959341",
+ "lng": "114.216171612034",
+ "radius": 24330,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.28544488199999,
+ 30.987172102399999,
+ 120.0
+ ],
+ [
+ 114.439333279,
+ 30.865006278199999,
+ 120.0
+ ],
+ [
+ 114.438872652077023,
+ 30.86457897320728,
+ 120.0
+ ],
+ [
+ 114.455138923,
+ 30.851662779,
+ 120.0
+ ],
+ [
+ 114.147200961,
+ 30.565989156099999,
+ 120.0
+ ],
+ [
+ 113.993796997,
+ 30.688161367100001,
+ 120.0
+ ],
+ [
+ 113.994200643062541,
+ 30.688536384430904,
+ 120.0
+ ],
+ [
+ 113.977936883,
+ 30.701485939299999,
+ 120.0
+ ],
+ [
+ 114.28544488199999,
+ 30.987172102399999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001602,
+ "name": "荆州沙市机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "30.3369390187556",
+ "lng": "112.450087609247",
+ "radius": 13399,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.474883522,
+ 30.3665987388,
+ 0.0
+ ],
+ [
+ 112.49298466,
+ 30.4516257479,
+ 0.0
+ ],
+ [
+ 112.416418611,
+ 30.4538952258,
+ 0.0
+ ],
+ [
+ 112.42771536799999,
+ 30.368000571,
+ 0.0
+ ],
+ [
+ 112.408016758,
+ 30.3616672068,
+ 0.0
+ ],
+ [
+ 112.380419875,
+ 30.338949659899999,
+ 0.0
+ ],
+ [
+ 112.372646628,
+ 30.3237678403,
+ 0.0
+ ],
+ [
+ 112.369692111,
+ 30.3073667295,
+ 0.0
+ ],
+ [
+ 112.370816826,
+ 30.264758916,
+ 0.0
+ ],
+ [
+ 112.38922211,
+ 30.2359413788,
+ 0.0
+ ],
+ [
+ 112.421829581,
+ 30.2189278751,
+ 0.0
+ ],
+ [
+ 112.474883522,
+ 30.3665987388,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001602,
+ "name": "荆州沙市机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "30.2485979033779",
+ "lng": "112.446571854868",
+ "radius": 13399,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.403793698,
+ 30.133905076600001,
+ 0.0
+ ],
+ [
+ 112.480133783,
+ 30.131636102800002,
+ 0.0
+ ],
+ [
+ 112.46890126,
+ 30.217532449299998,
+ 0.0
+ ],
+ [
+ 112.48849045599999,
+ 30.2238167416,
+ 0.0
+ ],
+ [
+ 112.516114615,
+ 30.246480131799999,
+ 0.0
+ ],
+ [
+ 112.523927116,
+ 30.2616445687,
+ 0.0
+ ],
+ [
+ 112.526931103,
+ 30.278038790099998,
+ 0.0
+ ],
+ [
+ 112.525882593,
+ 30.320712444600002,
+ 0.0
+ ],
+ [
+ 112.507512891,
+ 30.349554459699998,
+ 0.0
+ ],
+ [
+ 112.474883522,
+ 30.3665987388,
+ 0.0
+ ],
+ [
+ 112.421829581,
+ 30.2189278751,
+ 0.0
+ ],
+ [
+ 112.403793698,
+ 30.133905076600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001602,
+ "name": "荆州沙市机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "30.2927661453053",
+ "lng": "112.448338447249",
+ "radius": 23594,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.544579302,
+ 30.0975625,
+ 120.0
+ ],
+ [
+ 112.33680133199999,
+ 30.103740288699999,
+ 120.0
+ ],
+ [
+ 112.351683589,
+ 30.487887754399999,
+ 120.0
+ ],
+ [
+ 112.56027697,
+ 30.4817099658,
+ 120.0
+ ],
+ [
+ 112.544579302,
+ 30.0975625,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002168,
+ "name": "Ezhou Huahu Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "30.3425145408761",
+ "lng": "115.0297547584",
+ "radius": 18688,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.979218221481901,
+ 30.182887221666196,
+ 0.0
+ ],
+ [
+ 115.099952911526287,
+ 30.496243699976098,
+ 0.0
+ ],
+ [
+ 115.101006097,
+ 30.498952370400001,
+ 0.0
+ ],
+ [
+ 115.025540084,
+ 30.5105267229,
+ 0.0
+ ],
+ [
+ 115.022637504,
+ 30.424121207500001,
+ 0.0
+ ],
+ [
+ 114.98509745,
+ 30.412458018399999,
+ 0.0
+ ],
+ [
+ 114.96084000899999,
+ 30.387051655400001,
+ 0.0
+ ],
+ [
+ 114.948346035,
+ 30.337688292700001,
+ 0.0
+ ],
+ [
+ 114.947461901,
+ 30.319596580100001,
+ 0.0
+ ],
+ [
+ 114.951875296,
+ 30.303441549799999,
+ 0.0
+ ],
+ [
+ 114.960979212,
+ 30.288822635199999,
+ 0.0
+ ],
+ [
+ 114.990495437,
+ 30.268001923500002,
+ 0.0
+ ],
+ [
+ 114.95873083399999,
+ 30.186038205,
+ 0.0
+ ],
+ [
+ 114.979218221481901,
+ 30.182887221666196,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002168,
+ "name": "Ezhou Huahu Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "30.3371604820417",
+ "lng": "115.04901630407",
+ "radius": 18632,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.978512526,
+ 30.1810504619,
+ 0.0
+ ],
+ [
+ 115.053782702,
+ 30.169643465,
+ 0.0
+ ],
+ [
+ 115.056436468,
+ 30.256060058700001,
+ 0.0
+ ],
+ [
+ 115.093814963,
+ 30.2677423413,
+ 0.0
+ ],
+ [
+ 115.118036255,
+ 30.293153399600001,
+ 0.0
+ ],
+ [
+ 115.130288841,
+ 30.3416033359,
+ 0.0
+ ],
+ [
+ 115.131153145,
+ 30.359674287800001,
+ 0.0
+ ],
+ [
+ 115.126722853,
+ 30.375826390499999,
+ 0.0
+ ],
+ [
+ 115.117595824,
+ 30.390438331199999,
+ 0.0
+ ],
+ [
+ 115.088013059,
+ 30.4112277427,
+ 0.0
+ ],
+ [
+ 115.11963751499999,
+ 30.493268845700001,
+ 0.0
+ ],
+ [
+ 115.099952911526287,
+ 30.496243699976098,
+ 0.0
+ ],
+ [
+ 114.979218221481901,
+ 30.182887221666196,
+ 0.0
+ ],
+ [
+ 114.978512526,
+ 30.1810504619,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002168,
+ "name": "Ezhou Huahu Airport",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "30.340130273054",
+ "lng": "115.039754178795",
+ "radius": 24575,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.11217955799999,
+ 30.128160883700001,
+ 120.0
+ ],
+ [
+ 114.907312043,
+ 30.159216409900001,
+ 120.0
+ ],
+ [
+ 114.907723241980463,
+ 30.161251435405077,
+ 120.0
+ ],
+ [
+ 114.887450817,
+ 30.164372156799999,
+ 120.0
+ ],
+ [
+ 114.967014498,
+ 30.5520595779,
+ 120.0
+ ],
+ [
+ 115.172609225,
+ 30.5205355907,
+ 120.0
+ ],
+ [
+ 115.172063548655601,
+ 30.51790357532381,
+ 120.0
+ ],
+ [
+ 115.191159805,
+ 30.515020221499999,
+ 120.0
+ ],
+ [
+ 115.11217955799999,
+ 30.128160883700001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002169,
+ "name": "Ezhou Huahu Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "30.33720489",
+ "lng": "115.03884092",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.03884092,
+ 30.788216127698544,
+ 500.0
+ ],
+ [
+ 115.129544930052248,
+ 30.781333039522785,
+ 500.0
+ ],
+ [
+ 115.217455407921733,
+ 30.76089575887196,
+ 500.0
+ ],
+ [
+ 115.299868342532363,
+ 30.727533442049278,
+ 500.0
+ ],
+ [
+ 115.374255454133888,
+ 30.682272284079001,
+ 500.0
+ ],
+ [
+ 115.438343963229684,
+ 30.626502789397854,
+ 500.0
+ ],
+ [
+ 115.490187131203385,
+ 30.561935639530457,
+ 500.0
+ ],
+ [
+ 115.528223259511975,
+ 30.490547736892829,
+ 500.0
+ ],
+ [
+ 115.551321396258544,
+ 30.414520310667786,
+ 500.0
+ ],
+ [
+ 115.558812602579863,
+ 30.336171188337108,
+ 500.0
+ ],
+ [
+ 115.550506232212712,
+ 30.257883462651805,
+ 500.0
+ ],
+ [
+ 115.52669123845817,
+ 30.182032822526942,
+ 500.0
+ ],
+ [
+ 115.488123016383099,
+ 30.1109157762439,
+ 500.0
+ ],
+ [
+ 115.43599669879012,
+ 30.046680888047224,
+ 500.0
+ ],
+ [
+ 115.37190814747575,
+ 29.991264987521951,
+ 500.0
+ ],
+ [
+ 115.297804120810866,
+ 29.946336107519418,
+ 500.0
+ ],
+ [
+ 115.215923265304369,
+ 29.913244672019772,
+ 500.0
+ ],
+ [
+ 115.128729686661458,
+ 29.89298419942606,
+ 500.0
+ ],
+ [
+ 115.03884092,
+ 29.886162516567143,
+ 500.0
+ ],
+ [
+ 114.948952153338539,
+ 29.89298419942606,
+ 500.0
+ ],
+ [
+ 114.861758574695628,
+ 29.913244672019772,
+ 500.0
+ ],
+ [
+ 114.77987771918913,
+ 29.946336107519418,
+ 500.0
+ ],
+ [
+ 114.705773692524247,
+ 29.991264987521951,
+ 500.0
+ ],
+ [
+ 114.641685141209877,
+ 30.046680888047224,
+ 500.0
+ ],
+ [
+ 114.589558823616898,
+ 30.1109157762439,
+ 500.0
+ ],
+ [
+ 114.550990601541827,
+ 30.182032822526942,
+ 500.0
+ ],
+ [
+ 114.527175607787285,
+ 30.257883462651805,
+ 500.0
+ ],
+ [
+ 114.518869237420134,
+ 30.336171188337108,
+ 500.0
+ ],
+ [
+ 114.526360443741453,
+ 30.414520310667786,
+ 500.0
+ ],
+ [
+ 114.549458580488022,
+ 30.490547736892829,
+ 500.0
+ ],
+ [
+ 114.587494708796612,
+ 30.561935639530457,
+ 500.0
+ ],
+ [
+ 114.639337876770313,
+ 30.626502789397854,
+ 500.0
+ ],
+ [
+ 114.703426385866109,
+ 30.682272284079001,
+ 500.0
+ ],
+ [
+ 114.777813497467633,
+ 30.727533442049278,
+ 500.0
+ ],
+ [
+ 114.860226432078264,
+ 30.76089575887196,
+ 500.0
+ ],
+ [
+ 114.948136909947749,
+ 30.781333039522785,
+ 500.0
+ ],
+ [
+ 115.03884092,
+ 30.788216127698544,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001372,
+ "name": "Anqing Airport",
+ "country": "CN",
+ "city": "Anqing",
+ "height": 500,
+ "level": 2,
+ "lat": "30.582728",
+ "lng": "117.050495",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.050495,
+ 31.033722174778166,
+ 500.0
+ ],
+ [
+ 117.141430801612799,
+ 31.02683903854301,
+ 500.0
+ ],
+ [
+ 117.229565562323259,
+ 31.006401643302542,
+ 500.0
+ ],
+ [
+ 117.312188048274862,
+ 30.973039229719138,
+ 500.0
+ ],
+ [
+ 117.38676331271445,
+ 30.927778119316979,
+ 500.0
+ ],
+ [
+ 117.451012704064937,
+ 30.872008966004035,
+ 500.0
+ ],
+ [
+ 117.50298460322162,
+ 30.807442600586562,
+ 500.0
+ ],
+ [
+ 117.541113568897671,
+ 30.736056050483068,
+ 500.0
+ ],
+ [
+ 117.564266135982976,
+ 30.660030623751727,
+ 500.0
+ ],
+ [
+ 117.571772119643697,
+ 30.581684163880755,
+ 500.0
+ ],
+ [
+ 117.563440882459489,
+ 30.503399707325418,
+ 500.0
+ ],
+ [
+ 117.539562585546349,
+ 30.427552813557305,
+ 500.0
+ ],
+ [
+ 117.500894939984704,
+ 30.356439796231893,
+ 500.0
+ ],
+ [
+ 117.448636386225601,
+ 30.292208975726947,
+ 500.0
+ ],
+ [
+ 117.38438695179201,
+ 30.236796910670918,
+ 500.0
+ ],
+ [
+ 117.310098275947695,
+ 30.191871361756611,
+ 500.0
+ ],
+ [
+ 117.228014454919105,
+ 30.158782506346167,
+ 500.0
+ ],
+ [
+ 117.14060546711957,
+ 30.138523666400822,
+ 500.0
+ ],
+ [
+ 117.050495,
+ 30.13170254230084,
+ 500.0
+ ],
+ [
+ 116.960384532880425,
+ 30.138523666400822,
+ 500.0
+ ],
+ [
+ 116.872975545080891,
+ 30.158782506346167,
+ 500.0
+ ],
+ [
+ 116.790891724052301,
+ 30.191871361756611,
+ 500.0
+ ],
+ [
+ 116.716603048207986,
+ 30.236796910670918,
+ 500.0
+ ],
+ [
+ 116.652353613774395,
+ 30.292208975726947,
+ 500.0
+ ],
+ [
+ 116.600095060015292,
+ 30.356439796231893,
+ 500.0
+ ],
+ [
+ 116.561427414453647,
+ 30.427552813557305,
+ 500.0
+ ],
+ [
+ 116.537549117540507,
+ 30.503399707325418,
+ 500.0
+ ],
+ [
+ 116.529217880356299,
+ 30.581684163880755,
+ 500.0
+ ],
+ [
+ 116.53672386401702,
+ 30.660030623751727,
+ 500.0
+ ],
+ [
+ 116.559876431102325,
+ 30.736056050483068,
+ 500.0
+ ],
+ [
+ 116.598005396778376,
+ 30.807442600586562,
+ 500.0
+ ],
+ [
+ 116.649977295935059,
+ 30.872008966004035,
+ 500.0
+ ],
+ [
+ 116.714226687285546,
+ 30.927778119316979,
+ 500.0
+ ],
+ [
+ 116.788801951725134,
+ 30.973039229719138,
+ 500.0
+ ],
+ [
+ 116.871424437676737,
+ 31.006401643302542,
+ 500.0
+ ],
+ [
+ 116.959559198387197,
+ 31.02683903854301,
+ 500.0
+ ],
+ [
+ 117.050495,
+ 31.033722174778166,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1143,
+ "name": "Anqing Airport",
+ "country": "CN",
+ "city": "Anqing",
+ "height": 0,
+ "level": 2,
+ "lat": "30.6087649574059",
+ "lng": "117.093716201326",
+ "radius": 13125,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.228002683,
+ 30.6328198255,
+ 0.0
+ ],
+ [
+ 117.191865279,
+ 30.691247412100001,
+ 0.0
+ ],
+ [
+ 117.110125443,
+ 30.636254415300002,
+ 0.0
+ ],
+ [
+ 117.08057530799999,
+ 30.650107807400001,
+ 0.0
+ ],
+ [
+ 117.061465161,
+ 30.6523928439,
+ 0.0
+ ],
+ [
+ 117.042319099,
+ 30.650342182199999,
+ 0.0
+ ],
+ [
+ 116.999506141,
+ 30.6357925993,
+ 0.0
+ ],
+ [
+ 116.974953304,
+ 30.615165322799999,
+ 0.0
+ ],
+ [
+ 116.966878722,
+ 30.600092008200001,
+ 0.0
+ ],
+ [
+ 116.96537795499999,
+ 30.5672048986,
+ 0.0
+ ],
+ [
+ 117.134668343,
+ 30.599429379,
+ 0.0
+ ],
+ [
+ 117.228002683,
+ 30.6328198255,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1143,
+ "name": "Anqing Airport",
+ "country": "CN",
+ "city": "Anqing",
+ "height": 0,
+ "level": 2,
+ "lat": "30.5599372374277",
+ "lng": "117.005576701486",
+ "radius": 13114,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.96537795499999,
+ 30.5672048986,
+ 0.0
+ ],
+ [
+ 116.87201036899999,
+ 30.533868798099999,
+ 0.0
+ ],
+ [
+ 116.90813052,
+ 30.4770864748,
+ 0.0
+ ],
+ [
+ 116.98651019099999,
+ 30.527081518500001,
+ 0.0
+ ],
+ [
+ 117.016082452,
+ 30.513199851100001,
+ 0.0
+ ],
+ [
+ 117.03516527,
+ 30.510915346899999,
+ 0.0
+ ],
+ [
+ 117.072139758,
+ 30.519197520300001,
+ 0.0
+ ],
+ [
+ 117.100534827,
+ 30.534227618599999,
+ 0.0
+ ],
+ [
+ 117.12239024199999,
+ 30.5519278093,
+ 0.0
+ ],
+ [
+ 117.135492791,
+ 30.582846319400002,
+ 0.0
+ ],
+ [
+ 117.134668343,
+ 30.599429379,
+ 0.0
+ ],
+ [
+ 116.96537795499999,
+ 30.5672048986,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1143,
+ "name": "Anqing Airport",
+ "country": "CN",
+ "city": "Anqing",
+ "height": 120,
+ "level": 2,
+ "lat": "30.5830544059094",
+ "lng": "117.049355297446",
+ "radius": 23649,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.201554886,
+ 30.7506798406,
+ 120.0
+ ],
+ [
+ 117.296276972,
+ 30.5903254985,
+ 120.0
+ ],
+ [
+ 116.896993827,
+ 30.415715334400002,
+ 120.0
+ ],
+ [
+ 116.802442192,
+ 30.576069676700001,
+ 120.0
+ ],
+ [
+ 117.201554886,
+ 30.7506798406,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001358,
+ "name": "Jiuhuashan Airport",
+ "country": "CN",
+ "city": "Chizhou",
+ "height": 500,
+ "level": 2,
+ "lat": "30.739651",
+ "lng": "117.688255",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.688255,
+ 31.190634227779011,
+ 500.0
+ ],
+ [
+ 117.779340447839672,
+ 31.183751060630662,
+ 500.0
+ ],
+ [
+ 117.867620007484433,
+ 31.163313591647047,
+ 500.0
+ ],
+ [
+ 117.95037778233619,
+ 31.12995111565056,
+ 500.0
+ ],
+ [
+ 118.025074521612538,
+ 31.084690035379346,
+ 500.0
+ ],
+ [
+ 118.089427782775104,
+ 31.028921100701442,
+ 500.0
+ ],
+ [
+ 118.14148279577357,
+ 30.964355238259323,
+ 500.0
+ ],
+ [
+ 118.179671702743178,
+ 30.892969555719333,
+ 500.0
+ ],
+ [
+ 118.202859415636638,
+ 30.816945411775063,
+ 500.0
+ ],
+ [
+ 118.210374944706686,
+ 30.738600660193384,
+ 500.0
+ ],
+ [
+ 118.202027657672971,
+ 30.660318301299661,
+ 500.0
+ ],
+ [
+ 118.178108494859416,
+ 30.58447381148823,
+ 500.0
+ ],
+ [
+ 118.139376662089703,
+ 30.513363379505815,
+ 500.0
+ ],
+ [
+ 118.087032734905961,
+ 30.44913516922405,
+ 500.0
+ ],
+ [
+ 118.022679430097739,
+ 30.393725565385349,
+ 500.0
+ ],
+ [
+ 117.948271538137647,
+ 30.348802154030253,
+ 500.0
+ ],
+ [
+ 117.866056673928,
+ 30.315714954262674,
+ 500.0
+ ],
+ [
+ 117.778508607848991,
+ 30.295457161986903,
+ 500.0
+ ],
+ [
+ 117.688255,
+ 30.288636396442076,
+ 500.0
+ ],
+ [
+ 117.598001392151005,
+ 30.295457161986903,
+ 500.0
+ ],
+ [
+ 117.510453326071996,
+ 30.315714954262674,
+ 500.0
+ ],
+ [
+ 117.42823846186235,
+ 30.348802154030253,
+ 500.0
+ ],
+ [
+ 117.353830569902257,
+ 30.393725565385349,
+ 500.0
+ ],
+ [
+ 117.289477265094035,
+ 30.44913516922405,
+ 500.0
+ ],
+ [
+ 117.237133337910294,
+ 30.513363379505815,
+ 500.0
+ ],
+ [
+ 117.198401505140581,
+ 30.58447381148823,
+ 500.0
+ ],
+ [
+ 117.174482342327025,
+ 30.660318301299661,
+ 500.0
+ ],
+ [
+ 117.16613505529331,
+ 30.738600660193384,
+ 500.0
+ ],
+ [
+ 117.173650584363358,
+ 30.816945411775063,
+ 500.0
+ ],
+ [
+ 117.196838297256818,
+ 30.892969555719333,
+ 500.0
+ ],
+ [
+ 117.235027204226427,
+ 30.964355238259323,
+ 500.0
+ ],
+ [
+ 117.287082217224892,
+ 31.028921100701442,
+ 500.0
+ ],
+ [
+ 117.351435478387458,
+ 31.084690035379346,
+ 500.0
+ ],
+ [
+ 117.426132217663806,
+ 31.12995111565056,
+ 500.0
+ ],
+ [
+ 117.508889992515563,
+ 31.163313591647047,
+ 500.0
+ ],
+ [
+ 117.597169552160324,
+ 31.183751060630662,
+ 500.0
+ ],
+ [
+ 117.688255,
+ 31.190634227779011,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2741,
+ "name": "Jiuhuashan Airport",
+ "country": "CN",
+ "city": "Chizhou",
+ "height": 0,
+ "level": 2,
+ "lat": "30.7691484000225",
+ "lng": "117.646953793253",
+ "radius": 13146,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.629956505,
+ 30.802911250200001,
+ 0.0
+ ],
+ [
+ 117.55828768799999,
+ 30.8595917737,
+ 0.0
+ ],
+ [
+ 117.516942242,
+ 30.8079362398,
+ 0.0
+ ],
+ [
+ 117.601939633,
+ 30.7696111809,
+ 0.0
+ ],
+ [
+ 117.599820621,
+ 30.738153522499999,
+ 0.0
+ ],
+ [
+ 117.605958172,
+ 30.722416044500001,
+ 0.0
+ ],
+ [
+ 117.61662228,
+ 30.708579579399998,
+ 0.0
+ ],
+ [
+ 117.654382772,
+ 30.682607377899998,
+ 0.0
+ ],
+ [
+ 117.684723656,
+ 30.671578281,
+ 0.0
+ ],
+ [
+ 117.70400236099999,
+ 30.670839319599999,
+ 0.0
+ ],
+ [
+ 117.739977111,
+ 30.6820605325,
+ 0.0
+ ],
+ [
+ 117.629956505,
+ 30.802911250200001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2741,
+ "name": "Jiuhuashan Airport",
+ "country": "CN",
+ "city": "Chizhou",
+ "height": 0,
+ "level": 2,
+ "lat": "30.716427382196",
+ "lng": "117.725367341061",
+ "radius": 13251,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.809999843,
+ 30.622074283100002,
+ 0.0
+ ],
+ [
+ 117.85473654899999,
+ 30.673691978600001,
+ 0.0
+ ],
+ [
+ 117.768071033,
+ 30.712023590200001,
+ 0.0
+ ],
+ [
+ 117.77082142499999,
+ 30.742868533,
+ 0.0
+ ],
+ [
+ 117.765111041,
+ 30.758724698599998,
+ 0.0
+ ],
+ [
+ 117.75481718499999,
+ 30.772769793799998,
+ 0.0
+ ],
+ [
+ 117.717270737,
+ 30.802401215900002,
+ 0.0
+ ],
+ [
+ 117.685104979,
+ 30.814073345299999,
+ 0.0
+ ],
+ [
+ 117.66578745299999,
+ 30.814579948900001,
+ 0.0
+ ],
+ [
+ 117.629956505,
+ 30.802911250200001,
+ 0.0
+ ],
+ [
+ 117.739977111,
+ 30.6820605325,
+ 0.0
+ ],
+ [
+ 117.809999843,
+ 30.622074283100002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2741,
+ "name": "Jiuhuashan Airport",
+ "country": "CN",
+ "city": "Chizhou",
+ "height": 120,
+ "level": 2,
+ "lat": "30.7414628681681",
+ "lng": "117.685605009464",
+ "radius": 23666,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.92505335,
+ 30.687410975300001,
+ 120.0
+ ],
+ [
+ 117.791453351,
+ 30.549091449700001,
+ 120.0
+ ],
+ [
+ 117.446080017,
+ 30.795704103199999,
+ 120.0
+ ],
+ [
+ 117.58002245599999,
+ 30.9340236283,
+ 120.0
+ ],
+ [
+ 117.92505335,
+ 30.687410975300001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1413,
+ "name": "Hangzhou Xiaoshan International Airport",
+ "country": "CN",
+ "city": "Hangzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "30.2117137973989",
+ "lng": "120.38860162779",
+ "radius": 13717,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.52629234299999,
+ 30.244366791099999,
+ 0.0
+ ],
+ [
+ 120.249228749709133,
+ 30.187369492180633,
+ 0.0
+ ],
+ [
+ 120.248698915,
+ 30.1872326905,
+ 0.0
+ ],
+ [
+ 120.255156972544839,
+ 30.176463908142317,
+ 0.0
+ ],
+ [
+ 120.274746548,
+ 30.140426841499998,
+ 0.0
+ ],
+ [
+ 120.276233657373666,
+ 30.141318629524523,
+ 0.0
+ ],
+ [
+ 120.28476621599999,
+ 30.127090625800001,
+ 0.0
+ ],
+ [
+ 120.368149065,
+ 30.177084400599998,
+ 0.0
+ ],
+ [
+ 120.394246432,
+ 30.163284127299999,
+ 0.0
+ ],
+ [
+ 120.413027075,
+ 30.1598446701,
+ 0.0
+ ],
+ [
+ 120.43219729499999,
+ 30.1607223448,
+ 0.0
+ ],
+ [
+ 120.483794132,
+ 30.177527045600002,
+ 0.0
+ ],
+ [
+ 120.512245521,
+ 30.197241227599999,
+ 0.0
+ ],
+ [
+ 120.521685964,
+ 30.211695848800002,
+ 0.0
+ ],
+ [
+ 120.52629234299999,
+ 30.244366791099999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1413,
+ "name": "Hangzhou Xiaoshan International Airport",
+ "country": "CN",
+ "city": "Hangzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "30.2430289530592",
+ "lng": "120.428510380299",
+ "radius": 18527,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.617956916,
+ 30.2744138419,
+ 0.0
+ ],
+ [
+ 120.585240055,
+ 30.334575218800001,
+ 0.0
+ ],
+ [
+ 120.584154837964448,
+ 30.333924305990493,
+ 0.0
+ ],
+ [
+ 120.57524827,
+ 30.351240688,
+ 0.0
+ ],
+ [
+ 120.49184517899999,
+ 30.301249581,
+ 0.0
+ ],
+ [
+ 120.465627368,
+ 30.3137121237,
+ 0.0
+ ],
+ [
+ 120.446669399,
+ 30.316480741199999,
+ 0.0
+ ],
+ [
+ 120.427527521,
+ 30.3149164935,
+ 0.0
+ ],
+ [
+ 120.376205859,
+ 30.2974731887,
+ 0.0
+ ],
+ [
+ 120.348811914,
+ 30.2778236005,
+ 0.0
+ ],
+ [
+ 120.339558963,
+ 30.2632757555,
+ 0.0
+ ],
+ [
+ 120.335393177,
+ 30.230560609,
+ 0.0
+ ],
+ [
+ 120.242044152,
+ 30.200586308799998,
+ 0.0
+ ],
+ [
+ 120.249228749709133,
+ 30.187369492180633,
+ 0.0
+ ],
+ [
+ 120.52629234299999,
+ 30.244366791099999,
+ 0.0
+ ],
+ [
+ 120.617956916,
+ 30.2744138419,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1413,
+ "name": "Hangzhou Xiaoshan International Airport",
+ "country": "CN",
+ "city": "Hangzhou",
+ "height": 120,
+ "level": 2,
+ "lat": "30.2374615897472",
+ "lng": "120.429833150045",
+ "radius": 24390,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.675019063313997,
+ 30.244998721793582,
+ 120.0
+ ],
+ [
+ 120.682817406,
+ 30.2304511016,
+ 120.0
+ ],
+ [
+ 120.271561561,
+ 30.066039463799999,
+ 120.0
+ ],
+ [
+ 120.184205765,
+ 30.229272310300001,
+ 120.0
+ ],
+ [
+ 120.185293369554955,
+ 30.229707266872293,
+ 120.0
+ ],
+ [
+ 120.177503817,
+ 30.244257868599998,
+ 120.0
+ ],
+ [
+ 120.588657427,
+ 30.4086928374,
+ 120.0
+ ],
+ [
+ 120.676186331,
+ 30.245465387599999,
+ 120.0
+ ],
+ [
+ 120.675019063313997,
+ 30.244998721793582,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 10243,
+ "name": "杭州西湖西子国宾馆",
+ "country": "CN",
+ "city": "Hangzhou Shi",
+ "height": 0,
+ "level": 2,
+ "lat": "30.233528",
+ "lng": "120.152342",
+ "radius": 151,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.152342,
+ 30.234890122541287,
+ 0.0
+ ],
+ [
+ 120.152614401283614,
+ 30.234869428558209,
+ 0.0
+ ],
+ [
+ 120.152878525458362,
+ 30.234807975410348,
+ 0.0
+ ],
+ [
+ 120.153126346951396,
+ 30.234707630392961,
+ 0.0
+ ],
+ [
+ 120.153350335614235,
+ 30.234571442549623,
+ 0.0
+ ],
+ [
+ 120.153543685548826,
+ 30.23440355001518,
+ 0.0
+ ],
+ [
+ 120.153700521915269,
+ 30.234209054264241,
+ 0.0
+ ],
+ [
+ 120.153816079435842,
+ 30.233993865087939,
+ 0.0
+ ],
+ [
+ 120.153886847171577,
+ 30.233764521011484,
+ 0.0
+ ],
+ [
+ 120.153910675174075,
+ 30.23352799061103,
+ 0.0
+ ],
+ [
+ 120.15388683977524,
+ 30.233291460768253,
+ 0.0
+ ],
+ [
+ 120.153816065535267,
+ 30.233062118297575,
+ 0.0
+ ],
+ [
+ 120.153700503187082,
+ 30.232846931581452,
+ 0.0
+ ],
+ [
+ 120.153543664251927,
+ 30.232652438848387,
+ 0.0
+ ],
+ [
+ 120.153350314317322,
+ 30.232484549525495,
+ 0.0
+ ],
+ [
+ 120.153126328223209,
+ 30.232348364700005,
+ 0.0
+ ],
+ [
+ 120.152878511557788,
+ 30.232248022142809,
+ 0.0
+ ],
+ [
+ 120.152614393887276,
+ 30.232186570600728,
+ 0.0
+ ],
+ [
+ 120.152342,
+ 30.232165877175323,
+ 0.0
+ ],
+ [
+ 120.152069606112732,
+ 30.232186570600728,
+ 0.0
+ ],
+ [
+ 120.151805488442221,
+ 30.232248022142809,
+ 0.0
+ ],
+ [
+ 120.1515576717768,
+ 30.232348364700005,
+ 0.0
+ ],
+ [
+ 120.151333685682687,
+ 30.232484549525495,
+ 0.0
+ ],
+ [
+ 120.151140335748082,
+ 30.232652438848387,
+ 0.0
+ ],
+ [
+ 120.150983496812927,
+ 30.232846931581452,
+ 0.0
+ ],
+ [
+ 120.150867934464742,
+ 30.233062118297575,
+ 0.0
+ ],
+ [
+ 120.150797160224769,
+ 30.233291460768253,
+ 0.0
+ ],
+ [
+ 120.150773324825934,
+ 30.23352799061103,
+ 0.0
+ ],
+ [
+ 120.150797152828432,
+ 30.233764521011484,
+ 0.0
+ ],
+ [
+ 120.150867920564167,
+ 30.233993865087939,
+ 0.0
+ ],
+ [
+ 120.15098347808474,
+ 30.234209054264241,
+ 0.0
+ ],
+ [
+ 120.151140314451183,
+ 30.23440355001518,
+ 0.0
+ ],
+ [
+ 120.151333664385774,
+ 30.234571442549623,
+ 0.0
+ ],
+ [
+ 120.151557653048613,
+ 30.234707630392961,
+ 0.0
+ ],
+ [
+ 120.151805474541646,
+ 30.234807975410348,
+ 0.0
+ ],
+ [
+ 120.152069598716395,
+ 30.234869428558209,
+ 0.0
+ ],
+ [
+ 120.152342,
+ 30.234890122541287,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001314,
+ "name": "Hangzhou Xiaoshan International Airport",
+ "country": "CN",
+ "city": "Hangzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "30.236246",
+ "lng": "120.433739",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.433739,
+ 30.687264230749008,
+ 500.0
+ ],
+ [
+ 120.524348522119624,
+ 30.680381162234717,
+ 500.0
+ ],
+ [
+ 120.612167573145513,
+ 30.65994392844814,
+ 500.0
+ ],
+ [
+ 120.694495086499401,
+ 30.626581651136508,
+ 500.0
+ ],
+ [
+ 120.768805500312766,
+ 30.581320473505546,
+ 500.0
+ ],
+ [
+ 120.832828428847478,
+ 30.525550838762371,
+ 500.0
+ ],
+ [
+ 120.884619122938517,
+ 30.460983367278253,
+ 500.0
+ ],
+ [
+ 120.922617409606474,
+ 30.389594910260332,
+ 500.0
+ ],
+ [
+ 120.94569336122359,
+ 30.313566664578058,
+ 500.0
+ ],
+ [
+ 120.953178546548926,
+ 30.235216451155399,
+ 500.0
+ ],
+ [
+ 120.944882315391951,
+ 30.156927385807833,
+ 500.0
+ ],
+ [
+ 120.921093128377848,
+ 30.081075210485654,
+ 500.0
+ ],
+ [
+ 120.882565436192266,
+ 30.009956513214814,
+ 500.0
+ ],
+ [
+ 120.830493023105106,
+ 29.945719958163458,
+ 500.0
+ ],
+ [
+ 120.766470052701862,
+ 29.890302485943675,
+ 500.0
+ ],
+ [
+ 120.692441293738327,
+ 29.845372240929443,
+ 500.0
+ ],
+ [
+ 120.610643171361261,
+ 29.812279748160165,
+ 500.0
+ ],
+ [
+ 120.523537397600904,
+ 29.792018606538267,
+ 500.0
+ ],
+ [
+ 120.433739,
+ 29.785196694710375,
+ 500.0
+ ],
+ [
+ 120.343940602399101,
+ 29.792018606538267,
+ 500.0
+ ],
+ [
+ 120.256834828638745,
+ 29.812279748160165,
+ 500.0
+ ],
+ [
+ 120.175036706261679,
+ 29.845372240929443,
+ 500.0
+ ],
+ [
+ 120.101007947298143,
+ 29.890302485943675,
+ 500.0
+ ],
+ [
+ 120.0369849768949,
+ 29.945719958163458,
+ 500.0
+ ],
+ [
+ 119.98491256380774,
+ 30.009956513214814,
+ 500.0
+ ],
+ [
+ 119.946384871622158,
+ 30.081075210485654,
+ 500.0
+ ],
+ [
+ 119.922595684608055,
+ 30.156927385807833,
+ 500.0
+ ],
+ [
+ 119.914299453451079,
+ 30.235216451155399,
+ 500.0
+ ],
+ [
+ 119.921784638776415,
+ 30.313566664578058,
+ 500.0
+ ],
+ [
+ 119.944860590393532,
+ 30.389594910260332,
+ 500.0
+ ],
+ [
+ 119.982858877061489,
+ 30.460983367278253,
+ 500.0
+ ],
+ [
+ 120.034649571152528,
+ 30.525550838762371,
+ 500.0
+ ],
+ [
+ 120.09867249968724,
+ 30.581320473505546,
+ 500.0
+ ],
+ [
+ 120.172982913500604,
+ 30.626581651136508,
+ 500.0
+ ],
+ [
+ 120.255310426854493,
+ 30.65994392844814,
+ 500.0
+ ],
+ [
+ 120.343129477880382,
+ 30.680381162234717,
+ 500.0
+ ],
+ [
+ 120.433739,
+ 30.687264230749008,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282885,
+ "name": "Bajura Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "29.502892",
+ "lng": "81.668527",
+ "radius": 309,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.668527,
+ 29.505679698345311,
+ 0.0
+ ],
+ [
+ 81.66908039088969,
+ 29.505637345800977,
+ 0.0
+ ],
+ [
+ 81.669616965930189,
+ 29.505511575130907,
+ 0.0
+ ],
+ [
+ 81.670120420375852,
+ 29.505306208107843,
+ 0.0
+ ],
+ [
+ 81.670575456138934,
+ 29.50502748515613,
+ 0.0
+ ],
+ [
+ 81.670968246720321,
+ 29.504683875685195,
+ 0.0
+ ],
+ [
+ 81.671286857377098,
+ 29.504285820684032,
+ 0.0
+ ],
+ [
+ 81.671521607753604,
+ 29.503845415405941,
+ 0.0
+ ],
+ [
+ 81.671665365957708,
+ 29.503376041793647,
+ 0.0
+ ],
+ [
+ 81.671713765153712,
+ 29.502891961821327,
+ 0.0
+ ],
+ [
+ 81.67166533610343,
+ 29.502407884116199,
+ 0.0
+ ],
+ [
+ 81.671521551645895,
+ 29.501938517032027,
+ 0.0
+ ],
+ [
+ 81.67128678178338,
+ 29.501498121755599,
+ 0.0
+ ],
+ [
+ 81.670968160758321,
+ 29.501100079023292,
+ 0.0
+ ],
+ [
+ 81.670575370176934,
+ 29.500756482608615,
+ 0.0
+ ],
+ [
+ 81.67012034478212,
+ 29.500477771925759,
+ 0.0
+ ],
+ [
+ 81.66961690982248,
+ 29.500272414904355,
+ 0.0
+ ],
+ [
+ 81.669080361035398,
+ 29.500146650762424,
+ 0.0
+ ],
+ [
+ 81.668527,
+ 29.500104300485276,
+ 0.0
+ ],
+ [
+ 81.667973638964597,
+ 29.500146650762424,
+ 0.0
+ ],
+ [
+ 81.667437090177515,
+ 29.500272414904355,
+ 0.0
+ ],
+ [
+ 81.666933655217875,
+ 29.500477771925759,
+ 0.0
+ ],
+ [
+ 81.666478629823061,
+ 29.500756482608615,
+ 0.0
+ ],
+ [
+ 81.666085839241674,
+ 29.501100079023292,
+ 0.0
+ ],
+ [
+ 81.665767218216615,
+ 29.501498121755599,
+ 0.0
+ ],
+ [
+ 81.665532448354099,
+ 29.501938517032027,
+ 0.0
+ ],
+ [
+ 81.665388663896564,
+ 29.502407884116199,
+ 0.0
+ ],
+ [
+ 81.665340234846283,
+ 29.502891961821327,
+ 0.0
+ ],
+ [
+ 81.665388634042287,
+ 29.503376041793647,
+ 0.0
+ ],
+ [
+ 81.665532392246391,
+ 29.503845415405941,
+ 0.0
+ ],
+ [
+ 81.665767142622897,
+ 29.504285820684032,
+ 0.0
+ ],
+ [
+ 81.666085753279674,
+ 29.504683875685195,
+ 0.0
+ ],
+ [
+ 81.666478543861061,
+ 29.50502748515613,
+ 0.0
+ ],
+ [
+ 81.666933579624143,
+ 29.505306208107843,
+ 0.0
+ ],
+ [
+ 81.667437034069806,
+ 29.505511575130907,
+ 0.0
+ ],
+ [
+ 81.667973609110305,
+ 29.505637345800977,
+ 0.0
+ ],
+ [
+ 81.668527,
+ 29.505679698345311,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282869,
+ "name": "Bajhang Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "29.538343",
+ "lng": "81.183387",
+ "radius": 397,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.183387,
+ 29.541924586636366,
+ 0.0
+ ],
+ [
+ 81.184098244264106,
+ 29.541870172398845,
+ 0.0
+ ],
+ [
+ 81.184787875503545,
+ 29.541708583204489,
+ 0.0
+ ],
+ [
+ 81.185434937663203,
+ 29.541444729346161,
+ 0.0
+ ],
+ [
+ 81.186019768632931,
+ 29.54108662863587,
+ 0.0
+ ],
+ [
+ 81.186524597846244,
+ 29.540645162697611,
+ 0.0
+ ],
+ [
+ 81.186934086323205,
+ 29.540133746224338,
+ 0.0
+ ],
+ [
+ 81.187235792737525,
+ 29.539567919261845,
+ 0.0
+ ],
+ [
+ 81.187420551346591,
+ 29.538964874921945,
+ 0.0
+ ],
+ [
+ 81.187482750312427,
+ 29.53834293688849,
+ 0.0
+ ],
+ [
+ 81.187420501978295,
+ 29.537721002602886,
+ 0.0
+ ],
+ [
+ 81.18723569995548,
+ 29.537117969054453,
+ 0.0
+ ],
+ [
+ 81.186933961318289,
+ 29.536552158625462,
+ 0.0
+ ],
+ [
+ 81.186524455695888,
+ 29.53604076243354,
+ 0.0
+ ],
+ [
+ 81.18601962648259,
+ 29.53559931807823,
+ 0.0
+ ],
+ [
+ 81.185434812658301,
+ 29.535241237649263,
+ 0.0
+ ],
+ [
+ 81.184787782721514,
+ 29.534977400324433,
+ 0.0
+ ],
+ [
+ 81.184098194895824,
+ 29.534815821921555,
+ 0.0
+ ],
+ [
+ 81.183387,
+ 29.53476141143188,
+ 0.0
+ ],
+ [
+ 81.182675805104168,
+ 29.534815821921555,
+ 0.0
+ ],
+ [
+ 81.181986217278478,
+ 29.534977400324433,
+ 0.0
+ ],
+ [
+ 81.181339187341692,
+ 29.535241237649263,
+ 0.0
+ ],
+ [
+ 81.180754373517402,
+ 29.53559931807823,
+ 0.0
+ ],
+ [
+ 81.180249544304104,
+ 29.53604076243354,
+ 0.0
+ ],
+ [
+ 81.179840038681704,
+ 29.536552158625462,
+ 0.0
+ ],
+ [
+ 81.179538300044513,
+ 29.537117969054453,
+ 0.0
+ ],
+ [
+ 81.179353498021698,
+ 29.537721002602886,
+ 0.0
+ ],
+ [
+ 81.179291249687566,
+ 29.53834293688849,
+ 0.0
+ ],
+ [
+ 81.179353448653401,
+ 29.538964874921945,
+ 0.0
+ ],
+ [
+ 81.179538207262468,
+ 29.539567919261845,
+ 0.0
+ ],
+ [
+ 81.179839913676787,
+ 29.540133746224338,
+ 0.0
+ ],
+ [
+ 81.180249402153748,
+ 29.540645162697611,
+ 0.0
+ ],
+ [
+ 81.180754231367061,
+ 29.54108662863587,
+ 0.0
+ ],
+ [
+ 81.181339062336789,
+ 29.541444729346161,
+ 0.0
+ ],
+ [
+ 81.181986124496447,
+ 29.541708583204489,
+ 0.0
+ ],
+ [
+ 81.182675755735886,
+ 29.541870172398845,
+ 0.0
+ ],
+ [
+ 81.183387,
+ 29.541924586636366,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282856,
+ "name": "Baitadi Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "29.463493",
+ "lng": "80.549144",
+ "radius": 387,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 80.549144,
+ 29.466984409696618,
+ 0.0
+ ],
+ [
+ 80.549836818436845,
+ 29.466931365548852,
+ 0.0
+ ],
+ [
+ 80.550508583827252,
+ 29.466773844985372,
+ 0.0
+ ],
+ [
+ 80.551138883065349,
+ 29.466516634650088,
+ 0.0
+ ],
+ [
+ 80.551708563451456,
+ 29.466167550455673,
+ 0.0
+ ],
+ [
+ 80.552200314803116,
+ 29.465737200015671,
+ 0.0
+ ],
+ [
+ 80.552599195504584,
+ 29.465238660232973,
+ 0.0
+ ],
+ [
+ 80.552893086500205,
+ 29.464687079853483,
+ 0.0
+ ],
+ [
+ 80.553073059437324,
+ 29.464099219074512,
+ 0.0
+ ],
+ [
+ 80.553133647783739,
+ 29.463492940209491,
+ 0.0
+ ],
+ [
+ 80.553073012701745,
+ 29.462886664895031,
+ 0.0
+ ],
+ [
+ 80.552892998666067,
+ 29.462298814339434,
+ 0.0
+ ],
+ [
+ 80.552599077165965,
+ 29.461747249623059,
+ 0.0
+ ],
+ [
+ 80.552200180233413,
+ 29.461248729054031,
+ 0.0
+ ],
+ [
+ 80.551708428881753,
+ 29.460818399060781,
+ 0.0
+ ],
+ [
+ 80.551138764726744,
+ 29.460469334080042,
+ 0.0
+ ],
+ [
+ 80.550508495993114,
+ 29.460212139407894,
+ 0.0
+ ],
+ [
+ 80.549836771701266,
+ 29.460054629067784,
+ 0.0
+ ],
+ [
+ 80.549144,
+ 29.460001588470561,
+ 0.0
+ ],
+ [
+ 80.548451228298731,
+ 29.460054629067784,
+ 0.0
+ ],
+ [
+ 80.547779504006883,
+ 29.460212139407894,
+ 0.0
+ ],
+ [
+ 80.547149235273253,
+ 29.460469334080042,
+ 0.0
+ ],
+ [
+ 80.546579571118244,
+ 29.460818399060781,
+ 0.0
+ ],
+ [
+ 80.546087819766583,
+ 29.461248729054031,
+ 0.0
+ ],
+ [
+ 80.545688922834032,
+ 29.461747249623059,
+ 0.0
+ ],
+ [
+ 80.545395001333929,
+ 29.462298814339434,
+ 0.0
+ ],
+ [
+ 80.545214987298252,
+ 29.462886664895031,
+ 0.0
+ ],
+ [
+ 80.545154352216258,
+ 29.463492940209491,
+ 0.0
+ ],
+ [
+ 80.545214940562673,
+ 29.464099219074512,
+ 0.0
+ ],
+ [
+ 80.545394913499791,
+ 29.464687079853483,
+ 0.0
+ ],
+ [
+ 80.545688804495413,
+ 29.465238660232973,
+ 0.0
+ ],
+ [
+ 80.546087685196881,
+ 29.465737200015671,
+ 0.0
+ ],
+ [
+ 80.546579436548541,
+ 29.466167550455673,
+ 0.0
+ ],
+ [
+ 80.547149116934648,
+ 29.466516634650088,
+ 0.0
+ ],
+ [
+ 80.547779416172745,
+ 29.466773844985372,
+ 0.0
+ ],
+ [
+ 80.548451181563152,
+ 29.466931365548852,
+ 0.0
+ ],
+ [
+ 80.549144,
+ 29.466984409696618,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268517,
+ "name": "Sanfebagar Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "29.236925",
+ "lng": "81.215504",
+ "radius": 383,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.215504,
+ 29.240380440214437,
+ 0.0
+ ],
+ [
+ 81.216188141859163,
+ 29.240327942576855,
+ 0.0
+ ],
+ [
+ 81.216851494372222,
+ 29.240172044933743,
+ 0.0
+ ],
+ [
+ 81.217473900113148,
+ 29.239917484603733,
+ 0.0
+ ],
+ [
+ 81.218036446265813,
+ 29.239571996959505,
+ 0.0
+ ],
+ [
+ 81.218522039441098,
+ 29.239146080309578,
+ 0.0
+ ],
+ [
+ 81.218915925136301,
+ 29.238652676811039,
+ 0.0
+ ],
+ [
+ 81.21920613604324,
+ 29.238106779120727,
+ 0.0
+ ],
+ [
+ 81.21938385558326,
+ 29.237524974749416,
+ 0.0
+ ],
+ [
+ 81.219443685633635,
+ 29.236924941975985,
+ 0.0
+ ],
+ [
+ 81.219383810330243,
+ 29.236324912647966,
+ 0.0
+ ],
+ [
+ 81.219206050995396,
+ 29.235743118197291,
+ 0.0
+ ],
+ [
+ 81.218915810551636,
+ 29.235197235706291,
+ 0.0
+ ],
+ [
+ 81.218521909140222,
+ 29.23470385085248,
+ 0.0
+ ],
+ [
+ 81.218036315964952,
+ 29.234277954043829,
+ 0.0
+ ],
+ [
+ 81.217473785528497,
+ 29.23393248504431,
+ 0.0
+ ],
+ [
+ 81.216851409324363,
+ 29.23367793991363,
+ 0.0
+ ],
+ [
+ 81.216188096606146,
+ 29.233522052191155,
+ 0.0
+ ],
+ [
+ 81.215504,
+ 29.233469557998976,
+ 0.0
+ ],
+ [
+ 81.214819903393845,
+ 29.233522052191155,
+ 0.0
+ ],
+ [
+ 81.214156590675628,
+ 29.23367793991363,
+ 0.0
+ ],
+ [
+ 81.213534214471494,
+ 29.23393248504431,
+ 0.0
+ ],
+ [
+ 81.21297168403504,
+ 29.234277954043829,
+ 0.0
+ ],
+ [
+ 81.21248609085977,
+ 29.23470385085248,
+ 0.0
+ ],
+ [
+ 81.212092189448356,
+ 29.235197235706291,
+ 0.0
+ ],
+ [
+ 81.211801949004595,
+ 29.235743118197291,
+ 0.0
+ ],
+ [
+ 81.211624189669749,
+ 29.236324912647966,
+ 0.0
+ ],
+ [
+ 81.211564314366356,
+ 29.236924941975985,
+ 0.0
+ ],
+ [
+ 81.211624144416731,
+ 29.237524974749416,
+ 0.0
+ ],
+ [
+ 81.211801863956751,
+ 29.238106779120727,
+ 0.0
+ ],
+ [
+ 81.212092074863691,
+ 29.238652676811039,
+ 0.0
+ ],
+ [
+ 81.212485960558894,
+ 29.239146080309578,
+ 0.0
+ ],
+ [
+ 81.212971553734178,
+ 29.239571996959505,
+ 0.0
+ ],
+ [
+ 81.213534099886843,
+ 29.239917484603733,
+ 0.0
+ ],
+ [
+ 81.21415650562777,
+ 29.240172044933743,
+ 0.0
+ ],
+ [
+ 81.214819858140828,
+ 29.240327942576855,
+ 0.0
+ ],
+ [
+ 81.215504,
+ 29.240380440214437,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30280483,
+ "name": "Darchula Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "29.668584",
+ "lng": "80.547734",
+ "radius": 376,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 80.547734,
+ 29.671976065856775,
+ 0.0
+ ],
+ [
+ 80.548408486781241,
+ 29.671924531051303,
+ 0.0
+ ],
+ [
+ 80.549062477611599,
+ 29.67177149264641,
+ 0.0
+ ],
+ [
+ 80.549676099541941,
+ 29.671521601075685,
+ 0.0
+ ],
+ [
+ 80.550230706667719,
+ 29.671182449840828,
+ 0.0
+ ],
+ [
+ 80.550709446833736,
+ 29.670764344705709,
+ 0.0
+ ],
+ [
+ 80.551097773762507,
+ 29.670279990461459,
+ 0.0
+ ],
+ [
+ 80.551383889035563,
+ 29.66974410479185,
+ 0.0
+ ],
+ [
+ 80.551559100498011,
+ 29.669172970984391,
+ 0.0
+ ],
+ [
+ 80.551618086206915,
+ 29.668583943089772,
+ 0.0
+ ],
+ [
+ 80.551559055922482,
+ 29.667994918574866,
+ 0.0
+ ],
+ [
+ 80.551383805260983,
+ 29.667423794498916,
+ 0.0
+ ],
+ [
+ 80.551097660893319,
+ 29.666887923738837,
+ 0.0
+ ],
+ [
+ 80.550709318483626,
+ 29.66640358778384,
+ 0.0
+ ],
+ [
+ 80.550230578317624,
+ 29.665985502111731,
+ 0.0
+ ],
+ [
+ 80.549675986672739,
+ 29.665646369166119,
+ 0.0
+ ],
+ [
+ 80.549062393837019,
+ 29.665396492504929,
+ 0.0
+ ],
+ [
+ 80.548408442205712,
+ 29.665243463831523,
+ 0.0
+ ],
+ [
+ 80.547734,
+ 29.665191932405779,
+ 0.0
+ ],
+ [
+ 80.547059557794299,
+ 29.665243463831523,
+ 0.0
+ ],
+ [
+ 80.546405606162992,
+ 29.665396492504929,
+ 0.0
+ ],
+ [
+ 80.545792013327272,
+ 29.665646369166119,
+ 0.0
+ ],
+ [
+ 80.545237421682387,
+ 29.665985502111731,
+ 0.0
+ ],
+ [
+ 80.544758681516385,
+ 29.66640358778384,
+ 0.0
+ ],
+ [
+ 80.544370339106692,
+ 29.666887923738837,
+ 0.0
+ ],
+ [
+ 80.544084194739028,
+ 29.667423794498916,
+ 0.0
+ ],
+ [
+ 80.543908944077529,
+ 29.667994918574866,
+ 0.0
+ ],
+ [
+ 80.543849913793096,
+ 29.668583943089772,
+ 0.0
+ ],
+ [
+ 80.543908899502,
+ 29.669172970984391,
+ 0.0
+ ],
+ [
+ 80.544084110964448,
+ 29.66974410479185,
+ 0.0
+ ],
+ [
+ 80.544370226237504,
+ 29.670279990461459,
+ 0.0
+ ],
+ [
+ 80.544758553166275,
+ 29.670764344705709,
+ 0.0
+ ],
+ [
+ 80.545237293332292,
+ 29.671182449840828,
+ 0.0
+ ],
+ [
+ 80.54579190045807,
+ 29.671521601075685,
+ 0.0
+ ],
+ [
+ 80.546405522388412,
+ 29.67177149264641,
+ 0.0
+ ],
+ [
+ 80.54705951321877,
+ 29.671924531051303,
+ 0.0
+ ],
+ [
+ 80.547734,
+ 29.671976065856775,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282443,
+ "name": "Simikot Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "29.970678",
+ "lng": "81.819132",
+ "radius": 451,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.819132,
+ 29.974746488346902,
+ 0.0
+ ],
+ [
+ 81.819943467322076,
+ 29.974684676386552,
+ 0.0
+ ],
+ [
+ 81.820730275681981,
+ 29.974501118852764,
+ 0.0
+ ],
+ [
+ 81.821468515722117,
+ 29.97420139368792,
+ 0.0
+ ],
+ [
+ 81.822135754474857,
+ 29.973794608869348,
+ 0.0
+ ],
+ [
+ 81.822711717208236,
+ 29.973293125549887,
+ 0.0
+ ],
+ [
+ 81.823178903586438,
+ 29.972712182325452,
+ 0.0
+ ],
+ [
+ 81.823523119408563,
+ 29.97206943206378,
+ 0.0
+ ],
+ [
+ 81.823733907768997,
+ 29.971384405385937,
+ 0.0
+ ],
+ [
+ 81.823804866553814,
+ 29.970677917120184,
+ 0.0
+ ],
+ [
+ 81.823733842654065,
+ 29.969971433776859,
+ 0.0
+ ],
+ [
+ 81.823522997032498,
+ 29.969286421272578,
+ 0.0
+ ],
+ [
+ 81.823178738709629,
+ 29.968643692726058,
+ 0.0
+ ],
+ [
+ 81.822711529717239,
+ 29.968062776139213,
+ 0.0
+ ],
+ [
+ 81.82213556698386,
+ 29.967561321166883,
+ 0.0
+ ],
+ [
+ 81.821468350845308,
+ 29.9671545629859,
+ 0.0
+ ],
+ [
+ 81.820730153305931,
+ 29.966854859536202,
+ 0.0
+ ],
+ [
+ 81.81994340220713,
+ 29.966671316175987,
+ 0.0
+ ],
+ [
+ 81.819132,
+ 29.966609509138067,
+ 0.0
+ ],
+ [
+ 81.818320597792862,
+ 29.966671316175987,
+ 0.0
+ ],
+ [
+ 81.817533846694062,
+ 29.966854859536202,
+ 0.0
+ ],
+ [
+ 81.816795649154685,
+ 29.9671545629859,
+ 0.0
+ ],
+ [
+ 81.816128433016132,
+ 29.967561321166883,
+ 0.0
+ ],
+ [
+ 81.815552470282753,
+ 29.968062776139213,
+ 0.0
+ ],
+ [
+ 81.815085261290363,
+ 29.968643692726058,
+ 0.0
+ ],
+ [
+ 81.814741002967494,
+ 29.969286421272578,
+ 0.0
+ ],
+ [
+ 81.814530157345928,
+ 29.969971433776859,
+ 0.0
+ ],
+ [
+ 81.814459133446178,
+ 29.970677917120184,
+ 0.0
+ ],
+ [
+ 81.814530092230996,
+ 29.971384405385937,
+ 0.0
+ ],
+ [
+ 81.81474088059143,
+ 29.97206943206378,
+ 0.0
+ ],
+ [
+ 81.815085096413554,
+ 29.972712182325452,
+ 0.0
+ ],
+ [
+ 81.815552282791757,
+ 29.973293125549887,
+ 0.0
+ ],
+ [
+ 81.816128245525135,
+ 29.973794608869348,
+ 0.0
+ ],
+ [
+ 81.816795484277876,
+ 29.97420139368792,
+ 0.0
+ ],
+ [
+ 81.817533724318011,
+ 29.974501118852764,
+ 0.0
+ ],
+ [
+ 81.818320532677916,
+ 29.974684676386552,
+ 0.0
+ ],
+ [
+ 81.819132,
+ 29.974746488346902,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001345,
+ "name": "Shigatse Peace Airport",
+ "country": "CN",
+ "city": "Rikaze",
+ "height": 500,
+ "level": 2,
+ "lat": "29.351667",
+ "lng": "89.309862",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.309862,
+ 29.802745908810852,
+ 500.0
+ ],
+ [
+ 89.399663830014589,
+ 29.795863010567061,
+ 500.0
+ ],
+ [
+ 89.486701361319263,
+ 29.775426182516032,
+ 500.0
+ ],
+ [
+ 89.568298702264784,
+ 29.742064246816032,
+ 500.0
+ ],
+ [
+ 89.641953527214696,
+ 29.696802897400346,
+ 500.0
+ ],
+ [
+ 89.70541591388978,
+ 29.641032046570142,
+ 500.0
+ ],
+ [
+ 89.756758118047301,
+ 29.57646178439494,
+ 500.0
+ ],
+ [
+ 89.794433003735207,
+ 29.505068517944281,
+ 500.0
+ ],
+ [
+ 89.817319392956705,
+ 29.429033163745057,
+ 500.0
+ ],
+ [
+ 89.824753186033192,
+ 29.350673485698035,
+ 500.0
+ ],
+ [
+ 89.816543690662314,
+ 29.272372799499276,
+ 500.0
+ ],
+ [
+ 89.792975147587256,
+ 29.19650730696404,
+ 500.0
+ ],
+ [
+ 89.754793927548434,
+ 29.125374287731614,
+ 500.0
+ ],
+ [
+ 89.7031822822847,
+ 29.061123272724409,
+ 500.0
+ ],
+ [
+ 89.639719856678141,
+ 29.005692165736246,
+ 500.0
+ ],
+ [
+ 89.566334413188017,
+ 28.960750078715606,
+ 500.0
+ ],
+ [
+ 89.485243393072622,
+ 28.927648413562995,
+ 500.0
+ ],
+ [
+ 89.398888054552984,
+ 28.907381467691298,
+ 500.0
+ ],
+ [
+ 89.309862,
+ 28.9005575693979,
+ 500.0
+ ],
+ [
+ 89.220835945447007,
+ 28.907381467691298,
+ 500.0
+ ],
+ [
+ 89.134480606927369,
+ 28.927648413562995,
+ 500.0
+ ],
+ [
+ 89.053389586811974,
+ 28.960750078715606,
+ 500.0
+ ],
+ [
+ 88.98000414332185,
+ 29.005692165736246,
+ 500.0
+ ],
+ [
+ 88.91654171771529,
+ 29.061123272724409,
+ 500.0
+ ],
+ [
+ 88.864930072451557,
+ 29.125374287731614,
+ 500.0
+ ],
+ [
+ 88.826748852412734,
+ 29.19650730696404,
+ 500.0
+ ],
+ [
+ 88.803180309337677,
+ 29.272372799499276,
+ 500.0
+ ],
+ [
+ 88.794970813966799,
+ 29.350673485698035,
+ 500.0
+ ],
+ [
+ 88.802404607043286,
+ 29.429033163745057,
+ 500.0
+ ],
+ [
+ 88.825290996264783,
+ 29.505068517944281,
+ 500.0
+ ],
+ [
+ 88.86296588195269,
+ 29.57646178439494,
+ 500.0
+ ],
+ [
+ 88.914308086110211,
+ 29.641032046570142,
+ 500.0
+ ],
+ [
+ 88.977770472785295,
+ 29.696802897400346,
+ 500.0
+ ],
+ [
+ 89.051425297735207,
+ 29.742064246816032,
+ 500.0
+ ],
+ [
+ 89.133022638680728,
+ 29.775426182516032,
+ 500.0
+ ],
+ [
+ 89.220060169985402,
+ 29.795863010567061,
+ 500.0
+ ],
+ [
+ 89.309862,
+ 29.802745908810852,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9728,
+ "name": "Shigatse Peace Airport",
+ "country": "CN",
+ "city": "Rikaze",
+ "height": 0,
+ "level": 2,
+ "lat": "29.3518148071198",
+ "lng": "89.3614826678272",
+ "radius": 14533,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.4072725547,
+ 29.327419493099999,
+ 0.0
+ ],
+ [
+ 89.504203863499995,
+ 29.311792563400001,
+ 0.0
+ ],
+ [
+ 89.506443906,
+ 29.383005286300001,
+ 0.0
+ ],
+ [
+ 89.408680365199999,
+ 29.372028197100001,
+ 0.0
+ ],
+ [
+ 89.390147695899998,
+ 29.400665551500001,
+ 0.0
+ ],
+ [
+ 89.3751523671,
+ 29.410905145099999,
+ 0.0
+ ],
+ [
+ 89.338756909599994,
+ 29.419743854299998,
+ 0.0
+ ],
+ [
+ 89.283415276,
+ 29.421042504199999,
+ 0.0
+ ],
+ [
+ 89.246499102100003,
+ 29.413924041,
+ 0.0
+ ],
+ [
+ 89.230892402199999,
+ 29.4044023477,
+ 0.0
+ ],
+ [
+ 89.218649513200006,
+ 29.391685040599999,
+ 0.0
+ ],
+ [
+ 89.4072725547,
+ 29.327419493099999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9728,
+ "name": "Shigatse Peace Airport",
+ "country": "CN",
+ "city": "Rikaze",
+ "height": 0,
+ "level": 2,
+ "lat": "29.3531266320319",
+ "lng": "89.2585495721192",
+ "radius": 14696,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.113670744100006,
+ 29.392224823,
+ 0.0
+ ],
+ [
+ 89.111479513500001,
+ 29.321011851400002,
+ 0.0
+ ],
+ [
+ 89.2092344199,
+ 29.3321031111,
+ 0.0
+ ],
+ [
+ 89.216361713699996,
+ 29.316703351800001,
+ 0.0
+ ],
+ [
+ 89.227810348,
+ 29.3034428498,
+ 0.0
+ ],
+ [
+ 89.260314892400004,
+ 29.286720231699999,
+ 0.0
+ ],
+ [
+ 89.353448720299994,
+ 29.2845272335,
+ 0.0
+ ],
+ [
+ 89.386944428800007,
+ 29.299687756400001,
+ 0.0
+ ],
+ [
+ 89.4072725547,
+ 29.327419493099999,
+ 0.0
+ ],
+ [
+ 89.218649513200006,
+ 29.391685040599999,
+ 0.0
+ ],
+ [
+ 89.210604354400004,
+ 29.376639795,
+ 0.0
+ ],
+ [
+ 89.113670744100006,
+ 29.392224823,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9728,
+ "name": "Shigatse Peace Airport",
+ "country": "CN",
+ "city": "Rikaze",
+ "height": 120,
+ "level": 2,
+ "lat": "29.3517128094413",
+ "lng": "89.3089475682079",
+ "radius": 24789,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.072242136699998,
+ 29.267458465699999,
+ 120.0
+ ],
+ [
+ 89.077747156599997,
+ 29.4472587791,
+ 120.0
+ ],
+ [
+ 89.545651499599998,
+ 29.4363640692,
+ 120.0
+ ],
+ [
+ 89.540147068400003,
+ 29.256563755799998,
+ 120.0
+ ],
+ [
+ 89.072242136699998,
+ 29.267458465699999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4081,
+ "name": "Lhasa Gonggar Airport",
+ "country": "CN",
+ "city": "Lhasa",
+ "height": 0,
+ "level": 2,
+ "lat": "29.2989958422243",
+ "lng": "90.8616358316412",
+ "radius": 14610,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 90.717343455,
+ 29.3368860673,
+ 0.0
+ ],
+ [
+ 90.716497059700004,
+ 29.263811110500001,
+ 0.0
+ ],
+ [
+ 90.813740750700006,
+ 29.2765395246,
+ 0.0
+ ],
+ [
+ 90.832769223900002,
+ 29.248733522799998,
+ 0.0
+ ],
+ [
+ 90.847977921199998,
+ 29.238763584800001,
+ 0.0
+ ],
+ [
+ 90.884504628,
+ 29.230561893499999,
+ 0.0
+ ],
+ [
+ 90.937860587700001,
+ 29.2300857398,
+ 0.0
+ ],
+ [
+ 90.974004610500003,
+ 29.237359190900001,
+ 0.0
+ ],
+ [
+ 90.9895449375,
+ 29.246931561299998,
+ 0.0
+ ],
+ [
+ 91.009698049500003,
+ 29.2747545187,
+ 0.0
+ ],
+ [
+ 90.814272112200001,
+ 29.322500791700001,
+ 0.0
+ ],
+ [
+ 90.717343455,
+ 29.3368860673,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4081,
+ "name": "Lhasa Gonggar Airport",
+ "country": "CN",
+ "city": "Lhasa",
+ "height": 0,
+ "level": 2,
+ "lat": "29.2981421302604",
+ "lng": "90.962354270974",
+ "radius": 14611,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.009698049500003,
+ 29.2747545187,
+ 0.0
+ ],
+ [
+ 91.106629151800007,
+ 29.260326247799998,
+ 0.0
+ ],
+ [
+ 91.107529697399997,
+ 29.333401112400001,
+ 0.0
+ ],
+ [
+ 91.0102702561,
+ 29.320787952700002,
+ 0.0
+ ],
+ [
+ 90.991281574699997,
+ 29.348574327,
+ 0.0
+ ],
+ [
+ 90.976067484699996,
+ 29.358556983,
+ 0.0
+ ],
+ [
+ 90.939499824799995,
+ 29.3667751411,
+ 0.0
+ ],
+ [
+ 90.886144752500002,
+ 29.367251302300001,
+ 0.0
+ ],
+ [
+ 90.849925391100001,
+ 29.3599468092,
+ 0.0
+ ],
+ [
+ 90.834383878,
+ 29.350354686500001,
+ 0.0
+ ],
+ [
+ 90.814272112200001,
+ 29.322500791700001,
+ 0.0
+ ],
+ [
+ 91.009698049500003,
+ 29.2747545187,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4081,
+ "name": "Lhasa Gonggar Airport",
+ "country": "CN",
+ "city": "Lhasa",
+ "height": 120,
+ "level": 2,
+ "lat": "29.2983133374662",
+ "lng": "90.9120007575926",
+ "radius": 24702,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 90.6780525952,
+ 29.210620051300001,
+ 120.0
+ ],
+ [
+ 90.680116120099996,
+ 29.390475370299999,
+ 120.0
+ ],
+ [
+ 91.145945217199994,
+ 29.386400178900001,
+ 120.0
+ ],
+ [
+ 91.143881774600004,
+ 29.20654486,
+ 120.0
+ ],
+ [
+ 90.6780525952,
+ 29.210620051300001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001417,
+ "name": "Lhasa Gonggar Airport",
+ "country": "CN",
+ "city": "Lhasa",
+ "height": 500,
+ "level": 2,
+ "lat": "29.297036",
+ "lng": "90.911774",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 90.911774,
+ 29.748118620572178,
+ 500.0
+ ],
+ [
+ 91.00152711831592,
+ 29.741235732751331,
+ 500.0
+ ],
+ [
+ 91.088517516743437,
+ 29.720798929543527,
+ 500.0
+ ],
+ [
+ 91.170070822246302,
+ 29.687437014786013,
+ 500.0
+ ],
+ [
+ 91.243686110779663,
+ 29.642175654935837,
+ 500.0
+ ],
+ [
+ 91.307114694295379,
+ 29.586404729822593,
+ 500.0
+ ],
+ [
+ 91.358429854041631,
+ 29.521834297076794,
+ 500.0
+ ],
+ [
+ 91.396085240095061,
+ 29.450440736593841,
+ 500.0
+ ],
+ [
+ 91.418960201772762,
+ 29.374404947740018,
+ 500.0
+ ],
+ [
+ 91.426390900150579,
+ 29.296044690911927,
+ 500.0
+ ],
+ [
+ 91.418186639850532,
+ 29.217743294015229,
+ 500.0
+ ],
+ [
+ 91.394631406587706,
+ 29.141876986980659,
+ 500.0
+ ],
+ [
+ 91.356471083349035,
+ 29.070743091744841,
+ 500.0
+ ],
+ [
+ 91.304887226030061,
+ 29.006491192248653,
+ 500.0
+ ],
+ [
+ 91.241458603756911,
+ 28.951059251210939,
+ 500.0
+ ],
+ [
+ 91.1681119534164,
+ 28.906116439780238,
+ 500.0
+ ],
+ [
+ 91.087063571638467,
+ 28.873014213511418,
+ 500.0
+ ],
+ [
+ 91.00075348355351,
+ 28.852746912561173,
+ 500.0
+ ],
+ [
+ 90.911774,
+ 28.845922892743438,
+ 500.0
+ ],
+ [
+ 90.822794516446478,
+ 28.852746912561173,
+ 500.0
+ ],
+ [
+ 90.736484428361521,
+ 28.873014213511418,
+ 500.0
+ ],
+ [
+ 90.655436046583588,
+ 28.906116439780238,
+ 500.0
+ ],
+ [
+ 90.582089396243077,
+ 28.951059251210939,
+ 500.0
+ ],
+ [
+ 90.518660773969927,
+ 29.006491192248653,
+ 500.0
+ ],
+ [
+ 90.467076916650953,
+ 29.070743091744841,
+ 500.0
+ ],
+ [
+ 90.428916593412282,
+ 29.141876986980659,
+ 500.0
+ ],
+ [
+ 90.405361360149456,
+ 29.217743294015229,
+ 500.0
+ ],
+ [
+ 90.397157099849409,
+ 29.296044690911927,
+ 500.0
+ ],
+ [
+ 90.404587798227226,
+ 29.374404947740018,
+ 500.0
+ ],
+ [
+ 90.427462759904927,
+ 29.450440736593841,
+ 500.0
+ ],
+ [
+ 90.465118145958357,
+ 29.521834297076794,
+ 500.0
+ ],
+ [
+ 90.516433305704609,
+ 29.586404729822593,
+ 500.0
+ ],
+ [
+ 90.579861889220325,
+ 29.642175654935837,
+ 500.0
+ ],
+ [
+ 90.653477177753686,
+ 29.687437014786013,
+ 500.0
+ ],
+ [
+ 90.735030483256551,
+ 29.720798929543527,
+ 500.0
+ ],
+ [
+ 90.822020881684068,
+ 29.741235732751331,
+ 500.0
+ ],
+ [
+ 90.911774,
+ 29.748118620572178,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4115,
+ "name": "Nyingchi Airport",
+ "country": "CN",
+ "city": "Nyingchi",
+ "height": 0,
+ "level": 2,
+ "lat": "29.3297801035085",
+ "lng": "94.3760550963222",
+ "radius": 13675,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.4214251824,
+ 29.331381866299999,
+ 0.0
+ ],
+ [
+ 94.509027826700006,
+ 29.370913656,
+ 0.0
+ ],
+ [
+ 94.460958027,
+ 29.428025356300001,
+ 0.0
+ ],
+ [
+ 94.391366296699999,
+ 29.367118880900001,
+ 0.0
+ ],
+ [
+ 94.356430806500001,
+ 29.379935077700001,
+ 0.0
+ ],
+ [
+ 94.337382899399998,
+ 29.3800106431,
+ 0.0
+ ],
+ [
+ 94.30242768799999,
+ 29.36754711,
+ 0.0
+ ],
+ [
+ 94.261234359400007,
+ 29.3387852205,
+ 0.0
+ ],
+ [
+ 94.251139951300004,
+ 29.3247119643,
+ 0.0
+ ],
+ [
+ 94.245569598399996,
+ 29.3088402371,
+ 0.0
+ ],
+ [
+ 94.249177265499995,
+ 29.2760784974,
+ 0.0
+ ],
+ [
+ 94.4214251824,
+ 29.331381866299999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4115,
+ "name": "Nyingchi Airport",
+ "country": "CN",
+ "city": "Nyingchi",
+ "height": 0,
+ "level": 2,
+ "lat": "29.2776231802303",
+ "lng": "94.294589441013",
+ "radius": 13674,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.161732995799994,
+ 29.236531045300001,
+ 0.0
+ ],
+ [
+ 94.209758395500003,
+ 29.1794248711,
+ 0.0
+ ],
+ [
+ 94.279188785100004,
+ 29.240413268,
+ 0.0
+ ],
+ [
+ 94.295707800200006,
+ 29.231982245800001,
+ 0.0
+ ],
+ [
+ 94.333074487100006,
+ 29.227521124500001,
+ 0.0
+ ],
+ [
+ 94.3514723049,
+ 29.231732005200001,
+ 0.0
+ ],
+ [
+ 94.3951826152,
+ 29.257344829,
+ 0.0
+ ],
+ [
+ 94.419343817500007,
+ 29.2827521476,
+ 0.0
+ ],
+ [
+ 94.425662686699994,
+ 29.3152000304,
+ 0.0
+ ],
+ [
+ 94.4214251824,
+ 29.331381866299999,
+ 0.0
+ ],
+ [
+ 94.249177265499995,
+ 29.2760784974,
+ 0.0
+ ],
+ [
+ 94.161732995799994,
+ 29.236531045300001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4115,
+ "name": "Nyingchi Airport",
+ "country": "CN",
+ "city": "Nyingchi",
+ "height": 120,
+ "level": 2,
+ "lat": "29.3035512541574",
+ "lng": "94.3354492870499",
+ "radius": 23832,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.216508015100004,
+ 29.116039899299999,
+ 120.0
+ ],
+ [
+ 94.094600007500006,
+ 29.261037310300001,
+ 120.0
+ ],
+ [
+ 94.454167535500005,
+ 29.491270333700001,
+ 120.0
+ ],
+ [
+ 94.576350796200003,
+ 29.346272923099999,
+ 120.0
+ ],
+ [
+ 94.216508015100004,
+ 29.116039899299999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001430,
+ "name": "Nyingchi Airport",
+ "country": "CN",
+ "city": "Nyingchi",
+ "height": 500,
+ "level": 2,
+ "lat": "29.303736",
+ "lng": "94.335081",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.335081,
+ 29.754818165585533,
+ 500.0
+ ],
+ [
+ 94.424840085135273,
+ 29.747935276486849,
+ 500.0
+ ],
+ [
+ 94.511836256985802,
+ 29.72749847023319,
+ 500.0
+ ],
+ [
+ 94.593394956494492,
+ 29.694136552907604,
+ 500.0
+ ],
+ [
+ 94.667015087930537,
+ 29.648875194335229,
+ 500.0
+ ],
+ [
+ 94.730447812061115,
+ 29.593104278326042,
+ 500.0
+ ],
+ [
+ 94.781766284519946,
+ 29.528533866487056,
+ 500.0
+ ],
+ [
+ 94.819424059102531,
+ 29.457140342044802,
+ 500.0
+ ],
+ [
+ 94.842300420536461,
+ 29.381104606469247,
+ 500.0
+ ],
+ [
+ 94.849731497960306,
+ 29.302744420586684,
+ 500.0
+ ],
+ [
+ 94.841526596376355,
+ 29.224443110806249,
+ 500.0
+ ],
+ [
+ 94.817969732742242,
+ 29.148576903612376,
+ 500.0
+ ],
+ [
+ 94.779806849794028,
+ 29.077443115756875,
+ 500.0
+ ],
+ [
+ 94.728219588664984,
+ 29.013191324681593,
+ 500.0
+ ],
+ [
+ 94.664786825755655,
+ 28.957759485882239,
+ 500.0
+ ],
+ [
+ 94.591435423577366,
+ 28.912816763250415,
+ 500.0
+ ],
+ [
+ 94.510381818966579,
+ 28.879714605763883,
+ 500.0
+ ],
+ [
+ 94.424066188094969,
+ 28.859447348339629,
+ 500.0
+ ],
+ [
+ 94.335081,
+ 28.852623343418518,
+ 500.0
+ ],
+ [
+ 94.246095811905036,
+ 28.859447348339629,
+ 500.0
+ ],
+ [
+ 94.159780181033426,
+ 28.879714605763883,
+ 500.0
+ ],
+ [
+ 94.078726576422639,
+ 28.912816763250415,
+ 500.0
+ ],
+ [
+ 94.00537517424435,
+ 28.957759485882239,
+ 500.0
+ ],
+ [
+ 93.94194241133502,
+ 29.013191324681593,
+ 500.0
+ ],
+ [
+ 93.890355150205977,
+ 29.077443115756875,
+ 500.0
+ ],
+ [
+ 93.852192267257763,
+ 29.148576903612376,
+ 500.0
+ ],
+ [
+ 93.82863540362365,
+ 29.224443110806249,
+ 500.0
+ ],
+ [
+ 93.820430502039699,
+ 29.302744420586684,
+ 500.0
+ ],
+ [
+ 93.827861579463544,
+ 29.381104606469247,
+ 500.0
+ ],
+ [
+ 93.850737940897474,
+ 29.457140342044802,
+ 500.0
+ ],
+ [
+ 93.888395715480058,
+ 29.528533866487056,
+ 500.0
+ ],
+ [
+ 93.93971418793889,
+ 29.593104278326042,
+ 500.0
+ ],
+ [
+ 94.003146912069468,
+ 29.648875194335229,
+ 500.0
+ ],
+ [
+ 94.076767043505512,
+ 29.694136552907604,
+ 500.0
+ ],
+ [
+ 94.158325743014203,
+ 29.72749847023319,
+ 500.0
+ ],
+ [
+ 94.245321914864732,
+ 29.747935276486849,
+ 500.0
+ ],
+ [
+ 94.335081,
+ 29.754818165585533,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001400,
+ "name": "亚丁",
+ "country": "CN",
+ "city": "稻城",
+ "height": 500,
+ "level": 2,
+ "lat": "29.3175",
+ "lng": "100.06",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.06,
+ 29.768581230693943,
+ 500.0
+ ],
+ [
+ 100.149771349281224,
+ 29.761698338969779,
+ 500.0
+ ],
+ [
+ 100.236779387774874,
+ 29.741261526458114,
+ 500.0
+ ],
+ [
+ 100.318349174080097,
+ 29.707899603856596,
+ 500.0
+ ],
+ [
+ 100.391979259585582,
+ 29.662638247910909,
+ 500.0
+ ],
+ [
+ 100.45542049431549,
+ 29.606867350609832,
+ 500.0
+ ],
+ [
+ 100.506745775716197,
+ 29.542296981730981,
+ 500.0
+ ],
+ [
+ 100.544408459686593,
+ 29.470903531345481,
+ 500.0
+ ],
+ [
+ 100.567287698195315,
+ 29.39486790524575,
+ 500.0
+ ],
+ [
+ 100.574719554734557,
+ 29.316507865140867,
+ 500.0
+ ],
+ [
+ 100.566513335085105,
+ 29.238206734364841,
+ 500.0
+ ],
+ [
+ 100.542953120417152,
+ 29.162340732320668,
+ 500.0
+ ],
+ [
+ 100.504784976271992,
+ 29.091207165106631,
+ 500.0
+ ],
+ [
+ 100.453190718977822,
+ 29.026955596810605,
+ 500.0
+ ],
+ [
+ 100.38974944542538,
+ 28.971523968086512,
+ 500.0
+ ],
+ [
+ 100.316388276333782,
+ 28.926581427914886,
+ 500.0
+ ],
+ [
+ 100.23532393672042,
+ 28.893479411759195,
+ 500.0
+ ],
+ [
+ 100.148996913208535,
+ 28.873212243770219,
+ 500.0
+ ],
+ [
+ 100.06,
+ 28.866388269458014,
+ 500.0
+ ],
+ [
+ 99.97100308679147,
+ 28.873212243770219,
+ 500.0
+ ],
+ [
+ 99.884676063279585,
+ 28.893479411759195,
+ 500.0
+ ],
+ [
+ 99.803611723666222,
+ 28.926581427914886,
+ 500.0
+ ],
+ [
+ 99.730250554574624,
+ 28.971523968086512,
+ 500.0
+ ],
+ [
+ 99.666809281022182,
+ 29.026955596810605,
+ 500.0
+ ],
+ [
+ 99.615215023728013,
+ 29.091207165106631,
+ 500.0
+ ],
+ [
+ 99.577046879582852,
+ 29.162340732320668,
+ 500.0
+ ],
+ [
+ 99.5534866649149,
+ 29.238206734364841,
+ 500.0
+ ],
+ [
+ 99.545280445265448,
+ 29.316507865140867,
+ 500.0
+ ],
+ [
+ 99.552712301804689,
+ 29.39486790524575,
+ 500.0
+ ],
+ [
+ 99.575591540313411,
+ 29.470903531345481,
+ 500.0
+ ],
+ [
+ 99.613254224283807,
+ 29.542296981730981,
+ 500.0
+ ],
+ [
+ 99.664579505684515,
+ 29.606867350609832,
+ 500.0
+ ],
+ [
+ 99.728020740414422,
+ 29.662638247910909,
+ 500.0
+ ],
+ [
+ 99.801650825919907,
+ 29.707899603856596,
+ 500.0
+ ],
+ [
+ 99.883220612225131,
+ 29.741261526458114,
+ 500.0
+ ],
+ [
+ 99.970228650718781,
+ 29.761698338969779,
+ 500.0
+ ],
+ [
+ 100.06,
+ 29.768581230693943,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33226,
+ "name": "亚丁",
+ "country": "CN",
+ "city": "稻城",
+ "height": 0,
+ "level": 2,
+ "lat": "29.3661499893743",
+ "lng": "100.034646749341",
+ "radius": 13348,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.05923873,
+ 29.4009830659,
+ 0.0
+ ],
+ [
+ 100.042548619,
+ 29.485997902699999,
+ 0.0
+ ],
+ [
+ 99.968633914700007,
+ 29.467079715499999,
+ 0.0
+ ],
+ [
+ 100.010312242,
+ 29.388772093099998,
+ 0.0
+ ],
+ [
+ 99.987688077300007,
+ 29.366503851299999,
+ 0.0
+ ],
+ [
+ 99.981022846399995,
+ 29.350955385799999,
+ 0.0
+ ],
+ [
+ 99.97920294399999,
+ 29.334433133400001,
+ 0.0
+ ],
+ [
+ 99.982350082799996,
+ 29.318063252200002,
+ 0.0
+ ],
+ [
+ 99.997347677099995,
+ 29.281402719900001,
+ 0.0
+ ],
+ [
+ 100.012479922,
+ 29.2572650647,
+ 0.0
+ ],
+ [
+ 100.02676345899999,
+ 29.2463016114,
+ 0.0
+ ],
+ [
+ 100.05923873,
+ 29.4009830659,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33226,
+ "name": "亚丁",
+ "country": "CN",
+ "city": "稻城",
+ "height": 0,
+ "level": 2,
+ "lat": "29.2763191692683",
+ "lng": "100.077084165645",
+ "radius": 13969,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.075751585,
+ 29.150693770699998,
+ 0.0
+ ],
+ [
+ 100.153032426,
+ 29.169596236099999,
+ 0.0
+ ],
+ [
+ 100.108012175,
+ 29.244545130900001,
+ 0.0
+ ],
+ [
+ 100.133119417,
+ 29.2699644253,
+ 0.0
+ ],
+ [
+ 100.13997034,
+ 29.302329949200001,
+ 0.0
+ ],
+ [
+ 100.12599596699999,
+ 29.351901533300001,
+ 0.0
+ ],
+ [
+ 100.109486983,
+ 29.379737899399998,
+ 0.0
+ ],
+ [
+ 100.07794816099999,
+ 29.397850773,
+ 0.0
+ ],
+ [
+ 100.05923873,
+ 29.4009830659,
+ 0.0
+ ],
+ [
+ 100.02676345899999,
+ 29.2463016114,
+ 0.0
+ ],
+ [
+ 100.062459034,
+ 29.2356669431,
+ 0.0
+ ],
+ [
+ 100.075751585,
+ 29.150693770699998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33226,
+ "name": "亚丁",
+ "country": "CN",
+ "city": "稻城",
+ "height": 120,
+ "level": 2,
+ "lat": "29.3174891557196",
+ "lng": "100.060292088667",
+ "radius": 24200,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.226181895,
+ 29.154965165899998,
+ 120.0
+ ],
+ [
+ 100.029583642,
+ 29.101502189600001,
+ 120.0
+ ],
+ [
+ 99.894085737400005,
+ 29.479972696200001,
+ 120.0
+ ],
+ [
+ 100.091414633,
+ 29.533435672,
+ 120.0
+ ],
+ [
+ 100.226181895,
+ 29.154965165899998,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042400,
+ "name": "规划展览馆",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "29.5768222",
+ "lng": "106.5861208",
+ "radius": 1200,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.5861208,
+ 29.587648085897797,
+ 0.0
+ ],
+ [
+ 106.588271622876917,
+ 29.587483599079498,
+ 0.0
+ ],
+ [
+ 106.590357073690186,
+ 29.586995138021582,
+ 0.0
+ ],
+ [
+ 106.592313769135089,
+ 29.586197548824021,
+ 0.0
+ ],
+ [
+ 106.594082242700054,
+ 29.585115072660408,
+ 0.0
+ ],
+ [
+ 106.595608753132367,
+ 29.583780608397905,
+ 0.0
+ ],
+ [
+ 106.596846918192242,
+ 29.582234711970951,
+ 0.0
+ ],
+ [
+ 106.597759123951846,
+ 29.580524363034193,
+ 0.0
+ ],
+ [
+ 106.598317666818659,
+ 29.578701536499388,
+ 0.0
+ ],
+ [
+ 106.598505593687349,
+ 29.576821622480864,
+ 0.0
+ ],
+ [
+ 106.59831721488672,
+ 29.574941742758369,
+ 0.0
+ ],
+ [
+ 106.597758274597638,
+ 29.573119014975074,
+ 0.0
+ ],
+ [
+ 106.596845773860395,
+ 29.571408817334436,
+ 0.0
+ ],
+ [
+ 106.595607451846192,
+ 29.569863106499625,
+ 0.0
+ ],
+ [
+ 106.594080941413878,
+ 29.568528839740178,
+ 0.0
+ ],
+ [
+ 106.592312624803213,
+ 29.567446549168714,
+ 0.0
+ ],
+ [
+ 106.590356224335935,
+ 29.566649111267264,
+ 0.0
+ ],
+ [
+ 106.588271170944964,
+ 29.566160748960876,
+ 0.0
+ ],
+ [
+ 106.5861208,
+ 29.56599629643862,
+ 0.0
+ ],
+ [
+ 106.583970429055043,
+ 29.566160748960876,
+ 0.0
+ ],
+ [
+ 106.581885375664072,
+ 29.566649111267264,
+ 0.0
+ ],
+ [
+ 106.579928975196793,
+ 29.567446549168714,
+ 0.0
+ ],
+ [
+ 106.578160658586128,
+ 29.568528839740178,
+ 0.0
+ ],
+ [
+ 106.576634148153815,
+ 29.569863106499625,
+ 0.0
+ ],
+ [
+ 106.575395826139612,
+ 29.571408817334436,
+ 0.0
+ ],
+ [
+ 106.574483325402369,
+ 29.573119014975074,
+ 0.0
+ ],
+ [
+ 106.573924385113287,
+ 29.574941742758369,
+ 0.0
+ ],
+ [
+ 106.573736006312657,
+ 29.576821622480864,
+ 0.0
+ ],
+ [
+ 106.573923933181348,
+ 29.578701536499388,
+ 0.0
+ ],
+ [
+ 106.574482476048161,
+ 29.580524363034193,
+ 0.0
+ ],
+ [
+ 106.575394681807765,
+ 29.582234711970951,
+ 0.0
+ ],
+ [
+ 106.576632846867639,
+ 29.583780608397905,
+ 0.0
+ ],
+ [
+ 106.578159357299953,
+ 29.585115072660408,
+ 0.0
+ ],
+ [
+ 106.579927830864918,
+ 29.586197548824021,
+ 0.0
+ ],
+ [
+ 106.581884526309821,
+ 29.586995138021582,
+ 0.0
+ ],
+ [
+ 106.58396997712309,
+ 29.587483599079498,
+ 0.0
+ ],
+ [
+ 106.5861208,
+ 29.587648085897797,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001499,
+ "name": "Chongqing Jiangbei International Airport",
+ "country": "CN",
+ "city": "Chongqing",
+ "height": 500,
+ "level": 2,
+ "lat": "29.7217",
+ "lng": "106.641668",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.641668,
+ 30.172753657498671,
+ 500.0
+ ],
+ [
+ 106.731803329239213,
+ 30.165870688409967,
+ 500.0
+ ],
+ [
+ 106.819163551733268,
+ 30.145433691539271,
+ 500.0
+ ],
+ [
+ 106.901062379840582,
+ 30.112071613685561,
+ 500.0
+ ],
+ [
+ 106.974987892788164,
+ 30.066810335702215,
+ 500.0
+ ],
+ [
+ 107.038681718541739,
+ 30.011039990784056,
+ 500.0
+ ],
+ [
+ 107.090209091717412,
+ 29.94647088965749,
+ 500.0
+ ],
+ [
+ 107.128017494163984,
+ 29.875079624215768,
+ 500.0
+ ],
+ [
+ 107.150982136490668,
+ 29.799047227673253,
+ 500.0
+ ],
+ [
+ 107.158437132254917,
+ 29.720691487707221,
+ 500.0
+ ],
+ [
+ 107.150191808500225,
+ 29.642395636893369,
+ 500.0
+ ],
+ [
+ 107.126532150306858,
+ 29.56653568573482,
+ 500.0
+ ],
+ [
+ 107.088207866319337,
+ 29.495408626104563,
+ 500.0
+ ],
+ [
+ 107.036405971274789,
+ 29.4311636282523,
+ 500.0
+ ],
+ [
+ 106.972712105388908,
+ 29.375738195145733,
+ 500.0
+ ],
+ [
+ 106.899061052823924,
+ 29.330801036056837,
+ 500.0
+ ],
+ [
+ 106.817678092319767,
+ 29.297703187946027,
+ 500.0
+ ],
+ [
+ 106.7310129258247,
+ 29.27743865750427,
+ 500.0
+ ],
+ [
+ 106.641668,
+ 29.270615585879042,
+ 500.0
+ ],
+ [
+ 106.552323074175291,
+ 29.27743865750427,
+ 500.0
+ ],
+ [
+ 106.465657907680225,
+ 29.297703187946027,
+ 500.0
+ ],
+ [
+ 106.384274947176067,
+ 29.330801036056837,
+ 500.0
+ ],
+ [
+ 106.310623894611084,
+ 29.375738195145733,
+ 500.0
+ ],
+ [
+ 106.246930028725203,
+ 29.4311636282523,
+ 500.0
+ ],
+ [
+ 106.195128133680655,
+ 29.495408626104563,
+ 500.0
+ ],
+ [
+ 106.156803849693134,
+ 29.56653568573482,
+ 500.0
+ ],
+ [
+ 106.133144191499767,
+ 29.642395636893369,
+ 500.0
+ ],
+ [
+ 106.124898867745074,
+ 29.720691487707221,
+ 500.0
+ ],
+ [
+ 106.132353863509323,
+ 29.799047227673253,
+ 500.0
+ ],
+ [
+ 106.155318505836007,
+ 29.875079624215768,
+ 500.0
+ ],
+ [
+ 106.193126908282579,
+ 29.94647088965749,
+ 500.0
+ ],
+ [
+ 106.244654281458253,
+ 30.011039990784056,
+ 500.0
+ ],
+ [
+ 106.308348107211827,
+ 30.066810335702215,
+ 500.0
+ ],
+ [
+ 106.38227362015941,
+ 30.112071613685561,
+ 500.0
+ ],
+ [
+ 106.464172448266723,
+ 30.145433691539271,
+ 500.0
+ ],
+ [
+ 106.551532670760778,
+ 30.165870688409967,
+ 500.0
+ ],
+ [
+ 106.641668,
+ 30.172753657498671,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025607,
+ "name": "重庆市人民政府",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "29.5667598",
+ "lng": "106.5455948",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.5455948,
+ 29.575781386489695,
+ 0.0
+ ],
+ [
+ 106.547386943241733,
+ 29.575644316320769,
+ 0.0
+ ],
+ [
+ 106.549124618960377,
+ 29.575237271696334,
+ 0.0
+ ],
+ [
+ 106.550755016309395,
+ 29.57457262355549,
+ 0.0
+ ],
+ [
+ 106.552228587251903,
+ 29.57367057163599,
+ 0.0
+ ],
+ [
+ 106.553500553167126,
+ 29.572558530143255,
+ 0.0
+ ],
+ [
+ 106.554532266018569,
+ 29.571270294082115,
+ 0.0
+ ],
+ [
+ 106.555292382653974,
+ 29.569845011666199,
+ 0.0
+ ],
+ [
+ 106.555757816556678,
+ 29.568325994118062,
+ 0.0
+ ],
+ [
+ 106.55591443820218,
+ 29.566759399108285,
+ 0.0
+ ],
+ [
+ 106.555757502874386,
+ 29.565192827905452,
+ 0.0
+ ],
+ [
+ 106.555291793124098,
+ 29.563673878906624,
+ 0.0
+ ],
+ [
+ 106.554531471747111,
+ 29.562248701514356,
+ 0.0
+ ],
+ [
+ 106.553499649954929,
+ 29.560960594283795,
+ 0.0
+ ],
+ [
+ 106.552227684039707,
+ 29.559848689889698,
+ 0.0
+ ],
+ [
+ 106.550754222037924,
+ 29.558946766800766,
+ 0.0
+ ],
+ [
+ 106.549124029430487,
+ 29.558282223683584,
+ 0.0
+ ],
+ [
+ 106.547386629559426,
+ 29.557875247608479,
+ 0.0
+ ],
+ [
+ 106.5455948,
+ 29.557738201246472,
+ 0.0
+ ],
+ [
+ 106.543802970440581,
+ 29.557875247608479,
+ 0.0
+ ],
+ [
+ 106.54206557056952,
+ 29.558282223683584,
+ 0.0
+ ],
+ [
+ 106.540435377962083,
+ 29.558946766800766,
+ 0.0
+ ],
+ [
+ 106.5389619159603,
+ 29.559848689889698,
+ 0.0
+ ],
+ [
+ 106.537689950045078,
+ 29.560960594283795,
+ 0.0
+ ],
+ [
+ 106.536658128252895,
+ 29.562248701514356,
+ 0.0
+ ],
+ [
+ 106.535897806875909,
+ 29.563673878906624,
+ 0.0
+ ],
+ [
+ 106.535432097125621,
+ 29.565192827905452,
+ 0.0
+ ],
+ [
+ 106.535275161797827,
+ 29.566759399108285,
+ 0.0
+ ],
+ [
+ 106.535431783443329,
+ 29.568325994118062,
+ 0.0
+ ],
+ [
+ 106.535897217346033,
+ 29.569845011666199,
+ 0.0
+ ],
+ [
+ 106.536657333981438,
+ 29.571270294082115,
+ 0.0
+ ],
+ [
+ 106.537689046832881,
+ 29.572558530143255,
+ 0.0
+ ],
+ [
+ 106.538961012748103,
+ 29.57367057163599,
+ 0.0
+ ],
+ [
+ 106.540434583690612,
+ 29.57457262355549,
+ 0.0
+ ],
+ [
+ 106.54206498103963,
+ 29.575237271696334,
+ 0.0
+ ],
+ [
+ 106.543802656758274,
+ 29.575644316320769,
+ 0.0
+ ],
+ [
+ 106.5455948,
+ 29.575781386489695,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045005,
+ "name": "解放碑",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "29.5600948366655",
+ "lng": "106.573401048084",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.573401048083682,
+ 29.564605635973461,
+ 0.0
+ ],
+ [
+ 106.574297021651319,
+ 29.564537103797651,
+ 0.0
+ ],
+ [
+ 106.575165767978007,
+ 29.564333589854215,
+ 0.0
+ ],
+ [
+ 106.575980887535508,
+ 29.564001278584485,
+ 0.0
+ ],
+ [
+ 106.576717611019887,
+ 29.563550268282711,
+ 0.0
+ ],
+ [
+ 106.577353552232751,
+ 29.56299426412162,
+ 0.0
+ ],
+ [
+ 106.577869388422698,
+ 29.562350161552367,
+ 0.0
+ ],
+ [
+ 106.578249447397127,
+ 29.561637532758319,
+ 0.0
+ ],
+ [
+ 106.578482183565598,
+ 29.560878031788928,
+ 0.0
+ ],
+ [
+ 106.578560528468103,
+ 29.560094736469562,
+ 0.0
+ ],
+ [
+ 106.578482105171389,
+ 29.55931144710032,
+ 0.0
+ ],
+ [
+ 106.578249300064215,
+ 29.558551963263593,
+ 0.0
+ ],
+ [
+ 106.5778691899216,
+ 29.557839360718333,
+ 0.0
+ ],
+ [
+ 106.577353326505659,
+ 29.557195290347973,
+ 0.0
+ ],
+ [
+ 106.576717385292767,
+ 29.556639320452231,
+ 0.0
+ ],
+ [
+ 106.575980689034409,
+ 29.556188342349341,
+ 0.0
+ ],
+ [
+ 106.575165620645095,
+ 29.555856057328391,
+ 0.0
+ ],
+ [
+ 106.574296943257124,
+ 29.555652560517625,
+ 0.0
+ ],
+ [
+ 106.573401048083682,
+ 29.555584034291932,
+ 0.0
+ ],
+ [
+ 106.572505152910239,
+ 29.555652560517625,
+ 0.0
+ ],
+ [
+ 106.571636475522268,
+ 29.555856057328391,
+ 0.0
+ ],
+ [
+ 106.570821407132954,
+ 29.556188342349341,
+ 0.0
+ ],
+ [
+ 106.570084710874596,
+ 29.556639320452231,
+ 0.0
+ ],
+ [
+ 106.569448769661705,
+ 29.557195290347973,
+ 0.0
+ ],
+ [
+ 106.568932906245763,
+ 29.557839360718333,
+ 0.0
+ ],
+ [
+ 106.568552796103148,
+ 29.558551963263593,
+ 0.0
+ ],
+ [
+ 106.568319990995974,
+ 29.55931144710032,
+ 0.0
+ ],
+ [
+ 106.56824156769926,
+ 29.560094736469562,
+ 0.0
+ ],
+ [
+ 106.568319912601766,
+ 29.560878031788928,
+ 0.0
+ ],
+ [
+ 106.568552648770236,
+ 29.561637532758319,
+ 0.0
+ ],
+ [
+ 106.568932707744665,
+ 29.562350161552367,
+ 0.0
+ ],
+ [
+ 106.569448543934612,
+ 29.56299426412162,
+ 0.0
+ ],
+ [
+ 106.570084485147476,
+ 29.563550268282711,
+ 0.0
+ ],
+ [
+ 106.570821208631855,
+ 29.564001278584485,
+ 0.0
+ ],
+ [
+ 106.571636328189356,
+ 29.564333589854215,
+ 0.0
+ ],
+ [
+ 106.572505074516044,
+ 29.564537103797651,
+ 0.0
+ ],
+ [
+ 106.573401048083682,
+ 29.564605635973461,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1866,
+ "name": "Chongqing Jiangbei International Airport",
+ "country": "CN",
+ "city": "Chongqing",
+ "height": 0,
+ "level": 2,
+ "lat": "29.7264792367974",
+ "lng": "106.617429410286",
+ "radius": 8718,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.642916054384045,
+ 29.801699062676601,
+ 0.0
+ ],
+ [
+ 106.629060501,
+ 29.7999586436,
+ 0.0
+ ],
+ [
+ 106.611638832,
+ 29.793107796499999,
+ 0.0
+ ],
+ [
+ 106.607187177000384,
+ 29.789935960988608,
+ 0.0
+ ],
+ [
+ 106.606628048,
+ 29.789786965699999,
+ 0.0
+ ],
+ [
+ 106.591849804,
+ 29.779251576699998,
+ 0.0
+ ],
+ [
+ 106.580719988,
+ 29.765754467400001,
+ 0.0
+ ],
+ [
+ 106.573996298,
+ 29.750216431,
+ 0.0
+ ],
+ [
+ 106.563200307,
+ 29.6930014918,
+ 0.0
+ ],
+ [
+ 106.568443366,
+ 29.677040482,
+ 0.0
+ ],
+ [
+ 106.59198095,
+ 29.6512545364,
+ 0.0
+ ],
+ [
+ 106.642916054384045,
+ 29.801699062676601,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1866,
+ "name": "Chongqing Jiangbei International Airport",
+ "country": "CN",
+ "city": "Chongqing",
+ "height": 0,
+ "level": 2,
+ "lat": "29.6447195962194",
+ "lng": "106.634745820931",
+ "radius": 11160,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.59198095,
+ 29.6512545364,
+ 0.0
+ ],
+ [
+ 106.550279695,
+ 29.576305863200002,
+ 0.0
+ ],
+ [
+ 106.624199956,
+ 29.553991586799999,
+ 0.0
+ ],
+ [
+ 106.624560057116625,
+ 29.555829079971065,
+ 0.0
+ ],
+ [
+ 106.63088453899999,
+ 29.554003427600001,
+ 0.0
+ ],
+ [
+ 106.6425453,
+ 29.638998990899999,
+ 0.0
+ ],
+ [
+ 106.677526703,
+ 29.646800341900001,
+ 0.0
+ ],
+ [
+ 106.692945181,
+ 29.656596122700002,
+ 0.0
+ ],
+ [
+ 106.712646419,
+ 29.684706644399999,
+ 0.0
+ ],
+ [
+ 106.716771913032645,
+ 29.70680420133629,
+ 0.0
+ ],
+ [
+ 106.719326777,
+ 29.713079727499998,
+ 0.0
+ ],
+ [
+ 106.59198095,
+ 29.6512545364,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1866,
+ "name": "Chongqing Jiangbei International Airport",
+ "country": "CN",
+ "city": "Chongqing",
+ "height": 0,
+ "level": 2,
+ "lat": "29.7596035388432",
+ "lng": "106.66328536338",
+ "radius": 13877,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.663887926939481,
+ 29.882921386795768,
+ 0.0
+ ],
+ [
+ 106.659148181,
+ 29.8843530091,
+ 0.0
+ ],
+ [
+ 106.642916054384045,
+ 29.801699062676601,
+ 0.0
+ ],
+ [
+ 106.59198095,
+ 29.6512545364,
+ 0.0
+ ],
+ [
+ 106.719326777,
+ 29.713079727499998,
+ 0.0
+ ],
+ [
+ 106.720188783629553,
+ 29.725106128805237,
+ 0.0
+ ],
+ [
+ 106.72383027399999,
+ 29.744611196600001,
+ 0.0
+ ],
+ [
+ 106.709754862,
+ 29.775171400200001,
+ 0.0
+ ],
+ [
+ 106.696398382,
+ 29.787050624399999,
+ 0.0
+ ],
+ [
+ 106.736364396,
+ 29.8670971148,
+ 0.0
+ ],
+ [
+ 106.664117825,
+ 29.884333417699999,
+ 0.0
+ ],
+ [
+ 106.663887926939481,
+ 29.882921386795768,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1866,
+ "name": "Chongqing Jiangbei International Airport",
+ "country": "CN",
+ "city": "Chongqing",
+ "height": 120,
+ "level": 2,
+ "lat": "29.7195828286091",
+ "lng": "106.645523581296",
+ "radius": 24038,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.798223637810707,
+ 29.882350897851271,
+ 120.0
+ ],
+ [
+ 106.801127224,
+ 29.8816677945,
+ 120.0
+ ],
+ [
+ 106.769205635660526,
+ 29.779842872856644,
+ 120.0
+ ],
+ [
+ 106.692028461,
+ 29.507209363899999,
+ 120.0
+ ],
+ [
+ 106.684255828906231,
+ 29.508866149380772,
+ 120.0
+ ],
+ [
+ 106.683931265,
+ 29.507830840800001,
+ 120.0
+ ],
+ [
+ 106.635875421386089,
+ 29.519178737930723,
+ 120.0
+ ],
+ [
+ 106.491250799,
+ 29.550006387,
+ 120.0
+ ],
+ [
+ 106.49212693810766,
+ 29.553123475516575,
+ 120.0
+ ],
+ [
+ 106.484427903,
+ 29.554941524099998,
+ 120.0
+ ],
+ [
+ 106.568478911292161,
+ 29.824765109535324,
+ 120.0
+ ],
+ [
+ 106.59859264399999,
+ 29.931902400399998,
+ 120.0
+ ],
+ [
+ 106.800135698,
+ 29.8891053778,
+ 120.0
+ ],
+ [
+ 106.798223637810707,
+ 29.882350897851271,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042406,
+ "name": "渝州宾馆",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "29.5335674",
+ "lng": "106.4985466",
+ "radius": 1500,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.4985466,
+ 29.547099842802893,
+ 0.0
+ ],
+ [
+ 106.501234053760911,
+ 29.546894227626272,
+ 0.0
+ ],
+ [
+ 106.503839818791548,
+ 29.546283632024792,
+ 0.0
+ ],
+ [
+ 106.50628469227172,
+ 29.545286615591046,
+ 0.0
+ ],
+ [
+ 106.508494367204378,
+ 29.543933482818474,
+ 0.0
+ ],
+ [
+ 106.510401692700071,
+ 29.542265361028615,
+ 0.0
+ ],
+ [
+ 106.511948715652949,
+ 29.54033294916113,
+ 0.0
+ ],
+ [
+ 106.513088441612751,
+ 29.538194975634458,
+ 0.0
+ ],
+ [
+ 106.513786261350603,
+ 29.535916412336856,
+ 0.0
+ ],
+ [
+ 106.514020999935198,
+ 29.533566499204806,
+ 0.0
+ ],
+ [
+ 106.51378555674691,
+ 29.531216639565866,
+ 0.0
+ ],
+ [
+ 106.513087117390981,
+ 29.528938230295548,
+ 0.0
+ ],
+ [
+ 106.511946931533771,
+ 29.526800492752383,
+ 0.0
+ ],
+ [
+ 106.510399663874566,
+ 29.524868370361528,
+ 0.0
+ ],
+ [
+ 106.508492338378829,
+ 29.523200556626275,
+ 0.0
+ ],
+ [
+ 106.506282908152457,
+ 29.521847713330335,
+ 0.0
+ ],
+ [
+ 106.503838494569692,
+ 29.520850932880109,
+ 0.0
+ ],
+ [
+ 106.501233349157161,
+ 29.520240491305941,
+ 0.0
+ ],
+ [
+ 106.4985466,
+ 29.52003492962244,
+ 0.0
+ ],
+ [
+ 106.495859850842834,
+ 29.520240491305941,
+ 0.0
+ ],
+ [
+ 106.493254705430303,
+ 29.520850932880109,
+ 0.0
+ ],
+ [
+ 106.490810291847538,
+ 29.521847713330335,
+ 0.0
+ ],
+ [
+ 106.488600861621165,
+ 29.523200556626275,
+ 0.0
+ ],
+ [
+ 106.486693536125429,
+ 29.524868370361528,
+ 0.0
+ ],
+ [
+ 106.485146268466224,
+ 29.526800492752383,
+ 0.0
+ ],
+ [
+ 106.484006082609014,
+ 29.528938230295548,
+ 0.0
+ ],
+ [
+ 106.483307643253085,
+ 29.531216639565866,
+ 0.0
+ ],
+ [
+ 106.483072200064797,
+ 29.533566499204806,
+ 0.0
+ ],
+ [
+ 106.483306938649392,
+ 29.535916412336856,
+ 0.0
+ ],
+ [
+ 106.484004758387243,
+ 29.538194975634458,
+ 0.0
+ ],
+ [
+ 106.485144484347046,
+ 29.54033294916113,
+ 0.0
+ ],
+ [
+ 106.486691507299923,
+ 29.542265361028615,
+ 0.0
+ ],
+ [
+ 106.488598832795617,
+ 29.543933482818474,
+ 0.0
+ ],
+ [
+ 106.490808507728275,
+ 29.545286615591046,
+ 0.0
+ ],
+ [
+ 106.493253381208447,
+ 29.546283632024792,
+ 0.0
+ ],
+ [
+ 106.495859146239084,
+ 29.546894227626272,
+ 0.0
+ ],
+ [
+ 106.4985466,
+ 29.547099842802893,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045004,
+ "name": "嘉州路",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "29.5970417789651",
+ "lng": "106.520181200371",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.520181200371127,
+ 29.601552553153166,
+ 0.0
+ ],
+ [
+ 106.521077500324239,
+ 29.60148402135448,
+ 0.0
+ ],
+ [
+ 106.521946563112749,
+ 29.601280508531371,
+ 0.0
+ ],
+ [
+ 106.522761979587088,
+ 29.60094819909229,
+ 0.0
+ ],
+ [
+ 106.523498971417311,
+ 29.60049719127764,
+ 0.0
+ ],
+ [
+ 106.524135144249215,
+ 29.599941190186779,
+ 0.0
+ ],
+ [
+ 106.524651168293744,
+ 29.59929709117991,
+ 0.0
+ ],
+ [
+ 106.525031365652751,
+ 29.598584466334341,
+ 0.0
+ ],
+ [
+ 106.525264186535338,
+ 29.597824969581332,
+ 0.0
+ ],
+ [
+ 106.525342559913327,
+ 29.597041678619313,
+ 0.0
+ ],
+ [
+ 106.525264107994843,
+ 29.596258393616374,
+ 0.0
+ ],
+ [
+ 106.525031218044901,
+ 29.595498914021864,
+ 0.0
+ ],
+ [
+ 106.524650969422225,
+ 29.594786315464631,
+ 0.0
+ ],
+ [
+ 106.52413491810087,
+ 29.594142248705186,
+ 0.0
+ ],
+ [
+ 106.523498745268967,
+ 29.593586281931312,
+ 0.0
+ ],
+ [
+ 106.522761780715555,
+ 29.593135306364086,
+ 0.0
+ ],
+ [
+ 106.5219464155049,
+ 29.592803023213346,
+ 0.0
+ ],
+ [
+ 106.521077421783744,
+ 29.592599527548728,
+ 0.0
+ ],
+ [
+ 106.520181200371127,
+ 29.592531001709126,
+ 0.0
+ ],
+ [
+ 106.51928497895851,
+ 29.592599527548728,
+ 0.0
+ ],
+ [
+ 106.518415985237354,
+ 29.592803023213346,
+ 0.0
+ ],
+ [
+ 106.517600620026698,
+ 29.593135306364086,
+ 0.0
+ ],
+ [
+ 106.516863655473287,
+ 29.593586281931312,
+ 0.0
+ ],
+ [
+ 106.516227482641384,
+ 29.594142248705186,
+ 0.0
+ ],
+ [
+ 106.515711431320028,
+ 29.594786315464631,
+ 0.0
+ ],
+ [
+ 106.515331182697352,
+ 29.595498914021864,
+ 0.0
+ ],
+ [
+ 106.51509829274741,
+ 29.596258393616374,
+ 0.0
+ ],
+ [
+ 106.515019840828927,
+ 29.597041678619313,
+ 0.0
+ ],
+ [
+ 106.515098214206915,
+ 29.597824969581332,
+ 0.0
+ ],
+ [
+ 106.515331035089503,
+ 29.598584466334341,
+ 0.0
+ ],
+ [
+ 106.51571123244851,
+ 29.59929709117991,
+ 0.0
+ ],
+ [
+ 106.516227256493039,
+ 29.599941190186779,
+ 0.0
+ ],
+ [
+ 106.516863429324943,
+ 29.60049719127764,
+ 0.0
+ ],
+ [
+ 106.517600421155166,
+ 29.60094819909229,
+ 0.0
+ ],
+ [
+ 106.518415837629504,
+ 29.601280508531371,
+ 0.0
+ ],
+ [
+ 106.519284900418015,
+ 29.60148402135448,
+ 0.0
+ ],
+ [
+ 106.520181200371127,
+ 29.601552553153166,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001308,
+ "name": "Qianjiang Wulingshan Airport",
+ "country": "CN",
+ "city": "Qianjiang",
+ "height": 500,
+ "level": 2,
+ "lat": "29.513915",
+ "lng": "108.83127",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.83127,
+ 29.964982860473011,
+ 500.0
+ ],
+ [
+ 108.921217293092354,
+ 29.958099931222261,
+ 500.0
+ ],
+ [
+ 109.00839557306017,
+ 29.937663029276525,
+ 500.0
+ ],
+ [
+ 109.090124413596499,
+ 29.90430103132709,
+ 500.0
+ ],
+ [
+ 109.163897303785063,
+ 29.859039713089842,
+ 500.0
+ ],
+ [
+ 109.227460635741608,
+ 29.803269083514952,
+ 500.0
+ ],
+ [
+ 109.278883602845482,
+ 29.738699329220374,
+ 500.0
+ ],
+ [
+ 109.316616721735144,
+ 29.667306938149469,
+ 500.0
+ ],
+ [
+ 109.339537239476243,
+ 29.591272877894319,
+ 500.0
+ ],
+ [
+ 109.346980277377298,
+ 29.512914922770932,
+ 500.0
+ ],
+ [
+ 109.338755151934521,
+ 29.434616352119242,
+ 500.0
+ ],
+ [
+ 109.315146865077324,
+ 29.358753284058,
+ 500.0
+ ],
+ [
+ 109.276903243752017,
+ 29.287622872323197,
+ 500.0
+ ],
+ [
+ 109.225208617398863,
+ 29.223374490028942,
+ 500.0
+ ],
+ [
+ 109.161645245989121,
+ 29.167945865586475,
+ 500.0
+ ],
+ [
+ 109.088143954604021,
+ 29.123005934747724,
+ 500.0
+ ],
+ [
+ 109.006925602801374,
+ 29.08990593972571,
+ 500.0
+ ],
+ [
+ 108.920435131402868,
+ 29.069640050719777,
+ 500.0
+ ],
+ [
+ 108.83127,
+ 29.0628165141339,
+ 500.0
+ ],
+ [
+ 108.742104868597139,
+ 29.069640050719777,
+ 500.0
+ ],
+ [
+ 108.655614397198633,
+ 29.08990593972571,
+ 500.0
+ ],
+ [
+ 108.574396045395986,
+ 29.123005934747724,
+ 500.0
+ ],
+ [
+ 108.500894754010886,
+ 29.167945865586475,
+ 500.0
+ ],
+ [
+ 108.437331382601144,
+ 29.223374490028942,
+ 500.0
+ ],
+ [
+ 108.38563675624799,
+ 29.287622872323197,
+ 500.0
+ ],
+ [
+ 108.347393134922683,
+ 29.358753284058,
+ 500.0
+ ],
+ [
+ 108.323784848065486,
+ 29.434616352119242,
+ 500.0
+ ],
+ [
+ 108.315559722622709,
+ 29.512914922770932,
+ 500.0
+ ],
+ [
+ 108.323002760523764,
+ 29.591272877894319,
+ 500.0
+ ],
+ [
+ 108.345923278264863,
+ 29.667306938149469,
+ 500.0
+ ],
+ [
+ 108.383656397154525,
+ 29.738699329220374,
+ 500.0
+ ],
+ [
+ 108.435079364258399,
+ 29.803269083514952,
+ 500.0
+ ],
+ [
+ 108.498642696214944,
+ 29.859039713089842,
+ 500.0
+ ],
+ [
+ 108.572415586403508,
+ 29.90430103132709,
+ 500.0
+ ],
+ [
+ 108.654144426939837,
+ 29.937663029276525,
+ 500.0
+ ],
+ [
+ 108.741322706907653,
+ 29.958099931222261,
+ 500.0
+ ],
+ [
+ 108.83127,
+ 29.964982860473011,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2656,
+ "name": "Qianjiang Wulingshan Airport",
+ "country": "CN",
+ "city": "Qianjiang",
+ "height": 0,
+ "level": 2,
+ "lat": "29.4739070623946",
+ "lng": "108.811280467988",
+ "radius": 13126,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.77526627899999,
+ 29.4597593276,
+ 0.0
+ ],
+ [
+ 108.720242975,
+ 29.3864513583,
+ 0.0
+ ],
+ [
+ 108.79069391,
+ 29.357229054899999,
+ 0.0
+ ],
+ [
+ 108.819039647,
+ 29.4389014349,
+ 0.0
+ ],
+ [
+ 108.85480744,
+ 29.4434428703,
+ 0.0
+ ],
+ [
+ 108.87129552099999,
+ 29.451770646100002,
+ 0.0
+ ],
+ [
+ 108.89425305899999,
+ 29.477918396300002,
+ 0.0
+ ],
+ [
+ 108.910806826,
+ 29.525084992899998,
+ 0.0
+ ],
+ [
+ 108.908459109,
+ 29.541557060799999,
+ 0.0
+ ],
+ [
+ 108.9012896,
+ 29.556938918699998,
+ 0.0
+ ],
+ [
+ 108.889785182,
+ 29.5701815991,
+ 0.0
+ ],
+ [
+ 108.77526627899999,
+ 29.4597593276,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2656,
+ "name": "Qianjiang Wulingshan Airport",
+ "country": "CN",
+ "city": "Qianjiang",
+ "height": 0,
+ "level": 2,
+ "lat": "29.5521510463676",
+ "lng": "108.859293516967",
+ "radius": 13102,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.944749099,
+ 29.643600073399998,
+ 0.0
+ ],
+ [
+ 108.872589041,
+ 29.6694135955,
+ 0.0
+ ],
+ [
+ 108.844304733,
+ 29.587771047499999,
+ 0.0
+ ],
+ [
+ 108.811615919,
+ 29.585289276899999,
+ 0.0
+ ],
+ [
+ 108.794384685,
+ 29.5781516469,
+ 0.0
+ ],
+ [
+ 108.779867815,
+ 29.567377049699999,
+ 0.0
+ ],
+ [
+ 108.757397456,
+ 29.533715084200001,
+ 0.0
+ ],
+ [
+ 108.750900465,
+ 29.503557125899999,
+ 0.0
+ ],
+ [
+ 108.754488655,
+ 29.487255361700001,
+ 0.0
+ ],
+ [
+ 108.77526627899999,
+ 29.4597593276,
+ 0.0
+ ],
+ [
+ 108.889785182,
+ 29.5701815991,
+ 0.0
+ ],
+ [
+ 108.944749099,
+ 29.643600073399998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2656,
+ "name": "Qianjiang Wulingshan Airport",
+ "country": "CN",
+ "city": "Qianjiang",
+ "height": 120,
+ "level": 2,
+ "lat": "29.5153762898007",
+ "lng": "108.830998844732",
+ "radius": 23413,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.827165673,
+ 29.725910242299999,
+ 120.0
+ ],
+ [
+ 109.015681964,
+ 29.6515414566,
+ 120.0
+ ],
+ [
+ 108.834440059,
+ 29.304837308700002,
+ 120.0
+ ],
+ [
+ 108.646568468,
+ 29.379206095099999,
+ 120.0
+ ],
+ [
+ 108.827165673,
+ 29.725910242299999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000023,
+ "name": "Sanhe airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "29.2685902338707",
+ "lng": "113.281680095073",
+ "radius": 13325,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.258435167,
+ 29.2388564743,
+ 0.0
+ ],
+ [
+ 113.244134555,
+ 29.153320900299999,
+ 0.0
+ ],
+ [
+ 113.319779646,
+ 29.153459465400001,
+ 0.0
+ ],
+ [
+ 113.305078956,
+ 29.2389442156,
+ 0.0
+ ],
+ [
+ 113.32420383199999,
+ 29.245841767600002,
+ 0.0
+ ],
+ [
+ 113.350594274,
+ 29.269360564900001,
+ 0.0
+ ],
+ [
+ 113.357691484,
+ 29.284761130100001,
+ 0.0
+ ],
+ [
+ 113.359978314,
+ 29.301239111499999,
+ 0.0
+ ],
+ [
+ 113.35715721699999,
+ 29.342475806,
+ 0.0
+ ],
+ [
+ 113.337770715,
+ 29.370719794399999,
+ 0.0
+ ],
+ [
+ 113.304767578,
+ 29.3867248705,
+ 0.0
+ ],
+ [
+ 113.258435167,
+ 29.2388564743,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000023,
+ "name": "Sanhe airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "29.3570001345357",
+ "lng": "113.281467301968",
+ "radius": 13325,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.31911967,
+ 29.472263437199999,
+ 0.0
+ ],
+ [
+ 113.24326024,
+ 29.472124842100001,
+ 0.0
+ ],
+ [
+ 113.258035379,
+ 29.38664181,
+ 0.0
+ ],
+ [
+ 113.238808366,
+ 29.379693450400001,
+ 0.0
+ ],
+ [
+ 113.212449548,
+ 29.356123436800001,
+ 0.0
+ ],
+ [
+ 113.20539179399999,
+ 29.340707363899998,
+ 0.0
+ ],
+ [
+ 113.20315309199999,
+ 29.3242242671,
+ 0.0
+ ],
+ [
+ 113.206040784,
+ 29.2830533331,
+ 0.0
+ ],
+ [
+ 113.225456748,
+ 29.254833445799999,
+ 0.0
+ ],
+ [
+ 113.258435167,
+ 29.2388564743,
+ 0.0
+ ],
+ [
+ 113.304767578,
+ 29.3867248705,
+ 0.0
+ ],
+ [
+ 113.31911967,
+ 29.472263437199999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000023,
+ "name": "Sanhe airport",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "29.312792999071",
+ "lng": "113.281573186705",
+ "radius": 23525,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.177780336,
+ 29.504064267499999,
+ 120.0
+ ],
+ [
+ 113.384444697,
+ 29.504441704200001,
+ 120.0
+ ],
+ [
+ 113.384979321,
+ 29.121442474399998,
+ 120.0
+ ],
+ [
+ 113.17908916,
+ 29.121065037699999,
+ 120.0
+ ],
+ [
+ 113.177780336,
+ 29.504064267499999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001319,
+ "name": "Sanhe airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "29.324429",
+ "lng": "113.281546",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.281546,
+ 29.775509759954211,
+ 500.0
+ ],
+ [
+ 113.371323526461154,
+ 29.768626866908132,
+ 500.0
+ ],
+ [
+ 113.458337541922404,
+ 29.74819005124569,
+ 500.0
+ ],
+ [
+ 113.53991291240574,
+ 29.714828125988038,
+ 500.0
+ ],
+ [
+ 113.613548011562415,
+ 29.66956677136552,
+ 500.0
+ ],
+ [
+ 113.676993532902372,
+ 29.613795883485093,
+ 500.0
+ ],
+ [
+ 113.728322243828543,
+ 29.549225536238435,
+ 500.0
+ ],
+ [
+ 113.765987400562935,
+ 29.477832123142992,
+ 500.0
+ ],
+ [
+ 113.788868088205362,
+ 29.4017965521676,
+ 500.0
+ ],
+ [
+ 113.79630033718189,
+ 29.32343658546575,
+ 500.0
+ ],
+ [
+ 113.788093453663905,
+ 29.245135544823018,
+ 500.0
+ ],
+ [
+ 113.76453155116242,
+ 29.169269646076685,
+ 500.0
+ ],
+ [
+ 113.726360757071745,
+ 29.098136189960751,
+ 500.0
+ ],
+ [
+ 113.674762975960917,
+ 29.033884733839042,
+ 500.0
+ ],
+ [
+ 113.611317415776355,
+ 28.978453210892404,
+ 500.0
+ ],
+ [
+ 113.537951327290955,
+ 28.933510762593333,
+ 500.0
+ ],
+ [
+ 113.45688158067334,
+ 28.900408817600656,
+ 500.0
+ ],
+ [
+ 113.370548818915736,
+ 28.880141694644166,
+ 500.0
+ ],
+ [
+ 113.281546,
+ 28.87331773574417,
+ 500.0
+ ],
+ [
+ 113.192543181084275,
+ 28.880141694644166,
+ 500.0
+ ],
+ [
+ 113.106210419326672,
+ 28.900408817600656,
+ 500.0
+ ],
+ [
+ 113.025140672709057,
+ 28.933510762593333,
+ 500.0
+ ],
+ [
+ 112.951774584223656,
+ 28.978453210892404,
+ 500.0
+ ],
+ [
+ 112.888329024039095,
+ 29.033884733839042,
+ 500.0
+ ],
+ [
+ 112.836731242928266,
+ 29.098136189960751,
+ 500.0
+ ],
+ [
+ 112.798560448837591,
+ 29.169269646076685,
+ 500.0
+ ],
+ [
+ 112.774998546336107,
+ 29.245135544823018,
+ 500.0
+ ],
+ [
+ 112.766791662818122,
+ 29.32343658546575,
+ 500.0
+ ],
+ [
+ 112.77422391179465,
+ 29.4017965521676,
+ 500.0
+ ],
+ [
+ 112.797104599437077,
+ 29.477832123142992,
+ 500.0
+ ],
+ [
+ 112.834769756171468,
+ 29.549225536238435,
+ 500.0
+ ],
+ [
+ 112.886098467097639,
+ 29.613795883485093,
+ 500.0
+ ],
+ [
+ 112.949543988437597,
+ 29.66956677136552,
+ 500.0
+ ],
+ [
+ 113.023179087594272,
+ 29.714828125988038,
+ 500.0
+ ],
+ [
+ 113.104754458077608,
+ 29.74819005124569,
+ 500.0
+ ],
+ [
+ 113.191768473538858,
+ 29.768626866908132,
+ 500.0
+ ],
+ [
+ 113.281546,
+ 29.775509759954211,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045029,
+ "name": "九江庐山机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "29.481108",
+ "lng": "115.807864",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.807864,
+ 29.932178097462245,
+ 500.0
+ ],
+ [
+ 115.897781783890792,
+ 29.925295174487818,
+ 500.0
+ ],
+ [
+ 115.984931511009393,
+ 29.904858287498488,
+ 500.0
+ ],
+ [
+ 116.066633674939496,
+ 29.871496302144042,
+ 500.0
+ ],
+ [
+ 116.140382613787892,
+ 29.82623497758172,
+ 500.0
+ ],
+ [
+ 116.203925467339133,
+ 29.770464303193226,
+ 500.0
+ ],
+ [
+ 116.255332050224567,
+ 29.705894446048838,
+ 500.0
+ ],
+ [
+ 116.293053355307194,
+ 29.634501877718382,
+ 500.0
+ ],
+ [
+ 116.315966949182794,
+ 29.558467555456172,
+ 500.0
+ ],
+ [
+ 116.323408111234798,
+ 29.480109251471124,
+ 500.0
+ ],
+ [
+ 116.315186156220562,
+ 29.401810252465857,
+ 500.0
+ ],
+ [
+ 116.291585931697568,
+ 29.325946693506509,
+ 500.0
+ ],
+ [
+ 116.25335496923951,
+ 29.254815753821472,
+ 500.0
+ ],
+ [
+ 116.201677176823424,
+ 29.190566838476311,
+ 500.0
+ ],
+ [
+ 116.138134283925083,
+ 29.135137711391309,
+ 500.0
+ ],
+ [
+ 116.064656494324069,
+ 29.090197343991612,
+ 500.0
+ ],
+ [
+ 115.983463974104282,
+ 29.057097010820662,
+ 500.0
+ ],
+ [
+ 115.897000916980176,
+ 29.036830907833263,
+ 500.0
+ ],
+ [
+ 115.807864,
+ 29.030007298013295,
+ 500.0
+ ],
+ [
+ 115.718727083019814,
+ 29.036830907833263,
+ 500.0
+ ],
+ [
+ 115.632264025895708,
+ 29.057097010820662,
+ 500.0
+ ],
+ [
+ 115.551071505675921,
+ 29.090197343991612,
+ 500.0
+ ],
+ [
+ 115.477593716074907,
+ 29.135137711391309,
+ 500.0
+ ],
+ [
+ 115.414050823176566,
+ 29.190566838476311,
+ 500.0
+ ],
+ [
+ 115.36237303076048,
+ 29.254815753821472,
+ 500.0
+ ],
+ [
+ 115.324142068302422,
+ 29.325946693506509,
+ 500.0
+ ],
+ [
+ 115.300541843779428,
+ 29.401810252465857,
+ 500.0
+ ],
+ [
+ 115.292319888765192,
+ 29.480109251471124,
+ 500.0
+ ],
+ [
+ 115.299761050817196,
+ 29.558467555456172,
+ 500.0
+ ],
+ [
+ 115.322674644692796,
+ 29.634501877718382,
+ 500.0
+ ],
+ [
+ 115.360395949775423,
+ 29.705894446048838,
+ 500.0
+ ],
+ [
+ 115.411802532660857,
+ 29.770464303193226,
+ 500.0
+ ],
+ [
+ 115.475345386212098,
+ 29.82623497758172,
+ 500.0
+ ],
+ [
+ 115.549094325060494,
+ 29.871496302144042,
+ 500.0
+ ],
+ [
+ 115.630796488990597,
+ 29.904858287498488,
+ 500.0
+ ],
+ [
+ 115.717946216109198,
+ 29.925295174487818,
+ 500.0
+ ],
+ [
+ 115.807864,
+ 29.932178097462245,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045028,
+ "name": "九江庐山机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "29.4423986988079",
+ "lng": "115.770264829951",
+ "radius": 13423,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.73014231,
+ 29.4309230852,
+ 0.0
+ ],
+ [
+ 115.658082526,
+ 29.371524376,
+ 0.0
+ ],
+ [
+ 115.7176765,
+ 29.330710229899999,
+ 0.0
+ ],
+ [
+ 115.766865894,
+ 29.405791708700001,
+ 0.0
+ ],
+ [
+ 115.786834726,
+ 29.400867718099999,
+ 0.0
+ ],
+ [
+ 115.824302632,
+ 29.405081634,
+ 0.0
+ ],
+ [
+ 115.840829605,
+ 29.413341266100002,
+ 0.0
+ ],
+ [
+ 115.872190625,
+ 29.444797280900001,
+ 0.0
+ ],
+ [
+ 115.887661605,
+ 29.476394988599999,
+ 0.0
+ ],
+ [
+ 115.882674083,
+ 29.509019901399999,
+ 0.0
+ ],
+ [
+ 115.87311329,
+ 29.5233823461,
+ 0.0
+ ],
+ [
+ 115.73014231,
+ 29.4309230852,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045028,
+ "name": "九江庐山机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "29.5118761624537",
+ "lng": "115.833021580044",
+ "radius": 13424,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.945347955,
+ 29.582775924,
+ 0.0
+ ],
+ [
+ 115.885634349,
+ 29.623596943799999,
+ 0.0
+ ],
+ [
+ 115.83630364299999,
+ 29.548564042,
+ 0.0
+ ],
+ [
+ 115.797177671,
+ 29.5535214941,
+ 0.0
+ ],
+ [
+ 115.77874062399999,
+ 29.5492479041,
+ 0.0
+ ],
+ [
+ 115.748701072,
+ 29.529243023700001,
+ 0.0
+ ],
+ [
+ 115.720361396,
+ 29.4939322233,
+ 0.0
+ ],
+ [
+ 115.715490821,
+ 29.477884597399999,
+ 0.0
+ ],
+ [
+ 115.715558031,
+ 29.4612864614,
+ 0.0
+ ],
+ [
+ 115.73014231,
+ 29.4309230852,
+ 0.0
+ ],
+ [
+ 115.87311329,
+ 29.5233823461,
+ 0.0
+ ],
+ [
+ 115.945347955,
+ 29.582775924,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045028,
+ "name": "九江庐山机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "29.4770514596128",
+ "lng": "115.801765410111",
+ "radius": 23616,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.856993478,
+ 29.683940430100002,
+ 120.0
+ ],
+ [
+ 116.01965844599999,
+ 29.572773005599998,
+ 120.0
+ ],
+ [
+ 115.746206196,
+ 29.270252639599999,
+ 120.0
+ ],
+ [
+ 115.584025978,
+ 29.3814200648,
+ 120.0
+ ],
+ [
+ 115.856993478,
+ 29.683940430100002,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001401,
+ "name": "Jingdezhen Airport",
+ "country": "CN",
+ "city": "Jingdezhen",
+ "height": 500,
+ "level": 2,
+ "lat": "29.33906",
+ "lng": "117.175876",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.175876,
+ 29.790139765735677,
+ 500.0
+ ],
+ [
+ 117.265666577054162,
+ 29.783256869897887,
+ 500.0
+ ],
+ [
+ 117.352693220120202,
+ 29.762820047581407,
+ 500.0
+ ],
+ [
+ 117.434280388362367,
+ 29.729458116714831,
+ 500.0
+ ],
+ [
+ 117.507926079925525,
+ 29.684196764888121,
+ 500.0
+ ],
+ [
+ 117.571380657651048,
+ 29.628425896905913,
+ 500.0
+ ],
+ [
+ 117.622716614197131,
+ 29.563855595348802,
+ 500.0
+ ],
+ [
+ 117.660386995195921,
+ 29.4924622610129,
+ 500.0
+ ],
+ [
+ 117.683270744470263,
+ 29.416426806463523,
+ 500.0
+ ],
+ [
+ 117.690703822584069,
+ 29.338066994792683,
+ 500.0
+ ],
+ [
+ 117.68249553653034,
+ 29.259766144515439,
+ 500.0
+ ],
+ [
+ 117.65893006814359,
+ 29.183900463938127,
+ 500.0
+ ],
+ [
+ 117.620753675492523,
+ 29.112767242465136,
+ 500.0
+ ],
+ [
+ 117.569148449571671,
+ 29.048516023259005,
+ 500.0
+ ],
+ [
+ 117.505693832954918,
+ 28.993084723717214,
+ 500.0
+ ],
+ [
+ 117.432317351181723,
+ 28.948142469455309,
+ 500.0
+ ],
+ [
+ 117.351236181085042,
+ 28.915040674760572,
+ 500.0
+ ],
+ [
+ 117.264891296022654,
+ 28.894773646913713,
+ 500.0
+ ],
+ [
+ 117.175876,
+ 28.88794972056462,
+ 500.0
+ ],
+ [
+ 117.086860703977351,
+ 28.894773646913713,
+ 500.0
+ ],
+ [
+ 117.000515818914963,
+ 28.915040674760572,
+ 500.0
+ ],
+ [
+ 116.919434648818282,
+ 28.948142469455309,
+ 500.0
+ ],
+ [
+ 116.846058167045086,
+ 28.993084723717214,
+ 500.0
+ ],
+ [
+ 116.782603550428334,
+ 29.048516023259005,
+ 500.0
+ ],
+ [
+ 116.730998324507482,
+ 29.112767242465136,
+ 500.0
+ ],
+ [
+ 116.692821931856415,
+ 29.183900463938127,
+ 500.0
+ ],
+ [
+ 116.669256463469665,
+ 29.259766144515439,
+ 500.0
+ ],
+ [
+ 116.661048177415935,
+ 29.338066994792683,
+ 500.0
+ ],
+ [
+ 116.668481255529741,
+ 29.416426806463523,
+ 500.0
+ ],
+ [
+ 116.691365004804084,
+ 29.4924622610129,
+ 500.0
+ ],
+ [
+ 116.729035385802874,
+ 29.563855595348802,
+ 500.0
+ ],
+ [
+ 116.780371342348957,
+ 29.628425896905913,
+ 500.0
+ ],
+ [
+ 116.84382592007448,
+ 29.684196764888121,
+ 500.0
+ ],
+ [
+ 116.917471611637637,
+ 29.729458116714831,
+ 500.0
+ ],
+ [
+ 116.999058779879803,
+ 29.762820047581407,
+ 500.0
+ ],
+ [
+ 117.086085422945843,
+ 29.783256869897887,
+ 500.0
+ ],
+ [
+ 117.175876,
+ 29.790139765735677,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001448,
+ "name": "Tunxi International Airport",
+ "country": "CN",
+ "city": "Huangshan",
+ "height": 500,
+ "level": 2,
+ "lat": "29.735",
+ "lng": "118.255",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.255,
+ 30.186052746347045,
+ 500.0
+ ],
+ [
+ 118.345147432318555,
+ 30.179169774702942,
+ 500.0
+ ],
+ [
+ 118.432519365693182,
+ 30.158732771743615,
+ 500.0
+ ],
+ [
+ 118.514429135231779,
+ 30.125370688765944,
+ 500.0
+ ],
+ [
+ 118.588364471964823,
+ 30.080109413368533,
+ 500.0
+ ],
+ [
+ 118.652066697215062,
+ 30.024339086717145,
+ 500.0
+ ],
+ [
+ 118.703600790785927,
+ 29.959770027500106,
+ 500.0
+ ],
+ [
+ 118.741414039176505,
+ 29.888378834279006,
+ 500.0
+ ],
+ [
+ 118.764381521896539,
+ 29.81234654447746,
+ 500.0
+ ],
+ [
+ 118.77183728761112,
+ 29.733990946629,
+ 500.0
+ ],
+ [
+ 118.763590664011772,
+ 29.655695270308307,
+ 500.0
+ ],
+ [
+ 118.739927699429501,
+ 29.579835519113864,
+ 500.0
+ ],
+ [
+ 118.701598223599476,
+ 29.508708674534162,
+ 500.0
+ ],
+ [
+ 118.649789424081447,
+ 29.444463893804553,
+ 500.0
+ ],
+ [
+ 118.586087158654991,
+ 29.389038665430292,
+ 500.0
+ ],
+ [
+ 118.512426466315631,
+ 29.344101684154769,
+ 500.0
+ ],
+ [
+ 118.431032910263426,
+ 29.311003973771872,
+ 500.0
+ ],
+ [
+ 118.344356498927226,
+ 29.290739530483901,
+ 500.0
+ ],
+ [
+ 118.255,
+ 29.283916488686476,
+ 500.0
+ ],
+ [
+ 118.165643501072765,
+ 29.290739530483901,
+ 500.0
+ ],
+ [
+ 118.078967089736565,
+ 29.311003973771872,
+ 500.0
+ ],
+ [
+ 117.99757353368436,
+ 29.344101684154769,
+ 500.0
+ ],
+ [
+ 117.923912841345,
+ 29.389038665430292,
+ 500.0
+ ],
+ [
+ 117.860210575918543,
+ 29.444463893804553,
+ 500.0
+ ],
+ [
+ 117.808401776400515,
+ 29.508708674534162,
+ 500.0
+ ],
+ [
+ 117.77007230057049,
+ 29.579835519113864,
+ 500.0
+ ],
+ [
+ 117.746409335988218,
+ 29.655695270308307,
+ 500.0
+ ],
+ [
+ 117.738162712388871,
+ 29.733990946629,
+ 500.0
+ ],
+ [
+ 117.745618478103452,
+ 29.81234654447746,
+ 500.0
+ ],
+ [
+ 117.768585960823486,
+ 29.888378834279006,
+ 500.0
+ ],
+ [
+ 117.806399209214064,
+ 29.959770027500106,
+ 500.0
+ ],
+ [
+ 117.857933302784929,
+ 30.024339086717145,
+ 500.0
+ ],
+ [
+ 117.921635528035168,
+ 30.080109413368533,
+ 500.0
+ ],
+ [
+ 117.995570864768212,
+ 30.125370688765944,
+ 500.0
+ ],
+ [
+ 118.077480634306809,
+ 30.158732771743615,
+ 500.0
+ ],
+ [
+ 118.164852567681436,
+ 30.179169774702942,
+ 500.0
+ ],
+ [
+ 118.255,
+ 30.186052746347045,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2619,
+ "name": "Jingdezhen Airport",
+ "country": "CN",
+ "city": "Jingdezhen",
+ "height": 0,
+ "level": 2,
+ "lat": "29.3006661270301",
+ "lng": "117.151937143662",
+ "radius": 13215,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.105250506,
+ 29.2984302654,
+ 0.0
+ ],
+ [
+ 117.03356729799999,
+ 29.241816295300001,
+ 0.0
+ ],
+ [
+ 117.088627617,
+ 29.195434103499998,
+ 0.0
+ ],
+ [
+ 117.142050982,
+ 29.268786404099998,
+ 0.0
+ ],
+ [
+ 117.172923392,
+ 29.2653044286,
+ 0.0
+ ],
+ [
+ 117.20838978099999,
+ 29.2765327083,
+ 0.0
+ ],
+ [
+ 117.252963397,
+ 29.321449703599999,
+ 0.0
+ ],
+ [
+ 117.259068476,
+ 29.3371714178,
+ 0.0
+ ],
+ [
+ 117.26029897799999,
+ 29.353734963899999,
+ 0.0
+ ],
+ [
+ 117.248129718,
+ 29.384891992299998,
+ 0.0
+ ],
+ [
+ 117.105250506,
+ 29.2984302654,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2619,
+ "name": "Jingdezhen Airport",
+ "country": "CN",
+ "city": "Jingdezhen",
+ "height": 0,
+ "level": 2,
+ "lat": "29.3734982296596",
+ "lng": "117.20958003853",
+ "radius": 13113,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.32144220799999,
+ 29.439912096800001,
+ 0.0
+ ],
+ [
+ 117.26466736,
+ 29.4812252985,
+ 0.0
+ ],
+ [
+ 117.211330894,
+ 29.411224602699999,
+ 0.0
+ ],
+ [
+ 117.176636335,
+ 29.41543509,
+ 0.0
+ ],
+ [
+ 117.158105791,
+ 29.411569869800001,
+ 0.0
+ ],
+ [
+ 117.12753391,
+ 29.392234579299998,
+ 0.0
+ ],
+ [
+ 117.10920969599999,
+ 29.370578306100001,
+ 0.0
+ ],
+ [
+ 117.096157661,
+ 29.346443731099999,
+ 0.0
+ ],
+ [
+ 117.094292581,
+ 29.329925314499999,
+ 0.0
+ ],
+ [
+ 117.09739474,
+ 29.313548928300001,
+ 0.0
+ ],
+ [
+ 117.105250506,
+ 29.2984302654,
+ 0.0
+ ],
+ [
+ 117.248129718,
+ 29.384891992299998,
+ 0.0
+ ],
+ [
+ 117.32144220799999,
+ 29.439912096800001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2619,
+ "name": "Jingdezhen Airport",
+ "country": "CN",
+ "city": "Jingdezhen",
+ "height": 120,
+ "level": 2,
+ "lat": "29.3390461527981",
+ "lng": "117.175213457497",
+ "radius": 23642,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.232450177,
+ 29.545742112300001,
+ 120.0
+ ],
+ [
+ 117.393863282,
+ 29.433445235899999,
+ 120.0
+ ],
+ [
+ 117.11765039399999,
+ 29.132443639600002,
+ 120.0
+ ],
+ [
+ 116.956713213,
+ 29.2447405166,
+ 120.0
+ ],
+ [
+ 117.232450177,
+ 29.545742112300001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 15892,
+ "name": "Tunxi International Airport",
+ "country": "CN",
+ "city": "Huangshan",
+ "height": 0,
+ "level": 2,
+ "lat": "29.7047619020083",
+ "lng": "118.292071192318",
+ "radius": 13299,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.37665188,
+ 29.610407682,
+ 0.0
+ ],
+ [
+ 118.421380557,
+ 29.6637155564,
+ 0.0
+ ],
+ [
+ 118.336397484,
+ 29.703667638300001,
+ 0.0
+ ],
+ [
+ 118.340771685,
+ 29.732933631400002,
+ 0.0
+ ],
+ [
+ 118.336301503,
+ 29.749071680499998,
+ 0.0
+ ],
+ [
+ 118.32717076599999,
+ 29.7636548049,
+ 0.0
+ ],
+ [
+ 118.292311075,
+ 29.790704286699999,
+ 0.0
+ ],
+ [
+ 118.25839922599999,
+ 29.805453069,
+ 0.0
+ ],
+ [
+ 118.23931955,
+ 29.806640888899999,
+ 0.0
+ ],
+ [
+ 118.203332274,
+ 29.796246697600001,
+ 0.0
+ ],
+ [
+ 118.306565221,
+ 29.670399091499998,
+ 0.0
+ ],
+ [
+ 118.37665188,
+ 29.610407682,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 15892,
+ "name": "Tunxi International Airport",
+ "country": "CN",
+ "city": "Huangshan",
+ "height": 0,
+ "level": 2,
+ "lat": "29.7594136232703",
+ "lng": "118.215513226654",
+ "radius": 13239,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.203332274,
+ 29.796246697600001,
+ 0.0
+ ],
+ [
+ 118.138434249,
+ 29.857922671299999,
+ 0.0
+ ],
+ [
+ 118.08860895399999,
+ 29.804641874,
+ 0.0
+ ],
+ [
+ 118.17359725599999,
+ 29.763013313399998,
+ 0.0
+ ],
+ [
+ 118.17098090499999,
+ 29.732014922699999,
+ 0.0
+ ],
+ [
+ 118.17671421599999,
+ 29.716181044199999,
+ 0.0
+ ],
+ [
+ 118.186968551,
+ 29.702174718799998,
+ 0.0
+ ],
+ [
+ 118.222688971,
+ 29.6759628535,
+ 0.0
+ ],
+ [
+ 118.251134384,
+ 29.663449699800001,
+ 0.0
+ ],
+ [
+ 118.28900777699999,
+ 29.6638601368,
+ 0.0
+ ],
+ [
+ 118.306565221,
+ 29.670399091499998,
+ 0.0
+ ],
+ [
+ 118.203332274,
+ 29.796246697600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 15892,
+ "name": "Tunxi International Airport",
+ "country": "CN",
+ "city": "Huangshan",
+ "height": 120,
+ "level": 2,
+ "lat": "29.7331327280977",
+ "lng": "118.257284748512",
+ "radius": 23564,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.49460548499999,
+ 29.683901197499999,
+ 120.0
+ ],
+ [
+ 118.365616984,
+ 29.543274501500001,
+ 120.0
+ ],
+ [
+ 118.019899345,
+ 29.782553083,
+ 120.0
+ ],
+ [
+ 118.14919588799999,
+ 29.923179778600002,
+ 120.0
+ ],
+ [
+ 118.49460548499999,
+ 29.683901197499999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9030,
+ "name": "Yiwu Airport",
+ "country": "CN",
+ "city": "Yiwu",
+ "height": 0,
+ "level": 2,
+ "lat": "29.2982810005776",
+ "lng": "120.019517585602",
+ "radius": 13283,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.983636671,
+ 29.2796312127,
+ 0.0
+ ],
+ [
+ 119.93694874,
+ 29.202980512900002,
+ 0.0
+ ],
+ [
+ 120.012500026,
+ 29.1789724783,
+ 0.0
+ ],
+ [
+ 120.02919959099999,
+ 29.2673262763,
+ 0.0
+ ],
+ [
+ 120.057462026,
+ 29.2727666304,
+ 0.0
+ ],
+ [
+ 120.086836261,
+ 29.2934261485,
+ 0.0
+ ],
+ [
+ 120.107645999,
+ 29.336383987200001,
+ 0.0
+ ],
+ [
+ 120.111308826,
+ 29.366721721299999,
+ 0.0
+ ],
+ [
+ 120.106259442,
+ 29.3827260927,
+ 0.0
+ ],
+ [
+ 120.09662627,
+ 29.3970457502,
+ 0.0
+ ],
+ [
+ 119.983636671,
+ 29.2796312127,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9030,
+ "name": "Yiwu Airport",
+ "country": "CN",
+ "city": "Yiwu",
+ "height": 0,
+ "level": 2,
+ "lat": "29.3860038366316",
+ "lng": "120.047433483046",
+ "radius": 13347,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.124704647,
+ 29.4854003455,
+ 0.0
+ ],
+ [
+ 120.050792626,
+ 29.5060032777,
+ 0.0
+ ],
+ [
+ 120.034122319,
+ 29.419333702500001,
+ 0.0
+ ],
+ [
+ 120.00464900599999,
+ 29.413129765,
+ 0.0
+ ],
+ [
+ 119.988684645,
+ 29.4040693301,
+ 0.0
+ ],
+ [
+ 119.97595922799999,
+ 29.3917168141,
+ 0.0
+ ],
+ [
+ 119.95569587599999,
+ 29.3519712658,
+ 0.0
+ ],
+ [
+ 119.95324288499999,
+ 29.320443017599999,
+ 0.0
+ ],
+ [
+ 119.959127696,
+ 29.304657866900001,
+ 0.0
+ ],
+ [
+ 119.983636671,
+ 29.2796312127,
+ 0.0
+ ],
+ [
+ 120.09662627,
+ 29.3970457502,
+ 0.0
+ ],
+ [
+ 120.083064639,
+ 29.408703936799999,
+ 0.0
+ ],
+ [
+ 120.124704647,
+ 29.4854003455,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9030,
+ "name": "Yiwu Airport",
+ "country": "CN",
+ "city": "Yiwu",
+ "height": 120,
+ "level": 2,
+ "lat": "29.3433085304153",
+ "lng": "120.031811907811",
+ "radius": 23790,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.014574874,
+ 29.5567343855,
+ 120.0
+ ],
+ [
+ 120.20771165799999,
+ 29.492639693200001,
+ 120.0
+ ],
+ [
+ 120.04864551199999,
+ 29.129860372300001,
+ 120.0
+ ],
+ [
+ 119.85619497499999,
+ 29.193955065299999,
+ 120.0
+ ],
+ [
+ 120.014574874,
+ 29.5567343855,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001391,
+ "name": "Yiwu Airport",
+ "country": "CN",
+ "city": "Yiwu",
+ "height": 500,
+ "level": 2,
+ "lat": "29.344711",
+ "lng": "120.031813",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.031813,
+ 29.795790381652889,
+ 500.0
+ ],
+ [
+ 120.121608620229139,
+ 29.788907484736679,
+ 500.0
+ ],
+ [
+ 120.208640143014563,
+ 29.768470659849857,
+ 500.0
+ ],
+ [
+ 120.2902318702982,
+ 29.735108726816776,
+ 500.0
+ ],
+ [
+ 120.36388165511751,
+ 29.689847376070563,
+ 500.0
+ ],
+ [
+ 120.427339732532928,
+ 29.634076515775888,
+ 500.0
+ ],
+ [
+ 120.478678489032177,
+ 29.569506231869966,
+ 500.0
+ ],
+ [
+ 120.516350888868047,
+ 29.498112927960758,
+ 500.0
+ ],
+ [
+ 120.539235821268434,
+ 29.422077518389187,
+ 500.0
+ ],
+ [
+ 120.546669219799156,
+ 29.343717766609803,
+ 500.0
+ ],
+ [
+ 120.538460391769391,
+ 29.265416989874169,
+ 500.0
+ ],
+ [
+ 120.514893545414864,
+ 29.189551393579254,
+ 500.0
+ ],
+ [
+ 120.47671498930012,
+ 29.11841826275263,
+ 500.0
+ ],
+ [
+ 120.425106886459716,
+ 29.054167135070671,
+ 500.0
+ ],
+ [
+ 120.361648770135034,
+ 28.998735921833546,
+ 500.0
+ ],
+ [
+ 120.288268272044448,
+ 28.953793742531051,
+ 500.0
+ ],
+ [
+ 120.207182687526654,
+ 28.920692005898569,
+ 500.0
+ ],
+ [
+ 120.120833117604619,
+ 28.900425014793914,
+ 500.0
+ ],
+ [
+ 120.031813,
+ 28.893601101019708,
+ 500.0
+ ],
+ [
+ 119.942792882395381,
+ 28.900425014793914,
+ 500.0
+ ],
+ [
+ 119.856443312473345,
+ 28.920692005898569,
+ 500.0
+ ],
+ [
+ 119.775357727955551,
+ 28.953793742531051,
+ 500.0
+ ],
+ [
+ 119.701977229864966,
+ 28.998735921833546,
+ 500.0
+ ],
+ [
+ 119.638519113540283,
+ 29.054167135070671,
+ 500.0
+ ],
+ [
+ 119.586911010699879,
+ 29.11841826275263,
+ 500.0
+ ],
+ [
+ 119.548732454585135,
+ 29.189551393579254,
+ 500.0
+ ],
+ [
+ 119.525165608230608,
+ 29.265416989874169,
+ 500.0
+ ],
+ [
+ 119.516956780200843,
+ 29.343717766609803,
+ 500.0
+ ],
+ [
+ 119.524390178731565,
+ 29.422077518389187,
+ 500.0
+ ],
+ [
+ 119.547275111131952,
+ 29.498112927960758,
+ 500.0
+ ],
+ [
+ 119.584947510967822,
+ 29.569506231869966,
+ 500.0
+ ],
+ [
+ 119.636286267467071,
+ 29.634076515775888,
+ 500.0
+ ],
+ [
+ 119.69974434488249,
+ 29.689847376070563,
+ 500.0
+ ],
+ [
+ 119.773394129701799,
+ 29.735108726816776,
+ 500.0
+ ],
+ [
+ 119.854985856985436,
+ 29.768470659849857,
+ 500.0
+ ],
+ [
+ 119.94201737977086,
+ 29.788907484736679,
+ 500.0
+ ],
+ [
+ 120.031813,
+ 29.795790381652889,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001352,
+ "name": "Ningbo Lishe International Airport",
+ "country": "CN",
+ "city": "Ningbo",
+ "height": 500,
+ "level": 2,
+ "lat": "29.826666",
+ "lng": "121.461945",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.461945,
+ 30.277712459889045,
+ 500.0
+ ],
+ [
+ 121.552176069710356,
+ 30.270829470613485,
+ 500.0
+ ],
+ [
+ 121.63962893028642,
+ 30.250392425644797,
+ 500.0
+ ],
+ [
+ 121.721614309934751,
+ 30.217030307314634,
+ 500.0
+ ],
+ [
+ 121.795617533541531,
+ 30.171769049762371,
+ 500.0
+ ],
+ [
+ 121.859377803412968,
+ 30.115998849150952,
+ 500.0
+ ],
+ [
+ 121.910958338476007,
+ 30.051430079103181,
+ 500.0
+ ],
+ [
+ 121.948805075238212,
+ 29.980039384188977,
+ 500.0
+ ],
+ [
+ 121.971792187187191,
+ 29.904007830872043,
+ 500.0
+ ],
+ [
+ 121.97925327446562,
+ 29.825653213591366,
+ 500.0
+ ],
+ [
+ 121.970997669143543,
+ 29.747358741213198,
+ 500.0
+ ],
+ [
+ 121.947311856543465,
+ 29.671500369694421,
+ 500.0
+ ],
+ [
+ 121.908946503103621,
+ 29.600375008873826,
+ 500.0
+ ],
+ [
+ 121.857089990601594,
+ 29.536131726193144,
+ 500.0
+ ],
+ [
+ 121.793329680250039,
+ 29.480707910374409,
+ 500.0
+ ],
+ [
+ 121.719602372063122,
+ 29.435772155922756,
+ 500.0
+ ],
+ [
+ 121.63813559503383,
+ 29.402675395791341,
+ 500.0
+ ],
+ [
+ 121.551381475588983,
+ 29.3824115538185,
+ 500.0
+ ],
+ [
+ 121.461945,
+ 29.37558871781707,
+ 500.0
+ ],
+ [
+ 121.372508524411018,
+ 29.3824115538185,
+ 500.0
+ ],
+ [
+ 121.28575440496617,
+ 29.402675395791341,
+ 500.0
+ ],
+ [
+ 121.204287627936878,
+ 29.435772155922756,
+ 500.0
+ ],
+ [
+ 121.130560319749961,
+ 29.480707910374409,
+ 500.0
+ ],
+ [
+ 121.066800009398406,
+ 29.536131726193144,
+ 500.0
+ ],
+ [
+ 121.014943496896379,
+ 29.600375008873826,
+ 500.0
+ ],
+ [
+ 120.976578143456535,
+ 29.671500369694421,
+ 500.0
+ ],
+ [
+ 120.952892330856457,
+ 29.747358741213198,
+ 500.0
+ ],
+ [
+ 120.94463672553438,
+ 29.825653213591366,
+ 500.0
+ ],
+ [
+ 120.952097812812809,
+ 29.904007830872043,
+ 500.0
+ ],
+ [
+ 120.975084924761788,
+ 29.980039384188977,
+ 500.0
+ ],
+ [
+ 121.012931661523993,
+ 30.051430079103181,
+ 500.0
+ ],
+ [
+ 121.064512196587032,
+ 30.115998849150952,
+ 500.0
+ ],
+ [
+ 121.128272466458469,
+ 30.171769049762371,
+ 500.0
+ ],
+ [
+ 121.20227569006525,
+ 30.217030307314634,
+ 500.0
+ ],
+ [
+ 121.28426106971358,
+ 30.250392425644797,
+ 500.0
+ ],
+ [
+ 121.371713930289644,
+ 30.270829470613485,
+ 500.0
+ ],
+ [
+ 121.461945,
+ 30.277712459889045,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4208,
+ "name": "Ningbo Lishe International Airport",
+ "country": "CN",
+ "city": "Ningbo",
+ "height": 0,
+ "level": 2,
+ "lat": "29.8523198868625",
+ "lng": "121.418888472258",
+ "radius": 13474,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.401583151,
+ 29.884575955900001,
+ 0.0
+ ],
+ [
+ 121.328276637,
+ 29.9445914247,
+ 0.0
+ ],
+ [
+ 121.285303737,
+ 29.887898722700001,
+ 0.0
+ ],
+ [
+ 121.375311443,
+ 29.8495488119,
+ 0.0
+ ],
+ [
+ 121.374291285,
+ 29.819298755,
+ 0.0
+ ],
+ [
+ 121.380705425,
+ 29.803661343200002,
+ 0.0
+ ],
+ [
+ 121.391562772,
+ 29.7899964693,
+ 0.0
+ ],
+ [
+ 121.406122565,
+ 29.779234394900001,
+ 0.0
+ ],
+ [
+ 121.465959696,
+ 29.755780007599999,
+ 0.0
+ ],
+ [
+ 121.503508935,
+ 29.760321881500001,
+ 0.0
+ ],
+ [
+ 121.519997729,
+ 29.768725803599999,
+ 0.0
+ ],
+ [
+ 121.401583151,
+ 29.884575955900001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4208,
+ "name": "Ningbo Lishe International Airport",
+ "country": "CN",
+ "city": "Ningbo",
+ "height": 0,
+ "level": 2,
+ "lat": "29.7998458857133",
+ "lng": "121.501408046709",
+ "radius": 13470,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.593389118,
+ 29.708741882399998,
+ 0.0
+ ],
+ [
+ 121.636338721,
+ 29.768817918100002,
+ 0.0
+ ],
+ [
+ 121.54636204099999,
+ 29.802100598,
+ 0.0
+ ],
+ [
+ 121.548983839,
+ 29.8329667179,
+ 0.0
+ ],
+ [
+ 121.54327039,
+ 29.848807820800001,
+ 0.0
+ ],
+ [
+ 121.533022284,
+ 29.8628258536,
+ 0.0
+ ],
+ [
+ 121.51893688,
+ 29.874064563899999,
+ 0.0
+ ],
+ [
+ 121.45568207399999,
+ 29.897549384,
+ 0.0
+ ],
+ [
+ 121.436536425,
+ 29.897418153699999,
+ 0.0
+ ],
+ [
+ 121.401583151,
+ 29.884575955900001,
+ 0.0
+ ],
+ [
+ 121.519997729,
+ 29.768725803599999,
+ 0.0
+ ],
+ [
+ 121.593389118,
+ 29.708741882399998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4208,
+ "name": "Ningbo Lishe International Airport",
+ "country": "CN",
+ "city": "Ningbo",
+ "height": 120,
+ "level": 2,
+ "lat": "29.8263981201638",
+ "lng": "121.461480639172",
+ "radius": 23826,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.70826466299999,
+ 29.817874984,
+ 120.0
+ ],
+ [
+ 121.613792723,
+ 29.6578056213,
+ 120.0
+ ],
+ [
+ 121.21468815,
+ 29.835198397799999,
+ 120.0
+ ],
+ [
+ 121.309327933,
+ 29.995267760299999,
+ 120.0
+ ],
+ [
+ 121.70826466299999,
+ 29.817874984,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001349,
+ "name": "Zhoushan Airport",
+ "country": "CN",
+ "city": "Zhoushan",
+ "height": 500,
+ "level": 2,
+ "lat": "29.933374",
+ "lng": "122.359681",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.359681,
+ 30.38441312731209,
+ 500.0
+ ],
+ [
+ 122.450009918837964,
+ 30.37753011746759,
+ 500.0
+ ],
+ [
+ 122.53755745798307,
+ 30.357093023489973,
+ 500.0
+ ],
+ [
+ 122.619631295902366,
+ 30.323730863914736,
+ 500.0
+ ],
+ [
+ 122.693713942572728,
+ 30.278469627172822,
+ 500.0
+ ],
+ [
+ 122.757542121253337,
+ 30.222699573582588,
+ 500.0
+ ],
+ [
+ 122.809176990756754,
+ 30.158131140847527,
+ 500.0
+ ],
+ [
+ 122.847062908114694,
+ 30.086741027203889,
+ 500.0
+ ],
+ [
+ 122.870072986690232,
+ 30.010710332986537,
+ 500.0
+ ],
+ [
+ 122.877540301696484,
+ 29.932356859518126,
+ 500.0
+ ],
+ [
+ 122.869274190109806,
+ 29.854063791503904,
+ 500.0
+ ],
+ [
+ 122.845561648284601,
+ 29.778207029324072,
+ 500.0
+ ],
+ [
+ 122.807154321351646,
+ 29.707083399238332,
+ 500.0
+ ],
+ [
+ 122.755241988099144,
+ 29.642841863948082,
+ 500.0
+ ],
+ [
+ 122.691413768581526,
+ 29.587419695785702,
+ 500.0
+ ],
+ [
+ 122.617608523094319,
+ 29.542485372338209,
+ 500.0
+ ],
+ [
+ 122.536056080567491,
+ 29.509389720603881,
+ 500.0
+ ],
+ [
+ 122.44921104550906,
+ 29.489126580017938,
+ 500.0
+ ],
+ [
+ 122.359681,
+ 29.482303984061023,
+ 500.0
+ ],
+ [
+ 122.27015095449093,
+ 29.489126580017938,
+ 500.0
+ ],
+ [
+ 122.183305919432499,
+ 29.509389720603881,
+ 500.0
+ ],
+ [
+ 122.101753476905671,
+ 29.542485372338209,
+ 500.0
+ ],
+ [
+ 122.027948231418463,
+ 29.587419695785702,
+ 500.0
+ ],
+ [
+ 121.964120011900846,
+ 29.642841863948082,
+ 500.0
+ ],
+ [
+ 121.912207678648343,
+ 29.707083399238332,
+ 500.0
+ ],
+ [
+ 121.873800351715389,
+ 29.778207029324072,
+ 500.0
+ ],
+ [
+ 121.850087809890184,
+ 29.854063791503904,
+ 500.0
+ ],
+ [
+ 121.841821698303505,
+ 29.932356859518126,
+ 500.0
+ ],
+ [
+ 121.849289013309757,
+ 30.010710332986537,
+ 500.0
+ ],
+ [
+ 121.872299091885296,
+ 30.086741027203889,
+ 500.0
+ ],
+ [
+ 121.910185009243236,
+ 30.158131140847527,
+ 500.0
+ ],
+ [
+ 121.961819878746653,
+ 30.222699573582588,
+ 500.0
+ ],
+ [
+ 122.025648057427262,
+ 30.278469627172822,
+ 500.0
+ ],
+ [
+ 122.099730704097624,
+ 30.323730863914736,
+ 500.0
+ ],
+ [
+ 122.18180454201692,
+ 30.357093023489973,
+ 500.0
+ ],
+ [
+ 122.269352081162026,
+ 30.37753011746759,
+ 500.0
+ ],
+ [
+ 122.359681,
+ 30.38441312731209,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1564,
+ "name": "Zhoushan Airport",
+ "country": "CN",
+ "city": "Zhoushan",
+ "height": 0,
+ "level": 2,
+ "lat": "29.9780800216988",
+ "lng": "122.35779979675",
+ "radius": 13487,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.385521302,
+ 30.0969766646,
+ 0.0
+ ],
+ [
+ 122.30552846499999,
+ 30.090616850699998,
+ 0.0
+ ],
+ [
+ 122.329637335,
+ 30.007093768800001,
+ 0.0
+ ],
+ [
+ 122.312223216,
+ 29.998939288900001,
+ 0.0
+ ],
+ [
+ 122.28839224799999,
+ 29.9733038474,
+ 0.0
+ ],
+ [
+ 122.28300428199999,
+ 29.957375454400001,
+ 0.0
+ ],
+ [
+ 122.282559138,
+ 29.940781697199998,
+ 0.0
+ ],
+ [
+ 122.289481869,
+ 29.898210516900001,
+ 0.0
+ ],
+ [
+ 122.311201435,
+ 29.8712178235,
+ 0.0
+ ],
+ [
+ 122.345566331,
+ 29.857249945500001,
+ 0.0
+ ],
+ [
+ 122.379419097,
+ 30.011052173,
+ 0.0
+ ],
+ [
+ 122.385521302,
+ 30.0969766646,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1564,
+ "name": "Zhoushan Airport",
+ "country": "CN",
+ "city": "Zhoushan",
+ "height": 0,
+ "level": 2,
+ "lat": "29.8902284308079",
+ "lng": "122.367116001072",
+ "radius": 13487,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.345566331,
+ 29.857249945500001,
+ 0.0
+ ],
+ [
+ 122.339489197,
+ 29.7713266419,
+ 0.0
+ ],
+ [
+ 122.41925997,
+ 29.777685293299999,
+ 0.0
+ ],
+ [
+ 122.395261357,
+ 29.861210523099999,
+ 0.0
+ ],
+ [
+ 122.412575325,
+ 29.869303439500001,
+ 0.0
+ ],
+ [
+ 122.436451906,
+ 29.894889531800001,
+ 0.0
+ ],
+ [
+ 122.441885019,
+ 29.910805536400002,
+ 0.0
+ ],
+ [
+ 122.44238159299999,
+ 29.9273981945,
+ 0.0
+ ],
+ [
+ 122.435518651,
+ 29.9700417486,
+ 0.0
+ ],
+ [
+ 122.413818812,
+ 29.997059370599999,
+ 0.0
+ ],
+ [
+ 122.379419097,
+ 30.011052173,
+ 0.0
+ ],
+ [
+ 122.345566331,
+ 29.857249945500001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1564,
+ "name": "Zhoushan Airport",
+ "country": "CN",
+ "city": "Zhoushan",
+ "height": 120,
+ "level": 2,
+ "lat": "29.9341492619478",
+ "lng": "122.362434167122",
+ "radius": 23662,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.238538504,
+ 30.117935268099998,
+ 120.0
+ ],
+ [
+ 122.4456205,
+ 30.1343927512,
+ 120.0
+ ],
+ [
+ 122.48594801,
+ 29.7502857789,
+ 120.0
+ ],
+ [
+ 122.279663866,
+ 29.733828295599999,
+ 120.0
+ ],
+ [
+ 122.238538504,
+ 30.117935268099998,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287348,
+ "name": "Mahendranagar Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "28.959698",
+ "lng": "80.147443",
+ "radius": 756,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 80.147443,
+ 28.966518940449049,
+ 0.0
+ ],
+ [
+ 80.148789850299821,
+ 28.966415308347717,
+ 0.0
+ ],
+ [
+ 80.150095769388855,
+ 28.966107561451675,
+ 0.0
+ ],
+ [
+ 80.151321070677156,
+ 28.965605052219363,
+ 0.0
+ ],
+ [
+ 80.152428518884946,
+ 28.96492305178181,
+ 0.0
+ ],
+ [
+ 80.153384462035433,
+ 28.964082285618243,
+ 0.0
+ ],
+ [
+ 80.15415985428146,
+ 28.963108303431881,
+ 0.0
+ ],
+ [
+ 80.154731138448469,
+ 28.962030702418986,
+ 0.0
+ ],
+ [
+ 80.155080961478021,
+ 28.9608822275822,
+ 0.0
+ ],
+ [
+ 80.155198701073658,
+ 28.959697776471668,
+ 0.0
+ ],
+ [
+ 80.155080787621557,
+ 28.958513338632891,
+ 0.0
+ ],
+ [
+ 80.154730811705193,
+ 28.957364902010582,
+ 0.0
+ ],
+ [
+ 80.154159414061454,
+ 28.95628735954568,
+ 0.0
+ ],
+ [
+ 80.153383961435694,
+ 28.955313449179073,
+ 0.0
+ ],
+ [
+ 80.152428018285221,
+ 28.954472759444478,
+ 0.0
+ ],
+ [
+ 80.15132063045715,
+ 28.953790830826662,
+ 0.0
+ ],
+ [
+ 80.150095442645593,
+ 28.953288380142343,
+ 0.0
+ ],
+ [
+ 80.148789676443357,
+ 28.952980671460804,
+ 0.0
+ ],
+ [
+ 80.147443,
+ 28.952877052631226,
+ 0.0
+ ],
+ [
+ 80.146096323556634,
+ 28.952980671460804,
+ 0.0
+ ],
+ [
+ 80.144790557354398,
+ 28.953288380142343,
+ 0.0
+ ],
+ [
+ 80.143565369542841,
+ 28.953790830826662,
+ 0.0
+ ],
+ [
+ 80.14245798171477,
+ 28.954472759444478,
+ 0.0
+ ],
+ [
+ 80.141502038564298,
+ 28.955313449179073,
+ 0.0
+ ],
+ [
+ 80.140726585938538,
+ 28.95628735954568,
+ 0.0
+ ],
+ [
+ 80.140155188294798,
+ 28.957364902010582,
+ 0.0
+ ],
+ [
+ 80.139805212378434,
+ 28.958513338632891,
+ 0.0
+ ],
+ [
+ 80.139687298926333,
+ 28.959697776471668,
+ 0.0
+ ],
+ [
+ 80.13980503852197,
+ 28.9608822275822,
+ 0.0
+ ],
+ [
+ 80.140154861551522,
+ 28.962030702418986,
+ 0.0
+ ],
+ [
+ 80.140726145718531,
+ 28.963108303431881,
+ 0.0
+ ],
+ [
+ 80.141501537964558,
+ 28.964082285618243,
+ 0.0
+ ],
+ [
+ 80.142457481115045,
+ 28.96492305178181,
+ 0.0
+ ],
+ [
+ 80.143564929322835,
+ 28.965605052219363,
+ 0.0
+ ],
+ [
+ 80.144790230611136,
+ 28.966107561451675,
+ 0.0
+ ],
+ [
+ 80.14609614970017,
+ 28.966415308347717,
+ 0.0
+ ],
+ [
+ 80.147443,
+ 28.966518940449049,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285235,
+ "name": "Pantnagar Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "29.0334914673029",
+ "lng": "79.4754153543542",
+ "radius": 7237,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 79.440094150299998,
+ 29.043161308,
+ 0.0
+ ],
+ [
+ 79.512407206,
+ 29.034526905100002,
+ 0.0
+ ],
+ [
+ 79.5498447218,
+ 29.034936644399998,
+ 0.0
+ ],
+ [
+ 79.546671122700005,
+ 29.014656181,
+ 0.0
+ ],
+ [
+ 79.510737755199997,
+ 29.023834223600002,
+ 0.0
+ ],
+ [
+ 79.438423403100003,
+ 29.032468764600001,
+ 0.0
+ ],
+ [
+ 79.400986888800006,
+ 29.032051741499998,
+ 0.0
+ ],
+ [
+ 79.404148657299999,
+ 29.052332756799998,
+ 0.0
+ ],
+ [
+ 79.440094150299998,
+ 29.043161308,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30280546,
+ "name": "Dhangarhi Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "28.754968",
+ "lng": "80.583158",
+ "radius": 1071,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 80.583158,
+ 28.764631290531948,
+ 0.0
+ ],
+ [
+ 80.585062353644361,
+ 28.764484470122468,
+ 0.0
+ ],
+ [
+ 80.586908828881462,
+ 28.764048471150094,
+ 0.0
+ ],
+ [
+ 80.588641307790951,
+ 28.763336544655704,
+ 0.0
+ ],
+ [
+ 80.590207139707772,
+ 28.762370327424524,
+ 0.0
+ ],
+ [
+ 80.591558742212882,
+ 28.761179183928661,
+ 0.0
+ ],
+ [
+ 80.592655047553052,
+ 28.759799313324113,
+ 0.0
+ ],
+ [
+ 80.593462750462422,
+ 28.758272648729548,
+ 0.0
+ ],
+ [
+ 80.593957319471869,
+ 28.756645582331892,
+ 0.0
+ ],
+ [
+ 80.594123741056876,
+ 28.754967555149307,
+ 0.0
+ ],
+ [
+ 80.59395697416231,
+ 28.753289554377616,
+ 0.0
+ ],
+ [
+ 80.593462101492747,
+ 28.751662564027079,
+ 0.0
+ ],
+ [
+ 80.592654173198554,
+ 28.750136015943479,
+ 0.0
+ ],
+ [
+ 80.591557747933649,
+ 28.748756288260768,
+ 0.0
+ ],
+ [
+ 80.590206145428539,
+ 28.747565296859172,
+ 0.0
+ ],
+ [
+ 80.588640433436453,
+ 28.74659922254984,
+ 0.0
+ ],
+ [
+ 80.586908179911774,
+ 28.745887412566407,
+ 0.0
+ ],
+ [
+ 80.585062008334802,
+ 28.745451489641159,
+ 0.0
+ ],
+ [
+ 80.583158,
+ 28.745304695642574,
+ 0.0
+ ],
+ [
+ 80.581253991665193,
+ 28.745451489641159,
+ 0.0
+ ],
+ [
+ 80.579407820088221,
+ 28.745887412566407,
+ 0.0
+ ],
+ [
+ 80.577675566563542,
+ 28.74659922254984,
+ 0.0
+ ],
+ [
+ 80.576109854571456,
+ 28.747565296859172,
+ 0.0
+ ],
+ [
+ 80.574758252066346,
+ 28.748756288260768,
+ 0.0
+ ],
+ [
+ 80.573661826801441,
+ 28.750136015943479,
+ 0.0
+ ],
+ [
+ 80.572853898507248,
+ 28.751662564027079,
+ 0.0
+ ],
+ [
+ 80.572359025837684,
+ 28.753289554377616,
+ 0.0
+ ],
+ [
+ 80.572192258943119,
+ 28.754967555149307,
+ 0.0
+ ],
+ [
+ 80.572358680528126,
+ 28.756645582331892,
+ 0.0
+ ],
+ [
+ 80.572853249537573,
+ 28.758272648729548,
+ 0.0
+ ],
+ [
+ 80.573660952446943,
+ 28.759799313324113,
+ 0.0
+ ],
+ [
+ 80.574757257787113,
+ 28.761179183928661,
+ 0.0
+ ],
+ [
+ 80.576108860292223,
+ 28.762370327424524,
+ 0.0
+ ],
+ [
+ 80.577674692209044,
+ 28.763336544655704,
+ 0.0
+ ],
+ [
+ 80.579407171118532,
+ 28.764048471150094,
+ 0.0
+ ],
+ [
+ 80.581253646355634,
+ 28.764484470122468,
+ 0.0
+ ],
+ [
+ 80.583158,
+ 28.764631290531948,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282311,
+ "name": "Jumla Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "29.274402",
+ "lng": "82.193152",
+ "radius": 437,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 82.193152,
+ 29.278344607956114,
+ 0.0
+ ],
+ [
+ 82.193932888791252,
+ 29.278284708618237,
+ 0.0
+ ],
+ [
+ 82.194690048008354,
+ 29.278106830818395,
+ 0.0
+ ],
+ [
+ 82.19540046940952,
+ 29.277816379867232,
+ 0.0
+ ],
+ [
+ 82.196042565461752,
+ 29.277422181864189,
+ 0.0
+ ],
+ [
+ 82.196596825476732,
+ 29.276936215413034,
+ 0.0
+ ],
+ [
+ 82.197046408544708,
+ 29.276373247525758,
+ 0.0
+ ],
+ [
+ 82.197377655236949,
+ 29.275750384793561,
+ 0.0
+ ],
+ [
+ 82.197580502528922,
+ 29.275086553479383,
+ 0.0
+ ],
+ [
+ 82.197648789350367,
+ 29.274401924345266,
+ 0.0
+ ],
+ [
+ 82.197580443503838,
+ 29.273717299703502,
+ 0.0
+ ],
+ [
+ 82.197377544306079,
+ 29.273053481324546,
+ 0.0
+ ],
+ [
+ 82.197046259087955,
+ 29.27243063841021,
+ 0.0
+ ],
+ [
+ 82.196596655520779,
+ 29.271867694833169,
+ 0.0
+ ],
+ [
+ 82.196042395505813,
+ 29.271381754252417,
+ 0.0
+ ],
+ [
+ 82.195400319952768,
+ 29.270987580559591,
+ 0.0
+ ],
+ [
+ 82.194689937077484,
+ 29.270697149426308,
+ 0.0
+ ],
+ [
+ 82.193932829766183,
+ 29.270519284561672,
+ 0.0
+ ],
+ [
+ 82.193152,
+ 29.270459389716137,
+ 0.0
+ ],
+ [
+ 82.192371170233812,
+ 29.270519284561672,
+ 0.0
+ ],
+ [
+ 82.191614062922511,
+ 29.270697149426308,
+ 0.0
+ ],
+ [
+ 82.190903680047228,
+ 29.270987580559591,
+ 0.0
+ ],
+ [
+ 82.190261604494182,
+ 29.271381754252417,
+ 0.0
+ ],
+ [
+ 82.189707344479217,
+ 29.271867694833169,
+ 0.0
+ ],
+ [
+ 82.189257740912041,
+ 29.27243063841021,
+ 0.0
+ ],
+ [
+ 82.188926455693917,
+ 29.273053481324546,
+ 0.0
+ ],
+ [
+ 82.188723556496157,
+ 29.273717299703502,
+ 0.0
+ ],
+ [
+ 82.188655210649628,
+ 29.274401924345266,
+ 0.0
+ ],
+ [
+ 82.188723497471074,
+ 29.275086553479383,
+ 0.0
+ ],
+ [
+ 82.188926344763047,
+ 29.275750384793561,
+ 0.0
+ ],
+ [
+ 82.189257591455288,
+ 29.276373247525758,
+ 0.0
+ ],
+ [
+ 82.189707174523264,
+ 29.276936215413034,
+ 0.0
+ ],
+ [
+ 82.190261434538243,
+ 29.277422181864189,
+ 0.0
+ ],
+ [
+ 82.190903530590475,
+ 29.277816379867232,
+ 0.0
+ ],
+ [
+ 82.191613951991641,
+ 29.278106830818395,
+ 0.0
+ ],
+ [
+ 82.192371111208743,
+ 29.278284708618237,
+ 0.0
+ ],
+ [
+ 82.193152,
+ 29.278344607956114,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287156,
+ "name": "Tikapur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "28.522113",
+ "lng": "81.1234",
+ "radius": 574,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.1234,
+ 28.527292198272892,
+ 0.0
+ ],
+ [
+ 81.124418339672175,
+ 28.527213510826567,
+ 0.0
+ ],
+ [
+ 81.125405733185616,
+ 28.526979839704886,
+ 0.0
+ ],
+ [
+ 81.126332175198598,
+ 28.52659828586291,
+ 0.0
+ ],
+ [
+ 81.127169513352797,
+ 28.526080444116737,
+ 0.0
+ ],
+ [
+ 81.127892304016598,
+ 28.52544205066042,
+ 0.0
+ ],
+ [
+ 81.128478585562206,
+ 28.52470250470833,
+ 0.0
+ ],
+ [
+ 81.128910545658314,
+ 28.523884278824362,
+ 0.0
+ ],
+ [
+ 81.129175062303318,
+ 28.523012235883161,
+ 0.0
+ ],
+ [
+ 81.129264102182262,
+ 28.522112873443902,
+ 0.0
+ ],
+ [
+ 81.129174964285824,
+ 28.521213518517783,
+ 0.0
+ ],
+ [
+ 81.128910361445705,
+ 28.520341497209795,
+ 0.0
+ ],
+ [
+ 81.12847833737321,
+ 28.519523304469843,
+ 0.0
+ ],
+ [
+ 81.127892021786494,
+ 28.518783799174923,
+ 0.0
+ ],
+ [
+ 81.127169231122679,
+ 28.518145448985027,
+ 0.0
+ ],
+ [
+ 81.126331927009588,
+ 28.517627647896003,
+ 0.0
+ ],
+ [
+ 81.125405548972978,
+ 28.517246127198035,
+ 0.0
+ ],
+ [
+ 81.124418241654681,
+ 28.517012477709574,
+ 0.0
+ ],
+ [
+ 81.1234,
+ 28.516933797776385,
+ 0.0
+ ],
+ [
+ 81.122381758345327,
+ 28.517012477709574,
+ 0.0
+ ],
+ [
+ 81.12139445102703,
+ 28.517246127198035,
+ 0.0
+ ],
+ [
+ 81.12046807299042,
+ 28.517627647896003,
+ 0.0
+ ],
+ [
+ 81.119630768877329,
+ 28.518145448985027,
+ 0.0
+ ],
+ [
+ 81.118907978213514,
+ 28.518783799174923,
+ 0.0
+ ],
+ [
+ 81.118321662626798,
+ 28.519523304469843,
+ 0.0
+ ],
+ [
+ 81.117889638554303,
+ 28.520341497209795,
+ 0.0
+ ],
+ [
+ 81.117625035714184,
+ 28.521213518517783,
+ 0.0
+ ],
+ [
+ 81.117535897817746,
+ 28.522112873443902,
+ 0.0
+ ],
+ [
+ 81.117624937696689,
+ 28.523012235883161,
+ 0.0
+ ],
+ [
+ 81.117889454341693,
+ 28.523884278824362,
+ 0.0
+ ],
+ [
+ 81.118321414437801,
+ 28.52470250470833,
+ 0.0
+ ],
+ [
+ 81.11890769598341,
+ 28.52544205066042,
+ 0.0
+ ],
+ [
+ 81.11963048664721,
+ 28.526080444116737,
+ 0.0
+ ],
+ [
+ 81.120467824801409,
+ 28.52659828586291,
+ 0.0
+ ],
+ [
+ 81.121394266814391,
+ 28.526979839704886,
+ 0.0
+ ],
+ [
+ 81.122381660327832,
+ 28.527213510826567,
+ 0.0
+ ],
+ [
+ 81.1234,
+ 28.527292198272892,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287789,
+ "name": "Surkhet Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "28.585596",
+ "lng": "81.635819",
+ "radius": 647,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.635819,
+ 28.59143382188924,
+ 0.0
+ ],
+ [
+ 81.636967545673485,
+ 28.591345127433016,
+ 0.0
+ ],
+ [
+ 81.63808118772981,
+ 28.591081739432447,
+ 0.0
+ ],
+ [
+ 81.639126083760829,
+ 28.590651662042372,
+ 0.0
+ ],
+ [
+ 81.640070481449953,
+ 28.590067964852057,
+ 0.0
+ ],
+ [
+ 81.640885683794139,
+ 28.589348385542475,
+ 0.0
+ ],
+ [
+ 81.641546921283734,
+ 28.588514790653829,
+ 0.0
+ ],
+ [
+ 81.642034104511268,
+ 28.587592510881777,
+ 0.0
+ ],
+ [
+ 81.64233243434137,
+ 28.586609571135217,
+ 0.0
+ ],
+ [
+ 81.642432851130962,
+ 28.585595838783853,
+ 0.0
+ ],
+ [
+ 81.642332309403642,
+ 28.584582116003428,
+ 0.0
+ ],
+ [
+ 81.642033869705131,
+ 28.583599203815329,
+ 0.0
+ ],
+ [
+ 81.641546604930298,
+ 28.582676966265286,
+ 0.0
+ ],
+ [
+ 81.640885324050274,
+ 28.581843423169602,
+ 0.0
+ ],
+ [
+ 81.640070121706088,
+ 28.58112389897693,
+ 0.0
+ ],
+ [
+ 81.639125767407378,
+ 28.580540253579564,
+ 0.0
+ ],
+ [
+ 81.638080952923687,
+ 28.580110218411491,
+ 0.0
+ ],
+ [
+ 81.636967420735743,
+ 28.579846857969393,
+ 0.0
+ ],
+ [
+ 81.635819,
+ 28.579758173084112,
+ 0.0
+ ],
+ [
+ 81.634670579264252,
+ 28.579846857969393,
+ 0.0
+ ],
+ [
+ 81.633557047076309,
+ 28.580110218411491,
+ 0.0
+ ],
+ [
+ 81.632512232592617,
+ 28.580540253579564,
+ 0.0
+ ],
+ [
+ 81.631567878293907,
+ 28.58112389897693,
+ 0.0
+ ],
+ [
+ 81.630752675949722,
+ 28.581843423169602,
+ 0.0
+ ],
+ [
+ 81.630091395069698,
+ 28.582676966265286,
+ 0.0
+ ],
+ [
+ 81.629604130294865,
+ 28.583599203815329,
+ 0.0
+ ],
+ [
+ 81.629305690596354,
+ 28.584582116003428,
+ 0.0
+ ],
+ [
+ 81.629205148869033,
+ 28.585595838783853,
+ 0.0
+ ],
+ [
+ 81.629305565658626,
+ 28.586609571135217,
+ 0.0
+ ],
+ [
+ 81.629603895488728,
+ 28.587592510881777,
+ 0.0
+ ],
+ [
+ 81.630091078716262,
+ 28.588514790653829,
+ 0.0
+ ],
+ [
+ 81.630752316205857,
+ 28.589348385542475,
+ 0.0
+ ],
+ [
+ 81.631567518550042,
+ 28.590067964852057,
+ 0.0
+ ],
+ [
+ 81.632511916239167,
+ 28.590651662042372,
+ 0.0
+ ],
+ [
+ 81.633556812270186,
+ 28.591081739432447,
+ 0.0
+ ],
+ [
+ 81.63467045432651,
+ 28.591345127433016,
+ 0.0
+ ],
+ [
+ 81.635819,
+ 28.59143382188924,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295783,
+ "name": "Dolpa Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "28.985701",
+ "lng": "82.819099",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 82.819099,
+ 28.990212187323039,
+ 0.0
+ ],
+ [
+ 82.819989977287364,
+ 28.99014364932199,
+ 0.0
+ ],
+ [
+ 82.820853879244567,
+ 28.989940118073559,
+ 0.0
+ ],
+ [
+ 82.821664453626227,
+ 28.989607778526889,
+ 0.0
+ ],
+ [
+ 82.822397069297395,
+ 28.989156729807831,
+ 0.0
+ ],
+ [
+ 82.823029464908686,
+ 28.988600678222543,
+ 0.0
+ ],
+ [
+ 82.823542425439996,
+ 28.987956520627151,
+ 0.0
+ ],
+ [
+ 82.823920366038948,
+ 28.987243830843124,
+ 0.0
+ ],
+ [
+ 82.824151805414715,
+ 28.986484264745471,
+ 0.0
+ ],
+ [
+ 82.824229714420554,
+ 28.985700902120474,
+ 0.0
+ ],
+ [
+ 82.824151729266376,
+ 28.98491754530701,
+ 0.0
+ ],
+ [
+ 82.823920222926901,
+ 28.984157995943011,
+ 0.0
+ ],
+ [
+ 82.82354223262567,
+ 28.983445331796435,
+ 0.0
+ ],
+ [
+ 82.823029245648328,
+ 28.98280120565002,
+ 0.0
+ ],
+ [
+ 82.822396850037009,
+ 28.982245187532051,
+ 0.0
+ ],
+ [
+ 82.821664260811886,
+ 28.98179417026196,
+ 0.0
+ ],
+ [
+ 82.820853736132534,
+ 28.981461856352738,
+ 0.0
+ ],
+ [
+ 82.819989901139039,
+ 28.981258341837975,
+ 0.0
+ ],
+ [
+ 82.819099,
+ 28.981189809648455,
+ 0.0
+ ],
+ [
+ 82.81820809886095,
+ 28.981258341837975,
+ 0.0
+ ],
+ [
+ 82.817344263867454,
+ 28.981461856352738,
+ 0.0
+ ],
+ [
+ 82.816533739188102,
+ 28.98179417026196,
+ 0.0
+ ],
+ [
+ 82.815801149962979,
+ 28.982245187532051,
+ 0.0
+ ],
+ [
+ 82.81516875435166,
+ 28.98280120565002,
+ 0.0
+ ],
+ [
+ 82.814655767374319,
+ 28.983445331796435,
+ 0.0
+ ],
+ [
+ 82.814277777073087,
+ 28.984157995943011,
+ 0.0
+ ],
+ [
+ 82.814046270733613,
+ 28.98491754530701,
+ 0.0
+ ],
+ [
+ 82.813968285579435,
+ 28.985700902120474,
+ 0.0
+ ],
+ [
+ 82.814046194585273,
+ 28.986484264745471,
+ 0.0
+ ],
+ [
+ 82.814277633961041,
+ 28.987243830843124,
+ 0.0
+ ],
+ [
+ 82.814655574559993,
+ 28.987956520627151,
+ 0.0
+ ],
+ [
+ 82.815168535091303,
+ 28.988600678222543,
+ 0.0
+ ],
+ [
+ 82.815800930702594,
+ 28.989156729807831,
+ 0.0
+ ],
+ [
+ 82.816533546373762,
+ 28.989607778526889,
+ 0.0
+ ],
+ [
+ 82.817344120755422,
+ 28.989940118073559,
+ 0.0
+ ],
+ [
+ 82.818208022712625,
+ 28.99014364932199,
+ 0.0
+ ],
+ [
+ 82.819099,
+ 28.990212187323039,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284935,
+ "name": "Rukumkot Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "28.627887",
+ "lng": "82.194134",
+ "radius": 330,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 82.194134,
+ 28.630864541896326,
+ 0.0
+ ],
+ [
+ 82.194720030602923,
+ 28.630819305087286,
+ 0.0
+ ],
+ [
+ 82.195288253492819,
+ 28.630684969270252,
+ 0.0
+ ],
+ [
+ 82.195821402212317,
+ 28.630465616495119,
+ 0.0
+ ],
+ [
+ 82.196303276348146,
+ 28.630167912181459,
+ 0.0
+ ],
+ [
+ 82.196719233888246,
+ 28.629800902533198,
+ 0.0
+ ],
+ [
+ 82.197056636173372,
+ 28.629375739600864,
+ 0.0
+ ],
+ [
+ 82.197305231916374,
+ 28.628905342353988,
+ 0.0
+ ],
+ [
+ 82.197457468620755,
+ 28.628404004071264,
+ 0.0
+ ],
+ [
+ 82.197508721943692,
+ 28.627886957986696,
+ 0.0
+ ],
+ [
+ 82.197457436048452,
+ 28.627369914396365,
+ 0.0
+ ],
+ [
+ 82.19730517070046,
+ 28.62686858329554,
+ 0.0
+ ],
+ [
+ 82.197056553697379,
+ 28.626398197051955,
+ 0.0
+ ],
+ [
+ 82.196719140100015,
+ 28.625973047617165,
+ 0.0
+ ],
+ [
+ 82.196303182559916,
+ 28.625606052332689,
+ 0.0
+ ],
+ [
+ 82.195821319736325,
+ 28.625308361516556,
+ 0.0
+ ],
+ [
+ 82.195288192276905,
+ 28.625089019744717,
+ 0.0
+ ],
+ [
+ 82.194719998030621,
+ 28.624954691109568,
+ 0.0
+ ],
+ [
+ 82.194134,
+ 28.624909456794772,
+ 0.0
+ ],
+ [
+ 82.19354800196939,
+ 28.624954691109568,
+ 0.0
+ ],
+ [
+ 82.192979807723106,
+ 28.625089019744717,
+ 0.0
+ ],
+ [
+ 82.192446680263686,
+ 28.625308361516556,
+ 0.0
+ ],
+ [
+ 82.191964817440095,
+ 28.625606052332689,
+ 0.0
+ ],
+ [
+ 82.191548859899996,
+ 28.625973047617165,
+ 0.0
+ ],
+ [
+ 82.191211446302631,
+ 28.626398197051955,
+ 0.0
+ ],
+ [
+ 82.190962829299551,
+ 28.62686858329554,
+ 0.0
+ ],
+ [
+ 82.190810563951558,
+ 28.627369914396365,
+ 0.0
+ ],
+ [
+ 82.190759278056319,
+ 28.627886957986696,
+ 0.0
+ ],
+ [
+ 82.190810531379256,
+ 28.628404004071264,
+ 0.0
+ ],
+ [
+ 82.190962768083637,
+ 28.628905342353988,
+ 0.0
+ ],
+ [
+ 82.191211363826639,
+ 28.629375739600864,
+ 0.0
+ ],
+ [
+ 82.191548766111765,
+ 28.629800902533198,
+ 0.0
+ ],
+ [
+ 82.191964723651864,
+ 28.630167912181459,
+ 0.0
+ ],
+ [
+ 82.192446597787693,
+ 28.630465616495119,
+ 0.0
+ ],
+ [
+ 82.192979746507191,
+ 28.630684969270252,
+ 0.0
+ ],
+ [
+ 82.193547969397088,
+ 28.630819305087286,
+ 0.0
+ ],
+ [
+ 82.194134,
+ 28.630864541896326,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295784,
+ "name": "Jomsom Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "28.780426",
+ "lng": "83.723",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.723,
+ 28.784937324828405,
+ 0.0
+ ],
+ [
+ 83.723889226820489,
+ 28.784868784763017,
+ 0.0
+ ],
+ [
+ 83.724751431533505,
+ 28.78466524738208,
+ 0.0
+ ],
+ [
+ 83.725560413494904,
+ 28.784332897814693,
+ 0.0
+ ],
+ [
+ 83.726291589977919,
+ 28.783881835481374,
+ 0.0
+ ],
+ [
+ 83.72692274337453,
+ 28.783325767089959,
+ 0.0
+ ],
+ [
+ 83.727434696408665,
+ 28.782681589994439,
+ 0.0
+ ],
+ [
+ 83.72781189482788,
+ 28.781968878596793,
+ 0.0
+ ],
+ [
+ 83.728042879868823,
+ 28.781209289418989,
+ 0.0
+ ],
+ [
+ 83.728120636158167,
+ 28.780425902942163,
+ 0.0
+ ],
+ [
+ 83.72804280451038,
+ 28.779642522227736,
+ 0.0
+ ],
+ [
+ 83.727811753200328,
+ 28.778882949642064,
+ 0.0
+ ],
+ [
+ 83.727434505594374,
+ 28.778170263665057,
+ 0.0
+ ],
+ [
+ 83.726922526388535,
+ 28.777526117752572,
+ 0.0
+ ],
+ [
+ 83.726291372991923,
+ 28.776970082545446,
+ 0.0
+ ],
+ [
+ 83.725560222680627,
+ 28.776519051395148,
+ 0.0
+ ],
+ [
+ 83.724751289905953,
+ 28.776186727248387,
+ 0.0
+ ],
+ [
+ 83.723889151462032,
+ 28.775983206459596,
+ 0.0
+ ],
+ [
+ 83.723,
+ 28.775914672156599,
+ 0.0
+ ],
+ [
+ 83.722110848537966,
+ 28.775983206459596,
+ 0.0
+ ],
+ [
+ 83.721248710094045,
+ 28.776186727248387,
+ 0.0
+ ],
+ [
+ 83.72043977731937,
+ 28.776519051395148,
+ 0.0
+ ],
+ [
+ 83.719708627008075,
+ 28.776970082545446,
+ 0.0
+ ],
+ [
+ 83.719077473611463,
+ 28.777526117752572,
+ 0.0
+ ],
+ [
+ 83.718565494405624,
+ 28.778170263665057,
+ 0.0
+ ],
+ [
+ 83.71818824679967,
+ 28.778882949642064,
+ 0.0
+ ],
+ [
+ 83.717957195489618,
+ 28.779642522227736,
+ 0.0
+ ],
+ [
+ 83.717879363841831,
+ 28.780425902942163,
+ 0.0
+ ],
+ [
+ 83.717957120131175,
+ 28.781209289418989,
+ 0.0
+ ],
+ [
+ 83.718188105172118,
+ 28.781968878596793,
+ 0.0
+ ],
+ [
+ 83.718565303591333,
+ 28.782681589994439,
+ 0.0
+ ],
+ [
+ 83.719077256625468,
+ 28.783325767089959,
+ 0.0
+ ],
+ [
+ 83.719708410022079,
+ 28.783881835481374,
+ 0.0
+ ],
+ [
+ 83.720439586505094,
+ 28.784332897814693,
+ 0.0
+ ],
+ [
+ 83.721248568466493,
+ 28.78466524738208,
+ 0.0
+ ],
+ [
+ 83.722110773179509,
+ 28.784868784763017,
+ 0.0
+ ],
+ [
+ 83.723,
+ 28.784937324828405,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283807,
+ "name": "Manang Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "28.641429",
+ "lng": "84.087276",
+ "radius": 527,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 84.087276,
+ 28.646184034047319,
+ 0.0
+ ],
+ [
+ 84.088212008825835,
+ 28.646111791187629,
+ 0.0
+ ],
+ [
+ 84.089119573746061,
+ 28.645897257958509,
+ 0.0
+ ],
+ [
+ 84.089971115561298,
+ 28.645546953670603,
+ 0.0
+ ],
+ [
+ 84.090740758156358,
+ 28.645071523409452,
+ 0.0
+ ],
+ [
+ 84.091405115028209,
+ 28.644485414437135,
+ 0.0
+ ],
+ [
+ 84.091944000030054,
+ 28.643806437032012,
+ 0.0
+ ],
+ [
+ 84.092341040717073,
+ 28.643055223132887,
+ 0.0
+ ],
+ [
+ 84.092584175657521,
+ 28.642254599260621,
+ 0.0
+ ],
+ [
+ 84.09266602061777,
+ 28.641428892793012,
+ 0.0
+ ],
+ [
+ 84.092584092530643,
+ 28.640603192690087,
+ 0.0
+ ],
+ [
+ 84.092340884489673,
+ 28.639802587144196,
+ 0.0
+ ],
+ [
+ 84.091943789545439,
+ 28.639051401322728,
+ 0.0
+ ],
+ [
+ 84.091404875673931,
+ 28.638372458359928,
+ 0.0
+ ],
+ [
+ 84.090740518802079,
+ 28.637786386040382,
+ 0.0
+ ],
+ [
+ 84.089970905076669,
+ 28.637310990221561,
+ 0.0
+ ],
+ [
+ 84.089119417518646,
+ 28.636960714011295,
+ 0.0
+ ],
+ [
+ 84.088211925698971,
+ 28.636746199108572,
+ 0.0
+ ],
+ [
+ 84.087276,
+ 28.636673962613564,
+ 0.0
+ ],
+ [
+ 84.086340074301035,
+ 28.636746199108572,
+ 0.0
+ ],
+ [
+ 84.08543258248136,
+ 28.636960714011295,
+ 0.0
+ ],
+ [
+ 84.084581094923337,
+ 28.637310990221561,
+ 0.0
+ ],
+ [
+ 84.083811481197927,
+ 28.637786386040382,
+ 0.0
+ ],
+ [
+ 84.083147124326075,
+ 28.638372458359928,
+ 0.0
+ ],
+ [
+ 84.082608210454566,
+ 28.639051401322728,
+ 0.0
+ ],
+ [
+ 84.082211115510333,
+ 28.639802587144196,
+ 0.0
+ ],
+ [
+ 84.081967907469362,
+ 28.640603192690087,
+ 0.0
+ ],
+ [
+ 84.081885979382236,
+ 28.641428892793012,
+ 0.0
+ ],
+ [
+ 84.081967824342485,
+ 28.642254599260621,
+ 0.0
+ ],
+ [
+ 84.082210959282932,
+ 28.643055223132887,
+ 0.0
+ ],
+ [
+ 84.082607999969952,
+ 28.643806437032012,
+ 0.0
+ ],
+ [
+ 84.083146884971796,
+ 28.644485414437135,
+ 0.0
+ ],
+ [
+ 84.083811241843648,
+ 28.645071523409452,
+ 0.0
+ ],
+ [
+ 84.084580884438708,
+ 28.645546953670603,
+ 0.0
+ ],
+ [
+ 84.085432426253945,
+ 28.645897257958509,
+ 0.0
+ ],
+ [
+ 84.086339991174171,
+ 28.646111791187629,
+ 0.0
+ ],
+ [
+ 84.087276,
+ 28.646184034047319,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001268,
+ "name": "Yibin Wuliangye Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "28.85721477",
+ "lng": "104.52462785",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.52462785,
+ 29.308327117722516,
+ 500.0
+ ],
+ [
+ 104.613993668765147,
+ 29.301444313558111,
+ 500.0
+ ],
+ [
+ 104.700609322321171,
+ 29.281007709847643,
+ 500.0
+ ],
+ [
+ 104.781812513360904,
+ 29.247645963666653,
+ 500.0
+ ],
+ [
+ 104.855113462692117,
+ 29.202384521364088,
+ 500.0
+ ],
+ [
+ 104.918273295837537,
+ 29.146613002629209,
+ 500.0
+ ],
+ [
+ 104.969373447237004,
+ 29.082041205189523,
+ 500.0
+ ],
+ [
+ 105.006873815500214,
+ 29.010645291184783,
+ 500.0
+ ],
+ [
+ 105.029657940826638,
+ 28.934606022416919,
+ 500.0
+ ],
+ [
+ 105.037064055317458,
+ 28.856241131100823,
+ 500.0
+ ],
+ [
+ 105.028901436703762,
+ 28.777934042839046,
+ 500.0
+ ],
+ [
+ 105.00545204061666,
+ 28.702061212692314,
+ 500.0
+ ],
+ [
+ 104.967457869935004,
+ 28.630920301364309,
+ 500.0
+ ],
+ [
+ 104.916094946572144,
+ 28.566661317485966,
+ 500.0
+ ],
+ [
+ 104.852935076040467,
+ 28.511222695820717,
+ 500.0
+ ],
+ [
+ 104.77989684139358,
+ 28.466274081796779,
+ 500.0
+ ],
+ [
+ 104.699187439788176,
+ 28.433167360840724,
+ 500.0
+ ],
+ [
+ 104.613237094379087,
+ 28.412897215579935,
+ 500.0
+ ],
+ [
+ 104.52462785,
+ 28.40607222230074,
+ 500.0
+ ],
+ [
+ 104.436018605620916,
+ 28.412897215579935,
+ 500.0
+ ],
+ [
+ 104.350068260211827,
+ 28.433167360840724,
+ 500.0
+ ],
+ [
+ 104.269358858606424,
+ 28.466274081796779,
+ 500.0
+ ],
+ [
+ 104.196320623959537,
+ 28.511222695820717,
+ 500.0
+ ],
+ [
+ 104.133160753427859,
+ 28.566661317485966,
+ 500.0
+ ],
+ [
+ 104.081797830065,
+ 28.630920301364309,
+ 500.0
+ ],
+ [
+ 104.043803659383343,
+ 28.702061212692314,
+ 500.0
+ ],
+ [
+ 104.020354263296241,
+ 28.777934042839046,
+ 500.0
+ ],
+ [
+ 104.012191644682545,
+ 28.856241131100823,
+ 500.0
+ ],
+ [
+ 104.019597759173365,
+ 28.934606022416919,
+ 500.0
+ ],
+ [
+ 104.04238188449979,
+ 29.010645291184783,
+ 500.0
+ ],
+ [
+ 104.079882252762999,
+ 29.082041205189523,
+ 500.0
+ ],
+ [
+ 104.130982404162467,
+ 29.146613002629209,
+ 500.0
+ ],
+ [
+ 104.194142237307886,
+ 29.202384521364088,
+ 500.0
+ ],
+ [
+ 104.267443186639099,
+ 29.247645963666653,
+ 500.0
+ ],
+ [
+ 104.348646377678833,
+ 29.281007709847643,
+ 500.0
+ ],
+ [
+ 104.435262031234856,
+ 29.301444313558111,
+ 500.0
+ ],
+ [
+ 104.52462785,
+ 29.308327117722516,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000067,
+ "name": "Yibin Wuliangye Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "28.8448415205683",
+ "lng": "104.573984289353",
+ "radius": 13444,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.60036782,
+ 28.816103555,
+ 0.0
+ ],
+ [
+ 104.688873786,
+ 28.777877812100002,
+ 0.0
+ ],
+ [
+ 104.711933984,
+ 28.840767128100001,
+ 0.0
+ ],
+ [
+ 104.614594485,
+ 28.854892722399999,
+ 0.0
+ ],
+ [
+ 104.612964156,
+ 28.872899155300001,
+ 0.0
+ ],
+ [
+ 104.606418164,
+ 28.888476300299999,
+ 0.0
+ ],
+ [
+ 104.595488238,
+ 28.902038451799999,
+ 0.0
+ ],
+ [
+ 104.563702147,
+ 28.919617354100001,
+ 0.0
+ ],
+ [
+ 104.51563342,
+ 28.9305964128,
+ 0.0
+ ],
+ [
+ 104.47900024,
+ 28.923165938499999,
+ 0.0
+ ],
+ [
+ 104.451530705,
+ 28.900693090499999,
+ 0.0
+ ],
+ [
+ 104.60036782,
+ 28.816103555,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000067,
+ "name": "Yibin Wuliangye Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "28.8718311540779",
+ "lng": "104.477884352903",
+ "radius": 13443,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.362950359,
+ 28.938859219600001,
+ 0.0
+ ],
+ [
+ 104.339904453,
+ 28.875965903400001,
+ 0.0
+ ],
+ [
+ 104.437338912,
+ 28.8619596966,
+ 0.0
+ ],
+ [
+ 104.439004344,
+ 28.843898393500002,
+ 0.0
+ ],
+ [
+ 104.445580331,
+ 28.828331852,
+ 0.0
+ ],
+ [
+ 104.45652878,
+ 28.814785967500001,
+ 0.0
+ ],
+ [
+ 104.488309656,
+ 28.7972443104,
+ 0.0
+ ],
+ [
+ 104.53629197,
+ 28.786272143200001,
+ 0.0
+ ],
+ [
+ 104.572885821,
+ 28.7936689577,
+ 0.0
+ ],
+ [
+ 104.60036782,
+ 28.816103555,
+ 0.0
+ ],
+ [
+ 104.451530705,
+ 28.900693090499999,
+ 0.0
+ ],
+ [
+ 104.362950359,
+ 28.938859219600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000067,
+ "name": "Yibin Wuliangye Airport",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "28.8581342409131",
+ "lng": "104.525869870727",
+ "radius": 23635,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.28511847,
+ 28.831490688300001,
+ 120.0
+ ],
+ [
+ 104.347887368,
+ 29.002757903199999,
+ 120.0
+ ],
+ [
+ 104.766635749,
+ 28.8850924071,
+ 120.0
+ ],
+ [
+ 104.703937848,
+ 28.7138251921,
+ 120.0
+ ],
+ [
+ 104.28511847,
+ 28.831490688300001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001365,
+ "name": "Luzhou Yunlong Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "28.848835",
+ "lng": "105.382561",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.382561,
+ 29.299947911395044,
+ 500.0
+ ],
+ [
+ 105.471919523138581,
+ 29.293065108820951,
+ 500.0
+ ],
+ [
+ 105.558528117592928,
+ 29.272628508905125,
+ 500.0
+ ],
+ [
+ 105.639724713554415,
+ 29.239266765939426,
+ 500.0
+ ],
+ [
+ 105.713019741786042,
+ 29.194005322097805,
+ 500.0
+ ],
+ [
+ 105.776174512677215,
+ 29.138233792134852,
+ 500.0
+ ],
+ [
+ 105.827270614244767,
+ 29.073661968847517,
+ 500.0
+ ],
+ [
+ 105.864768062784023,
+ 29.002266010243879,
+ 500.0
+ ],
+ [
+ 105.887550477408354,
+ 28.926226675514766,
+ 500.0
+ ],
+ [
+ 105.89495612919211,
+ 28.847861696338366,
+ 500.0
+ ],
+ [
+ 105.886794295316577,
+ 28.76955450016807,
+ 500.0
+ ],
+ [
+ 105.863346893129361,
+ 28.69368154633278,
+ 500.0
+ ],
+ [
+ 105.825355852382671,
+ 28.622540501960259,
+ 500.0
+ ],
+ [
+ 105.773997090719959,
+ 28.558281383735924,
+ 500.0
+ ],
+ [
+ 105.710842282468136,
+ 28.50284263537656,
+ 500.0
+ ],
+ [
+ 105.637809857091852,
+ 28.457893911306716,
+ 500.0
+ ],
+ [
+ 105.557106840362565,
+ 28.424787105107317,
+ 500.0
+ ],
+ [
+ 105.471163270831781,
+ 28.404516905902433,
+ 500.0
+ ],
+ [
+ 105.382561,
+ 28.397691894160815,
+ 500.0
+ ],
+ [
+ 105.29395872916821,
+ 28.404516905902433,
+ 500.0
+ ],
+ [
+ 105.208015159637426,
+ 28.424787105107317,
+ 500.0
+ ],
+ [
+ 105.127312142908139,
+ 28.457893911306716,
+ 500.0
+ ],
+ [
+ 105.054279717531855,
+ 28.50284263537656,
+ 500.0
+ ],
+ [
+ 104.991124909280032,
+ 28.558281383735924,
+ 500.0
+ ],
+ [
+ 104.93976614761732,
+ 28.622540501960259,
+ 500.0
+ ],
+ [
+ 104.90177510687063,
+ 28.69368154633278,
+ 500.0
+ ],
+ [
+ 104.878327704683414,
+ 28.76955450016807,
+ 500.0
+ ],
+ [
+ 104.870165870807881,
+ 28.847861696338366,
+ 500.0
+ ],
+ [
+ 104.877571522591637,
+ 28.926226675514766,
+ 500.0
+ ],
+ [
+ 104.900353937215968,
+ 29.002266010243879,
+ 500.0
+ ],
+ [
+ 104.937851385755224,
+ 29.073661968847517,
+ 500.0
+ ],
+ [
+ 104.988947487322775,
+ 29.138233792134852,
+ 500.0
+ ],
+ [
+ 105.052102258213949,
+ 29.194005322097805,
+ 500.0
+ ],
+ [
+ 105.125397286445576,
+ 29.239266765939426,
+ 500.0
+ ],
+ [
+ 105.206593882407063,
+ 29.272628508905125,
+ 500.0
+ ],
+ [
+ 105.29320247686141,
+ 29.293065108820951,
+ 500.0
+ ],
+ [
+ 105.382561,
+ 29.299947911395044,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286025,
+ "name": "Luzhou Yunlong Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "29.0173237442078",
+ "lng": "105.420561208395",
+ "radius": 13604,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.37833467,
+ 29.027134864099999,
+ 0.0
+ ],
+ [
+ 105.28072084,
+ 29.0136396887,
+ 0.0
+ ],
+ [
+ 105.303321764,
+ 28.950612194800001,
+ 0.0
+ ],
+ [
+ 105.392255817,
+ 28.9883275746,
+ 0.0
+ ],
+ [
+ 105.405504371,
+ 28.974413028899999,
+ 0.0
+ ],
+ [
+ 105.439012926,
+ 28.959454169800001,
+ 0.0
+ ],
+ [
+ 105.47657926399999,
+ 28.961147842199999,
+ 0.0
+ ],
+ [
+ 105.526336228,
+ 28.977284580199999,
+ 0.0
+ ],
+ [
+ 105.551438839,
+ 29.001801946600001,
+ 0.0
+ ],
+ [
+ 105.557728964,
+ 29.017462120200001,
+ 0.0
+ ],
+ [
+ 105.559170988,
+ 29.0340123967,
+ 0.0
+ ],
+ [
+ 105.37833467,
+ 29.027134864099999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286025,
+ "name": "Luzhou Yunlong Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "29.0437136515008",
+ "lng": "105.516984807354",
+ "radius": 13605,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.656873481,
+ 29.047467057199999,
+ 0.0
+ ],
+ [
+ 105.63428739699999,
+ 29.110498396,
+ 0.0
+ ],
+ [
+ 105.545239927,
+ 29.0728979362,
+ 0.0
+ ],
+ [
+ 105.53199851799999,
+ 29.086812663,
+ 0.0
+ ],
+ [
+ 105.498455986,
+ 29.1017841681,
+ 0.0
+ ],
+ [
+ 105.460838768,
+ 29.100084877299999,
+ 0.0
+ ],
+ [
+ 105.411058596,
+ 29.0839186109,
+ 0.0
+ ],
+ [
+ 105.385988973,
+ 29.059359870200002,
+ 0.0
+ ],
+ [
+ 105.379734858,
+ 29.0436878955,
+ 0.0
+ ],
+ [
+ 105.37833467,
+ 29.027134864099999,
+ 0.0
+ ],
+ [
+ 105.559170988,
+ 29.0340123967,
+ 0.0
+ ],
+ [
+ 105.656873481,
+ 29.047467057199999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286025,
+ "name": "Luzhou Yunlong Airport",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "29.0303142898713",
+ "lng": "105.468846634298",
+ "radius": 23784,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.649885616,
+ 29.174299535199999,
+ 120.0
+ ],
+ [
+ 105.71139678599999,
+ 29.0026550822,
+ 120.0
+ ],
+ [
+ 105.287724326,
+ 28.886652079499999,
+ 120.0
+ ],
+ [
+ 105.226282236,
+ 29.0582965326,
+ 120.0
+ ],
+ [
+ 105.649885616,
+ 29.174299535199999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025580,
+ "name": "湘西边城机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "28.4961522",
+ "lng": "109.5218468",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.5218468,
+ 28.947288741660564,
+ 500.0
+ ],
+ [
+ 109.610901067805955,
+ 28.940406005942709,
+ 500.0
+ ],
+ [
+ 109.697215271980554,
+ 28.919969565652483,
+ 500.0
+ ],
+ [
+ 109.778136831181811,
+ 28.88660795833745,
+ 500.0
+ ],
+ [
+ 109.851184932732181,
+ 28.841346451070944,
+ 500.0
+ ],
+ [
+ 109.914128596896106,
+ 28.785574451638212,
+ 500.0
+ ],
+ [
+ 109.965055816218765,
+ 28.721001546019583,
+ 500.0
+ ],
+ [
+ 110.002431514263534,
+ 28.649603718892003,
+ 500.0
+ ],
+ [
+ 110.025142600075824,
+ 28.573561619866467,
+ 500.0
+ ],
+ [
+ 110.032528968688752,
+ 28.495192958025985,
+ 500.0
+ ],
+ [
+ 110.024399872833158,
+ 28.416881238354556,
+ 500.0
+ ],
+ [
+ 110.001035631800079,
+ 28.341003099096476,
+ 500.0
+ ],
+ [
+ 109.963175124412317,
+ 28.269856476725291,
+ 500.0
+ ],
+ [
+ 109.911989918974143,
+ 28.205591725670132,
+ 500.0
+ ],
+ [
+ 109.849046218511148,
+ 28.150147665112758,
+ 500.0
+ ],
+ [
+ 109.776256047462923,
+ 28.105194326765613,
+ 500.0
+ ],
+ [
+ 109.695819284998151,
+ 28.072083946201428,
+ 500.0
+ ],
+ [
+ 109.610158272343398,
+ 28.051811485020277,
+ 500.0
+ ],
+ [
+ 109.5218468,
+ 28.044985699110054,
+ 500.0
+ ],
+ [
+ 109.433535327656614,
+ 28.051811485020277,
+ 500.0
+ ],
+ [
+ 109.34787431500186,
+ 28.072083946201428,
+ 500.0
+ ],
+ [
+ 109.267437552537089,
+ 28.105194326765613,
+ 500.0
+ ],
+ [
+ 109.194647381488863,
+ 28.150147665112758,
+ 500.0
+ ],
+ [
+ 109.131703681025868,
+ 28.205591725670132,
+ 500.0
+ ],
+ [
+ 109.080518475587695,
+ 28.269856476725291,
+ 500.0
+ ],
+ [
+ 109.042657968199933,
+ 28.341003099096476,
+ 500.0
+ ],
+ [
+ 109.019293727166854,
+ 28.416881238354556,
+ 500.0
+ ],
+ [
+ 109.01116463131126,
+ 28.495192958025985,
+ 500.0
+ ],
+ [
+ 109.018550999924187,
+ 28.573561619866467,
+ 500.0
+ ],
+ [
+ 109.041262085736477,
+ 28.649603718892003,
+ 500.0
+ ],
+ [
+ 109.078637783781247,
+ 28.721001546019583,
+ 500.0
+ ],
+ [
+ 109.129565003103906,
+ 28.785574451638212,
+ 500.0
+ ],
+ [
+ 109.19250866726783,
+ 28.841346451070944,
+ 500.0
+ ],
+ [
+ 109.2655567688182,
+ 28.88660795833745,
+ 500.0
+ ],
+ [
+ 109.346478328019458,
+ 28.919969565652483,
+ 500.0
+ ],
+ [
+ 109.432792532194057,
+ 28.940406005942709,
+ 500.0
+ ],
+ [
+ 109.5218468,
+ 28.947288741660564,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025579,
+ "name": "湘西边城机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "28.5286142809372",
+ "lng": "109.552864313077",
+ "radius": 13367,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.59277256199999,
+ 28.537998290499999,
+ 0.0
+ ],
+ [
+ 109.667518258,
+ 28.594269840700001,
+ 0.0
+ ],
+ [
+ 109.610707878,
+ 28.6375700239,
+ 0.0
+ ],
+ [
+ 109.55775203,
+ 28.564709688299999,
+ 0.0
+ ],
+ [
+ 109.519328447,
+ 28.5713154876,
+ 0.0
+ ],
+ [
+ 109.50085065499999,
+ 28.5678287436,
+ 0.0
+ ],
+ [
+ 109.470020503,
+ 28.549121607,
+ 0.0
+ ],
+ [
+ 109.44080710199999,
+ 28.5158398893,
+ 0.0
+ ],
+ [
+ 109.435100858,
+ 28.500017195,
+ 0.0
+ ],
+ [
+ 109.43424996,
+ 28.4834358116,
+ 0.0
+ ],
+ [
+ 109.44700269,
+ 28.452491490500002,
+ 0.0
+ ],
+ [
+ 109.59277256199999,
+ 28.537998290499999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025579,
+ "name": "湘西边城机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "28.4618400621049",
+ "lng": "109.486944738764",
+ "radius": 13366,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.372423483,
+ 28.396212115800001,
+ 0.0
+ ],
+ [
+ 109.429132185,
+ 28.352918721799998,
+ 0.0
+ ],
+ [
+ 109.481946056,
+ 28.425831970499999,
+ 0.0
+ ],
+ [
+ 109.501426734,
+ 28.420070507799998,
+ 0.0
+ ],
+ [
+ 109.538730742,
+ 28.422693459200001,
+ 0.0
+ ],
+ [
+ 109.555538797,
+ 28.430243902200001,
+ 0.0
+ ],
+ [
+ 109.58751497,
+ 28.459539196,
+ 0.0
+ ],
+ [
+ 109.60457072,
+ 28.490451803100001,
+ 0.0
+ ],
+ [
+ 109.601437892,
+ 28.52324894,
+ 0.0
+ ],
+ [
+ 109.59277256199999,
+ 28.537998290499999,
+ 0.0
+ ],
+ [
+ 109.44700269,
+ 28.452491490500002,
+ 0.0
+ ],
+ [
+ 109.372423483,
+ 28.396212115800001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025579,
+ "name": "湘西边城机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "28.4951365771889",
+ "lng": "109.520021829622",
+ "radius": 23563,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.454067957,
+ 28.291319642600001,
+ 120.0
+ ],
+ [
+ 109.299703115,
+ 28.409200219799999,
+ 120.0
+ ],
+ [
+ 109.585678882,
+ 28.699056166199998,
+ 120.0
+ ],
+ [
+ 109.74046823099999,
+ 28.581175589499999,
+ 120.0
+ ],
+ [
+ 109.454067957,
+ 28.291319642600001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1781,
+ "name": "Changde Airport",
+ "country": "CN",
+ "city": "Changde",
+ "height": 0,
+ "level": 2,
+ "lat": "28.8769995169089",
+ "lng": "111.627673021327",
+ "radius": 13146,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.595364549,
+ 28.849494929,
+ 0.0
+ ],
+ [
+ 111.560329438,
+ 28.774540245099999,
+ 0.0
+ ],
+ [
+ 111.637661522,
+ 28.759091933200001,
+ 0.0
+ ],
+ [
+ 111.642566723,
+ 28.842351685800001,
+ 0.0
+ ],
+ [
+ 111.676945753,
+ 28.851851503500001,
+ 0.0
+ ],
+ [
+ 111.691595549,
+ 28.8623812423,
+ 0.0
+ ],
+ [
+ 111.709318154,
+ 28.891405249,
+ 0.0
+ ],
+ [
+ 111.716007282,
+ 28.918156100899999,
+ 0.0
+ ],
+ [
+ 111.715011821,
+ 28.946774957399999,
+ 0.0
+ ],
+ [
+ 111.696339843,
+ 28.975346494699998,
+ 0.0
+ ],
+ [
+ 111.681333432,
+ 28.985503917399999,
+ 0.0
+ ],
+ [
+ 111.595364549,
+ 28.849494929,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1781,
+ "name": "Changde Airport",
+ "country": "CN",
+ "city": "Changde",
+ "height": 0,
+ "level": 2,
+ "lat": "28.9591844442393",
+ "lng": "111.651753674497",
+ "radius": 13375,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.719680887,
+ 29.063778108899999,
+ 0.0
+ ],
+ [
+ 111.644052135,
+ 29.079281479199999,
+ 0.0
+ ],
+ [
+ 111.63404118699999,
+ 28.997605775099998,
+ 0.0
+ ],
+ [
+ 111.60051588,
+ 28.9854206244,
+ 0.0
+ ],
+ [
+ 111.586991231,
+ 28.973779195199999,
+ 0.0
+ ],
+ [
+ 111.572319926,
+ 28.9434733531,
+ 0.0
+ ],
+ [
+ 111.563329428,
+ 28.906554415900001,
+ 0.0
+ ],
+ [
+ 111.56454863099999,
+ 28.889990532599999,
+ 0.0
+ ],
+ [
+ 111.570621595,
+ 28.874267145699999,
+ 0.0
+ ],
+ [
+ 111.595364549,
+ 28.849494929,
+ 0.0
+ ],
+ [
+ 111.681333432,
+ 28.985503917399999,
+ 0.0
+ ],
+ [
+ 111.719680887,
+ 29.063778108899999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1781,
+ "name": "Changde Airport",
+ "country": "CN",
+ "city": "Changde",
+ "height": 120,
+ "level": 2,
+ "lat": "28.9191708141144",
+ "lng": "111.641339300782",
+ "radius": 23555,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.58759870599999,
+ 29.1257366229,
+ 120.0
+ ],
+ [
+ 111.788703848,
+ 29.0872977776,
+ 120.0
+ ],
+ [
+ 111.694679859,
+ 28.7125467539,
+ 120.0
+ ],
+ [
+ 111.494300099,
+ 28.750985599500002,
+ 120.0
+ ],
+ [
+ 111.58759870599999,
+ 29.1257366229,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001373,
+ "name": "Changde Airport",
+ "country": "CN",
+ "city": "Changde",
+ "height": 500,
+ "level": 2,
+ "lat": "28.918992",
+ "lng": "111.639612",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.639612,
+ 29.370100189074549,
+ 500.0
+ ],
+ [
+ 111.729031699298375,
+ 29.363217373182721,
+ 500.0
+ ],
+ [
+ 111.81569948661155,
+ 29.342780741492298,
+ 500.0
+ ],
+ [
+ 111.896951384513855,
+ 29.309418971614939,
+ 500.0
+ ],
+ [
+ 111.970296063247133,
+ 29.264157540699824,
+ 500.0
+ ],
+ [
+ 112.033493283043029,
+ 29.208386104839988,
+ 500.0
+ ],
+ [
+ 112.084623344118995,
+ 29.143814498136305,
+ 500.0
+ ],
+ [
+ 112.122145275915955,
+ 29.07241891320739,
+ 500.0
+ ],
+ [
+ 112.144942035793335,
+ 28.996380131115835,
+ 500.0
+ ],
+ [
+ 112.152351567976538,
+ 28.91801588803326,
+ 500.0
+ ],
+ [
+ 112.144183154206246,
+ 28.839709595905056,
+ 500.0
+ ],
+ [
+ 112.120719032799428,
+ 28.763837678301737,
+ 500.0
+ ],
+ [
+ 112.082701746655388,
+ 28.692697748532467,
+ 500.0
+ ],
+ [
+ 112.03130808772444,
+ 28.628439755806504,
+ 500.0
+ ],
+ [
+ 111.968110830352842,
+ 28.573002068835002,
+ 500.0
+ ],
+ [
+ 111.895029691905222,
+ 28.528054266677628,
+ 500.0
+ ],
+ [
+ 111.814273135300112,
+ 28.494948174604225,
+ 500.0
+ ],
+ [
+ 111.728272747092078,
+ 28.474678427315109,
+ 500.0
+ ],
+ [
+ 111.639612,
+ 28.46785357024196,
+ 500.0
+ ],
+ [
+ 111.550951252907922,
+ 28.474678427315109,
+ 500.0
+ ],
+ [
+ 111.464950864699887,
+ 28.494948174604225,
+ 500.0
+ ],
+ [
+ 111.384194308094777,
+ 28.528054266677628,
+ 500.0
+ ],
+ [
+ 111.311113169647157,
+ 28.573002068835002,
+ 500.0
+ ],
+ [
+ 111.247915912275559,
+ 28.628439755806504,
+ 500.0
+ ],
+ [
+ 111.196522253344611,
+ 28.692697748532467,
+ 500.0
+ ],
+ [
+ 111.158504967200571,
+ 28.763837678301737,
+ 500.0
+ ],
+ [
+ 111.135040845793753,
+ 28.839709595905056,
+ 500.0
+ ],
+ [
+ 111.126872432023461,
+ 28.91801588803326,
+ 500.0
+ ],
+ [
+ 111.134281964206664,
+ 28.996380131115835,
+ 500.0
+ ],
+ [
+ 111.157078724084045,
+ 29.07241891320739,
+ 500.0
+ ],
+ [
+ 111.194600655881004,
+ 29.143814498136305,
+ 500.0
+ ],
+ [
+ 111.24573071695697,
+ 29.208386104839988,
+ 500.0
+ ],
+ [
+ 111.308927936752866,
+ 29.264157540699824,
+ 500.0
+ ],
+ [
+ 111.382272615486144,
+ 29.309418971614939,
+ 500.0
+ ],
+ [
+ 111.46352451338845,
+ 29.342780741492298,
+ 500.0
+ ],
+ [
+ 111.550192300701625,
+ 29.363217373182721,
+ 500.0
+ ],
+ [
+ 111.639612,
+ 29.370100189074549,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001532,
+ "name": "Dayong Airport",
+ "country": "CN",
+ "city": "Dayong",
+ "height": 500,
+ "level": 2,
+ "lat": "29.103093",
+ "lng": "110.443505",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.443505,
+ 29.554188763248224,
+ 500.0
+ ],
+ [
+ 110.533086271731122,
+ 29.547305912367243,
+ 500.0
+ ],
+ [
+ 110.61991039376133,
+ 29.526869197225615,
+ 500.0
+ ],
+ [
+ 110.70130835078362,
+ 29.493507356784534,
+ 500.0
+ ],
+ [
+ 110.774784163550621,
+ 29.448245960203948,
+ 500.0
+ ],
+ [
+ 110.838093498255418,
+ 29.392474772323862,
+ 500.0
+ ],
+ [
+ 110.88931325383038,
+ 29.327903735895639,
+ 500.0
+ ],
+ [
+ 110.926899853093644,
+ 29.256509134572962,
+ 500.0
+ ],
+ [
+ 110.949734505259897,
+ 29.18047180693446,
+ 500.0
+ ],
+ [
+ 110.957154290819787,
+ 29.102109500945005,
+ 500.0
+ ],
+ [
+ 110.948968503009041,
+ 29.023805587723206,
+ 500.0
+ ],
+ [
+ 110.925460227320542,
+ 28.947936396740996,
+ 500.0
+ ],
+ [
+ 110.887373625577965,
+ 28.876799399702684,
+ 500.0
+ ],
+ [
+ 110.83588779854415,
+ 28.812544368290496,
+ 500.0
+ ],
+ [
+ 110.772578425693013,
+ 28.757109473888907,
+ 500.0
+ ],
+ [
+ 110.69936862594129,
+ 28.712164097292948,
+ 500.0
+ ],
+ [
+ 110.61847065815023,
+ 28.679059884069446,
+ 500.0
+ ],
+ [
+ 110.532320197788607,
+ 28.658791325751253,
+ 500.0
+ ],
+ [
+ 110.443505,
+ 28.651966875602561,
+ 500.0
+ ],
+ [
+ 110.354689802211396,
+ 28.658791325751253,
+ 500.0
+ ],
+ [
+ 110.268539341849774,
+ 28.679059884069446,
+ 500.0
+ ],
+ [
+ 110.187641374058714,
+ 28.712164097292948,
+ 500.0
+ ],
+ [
+ 110.114431574306991,
+ 28.757109473888907,
+ 500.0
+ ],
+ [
+ 110.051122201455854,
+ 28.812544368290496,
+ 500.0
+ ],
+ [
+ 109.999636374422039,
+ 28.876799399702684,
+ 500.0
+ ],
+ [
+ 109.961549772679462,
+ 28.947936396740996,
+ 500.0
+ ],
+ [
+ 109.938041496990962,
+ 29.023805587723206,
+ 500.0
+ ],
+ [
+ 109.929855709180217,
+ 29.102109500945005,
+ 500.0
+ ],
+ [
+ 109.937275494740106,
+ 29.18047180693446,
+ 500.0
+ ],
+ [
+ 109.960110146906359,
+ 29.256509134572962,
+ 500.0
+ ],
+ [
+ 109.997696746169623,
+ 29.327903735895639,
+ 500.0
+ ],
+ [
+ 110.048916501744586,
+ 29.392474772323862,
+ 500.0
+ ],
+ [
+ 110.112225836449383,
+ 29.448245960203948,
+ 500.0
+ ],
+ [
+ 110.185701649216384,
+ 29.493507356784534,
+ 500.0
+ ],
+ [
+ 110.267099606238673,
+ 29.526869197225615,
+ 500.0
+ ],
+ [
+ 110.353923728268882,
+ 29.547305912367243,
+ 500.0
+ ],
+ [
+ 110.443505,
+ 29.554188763248224,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 773,
+ "name": "Dayong Airport",
+ "country": "CN",
+ "city": "Dayong",
+ "height": 0,
+ "level": 2,
+ "lat": "29.0981315671964",
+ "lng": "110.390823519618",
+ "radius": 13477,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.350563865,
+ 29.1057754128,
+ 0.0
+ ],
+ [
+ 110.252193188,
+ 29.0941031497,
+ 0.0
+ ],
+ [
+ 110.27450607599999,
+ 29.032150664500001,
+ 0.0
+ ],
+ [
+ 110.36448222,
+ 29.062158440200001,
+ 0.0
+ ],
+ [
+ 110.386779447,
+ 29.044272292700001,
+ 0.0
+ ],
+ [
+ 110.404249832,
+ 29.037775347,
+ 0.0
+ ],
+ [
+ 110.423047067,
+ 29.035450421699998,
+ 0.0
+ ],
+ [
+ 110.473569885,
+ 29.0424581133,
+ 0.0
+ ],
+ [
+ 110.506668534,
+ 29.058089732799999,
+ 0.0
+ ],
+ [
+ 110.518655862,
+ 29.070962852099999,
+ 0.0
+ ],
+ [
+ 110.529446195,
+ 29.102495622399999,
+ 0.0
+ ],
+ [
+ 110.350563865,
+ 29.1057754128,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 773,
+ "name": "Dayong Airport",
+ "country": "CN",
+ "city": "Dayong",
+ "height": 0,
+ "level": 2,
+ "lat": "29.114864391978",
+ "lng": "110.489017863616",
+ "radius": 13488,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.627790615,
+ 29.110878664200001,
+ 0.0
+ ],
+ [
+ 110.60886760699999,
+ 29.176169441900001,
+ 0.0
+ ],
+ [
+ 110.51720015799999,
+ 29.1395029812,
+ 0.0
+ ],
+ [
+ 110.49465914699999,
+ 29.159209196300001,
+ 0.0
+ ],
+ [
+ 110.477413666,
+ 29.166188807800001,
+ 0.0
+ ],
+ [
+ 110.458685735,
+ 29.169030427100001,
+ 0.0
+ ],
+ [
+ 110.408096778,
+ 29.162541942600001,
+ 0.0
+ ],
+ [
+ 110.376211111,
+ 29.148975059400001,
+ 0.0
+ ],
+ [
+ 110.363393017,
+ 29.1367209209,
+ 0.0
+ ],
+ [
+ 110.350563865,
+ 29.1057754128,
+ 0.0
+ ],
+ [
+ 110.529446195,
+ 29.102495622399999,
+ 0.0
+ ],
+ [
+ 110.627790615,
+ 29.110878664200001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 773,
+ "name": "Dayong Airport",
+ "country": "CN",
+ "city": "Dayong",
+ "height": 120,
+ "level": 2,
+ "lat": "29.102173418476",
+ "lng": "110.440910275778",
+ "radius": 23769,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.641010018,
+ 29.225309731399999,
+ 120.0
+ ],
+ [
+ 110.677601658,
+ 29.048307896299999,
+ 120.0
+ ],
+ [
+ 110.240769134,
+ 28.979385585700001,
+ 120.0
+ ],
+ [
+ 110.204201987,
+ 29.1563874209,
+ 120.0
+ ],
+ [
+ 110.641010018,
+ 29.225309731399999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001354,
+ "name": "Nanchang Changbei International Airport",
+ "country": "CN",
+ "city": "Nanchang",
+ "height": 500,
+ "level": 2,
+ "lat": "28.857464",
+ "lng": "115.910666",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.910666,
+ 29.308576330956281,
+ 500.0
+ ],
+ [
+ 116.000032035798213,
+ 29.301693526744572,
+ 500.0
+ ],
+ [
+ 116.086647899351064,
+ 29.281256922921234,
+ 500.0
+ ],
+ [
+ 116.16785128658374,
+ 29.247895176644626,
+ 500.0
+ ],
+ [
+ 116.241152412058128,
+ 29.202633734387863,
+ 500.0
+ ],
+ [
+ 116.304312395797538,
+ 29.146862215986967,
+ 500.0
+ ],
+ [
+ 116.355412667673136,
+ 29.082290419316138,
+ 500.0
+ ],
+ [
+ 116.392913122793615,
+ 29.010894506637996,
+ 500.0
+ ],
+ [
+ 116.415697299010873,
+ 28.934855239832125,
+ 500.0
+ ],
+ [
+ 116.42310342726671,
+ 28.856490351129434,
+ 500.0
+ ],
+ [
+ 116.414940785308517,
+ 28.778183266077349,
+ 500.0
+ ],
+ [
+ 116.391491329906259,
+ 28.702310439609697,
+ 500.0
+ ],
+ [
+ 116.353497066114173,
+ 28.631169532239035,
+ 500.0
+ ],
+ [
+ 116.302134018947456,
+ 28.566910552356752,
+ 500.0
+ ],
+ [
+ 116.23897399782102,
+ 28.511471934459959,
+ 500.0
+ ],
+ [
+ 116.16593559035752,
+ 28.466523323709289,
+ 500.0
+ ],
+ [
+ 116.085225998812078,
+ 28.433416605288748,
+ 500.0
+ ],
+ [
+ 115.999275451831238,
+ 28.413146461632508,
+ 500.0
+ ],
+ [
+ 115.910666,
+ 28.406321468902469,
+ 500.0
+ ],
+ [
+ 115.822056548168774,
+ 28.413146461632508,
+ 500.0
+ ],
+ [
+ 115.736106001187935,
+ 28.433416605288748,
+ 500.0
+ ],
+ [
+ 115.655396409642492,
+ 28.466523323709289,
+ 500.0
+ ],
+ [
+ 115.582358002178992,
+ 28.511471934459959,
+ 500.0
+ ],
+ [
+ 115.519197981052557,
+ 28.566910552356752,
+ 500.0
+ ],
+ [
+ 115.46783493388584,
+ 28.631169532239035,
+ 500.0
+ ],
+ [
+ 115.429840670093753,
+ 28.702310439609697,
+ 500.0
+ ],
+ [
+ 115.406391214691496,
+ 28.778183266077349,
+ 500.0
+ ],
+ [
+ 115.398228572733302,
+ 28.856490351129434,
+ 500.0
+ ],
+ [
+ 115.40563470098914,
+ 28.934855239832125,
+ 500.0
+ ],
+ [
+ 115.428418877206397,
+ 29.010894506637996,
+ 500.0
+ ],
+ [
+ 115.465919332326877,
+ 29.082290419316138,
+ 500.0
+ ],
+ [
+ 115.517019604202474,
+ 29.146862215986967,
+ 500.0
+ ],
+ [
+ 115.580179587941885,
+ 29.202633734387863,
+ 500.0
+ ],
+ [
+ 115.653480713416272,
+ 29.247895176644626,
+ 500.0
+ ],
+ [
+ 115.734684100648948,
+ 29.281256922921234,
+ 500.0
+ ],
+ [
+ 115.821299964201799,
+ 29.301693526744572,
+ 500.0
+ ],
+ [
+ 115.910666,
+ 29.308576330956281,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4886,
+ "name": "Nanchang Changbei International Airport",
+ "country": "CN",
+ "city": "Nanchang",
+ "height": 0,
+ "level": 2,
+ "lat": "28.9046990903512",
+ "lng": "115.923513077666",
+ "radius": 13787,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.011397289,
+ 29.0019695531,
+ 0.0
+ ],
+ [
+ 115.940941662,
+ 29.027754477599998,
+ 0.0
+ ],
+ [
+ 115.915936552,
+ 28.942751552200001,
+ 0.0
+ ],
+ [
+ 115.880914473,
+ 28.9389308917,
+ 0.0
+ ],
+ [
+ 115.864274777,
+ 28.930966375600001,
+ 0.0
+ ],
+ [
+ 115.840706115,
+ 28.905321928700001,
+ 0.0
+ ],
+ [
+ 115.827384608,
+ 28.875344374800001,
+ 0.0
+ ],
+ [
+ 115.820968324,
+ 28.845095600499999,
+ 0.0
+ ],
+ [
+ 115.82457656299999,
+ 28.828801096100001,
+ 0.0
+ ],
+ [
+ 115.845293998,
+ 28.801346973099999,
+ 0.0
+ ],
+ [
+ 115.958094977,
+ 28.926914597300001,
+ 0.0
+ ],
+ [
+ 116.011397289,
+ 29.0019695531,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4886,
+ "name": "Nanchang Changbei International Airport",
+ "country": "CN",
+ "city": "Nanchang",
+ "height": 0,
+ "level": 2,
+ "lat": "28.8253885264085",
+ "lng": "115.880818104285",
+ "radius": 13566,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.845293998,
+ 28.801346973099999,
+ 0.0
+ ],
+ [
+ 115.79694503899999,
+ 28.728012204900001,
+ 0.0
+ ],
+ [
+ 115.867445426,
+ 28.703942341800001,
+ 0.0
+ ],
+ [
+ 115.889078618,
+ 28.787256963899999,
+ 0.0
+ ],
+ [
+ 115.92334709799999,
+ 28.791863690100001,
+ 0.0
+ ],
+ [
+ 115.939744653,
+ 28.800170876399999,
+ 0.0
+ ],
+ [
+ 115.962599721,
+ 28.826290033,
+ 0.0
+ ],
+ [
+ 115.975944113,
+ 28.854646417800002,
+ 0.0
+ ],
+ [
+ 115.981809741,
+ 28.882901561899999,
+ 0.0
+ ],
+ [
+ 115.970348884,
+ 28.914247308899999,
+ 0.0
+ ],
+ [
+ 115.958094977,
+ 28.926914597300001,
+ 0.0
+ ],
+ [
+ 115.845293998,
+ 28.801346973099999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4886,
+ "name": "Nanchang Changbei International Airport",
+ "country": "CN",
+ "city": "Nanchang",
+ "height": 120,
+ "level": 2,
+ "lat": "28.8653870494937",
+ "lng": "115.90181590326",
+ "radius": 23935,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.889300608,
+ 29.0803678748,
+ 120.0
+ ],
+ [
+ 116.080299232,
+ 29.013506430100001,
+ 120.0
+ ],
+ [
+ 115.913937505,
+ 28.6503900435,
+ 120.0
+ ],
+ [
+ 115.72360498099999,
+ 28.717251488900001,
+ 120.0
+ ],
+ [
+ 115.889300608,
+ 29.0803678748,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001538,
+ "name": "Quzhou Airport",
+ "country": "CN",
+ "city": "Quzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "28.967094",
+ "lng": "118.899507",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.899507,
+ 29.418198947168531,
+ 500.0
+ ],
+ [
+ 118.988968769675395,
+ 29.411316122140903,
+ 500.0
+ ],
+ [
+ 119.075677263511452,
+ 29.390879468657186,
+ 500.0
+ ],
+ [
+ 119.156967192268922,
+ 29.357517680336677,
+ 500.0
+ ],
+ [
+ 119.230346015520254,
+ 29.312256258336742,
+ 500.0
+ ],
+ [
+ 119.293572427475823,
+ 29.256484887126046,
+ 500.0
+ ],
+ [
+ 119.344725842733951,
+ 29.191913429156681,
+ 500.0
+ ],
+ [
+ 119.38226461205393,
+ 29.120518100803103,
+ 500.0
+ ],
+ [
+ 119.405071237665055,
+ 29.044479698138559,
+ 500.0
+ ],
+ [
+ 119.412483438960876,
+ 28.966115960415614,
+ 500.0
+ ],
+ [
+ 119.40431050075091,
+ 28.887810288930794,
+ 500.0
+ ],
+ [
+ 119.380834882014753,
+ 28.811939082705326,
+ 500.0
+ ],
+ [
+ 119.342799547252312,
+ 28.740799918102645,
+ 500.0
+ ],
+ [
+ 119.291381889629008,
+ 28.676542698012089,
+ 500.0
+ ],
+ [
+ 119.228155439949518,
+ 28.621105739657473,
+ 500.0
+ ],
+ [
+ 119.155040801266992,
+ 28.576158570365397,
+ 500.0
+ ],
+ [
+ 119.074247424850583,
+ 28.543052968515234,
+ 500.0
+ ],
+ [
+ 118.98820796186348,
+ 28.52278353144974,
+ 500.0
+ ],
+ [
+ 118.899507,
+ 28.515958780550626,
+ 500.0
+ ],
+ [
+ 118.810806038136519,
+ 28.52278353144974,
+ 500.0
+ ],
+ [
+ 118.724766575149417,
+ 28.543052968515234,
+ 500.0
+ ],
+ [
+ 118.643973198733008,
+ 28.576158570365397,
+ 500.0
+ ],
+ [
+ 118.570858560050482,
+ 28.621105739657473,
+ 500.0
+ ],
+ [
+ 118.507632110370992,
+ 28.676542698012089,
+ 500.0
+ ],
+ [
+ 118.456214452747687,
+ 28.740799918102645,
+ 500.0
+ ],
+ [
+ 118.418179117985247,
+ 28.811939082705326,
+ 500.0
+ ],
+ [
+ 118.39470349924909,
+ 28.887810288930794,
+ 500.0
+ ],
+ [
+ 118.386530561039123,
+ 28.966115960415614,
+ 500.0
+ ],
+ [
+ 118.393942762334945,
+ 29.044479698138559,
+ 500.0
+ ],
+ [
+ 118.416749387946069,
+ 29.120518100803103,
+ 500.0
+ ],
+ [
+ 118.454288157266049,
+ 29.191913429156681,
+ 500.0
+ ],
+ [
+ 118.505441572524177,
+ 29.256484887126046,
+ 500.0
+ ],
+ [
+ 118.568667984479745,
+ 29.312256258336742,
+ 500.0
+ ],
+ [
+ 118.642046807731077,
+ 29.357517680336677,
+ 500.0
+ ],
+ [
+ 118.723336736488548,
+ 29.390879468657186,
+ 500.0
+ ],
+ [
+ 118.810045230324604,
+ 29.411316122140903,
+ 500.0
+ ],
+ [
+ 118.899507,
+ 29.418198947168531,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2752,
+ "name": "Quzhou Airport",
+ "country": "CN",
+ "city": "Quzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "28.941457999376",
+ "lng": "118.858336256",
+ "radius": 13119,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.81698382499999,
+ 28.940366923500001,
+ 0.0
+ ],
+ [
+ 118.731964838,
+ 28.900387095,
+ 0.0
+ ],
+ [
+ 118.774985161,
+ 28.848741016799998,
+ 0.0
+ ],
+ [
+ 118.845,
+ 28.905407616400002,
+ 0.0
+ ],
+ [
+ 118.87849612,
+ 28.893498281700001,
+ 0.0
+ ],
+ [
+ 118.897454159,
+ 28.893439383899999,
+ 0.0
+ ],
+ [
+ 118.932240725,
+ 28.905919558,
+ 0.0
+ ],
+ [
+ 118.966401886,
+ 28.9303856555,
+ 0.0
+ ],
+ [
+ 118.97674586,
+ 28.944298002,
+ 0.0
+ ],
+ [
+ 118.98363672399999,
+ 28.9766535286,
+ 0.0
+ ],
+ [
+ 118.979709856,
+ 28.9928924377,
+ 0.0
+ ],
+ [
+ 118.81698382499999,
+ 28.940366923500001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2752,
+ "name": "Quzhou Airport",
+ "country": "CN",
+ "city": "Quzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "28.9878040003019",
+ "lng": "118.942005911587",
+ "radius": 13257,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.069692536,
+ 29.029584293799999,
+ 0.0
+ ],
+ [
+ 119.021637529,
+ 29.084592126099999,
+ 0.0
+ ],
+ [
+ 118.951666667,
+ 29.0279257169,
+ 0.0
+ ],
+ [
+ 118.920066527,
+ 29.039146799800001,
+ 0.0
+ ],
+ [
+ 118.901084701,
+ 29.039444827800001,
+ 0.0
+ ],
+ [
+ 118.88266249599999,
+ 29.035434903399999,
+ 0.0
+ ],
+ [
+ 118.84440445,
+ 29.014066501599999,
+ 0.0
+ ],
+ [
+ 118.819866293,
+ 28.988965108,
+ 0.0
+ ],
+ [
+ 118.814012433,
+ 28.973176550400002,
+ 0.0
+ ],
+ [
+ 118.81698382499999,
+ 28.940366923500001,
+ 0.0
+ ],
+ [
+ 118.979709856,
+ 28.9928924377,
+ 0.0
+ ],
+ [
+ 119.069692536,
+ 29.029584293799999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2752,
+ "name": "Quzhou Airport",
+ "country": "CN",
+ "city": "Quzhou",
+ "height": 120,
+ "level": 2,
+ "lat": "28.9664571438131",
+ "lng": "118.898953417419",
+ "radius": 23490,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.014517396,
+ 29.151994386799998,
+ 120.0
+ ],
+ [
+ 119.136012664,
+ 29.006815516100001,
+ 120.0
+ ],
+ [
+ 118.783172447,
+ 28.781122458799999,
+ 120.0
+ ],
+ [
+ 118.66194180799999,
+ 28.926301329800001,
+ 120.0
+ ],
+ [
+ 119.014517396,
+ 29.151994386799998,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010372,
+ "name": "Nepalgunj Airport",
+ "country": "NP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "28.102989",
+ "lng": "81.666943",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.666943,
+ 28.554151666425039,
+ 500.0
+ ],
+ [
+ 81.755664469108936,
+ 28.547269005160661,
+ 500.0
+ ],
+ [
+ 81.841656667656139,
+ 28.52683274291601,
+ 500.0
+ ],
+ [
+ 81.922277395090262,
+ 28.493471288024409,
+ 500.0
+ ],
+ [
+ 81.995055418267086,
+ 28.448209713742234,
+ 500.0
+ ],
+ [
+ 82.057768191172741,
+ 28.392437198735884,
+ 500.0
+ ],
+ [
+ 82.10851071119545,
+ 28.327863099992598,
+ 500.0
+ ],
+ [
+ 82.145753267934808,
+ 28.256463210206682,
+ 500.0
+ ],
+ [
+ 82.168386366450733,
+ 28.180418057516658,
+ 500.0
+ ],
+ [
+ 82.175751674822777,
+ 28.102045325769218,
+ 500.0
+ ],
+ [
+ 82.167658415430353,
+ 28.023728605512851,
+ 500.0
+ ],
+ [
+ 82.144385156059414,
+ 27.947844732774378,
+ 500.0
+ ],
+ [
+ 82.106667435373026,
+ 27.876691941926687,
+ 500.0
+ ],
+ [
+ 82.055672062214796,
+ 27.81242096104668,
+ 500.0
+ ],
+ [
+ 81.992959254156119,
+ 27.756971024767211,
+ 500.0
+ ],
+ [
+ 81.920434030257297,
+ 27.712012582320618,
+ 500.0
+ ],
+ [
+ 81.840288454561701,
+ 27.678898247774093,
+ 500.0
+ ],
+ [
+ 81.754936452022534,
+ 27.65862328430585,
+ 500.0
+ ],
+ [
+ 81.666943,
+ 27.651796641967056,
+ 500.0
+ ],
+ [
+ 81.578949547977473,
+ 27.65862328430585,
+ 500.0
+ ],
+ [
+ 81.493597545438305,
+ 27.678898247774093,
+ 500.0
+ ],
+ [
+ 81.413451969742709,
+ 27.712012582320618,
+ 500.0
+ ],
+ [
+ 81.340926745843888,
+ 27.756971024767211,
+ 500.0
+ ],
+ [
+ 81.27821393778521,
+ 27.81242096104668,
+ 500.0
+ ],
+ [
+ 81.22721856462698,
+ 27.876691941926687,
+ 500.0
+ ],
+ [
+ 81.189500843940593,
+ 27.947844732774378,
+ 500.0
+ ],
+ [
+ 81.166227584569654,
+ 28.023728605512851,
+ 500.0
+ ],
+ [
+ 81.15813432517723,
+ 28.102045325769218,
+ 500.0
+ ],
+ [
+ 81.165499633549274,
+ 28.180418057516658,
+ 500.0
+ ],
+ [
+ 81.188132732065199,
+ 28.256463210206682,
+ 500.0
+ ],
+ [
+ 81.225375288804557,
+ 28.327863099992598,
+ 500.0
+ ],
+ [
+ 81.276117808827266,
+ 28.392437198735884,
+ 500.0
+ ],
+ [
+ 81.338830581732921,
+ 28.448209713742234,
+ 500.0
+ ],
+ [
+ 81.411608604909745,
+ 28.493471288024409,
+ 500.0
+ ],
+ [
+ 81.492229332343868,
+ 28.52683274291601,
+ 500.0
+ ],
+ [
+ 81.578221530891071,
+ 28.547269005160661,
+ 500.0
+ ],
+ [
+ 81.666943,
+ 28.554151666425039,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284245,
+ "name": "Nepalgunj Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "28.1035744735464",
+ "lng": "81.6670016070692",
+ "radius": 3793,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.628329285199996,
+ 28.103463516400002,
+ 0.0
+ ],
+ [
+ 81.703696018,
+ 28.114349836100001,
+ 0.0
+ ],
+ [
+ 81.705673914599998,
+ 28.103699926899999,
+ 0.0
+ ],
+ [
+ 81.630305492199994,
+ 28.0928133922,
+ 0.0
+ ],
+ [
+ 81.628329285199996,
+ 28.103463516400002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284245,
+ "name": "Nepalgunj Airport",
+ "country": "NP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "28.1118292375811",
+ "lng": "81.7241032158318",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.703696018,
+ 28.114349836100001,
+ 60.0
+ ],
+ [
+ 81.7390362923,
+ 28.124354051800001,
+ 60.0
+ ],
+ [
+ 81.742781044300003,
+ 28.104153842,
+ 60.0
+ ],
+ [
+ 81.705673914599998,
+ 28.103699926899999,
+ 60.0
+ ],
+ [
+ 81.703696018,
+ 28.114349836100001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284245,
+ "name": "Nepalgunj Airport",
+ "country": "NP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "28.0953334623804",
+ "lng": "81.6099016852348",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.591222489399996,
+ 28.1030036521,
+ 60.0
+ ],
+ [
+ 81.628329285199996,
+ 28.103463516400002,
+ 60.0
+ ],
+ [
+ 81.630305492199994,
+ 28.0928133922,
+ 60.0
+ ],
+ [
+ 81.594977502800006,
+ 28.0828039658,
+ 60.0
+ ],
+ [
+ 81.591222489399996,
+ 28.1030036521,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284245,
+ "name": "Nepalgunj Airport",
+ "country": "NP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "28.1207245932086",
+ "lng": "81.7858299196173",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.7390362923,
+ 28.124354051800001,
+ 150.0
+ ],
+ [
+ 81.821522572299997,
+ 28.147661964200001,
+ 150.0
+ ],
+ [
+ 81.829365542600002,
+ 28.105174141599999,
+ 150.0
+ ],
+ [
+ 81.742781044300003,
+ 28.104153842,
+ 150.0
+ ],
+ [
+ 81.7390362923,
+ 28.124354051800001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284245,
+ "name": "Nepalgunj Airport",
+ "country": "NP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "28.0863997943104",
+ "lng": "81.5481965564547",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.504641228400004,
+ 28.101891802899999,
+ 150.0
+ ],
+ [
+ 81.591222489399996,
+ 28.1030036521,
+ 150.0
+ ],
+ [
+ 81.594977502800006,
+ 28.0828039658,
+ 150.0
+ ],
+ [
+ 81.512571152099994,
+ 28.059413471,
+ 150.0
+ ],
+ [
+ 81.504641228400004,
+ 28.101891802899999,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284246,
+ "name": "Nepalgunj Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "28.1035823637209",
+ "lng": "81.667000142215",
+ "radius": 4741,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 81.652910194300006,
+ 28.138000256800002,
+ 0.0
+ ],
+ [
+ 81.676417195,
+ 28.1405997709,
+ 0.0
+ ],
+ [
+ 81.684847604300003,
+ 28.1394626821,
+ 0.0
+ ],
+ [
+ 81.692825339400002,
+ 28.136804368899998,
+ 0.0
+ ],
+ [
+ 81.706062180100005,
+ 28.127450665400001,
+ 0.0
+ ],
+ [
+ 81.710742615800001,
+ 28.121164386499998,
+ 0.0
+ ],
+ [
+ 81.715214370499993,
+ 28.106735381299998,
+ 0.0
+ ],
+ [
+ 81.714810871599994,
+ 28.099223432799999,
+ 0.0
+ ],
+ [
+ 81.712645859199995,
+ 28.091949619600001,
+ 0.0
+ ],
+ [
+ 81.703483793499998,
+ 28.0793633342,
+ 0.0
+ ],
+ [
+ 81.689313506299996,
+ 28.071151718300001,
+ 0.0
+ ],
+ [
+ 81.657574692699995,
+ 28.066567261599999,
+ 0.0
+ ],
+ [
+ 81.641177566899998,
+ 28.070363607699999,
+ 0.0
+ ],
+ [
+ 81.627945876300004,
+ 28.0797152283,
+ 0.0
+ ],
+ [
+ 81.6201669063,
+ 28.093006312,
+ 0.0
+ ],
+ [
+ 81.618787479299996,
+ 28.100427584799998,
+ 0.0
+ ],
+ [
+ 81.619187282599995,
+ 28.107939687199998,
+ 0.0
+ ],
+ [
+ 81.621349208599995,
+ 28.115214289299999,
+ 0.0
+ ],
+ [
+ 81.630509765300005,
+ 28.127803162900001,
+ 0.0
+ ],
+ [
+ 81.637108335700006,
+ 28.132566952,
+ 0.0
+ ],
+ [
+ 81.652910194300006,
+ 28.138000256800002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30280566,
+ "name": "Tulsipur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "28.111118",
+ "lng": "82.294353",
+ "radius": 458,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 82.294353,
+ 28.115250780339075,
+ 0.0
+ ],
+ [
+ 82.29516241617246,
+ 28.11518799174948,
+ 0.0
+ ],
+ [
+ 82.295947235886743,
+ 28.115001533992363,
+ 0.0
+ ],
+ [
+ 82.296683610368277,
+ 28.114697073103244,
+ 0.0
+ ],
+ [
+ 82.297349163451543,
+ 28.114283860908099,
+ 0.0
+ ],
+ [
+ 82.297923671685595,
+ 28.113774453798438,
+ 0.0
+ ],
+ [
+ 82.2983896789288,
+ 28.113184331073164,
+ 0.0
+ ],
+ [
+ 82.298733026744841,
+ 28.112531424460592,
+ 0.0
+ ],
+ [
+ 82.298943284483997,
+ 28.11183557313344,
+ 0.0
+ ],
+ [
+ 82.299014065995948,
+ 28.111117920792793,
+ 0.0
+ ],
+ [
+ 82.29894322337725,
+ 28.110400273153783,
+ 0.0
+ ],
+ [
+ 82.298732911901723,
+ 28.109704435364463,
+ 0.0
+ ],
+ [
+ 82.29838952420107,
+ 28.10905154949306,
+ 0.0
+ ],
+ [
+ 82.297923495735702,
+ 28.108461452210609,
+ 0.0
+ ],
+ [
+ 82.297348987501664,
+ 28.107952072176627,
+ 0.0
+ ],
+ [
+ 82.296683455640547,
+ 28.107538885424287,
+ 0.0
+ ],
+ [
+ 82.295947121043611,
+ 28.107234445276337,
+ 0.0
+ ],
+ [
+ 82.295162355065699,
+ 28.107048001057073,
+ 0.0
+ ],
+ [
+ 82.294353,
+ 28.106985217169115,
+ 0.0
+ ],
+ [
+ 82.293543644934303,
+ 28.107048001057073,
+ 0.0
+ ],
+ [
+ 82.292758878956391,
+ 28.107234445276337,
+ 0.0
+ ],
+ [
+ 82.292022544359455,
+ 28.107538885424287,
+ 0.0
+ ],
+ [
+ 82.291357012498338,
+ 28.107952072176627,
+ 0.0
+ ],
+ [
+ 82.2907825042643,
+ 28.108461452210609,
+ 0.0
+ ],
+ [
+ 82.290316475798932,
+ 28.10905154949306,
+ 0.0
+ ],
+ [
+ 82.289973088098279,
+ 28.109704435364463,
+ 0.0
+ ],
+ [
+ 82.289762776622752,
+ 28.110400273153783,
+ 0.0
+ ],
+ [
+ 82.289691934004054,
+ 28.111117920792793,
+ 0.0
+ ],
+ [
+ 82.289762715516005,
+ 28.11183557313344,
+ 0.0
+ ],
+ [
+ 82.289972973255161,
+ 28.112531424460592,
+ 0.0
+ ],
+ [
+ 82.290316321071202,
+ 28.113184331073164,
+ 0.0
+ ],
+ [
+ 82.290782328314407,
+ 28.113774453798438,
+ 0.0
+ ],
+ [
+ 82.291356836548459,
+ 28.114283860908099,
+ 0.0
+ ],
+ [
+ 82.292022389631725,
+ 28.114697073103244,
+ 0.0
+ ],
+ [
+ 82.292758764113259,
+ 28.115001533992363,
+ 0.0
+ ],
+ [
+ 82.293543583827542,
+ 28.11518799174948,
+ 0.0
+ ],
+ [
+ 82.294353,
+ 28.115250780339075,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284880,
+ "name": "Rolpa Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "28.266949",
+ "lng": "82.756448",
+ "radius": 306,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 82.756448,
+ 28.269710139970801,
+ 0.0
+ ],
+ [
+ 82.756989567022316,
+ 28.269668190985598,
+ 0.0
+ ],
+ [
+ 82.757514677564089,
+ 28.269543618723961,
+ 0.0
+ ],
+ [
+ 82.75800737531624,
+ 28.269340208525517,
+ 0.0
+ ],
+ [
+ 82.758452689097197,
+ 28.26906414132673,
+ 0.0
+ ],
+ [
+ 82.758837087842295,
+ 28.268723805805525,
+ 0.0
+ ],
+ [
+ 82.759148891790304,
+ 28.268329543433406,
+ 0.0
+ ],
+ [
+ 82.759378627366985,
+ 28.267893334188809,
+ 0.0
+ ],
+ [
+ 82.759519314982938,
+ 28.267428432489339,
+ 0.0
+ ],
+ [
+ 82.759566681007072,
+ 28.266948964412261,
+ 0.0
+ ],
+ [
+ 82.759519287487251,
+ 28.266469498447726,
+ 0.0
+ ],
+ [
+ 82.759378575692011,
+ 28.266004602831078,
+ 0.0
+ ],
+ [
+ 82.759148822168783,
+ 28.265568402905913,
+ 0.0
+ ],
+ [
+ 82.758837008671634,
+ 28.265174151965759,
+ 0.0
+ ],
+ [
+ 82.758452609926522,
+ 28.264833828610204,
+ 0.0
+ ],
+ [
+ 82.758007305694719,
+ 28.264557772843375,
+ 0.0
+ ],
+ [
+ 82.757514625889101,
+ 28.264354371964352,
+ 0.0
+ ],
+ [
+ 82.756989539526629,
+ 28.264229805785558,
+ 0.0
+ ],
+ [
+ 82.756448,
+ 28.264187858912887,
+ 0.0
+ ],
+ [
+ 82.755906460473383,
+ 28.264229805785558,
+ 0.0
+ ],
+ [
+ 82.755381374110911,
+ 28.264354371964352,
+ 0.0
+ ],
+ [
+ 82.754888694305293,
+ 28.264557772843375,
+ 0.0
+ ],
+ [
+ 82.75444339007349,
+ 28.264833828610204,
+ 0.0
+ ],
+ [
+ 82.754058991328378,
+ 28.265174151965759,
+ 0.0
+ ],
+ [
+ 82.753747177831229,
+ 28.265568402905913,
+ 0.0
+ ],
+ [
+ 82.753517424308001,
+ 28.266004602831078,
+ 0.0
+ ],
+ [
+ 82.753376712512761,
+ 28.266469498447726,
+ 0.0
+ ],
+ [
+ 82.75332931899294,
+ 28.266948964412261,
+ 0.0
+ ],
+ [
+ 82.753376685017074,
+ 28.267428432489339,
+ 0.0
+ ],
+ [
+ 82.753517372633027,
+ 28.267893334188809,
+ 0.0
+ ],
+ [
+ 82.753747108209708,
+ 28.268329543433406,
+ 0.0
+ ],
+ [
+ 82.754058912157717,
+ 28.268723805805525,
+ 0.0
+ ],
+ [
+ 82.754443310902815,
+ 28.26906414132673,
+ 0.0
+ ],
+ [
+ 82.754888624683772,
+ 28.269340208525517,
+ 0.0
+ ],
+ [
+ 82.755381322435923,
+ 28.269543618723961,
+ 0.0
+ ],
+ [
+ 82.755906432977696,
+ 28.269668190985598,
+ 0.0
+ ],
+ [
+ 82.756448,
+ 28.269710139970801,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282799,
+ "name": "Baglung Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "28.213427",
+ "lng": "83.666083",
+ "radius": 445,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.666083,
+ 28.217442414372055,
+ 0.0
+ ],
+ [
+ 83.66687018898152,
+ 28.217381408958243,
+ 0.0
+ ],
+ [
+ 83.667633457007483,
+ 28.217200246536567,
+ 0.0
+ ],
+ [
+ 83.668349610264116,
+ 28.216904432214754,
+ 0.0
+ ],
+ [
+ 83.668996887089406,
+ 28.216502955048639,
+ 0.0
+ ],
+ [
+ 83.669555619396021,
+ 28.216008014807223,
+ 0.0
+ ],
+ [
+ 83.670008830385939,
+ 28.215434651157548,
+ 0.0
+ ],
+ [
+ 83.670342750381636,
+ 28.214800286552315,
+ 0.0
+ ],
+ [
+ 83.670547235101111,
+ 28.214124196726196,
+ 0.0
+ ],
+ [
+ 83.67061607368062,
+ 28.21342692490537,
+ 0.0
+ ],
+ [
+ 83.670547177111146,
+ 28.212729657542194,
+ 0.0
+ ],
+ [
+ 83.670342641396161,
+ 28.212053580551391,
+ 0.0
+ ],
+ [
+ 83.670008683550208,
+ 28.211419235611018,
+ 0.0
+ ],
+ [
+ 83.669555452420582,
+ 28.210845896083864,
+ 0.0
+ ],
+ [
+ 83.668996720113952,
+ 28.210350981513088,
+ 0.0
+ ],
+ [
+ 83.668349463428385,
+ 28.209949528469476,
+ 0.0
+ ],
+ [
+ 83.667633348021994,
+ 28.209653733812516,
+ 0.0
+ ],
+ [
+ 83.666870130991555,
+ 28.209472584226162,
+ 0.0
+ ],
+ [
+ 83.666083,
+ 28.209411583270008,
+ 0.0
+ ],
+ [
+ 83.665295869008446,
+ 28.209472584226162,
+ 0.0
+ ],
+ [
+ 83.664532651978007,
+ 28.209653733812516,
+ 0.0
+ ],
+ [
+ 83.663816536571616,
+ 28.209949528469476,
+ 0.0
+ ],
+ [
+ 83.663169279886048,
+ 28.210350981513088,
+ 0.0
+ ],
+ [
+ 83.662610547579419,
+ 28.210845896083864,
+ 0.0
+ ],
+ [
+ 83.662157316449793,
+ 28.211419235611018,
+ 0.0
+ ],
+ [
+ 83.66182335860384,
+ 28.212053580551391,
+ 0.0
+ ],
+ [
+ 83.661618822888855,
+ 28.212729657542194,
+ 0.0
+ ],
+ [
+ 83.661549926319381,
+ 28.21342692490537,
+ 0.0
+ ],
+ [
+ 83.66161876489889,
+ 28.214124196726196,
+ 0.0
+ ],
+ [
+ 83.661823249618365,
+ 28.214800286552315,
+ 0.0
+ ],
+ [
+ 83.662157169614062,
+ 28.215434651157548,
+ 0.0
+ ],
+ [
+ 83.662610380603979,
+ 28.216008014807223,
+ 0.0
+ ],
+ [
+ 83.663169112910595,
+ 28.216502955048639,
+ 0.0
+ ],
+ [
+ 83.663816389735885,
+ 28.216904432214754,
+ 0.0
+ ],
+ [
+ 83.664532542992518,
+ 28.217200246536567,
+ 0.0
+ ],
+ [
+ 83.665295811018481,
+ 28.217381408958243,
+ 0.0
+ ],
+ [
+ 83.666083,
+ 28.217442414372055,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281963,
+ "name": "Palungtar Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "28.038743",
+ "lng": "84.466158",
+ "radius": 696,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 84.466158,
+ 28.045023447628253,
+ 0.0
+ ],
+ [
+ 84.467387229568146,
+ 28.044928028060067,
+ 0.0
+ ],
+ [
+ 84.468579103273214,
+ 28.044644669119339,
+ 0.0
+ ],
+ [
+ 84.469697401056607,
+ 28.044181981930738,
+ 0.0
+ ],
+ [
+ 84.47070813986555,
+ 28.043554027165413,
+ 0.0
+ ],
+ [
+ 84.47158060671039,
+ 28.042779887554538,
+ 0.0
+ ],
+ [
+ 84.472288292128866,
+ 28.041883087751263,
+ 0.0
+ ],
+ [
+ 84.472809695662292,
+ 28.040890879206721,
+ 0.0
+ ],
+ [
+ 84.473128978869937,
+ 28.039833411829619,
+ 0.0
+ ],
+ [
+ 84.473236446072292,
+ 28.038742817636784,
+ 0.0
+ ],
+ [
+ 84.473128838276168,
+ 28.03765223426857,
+ 0.0
+ ],
+ [
+ 84.472809431432438,
+ 28.036594798059724,
+ 0.0
+ ],
+ [
+ 84.472287936132972,
+ 28.035602637267711,
+ 0.0
+ ],
+ [
+ 84.471580201886795,
+ 28.034705896041601,
+ 0.0
+ ],
+ [
+ 84.470707735041941,
+ 28.033931818767236,
+ 0.0
+ ],
+ [
+ 84.469697045060698,
+ 28.033303922579066,
+ 0.0
+ ],
+ [
+ 84.468578839043374,
+ 28.032841283143014,
+ 0.0
+ ],
+ [
+ 84.467387088974391,
+ 28.032557955370532,
+ 0.0
+ ],
+ [
+ 84.466158,
+ 28.032462546626967,
+ 0.0
+ ],
+ [
+ 84.464928911025595,
+ 28.032557955370532,
+ 0.0
+ ],
+ [
+ 84.463737160956612,
+ 28.032841283143014,
+ 0.0
+ ],
+ [
+ 84.462618954939288,
+ 28.033303922579066,
+ 0.0
+ ],
+ [
+ 84.461608264958045,
+ 28.033931818767236,
+ 0.0
+ ],
+ [
+ 84.460735798113191,
+ 28.034705896041601,
+ 0.0
+ ],
+ [
+ 84.460028063867014,
+ 28.035602637267711,
+ 0.0
+ ],
+ [
+ 84.459506568567548,
+ 28.036594798059724,
+ 0.0
+ ],
+ [
+ 84.459187161723818,
+ 28.03765223426857,
+ 0.0
+ ],
+ [
+ 84.459079553927694,
+ 28.038742817636784,
+ 0.0
+ ],
+ [
+ 84.459187021130049,
+ 28.039833411829619,
+ 0.0
+ ],
+ [
+ 84.459506304337694,
+ 28.040890879206721,
+ 0.0
+ ],
+ [
+ 84.46002770787112,
+ 28.041883087751263,
+ 0.0
+ ],
+ [
+ 84.460735393289596,
+ 28.042779887554538,
+ 0.0
+ ],
+ [
+ 84.461607860134436,
+ 28.043554027165413,
+ 0.0
+ ],
+ [
+ 84.462618598943379,
+ 28.044181981930738,
+ 0.0
+ ],
+ [
+ 84.463736896726772,
+ 28.044644669119339,
+ 0.0
+ ],
+ [
+ 84.46492877043184,
+ 28.044928028060067,
+ 0.0
+ ],
+ [
+ 84.466158,
+ 28.045023447628253,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008966,
+ "name": "Pokhara Airport",
+ "country": "NP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "28.200832",
+ "lng": "83.981841",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.981841,
+ 28.651988186699395,
+ 500.0
+ ],
+ [
+ 84.070644666741899,
+ 28.645105506905768,
+ 500.0
+ ],
+ [
+ 84.156716396892293,
+ 28.624669200318845,
+ 500.0
+ ],
+ [
+ 84.237411425735857,
+ 28.59130770733865,
+ 500.0
+ ],
+ [
+ 84.310256153936592,
+ 28.546046149321871,
+ 500.0
+ ],
+ [
+ 84.373025952387536,
+ 28.49027376179907,
+ 500.0
+ ],
+ [
+ 84.42381408841095,
+ 28.425699958595043,
+ 500.0
+ ],
+ [
+ 84.461089526418533,
+ 28.35430058006251,
+ 500.0
+ ],
+ [
+ 84.483741883555993,
+ 28.278256184505718,
+ 500.0
+ ],
+ [
+ 84.491112390313404,
+ 28.199884462059075,
+ 500.0
+ ],
+ [
+ 84.483010276935048,
+ 28.121568982064343,
+ 500.0
+ ],
+ [
+ 84.459714544169486,
+ 28.045686531493097,
+ 500.0
+ ],
+ [
+ 84.42196155596946,
+ 27.974535270815107,
+ 500.0
+ ],
+ [
+ 84.370919296926161,
+ 27.910265835401784,
+ 500.0
+ ],
+ [
+ 84.308149463040621,
+ 27.854817356801117,
+ 500.0
+ ],
+ [
+ 84.235558803570783,
+ 27.809860180641859,
+ 500.0
+ ],
+ [
+ 84.155341312613359,
+ 27.776746827067807,
+ 500.0
+ ],
+ [
+ 84.069912993525662,
+ 27.756472484418605,
+ 500.0
+ ],
+ [
+ 83.981841,
+ 27.749646054561683,
+ 500.0
+ ],
+ [
+ 83.893769006474344,
+ 27.756472484418605,
+ 500.0
+ ],
+ [
+ 83.808340687386647,
+ 27.776746827067807,
+ 500.0
+ ],
+ [
+ 83.728123196429223,
+ 27.809860180641859,
+ 500.0
+ ],
+ [
+ 83.655532536959385,
+ 27.854817356801117,
+ 500.0
+ ],
+ [
+ 83.592762703073845,
+ 27.910265835401784,
+ 500.0
+ ],
+ [
+ 83.541720444030545,
+ 27.974535270815107,
+ 500.0
+ ],
+ [
+ 83.503967455830519,
+ 28.045686531493097,
+ 500.0
+ ],
+ [
+ 83.480671723064958,
+ 28.121568982064343,
+ 500.0
+ ],
+ [
+ 83.472569609686602,
+ 28.199884462059075,
+ 500.0
+ ],
+ [
+ 83.479940116444013,
+ 28.278256184505718,
+ 500.0
+ ],
+ [
+ 83.502592473581473,
+ 28.35430058006251,
+ 500.0
+ ],
+ [
+ 83.539867911589056,
+ 28.425699958595043,
+ 500.0
+ ],
+ [
+ 83.59065604761247,
+ 28.49027376179907,
+ 500.0
+ ],
+ [
+ 83.653425846063413,
+ 28.546046149321871,
+ 500.0
+ ],
+ [
+ 83.726270574264149,
+ 28.59130770733865,
+ 500.0
+ ],
+ [
+ 83.806965603107713,
+ 28.624669200318845,
+ 500.0
+ ],
+ [
+ 83.893037333258107,
+ 28.645105506905768,
+ 500.0
+ ],
+ [
+ 83.981841,
+ 28.651988186699395,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285317,
+ "name": "Pokhara Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "28.2012258205726",
+ "lng": "83.9807148435668",
+ "radius": 4642,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.945622747,
+ 28.2193437078,
+ 0.0
+ ],
+ [
+ 83.960224785099996,
+ 28.233583043500001,
+ 0.0
+ ],
+ [
+ 83.967443572299999,
+ 28.237596610499999,
+ 0.0
+ ],
+ [
+ 83.983900422900007,
+ 28.241278576900001,
+ 0.0
+ ],
+ [
+ 84.000634118400001,
+ 28.2387432835,
+ 0.0
+ ],
+ [
+ 84.008187583600005,
+ 28.235240070900002,
+ 0.0
+ ],
+ [
+ 84.020030563199995,
+ 28.224522000899999,
+ 0.0
+ ],
+ [
+ 84.025899862299994,
+ 28.210486151200001,
+ 0.0
+ ],
+ [
+ 84.026231303200007,
+ 28.2029714494,
+ 0.0
+ ],
+ [
+ 84.0247827078,
+ 28.195560228800002,
+ 0.0
+ ],
+ [
+ 84.016868212600002,
+ 28.1823177429,
+ 0.0
+ ],
+ [
+ 84.002240886,
+ 28.168065905599999,
+ 0.0
+ ],
+ [
+ 83.995022496600001,
+ 28.164058348699999,
+ 0.0
+ ],
+ [
+ 83.978574408300005,
+ 28.160387249500001,
+ 0.0
+ ],
+ [
+ 83.961854349099994,
+ 28.162929557399998,
+ 0.0
+ ],
+ [
+ 83.947750798900003,
+ 28.171246086699998,
+ 0.0
+ ],
+ [
+ 83.938701347099993,
+ 28.183899945299999,
+ 0.0
+ ],
+ [
+ 83.936604000499997,
+ 28.191189573500001,
+ 0.0
+ ],
+ [
+ 83.936271901200001,
+ 28.198704251500001,
+ 0.0
+ ],
+ [
+ 83.937719931199993,
+ 28.206115564400001,
+ 0.0
+ ],
+ [
+ 83.945622747,
+ 28.2193437078,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285316,
+ "name": "Pokhara Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "28.2008297460904",
+ "lng": "83.9812548018424",
+ "radius": 3699,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.952714502399999,
+ 28.1790480467,
+ 0.0
+ ],
+ [
+ 84.000380974,
+ 28.229520775899999,
+ 0.0
+ ],
+ [
+ 84.009795292500002,
+ 28.222617171700001,
+ 0.0
+ ],
+ [
+ 83.962123825800006,
+ 28.172143861,
+ 0.0
+ ],
+ [
+ 83.952714502399999,
+ 28.1790480467,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285316,
+ "name": "Pokhara Airport",
+ "country": "NP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "28.2394082496088",
+ "lng": "84.0176906141446",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 84.000380974,
+ 28.229520775899999,
+ 60.0
+ ],
+ [
+ 84.0196716616,
+ 28.257499213100001,
+ 60.0
+ ],
+ [
+ 84.037526937799996,
+ 28.244403662500002,
+ 60.0
+ ],
+ [
+ 84.009795292500002,
+ 28.222617171700001,
+ 60.0
+ ],
+ [
+ 84.000380974,
+ 28.229520775899999,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285316,
+ "name": "Pokhara Airport",
+ "country": "NP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "28.1622559869508",
+ "lng": "83.9448245725402",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.9250037324,
+ 28.157257682899999,
+ 60.0
+ ],
+ [
+ 83.952714502399999,
+ 28.1790480467,
+ 60.0
+ ],
+ [
+ 83.962123825800006,
+ 28.172143861,
+ 60.0
+ ],
+ [
+ 83.942851364,
+ 28.144163912700002,
+ 60.0
+ ],
+ [
+ 83.9250037324,
+ 28.157257682899999,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285316,
+ "name": "Pokhara Airport",
+ "country": "NP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "28.2817990700387",
+ "lng": "84.0577679318851",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 84.0196716616,
+ 28.257499213100001,
+ 150.0
+ ],
+ [
+ 84.064722682,
+ 28.322771686900001,
+ 150.0
+ ],
+ [
+ 84.102278192699998,
+ 28.295217025199999,
+ 150.0
+ ],
+ [
+ 84.037526937799996,
+ 28.244403662500002,
+ 150.0
+ ],
+ [
+ 84.0196716616,
+ 28.257499213100001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285316,
+ "name": "Pokhara Airport",
+ "country": "NP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "28.1198481591591",
+ "lng": "83.9048141082099",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.860389117400004,
+ 28.106391838,
+ 150.0
+ ],
+ [
+ 83.9250037324,
+ 28.157257682899999,
+ 150.0
+ ],
+ [
+ 83.942851364,
+ 28.144163912700002,
+ 150.0
+ ],
+ [
+ 83.897921408399995,
+ 28.078866894600001,
+ 150.0
+ ],
+ [
+ 83.860389117400004,
+ 28.106391838,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295492,
+ "name": "Mountain Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "28",
+ "lng": "85.333",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.333,
+ 28.004511841854537,
+ 0.0
+ ],
+ [
+ 85.333882736901487,
+ 28.004443294027311,
+ 0.0
+ ],
+ [
+ 85.334738649021247,
+ 28.00423973358836,
+ 0.0
+ ],
+ [
+ 85.335541727029252,
+ 28.003907346343311,
+ 0.0
+ ],
+ [
+ 85.336267567674028,
+ 28.003456232820689,
+ 0.0
+ ],
+ [
+ 85.336894115520451,
+ 28.002900101238474,
+ 0.0
+ ],
+ [
+ 85.337402333229718,
+ 28.0022558508226,
+ 0.0
+ ],
+ [
+ 85.337776779999217,
+ 28.001543058157655,
+ 0.0
+ ],
+ [
+ 85.338006080586339,
+ 28.000783382198016,
+ 0.0
+ ],
+ [
+ 85.338083270682191,
+ 27.99999990603764,
+ 0.0
+ ],
+ [
+ 85.338006008171959,
+ 27.999216435454571,
+ 0.0
+ ],
+ [
+ 85.337776643904704,
+ 27.998456775554146,
+ 0.0
+ ],
+ [
+ 85.337402149870087,
+ 27.997744007493328,
+ 0.0
+ ],
+ [
+ 85.336893907011543,
+ 27.997099787258907,
+ 0.0
+ ],
+ [
+ 85.336267359165134,
+ 27.996543687795118,
+ 0.0
+ ],
+ [
+ 85.335541543669592,
+ 27.996092604453921,
+ 0.0
+ ],
+ [
+ 85.334738512926734,
+ 27.995760241813006,
+ 0.0
+ ],
+ [
+ 85.333882664487106,
+ 27.995556697433265,
+ 0.0
+ ],
+ [
+ 85.333,
+ 27.995488155183342,
+ 0.0
+ ],
+ [
+ 85.332117335512891,
+ 27.995556697433265,
+ 0.0
+ ],
+ [
+ 85.331261487073263,
+ 27.995760241813006,
+ 0.0
+ ],
+ [
+ 85.330458456330405,
+ 27.996092604453921,
+ 0.0
+ ],
+ [
+ 85.329732640834862,
+ 27.996543687795118,
+ 0.0
+ ],
+ [
+ 85.329106092988454,
+ 27.997099787258907,
+ 0.0
+ ],
+ [
+ 85.32859785012991,
+ 27.997744007493328,
+ 0.0
+ ],
+ [
+ 85.328223356095293,
+ 27.998456775554146,
+ 0.0
+ ],
+ [
+ 85.327993991828038,
+ 27.999216435454571,
+ 0.0
+ ],
+ [
+ 85.327916729317806,
+ 27.99999990603764,
+ 0.0
+ ],
+ [
+ 85.327993919413657,
+ 28.000783382198016,
+ 0.0
+ ],
+ [
+ 85.32822322000078,
+ 28.001543058157655,
+ 0.0
+ ],
+ [
+ 85.328597666770278,
+ 28.0022558508226,
+ 0.0
+ ],
+ [
+ 85.329105884479546,
+ 28.002900101238474,
+ 0.0
+ ],
+ [
+ 85.329732432325969,
+ 28.003456232820689,
+ 0.0
+ ],
+ [
+ 85.330458272970745,
+ 28.003907346343311,
+ 0.0
+ ],
+ [
+ 85.33126135097875,
+ 28.00423973358836,
+ 0.0
+ ],
+ [
+ 85.33211726309851,
+ 28.004443294027311,
+ 0.0
+ ],
+ [
+ 85.333,
+ 28.004511841854537,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282609,
+ "name": "Along Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "28.1753108837402",
+ "lng": "94.8020388601689",
+ "radius": 6834,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.772677126700003,
+ 28.162807533500001,
+ 0.0
+ ],
+ [
+ 94.824099307200001,
+ 28.196482388300002,
+ 0.0
+ ],
+ [
+ 94.850319118100003,
+ 28.219670937899998,
+ 0.0
+ ],
+ [
+ 94.864165327699993,
+ 28.203238495099999,
+ 0.0
+ ],
+ [
+ 94.831401210199999,
+ 28.1878194534,
+ 0.0
+ ],
+ [
+ 94.779976546300006,
+ 28.154144477300001,
+ 0.0
+ ],
+ [
+ 94.7537779779,
+ 28.130951372799998,
+ 0.0
+ ],
+ [
+ 94.739929784400005,
+ 28.147381241400002,
+ 0.0
+ ],
+ [
+ 94.772677126700003,
+ 28.162807533500001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286875,
+ "name": "Tezu Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "27.9412229825706",
+ "lng": "96.1344532826709",
+ "radius": 7375,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 96.106028230099994,
+ 27.918905504600001,
+ 0.0
+ ],
+ [
+ 96.153399313199998,
+ 27.970355809899999,
+ 0.0
+ ],
+ [
+ 96.172284883100005,
+ 27.998524141,
+ 0.0
+ ],
+ [
+ 96.190263271800006,
+ 27.985606857400001,
+ 0.0
+ ],
+ [
+ 96.162878474,
+ 27.9635461819,
+ 0.0
+ ],
+ [
+ 96.115502320600001,
+ 27.912095272,
+ 0.0
+ ],
+ [
+ 96.0966344733,
+ 27.883925570900001,
+ 0.0
+ ],
+ [
+ 96.078664122600003,
+ 27.896841161699999,
+ 0.0
+ ],
+ [
+ 96.106028230099994,
+ 27.918905504600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7769,
+ "name": "Xichang Qingshan Airport",
+ "country": "CN",
+ "city": "Xichang",
+ "height": 0,
+ "level": 2,
+ "lat": "27.9453095058635",
+ "lng": "102.188144952404",
+ "radius": 13879,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.162222224,
+ 27.909221721600002,
+ 0.0
+ ],
+ [
+ 102.153881934,
+ 27.824220583300001,
+ 0.0
+ ],
+ [
+ 102.229517575,
+ 27.8259678374,
+ 0.0
+ ],
+ [
+ 102.20949946499999,
+ 27.910943258500001,
+ 0.0
+ ],
+ [
+ 102.237248788,
+ 27.927556903900001,
+ 0.0
+ ],
+ [
+ 102.248003256,
+ 27.941166634199998,
+ 0.0
+ ],
+ [
+ 102.254406378,
+ 27.956771372399999,
+ 0.0
+ ],
+ [
+ 102.257683912,
+ 28.008380107699999,
+ 0.0
+ ],
+ [
+ 102.248972482,
+ 28.038478994599998,
+ 0.0
+ ],
+ [
+ 102.237924369,
+ 28.0519111668,
+ 0.0
+ ],
+ [
+ 102.20612814499999,
+ 28.0691142238,
+ 0.0
+ ],
+ [
+ 102.162222224,
+ 27.909221721600002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7769,
+ "name": "Xichang Qingshan Airport",
+ "country": "CN",
+ "city": "Xichang",
+ "height": 0,
+ "level": 2,
+ "lat": "28.0330174441958",
+ "lng": "102.180201566431",
+ "radius": 13878,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.214453186,
+ 28.154114572299999,
+ 0.0
+ ],
+ [
+ 102.1388136,
+ 28.152367375,
+ 0.0
+ ],
+ [
+ 102.158822437,
+ 28.067377667300001,
+ 0.0
+ ],
+ [
+ 102.13973676,
+ 28.059080714899999,
+ 0.0
+ ],
+ [
+ 102.125809163,
+ 28.047926016600002,
+ 0.0
+ ],
+ [
+ 102.10989292399999,
+ 28.0181626191,
+ 0.0
+ ],
+ [
+ 102.11064847,
+ 27.971655351,
+ 0.0
+ ],
+ [
+ 102.119389868,
+ 27.939813971100001,
+ 0.0
+ ],
+ [
+ 102.130447721,
+ 27.926395429500001,
+ 0.0
+ ],
+ [
+ 102.162222224,
+ 27.909221721600002,
+ 0.0
+ ],
+ [
+ 102.20612814499999,
+ 28.0691142238,
+ 0.0
+ ],
+ [
+ 102.214453186,
+ 28.154114572299999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7769,
+ "name": "Xichang Qingshan Airport",
+ "country": "CN",
+ "city": "Xichang",
+ "height": 120,
+ "level": 2,
+ "lat": "27.988770086579",
+ "lng": "102.183331884477",
+ "radius": 23990,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.081291196,
+ 28.184842728500001,
+ 120.0
+ ],
+ [
+ 102.285351268,
+ 28.184851343199998,
+ 120.0
+ ],
+ [
+ 102.28500201,
+ 27.792622408,
+ 120.0
+ ],
+ [
+ 102.081683002,
+ 27.792613793299999,
+ 120.0
+ ],
+ [
+ 102.081291196,
+ 28.184842728500001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001324,
+ "name": "Xichang Qingshan Airport",
+ "country": "CN",
+ "city": "Xichang",
+ "height": 500,
+ "level": 2,
+ "lat": "27.989167",
+ "lng": "102.184444",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.184444,
+ 28.440337186105424,
+ 500.0
+ ],
+ [
+ 102.273070363448568,
+ 28.433454546402235,
+ 500.0
+ ],
+ [
+ 102.3589705412504,
+ 28.413018335785051,
+ 500.0
+ ],
+ [
+ 102.439505299874995,
+ 28.3796569253572,
+ 500.0
+ ],
+ [
+ 102.512206144077581,
+ 28.334395332528455,
+ 500.0
+ ],
+ [
+ 102.574852938106716,
+ 28.278622669940951,
+ 500.0
+ ],
+ [
+ 102.625542681054114,
+ 28.214048228584478,
+ 500.0
+ ],
+ [
+ 102.662747195669851,
+ 28.142647745808063,
+ 500.0
+ ],
+ [
+ 102.685358014139752,
+ 28.066601714709208,
+ 500.0
+ ],
+ [
+ 102.692717310566366,
+ 27.988227811812184,
+ 500.0
+ ],
+ [
+ 102.684634297915636,
+ 27.909909652261895,
+ 500.0
+ ],
+ [
+ 102.661387042713983,
+ 27.834024129013653,
+ 500.0
+ ],
+ [
+ 102.623710128473618,
+ 27.76286956221918,
+ 500.0
+ ],
+ [
+ 102.572769003474633,
+ 27.698596787567265,
+ 500.0
+ ],
+ [
+ 102.510122174617138,
+ 27.643145159357722,
+ 500.0
+ ],
+ [
+ 102.437672659105985,
+ 27.598185247096726,
+ 500.0
+ ],
+ [
+ 102.35761028801025,
+ 27.565069773890432,
+ 500.0
+ ],
+ [
+ 102.272346581768531,
+ 27.544794089801691,
+ 500.0
+ ],
+ [
+ 102.184444,
+ 27.537967200821679,
+ 500.0
+ ],
+ [
+ 102.096541418231467,
+ 27.544794089801691,
+ 500.0
+ ],
+ [
+ 102.011277711989749,
+ 27.565069773890432,
+ 500.0
+ ],
+ [
+ 101.931215340894013,
+ 27.598185247096726,
+ 500.0
+ ],
+ [
+ 101.858765825382861,
+ 27.643145159357722,
+ 500.0
+ ],
+ [
+ 101.796118996525365,
+ 27.698596787567265,
+ 500.0
+ ],
+ [
+ 101.74517787152638,
+ 27.76286956221918,
+ 500.0
+ ],
+ [
+ 101.707500957286015,
+ 27.834024129013653,
+ 500.0
+ ],
+ [
+ 101.684253702084362,
+ 27.909909652261895,
+ 500.0
+ ],
+ [
+ 101.676170689433633,
+ 27.988227811812184,
+ 500.0
+ ],
+ [
+ 101.683529985860247,
+ 28.066601714709208,
+ 500.0
+ ],
+ [
+ 101.706140804330147,
+ 28.142647745808063,
+ 500.0
+ ],
+ [
+ 101.743345318945885,
+ 28.214048228584478,
+ 500.0
+ ],
+ [
+ 101.794035061893283,
+ 28.278622669940951,
+ 500.0
+ ],
+ [
+ 101.856681855922417,
+ 28.334395332528455,
+ 500.0
+ ],
+ [
+ 101.929382700125004,
+ 28.3796569253572,
+ 500.0
+ ],
+ [
+ 102.009917458749598,
+ 28.413018335785051,
+ 500.0
+ ],
+ [
+ 102.09581763655143,
+ 28.433454546402235,
+ 500.0
+ ],
+ [
+ 102.184444,
+ 28.440337186105424,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8849,
+ "name": "Zunyi Xinzhou Airport",
+ "country": "CN",
+ "city": "Zunyi",
+ "height": 0,
+ "level": 2,
+ "lat": "27.7669755507767",
+ "lng": "107.244355921486",
+ "radius": 13448,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.217894688,
+ 27.737442997900001,
+ 0.0
+ ],
+ [
+ 107.197865832,
+ 27.653249705499999,
+ 0.0
+ ],
+ [
+ 107.27670781899999,
+ 27.649471501899999,
+ 0.0
+ ],
+ [
+ 107.267064103,
+ 27.735091334,
+ 0.0
+ ],
+ [
+ 107.285044822,
+ 27.740907284199999,
+ 0.0
+ ],
+ [
+ 107.31236719499999,
+ 27.763236254199999,
+ 0.0
+ ],
+ [
+ 107.320231724,
+ 27.7783053709,
+ 0.0
+ ],
+ [
+ 107.32342169099999,
+ 27.7946619322,
+ 0.0
+ ],
+ [
+ 107.32375933,
+ 27.836845613099999,
+ 0.0
+ ],
+ [
+ 107.307247516,
+ 27.866343030399999,
+ 0.0
+ ],
+ [
+ 107.276256022,
+ 27.884583695900002,
+ 0.0
+ ],
+ [
+ 107.217894688,
+ 27.737442997900001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8849,
+ "name": "Zunyi Xinzhou Airport",
+ "country": "CN",
+ "city": "Zunyi",
+ "height": 0,
+ "level": 2,
+ "lat": "27.8550621116448",
+ "lng": "107.249747125864",
+ "radius": 13448,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.296346134,
+ 27.968783563799999,
+ 0.0
+ ],
+ [
+ 107.217303924,
+ 27.972562395400001,
+ 0.0
+ ],
+ [
+ 107.22699773799999,
+ 27.886943156200001,
+ 0.0
+ ],
+ [
+ 107.208919314,
+ 27.8810840915,
+ 0.0
+ ],
+ [
+ 107.181618867,
+ 27.858705846900001,
+ 0.0
+ ],
+ [
+ 107.173788181,
+ 27.843620584500002,
+ 0.0
+ ],
+ [
+ 107.17064147,
+ 27.827257253300001,
+ 0.0
+ ],
+ [
+ 107.170371278,
+ 27.785131538800002,
+ 0.0
+ ],
+ [
+ 107.186918447,
+ 27.755655045400001,
+ 0.0
+ ],
+ [
+ 107.217894688,
+ 27.737442997900001,
+ 0.0
+ ],
+ [
+ 107.276256022,
+ 27.884583695900002,
+ 0.0
+ ],
+ [
+ 107.296346134,
+ 27.968783563799999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8849,
+ "name": "Zunyi Xinzhou Airport",
+ "country": "CN",
+ "city": "Zunyi",
+ "height": 120,
+ "level": 2,
+ "lat": "27.8110161533488",
+ "lng": "107.247064178187",
+ "radius": 23624,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.157113099,
+ 28.008045749800001,
+ 120.0
+ ],
+ [
+ 107.360530328,
+ 27.998324482699999,
+ 120.0
+ ],
+ [
+ 107.336646833,
+ 27.6139133026,
+ 120.0
+ ],
+ [
+ 107.133948235,
+ 27.6236345698,
+ 120.0
+ ],
+ [
+ 107.157113099,
+ 28.008045749800001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001475,
+ "name": "Zunyi Xinzhou Airport",
+ "country": "CN",
+ "city": "Zunyi",
+ "height": 500,
+ "level": 2,
+ "lat": "27.811052",
+ "lng": "107.247133",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.247133,
+ 28.262233913622474,
+ 500.0
+ ],
+ [
+ 107.335611644435886,
+ 28.255351307680865,
+ 500.0
+ ],
+ [
+ 107.421368895229648,
+ 28.23491517797277,
+ 500.0
+ ],
+ [
+ 107.501770127670966,
+ 28.201553837498675,
+ 500.0
+ ],
+ [
+ 107.574351099329746,
+ 28.156292216508852,
+ 500.0
+ ],
+ [
+ 107.63689541820105,
+ 28.100519324596231,
+ 500.0
+ ],
+ [
+ 107.687503192340174,
+ 28.035944349734017,
+ 500.0
+ ],
+ [
+ 107.724648625493288,
+ 27.96454294286772,
+ 500.0
+ ],
+ [
+ 107.747224844698138,
+ 27.888495542367483,
+ 500.0
+ ],
+ [
+ 107.754574809394455,
+ 27.810119813279172,
+ 500.0
+ ],
+ [
+ 107.746507717240476,
+ 27.731799409076828,
+ 500.0
+ ],
+ [
+ 107.723300855531576,
+ 27.655911311501782,
+ 500.0
+ ],
+ [
+ 107.685687323660531,
+ 27.584753974519607,
+ 500.0
+ ],
+ [
+ 107.634830456272439,
+ 27.520478401713376,
+ 500.0
+ ],
+ [
+ 107.572286103074504,
+ 27.465024134100062,
+ 500.0
+ ],
+ [
+ 107.499954172073231,
+ 27.420061928860303,
+ 500.0
+ ],
+ [
+ 107.42002102642833,
+ 27.386944679250856,
+ 500.0
+ ],
+ [
+ 107.334894452465264,
+ 27.366667870917944,
+ 500.0
+ ],
+ [
+ 107.247133,
+ 27.35984059714874,
+ 500.0
+ ],
+ [
+ 107.159371547534747,
+ 27.366667870917944,
+ 500.0
+ ],
+ [
+ 107.07424497357168,
+ 27.386944679250856,
+ 500.0
+ ],
+ [
+ 106.994311827926779,
+ 27.420061928860303,
+ 500.0
+ ],
+ [
+ 106.921979896925507,
+ 27.465024134100062,
+ 500.0
+ ],
+ [
+ 106.859435543727571,
+ 27.520478401713376,
+ 500.0
+ ],
+ [
+ 106.808578676339479,
+ 27.584753974519607,
+ 500.0
+ ],
+ [
+ 106.770965144468434,
+ 27.655911311501782,
+ 500.0
+ ],
+ [
+ 106.747758282759534,
+ 27.731799409076828,
+ 500.0
+ ],
+ [
+ 106.739691190605555,
+ 27.810119813279172,
+ 500.0
+ ],
+ [
+ 106.747041155301872,
+ 27.888495542367483,
+ 500.0
+ ],
+ [
+ 106.769617374506723,
+ 27.96454294286772,
+ 500.0
+ ],
+ [
+ 106.806762807659837,
+ 28.035944349734017,
+ 500.0
+ ],
+ [
+ 106.857370581798961,
+ 28.100519324596231,
+ 500.0
+ ],
+ [
+ 106.919914900670264,
+ 28.156292216508852,
+ 500.0
+ ],
+ [
+ 106.992495872329044,
+ 28.201553837498675,
+ 500.0
+ ],
+ [
+ 107.072897104770362,
+ 28.23491517797277,
+ 500.0
+ ],
+ [
+ 107.158654355564124,
+ 28.255351307680865,
+ 500.0
+ ],
+ [
+ 107.247133,
+ 28.262233913622474,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7337,
+ "name": "Tongren Fenghuang Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.8505693414123",
+ "lng": "109.277344544311",
+ "radius": 13098,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.23694022399999,
+ 27.8484821465,
+ 0.0
+ ],
+ [
+ 109.161917612,
+ 27.791795753,
+ 0.0
+ ],
+ [
+ 109.220335185,
+ 27.7487763928,
+ 0.0
+ ],
+ [
+ 109.271910684,
+ 27.817092917899998,
+ 0.0
+ ],
+ [
+ 109.308158792,
+ 27.8109629277,
+ 0.0
+ ],
+ [
+ 109.326545823,
+ 27.814282372,
+ 0.0
+ ],
+ [
+ 109.357389389,
+ 27.8326985773,
+ 0.0
+ ],
+ [
+ 109.391352346,
+ 27.876362607499999,
+ 0.0
+ ],
+ [
+ 109.39457351,
+ 27.892714831199999,
+ 0.0
+ ],
+ [
+ 109.392896564,
+ 27.909246775300002,
+ 0.0
+ ],
+ [
+ 109.23694022399999,
+ 27.8484821465,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7337,
+ "name": "Tongren Fenghuang Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.9170335463561",
+ "lng": "109.346402808144",
+ "radius": 13185,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.461414578,
+ 27.9781765476,
+ 0.0
+ ],
+ [
+ 109.40300575,
+ 28.024558725199999,
+ 0.0
+ ],
+ [
+ 109.351422642,
+ 27.952907127500001,
+ 0.0
+ ],
+ [
+ 109.315175778,
+ 27.959020440900002,
+ 0.0
+ ],
+ [
+ 109.296765396,
+ 27.955695623099999,
+ 0.0
+ ],
+ [
+ 109.265902056,
+ 27.9372594427,
+ 0.0
+ ],
+ [
+ 109.234139867,
+ 27.897082718899998,
+ 0.0
+ ],
+ [
+ 109.230208954,
+ 27.8808521809,
+ 0.0
+ ],
+ [
+ 109.231164844,
+ 27.864275464599999,
+ 0.0
+ ],
+ [
+ 109.23694022399999,
+ 27.8484821465,
+ 0.0
+ ],
+ [
+ 109.392896564,
+ 27.909246775300002,
+ 0.0
+ ],
+ [
+ 109.386433636,
+ 27.924831644600001,
+ 0.0
+ ],
+ [
+ 109.461414578,
+ 27.9781765476,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7337,
+ "name": "Tongren Fenghuang Airport",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "27.884887604433",
+ "lng": "109.311862866375",
+ "radius": 23425,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.366283572,
+ 28.0900059077,
+ 120.0
+ ],
+ [
+ 109.525745593,
+ 27.9780236599,
+ 120.0
+ ],
+ [
+ 109.257140248,
+ 27.679853554600001,
+ 120.0
+ ],
+ [
+ 109.09811672799999,
+ 27.791835803,
+ 120.0
+ ],
+ [
+ 109.366283572,
+ 28.0900059077,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001533,
+ "name": "Tongren Fenghuang Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.884554",
+ "lng": "109.310617",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.310617,
+ 28.335731079968021,
+ 500.0
+ ],
+ [
+ 109.399156439737098,
+ 28.32884846009026,
+ 500.0
+ ],
+ [
+ 109.484972513559867,
+ 28.308412296973948,
+ 500.0
+ ],
+ [
+ 109.565428699887676,
+ 28.275050927573623,
+ 500.0
+ ],
+ [
+ 109.638059005957757,
+ 28.229789318073223,
+ 500.0
+ ],
+ [
+ 109.700645498971667,
+ 28.174016520551074,
+ 500.0
+ ],
+ [
+ 109.751287007473493,
+ 28.109441765453742,
+ 500.0
+ ],
+ [
+ 109.788456755331765,
+ 28.038040739352724,
+ 500.0
+ ],
+ [
+ 109.811047213279693,
+ 27.961993903186805,
+ 500.0
+ ],
+ [
+ 109.818401017636532,
+ 27.883618926741764,
+ 500.0
+ ],
+ [
+ 109.810327372463391,
+ 27.80529944769842,
+ 500.0
+ ],
+ [
+ 109.787103885856595,
+ 27.729412411203405,
+ 500.0
+ ],
+ [
+ 109.749464268099089,
+ 27.658256216063599,
+ 500.0
+ ],
+ [
+ 109.69857272378357,
+ 27.593981796652063,
+ 500.0
+ ],
+ [
+ 109.635986196236914,
+ 27.538528617014336,
+ 500.0
+ ],
+ [
+ 109.563605873073271,
+ 27.493567356963343,
+ 500.0
+ ],
+ [
+ 109.483619544651575,
+ 27.460450839611305,
+ 500.0
+ ],
+ [
+ 109.398436534020433,
+ 27.440174494709577,
+ 500.0
+ ],
+ [
+ 109.310617,
+ 27.433347379556974,
+ 500.0
+ ],
+ [
+ 109.222797465979554,
+ 27.440174494709577,
+ 500.0
+ ],
+ [
+ 109.137614455348412,
+ 27.460450839611305,
+ 500.0
+ ],
+ [
+ 109.057628126926716,
+ 27.493567356963343,
+ 500.0
+ ],
+ [
+ 108.985247803763073,
+ 27.538528617014336,
+ 500.0
+ ],
+ [
+ 108.922661276216417,
+ 27.593981796652063,
+ 500.0
+ ],
+ [
+ 108.871769731900898,
+ 27.658256216063599,
+ 500.0
+ ],
+ [
+ 108.834130114143392,
+ 27.729412411203405,
+ 500.0
+ ],
+ [
+ 108.810906627536596,
+ 27.80529944769842,
+ 500.0
+ ],
+ [
+ 108.802832982363455,
+ 27.883618926741764,
+ 500.0
+ ],
+ [
+ 108.810186786720294,
+ 27.961993903186805,
+ 500.0
+ ],
+ [
+ 108.832777244668222,
+ 28.038040739352724,
+ 500.0
+ ],
+ [
+ 108.869946992526494,
+ 28.109441765453742,
+ 500.0
+ ],
+ [
+ 108.92058850102832,
+ 28.174016520551074,
+ 500.0
+ ],
+ [
+ 108.98317499404223,
+ 28.229789318073223,
+ 500.0
+ ],
+ [
+ 109.055805300112311,
+ 28.275050927573623,
+ 500.0
+ ],
+ [
+ 109.136261486440119,
+ 28.308412296973948,
+ 500.0
+ ],
+ [
+ 109.222077560262889,
+ 28.32884846009026,
+ 500.0
+ ],
+ [
+ 109.310617,
+ 28.335731079968021,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001482,
+ "name": "Changsha Huanghua International Airport",
+ "country": "CN",
+ "city": "Changsha",
+ "height": 500,
+ "level": 2,
+ "lat": "28.192884",
+ "lng": "113.213797",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.213797,
+ 28.644040713601374,
+ 500.0
+ ],
+ [
+ 113.302593974307683,
+ 28.637158035312808,
+ 500.0
+ ],
+ [
+ 113.38865922908235,
+ 28.616721732326802,
+ 500.0
+ ],
+ [
+ 113.469348208374257,
+ 28.58336024243631,
+ 500.0
+ ],
+ [
+ 113.542187505496145,
+ 28.538098683087519,
+ 500.0
+ ],
+ [
+ 113.604952660942629,
+ 28.482326285187963,
+ 500.0
+ ],
+ [
+ 113.655737082897232,
+ 28.417752457941759,
+ 500.0
+ ],
+ [
+ 113.693009843671021,
+ 28.346353037827342,
+ 500.0
+ ],
+ [
+ 113.715660632709231,
+ 28.270308580696994,
+ 500.0
+ ],
+ [
+ 113.723030716138325,
+ 28.191936776174554,
+ 500.0
+ ],
+ [
+ 113.714929323571482,
+ 28.113621195326637,
+ 500.0
+ ],
+ [
+ 113.691635420514999,
+ 28.037738629113761,
+ 500.0
+ ],
+ [
+ 113.653885303735194,
+ 27.966587244014764,
+ 500.0
+ ],
+ [
+ 113.60284686210062,
+ 27.902317682938651,
+ 500.0
+ ],
+ [
+ 113.540081671242504,
+ 27.846869085814738,
+ 500.0
+ ],
+ [
+ 113.467496339546784,
+ 27.801911806695134,
+ 500.0
+ ],
+ [
+ 113.38728470396255,
+ 27.768798373359886,
+ 500.0
+ ],
+ [
+ 113.301862598617817,
+ 27.748523980233159,
+ 500.0
+ ],
+ [
+ 113.213797,
+ 27.741697533099813,
+ 500.0
+ ],
+ [
+ 113.125731401382183,
+ 27.748523980233159,
+ 500.0
+ ],
+ [
+ 113.040309296037449,
+ 27.768798373359886,
+ 500.0
+ ],
+ [
+ 112.960097660453215,
+ 27.801911806695134,
+ 500.0
+ ],
+ [
+ 112.887512328757495,
+ 27.846869085814738,
+ 500.0
+ ],
+ [
+ 112.824747137899379,
+ 27.902317682938651,
+ 500.0
+ ],
+ [
+ 112.773708696264805,
+ 27.966587244014764,
+ 500.0
+ ],
+ [
+ 112.735958579485001,
+ 28.037738629113761,
+ 500.0
+ ],
+ [
+ 112.712664676428517,
+ 28.113621195326637,
+ 500.0
+ ],
+ [
+ 112.704563283861674,
+ 28.191936776174554,
+ 500.0
+ ],
+ [
+ 112.711933367290769,
+ 28.270308580696994,
+ 500.0
+ ],
+ [
+ 112.734584156328978,
+ 28.346353037827342,
+ 500.0
+ ],
+ [
+ 112.771856917102767,
+ 28.417752457941759,
+ 500.0
+ ],
+ [
+ 112.82264133905737,
+ 28.482326285187963,
+ 500.0
+ ],
+ [
+ 112.885406494503854,
+ 28.538098683087519,
+ 500.0
+ ],
+ [
+ 112.958245791625743,
+ 28.58336024243631,
+ 500.0
+ ],
+ [
+ 113.038934770917649,
+ 28.616721732326802,
+ 500.0
+ ],
+ [
+ 113.125000025692316,
+ 28.637158035312808,
+ 500.0
+ ],
+ [
+ 113.213797,
+ 28.644040713601374,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2053,
+ "name": "Changsha Huanghua International Airport",
+ "country": "CN",
+ "city": "Changsha",
+ "height": 0,
+ "level": 2,
+ "lat": "28.1906962102143",
+ "lng": "113.224260333056",
+ "radius": 18567,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.194577169756158,
+ 28.031085969526732,
+ 0.0
+ ],
+ [
+ 113.193887718,
+ 28.025878514199999,
+ 0.0
+ ],
+ [
+ 113.27286107,
+ 28.0293117796,
+ 0.0
+ ],
+ [
+ 113.251216204,
+ 28.116007455599998,
+ 0.0
+ ],
+ [
+ 113.279047128,
+ 28.133728401700001,
+ 0.0
+ ],
+ [
+ 113.289273621,
+ 28.147663382499999,
+ 0.0
+ ],
+ [
+ 113.29506352,
+ 28.1634571403,
+ 0.0
+ ],
+ [
+ 113.294353048,
+ 28.211703177899999,
+ 0.0
+ ],
+ [
+ 113.284821118,
+ 28.242712705100001,
+ 0.0
+ ],
+ [
+ 113.27340471399999,
+ 28.255917437,
+ 0.0
+ ],
+ [
+ 113.24110774099999,
+ 28.272471539400001,
+ 0.0
+ ],
+ [
+ 113.25279394099999,
+ 28.355775305200002,
+ 0.0
+ ],
+ [
+ 113.249435009286671,
+ 28.355628688248053,
+ 0.0
+ ],
+ [
+ 113.194577169756158,
+ 28.031085969526732,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2053,
+ "name": "Changsha Huanghua International Airport",
+ "country": "CN",
+ "city": "Changsha",
+ "height": 0,
+ "level": 2,
+ "lat": "28.1934912727967",
+ "lng": "113.218938562702",
+ "radius": 18291,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.249455204,
+ 28.355781352099999,
+ 0.0
+ ],
+ [
+ 113.17047007,
+ 28.3523567901,
+ 0.0
+ ],
+ [
+ 113.192147893,
+ 28.267370308,
+ 0.0
+ ],
+ [
+ 113.162872292,
+ 28.248276499500001,
+ 0.0
+ ],
+ [
+ 113.15306783699999,
+ 28.2341026703,
+ 0.0
+ ],
+ [
+ 113.147318819,
+ 28.201582383400002,
+ 0.0
+ ],
+ [
+ 113.148980568,
+ 28.174964965400001,
+ 0.0
+ ],
+ [
+ 113.150654245000311,
+ 28.170072402613783,
+ 0.0
+ ],
+ [
+ 113.150649642,
+ 28.169929570499999,
+ 0.0
+ ],
+ [
+ 113.151191491915824,
+ 28.168501899903063,
+ 0.0
+ ],
+ [
+ 113.158471023,
+ 28.147222069400001,
+ 0.0
+ ],
+ [
+ 113.159886324122667,
+ 28.145592684778226,
+ 0.0
+ ],
+ [
+ 113.160944822,
+ 28.1428037459,
+ 0.0
+ ],
+ [
+ 113.172789067,
+ 28.1299036606,
+ 0.0
+ ],
+ [
+ 113.20199411491221,
+ 28.115909822343223,
+ 0.0
+ ],
+ [
+ 113.190525699,
+ 28.030911078399999,
+ 0.0
+ ],
+ [
+ 113.194577169756158,
+ 28.031085969526732,
+ 0.0
+ ],
+ [
+ 113.249435009286671,
+ 28.355628688248053,
+ 0.0
+ ],
+ [
+ 113.249455204,
+ 28.355781352099999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2053,
+ "name": "Changsha Huanghua International Airport",
+ "country": "CN",
+ "city": "Changsha",
+ "height": 120,
+ "level": 2,
+ "lat": "28.1921026727245",
+ "lng": "113.222906051478",
+ "radius": 24075,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.107016087,
+ 28.3797899805,
+ 120.0
+ ],
+ [
+ 113.116084876280837,
+ 28.380216367935734,
+ 120.0
+ ],
+ [
+ 113.115912214,
+ 28.387041589199999,
+ 120.0
+ ],
+ [
+ 113.32031685,
+ 28.3908997992,
+ 120.0
+ ],
+ [
+ 113.32627102536064,
+ 28.13632741951541,
+ 120.0
+ ],
+ [
+ 113.33424769299999,
+ 28.002673159299999,
+ 120.0
+ ],
+ [
+ 113.329402402956589,
+ 28.002444522555511,
+ 120.0
+ ],
+ [
+ 113.32952767899999,
+ 27.997088311399999,
+ 120.0
+ ],
+ [
+ 113.139666934982486,
+ 27.993491395018641,
+ 120.0
+ ],
+ [
+ 113.13083301899999,
+ 27.993074545300001,
+ 120.0
+ ],
+ [
+ 113.130817671321068,
+ 27.993323745504828,
+ 120.0
+ ],
+ [
+ 113.125874732,
+ 27.993230101399998,
+ 120.0
+ ],
+ [
+ 113.122425005053046,
+ 28.129595436095709,
+ 120.0
+ ],
+ [
+ 113.107016087,
+ 28.3797899805,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001439,
+ "name": "明月山",
+ "country": "CN",
+ "city": "宜春",
+ "height": 500,
+ "level": 2,
+ "lat": "27.8008333333333",
+ "lng": "114.305",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.305,
+ 28.252015918300181,
+ 500.0
+ ],
+ [
+ 114.393470210450957,
+ 28.245133314296556,
+ 500.0
+ ],
+ [
+ 114.479219300876494,
+ 28.22469718923546,
+ 500.0
+ ],
+ [
+ 114.55961290972148,
+ 28.191335852789702,
+ 500.0
+ ],
+ [
+ 114.632187037380007,
+ 28.146074230217625,
+ 500.0
+ ],
+ [
+ 114.694725505599394,
+ 28.090301325209936,
+ 500.0
+ ],
+ [
+ 114.745328599936769,
+ 28.025726319839176,
+ 500.0
+ ],
+ [
+ 114.782470660069137,
+ 27.954324860101213,
+ 500.0
+ ],
+ [
+ 114.805044904073583,
+ 27.878277381230248,
+ 500.0
+ ],
+ [
+ 114.812394336205102,
+ 27.799901547612823,
+ 500.0
+ ],
+ [
+ 114.804328153222173,
+ 27.721581014915934,
+ 500.0
+ ],
+ [
+ 114.781123597904937,
+ 27.64569276996362,
+ 500.0
+ ],
+ [
+ 114.743513684889365,
+ 27.574535274383038,
+ 500.0
+ ],
+ [
+ 114.692661628128192,
+ 27.510259541370989,
+ 500.0
+ ],
+ [
+ 114.630123125610709,
+ 27.454805122636536,
+ 500.0
+ ],
+ [
+ 114.557797907828288,
+ 27.409842786107596,
+ 500.0
+ ],
+ [
+ 114.477872139954897,
+ 27.376725434784994,
+ 500.0
+ ],
+ [
+ 114.392753395140232,
+ 27.356448562079542,
+ 500.0
+ ],
+ [
+ 114.305,
+ 27.349621266277783,
+ 500.0
+ ],
+ [
+ 114.21724660485981,
+ 27.356448562079542,
+ 500.0
+ ],
+ [
+ 114.132127860045145,
+ 27.376725434784994,
+ 500.0
+ ],
+ [
+ 114.052202092171754,
+ 27.409842786107596,
+ 500.0
+ ],
+ [
+ 113.979876874389333,
+ 27.454805122636536,
+ 500.0
+ ],
+ [
+ 113.91733837187185,
+ 27.510259541370989,
+ 500.0
+ ],
+ [
+ 113.866486315110677,
+ 27.574535274383038,
+ 500.0
+ ],
+ [
+ 113.828876402095105,
+ 27.64569276996362,
+ 500.0
+ ],
+ [
+ 113.805671846777869,
+ 27.721581014915934,
+ 500.0
+ ],
+ [
+ 113.79760566379494,
+ 27.799901547612823,
+ 500.0
+ ],
+ [
+ 113.804955095926459,
+ 27.878277381230248,
+ 500.0
+ ],
+ [
+ 113.827529339930905,
+ 27.954324860101213,
+ 500.0
+ ],
+ [
+ 113.864671400063273,
+ 28.025726319839176,
+ 500.0
+ ],
+ [
+ 113.915274494400649,
+ 28.090301325209936,
+ 500.0
+ ],
+ [
+ 113.977812962620035,
+ 28.146074230217625,
+ 500.0
+ ],
+ [
+ 114.050387090278562,
+ 28.191335852789702,
+ 500.0
+ ],
+ [
+ 114.130780699123548,
+ 28.22469718923546,
+ 500.0
+ ],
+ [
+ 114.216529789549085,
+ 28.245133314296556,
+ 500.0
+ ],
+ [
+ 114.305,
+ 28.252015918300181,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33214,
+ "name": "明月山",
+ "country": "CN",
+ "city": "宜春",
+ "height": 0,
+ "level": 2,
+ "lat": "27.7758857537898",
+ "lng": "114.262739732918",
+ "radius": 13234,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.22532773099999,
+ 27.773690938800002,
+ 0.0
+ ],
+ [
+ 114.136972042,
+ 27.733698577199998,
+ 0.0
+ ],
+ [
+ 114.185043037,
+ 27.678741526700001,
+ 0.0
+ ],
+ [
+ 114.253373931,
+ 27.742074795899999,
+ 0.0
+ ],
+ [
+ 114.283533559,
+ 27.7305385011,
+ 0.0
+ ],
+ [
+ 114.302265211,
+ 27.729767029800001,
+ 0.0
+ ],
+ [
+ 114.337246472,
+ 27.740928419900001,
+ 0.0
+ ],
+ [
+ 114.360598185,
+ 27.757606305100001,
+ 0.0
+ ],
+ [
+ 114.37953553,
+ 27.7777509804,
+ 0.0
+ ],
+ [
+ 114.387821951,
+ 27.809836740800002,
+ 0.0
+ ],
+ [
+ 114.384682614,
+ 27.826201104,
+ 0.0
+ ],
+ [
+ 114.22532773099999,
+ 27.773690938800002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33214,
+ "name": "明月山",
+ "country": "CN",
+ "city": "宜春",
+ "height": 0,
+ "level": 2,
+ "lat": "27.824148866604",
+ "lng": "114.347157214224",
+ "radius": 13231,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.473020644,
+ 27.866276189899999,
+ 0.0
+ ],
+ [
+ 114.424957232,
+ 27.921258483,
+ 0.0
+ ],
+ [
+ 114.356625403,
+ 27.8612585216,
+ 0.0
+ ],
+ [
+ 114.328324434,
+ 27.872084318900001,
+ 0.0
+ ],
+ [
+ 114.309583108,
+ 27.8731000111,
+ 0.0
+ ],
+ [
+ 114.291183758,
+ 27.869790742599999,
+ 0.0
+ ],
+ [
+ 114.2494005,
+ 27.847393164,
+ 0.0
+ ],
+ [
+ 114.22677059199999,
+ 27.822337774099999,
+ 0.0
+ ],
+ [
+ 114.221440003,
+ 27.806423220500001,
+ 0.0
+ ],
+ [
+ 114.22532773099999,
+ 27.773690938800002,
+ 0.0
+ ],
+ [
+ 114.384682614,
+ 27.826201104,
+ 0.0
+ ],
+ [
+ 114.473020644,
+ 27.866276189899999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33214,
+ "name": "明月山",
+ "country": "CN",
+ "city": "宜春",
+ "height": 120,
+ "level": 2,
+ "lat": "27.8018835813162",
+ "lng": "114.305610127",
+ "radius": 23692,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.420493711,
+ 27.989210693299999,
+ 120.0
+ ],
+ [
+ 114.541631519,
+ 27.844664917500001,
+ 120.0
+ ],
+ [
+ 114.190519161,
+ 27.614751335299999,
+ 120.0
+ ],
+ [
+ 114.069637394,
+ 27.759297111399999,
+ 120.0
+ ],
+ [
+ 114.420493711,
+ 27.989210693299999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33212,
+ "name": "三清山",
+ "country": "CN",
+ "city": "上饶",
+ "height": 0,
+ "level": 2,
+ "lat": "28.3559510007573",
+ "lng": "117.921615097661",
+ "radius": 13239,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.8837016,
+ 28.362141588299998,
+ 0.0
+ ],
+ [
+ 117.79035017,
+ 28.327158875399999,
+ 0.0
+ ],
+ [
+ 117.82985936599999,
+ 28.268747057,
+ 0.0
+ ],
+ [
+ 117.904838581,
+ 28.32541566,
+ 0.0
+ ],
+ [
+ 117.937762945,
+ 28.310583685699999,
+ 0.0
+ ],
+ [
+ 117.95655061399999,
+ 28.309201377200001,
+ 0.0
+ ],
+ [
+ 117.992164139,
+ 28.319213296099999,
+ 0.0
+ ],
+ [
+ 118.017195705,
+ 28.332563958200002,
+ 0.0
+ ],
+ [
+ 118.041652239,
+ 28.353242387400002,
+ 0.0
+ ],
+ [
+ 118.05295109,
+ 28.384617365299999,
+ 0.0
+ ],
+ [
+ 117.8837016,
+ 28.362141588299998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33212,
+ "name": "三清山",
+ "country": "CN",
+ "city": "上饶",
+ "height": 0,
+ "level": 2,
+ "lat": "28.4041052742787",
+ "lng": "118.009294005867",
+ "radius": 13142,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.139651218,
+ 28.432841269400001,
+ 0.0
+ ],
+ [
+ 118.100101175,
+ 28.491255906199999,
+ 0.0
+ ],
+ [
+ 118.025104641,
+ 28.434589016499999,
+ 0.0
+ ],
+ [
+ 117.99765979599999,
+ 28.447090591599999,
+ 0.0
+ ],
+ [
+ 117.978945004,
+ 28.449266869700001,
+ 0.0
+ ],
+ [
+ 117.96022766599999,
+ 28.447107580200001,
+ 0.0
+ ],
+ [
+ 117.917816183,
+ 28.430775857099999,
+ 0.0
+ ],
+ [
+ 117.89332611,
+ 28.410062862699998,
+ 0.0
+ ],
+ [
+ 117.885345298,
+ 28.395022278900001,
+ 0.0
+ ],
+ [
+ 117.8837016,
+ 28.362141588299998,
+ 0.0
+ ],
+ [
+ 118.05295109,
+ 28.384617365299999,
+ 0.0
+ ],
+ [
+ 118.051334332,
+ 28.4011545561,
+ 0.0
+ ],
+ [
+ 118.139651218,
+ 28.432841269400001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33212,
+ "name": "三清山",
+ "country": "CN",
+ "city": "上饶",
+ "height": 120,
+ "level": 2,
+ "lat": "28.3805837735345",
+ "lng": "117.967672106801",
+ "radius": 23606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.112818434,
+ 28.5502623221,
+ 120.0
+ ],
+ [
+ 118.208678163,
+ 28.3913587465,
+ 120.0
+ ],
+ [
+ 117.822373853,
+ 28.211159881899999,
+ 120.0
+ ],
+ [
+ 117.726676868,
+ 28.370063457699999,
+ 120.0
+ ],
+ [
+ 118.112818434,
+ 28.5502623221,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001494,
+ "name": "三清山",
+ "country": "CN",
+ "city": "上饶",
+ "height": 500,
+ "level": 2,
+ "lat": "28.3808333333333",
+ "lng": "117.96625",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.96625,
+ 28.831977561655467,
+ 500.0
+ ],
+ [
+ 118.055205961969506,
+ 28.825094847777351,
+ 500.0
+ ],
+ [
+ 118.141425048199849,
+ 28.804658459679779,
+ 500.0
+ ],
+ [
+ 118.222257743498773,
+ 28.771296896910339,
+ 500.0
+ ],
+ [
+ 118.29522606473175,
+ 28.726035369545311,
+ 500.0
+ ],
+ [
+ 118.358101523348978,
+ 28.67026321799441,
+ 500.0
+ ],
+ [
+ 118.408974181124194,
+ 28.605689960904474,
+ 500.0
+ ],
+ [
+ 118.446310546882287,
+ 28.534291526509246,
+ 500.0
+ ],
+ [
+ 118.468998592188953,
+ 28.458248528718531,
+ 500.0
+ ],
+ [
+ 118.476378736187883,
+ 28.379878669220602,
+ 500.0
+ ],
+ [
+ 118.468260223051004,
+ 28.301565478192312,
+ 500.0
+ ],
+ [
+ 118.444922855087498,
+ 28.225685652072496,
+ 500.0
+ ],
+ [
+ 118.407104524804936,
+ 28.154537214969494,
+ 500.0
+ ],
+ [
+ 118.355975394839632,
+ 28.090270631219035,
+ 500.0
+ ],
+ [
+ 118.293099900263528,
+ 28.034824842197395,
+ 500.0
+ ],
+ [
+ 118.220387996128395,
+ 27.989870002414129,
+ 500.0
+ ],
+ [
+ 118.140037252865596,
+ 27.956758458757395,
+ 500.0
+ ],
+ [
+ 118.054467525250956,
+ 27.936485261519323,
+ 500.0
+ ],
+ [
+ 117.96625,
+ 27.929659223689015,
+ 500.0
+ ],
+ [
+ 117.878032474749048,
+ 27.936485261519323,
+ 500.0
+ ],
+ [
+ 117.792462747134408,
+ 27.956758458757395,
+ 500.0
+ ],
+ [
+ 117.71211200387161,
+ 27.989870002414129,
+ 500.0
+ ],
+ [
+ 117.639400099736477,
+ 28.034824842197395,
+ 500.0
+ ],
+ [
+ 117.576524605160373,
+ 28.090270631219035,
+ 500.0
+ ],
+ [
+ 117.525395475195069,
+ 28.154537214969494,
+ 500.0
+ ],
+ [
+ 117.487577144912507,
+ 28.225685652072496,
+ 500.0
+ ],
+ [
+ 117.464239776949,
+ 28.301565478192312,
+ 500.0
+ ],
+ [
+ 117.456121263812122,
+ 28.379878669220602,
+ 500.0
+ ],
+ [
+ 117.463501407811052,
+ 28.458248528718531,
+ 500.0
+ ],
+ [
+ 117.486189453117717,
+ 28.534291526509246,
+ 500.0
+ ],
+ [
+ 117.523525818875811,
+ 28.605689960904474,
+ 500.0
+ ],
+ [
+ 117.574398476651027,
+ 28.67026321799441,
+ 500.0
+ ],
+ [
+ 117.637273935268254,
+ 28.726035369545311,
+ 500.0
+ ],
+ [
+ 117.710242256501232,
+ 28.771296896910339,
+ 500.0
+ ],
+ [
+ 117.791074951800155,
+ 28.804658459679779,
+ 500.0
+ ],
+ [
+ 117.877294038030499,
+ 28.825094847777351,
+ 500.0
+ ],
+ [
+ 117.96625,
+ 28.831977561655467,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001327,
+ "name": "Wenzhou Yongqiang Airport",
+ "country": "CN",
+ "city": "Wenzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "27.908293",
+ "lng": "120.852664",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.852664,
+ 28.359468517067164,
+ 500.0
+ ],
+ [
+ 120.94122312381846,
+ 28.352585892689696,
+ 500.0
+ ],
+ [
+ 121.027058243169378,
+ 28.332149718789676,
+ 500.0
+ ],
+ [
+ 121.107532222329169,
+ 28.298788340065013,
+ 500.0
+ ],
+ [
+ 121.18017850183152,
+ 28.253526734315372,
+ 500.0
+ ],
+ [
+ 121.242778650010152,
+ 28.197753967352448,
+ 500.0
+ ],
+ [
+ 121.293431081129086,
+ 28.133179283351854,
+ 500.0
+ ],
+ [
+ 121.330608701781728,
+ 28.061778380400149,
+ 500.0
+ ],
+ [
+ 121.353203770183214,
+ 27.985731726729743,
+ 500.0
+ ],
+ [
+ 121.360558818005941,
+ 27.9073569936563,
+ 500.0
+ ],
+ [
+ 121.352483051353076,
+ 27.829037813752677,
+ 500.0
+ ],
+ [
+ 121.329254182158493,
+ 27.753151120333207,
+ 500.0
+ ],
+ [
+ 121.291606118471194,
+ 27.681995294371589,
+ 500.0
+ ],
+ [
+ 121.240703346534545,
+ 27.617721247865802,
+ 500.0
+ ],
+ [
+ 121.178103163756319,
+ 27.562268419977705,
+ 500.0
+ ],
+ [
+ 121.105707172062012,
+ 27.517307465509013,
+ 500.0
+ ],
+ [
+ 121.025703623920535,
+ 27.484191184896019,
+ 500.0
+ ],
+ [
+ 120.940502339962322,
+ 27.463914989820974,
+ 500.0
+ ],
+ [
+ 120.852664,
+ 27.457087925948787,
+ 500.0
+ ],
+ [
+ 120.764825660037687,
+ 27.463914989820974,
+ 500.0
+ ],
+ [
+ 120.679624376079474,
+ 27.484191184896019,
+ 500.0
+ ],
+ [
+ 120.599620827937997,
+ 27.517307465509013,
+ 500.0
+ ],
+ [
+ 120.52722483624369,
+ 27.562268419977705,
+ 500.0
+ ],
+ [
+ 120.464624653465464,
+ 27.617721247865802,
+ 500.0
+ ],
+ [
+ 120.413721881528815,
+ 27.681995294371589,
+ 500.0
+ ],
+ [
+ 120.376073817841515,
+ 27.753151120333207,
+ 500.0
+ ],
+ [
+ 120.352844948646933,
+ 27.829037813752677,
+ 500.0
+ ],
+ [
+ 120.344769181994067,
+ 27.9073569936563,
+ 500.0
+ ],
+ [
+ 120.352124229816795,
+ 27.985731726729743,
+ 500.0
+ ],
+ [
+ 120.374719298218281,
+ 28.061778380400149,
+ 500.0
+ ],
+ [
+ 120.411896918870923,
+ 28.133179283351854,
+ 500.0
+ ],
+ [
+ 120.462549349989857,
+ 28.197753967352448,
+ 500.0
+ ],
+ [
+ 120.525149498168489,
+ 28.253526734315372,
+ 500.0
+ ],
+ [
+ 120.597795777670839,
+ 28.298788340065013,
+ 500.0
+ ],
+ [
+ 120.67826975683063,
+ 28.332149718789676,
+ 500.0
+ ],
+ [
+ 120.764104876181548,
+ 28.352585892689696,
+ 500.0
+ ],
+ [
+ 120.852664,
+ 28.359468517067164,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1625,
+ "name": "Huangyan Luqiao Airport",
+ "country": "CN",
+ "city": "Huangyan",
+ "height": 0,
+ "level": 2,
+ "lat": "28.5258522913261",
+ "lng": "121.401948450412",
+ "radius": 13247,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.373620641,
+ 28.5047197526,
+ 0.0
+ ],
+ [
+ 121.31693440799999,
+ 28.433065241400001,
+ 0.0
+ ],
+ [
+ 121.38907215099999,
+ 28.407254955300001,
+ 0.0
+ ],
+ [
+ 121.414036964,
+ 28.4889032966,
+ 0.0
+ ],
+ [
+ 121.450965102,
+ 28.492576297300001,
+ 0.0
+ ],
+ [
+ 121.467511007,
+ 28.500579563,
+ 0.0
+ ],
+ [
+ 121.481139076,
+ 28.512072181600001,
+ 0.0
+ ],
+ [
+ 121.502591431,
+ 28.546280814599999,
+ 0.0
+ ],
+ [
+ 121.50898757,
+ 28.576441240699999,
+ 0.0
+ ],
+ [
+ 121.505410371,
+ 28.592739539099998,
+ 0.0
+ ],
+ [
+ 121.484765507,
+ 28.620211810299999,
+ 0.0
+ ],
+ [
+ 121.373620641,
+ 28.5047197526,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1625,
+ "name": "Huangyan Luqiao Airport",
+ "country": "CN",
+ "city": "Huangyan",
+ "height": 0,
+ "level": 2,
+ "lat": "28.5991773904631",
+ "lng": "121.456241380392",
+ "radius": 13245,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.541403282,
+ 28.691931046800001,
+ 0.0
+ ],
+ [
+ 121.469260904,
+ 28.7177460455,
+ 0.0
+ ],
+ [
+ 121.440932169,
+ 28.636081491399999,
+ 0.0
+ ],
+ [
+ 121.411406077,
+ 28.633426100800001,
+ 0.0
+ ],
+ [
+ 121.394293066,
+ 28.626363421899999,
+ 0.0
+ ],
+ [
+ 121.379848585,
+ 28.615652095200002,
+ 0.0
+ ],
+ [
+ 121.355729924,
+ 28.578696773899999,
+ 0.0
+ ],
+ [
+ 121.349349749,
+ 28.548462386299999,
+ 0.0
+ ],
+ [
+ 121.352952976,
+ 28.532168768,
+ 0.0
+ ],
+ [
+ 121.373620641,
+ 28.5047197526,
+ 0.0
+ ],
+ [
+ 121.484765507,
+ 28.620211810299999,
+ 0.0
+ ],
+ [
+ 121.541403282,
+ 28.691931046800001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1625,
+ "name": "Huangyan Luqiao Airport",
+ "country": "CN",
+ "city": "Huangyan",
+ "height": 120,
+ "level": 2,
+ "lat": "28.5632831170473",
+ "lng": "121.429751293171",
+ "radius": 23576,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.437062435,
+ 28.775212558,
+ 120.0
+ ],
+ [
+ 121.620029469,
+ 28.6939011907,
+ 120.0
+ ],
+ [
+ 121.42207222899999,
+ 28.3513641256,
+ 120.0
+ ],
+ [
+ 121.239699707,
+ 28.4326754937,
+ 120.0
+ ],
+ [
+ 121.437062435,
+ 28.775212558,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001453,
+ "name": "Huangyan Luqiao Airport",
+ "country": "CN",
+ "city": "Huangyan",
+ "height": 500,
+ "level": 2,
+ "lat": "28.56241",
+ "lng": "121.428439",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.428439,
+ 29.013542116264361,
+ 500.0
+ ],
+ [
+ 121.517550012229933,
+ 29.006659367995134,
+ 500.0
+ ],
+ [
+ 121.603919120808115,
+ 28.986222897721202,
+ 500.0
+ ],
+ [
+ 121.68489197462965,
+ 28.952861264861571,
+ 500.0
+ ],
+ [
+ 121.75798612780045,
+ 28.907599769294581,
+ 500.0
+ ],
+ [
+ 121.820969162637383,
+ 28.85182785758272,
+ 500.0
+ ],
+ [
+ 121.871927877257022,
+ 28.787255154457597,
+ 500.0
+ ],
+ [
+ 121.909326280106285,
+ 28.715857677077249,
+ 500.0
+ ],
+ [
+ 121.932050666812785,
+ 28.639816095593307,
+ 500.0
+ ],
+ [
+ 121.939440629745363,
+ 28.561448123335499,
+ 500.0
+ ],
+ [
+ 121.931305426425439,
+ 28.483137250777496,
+ 500.0
+ ],
+ [
+ 121.907925674411516,
+ 28.407260082658773,
+ 500.0
+ ],
+ [
+ 121.870040821725553,
+ 28.336114505004417,
+ 500.0
+ ],
+ [
+ 121.818823247969249,
+ 28.271850808978044,
+ 500.0
+ ],
+ [
+ 121.755840176636298,
+ 28.216407743425545,
+ 500.0
+ ],
+ [
+ 121.683004826686982,
+ 28.171455269378818,
+ 500.0
+ ],
+ [
+ 121.60251841002723,
+ 28.138345558340209,
+ 500.0
+ ],
+ [
+ 121.51680470325249,
+ 28.1180735208616,
+ 500.0
+ ],
+ [
+ 121.428439,
+ 28.111247879965696,
+ 500.0
+ ],
+ [
+ 121.340073296747505,
+ 28.1180735208616,
+ 500.0
+ ],
+ [
+ 121.254359589972765,
+ 28.138345558340209,
+ 500.0
+ ],
+ [
+ 121.173873173313012,
+ 28.171455269378818,
+ 500.0
+ ],
+ [
+ 121.101037823363697,
+ 28.216407743425545,
+ 500.0
+ ],
+ [
+ 121.038054752030746,
+ 28.271850808978044,
+ 500.0
+ ],
+ [
+ 120.986837178274442,
+ 28.336114505004417,
+ 500.0
+ ],
+ [
+ 120.948952325588479,
+ 28.407260082658773,
+ 500.0
+ ],
+ [
+ 120.925572573574556,
+ 28.483137250777496,
+ 500.0
+ ],
+ [
+ 120.917437370254632,
+ 28.561448123335499,
+ 500.0
+ ],
+ [
+ 120.92482733318721,
+ 28.639816095593307,
+ 500.0
+ ],
+ [
+ 120.94755171989371,
+ 28.715857677077249,
+ 500.0
+ ],
+ [
+ 120.984950122742973,
+ 28.787255154457597,
+ 500.0
+ ],
+ [
+ 121.035908837362612,
+ 28.85182785758272,
+ 500.0
+ ],
+ [
+ 121.098891872199545,
+ 28.907599769294581,
+ 500.0
+ ],
+ [
+ 121.171986025370344,
+ 28.952861264861571,
+ 500.0
+ ],
+ [
+ 121.25295887919188,
+ 28.986222897721202,
+ 500.0
+ ],
+ [
+ 121.339327987770062,
+ 29.006659367995134,
+ 500.0
+ ],
+ [
+ 121.428439,
+ 29.013542116264361,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8009,
+ "name": "Wenzhou Yongqiang Airport",
+ "country": "CN",
+ "city": "Wenzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "27.8691004894317",
+ "lng": "120.828680985483",
+ "radius": 13353,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.791942764,
+ 27.8531485257,
+ 0.0
+ ],
+ [
+ 120.73192081,
+ 27.7848465553,
+ 0.0
+ ],
+ [
+ 120.802318488,
+ 27.752214198099999,
+ 0.0
+ ],
+ [
+ 120.833994249,
+ 27.8338848193,
+ 0.0
+ ],
+ [
+ 120.864634901,
+ 27.835754638400001,
+ 0.0
+ ],
+ [
+ 120.896451278,
+ 27.852836308899999,
+ 0.0
+ ],
+ [
+ 120.930574706,
+ 27.904822780300002,
+ 0.0
+ ],
+ [
+ 120.933775464,
+ 27.921178262800002,
+ 0.0
+ ],
+ [
+ 120.932076587,
+ 27.937708493900001,
+ 0.0
+ ],
+ [
+ 120.92559169499999,
+ 27.953286792699998,
+ 0.0
+ ],
+ [
+ 120.791942764,
+ 27.8531485257,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8009,
+ "name": "Wenzhou Yongqiang Airport",
+ "country": "CN",
+ "city": "Wenzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "27.9501221261313",
+ "lng": "120.872988204394",
+ "radius": 13405,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.96974561,
+ 28.0351769088,
+ 0.0
+ ],
+ [
+ 120.90269267399999,
+ 28.0677916673,
+ 0.0
+ ],
+ [
+ 120.872740424,
+ 27.984478350900002,
+ 0.0
+ ],
+ [
+ 120.839241395,
+ 27.982091244399999,
+ 0.0
+ ],
+ [
+ 120.82229462799999,
+ 27.974913665100001,
+ 0.0
+ ],
+ [
+ 120.808031607,
+ 27.9641055389,
+ 0.0
+ ],
+ [
+ 120.779097595,
+ 27.925415988800001,
+ 0.0
+ ],
+ [
+ 120.771722879,
+ 27.898410836099998,
+ 0.0
+ ],
+ [
+ 120.773865981,
+ 27.881921031600001,
+ 0.0
+ ],
+ [
+ 120.791942764,
+ 27.8531485257,
+ 0.0
+ ],
+ [
+ 120.92559169499999,
+ 27.953286792699998,
+ 0.0
+ ],
+ [
+ 120.914761053,
+ 27.966850897800001,
+ 0.0
+ ],
+ [
+ 120.96974561,
+ 28.0351769088,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8009,
+ "name": "Wenzhou Yongqiang Airport",
+ "country": "CN",
+ "city": "Wenzhou",
+ "height": 120,
+ "level": 2,
+ "lat": "27.907843963275",
+ "lng": "120.851846215959",
+ "radius": 23778,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.879050171,
+ 28.120335579500001,
+ 120.0
+ ],
+ [
+ 121.05310996199999,
+ 28.026718476199999,
+ 120.0
+ ],
+ [
+ 120.824301439,
+ 27.695392047799999,
+ 120.0
+ ],
+ [
+ 120.650773949,
+ 27.789009151799998,
+ 120.0
+ ],
+ [
+ 120.879050171,
+ 28.120335579500001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283180,
+ "name": "Bhairahawa Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.5056579456645",
+ "lng": "83.4162485724133",
+ "radius": 3803,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.379473436599994,
+ 27.515969822300001,
+ 0.0
+ ],
+ [
+ 83.454813749,
+ 27.506034826099999,
+ 0.0
+ ],
+ [
+ 83.453025296899995,
+ 27.4953601988,
+ 0.0
+ ],
+ [
+ 83.3776833517,
+ 27.505295389,
+ 0.0
+ ],
+ [
+ 83.379473436599994,
+ 27.515969822300001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283180,
+ "name": "Bhairahawa Airport",
+ "country": "NP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "27.4981449279787",
+ "lng": "83.4732732587109",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.454813749,
+ 27.506034826099999,
+ 60.0
+ ],
+ [
+ 83.491720779900007,
+ 27.506056859200001,
+ 60.0
+ ],
+ [
+ 83.488322041499998,
+ 27.485810646299999,
+ 60.0
+ ],
+ [
+ 83.453025296899995,
+ 27.4953601988,
+ 60.0
+ ],
+ [
+ 83.454813749,
+ 27.506034826099999,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283180,
+ "name": "Bhairahawa Airport",
+ "country": "NP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "27.5131845994181",
+ "lng": "83.3592224065535",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.344165270100007,
+ 27.525514292699999,
+ 60.0
+ ],
+ [
+ 83.379473436599994,
+ 27.515969822300001,
+ 60.0
+ ],
+ [
+ 83.3776833517,
+ 27.505295389,
+ 60.0
+ ],
+ [
+ 83.340776582100005,
+ 27.5052676195,
+ 60.0
+ ],
+ [
+ 83.344165270100007,
+ 27.525514292699999,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283180,
+ "name": "Bhairahawa Airport",
+ "country": "NP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "27.4900138938023",
+ "lng": "83.534782204905",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.491720779900007,
+ 27.506056859200001,
+ 150.0
+ ],
+ [
+ 83.577837218900001,
+ 27.506070397599999,
+ 150.0
+ ],
+ [
+ 83.5706572948,
+ 27.463493749800001,
+ 150.0
+ ],
+ [
+ 83.488322041499998,
+ 27.485810646299999,
+ 150.0
+ ],
+ [
+ 83.491720779900007,
+ 27.506056859200001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283180,
+ "name": "Bhairahawa Airport",
+ "country": "NP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "27.5212782041602",
+ "lng": "83.2976943784352",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.261755720899998,
+ 27.547750030300001,
+ 150.0
+ ],
+ [
+ 83.344165270100007,
+ 27.525514292699999,
+ 150.0
+ ],
+ [
+ 83.340776582100005,
+ 27.5052676195,
+ 150.0
+ ],
+ [
+ 83.254660882699994,
+ 27.5051649531,
+ 150.0
+ ],
+ [
+ 83.261755720899998,
+ 27.547750030300001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283181,
+ "name": "Bhairahawa Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "27.5056695381972",
+ "lng": "83.416250197896",
+ "radius": 4752,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.414635332100005,
+ 27.542247983700001,
+ 0.0
+ ],
+ [
+ 83.438011598599999,
+ 27.5383704668,
+ 0.0
+ ],
+ [
+ 83.445604062800001,
+ 27.5350191239,
+ 0.0
+ ],
+ [
+ 83.457641916300005,
+ 27.524540538499998,
+ 0.0
+ ],
+ [
+ 83.463830973200004,
+ 27.510625632499998,
+ 0.0
+ ],
+ [
+ 83.464352397300004,
+ 27.5031194906,
+ 0.0
+ ],
+ [
+ 83.463103018,
+ 27.495681217600001,
+ 0.0
+ ],
+ [
+ 83.460137779899995,
+ 27.488635855599998,
+ 0.0
+ ],
+ [
+ 83.449648379500005,
+ 27.4769244505,
+ 0.0
+ ],
+ [
+ 83.434698502,
+ 27.470009145700001,
+ 0.0
+ ],
+ [
+ 83.426339774400006,
+ 27.4687625866,
+ 0.0
+ ],
+ [
+ 83.402703787299998,
+ 27.471084841,
+ 0.0
+ ],
+ [
+ 83.386906656299999,
+ 27.476311326499999,
+ 0.0
+ ],
+ [
+ 83.374869096899999,
+ 27.486785408199999,
+ 0.0
+ ],
+ [
+ 83.36867246,
+ 27.500697190099999,
+ 0.0
+ ],
+ [
+ 83.368145776199995,
+ 27.5082030425,
+ 0.0
+ ],
+ [
+ 83.3693901221,
+ 27.515641997900001,
+ 0.0
+ ],
+ [
+ 83.372351455,
+ 27.522688892600002,
+ 0.0
+ ],
+ [
+ 83.382838948599996,
+ 27.534404713800001,
+ 0.0
+ ],
+ [
+ 83.397795474399999,
+ 27.5413235949,
+ 0.0
+ ],
+ [
+ 83.414635332100005,
+ 27.542247983700001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009300,
+ "name": "Bhairahawa Airport",
+ "country": "NP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.505234",
+ "lng": "83.416912",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 83.416912,
+ 27.956435935240659,
+ 500.0
+ ],
+ [
+ 83.505140142756375,
+ 27.949553387365523,
+ 500.0
+ ],
+ [
+ 83.590655019558341,
+ 27.92911739702674,
+ 500.0
+ ],
+ [
+ 83.67082982253514,
+ 27.895756177901323,
+ 500.0
+ ],
+ [
+ 83.743207521997135,
+ 27.85049451123712,
+ 500.0
+ ],
+ [
+ 83.805578074880387,
+ 27.794721230444093,
+ 500.0
+ ],
+ [
+ 83.856046861119268,
+ 27.730145347340621,
+ 500.0
+ ],
+ [
+ 83.89309212125147,
+ 27.658742365082219,
+ 500.0
+ ],
+ [
+ 83.915609685435612,
+ 27.582692628361833,
+ 500.0
+ ],
+ [
+ 83.922943843073455,
+ 27.504313782448452,
+ 500.0
+ ],
+ [
+ 83.914903763868111,
+ 27.425989546160558,
+ 500.0
+ ],
+ [
+ 83.891765411749688,
+ 27.350097052828584,
+ 500.0
+ ],
+ [
+ 83.854259367688996,
+ 27.278934984984893,
+ 500.0
+ ],
+ [
+ 83.803545380887812,
+ 27.214654633055556,
+ 500.0
+ ],
+ [
+ 83.741174794521854,
+ 27.159195857103434,
+ 500.0
+ ],
+ [
+ 83.669042244323691,
+ 27.114229735021784,
+ 500.0
+ ],
+ [
+ 83.589328213646965,
+ 27.08110945085393,
+ 500.0
+ ],
+ [
+ 83.504434158261972,
+ 27.060830721968671,
+ 500.0
+ ],
+ [
+ 83.416912,
+ 27.054002790853492,
+ 500.0
+ ],
+ [
+ 83.329389841738021,
+ 27.060830721968671,
+ 500.0
+ ],
+ [
+ 83.244495786353028,
+ 27.08110945085393,
+ 500.0
+ ],
+ [
+ 83.164781755676302,
+ 27.114229735021784,
+ 500.0
+ ],
+ [
+ 83.092649205478139,
+ 27.159195857103434,
+ 500.0
+ ],
+ [
+ 83.030278619112181,
+ 27.214654633055556,
+ 500.0
+ ],
+ [
+ 82.979564632310996,
+ 27.278934984984893,
+ 500.0
+ ],
+ [
+ 82.942058588250305,
+ 27.350097052828584,
+ 500.0
+ ],
+ [
+ 82.918920236131882,
+ 27.425989546160558,
+ 500.0
+ ],
+ [
+ 82.910880156926538,
+ 27.504313782448452,
+ 500.0
+ ],
+ [
+ 82.918214314564381,
+ 27.582692628361833,
+ 500.0
+ ],
+ [
+ 82.940731878748522,
+ 27.658742365082219,
+ 500.0
+ ],
+ [
+ 82.977777138880725,
+ 27.730145347340621,
+ 500.0
+ ],
+ [
+ 83.028245925119606,
+ 27.794721230444093,
+ 500.0
+ ],
+ [
+ 83.090616478002858,
+ 27.85049451123712,
+ 500.0
+ ],
+ [
+ 83.162994177464853,
+ 27.895756177901323,
+ 500.0
+ ],
+ [
+ 83.243168980441652,
+ 27.92911739702674,
+ 500.0
+ ],
+ [
+ 83.328683857243618,
+ 27.949553387365523,
+ 500.0
+ ],
+ [
+ 83.416912,
+ 27.956435935240659,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285740,
+ "name": "Meghauli Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.577245",
+ "lng": "84.229034",
+ "radius": 647,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 84.229034,
+ 27.583083680170642,
+ 0.0
+ ],
+ [
+ 84.230171864502452,
+ 27.582994972875149,
+ 0.0
+ ],
+ [
+ 84.231275150213662,
+ 27.582731546728919,
+ 0.0
+ ],
+ [
+ 84.232310329647447,
+ 27.582301406994091,
+ 0.0
+ ],
+ [
+ 84.233245945906418,
+ 27.581717625075012,
+ 0.0
+ ],
+ [
+ 84.234053568905395,
+ 27.580997941129855,
+ 0.0
+ ],
+ [
+ 84.234708659429231,
+ 27.580164224774691,
+ 0.0
+ ],
+ [
+ 84.235191314744256,
+ 27.579241810298704,
+ 0.0
+ ],
+ [
+ 84.235486873108087,
+ 27.578258726624444,
+ 0.0
+ ],
+ [
+ 84.235586358837523,
+ 27.577244845443094,
+ 0.0
+ ],
+ [
+ 84.23548675446213,
+ 27.576230973434605,
+ 0.0
+ ],
+ [
+ 84.235191091762815,
+ 27.575247916172529,
+ 0.0
+ ],
+ [
+ 84.234708359007158,
+ 27.574325542162352,
+ 0.0
+ ],
+ [
+ 84.234053227278011,
+ 27.573491875445875,
+ 0.0
+ ],
+ [
+ 84.233245604279034,
+ 27.572772244325094,
+ 0.0
+ ],
+ [
+ 84.23231002922536,
+ 27.572188512044672,
+ 0.0
+ ],
+ [
+ 84.231274927232221,
+ 27.571758412775669,
+ 0.0
+ ],
+ [
+ 84.230171745856509,
+ 27.571495013041623,
+ 0.0
+ ],
+ [
+ 84.229034,
+ 27.571406314918978,
+ 0.0
+ ],
+ [
+ 84.227896254143488,
+ 27.571495013041623,
+ 0.0
+ ],
+ [
+ 84.226793072767776,
+ 27.571758412775669,
+ 0.0
+ ],
+ [
+ 84.225757970774637,
+ 27.572188512044672,
+ 0.0
+ ],
+ [
+ 84.224822395720963,
+ 27.572772244325094,
+ 0.0
+ ],
+ [
+ 84.224014772721986,
+ 27.573491875445875,
+ 0.0
+ ],
+ [
+ 84.22335964099284,
+ 27.574325542162352,
+ 0.0
+ ],
+ [
+ 84.222876908237183,
+ 27.575247916172529,
+ 0.0
+ ],
+ [
+ 84.222581245537867,
+ 27.576230973434605,
+ 0.0
+ ],
+ [
+ 84.222481641162474,
+ 27.577244845443094,
+ 0.0
+ ],
+ [
+ 84.22258112689191,
+ 27.578258726624444,
+ 0.0
+ ],
+ [
+ 84.222876685255741,
+ 27.579241810298704,
+ 0.0
+ ],
+ [
+ 84.223359340570767,
+ 27.580164224774691,
+ 0.0
+ ],
+ [
+ 84.224014431094602,
+ 27.580997941129855,
+ 0.0
+ ],
+ [
+ 84.224822054093579,
+ 27.581717625075012,
+ 0.0
+ ],
+ [
+ 84.22575767035255,
+ 27.582301406994091,
+ 0.0
+ ],
+ [
+ 84.226792849786335,
+ 27.582731546728919,
+ 0.0
+ ],
+ [
+ 84.227896135497545,
+ 27.582994972875149,
+ 0.0
+ ],
+ [
+ 84.229034,
+ 27.583083680170642,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282830,
+ "name": "Bharatpur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.676769",
+ "lng": "84.428423",
+ "radius": 696,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 84.428423,
+ 27.683049777340496,
+ 0.0
+ ],
+ [
+ 84.429648152304523,
+ 27.682954352845954,
+ 0.0
+ ],
+ [
+ 84.430836072748434,
+ 27.682670979268412,
+ 0.0
+ ],
+ [
+ 84.431950661493815,
+ 27.682208268155893,
+ 0.0
+ ],
+ [
+ 84.432958048261398,
+ 27.681580280873664,
+ 0.0
+ ],
+ [
+ 84.433827621952204,
+ 27.680806101100689,
+ 0.0
+ ],
+ [
+ 84.434532961010973,
+ 27.679909254667649,
+ 0.0
+ ],
+ [
+ 84.435052636231291,
+ 27.678916994402272,
+ 0.0
+ ],
+ [
+ 84.43537086161011,
+ 27.677859471752026,
+ 0.0
+ ],
+ [
+ 84.435477973506693,
+ 27.676768820391789,
+ 0.0
+ ],
+ [
+ 84.435370723606752,
+ 27.675678179691506,
+ 0.0
+ ],
+ [
+ 84.435052376869805,
+ 27.674620687735352,
+ 0.0
+ ],
+ [
+ 84.434532611574184,
+ 27.673628474496063,
+ 0.0
+ ],
+ [
+ 84.433827224587375,
+ 27.672731685749053,
+ 0.0
+ ],
+ [
+ 84.432957650896554,
+ 27.671957567364277,
+ 0.0
+ ],
+ [
+ 84.43195031205704,
+ 27.671329637768064,
+ 0.0
+ ],
+ [
+ 84.430835813386963,
+ 27.67086697368164,
+ 0.0
+ ],
+ [
+ 84.429648014301151,
+ 27.670583630798198,
+ 0.0
+ ],
+ [
+ 84.428423,
+ 27.670488216963609,
+ 0.0
+ ],
+ [
+ 84.427197985698839,
+ 27.670583630798198,
+ 0.0
+ ],
+ [
+ 84.426010186613027,
+ 27.67086697368164,
+ 0.0
+ ],
+ [
+ 84.42489568794295,
+ 27.671329637768064,
+ 0.0
+ ],
+ [
+ 84.423888349103436,
+ 27.671957567364277,
+ 0.0
+ ],
+ [
+ 84.423018775412615,
+ 27.672731685749053,
+ 0.0
+ ],
+ [
+ 84.422313388425806,
+ 27.673628474496063,
+ 0.0
+ ],
+ [
+ 84.421793623130185,
+ 27.674620687735352,
+ 0.0
+ ],
+ [
+ 84.421475276393238,
+ 27.675678179691506,
+ 0.0
+ ],
+ [
+ 84.421368026493298,
+ 27.676768820391789,
+ 0.0
+ ],
+ [
+ 84.42147513838988,
+ 27.677859471752026,
+ 0.0
+ ],
+ [
+ 84.4217933637687,
+ 27.678916994402272,
+ 0.0
+ ],
+ [
+ 84.422313038989017,
+ 27.679909254667649,
+ 0.0
+ ],
+ [
+ 84.423018378047786,
+ 27.680806101100689,
+ 0.0
+ ],
+ [
+ 84.423887951738593,
+ 27.681580280873664,
+ 0.0
+ ],
+ [
+ 84.424895338506175,
+ 27.682208268155893,
+ 0.0
+ ],
+ [
+ 84.426009927251556,
+ 27.682670979268412,
+ 0.0
+ ],
+ [
+ 84.427197847695467,
+ 27.682954352845954,
+ 0.0
+ ],
+ [
+ 84.428423,
+ 27.683049777340496,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284560,
+ "name": "Tribhuvan International Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.6960816082095",
+ "lng": "85.3589211827297",
+ "radius": 4508,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.336283267599995,
+ 27.660833653699999,
+ 0.0
+ ],
+ [
+ 85.370252430799994,
+ 27.735371465,
+ 0.0
+ ],
+ [
+ 85.381559150100003,
+ 27.731333217300001,
+ 0.0
+ ],
+ [
+ 85.347581855200005,
+ 27.6567944996,
+ 0.0
+ ],
+ [
+ 85.336283267599995,
+ 27.660833653699999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284560,
+ "name": "Tribhuvan International Airport",
+ "country": "NP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "27.7494468133362",
+ "lng": "85.3832441403328",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.370252430799994,
+ 27.735371465,
+ 60.0
+ ],
+ [
+ 85.3788727827,
+ 27.7672052665,
+ 60.0
+ ],
+ [
+ 85.400320136700003,
+ 27.759544899800002,
+ 60.0
+ ],
+ [
+ 85.381559150100003,
+ 27.731333217300001,
+ 60.0
+ ],
+ [
+ 85.370252430799994,
+ 27.735371465,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284560,
+ "name": "Tribhuvan International Airport",
+ "country": "NP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "27.6427193563853",
+ "lng": "85.3345996372245",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.317541199700003,
+ 27.632620949700001,
+ 60.0
+ ],
+ [
+ 85.336283267599995,
+ 27.660833653699999,
+ 60.0
+ ],
+ [
+ 85.347581855200005,
+ 27.6567944996,
+ 60.0
+ ],
+ [
+ 85.338969475400006,
+ 27.6249608559,
+ 60.0
+ ],
+ [
+ 85.317541199700003,
+ 27.632620949700001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284560,
+ "name": "Tribhuvan International Airport",
+ "country": "NP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "27.8006001060352",
+ "lng": "85.4065831461887",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.3788727827,
+ 27.7672052665,
+ 150.0
+ ],
+ [
+ 85.399006572800005,
+ 27.8414820544,
+ 150.0
+ ],
+ [
+ 85.444133624,
+ 27.8253623,
+ 150.0
+ ],
+ [
+ 85.400320136700003,
+ 27.759544899800002,
+ 150.0
+ ],
+ [
+ 85.3788727827,
+ 27.7672052665,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284560,
+ "name": "Tribhuvan International Airport",
+ "country": "NP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "27.5915608711605",
+ "lng": "85.3113066080471",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.273847249799999,
+ 27.566781522900001,
+ 150.0
+ ],
+ [
+ 85.317541199700003,
+ 27.632620949700001,
+ 150.0
+ ],
+ [
+ 85.338969475400006,
+ 27.6249608559,
+ 150.0
+ ],
+ [
+ 85.318893377600006,
+ 27.550680288799999,
+ 150.0
+ ],
+ [
+ 85.273847249799999,
+ 27.566781522900001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284936,
+ "name": "Rumjatar Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.302469",
+ "lng": "86.550556",
+ "radius": 323,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 86.550556,
+ 27.305383943565111,
+ 0.0
+ ],
+ [
+ 86.551122632635128,
+ 27.305339657883508,
+ 0.0
+ ],
+ [
+ 86.551672047108937,
+ 27.305208146538671,
+ 0.0
+ ],
+ [
+ 86.55218754858393,
+ 27.304993405729821,
+ 0.0
+ ],
+ [
+ 86.552653472950126,
+ 27.304701960697514,
+ 0.0
+ ],
+ [
+ 86.553055662874698,
+ 27.304342667403276,
+ 0.0
+ ],
+ [
+ 86.553381898020419,
+ 27.303926443379062,
+ 0.0
+ ],
+ [
+ 86.553622266354438,
+ 27.303465935932888,
+ 0.0
+ ],
+ [
+ 86.553769465265177,
+ 27.302975137800143,
+ 0.0
+ ],
+ [
+ 86.553819023344971,
+ 27.302468961927179,
+ 0.0
+ ],
+ [
+ 86.553769436111949,
+ 27.301962788313634,
+ 0.0
+ ],
+ [
+ 86.553622211564289,
+ 27.301471996686601,
+ 0.0
+ ],
+ [
+ 86.553381824201864,
+ 27.301011499207789,
+ 0.0
+ ],
+ [
+ 86.553055578931321,
+ 27.30059528741036,
+ 0.0
+ ],
+ [
+ 86.552653389006764,
+ 27.300236007127559,
+ 0.0
+ ],
+ [
+ 86.552187474765375,
+ 27.29994457432203,
+ 0.0
+ ],
+ [
+ 86.551671992318788,
+ 27.299729843480542,
+ 0.0
+ ],
+ [
+ 86.5511226034819,
+ 27.299598338641434,
+ 0.0
+ ],
+ [
+ 86.550556,
+ 27.299554055219243,
+ 0.0
+ ],
+ [
+ 86.5499893965181,
+ 27.299598338641434,
+ 0.0
+ ],
+ [
+ 86.549440007681213,
+ 27.299729843480542,
+ 0.0
+ ],
+ [
+ 86.548924525234625,
+ 27.29994457432203,
+ 0.0
+ ],
+ [
+ 86.548458610993237,
+ 27.300236007127559,
+ 0.0
+ ],
+ [
+ 86.548056421068679,
+ 27.30059528741036,
+ 0.0
+ ],
+ [
+ 86.547730175798137,
+ 27.301011499207789,
+ 0.0
+ ],
+ [
+ 86.547489788435712,
+ 27.301471996686601,
+ 0.0
+ ],
+ [
+ 86.547342563888051,
+ 27.301962788313634,
+ 0.0
+ ],
+ [
+ 86.547292976655029,
+ 27.302468961927179,
+ 0.0
+ ],
+ [
+ 86.547342534734824,
+ 27.302975137800143,
+ 0.0
+ ],
+ [
+ 86.547489733645563,
+ 27.303465935932888,
+ 0.0
+ ],
+ [
+ 86.547730101979582,
+ 27.303926443379062,
+ 0.0
+ ],
+ [
+ 86.548056337125303,
+ 27.304342667403276,
+ 0.0
+ ],
+ [
+ 86.548458527049874,
+ 27.304701960697514,
+ 0.0
+ ],
+ [
+ 86.54892445141607,
+ 27.304993405729821,
+ 0.0
+ ],
+ [
+ 86.549439952891063,
+ 27.305208146538671,
+ 0.0
+ ],
+ [
+ 86.549989367364873,
+ 27.305339657883508,
+ 0.0
+ ],
+ [
+ 86.550556,
+ 27.305383943565111,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284810,
+ "name": "Ramechhap Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "27.393127",
+ "lng": "86.06008",
+ "radius": 399,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 86.06008,
+ 27.396727765704611,
+ 0.0
+ ],
+ [
+ 86.060780532300114,
+ 27.396673060237841,
+ 0.0
+ ],
+ [
+ 86.061459777264005,
+ 27.396510606191647,
+ 0.0
+ ],
+ [
+ 86.0620970946037,
+ 27.396245340099725,
+ 0.0
+ ],
+ [
+ 86.062673118438113,
+ 27.395885322627027,
+ 0.0
+ ],
+ [
+ 86.063170345874298,
+ 27.395441493567425,
+ 0.0
+ ],
+ [
+ 86.063573668908447,
+ 27.394927339341638,
+ 0.0
+ ],
+ [
+ 86.06387083347488,
+ 27.394358483110697,
+ 0.0
+ ],
+ [
+ 86.064052811695092,
+ 27.393752209972131,
+ 0.0
+ ],
+ [
+ 86.064114076026414,
+ 27.393126941678013,
+ 0.0
+ ],
+ [
+ 86.064052766999666,
+ 27.392501676845082,
+ 0.0
+ ],
+ [
+ 86.063870749474958,
+ 27.391895413672611,
+ 0.0
+ ],
+ [
+ 86.063573555735644,
+ 27.3913265727106,
+ 0.0
+ ],
+ [
+ 86.063170217178936,
+ 27.39081243721494,
+ 0.0
+ ],
+ [
+ 86.062672989742751,
+ 27.390368628087522,
+ 0.0
+ ],
+ [
+ 86.062096981430912,
+ 27.390008629344944,
+ 0.0
+ ],
+ [
+ 86.061459693264084,
+ 27.389743378521946,
+ 0.0
+ ],
+ [
+ 86.060780487604688,
+ 27.389580934441845,
+ 0.0
+ ],
+ [
+ 86.06008,
+ 27.389526232436257,
+ 0.0
+ ],
+ [
+ 86.05937951239531,
+ 27.389580934441845,
+ 0.0
+ ],
+ [
+ 86.058700306735915,
+ 27.389743378521946,
+ 0.0
+ ],
+ [
+ 86.058063018569086,
+ 27.390008629344944,
+ 0.0
+ ],
+ [
+ 86.057487010257248,
+ 27.390368628087522,
+ 0.0
+ ],
+ [
+ 86.056989782821063,
+ 27.39081243721494,
+ 0.0
+ ],
+ [
+ 86.056586444264354,
+ 27.3913265727106,
+ 0.0
+ ],
+ [
+ 86.05628925052504,
+ 27.391895413672611,
+ 0.0
+ ],
+ [
+ 86.056107233000333,
+ 27.392501676845082,
+ 0.0
+ ],
+ [
+ 86.056045923973585,
+ 27.393126941678013,
+ 0.0
+ ],
+ [
+ 86.056107188304907,
+ 27.393752209972131,
+ 0.0
+ ],
+ [
+ 86.056289166525119,
+ 27.394358483110697,
+ 0.0
+ ],
+ [
+ 86.056586331091552,
+ 27.394927339341638,
+ 0.0
+ ],
+ [
+ 86.056989654125701,
+ 27.395441493567425,
+ 0.0
+ ],
+ [
+ 86.057486881561886,
+ 27.395885322627027,
+ 0.0
+ ],
+ [
+ 86.058062905396298,
+ 27.396245340099725,
+ 0.0
+ ],
+ [
+ 86.058700222735993,
+ 27.396510606191647,
+ 0.0
+ ],
+ [
+ 86.059379467699884,
+ 27.396673060237841,
+ 0.0
+ ],
+ [
+ 86.06008,
+ 27.396727765704611,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284561,
+ "name": "Tribhuvan International Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "27.6955618604364",
+ "lng": "85.3603757129574",
+ "radius": 5453,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.315658105500006,
+ 27.697292084400001,
+ 0.0
+ ],
+ [
+ 85.330791003399995,
+ 27.728422619500002,
+ 0.0
+ ],
+ [
+ 85.342936241700002,
+ 27.7388240575,
+ 0.0
+ ],
+ [
+ 85.350569935799996,
+ 27.742126822100001,
+ 0.0
+ ],
+ [
+ 85.367304850899998,
+ 27.744220415499999,
+ 0.0
+ ],
+ [
+ 85.383554330300001,
+ 27.740106856600001,
+ 0.0
+ ],
+ [
+ 85.396506427399999,
+ 27.730498041600001,
+ 0.0
+ ],
+ [
+ 85.403921142399994,
+ 27.717056584200002,
+ 0.0
+ ],
+ [
+ 85.405106983899998,
+ 27.709609842799999,
+ 0.0
+ ],
+ [
+ 85.404518044499994,
+ 27.702107564399999,
+ 0.0
+ ],
+ [
+ 85.390994625199994,
+ 27.670354208500001,
+ 0.0
+ ],
+ [
+ 85.381547343799994,
+ 27.657954990899999,
+ 0.0
+ ],
+ [
+ 85.367224869899999,
+ 27.6500298102,
+ 0.0
+ ],
+ [
+ 85.350502522699998,
+ 27.6479479451,
+ 0.0
+ ],
+ [
+ 85.342141519099997,
+ 27.649253059799999,
+ 0.0
+ ],
+ [
+ 85.327229347900001,
+ 27.656272937699999,
+ 0.0
+ ],
+ [
+ 85.316827575100007,
+ 27.668057493900001,
+ 0.0
+ ],
+ [
+ 85.313920424900004,
+ 27.6751234173,
+ 0.0
+ ],
+ [
+ 85.312735401300003,
+ 27.682570214,
+ 0.0
+ ],
+ [
+ 85.313324640800005,
+ 27.6900724674,
+ 0.0
+ ],
+ [
+ 85.315658105500006,
+ 27.697292084400001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285454,
+ "name": "Phaplu Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.51806",
+ "lng": "86.584902",
+ "radius": 432,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 86.584902,
+ 27.521958503360985,
+ 0.0
+ ],
+ [
+ 86.585661328457888,
+ 27.521899274278717,
+ 0.0
+ ],
+ [
+ 86.58639758272534,
+ 27.521723386861673,
+ 0.0
+ ],
+ [
+ 86.587088389996552,
+ 27.521436185890039,
+ 0.0
+ ],
+ [
+ 86.587712758889239,
+ 27.521046398632002,
+ 0.0
+ ],
+ [
+ 86.588251717444379,
+ 27.520565869572188,
+ 0.0
+ ],
+ [
+ 86.588688889679318,
+ 27.520009200402832,
+ 0.0
+ ],
+ [
+ 86.589010993163569,
+ 27.519393306230857,
+ 0.0
+ ],
+ [
+ 86.589208242499026,
+ 27.518736901500837,
+ 0.0
+ ],
+ [
+ 86.589274646456843,
+ 27.518059931268116,
+ 0.0
+ ],
+ [
+ 86.589208189765571,
+ 27.517382965114511,
+ 0.0
+ ],
+ [
+ 86.589010894057097,
+ 27.516726572129862,
+ 0.0
+ ],
+ [
+ 86.588688756153516,
+ 27.51611069595284,
+ 0.0
+ ],
+ [
+ 86.588251565604438,
+ 27.515554048857556,
+ 0.0
+ ],
+ [
+ 86.587712607049298,
+ 27.515073543288477,
+ 0.0
+ ],
+ [
+ 86.587088256470764,
+ 27.514683778104498,
+ 0.0
+ ],
+ [
+ 86.586397483618853,
+ 27.51439659512782,
+ 0.0
+ ],
+ [
+ 86.585661275724433,
+ 27.514220719456144,
+ 0.0
+ ],
+ [
+ 86.584902,
+ 27.514161494452999,
+ 0.0
+ ],
+ [
+ 86.584142724275566,
+ 27.514220719456144,
+ 0.0
+ ],
+ [
+ 86.583406516381146,
+ 27.51439659512782,
+ 0.0
+ ],
+ [
+ 86.582715743529235,
+ 27.514683778104498,
+ 0.0
+ ],
+ [
+ 86.582091392950701,
+ 27.515073543288477,
+ 0.0
+ ],
+ [
+ 86.581552434395562,
+ 27.515554048857556,
+ 0.0
+ ],
+ [
+ 86.581115243846483,
+ 27.51611069595284,
+ 0.0
+ ],
+ [
+ 86.580793105942902,
+ 27.516726572129862,
+ 0.0
+ ],
+ [
+ 86.580595810234428,
+ 27.517382965114511,
+ 0.0
+ ],
+ [
+ 86.580529353543156,
+ 27.518059931268116,
+ 0.0
+ ],
+ [
+ 86.580595757500973,
+ 27.518736901500837,
+ 0.0
+ ],
+ [
+ 86.58079300683643,
+ 27.519393306230857,
+ 0.0
+ ],
+ [
+ 86.581115110320681,
+ 27.520009200402832,
+ 0.0
+ ],
+ [
+ 86.58155228255562,
+ 27.520565869572188,
+ 0.0
+ ],
+ [
+ 86.58209124111076,
+ 27.521046398632002,
+ 0.0
+ ],
+ [
+ 86.582715610003447,
+ 27.521436185890039,
+ 0.0
+ ],
+ [
+ 86.583406417274659,
+ 27.521723386861673,
+ 0.0
+ ],
+ [
+ 86.584142671542111,
+ 27.521899274278717,
+ 0.0
+ ],
+ [
+ 86.584902,
+ 27.521958503360985,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283612,
+ "name": "Lukla Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "27.6000000002317",
+ "lng": "86.7000000000201",
+ "radius": 4000,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 86.740592098500002,
+ 27.599994096300001,
+ 0.0
+ ],
+ [
+ 86.659407908099993,
+ 27.599982289,
+ 0.0
+ ],
+ [
+ 86.660289462199998,
+ 27.6074619792,
+ 0.0
+ ],
+ [
+ 86.662906906299995,
+ 27.6146157648,
+ 0.0
+ ],
+ [
+ 86.672822054899996,
+ 27.6267224992,
+ 0.0
+ ],
+ [
+ 86.687439758599993,
+ 27.6342080111,
+ 0.0
+ ],
+ [
+ 86.704231160800006,
+ 27.6357769693,
+ 0.0
+ ],
+ [
+ 86.720290280900002,
+ 27.631157841099999,
+ 0.0
+ ],
+ [
+ 86.732838204499998,
+ 27.621150006499999,
+ 0.0
+ ],
+ [
+ 86.739705005499999,
+ 27.6074850794,
+ 0.0
+ ],
+ [
+ 86.740592098500002,
+ 27.599994096300001,
+ 0.0
+ ],
+ [
+ 86.659407908099993,
+ 27.599982289,
+ 0.0
+ ],
+ [
+ 86.660289462199998,
+ 27.6074619792,
+ 0.0
+ ],
+ [
+ 86.662906906299995,
+ 27.6146157648,
+ 0.0
+ ],
+ [
+ 86.672822054899996,
+ 27.6267224992,
+ 0.0
+ ],
+ [
+ 86.687439758599993,
+ 27.6342080111,
+ 0.0
+ ],
+ [
+ 86.704231160800006,
+ 27.6357769693,
+ 0.0
+ ],
+ [
+ 86.720290280900002,
+ 27.631157841099999,
+ 0.0
+ ],
+ [
+ 86.732838204499998,
+ 27.621150006499999,
+ 0.0
+ ],
+ [
+ 86.739705005499999,
+ 27.6074850794,
+ 0.0
+ ],
+ [
+ 86.740592098500002,
+ 27.599994096300001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009652,
+ "name": "Lukla Airport",
+ "country": "NP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.686913",
+ "lng": "86.729423",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 86.729423,
+ 28.138103058376284,
+ 500.0
+ ],
+ [
+ 86.817799485018014,
+ 28.131220475987302,
+ 500.0
+ ],
+ [
+ 86.903457890802031,
+ 28.110784402775415,
+ 500.0
+ ],
+ [
+ 86.983766780311768,
+ 28.077423111357316,
+ 500.0
+ ],
+ [
+ 87.056264852483835,
+ 28.032161471401871,
+ 500.0
+ ],
+ [
+ 87.118738304487238,
+ 27.976388420872141,
+ 500.0
+ ],
+ [
+ 87.169289394397552,
+ 27.911813076127217,
+ 500.0
+ ],
+ [
+ 87.206393972382159,
+ 27.840411028036783,
+ 500.0
+ ],
+ [
+ 87.228946268085423,
+ 27.764362676902394,
+ 500.0
+ ],
+ [
+ 87.236289783612804,
+ 27.685985679753475,
+ 500.0
+ ],
+ [
+ 87.22823370553202,
+ 27.607663716660486,
+ 500.0
+ ],
+ [
+ 87.205054781746753,
+ 27.531773831028893,
+ 500.0
+ ],
+ [
+ 87.167485084845524,
+ 27.460614569785946,
+ 500.0
+ ],
+ [
+ 87.116686487437931,
+ 27.396337053168317,
+ 500.0
+ ],
+ [
+ 87.054213001453107,
+ 27.34088095193588,
+ 500.0
+ ],
+ [
+ 86.981962384715757,
+ 27.295917153685135,
+ 500.0
+ ],
+ [
+ 86.902118602321039,
+ 27.262798669916325,
+ 500.0
+ ],
+ [
+ 86.817086858600433,
+ 27.242521080500012,
+ 500.0
+ ],
+ [
+ 86.729423,
+ 27.235693539391352,
+ 500.0
+ ],
+ [
+ 86.641759141399561,
+ 27.242521080500012,
+ 500.0
+ ],
+ [
+ 86.556727397678955,
+ 27.262798669916325,
+ 500.0
+ ],
+ [
+ 86.476883615284237,
+ 27.295917153685135,
+ 500.0
+ ],
+ [
+ 86.404632998546887,
+ 27.34088095193588,
+ 500.0
+ ],
+ [
+ 86.342159512562063,
+ 27.396337053168317,
+ 500.0
+ ],
+ [
+ 86.29136091515447,
+ 27.460614569785946,
+ 500.0
+ ],
+ [
+ 86.253791218253241,
+ 27.531773831028893,
+ 500.0
+ ],
+ [
+ 86.230612294467974,
+ 27.607663716660486,
+ 500.0
+ ],
+ [
+ 86.22255621638719,
+ 27.685985679753475,
+ 500.0
+ ],
+ [
+ 86.229899731914571,
+ 27.764362676902394,
+ 500.0
+ ],
+ [
+ 86.252452027617835,
+ 27.840411028036783,
+ 500.0
+ ],
+ [
+ 86.289556605602442,
+ 27.911813076127217,
+ 500.0
+ ],
+ [
+ 86.340107695512756,
+ 27.976388420872141,
+ 500.0
+ ],
+ [
+ 86.402581147516159,
+ 28.032161471401871,
+ 500.0
+ ],
+ [
+ 86.475079219688226,
+ 28.077423111357316,
+ 500.0
+ ],
+ [
+ 86.555388109197963,
+ 28.110784402775415,
+ 500.0
+ ],
+ [
+ 86.64104651498198,
+ 28.131220475987302,
+ 500.0
+ ],
+ [
+ 86.729423,
+ 28.138103058376284,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283611,
+ "name": "Lukla Airport",
+ "country": "NP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "27.6443350342314",
+ "lng": "86.7",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 86.711553153099999,
+ 27.659354986,
+ 60.0
+ ],
+ [
+ 86.706090314899996,
+ 27.626979515199999,
+ 60.0
+ ],
+ [
+ 86.693909685099996,
+ 27.626979515199999,
+ 60.0
+ ],
+ [
+ 86.688446846900007,
+ 27.659354986,
+ 60.0
+ ],
+ [
+ 86.711553153099999,
+ 27.659354986,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283611,
+ "name": "Lukla Airport",
+ "country": "NP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "27.699499135369",
+ "lng": "86.7",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 86.724312373199993,
+ 27.7348969172,
+ 150.0
+ ],
+ [
+ 86.711553153099999,
+ 27.659354986,
+ 150.0
+ ],
+ [
+ 86.688446846900007,
+ 27.659354986,
+ 150.0
+ ],
+ [
+ 86.675687626799998,
+ 27.7348969172,
+ 150.0
+ ],
+ [
+ 86.724312373199993,
+ 27.7348969172,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009157,
+ "name": "Tribhuvan International Airport",
+ "country": "NP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.693302",
+ "lng": "85.356731",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.356731,
+ 28.144491639775808,
+ 500.0
+ ],
+ [
+ 85.445112726933033,
+ 28.137609056174107,
+ 500.0
+ ],
+ [
+ 85.530776204558776,
+ 28.117172980052157,
+ 500.0
+ ],
+ [
+ 85.611089832267794,
+ 28.083811686102848,
+ 500.0
+ ],
+ [
+ 85.683592158067654,
+ 28.038550047109677,
+ 500.0
+ ],
+ [
+ 85.746069246272327,
+ 27.982777004718436,
+ 500.0
+ ],
+ [
+ 85.79662324463898,
+ 27.918201678970309,
+ 500.0
+ ],
+ [
+ 85.833729918859845,
+ 27.846799663824019,
+ 500.0
+ ],
+ [
+ 85.856283442010678,
+ 27.770751361538952,
+ 500.0
+ ],
+ [
+ 85.863627288361414,
+ 27.692374429557461,
+ 500.0
+ ],
+ [
+ 85.855570645059103,
+ 27.614052546583551,
+ 500.0
+ ],
+ [
+ 85.832390287694238,
+ 27.538162752853388,
+ 500.0
+ ],
+ [
+ 85.794818341550268,
+ 27.467003590515866,
+ 500.0
+ ],
+ [
+ 85.744016754261409,
+ 27.402726173811136,
+ 500.0
+ ],
+ [
+ 85.681539632057635,
+ 27.347270166829503,
+ 500.0
+ ],
+ [
+ 85.609284843090364,
+ 27.302306450463092,
+ 500.0
+ ],
+ [
+ 85.529436475496667,
+ 27.269188030133503,
+ 500.0
+ ],
+ [
+ 85.444399866084055,
+ 27.248910480867316,
+ 500.0
+ ],
+ [
+ 85.356731,
+ 27.242082953500777,
+ 500.0
+ ],
+ [
+ 85.269062133915938,
+ 27.248910480867316,
+ 500.0
+ ],
+ [
+ 85.184025524503326,
+ 27.269188030133503,
+ 500.0
+ ],
+ [
+ 85.104177156909628,
+ 27.302306450463092,
+ 500.0
+ ],
+ [
+ 85.031922367942357,
+ 27.347270166829503,
+ 500.0
+ ],
+ [
+ 84.969445245738584,
+ 27.402726173811136,
+ 500.0
+ ],
+ [
+ 84.918643658449724,
+ 27.467003590515866,
+ 500.0
+ ],
+ [
+ 84.881071712305754,
+ 27.538162752853388,
+ 500.0
+ ],
+ [
+ 84.85789135494089,
+ 27.614052546583551,
+ 500.0
+ ],
+ [
+ 84.849834711638579,
+ 27.692374429557461,
+ 500.0
+ ],
+ [
+ 84.857178557989315,
+ 27.770751361538952,
+ 500.0
+ ],
+ [
+ 84.879732081140148,
+ 27.846799663824019,
+ 500.0
+ ],
+ [
+ 84.916838755361013,
+ 27.918201678970309,
+ 500.0
+ ],
+ [
+ 84.967392753727665,
+ 27.982777004718436,
+ 500.0
+ ],
+ [
+ 85.029869841932339,
+ 28.038550047109677,
+ 500.0
+ ],
+ [
+ 85.102372167732199,
+ 28.083811686102848,
+ 500.0
+ ],
+ [
+ 85.182685795441216,
+ 28.117172980052157,
+ 500.0
+ ],
+ [
+ 85.26834927306696,
+ 28.137609056174107,
+ 500.0
+ ],
+ [
+ 85.356731,
+ 28.144491639775808,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30272911,
+ "name": "Tumling Tar Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.315249",
+ "lng": "87.194004",
+ "radius": 740,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 87.194004,
+ 27.321927184868468,
+ 0.0
+ ],
+ [
+ 87.195302359543248,
+ 27.321825722252402,
+ 0.0
+ ],
+ [
+ 87.196561262178662,
+ 27.32152441782997,
+ 0.0
+ ],
+ [
+ 87.197742450710393,
+ 27.321032428125577,
+ 0.0
+ ],
+ [
+ 87.198810030813164,
+ 27.320364704359772,
+ 0.0
+ ],
+ [
+ 87.199731562207191,
+ 27.319541537878965,
+ 0.0
+ ],
+ [
+ 87.200479044628892,
+ 27.318587943263509,
+ 0.0
+ ],
+ [
+ 87.2010297686043,
+ 27.317532897900346,
+ 0.0
+ ],
+ [
+ 87.201367005175101,
+ 27.316408461170308,
+ 0.0
+ ],
+ [
+ 87.201480513655056,
+ 27.315248800055258,
+ 0.0
+ ],
+ [
+ 87.201366852055031,
+ 27.314089150805888,
+ 0.0
+ ],
+ [
+ 87.201029480832688,
+ 27.312964748241725,
+ 0.0
+ ],
+ [
+ 87.200478656915209,
+ 27.31190975522372,
+ 0.0
+ ],
+ [
+ 87.19973112131548,
+ 27.310956224819101,
+ 0.0
+ ],
+ [
+ 87.198809589921453,
+ 27.310133126670056,
+ 0.0
+ ],
+ [
+ 87.197742062996738,
+ 27.309465467115086,
+ 0.0
+ ],
+ [
+ 87.196560974407035,
+ 27.308973529755843,
+ 0.0
+ ],
+ [
+ 87.19530220642315,
+ 27.308672259499303,
+ 0.0
+ ],
+ [
+ 87.194004,
+ 27.308570808748915,
+ 0.0
+ ],
+ [
+ 87.192705793576863,
+ 27.308672259499303,
+ 0.0
+ ],
+ [
+ 87.191447025592979,
+ 27.308973529755843,
+ 0.0
+ ],
+ [
+ 87.190265937003275,
+ 27.309465467115086,
+ 0.0
+ ],
+ [
+ 87.189198410078561,
+ 27.310133126670056,
+ 0.0
+ ],
+ [
+ 87.188276878684533,
+ 27.310956224819101,
+ 0.0
+ ],
+ [
+ 87.187529343084805,
+ 27.31190975522372,
+ 0.0
+ ],
+ [
+ 87.186978519167326,
+ 27.312964748241725,
+ 0.0
+ ],
+ [
+ 87.186641147944982,
+ 27.314089150805888,
+ 0.0
+ ],
+ [
+ 87.186527486344957,
+ 27.315248800055258,
+ 0.0
+ ],
+ [
+ 87.186640994824913,
+ 27.316408461170308,
+ 0.0
+ ],
+ [
+ 87.186978231395713,
+ 27.317532897900346,
+ 0.0
+ ],
+ [
+ 87.187528955371121,
+ 27.318587943263509,
+ 0.0
+ ],
+ [
+ 87.188276437792823,
+ 27.319541537878965,
+ 0.0
+ ],
+ [
+ 87.18919796918685,
+ 27.320364704359772,
+ 0.0
+ ],
+ [
+ 87.19026554928962,
+ 27.321032428125577,
+ 0.0
+ ],
+ [
+ 87.191446737821352,
+ 27.32152441782997,
+ 0.0
+ ],
+ [
+ 87.192705640456765,
+ 27.321825722252402,
+ 0.0
+ ],
+ [
+ 87.194004,
+ 27.321927184868468,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287151,
+ "name": "Suketar Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.350946",
+ "lng": "87.695158",
+ "radius": 367,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 87.695158,
+ 27.354258002581247,
+ 0.0
+ ],
+ [
+ 87.695802103325562,
+ 27.354207684346488,
+ 0.0
+ ],
+ [
+ 87.696426634194992,
+ 27.354058258668196,
+ 0.0
+ ],
+ [
+ 87.697012615056749,
+ 27.353814266149779,
+ 0.0
+ ],
+ [
+ 87.697542240067705,
+ 27.353483120962274,
+ 0.0
+ ],
+ [
+ 87.697999416248805,
+ 27.353074885498362,
+ 0.0
+ ],
+ [
+ 87.698370252533323,
+ 27.352601964545521,
+ 0.0
+ ],
+ [
+ 87.69864348183981,
+ 27.352078728281217,
+ 0.0
+ ],
+ [
+ 87.69881080334541,
+ 27.351521075556306,
+ 0.0
+ ],
+ [
+ 87.698867134567934,
+ 27.350945950746272,
+ 0.0
+ ],
+ [
+ 87.698810765614041,
+ 27.350370828859234,
+ 0.0
+ ],
+ [
+ 87.698643410928028,
+ 27.349813184550708,
+ 0.0
+ ],
+ [
+ 87.69837015699413,
+ 27.349289961181075,
+ 0.0
+ ],
+ [
+ 87.69799930760567,
+ 27.348817056045874,
+ 0.0
+ ],
+ [
+ 87.697542131424555,
+ 27.348408837414755,
+ 0.0
+ ],
+ [
+ 87.697012519517557,
+ 27.348077708044904,
+ 0.0
+ ],
+ [
+ 87.696426563283225,
+ 27.347833728421154,
+ 0.0
+ ],
+ [
+ 87.695802065594194,
+ 27.347684311159266,
+ 0.0
+ ],
+ [
+ 87.695158,
+ 27.347633995847481,
+ 0.0
+ ],
+ [
+ 87.694513934405819,
+ 27.347684311159266,
+ 0.0
+ ],
+ [
+ 87.693889436716788,
+ 27.347833728421154,
+ 0.0
+ ],
+ [
+ 87.693303480482456,
+ 27.348077708044904,
+ 0.0
+ ],
+ [
+ 87.692773868575458,
+ 27.348408837414755,
+ 0.0
+ ],
+ [
+ 87.692316692394343,
+ 27.348817056045874,
+ 0.0
+ ],
+ [
+ 87.691945843005882,
+ 27.349289961181075,
+ 0.0
+ ],
+ [
+ 87.691672589071985,
+ 27.349813184550708,
+ 0.0
+ ],
+ [
+ 87.691505234385971,
+ 27.350370828859234,
+ 0.0
+ ],
+ [
+ 87.691448865432079,
+ 27.350945950746272,
+ 0.0
+ ],
+ [
+ 87.691505196654603,
+ 27.351521075556306,
+ 0.0
+ ],
+ [
+ 87.691672518160203,
+ 27.352078728281217,
+ 0.0
+ ],
+ [
+ 87.69194574746669,
+ 27.352601964545521,
+ 0.0
+ ],
+ [
+ 87.692316583751207,
+ 27.353074885498362,
+ 0.0
+ ],
+ [
+ 87.692773759932308,
+ 27.353483120962274,
+ 0.0
+ ],
+ [
+ 87.693303384943263,
+ 27.353814266149779,
+ 0.0
+ ],
+ [
+ 87.69388936580502,
+ 27.354058258668196,
+ 0.0
+ ],
+ [
+ 87.694513896674451,
+ 27.354207684346488,
+ 0.0
+ ],
+ [
+ 87.695158,
+ 27.354258002581247,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282826,
+ "name": "Bhojpur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "27.147057",
+ "lng": "87.051112",
+ "radius": 344,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 87.051112,
+ 27.150161528873475,
+ 0.0
+ ],
+ [
+ 87.051714636329123,
+ 27.150114362820695,
+ 0.0
+ ],
+ [
+ 87.052298960378252,
+ 27.149974297893859,
+ 0.0
+ ],
+ [
+ 87.052847216455305,
+ 27.149745590225656,
+ 0.0
+ ],
+ [
+ 87.053342745110839,
+ 27.149435189489573,
+ 0.0
+ ],
+ [
+ 87.053770489443494,
+ 27.149052527676488,
+ 0.0
+ ],
+ [
+ 87.054117452658346,
+ 27.148609232433422,
+ 0.0
+ ],
+ [
+ 87.054373092967822,
+ 27.148118773683525,
+ 0.0
+ ],
+ [
+ 87.054529643836617,
+ 27.147596054274366,
+ 0.0
+ ],
+ [
+ 87.054582349847308,
+ 27.14705695710132,
+ 0.0
+ ],
+ [
+ 87.054529611034397,
+ 27.146517862473964,
+ 0.0
+ ],
+ [
+ 87.054373031319841,
+ 27.145995150394821,
+ 0.0
+ ],
+ [
+ 87.054117369600235,
+ 27.145504702875165,
+ 0.0
+ ],
+ [
+ 87.053770394993307,
+ 27.145061421408027,
+ 0.0
+ ],
+ [
+ 87.053342650660653,
+ 27.144678774254984,
+ 0.0
+ ],
+ [
+ 87.052847133397194,
+ 27.144368387294847,
+ 0.0
+ ],
+ [
+ 87.052298898730271,
+ 27.144139690856878,
+ 0.0
+ ],
+ [
+ 87.051714603526918,
+ 27.143999633260073,
+ 0.0
+ ],
+ [
+ 87.051112,
+ 27.143952469752971,
+ 0.0
+ ],
+ [
+ 87.050509396473089,
+ 27.143999633260073,
+ 0.0
+ ],
+ [
+ 87.049925101269736,
+ 27.144139690856878,
+ 0.0
+ ],
+ [
+ 87.049376866602813,
+ 27.144368387294847,
+ 0.0
+ ],
+ [
+ 87.048881349339354,
+ 27.144678774254984,
+ 0.0
+ ],
+ [
+ 87.048453605006699,
+ 27.145061421408027,
+ 0.0
+ ],
+ [
+ 87.048106630399772,
+ 27.145504702875165,
+ 0.0
+ ],
+ [
+ 87.047850968680166,
+ 27.145995150394821,
+ 0.0
+ ],
+ [
+ 87.04769438896561,
+ 27.146517862473964,
+ 0.0
+ ],
+ [
+ 87.047641650152698,
+ 27.14705695710132,
+ 0.0
+ ],
+ [
+ 87.04769435616339,
+ 27.147596054274366,
+ 0.0
+ ],
+ [
+ 87.047850907032185,
+ 27.148118773683525,
+ 0.0
+ ],
+ [
+ 87.048106547341661,
+ 27.148609232433422,
+ 0.0
+ ],
+ [
+ 87.048453510556513,
+ 27.149052527676488,
+ 0.0
+ ],
+ [
+ 87.048881254889167,
+ 27.149435189489573,
+ 0.0
+ ],
+ [
+ 87.049376783544702,
+ 27.149745590225656,
+ 0.0
+ ],
+ [
+ 87.049925039621755,
+ 27.149974297893859,
+ 0.0
+ ],
+ [
+ 87.050509363670884,
+ 27.150114362820695,
+ 0.0
+ ],
+ [
+ 87.051112,
+ 27.150161528873475,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285142,
+ "name": "Paro Airport",
+ "country": "BT",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.4030808988953",
+ "lng": "89.424828719884",
+ "radius": 4037,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.410001832500001,
+ 27.436926001300002,
+ 0.0
+ ],
+ [
+ 89.450206844299998,
+ 27.3746036326,
+ 0.0
+ ],
+ [
+ 89.439661907900003,
+ 27.369239541,
+ 0.0
+ ],
+ [
+ 89.399450462600001,
+ 27.431562662,
+ 0.0
+ ],
+ [
+ 89.410001832500001,
+ 27.436926001300002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285142,
+ "name": "Paro Airport",
+ "country": "BT",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "27.3568610642205",
+ "lng": "89.454647407251",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.450206844299998,
+ 27.3746036326,
+ 60.0
+ ],
+ [
+ 89.473051048499997,
+ 27.3489137784,
+ 60.0
+ ],
+ [
+ 89.453051139600007,
+ 27.338740894299999,
+ 60.0
+ ],
+ [
+ 89.439661907900003,
+ 27.369239541,
+ 60.0
+ ],
+ [
+ 89.450206844299998,
+ 27.3746036326,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285142,
+ "name": "Paro Airport",
+ "country": "BT",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "27.4493044847274",
+ "lng": "89.3950064748812",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.396599763099999,
+ 27.4674243236,
+ 60.0
+ ],
+ [
+ 89.410001832500001,
+ 27.436926001300002,
+ 60.0
+ ],
+ [
+ 89.399450462600001,
+ 27.431562662,
+ 60.0
+ ],
+ [
+ 89.37658618,
+ 27.457250421200001,
+ 60.0
+ ],
+ [
+ 89.396599763099999,
+ 27.4674243236,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285142,
+ "name": "Paro Airport",
+ "country": "BT",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "27.3089877774877",
+ "lng": "89.4855022768615",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.473051048499997,
+ 27.3489137784,
+ 150.0
+ ],
+ [
+ 89.526313019599996,
+ 27.288956348199999,
+ 150.0
+ ],
+ [
+ 89.484264052100002,
+ 27.267572428299999,
+ 150.0
+ ],
+ [
+ 89.453051139600007,
+ 27.338740894299999,
+ 150.0
+ ],
+ [
+ 89.473051048499997,
+ 27.3489137784,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285142,
+ "name": "Paro Airport",
+ "country": "BT",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "27.4971682861981",
+ "lng": "89.3640953269969",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.365299393399994,
+ 27.538582079499999,
+ 150.0
+ ],
+ [
+ 89.396599763099999,
+ 27.4674243236,
+ 150.0
+ ],
+ [
+ 89.37658618,
+ 27.457250421200001,
+ 150.0
+ ],
+ [
+ 89.323194725799993,
+ 27.5171739914,
+ 150.0
+ ],
+ [
+ 89.365299393399994,
+ 27.538582079499999,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008529,
+ "name": "Paro Airport",
+ "country": "BT",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.403793",
+ "lng": "89.423973",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.423973,
+ 27.855001544295131,
+ 500.0
+ ],
+ [
+ 89.512118916607633,
+ 27.848119015718748,
+ 500.0
+ ],
+ [
+ 89.597554235546284,
+ 27.8276830717652,
+ 500.0
+ ],
+ [
+ 89.677654715137379,
+ 27.794321893285197,
+ 500.0
+ ],
+ [
+ 89.749965693479623,
+ 27.749060212279083,
+ 500.0
+ ],
+ [
+ 89.812279211608868,
+ 27.693286803920873,
+ 500.0
+ ],
+ [
+ 89.862702379846539,
+ 27.628710621794134,
+ 500.0
+ ],
+ [
+ 89.899714763532643,
+ 27.557307120183953,
+ 500.0
+ ],
+ [
+ 89.922213079705003,
+ 27.481256612786279,
+ 500.0
+ ],
+ [
+ 89.929542053800816,
+ 27.402876738287478,
+ 500.0
+ ],
+ [
+ 89.921510845775458,
+ 27.324551237048933,
+ 500.0
+ ],
+ [
+ 89.898394984613006,
+ 27.248657292444484,
+ 500.0
+ ],
+ [
+ 89.860924224149642,
+ 27.177493662491816,
+ 500.0
+ ],
+ [
+ 89.810257136353442,
+ 27.113211732367077,
+ 500.0
+ ],
+ [
+ 89.747943585016642,
+ 27.057751467533478,
+ 500.0
+ ],
+ [
+ 89.675876475355992,
+ 27.012784051844289,
+ 500.0
+ ],
+ [
+ 89.59623436100928,
+ 26.979662765421462,
+ 500.0
+ ],
+ [
+ 89.511416620268278,
+ 26.959383402200324,
+ 500.0
+ ],
+ [
+ 89.423973,
+ 26.952555253968935,
+ 500.0
+ ],
+ [
+ 89.336529379731729,
+ 26.959383402200324,
+ 500.0
+ ],
+ [
+ 89.251711638990727,
+ 26.979662765421462,
+ 500.0
+ ],
+ [
+ 89.172069524644016,
+ 27.012784051844289,
+ 500.0
+ ],
+ [
+ 89.100002414983365,
+ 27.057751467533478,
+ 500.0
+ ],
+ [
+ 89.037688863646565,
+ 27.113211732367077,
+ 500.0
+ ],
+ [
+ 88.987021775850366,
+ 27.177493662491816,
+ 500.0
+ ],
+ [
+ 88.949551015387001,
+ 27.248657292444484,
+ 500.0
+ ],
+ [
+ 88.926435154224549,
+ 27.324551237048933,
+ 500.0
+ ],
+ [
+ 88.918403946199192,
+ 27.402876738287478,
+ 500.0
+ ],
+ [
+ 88.925732920295005,
+ 27.481256612786279,
+ 500.0
+ ],
+ [
+ 88.948231236467365,
+ 27.557307120183953,
+ 500.0
+ ],
+ [
+ 88.985243620153469,
+ 27.628710621794134,
+ 500.0
+ ],
+ [
+ 89.03566678839114,
+ 27.693286803920873,
+ 500.0
+ ],
+ [
+ 89.097980306520384,
+ 27.749060212279083,
+ 500.0
+ ],
+ [
+ 89.170291284862628,
+ 27.794321893285197,
+ 500.0
+ ],
+ [
+ 89.250391764453724,
+ 27.8276830717652,
+ 500.0
+ ],
+ [
+ 89.335827083392374,
+ 27.848119015718748,
+ 500.0
+ ],
+ [
+ 89.423973,
+ 27.855001544295131,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285143,
+ "name": "Paro Airport",
+ "country": "BT",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "27.4030804881345",
+ "lng": "89.4248261910637",
+ "radius": 4988,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.455002801700005,
+ 27.428706719800001,
+ 0.0
+ ],
+ [
+ 89.465001934200004,
+ 27.4132004113,
+ 0.0
+ ],
+ [
+ 89.468416719900006,
+ 27.4063180805,
+ 0.0
+ ],
+ [
+ 89.470144731600001,
+ 27.398955843500001,
+ 0.0
+ ],
+ [
+ 89.470110771700007,
+ 27.391435528,
+ 0.0
+ ],
+ [
+ 89.468316678500003,
+ 27.3840858065,
+ 0.0
+ ],
+ [
+ 89.459836420499997,
+ 27.371161213099999,
+ 0.0
+ ],
+ [
+ 89.446171561100002,
+ 27.3624158308,
+ 0.0
+ ],
+ [
+ 89.429684049100004,
+ 27.359360713299999,
+ 0.0
+ ],
+ [
+ 89.413222326,
+ 27.3625236536,
+ 0.0
+ ],
+ [
+ 89.399630389699993,
+ 27.371358230599999,
+ 0.0
+ ],
+ [
+ 89.3846809355,
+ 27.392942313700001,
+ 0.0
+ ],
+ [
+ 89.379520919599997,
+ 27.407181892800001,
+ 0.0
+ ],
+ [
+ 89.379545295100002,
+ 27.4147022376,
+ 0.0
+ ],
+ [
+ 89.381330632800001,
+ 27.4220537345,
+ 0.0
+ ],
+ [
+ 89.389799722899994,
+ 27.434986114099999,
+ 0.0
+ ],
+ [
+ 89.403465108299997,
+ 27.443741893799999,
+ 0.0
+ ],
+ [
+ 89.411532537900001,
+ 27.446043620200001,
+ 0.0
+ ],
+ [
+ 89.428387974100005,
+ 27.445995720799999,
+ 0.0
+ ],
+ [
+ 89.4437629026,
+ 27.439866113899999,
+ 0.0
+ ],
+ [
+ 89.455002801700005,
+ 27.428706719800001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295904,
+ "name": "YONPHULA",
+ "country": "BT",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.2564347334331",
+ "lng": "91.5144792194489",
+ "radius": 3682,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.487351934499998,
+ 27.279132296,
+ 0.0
+ ],
+ [
+ 91.548375959,
+ 27.2427054662,
+ 0.0
+ ],
+ [
+ 91.54161006,
+ 27.233745759600001,
+ 0.0
+ ],
+ [
+ 91.480582962300005,
+ 27.270173100800001,
+ 0.0
+ ],
+ [
+ 91.487351934499998,
+ 27.279132296,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295904,
+ "name": "YONPHULA",
+ "country": "BT",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "27.2285500799338",
+ "lng": "91.5611980292142",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.548375959,
+ 27.2427054662,
+ 60.0
+ ],
+ [
+ 91.581638063699998,
+ 27.228671738100001,
+ 60.0
+ ],
+ [
+ 91.568801514100002,
+ 27.211679112900001,
+ 60.0
+ ],
+ [
+ 91.54161006,
+ 27.233745759600001,
+ 60.0
+ ],
+ [
+ 91.548375959,
+ 27.2427054662,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295904,
+ "name": "YONPHULA",
+ "country": "BT",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "27.2843274296208",
+ "lng": "91.4677553556969",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.460140695800007,
+ 27.301195740400001,
+ 60.0
+ ],
+ [
+ 91.487351934499998,
+ 27.279132296,
+ 60.0
+ ],
+ [
+ 91.480582962300005,
+ 27.270173100800001,
+ 60.0
+ ],
+ [
+ 91.447305587499997,
+ 27.284201477500002,
+ 60.0
+ ],
+ [
+ 91.460140695800007,
+ 27.301195740400001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295904,
+ "name": "YONPHULA",
+ "country": "BT",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "27.1977846202781",
+ "lng": "91.6126862054",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.581638063699998,
+ 27.228671738100001,
+ 150.0
+ ],
+ [
+ 91.659217034899996,
+ 27.195895840799999,
+ 150.0
+ ],
+ [
+ 91.632206382500001,
+ 27.1601698823,
+ 150.0
+ ],
+ [
+ 91.568801514100002,
+ 27.211679112900001,
+ 150.0
+ ],
+ [
+ 91.581638063699998,
+ 27.228671738100001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295904,
+ "name": "YONPHULA",
+ "country": "BT",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "27.3150658069599",
+ "lng": "91.4162072448134",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.3966057146,
+ 27.352656606499998,
+ 150.0
+ ],
+ [
+ 91.460140695800007,
+ 27.301195740400001,
+ 150.0
+ ],
+ [
+ 91.447305587499997,
+ 27.284201477500002,
+ 150.0
+ ],
+ [
+ 91.369625694700005,
+ 27.316903715500001,
+ 150.0
+ ],
+ [
+ 91.3966057146,
+ 27.352656606499998,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30291835,
+ "name": "YONPHULA",
+ "country": "BT",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "27.2564379691662",
+ "lng": "91.5144811785302",
+ "radius": 4630,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.531733250599999,
+ 27.289476174600001,
+ 0.0
+ ],
+ [
+ 91.548859568400005,
+ 27.278303321399999,
+ 0.0
+ ],
+ [
+ 91.5578016292,
+ 27.265631283200001,
+ 0.0
+ ],
+ [
+ 91.559861777799995,
+ 27.258337288500002,
+ 0.0
+ ],
+ [
+ 91.560170799100007,
+ 27.250821931800001,
+ 0.0
+ ],
+ [
+ 91.558715538100003,
+ 27.243413681500002,
+ 0.0
+ ],
+ [
+ 91.550842134899995,
+ 27.230194507499998,
+ 0.0
+ ],
+ [
+ 91.5376044108,
+ 27.220964525399999,
+ 0.0
+ ],
+ [
+ 91.529662866699994,
+ 27.218379394300001,
+ 0.0
+ ],
+ [
+ 91.512853380500005,
+ 27.217828345499999,
+ 0.0
+ ],
+ [
+ 91.497250007100007,
+ 27.2233995052,
+ 0.0
+ ],
+ [
+ 91.480126621,
+ 27.234564564199999,
+ 0.0
+ ],
+ [
+ 91.471175494199997,
+ 27.247230148,
+ 0.0
+ ],
+ [
+ 91.4691081717,
+ 27.254522492300001,
+ 0.0
+ ],
+ [
+ 91.468791374600002,
+ 27.262037593500001,
+ 0.0
+ ],
+ [
+ 91.473388995500002,
+ 27.276426884100001,
+ 0.0
+ ],
+ [
+ 91.478103061100001,
+ 27.282672031899999,
+ 0.0
+ ],
+ [
+ 91.491341210300007,
+ 27.291909854299998,
+ 0.0
+ ],
+ [
+ 91.507664133800006,
+ 27.2955620563,
+ 0.0
+ ],
+ [
+ 91.524247154299999,
+ 27.2929965903,
+ 0.0
+ ],
+ [
+ 91.531733250599999,
+ 27.289476174600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010151,
+ "name": "YONPHULA",
+ "country": "BT",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.25596111",
+ "lng": "91.51535278",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.51535278,
+ 27.707179256808061,
+ 500.0
+ ],
+ [
+ 91.603379633881659,
+ 27.700296756398554,
+ 500.0
+ ],
+ [
+ 91.688699754117891,
+ 27.679860880207357,
+ 500.0
+ ],
+ [
+ 91.768692615169769,
+ 27.646499761351553,
+ 500.0
+ ],
+ [
+ 91.840906983887493,
+ 27.601238060217121,
+ 500.0
+ ],
+ [
+ 91.903137919142779,
+ 27.545464467288426,
+ 500.0
+ ],
+ [
+ 91.953495036763385,
+ 27.480887851453364,
+ 500.0
+ ],
+ [
+ 91.990459820155323,
+ 27.409483595908778,
+ 500.0
+ ],
+ [
+ 92.012930270175772,
+ 27.333431969242419,
+ 500.0
+ ],
+ [
+ 92.020251743163541,
+ 27.255050600524669,
+ 500.0
+ ],
+ [
+ 92.012233384438019,
+ 27.176723261392173,
+ 500.0
+ ],
+ [
+ 91.989150092677903,
+ 27.100827207933772,
+ 500.0
+ ],
+ [
+ 91.951730423605198,
+ 27.029661307878175,
+ 500.0
+ ],
+ [
+ 91.901131244266978,
+ 26.965377084129706,
+ 500.0
+ ],
+ [
+ 91.838900276200889,
+ 26.909914655373097,
+ 500.0
+ ],
+ [
+ 91.766927918931728,
+ 26.8649453595051,
+ 500.0
+ ],
+ [
+ 91.687389932165544,
+ 26.831822616330996,
+ 500.0
+ ],
+ [
+ 91.602682686479781,
+ 26.811542331104931,
+ 500.0
+ ],
+ [
+ 91.51535278,
+ 26.804713867293522,
+ 500.0
+ ],
+ [
+ 91.42802287352022,
+ 26.811542331104931,
+ 500.0
+ ],
+ [
+ 91.343315627834457,
+ 26.831822616330996,
+ 500.0
+ ],
+ [
+ 91.263777641068273,
+ 26.8649453595051,
+ 500.0
+ ],
+ [
+ 91.191805283799113,
+ 26.909914655373097,
+ 500.0
+ ],
+ [
+ 91.129574315733024,
+ 26.965377084129706,
+ 500.0
+ ],
+ [
+ 91.078975136394803,
+ 27.029661307878175,
+ 500.0
+ ],
+ [
+ 91.041555467322098,
+ 27.100827207933772,
+ 500.0
+ ],
+ [
+ 91.018472175561982,
+ 27.176723261392173,
+ 500.0
+ ],
+ [
+ 91.01045381683646,
+ 27.255050600524669,
+ 500.0
+ ],
+ [
+ 91.017775289824229,
+ 27.333431969242419,
+ 500.0
+ ],
+ [
+ 91.040245739844678,
+ 27.409483595908778,
+ 500.0
+ ],
+ [
+ 91.077210523236616,
+ 27.480887851453364,
+ 500.0
+ ],
+ [
+ 91.127567640857222,
+ 27.545464467288426,
+ 500.0
+ ],
+ [
+ 91.189798576112508,
+ 27.601238060217121,
+ 500.0
+ ],
+ [
+ 91.262012944830232,
+ 27.646499761351553,
+ 500.0
+ ],
+ [
+ 91.34200580588211,
+ 27.679860880207357,
+ 500.0
+ ],
+ [
+ 91.427325926118343,
+ 27.700296756398554,
+ 500.0
+ ],
+ [
+ 91.51535278,
+ 27.707179256808061,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296211,
+ "name": "BUMTHANG",
+ "country": "BT",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.562183",
+ "lng": "90.74725",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 90.74725,
+ 27.566695127816182,
+ 0.0
+ ],
+ [
+ 90.748129208385222,
+ 27.566626575696112,
+ 0.0
+ ],
+ [
+ 90.748981699273656,
+ 27.56642300250444,
+ 0.0
+ ],
+ [
+ 90.749781567351604,
+ 27.566090594420952,
+ 0.0
+ ],
+ [
+ 90.750504506947195,
+ 27.565639452586883,
+ 0.0
+ ],
+ [
+ 90.751128550797446,
+ 27.565083286055401,
+ 0.0
+ ],
+ [
+ 90.751634737646228,
+ 27.564438995087659,
+ 0.0
+ ],
+ [
+ 90.752007688372274,
+ 27.563726157475354,
+ 0.0
+ ],
+ [
+ 90.752236073142058,
+ 27.562966433518135,
+ 0.0
+ ],
+ [
+ 90.752312955409352,
+ 27.562182907754998,
+ 0.0
+ ],
+ [
+ 90.752236002339799,
+ 27.561399387466523,
+ 0.0
+ ],
+ [
+ 90.752007555307557,
+ 27.560639679272956,
+ 0.0
+ ],
+ [
+ 90.751634558368622,
+ 27.559926865811963,
+ 0.0
+ ],
+ [
+ 90.751128346930471,
+ 27.559282604470209,
+ 0.0
+ ],
+ [
+ 90.75050430308022,
+ 27.558726469466031,
+ 0.0
+ ],
+ [
+ 90.749781388074013,
+ 27.558275357257937,
+ 0.0
+ ],
+ [
+ 90.748981566208954,
+ 27.557942973325758,
+ 0.0
+ ],
+ [
+ 90.748129137582964,
+ 27.557739415897746,
+ 0.0
+ ],
+ [
+ 90.74725,
+ 27.557670869252338,
+ 0.0
+ ],
+ [
+ 90.746370862417024,
+ 27.557739415897746,
+ 0.0
+ ],
+ [
+ 90.745518433791034,
+ 27.557942973325758,
+ 0.0
+ ],
+ [
+ 90.744718611925975,
+ 27.558275357257937,
+ 0.0
+ ],
+ [
+ 90.743995696919768,
+ 27.558726469466031,
+ 0.0
+ ],
+ [
+ 90.743371653069516,
+ 27.559282604470209,
+ 0.0
+ ],
+ [
+ 90.742865441631366,
+ 27.559926865811963,
+ 0.0
+ ],
+ [
+ 90.742492444692431,
+ 27.560639679272956,
+ 0.0
+ ],
+ [
+ 90.742263997660189,
+ 27.561399387466523,
+ 0.0
+ ],
+ [
+ 90.742187044590636,
+ 27.562182907754998,
+ 0.0
+ ],
+ [
+ 90.74226392685793,
+ 27.562966433518135,
+ 0.0
+ ],
+ [
+ 90.742492311627714,
+ 27.563726157475354,
+ 0.0
+ ],
+ [
+ 90.74286526235376,
+ 27.564438995087659,
+ 0.0
+ ],
+ [
+ 90.743371449202542,
+ 27.565083286055401,
+ 0.0
+ ],
+ [
+ 90.743995493052793,
+ 27.565639452586883,
+ 0.0
+ ],
+ [
+ 90.744718432648384,
+ 27.566090594420952,
+ 0.0
+ ],
+ [
+ 90.745518300726332,
+ 27.56642300250444,
+ 0.0
+ ],
+ [
+ 90.746370791614765,
+ 27.566626575696112,
+ 0.0
+ ],
+ [
+ 90.74725,
+ 27.566695127816182,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282585,
+ "name": "North Lakhimpur Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.2949953840274",
+ "lng": "94.1003389149655",
+ "radius": 4183,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.067965611299996,
+ 27.270750340599999,
+ 0.0
+ ],
+ [
+ 94.123630499200004,
+ 27.3264174967,
+ 0.0
+ ],
+ [
+ 94.132710859,
+ 27.3192493146,
+ 0.0
+ ],
+ [
+ 94.077040429899995,
+ 27.263581168399998,
+ 0.0
+ ],
+ [
+ 94.067965611299996,
+ 27.270750340599999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282585,
+ "name": "North Lakhimpur Airport",
+ "country": "IN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "27.3358067334572",
+ "lng": "94.1411478490657",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.123630499200004,
+ 27.3264174967,
+ 60.0
+ ],
+ [
+ 94.143769915600004,
+ 27.353831840600002,
+ 60.0
+ ],
+ [
+ 94.160991495299996,
+ 27.3402345039,
+ 60.0
+ ],
+ [
+ 94.132710859,
+ 27.3192493146,
+ 60.0
+ ],
+ [
+ 94.123630499200004,
+ 27.3264174967,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282585,
+ "name": "North Lakhimpur Airport",
+ "country": "IN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "27.2541923570569",
+ "lng": "94.0595334542539",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.0397051124,
+ 27.249762549900002,
+ 60.0
+ ],
+ [
+ 94.067965611299996,
+ 27.270750340599999,
+ 60.0
+ ],
+ [
+ 94.077040429899995,
+ 27.263581168399998,
+ 60.0
+ ],
+ [
+ 94.056918561,
+ 27.2361661377,
+ 60.0
+ ],
+ [
+ 94.0397051124,
+ 27.249762549900002,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282585,
+ "name": "North Lakhimpur Airport",
+ "country": "IN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "27.3770340937162",
+ "lng": "94.1824153414999",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.143769915600004,
+ 27.353831840600002,
+ 150.0
+ ],
+ [
+ 94.190800694100005,
+ 27.417787394,
+ 150.0
+ ],
+ [
+ 94.227021320800006,
+ 27.389177777899999,
+ 150.0
+ ],
+ [
+ 94.160991495299996,
+ 27.3402345039,
+ 150.0
+ ],
+ [
+ 94.143769915600004,
+ 27.353831840600002,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282585,
+ "name": "North Lakhimpur Airport",
+ "country": "IN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "27.2129493426386",
+ "lng": "94.0183303937355",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 93.973805395300005,
+ 27.200768993600001,
+ 150.0
+ ],
+ [
+ 94.0397051124,
+ 27.249762549900002,
+ 150.0
+ ],
+ [
+ 94.056918561,
+ 27.2361661377,
+ 150.0
+ ],
+ [
+ 94.010006044199997,
+ 27.1721865638,
+ 150.0
+ ],
+ [
+ 93.973805395300005,
+ 27.200768993600001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282586,
+ "name": "North Lakhimpur Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "27.2949977246742",
+ "lng": "94.1003359502057",
+ "radius": 5135,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.062405268500001,
+ 27.311227317699998,
+ 0.0
+ ],
+ [
+ 94.077724600899998,
+ 27.326550827199998,
+ 0.0
+ ],
+ [
+ 94.091277042,
+ 27.335427832699999,
+ 0.0
+ ],
+ [
+ 94.107723449800005,
+ 27.3386386918,
+ 0.0
+ ],
+ [
+ 94.116148823299994,
+ 27.337903456799999,
+ 0.0
+ ],
+ [
+ 94.124217719499995,
+ 27.335627731100001,
+ 0.0
+ ],
+ [
+ 94.137905441499996,
+ 27.3269160308,
+ 0.0
+ ],
+ [
+ 94.146419045499997,
+ 27.314011021799999,
+ 0.0
+ ],
+ [
+ 94.148232660800005,
+ 27.306665325699999,
+ 0.0
+ ],
+ [
+ 94.148287729200007,
+ 27.299145108899999,
+ 0.0
+ ],
+ [
+ 94.143190925499994,
+ 27.2848889986,
+ 0.0
+ ],
+ [
+ 94.116655618500005,
+ 27.2583607525,
+ 0.0
+ ],
+ [
+ 94.101325800400005,
+ 27.252193512600002,
+ 0.0
+ ],
+ [
+ 94.084500077100003,
+ 27.2521004709,
+ 0.0
+ ],
+ [
+ 94.069085166500003,
+ 27.258097700699999,
+ 0.0
+ ],
+ [
+ 94.062761852600005,
+ 27.263093741700001,
+ 0.0
+ ],
+ [
+ 94.054253026799998,
+ 27.2759992065,
+ 0.0
+ ],
+ [
+ 94.052439727299998,
+ 27.2833448666,
+ 0.0
+ ],
+ [
+ 94.052384350899999,
+ 27.290865081500002,
+ 0.0
+ ],
+ [
+ 94.054089669800007,
+ 27.2982311839,
+ 0.0
+ ],
+ [
+ 94.062405268500001,
+ 27.311227317699998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010567,
+ "name": "North Lakhimpur Airport",
+ "country": "IN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.295091",
+ "lng": "94.096896",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.096896,
+ 27.746306608459278,
+ 500.0
+ ],
+ [
+ 94.184954280523229,
+ 27.739424100588963,
+ 500.0
+ ],
+ [
+ 94.270304807447658,
+ 27.718988206441569,
+ 500.0
+ ],
+ [
+ 94.350326074321302,
+ 27.685627071756876,
+ 500.0
+ ],
+ [
+ 94.422565942949262,
+ 27.640365375858856,
+ 500.0
+ ],
+ [
+ 94.484818675635495,
+ 27.584591831628067,
+ 500.0
+ ],
+ [
+ 94.535193226887827,
+ 27.520015330351104,
+ 500.0
+ ],
+ [
+ 94.572170573865748,
+ 27.448611274026259,
+ 500.0
+ ],
+ [
+ 94.594648378605527,
+ 27.372559943173787,
+ 500.0
+ ],
+ [
+ 94.601971830974648,
+ 27.294178969412144,
+ 500.0
+ ],
+ [
+ 94.593950080216459,
+ 27.215852116113535,
+ 500.0
+ ],
+ [
+ 94.570858191438148,
+ 27.139956620144506,
+ 500.0
+ ],
+ [
+ 94.533425036654577,
+ 27.068791320228204,
+ 500.0
+ ],
+ [
+ 94.482807932961776,
+ 27.004507702854117,
+ 500.0
+ ],
+ [
+ 94.420555167360192,
+ 26.949045846194345,
+ 500.0
+ ],
+ [
+ 94.348557800743478,
+ 26.904077047414692,
+ 500.0
+ ],
+ [
+ 94.268992330244146,
+ 26.870954689385844,
+ 500.0
+ ],
+ [
+ 94.184255920273557,
+ 26.850674647927057,
+ 500.0
+ ],
+ [
+ 94.096896,
+ 26.84384626755158,
+ 500.0
+ ],
+ [
+ 94.009536079726445,
+ 26.850674647927057,
+ 500.0
+ ],
+ [
+ 93.924799669755856,
+ 26.870954689385844,
+ 500.0
+ ],
+ [
+ 93.845234199256524,
+ 26.904077047414692,
+ 500.0
+ ],
+ [
+ 93.77323683263981,
+ 26.949045846194345,
+ 500.0
+ ],
+ [
+ 93.710984067038225,
+ 27.004507702854117,
+ 500.0
+ ],
+ [
+ 93.660366963345425,
+ 27.068791320228204,
+ 500.0
+ ],
+ [
+ 93.622933808561854,
+ 27.139956620144506,
+ 500.0
+ ],
+ [
+ 93.599841919783543,
+ 27.215852116113535,
+ 500.0
+ ],
+ [
+ 93.591820169025354,
+ 27.294178969412144,
+ 500.0
+ ],
+ [
+ 93.599143621394475,
+ 27.372559943173787,
+ 500.0
+ ],
+ [
+ 93.621621426134254,
+ 27.448611274026259,
+ 500.0
+ ],
+ [
+ 93.658598773112175,
+ 27.520015330351104,
+ 500.0
+ ],
+ [
+ 93.708973324364507,
+ 27.584591831628067,
+ 500.0
+ ],
+ [
+ 93.77122605705074,
+ 27.640365375858856,
+ 500.0
+ ],
+ [
+ 93.8434659256787,
+ 27.685627071756876,
+ 500.0
+ ],
+ [
+ 93.923487192552344,
+ 27.718988206441569,
+ 500.0
+ ],
+ [
+ 94.008837719476773,
+ 27.739424100588963,
+ 500.0
+ ],
+ [
+ 94.096896,
+ 27.746306608459278,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288149,
+ "name": "Zero Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "27.5883332898975",
+ "lng": "93.8280840511378",
+ "radius": 7302,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 93.8366160904,
+ 27.620390758100001,
+ 0.0
+ ],
+ [
+ 93.831700519899996,
+ 27.555552648199999,
+ 0.0
+ ],
+ [
+ 93.834698455700007,
+ 27.5229256131,
+ 0.0
+ ],
+ [
+ 93.811665397400006,
+ 27.524296768599999,
+ 0.0
+ ],
+ [
+ 93.819555132199994,
+ 27.556275662800001,
+ 0.0
+ ],
+ [
+ 93.824463513400005,
+ 27.621113700199999,
+ 0.0
+ ],
+ [
+ 93.821461750799998,
+ 27.653740652900002,
+ 0.0
+ ],
+ [
+ 93.844514802700004,
+ 27.652369253,
+ 0.0
+ ],
+ [
+ 93.8366160904,
+ 27.620390758100001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009356,
+ "name": "Dibrugarh Airport",
+ "country": "IN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.484201",
+ "lng": "95.017972",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 95.017972,
+ 27.935404306901766,
+ 500.0
+ ],
+ [
+ 95.106183058499084,
+ 27.928521763026289,
+ 500.0
+ ],
+ [
+ 95.191681405420738,
+ 27.908085782298066,
+ 500.0
+ ],
+ [
+ 95.271840766061615,
+ 27.874724571582966,
+ 500.0
+ ],
+ [
+ 95.344204602681344,
+ 27.829462901910585,
+ 500.0
+ ],
+ [
+ 95.406563305229156,
+ 27.77368959460787,
+ 500.0
+ ],
+ [
+ 95.457022613168292,
+ 27.709113649410703,
+ 500.0
+ ],
+ [
+ 95.494061042303414,
+ 27.637710559335609,
+ 500.0
+ ],
+ [
+ 95.516574607078567,
+ 27.561660662645512,
+ 500.0
+ ],
+ [
+ 95.523907687512903,
+ 27.483281603245555,
+ 500.0
+ ],
+ [
+ 95.515869451308021,
+ 27.40495710442643,
+ 500.0
+ ],
+ [
+ 95.492735772047823,
+ 27.329064309904499,
+ 500.0
+ ],
+ [
+ 95.455237058867667,
+ 27.257901917876953,
+ 500.0
+ ],
+ [
+ 95.40453281638726,
+ 27.193621238431781,
+ 500.0
+ ],
+ [
+ 95.342174080413983,
+ 27.13816215350327,
+ 500.0
+ ],
+ [
+ 95.270055127124763,
+ 27.093195762971867,
+ 500.0
+ ],
+ [
+ 95.190356038920342,
+ 27.060075270817418,
+ 500.0
+ ],
+ [
+ 95.105477839909199,
+ 27.039796410296269,
+ 500.0
+ ],
+ [
+ 95.017972,
+ 27.032968434125753,
+ 500.0
+ ],
+ [
+ 94.930466160090802,
+ 27.039796410296269,
+ 500.0
+ ],
+ [
+ 94.845587961079659,
+ 27.060075270817418,
+ 500.0
+ ],
+ [
+ 94.765888872875237,
+ 27.093195762971867,
+ 500.0
+ ],
+ [
+ 94.693769919586018,
+ 27.13816215350327,
+ 500.0
+ ],
+ [
+ 94.631411183612741,
+ 27.193621238431781,
+ 500.0
+ ],
+ [
+ 94.580706941132334,
+ 27.257901917876953,
+ 500.0
+ ],
+ [
+ 94.543208227952178,
+ 27.329064309904499,
+ 500.0
+ ],
+ [
+ 94.52007454869198,
+ 27.40495710442643,
+ 500.0
+ ],
+ [
+ 94.512036312487098,
+ 27.483281603245555,
+ 500.0
+ ],
+ [
+ 94.519369392921433,
+ 27.561660662645512,
+ 500.0
+ ],
+ [
+ 94.541882957696586,
+ 27.637710559335609,
+ 500.0
+ ],
+ [
+ 94.578921386831709,
+ 27.709113649410703,
+ 500.0
+ ],
+ [
+ 94.629380694770845,
+ 27.77368959460787,
+ 500.0
+ ],
+ [
+ 94.691739397318656,
+ 27.829462901910585,
+ 500.0
+ ],
+ [
+ 94.764103233938386,
+ 27.874724571582966,
+ 500.0
+ ],
+ [
+ 94.844262594579263,
+ 27.908085782298066,
+ 500.0
+ ],
+ [
+ 94.929760941500916,
+ 27.928521763026289,
+ 500.0
+ ],
+ [
+ 95.017972,
+ 27.935404306901766,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268605,
+ "name": "Dibrugarh Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.48166202199",
+ "lng": "95.0177550155498",
+ "radius": 3865,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.985897986400005,
+ 27.461418842299999,
+ 0.0
+ ],
+ [
+ 95.0410758246,
+ 27.509603930299999,
+ 0.0
+ ],
+ [
+ 95.049611443200007,
+ 27.501913197899999,
+ 0.0
+ ],
+ [
+ 94.994429045800004,
+ 27.453727388299999,
+ 0.0
+ ],
+ [
+ 94.985897986400005,
+ 27.461418842299999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268605,
+ "name": "Dibrugarh Airport",
+ "country": "IN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "27.5179333041965",
+ "lng": "95.0592898115234",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 95.0410758246,
+ 27.509603930299999,
+ 60.0
+ ],
+ [
+ 95.063267447699999,
+ 27.535762702500001,
+ 60.0
+ ],
+ [
+ 95.079455135,
+ 27.521174221100001,
+ 60.0
+ ],
+ [
+ 95.049611443200007,
+ 27.501913197899999,
+ 60.0
+ ],
+ [
+ 95.0410758246,
+ 27.509603930299999,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268605,
+ "name": "Dibrugarh Airport",
+ "country": "IN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "27.4453979099229",
+ "lng": "94.9762250684689",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.956073627600006,
+ 27.442153981800001,
+ 60.0
+ ],
+ [
+ 94.985897986400005,
+ 27.461418842299999,
+ 60.0
+ ],
+ [
+ 94.994429045800004,
+ 27.453727388299999,
+ 60.0
+ ],
+ [
+ 94.972256400899994,
+ 27.427566975800001,
+ 60.0
+ ],
+ [
+ 94.956073627600006,
+ 27.442153981800001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268605,
+ "name": "Dibrugarh Airport",
+ "country": "IN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "27.5566210906709",
+ "lng": "95.1036375773959",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 95.063267447699999,
+ 27.535762702500001,
+ 150.0
+ ],
+ [
+ 95.115089019600006,
+ 27.596786119200001,
+ 150.0
+ ],
+ [
+ 95.149131088399997,
+ 27.566091814899998,
+ 150.0
+ ],
+ [
+ 95.079455135,
+ 27.521174221100001,
+ 150.0
+ ],
+ [
+ 95.063267447699999,
+ 27.535762702500001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268605,
+ "name": "Dibrugarh Airport",
+ "country": "IN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "27.4066906115936",
+ "lng": "94.9319428056277",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.886523943499995,
+ 27.397177969600001,
+ 150.0
+ ],
+ [
+ 94.956073627600006,
+ 27.442153981800001,
+ 150.0
+ ],
+ [
+ 94.972256400899994,
+ 27.427566975800001,
+ 150.0
+ ],
+ [
+ 94.920561059199997,
+ 27.3665123868,
+ 150.0
+ ],
+ [
+ 94.886523943499995,
+ 27.397177969600001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268606,
+ "name": "Dibrugarh Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "27.4822167619494",
+ "lng": "95.0171395205556",
+ "radius": 4808,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.983384963500001,
+ 27.5021352887,
+ 0.0
+ ],
+ [
+ 95.00183548699999,
+ 27.517149615499999,
+ 0.0
+ ],
+ [
+ 95.009419633600004,
+ 27.5205135496,
+ 0.0
+ ],
+ [
+ 95.026098595899995,
+ 27.522741467199999,
+ 0.0
+ ],
+ [
+ 95.042356667500002,
+ 27.518758607300001,
+ 0.0
+ ],
+ [
+ 95.049431996699994,
+ 27.514613591300002,
+ 0.0
+ ],
+ [
+ 95.059941959400007,
+ 27.502914950299999,
+ 0.0
+ ],
+ [
+ 95.064177005299996,
+ 27.488436006600001,
+ 0.0
+ ],
+ [
+ 95.0636660256,
+ 27.4809293052,
+ 0.0
+ ],
+ [
+ 95.061407159599995,
+ 27.473680868700001,
+ 0.0
+ ],
+ [
+ 95.052107218399996,
+ 27.461194668499999,
+ 0.0
+ ],
+ [
+ 95.033631537100007,
+ 27.4461696057,
+ 0.0
+ ],
+ [
+ 95.026049311600005,
+ 27.442811348300001,
+ 0.0
+ ],
+ [
+ 95.009380822799997,
+ 27.4405930227,
+ 0.0
+ ],
+ [
+ 94.9931360052,
+ 27.444581408299999,
+ 0.0
+ ],
+ [
+ 94.980121480199998,
+ 27.4540874763,
+ 0.0
+ ],
+ [
+ 94.975562001599997,
+ 27.4604267932,
+ 0.0
+ ],
+ [
+ 94.971326973299995,
+ 27.474905493,
+ 0.0
+ ],
+ [
+ 94.971837122,
+ 27.482412237399998,
+ 0.0
+ ],
+ [
+ 94.9740955738,
+ 27.489660819400001,
+ 0.0
+ ],
+ [
+ 94.983384963500001,
+ 27.5021352887,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010056,
+ "name": "Putao Airport",
+ "country": "MM",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.329381",
+ "lng": "97.426607",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.426607,
+ 27.780594382083432,
+ 500.0
+ ],
+ [
+ 97.514692872276626,
+ 27.773711867678319,
+ 500.0
+ ],
+ [
+ 97.600070095488306,
+ 27.75327595780778,
+ 500.0
+ ],
+ [
+ 97.680116301989429,
+ 27.719914809280137,
+ 500.0
+ ],
+ [
+ 97.752378558994607,
+ 27.674653118025411,
+ 500.0
+ ],
+ [
+ 97.814650429447951,
+ 27.618879616562293,
+ 500.0
+ ],
+ [
+ 97.865040287230514,
+ 27.554303215817161,
+ 500.0
+ ],
+ [
+ 97.902028665014441,
+ 27.48289933427311,
+ 500.0
+ ],
+ [
+ 97.924512927334391,
+ 27.406848262911279,
+ 500.0
+ ],
+ [
+ 97.931838117867557,
+ 27.328467635581312,
+ 500.0
+ ],
+ [
+ 97.9238133892663,
+ 27.250141208404994,
+ 500.0
+ ],
+ [
+ 97.90071395272237,
+ 27.174246201389444,
+ 500.0
+ ],
+ [
+ 97.863268957917427,
+ 27.103081427819767,
+ 500.0
+ ],
+ [
+ 97.812636117058005,
+ 27.038798342250573,
+ 500.0
+ ],
+ [
+ 97.75036421359745,
+ 26.98333698732635,
+ 500.0
+ ],
+ [
+ 97.678344889099122,
+ 26.938368624494355,
+ 500.0
+ ],
+ [
+ 97.598755288155729,
+ 26.905246604236314,
+ 500.0
+ ],
+ [
+ 97.513993272175227,
+ 26.884966776559406,
+ 500.0
+ ],
+ [
+ 97.426607,
+ 26.87813846935639,
+ 500.0
+ ],
+ [
+ 97.339220727824781,
+ 26.884966776559406,
+ 500.0
+ ],
+ [
+ 97.254458711844279,
+ 26.905246604236314,
+ 500.0
+ ],
+ [
+ 97.174869110900886,
+ 26.938368624494355,
+ 500.0
+ ],
+ [
+ 97.102849786402558,
+ 26.98333698732635,
+ 500.0
+ ],
+ [
+ 97.040577882942003,
+ 27.038798342250573,
+ 500.0
+ ],
+ [
+ 96.989945042082581,
+ 27.103081427819767,
+ 500.0
+ ],
+ [
+ 96.952500047277638,
+ 27.174246201389444,
+ 500.0
+ ],
+ [
+ 96.929400610733708,
+ 27.250141208404994,
+ 500.0
+ ],
+ [
+ 96.921375882132452,
+ 27.328467635581312,
+ 500.0
+ ],
+ [
+ 96.928701072665618,
+ 27.406848262911279,
+ 500.0
+ ],
+ [
+ 96.951185334985567,
+ 27.48289933427311,
+ 500.0
+ ],
+ [
+ 96.988173712769495,
+ 27.554303215817161,
+ 500.0
+ ],
+ [
+ 97.038563570552057,
+ 27.618879616562293,
+ 500.0
+ ],
+ [
+ 97.100835441005401,
+ 27.674653118025411,
+ 500.0
+ ],
+ [
+ 97.173097698010579,
+ 27.719914809280137,
+ 500.0
+ ],
+ [
+ 97.253143904511703,
+ 27.75327595780778,
+ 500.0
+ ],
+ [
+ 97.338521127723382,
+ 27.773711867678319,
+ 500.0
+ ],
+ [
+ 97.426607,
+ 27.780594382083432,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285161,
+ "name": "Putao Airport",
+ "country": "MM",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "27.3299998789481",
+ "lng": "97.4267378692",
+ "radius": 5058,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.465723964399999,
+ 27.343670375,
+ 0.0
+ ],
+ [
+ 97.468218484800005,
+ 27.324659583500001,
+ 0.0
+ ],
+ [
+ 97.468311671199999,
+ 27.317139663300001,
+ 0.0
+ ],
+ [
+ 97.466643202599997,
+ 27.309766848599999,
+ 0.0
+ ],
+ [
+ 97.4583879889,
+ 27.29673064,
+ 0.0
+ ],
+ [
+ 97.444881597800006,
+ 27.287804045400001,
+ 0.0
+ ],
+ [
+ 97.428458655100002,
+ 27.2845294446,
+ 0.0
+ ],
+ [
+ 97.411956479500006,
+ 27.287472551,
+ 0.0
+ ],
+ [
+ 97.398226041399994,
+ 27.296124921699999,
+ 0.0
+ ],
+ [
+ 97.389640594400007,
+ 27.308991576299999,
+ 0.0
+ ],
+ [
+ 97.385280588800001,
+ 27.335306587800002,
+ 0.0
+ ],
+ [
+ 97.385176637200004,
+ 27.3428263968,
+ 0.0
+ ],
+ [
+ 97.386835165799994,
+ 27.350201069499999,
+ 0.0
+ ],
+ [
+ 97.395077067599999,
+ 27.3632459096,
+ 0.0
+ ],
+ [
+ 97.408582559,
+ 27.372184545500001,
+ 0.0
+ ],
+ [
+ 97.425015671200001,
+ 27.375470292199999,
+ 0.0
+ ],
+ [
+ 97.433447984400004,
+ 27.374773451700001,
+ 0.0
+ ],
+ [
+ 97.448915906099998,
+ 27.368851426799999,
+ 0.0
+ ],
+ [
+ 97.460331970599995,
+ 27.357853295799998,
+ 0.0
+ ],
+ [
+ 97.463865854199994,
+ 27.3510192313,
+ 0.0
+ ],
+ [
+ 97.465723964399999,
+ 27.343670375,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285160,
+ "name": "Putao Airport",
+ "country": "MM",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.329999809523",
+ "lng": "97.4267507454433",
+ "radius": 4107,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.428008061699998,
+ 27.366923472900002,
+ 0.0
+ ],
+ [
+ 97.437555992399993,
+ 27.294329190199999,
+ 0.0
+ ],
+ [
+ 97.425494266399994,
+ 27.293076134900002,
+ 0.0
+ ],
+ [
+ 97.415938406899997,
+ 27.365670632299999,
+ 0.0
+ ],
+ [
+ 97.428008061699998,
+ 27.366923472900002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285160,
+ "name": "Putao Airport",
+ "country": "MM",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "27.2764640013091",
+ "lng": "97.4337924580045",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.437555992399993,
+ 27.294329190199999,
+ 60.0
+ ],
+ [
+ 97.447191331699997,
+ 27.262734074499999,
+ 60.0
+ ],
+ [
+ 97.424316823300003,
+ 27.260357722199998,
+ 60.0
+ ],
+ [
+ 97.425494266399994,
+ 27.293076134900002,
+ 60.0
+ ],
+ [
+ 97.437555992399993,
+ 27.294329190199999,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285160,
+ "name": "Putao Airport",
+ "country": "MM",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "27.3835352094412",
+ "lng": "97.4197041366095",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.429187723200002,
+ 27.399641854799999,
+ 60.0
+ ],
+ [
+ 97.428008061699998,
+ 27.366923472900002,
+ 60.0
+ ],
+ [
+ 97.415938406899997,
+ 27.365670632299999,
+ 60.0
+ ],
+ [
+ 97.406292081299995,
+ 27.397265258,
+ 60.0
+ ],
+ [
+ 97.429187723200002,
+ 27.399641854799999,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285160,
+ "name": "Putao Airport",
+ "country": "MM",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "27.2216719183616",
+ "lng": "97.4409943852159",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.447191331699997,
+ 27.262734074499999,
+ 150.0
+ ],
+ [
+ 97.469652518199993,
+ 27.189009575699998,
+ 150.0
+ ],
+ [
+ 97.421572147700005,
+ 27.184014720899999,
+ 150.0
+ ],
+ [
+ 97.424316823300003,
+ 27.260357722199998,
+ 150.0
+ ],
+ [
+ 97.447191331699997,
+ 27.262734074499999,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285160,
+ "name": "Putao Airport",
+ "country": "MM",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "27.4383260261714",
+ "lng": "97.412487218495",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.431942985700005,
+ 27.4759847071,
+ 150.0
+ ],
+ [
+ 97.429187723200002,
+ 27.399641854799999,
+ 150.0
+ ],
+ [
+ 97.406292081299995,
+ 27.397265258,
+ 150.0
+ ],
+ [
+ 97.383762521400001,
+ 27.470983467100002,
+ 150.0
+ ],
+ [
+ 97.431942985700005,
+ 27.4759847071,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001449,
+ "name": "Diqing Airport",
+ "country": "CN",
+ "city": "Shangri-La",
+ "height": 500,
+ "level": 2,
+ "lat": "27.792159",
+ "lng": "99.678255",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.678255,
+ 28.243342154725656,
+ 500.0
+ ],
+ [
+ 99.766718054550381,
+ 28.236459552367233,
+ 500.0
+ ],
+ [
+ 99.852460221229819,
+ 28.216023431251319,
+ 500.0
+ ],
+ [
+ 99.932847361761233,
+ 28.182662098226459,
+ 500.0
+ ],
+ [
+ 100.005415682566209,
+ 28.137400474314152,
+ 500.0
+ ],
+ [
+ 100.067949186752799,
+ 28.081627558195784,
+ 500.0
+ ],
+ [
+ 100.118548310480932,
+ 28.01705252693576,
+ 500.0
+ ],
+ [
+ 100.155687508758589,
+ 27.945651022328946,
+ 500.0
+ ],
+ [
+ 100.178260076904493,
+ 27.869603476947891,
+ 500.0
+ ],
+ [
+ 100.185609057195606,
+ 27.791227554619333,
+ 500.0
+ ],
+ [
+ 100.177543645624752,
+ 27.712906912871343,
+ 500.0
+ ],
+ [
+ 100.154341047200575,
+ 27.63701854284156,
+ 500.0
+ ],
+ [
+ 100.116734204644359,
+ 27.565860912659524,
+ 500.0
+ ],
+ [
+ 100.065886229504954,
+ 27.501585043681267,
+ 500.0
+ ],
+ [
+ 100.003352691044526,
+ 27.446130496690337,
+ 500.0
+ ],
+ [
+ 99.931033169140207,
+ 27.401168048736071,
+ 500.0
+ ],
+ [
+ 99.851113660984169,
+ 27.368050611089213,
+ 500.0
+ ],
+ [
+ 99.766001558856843,
+ 27.347773683750553,
+ 500.0
+ ],
+ [
+ 99.678255,
+ 27.340946369249664,
+ 500.0
+ ],
+ [
+ 99.590508441143143,
+ 27.347773683750553,
+ 500.0
+ ],
+ [
+ 99.505396339015817,
+ 27.368050611089213,
+ 500.0
+ ],
+ [
+ 99.425476830859779,
+ 27.401168048736071,
+ 500.0
+ ],
+ [
+ 99.35315730895546,
+ 27.446130496690337,
+ 500.0
+ ],
+ [
+ 99.290623770495031,
+ 27.501585043681267,
+ 500.0
+ ],
+ [
+ 99.239775795355627,
+ 27.565860912659524,
+ 500.0
+ ],
+ [
+ 99.202168952799411,
+ 27.63701854284156,
+ 500.0
+ ],
+ [
+ 99.178966354375234,
+ 27.712906912871343,
+ 500.0
+ ],
+ [
+ 99.17090094280438,
+ 27.791227554619333,
+ 500.0
+ ],
+ [
+ 99.178249923095493,
+ 27.869603476947891,
+ 500.0
+ ],
+ [
+ 99.200822491241397,
+ 27.945651022328946,
+ 500.0
+ ],
+ [
+ 99.237961689519054,
+ 28.01705252693576,
+ 500.0
+ ],
+ [
+ 99.288560813247187,
+ 28.081627558195784,
+ 500.0
+ ],
+ [
+ 99.351094317433777,
+ 28.137400474314152,
+ 500.0
+ ],
+ [
+ 99.423662638238753,
+ 28.182662098226459,
+ 500.0
+ ],
+ [
+ 99.504049778770167,
+ 28.216023431251319,
+ 500.0
+ ],
+ [
+ 99.589791945449605,
+ 28.236459552367233,
+ 500.0
+ ],
+ [
+ 99.678255,
+ 28.243342154725656,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 582,
+ "name": "Diqing Airport",
+ "country": "CN",
+ "city": "Shangri-La",
+ "height": 0,
+ "level": 2,
+ "lat": "27.7508312141561",
+ "lng": "99.6950615494281",
+ "radius": 14114,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.685784522899993,
+ 27.708475131099998,
+ 0.0
+ ],
+ [
+ 99.7045940661,
+ 27.624180307,
+ 0.0
+ ],
+ [
+ 99.780126878700003,
+ 27.648659133700001,
+ 0.0
+ ],
+ [
+ 99.733090287,
+ 27.7237965823,
+ 0.0
+ ],
+ [
+ 99.756432926900004,
+ 27.7493554781,
+ 0.0
+ ],
+ [
+ 99.761753514899993,
+ 27.765271919,
+ 0.0
+ ],
+ [
+ 99.762238170900005,
+ 27.781864617899998,
+ 0.0
+ ],
+ [
+ 99.7433028218,
+ 27.833224835300001,
+ 0.0
+ ],
+ [
+ 99.722445626699994,
+ 27.860483005300001,
+ 0.0
+ ],
+ [
+ 99.706773241899995,
+ 27.869622774300002,
+ 0.0
+ ],
+ [
+ 99.670213047499999,
+ 27.875845928099999,
+ 0.0
+ ],
+ [
+ 99.685784522899993,
+ 27.708475131099998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 582,
+ "name": "Diqing Airport",
+ "country": "CN",
+ "city": "Shangri-La",
+ "height": 0,
+ "level": 2,
+ "lat": "27.833475150694",
+ "lng": "99.6608569991165",
+ "radius": 14114,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.651359894400002,
+ 27.9601283573,
+ 0.0
+ ],
+ [
+ 99.575647205799996,
+ 27.935646348599999,
+ 0.0
+ ],
+ [
+ 99.622853323599998,
+ 27.860523355200002,
+ 0.0
+ ],
+ [
+ 99.609235174099993,
+ 27.849044456200001,
+ 0.0
+ ],
+ [
+ 99.599470580399995,
+ 27.834868719900001,
+ 0.0
+ ],
+ [
+ 99.594189814800004,
+ 27.8189410196,
+ 0.0
+ ],
+ [
+ 99.593750918300003,
+ 27.802347320700001,
+ 0.0
+ ],
+ [
+ 99.621159031900007,
+ 27.736224042700002,
+ 0.0
+ ],
+ [
+ 99.649276459800006,
+ 27.714688958299998,
+ 0.0
+ ],
+ [
+ 99.685784522899993,
+ 27.708475131099998,
+ 0.0
+ ],
+ [
+ 99.670213047499999,
+ 27.875845928099999,
+ 0.0
+ ],
+ [
+ 99.651359894400002,
+ 27.9601283573,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 582,
+ "name": "Diqing Airport",
+ "country": "CN",
+ "city": "Shangri-La",
+ "height": 120,
+ "level": 2,
+ "lat": "27.7921219568905",
+ "lng": "99.6778797796891",
+ "radius": 24242,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.505108099799997,
+ 27.9476949624,
+ 120.0
+ ],
+ [
+ 99.69636556,
+ 28.0095228112,
+ 120.0
+ ],
+ [
+ 99.850376874199995,
+ 27.6365263012,
+ 120.0
+ ],
+ [
+ 99.659774535500006,
+ 27.574698451900002,
+ 120.0
+ ],
+ [
+ 99.505108099799997,
+ 27.9476949624,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33224,
+ "name": "泸沽湖",
+ "country": "CN",
+ "city": "宁蒗",
+ "height": 0,
+ "level": 2,
+ "lat": "27.5079775821775",
+ "lng": "100.723152578115",
+ "radius": 13306,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.68029643,
+ 27.505242747400001,
+ 0.0
+ ],
+ [
+ 100.598625896,
+ 27.461980663199999,
+ 0.0
+ ],
+ [
+ 100.645073237,
+ 27.410409296099999,
+ 0.0
+ ],
+ [
+ 100.708414429,
+ 27.475409673800002,
+ 0.0
+ ],
+ [
+ 100.740442714,
+ 27.466748469300001,
+ 0.0
+ ],
+ [
+ 100.75910306,
+ 27.467920066800001,
+ 0.0
+ ],
+ [
+ 100.776787236,
+ 27.473334670300002,
+ 0.0
+ ],
+ [
+ 100.820646667,
+ 27.499307353199999,
+ 0.0
+ ],
+ [
+ 100.841524483,
+ 27.524316048599999,
+ 0.0
+ ],
+ [
+ 100.84632437499999,
+ 27.540359284299999,
+ 0.0
+ ],
+ [
+ 100.84627847199999,
+ 27.556957473600001,
+ 0.0
+ ],
+ [
+ 100.68029643,
+ 27.505242747400001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33224,
+ "name": "泸沽湖",
+ "country": "CN",
+ "city": "宁蒗",
+ "height": 0,
+ "level": 2,
+ "lat": "27.5677889207144",
+ "lng": "100.797993328938",
+ "radius": 13529,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.923039428,
+ 27.618008196,
+ 0.0
+ ],
+ [
+ 100.873203762,
+ 27.669587143099999,
+ 0.0
+ ],
+ [
+ 100.808196266,
+ 27.6079198445,
+ 0.0
+ ],
+ [
+ 100.778129903,
+ 27.615980706599998,
+ 0.0
+ ],
+ [
+ 100.74164779199999,
+ 27.609799205800002,
+ 0.0
+ ],
+ [
+ 100.687848903,
+ 27.568471111699999,
+ 0.0
+ ],
+ [
+ 100.67451826,
+ 27.537753865399999,
+ 0.0
+ ],
+ [
+ 100.674994616,
+ 27.521161002300001,
+ 0.0
+ ],
+ [
+ 100.68029643,
+ 27.505242747400001,
+ 0.0
+ ],
+ [
+ 100.84627847199999,
+ 27.556957473600001,
+ 0.0
+ ],
+ [
+ 100.841387753,
+ 27.5729794738,
+ 0.0
+ ],
+ [
+ 100.923039428,
+ 27.618008196,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33224,
+ "name": "泸沽湖",
+ "country": "CN",
+ "city": "宁蒗",
+ "height": 120,
+ "level": 2,
+ "lat": "27.5406418208385",
+ "lng": "100.76019438961",
+ "radius": 23860,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.87160575,
+ 27.7311749747,
+ 120.0
+ ],
+ [
+ 100.996019217,
+ 27.589019364799999,
+ 120.0
+ ],
+ [
+ 100.648569369,
+ 27.3502960223,
+ 120.0
+ ],
+ [
+ 100.524425926,
+ 27.4924516325,
+ 120.0
+ ],
+ [
+ 100.87160575,
+ 27.7311749747,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001515,
+ "name": "泸沽湖",
+ "country": "CN",
+ "city": "宁蒗",
+ "height": 500,
+ "level": 2,
+ "lat": "27.5404166666667",
+ "lng": "100.759583333333",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.759583333333325,
+ 27.991616305933501,
+ 500.0
+ ],
+ [
+ 100.847840094914957,
+ 27.984733751369966,
+ 500.0
+ ],
+ [
+ 100.933382661892907,
+ 27.964297744963186,
+ 500.0
+ ],
+ [
+ 101.013583333273857,
+ 27.930936511789103,
+ 500.0
+ ],
+ [
+ 101.085984255286888,
+ 27.88567485019642,
+ 500.0
+ ],
+ [
+ 101.148374659506928,
+ 27.829901613816592,
+ 500.0
+ ],
+ [
+ 101.198859323596679,
+ 27.765325834688067,
+ 500.0
+ ],
+ [
+ 101.235916026965597,
+ 27.693923032933501,
+ 500.0
+ ],
+ [
+ 101.258440291045432,
+ 27.617873564005087,
+ 500.0
+ ],
+ [
+ 101.26577625341433,
+ 27.539495075452081,
+ 500.0
+ ],
+ [
+ 101.25773308710049,
+ 27.461171278605761,
+ 500.0
+ ],
+ [
+ 101.234586907351272,
+ 27.385279289412175,
+ 500.0
+ ],
+ [
+ 101.197068582965898,
+ 27.31411776418469,
+ 500.0
+ ],
+ [
+ 101.146338272843991,
+ 27.249837960441209,
+ 500.0
+ ],
+ [
+ 101.083947835045279,
+ 27.194379701638969,
+ 500.0
+ ],
+ [
+ 101.011792507618878,
+ 27.149414028872318,
+ 500.0
+ ],
+ [
+ 100.932053445592629,
+ 27.116294092818059,
+ 500.0
+ ],
+ [
+ 100.847132827862723,
+ 27.096015584255106,
+ 500.0
+ ],
+ [
+ 100.759583333333325,
+ 27.089187728550041,
+ 500.0
+ ],
+ [
+ 100.672033838803927,
+ 27.096015584255106,
+ 500.0
+ ],
+ [
+ 100.58711322107402,
+ 27.116294092818059,
+ 500.0
+ ],
+ [
+ 100.507374159047771,
+ 27.149414028872318,
+ 500.0
+ ],
+ [
+ 100.43521883162137,
+ 27.194379701638969,
+ 500.0
+ ],
+ [
+ 100.372828393822658,
+ 27.249837960441209,
+ 500.0
+ ],
+ [
+ 100.322098083700752,
+ 27.31411776418469,
+ 500.0
+ ],
+ [
+ 100.284579759315378,
+ 27.385279289412175,
+ 500.0
+ ],
+ [
+ 100.261433579566159,
+ 27.461171278605761,
+ 500.0
+ ],
+ [
+ 100.253390413252319,
+ 27.539495075452081,
+ 500.0
+ ],
+ [
+ 100.260726375621218,
+ 27.617873564005087,
+ 500.0
+ ],
+ [
+ 100.283250639701052,
+ 27.693923032933501,
+ 500.0
+ ],
+ [
+ 100.32030734306997,
+ 27.765325834688067,
+ 500.0
+ ],
+ [
+ 100.370792007159721,
+ 27.829901613816592,
+ 500.0
+ ],
+ [
+ 100.433182411379761,
+ 27.88567485019642,
+ 500.0
+ ],
+ [
+ 100.505583333392792,
+ 27.930936511789103,
+ 500.0
+ ],
+ [
+ 100.585784004773743,
+ 27.964297744963186,
+ 500.0
+ ],
+ [
+ 100.671326571751692,
+ 27.984733751369966,
+ 500.0
+ ],
+ [
+ 100.759583333333325,
+ 27.991616305933501,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001474,
+ "name": "Zhaotong Airport",
+ "country": "CN",
+ "city": "Zhaotong",
+ "height": 500,
+ "level": 2,
+ "lat": "27.327497",
+ "lng": "103.756697",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 103.756697,
+ 27.778710504455685,
+ 500.0
+ ],
+ [
+ 103.844781355032097,
+ 27.771827990409534,
+ 500.0
+ ],
+ [
+ 103.930157110239463,
+ 27.751392081402596,
+ 500.0
+ ],
+ [
+ 104.010201945332199,
+ 27.718030933634854,
+ 500.0
+ ],
+ [
+ 104.082462971218305,
+ 27.672769242123699,
+ 500.0
+ ],
+ [
+ 104.14473378929894,
+ 27.616995738308546,
+ 500.0
+ ],
+ [
+ 104.195122805383377,
+ 27.552419332036411,
+ 500.0
+ ],
+ [
+ 104.232110576586123,
+ 27.481015440884466,
+ 500.0
+ ],
+ [
+ 104.254594483801796,
+ 27.404964355258997,
+ 500.0
+ ],
+ [
+ 104.261919578747225,
+ 27.326583708887075,
+ 500.0
+ ],
+ [
+ 104.253895013888183,
+ 27.248257258289048,
+ 500.0
+ ],
+ [
+ 104.230795992384273,
+ 27.172362224398714,
+ 500.0
+ ],
+ [
+ 104.19335164864917,
+ 27.101197421899304,
+ 500.0
+ ],
+ [
+ 104.142719673163199,
+ 27.036914307100627,
+ 500.0
+ ],
+ [
+ 104.080448822080399,
+ 26.981452924599775,
+ 500.0
+ ],
+ [
+ 104.008430705033547,
+ 26.936484537807139,
+ 500.0
+ ],
+ [
+ 103.928842431011645,
+ 26.903362498984517,
+ 500.0
+ ],
+ [
+ 103.844081823094683,
+ 26.883082659557751,
+ 500.0
+ ],
+ [
+ 103.756697,
+ 26.876254348333042,
+ 500.0
+ ],
+ [
+ 103.669312176905322,
+ 26.883082659557751,
+ 500.0
+ ],
+ [
+ 103.58455156898836,
+ 26.903362498984517,
+ 500.0
+ ],
+ [
+ 103.504963294966458,
+ 26.936484537807139,
+ 500.0
+ ],
+ [
+ 103.432945177919606,
+ 26.981452924599775,
+ 500.0
+ ],
+ [
+ 103.370674326836806,
+ 27.036914307100627,
+ 500.0
+ ],
+ [
+ 103.320042351350835,
+ 27.101197421899304,
+ 500.0
+ ],
+ [
+ 103.282598007615732,
+ 27.172362224398714,
+ 500.0
+ ],
+ [
+ 103.259498986111822,
+ 27.248257258289048,
+ 500.0
+ ],
+ [
+ 103.25147442125278,
+ 27.326583708887075,
+ 500.0
+ ],
+ [
+ 103.258799516198209,
+ 27.404964355258997,
+ 500.0
+ ],
+ [
+ 103.281283423413882,
+ 27.481015440884466,
+ 500.0
+ ],
+ [
+ 103.318271194616628,
+ 27.552419332036411,
+ 500.0
+ ],
+ [
+ 103.368660210701066,
+ 27.616995738308546,
+ 500.0
+ ],
+ [
+ 103.4309310287817,
+ 27.672769242123699,
+ 500.0
+ ],
+ [
+ 103.503192054667807,
+ 27.718030933634854,
+ 500.0
+ ],
+ [
+ 103.583236889760542,
+ 27.751392081402596,
+ 500.0
+ ],
+ [
+ 103.668612644967908,
+ 27.771827990409534,
+ 500.0
+ ],
+ [
+ 103.756697,
+ 27.778710504455685,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8736,
+ "name": "Zhaotong Airport",
+ "country": "CN",
+ "city": "Zhaotong",
+ "height": 0,
+ "level": 2,
+ "lat": "27.3607597728034",
+ "lng": "103.789864530432",
+ "radius": 13585,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 103.831972191,
+ 27.370428264499999,
+ 0.0
+ ],
+ [
+ 103.906622716,
+ 27.425417397699999,
+ 0.0
+ ],
+ [
+ 103.848135062,
+ 27.4714472364,
+ 0.0
+ ],
+ [
+ 103.795563664,
+ 27.399102553,
+ 0.0
+ ],
+ [
+ 103.758569718,
+ 27.405464160299999,
+ 0.0
+ ],
+ [
+ 103.740268785,
+ 27.402069031500002,
+ 0.0
+ ],
+ [
+ 103.70965143399999,
+ 27.3835152284,
+ 0.0
+ ],
+ [
+ 103.677937681,
+ 27.348589045400001,
+ 0.0
+ ],
+ [
+ 103.671750298,
+ 27.332927200499999,
+ 0.0
+ ],
+ [
+ 103.670337868,
+ 27.316376462099999,
+ 0.0
+ ],
+ [
+ 103.681882792,
+ 27.285103707699999,
+ 0.0
+ ],
+ [
+ 103.831972191,
+ 27.370428264499999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8736,
+ "name": "Zhaotong Airport",
+ "country": "CN",
+ "city": "Zhaotong",
+ "height": 0,
+ "level": 2,
+ "lat": "27.2947427378194",
+ "lng": "103.724017995365",
+ "radius": 13584,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 103.607389225,
+ 27.230110866299999,
+ 0.0
+ ],
+ [
+ 103.665784787,
+ 27.1840866328,
+ 0.0
+ ],
+ [
+ 103.718221704,
+ 27.256482216,
+ 0.0
+ ],
+ [
+ 103.736485179,
+ 27.251057958699999,
+ 0.0
+ ],
+ [
+ 103.773405338,
+ 27.253496962300002,
+ 0.0
+ ],
+ [
+ 103.790080453,
+ 27.2609645848,
+ 0.0
+ ],
+ [
+ 103.824820284,
+ 27.2928540134,
+ 0.0
+ ],
+ [
+ 103.842006567,
+ 27.322587879499999,
+ 0.0
+ ],
+ [
+ 103.840034062,
+ 27.3554536834,
+ 0.0
+ ],
+ [
+ 103.831972191,
+ 27.370428264499999,
+ 0.0
+ ],
+ [
+ 103.681882792,
+ 27.285103707699999,
+ 0.0
+ ],
+ [
+ 103.607389225,
+ 27.230110866299999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8736,
+ "name": "Zhaotong Airport",
+ "country": "CN",
+ "city": "Zhaotong",
+ "height": 120,
+ "level": 2,
+ "lat": "27.3276594873036",
+ "lng": "103.757056936849",
+ "radius": 23754,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 103.688008214,
+ 27.123044677199999,
+ 120.0
+ ],
+ [
+ 103.536686355,
+ 27.242340938400002,
+ 120.0
+ ],
+ [
+ 103.825827928,
+ 27.532378426899999,
+ 120.0
+ ],
+ [
+ 103.977546143,
+ 27.413082166300001,
+ 120.0
+ ],
+ [
+ 103.688008214,
+ 27.123044677199999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002165,
+ "name": "Zunyi Renhuai Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.96160574",
+ "lng": "106.43551586",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.43551586,
+ 28.412777743980314,
+ 500.0
+ ],
+ [
+ 106.52411927740053,
+ 28.40589510949939,
+ 500.0
+ ],
+ [
+ 106.609997253484934,
+ 28.385458911391677,
+ 500.0
+ ],
+ [
+ 106.690511270603864,
+ 28.352097511757332,
+ 500.0
+ ],
+ [
+ 106.763193494103987,
+ 28.306835914500724,
+ 500.0
+ ],
+ [
+ 106.825824369763254,
+ 28.251063216296938,
+ 500.0
+ ],
+ [
+ 106.876501379614837,
+ 28.186488692174493,
+ 500.0
+ ],
+ [
+ 106.913696716287561,
+ 28.115088066096337,
+ 500.0
+ ],
+ [
+ 106.936302159744329,
+ 28.039041822683103,
+ 500.0
+ ],
+ [
+ 106.94366000612888,
+ 27.960667636684583,
+ 500.0
+ ],
+ [
+ 106.935579466084718,
+ 27.882349129189546,
+ 500.0
+ ],
+ [
+ 106.912338485149832,
+ 27.806463206915819,
+ 500.0
+ ],
+ [
+ 106.874671416345564,
+ 27.735308210754571,
+ 500.0
+ ],
+ [
+ 106.823743379660669,
+ 27.671035002414442,
+ 500.0
+ ],
+ [
+ 106.761112469251174,
+ 27.615582965130972,
+ 500.0
+ ],
+ [
+ 106.68868121934392,
+ 27.570622697493548,
+ 500.0
+ ],
+ [
+ 106.608638922287923,
+ 27.537506948975459,
+ 500.0
+ ],
+ [
+ 106.523396518431852,
+ 27.517231090649656,
+ 500.0
+ ],
+ [
+ 106.43551586,
+ 27.510404142034648,
+ 500.0
+ ],
+ [
+ 106.347635201568139,
+ 27.517231090649656,
+ 500.0
+ ],
+ [
+ 106.262392797712067,
+ 27.537506948975459,
+ 500.0
+ ],
+ [
+ 106.182350500656071,
+ 27.570622697493548,
+ 500.0
+ ],
+ [
+ 106.109919250748817,
+ 27.615582965130972,
+ 500.0
+ ],
+ [
+ 106.047288340339321,
+ 27.671035002414442,
+ 500.0
+ ],
+ [
+ 105.996360303654427,
+ 27.735308210754571,
+ 500.0
+ ],
+ [
+ 105.958693234850159,
+ 27.806463206915819,
+ 500.0
+ ],
+ [
+ 105.935452253915273,
+ 27.882349129189546,
+ 500.0
+ ],
+ [
+ 105.927371713871111,
+ 27.960667636684583,
+ 500.0
+ ],
+ [
+ 105.934729560255661,
+ 28.039041822683103,
+ 500.0
+ ],
+ [
+ 105.95733500371243,
+ 28.115088066096337,
+ 500.0
+ ],
+ [
+ 105.994530340385154,
+ 28.186488692174493,
+ 500.0
+ ],
+ [
+ 106.045207350236737,
+ 28.251063216296938,
+ 500.0
+ ],
+ [
+ 106.107838225896003,
+ 28.306835914500724,
+ 500.0
+ ],
+ [
+ 106.180520449396127,
+ 28.352097511757332,
+ 500.0
+ ],
+ [
+ 106.261034466515056,
+ 28.385458911391677,
+ 500.0
+ ],
+ [
+ 106.346912442599461,
+ 28.40589510949939,
+ 500.0
+ ],
+ [
+ 106.43551586,
+ 28.412777743980314,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000061,
+ "name": "Zunyi Renhuai Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.9183976815997",
+ "lng": "106.441565116216",
+ "radius": 13346,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.422725896,
+ 27.886305908299999,
+ 0.0
+ ],
+ [
+ 106.419970194,
+ 27.7998953564,
+ 0.0
+ ],
+ [
+ 106.494127608,
+ 27.8077271712,
+ 0.0
+ ],
+ [
+ 106.468455374,
+ 27.891133831499999,
+ 0.0
+ ],
+ [
+ 106.486299409,
+ 27.899928088599999,
+ 0.0
+ ],
+ [
+ 106.50907636,
+ 27.9259690568,
+ 0.0
+ ],
+ [
+ 106.514004352,
+ 27.941986103200001,
+ 0.0
+ ],
+ [
+ 106.514072609,
+ 27.9585842328,
+ 0.0
+ ],
+ [
+ 106.505810013,
+ 27.9996459278,
+ 0.0
+ ],
+ [
+ 106.483069853,
+ 28.0257262887,
+ 0.0
+ ],
+ [
+ 106.448596127,
+ 28.0382674122,
+ 0.0
+ ],
+ [
+ 106.422725896,
+ 27.886305908299999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000061,
+ "name": "Zunyi Renhuai Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "28.0061791747824",
+ "lng": "106.429692553077",
+ "radius": 13346,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.45136820899999,
+ 28.124676598,
+ 0.0
+ ],
+ [
+ 106.37701377899999,
+ 28.1168431987,
+ 0.0
+ ],
+ [
+ 106.40279405299999,
+ 28.0334406556,
+ 0.0
+ ],
+ [
+ 106.384862067,
+ 28.024587881199999,
+ 0.0
+ ],
+ [
+ 106.362129815,
+ 27.998502310399999,
+ 0.0
+ ],
+ [
+ 106.35724361699999,
+ 27.982474664200002,
+ 0.0
+ ],
+ [
+ 106.35722207,
+ 27.965876436,
+ 0.0
+ ],
+ [
+ 106.365533662,
+ 27.924882962400002,
+ 0.0
+ ],
+ [
+ 106.388286848,
+ 27.898825934400001,
+ 0.0
+ ],
+ [
+ 106.422725896,
+ 27.886305908299999,
+ 0.0
+ ],
+ [
+ 106.448596127,
+ 28.0382674122,
+ 0.0
+ ],
+ [
+ 106.45136820899999,
+ 28.124676598,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000061,
+ "name": "Zunyi Renhuai Airport",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "27.9622829154798",
+ "lng": "106.435602052897",
+ "radius": 23545,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.30859141099999,
+ 28.1419272475,
+ 120.0
+ ],
+ [
+ 106.511150078,
+ 28.163259931900001,
+ 120.0
+ ],
+ [
+ 106.562276163,
+ 27.7825694629,
+ 120.0
+ ],
+ [
+ 106.360430712,
+ 27.761236778299999,
+ 120.0
+ ],
+ [
+ 106.30859141099999,
+ 28.1419272475,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33360,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.2605165932519",
+ "lng": "105.42237123293",
+ "radius": 13334,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.385921538,
+ 27.2764073156,
+ 0.0
+ ],
+ [
+ 105.288680539,
+ 27.2766472735,
+ 0.0
+ ],
+ [
+ 105.29934433299999,
+ 27.211362658300001,
+ 0.0
+ ],
+ [
+ 105.392488082,
+ 27.236216026,
+ 0.0
+ ],
+ [
+ 105.402878988,
+ 27.220609524499999,
+ 0.0
+ ],
+ [
+ 105.432749681,
+ 27.201179186600001,
+ 0.0
+ ],
+ [
+ 105.469537755,
+ 27.1976257522,
+ 0.0
+ ],
+ [
+ 105.515234057,
+ 27.2059381993,
+ 0.0
+ ],
+ [
+ 105.543981098,
+ 27.2266672923,
+ 0.0
+ ],
+ [
+ 105.55288034199999,
+ 27.2412580562,
+ 0.0
+ ],
+ [
+ 105.55723072799999,
+ 27.257399409400001,
+ 0.0
+ ],
+ [
+ 105.385921538,
+ 27.2764073156,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33360,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.2731766249918",
+ "lng": "105.52080620963",
+ "radius": 13335,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.654512041,
+ 27.257110539799999,
+ 0.0
+ ],
+ [
+ 105.64387819,
+ 27.3223970184,
+ 0.0
+ ],
+ [
+ 105.550672349,
+ 27.297662728500001,
+ 0.0
+ ],
+ [
+ 105.540302364,
+ 27.3132598973,
+ 0.0
+ ],
+ [
+ 105.510418335,
+ 27.3327106222,
+ 0.0
+ ],
+ [
+ 105.473586467,
+ 27.3362717268,
+ 0.0
+ ],
+ [
+ 105.427843502,
+ 27.327933755099998,
+ 0.0
+ ],
+ [
+ 105.399108645,
+ 27.3071626821,
+ 0.0
+ ],
+ [
+ 105.390236062,
+ 27.2925565627,
+ 0.0
+ ],
+ [
+ 105.385921538,
+ 27.2764073156,
+ 0.0
+ ],
+ [
+ 105.55723072799999,
+ 27.257399409400001,
+ 0.0
+ ],
+ [
+ 105.654512041,
+ 27.257110539799999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33360,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "27.2666466854821",
+ "lng": "105.471623779755",
+ "radius": 23534,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.670430395,
+ 27.3832672417,
+ 120.0
+ ],
+ [
+ 105.69943423,
+ 27.205259256,
+ 120.0
+ ],
+ [
+ 105.27278815,
+ 27.150346223500001,
+ 120.0
+ ],
+ [
+ 105.243798639,
+ 27.3283542092,
+ 120.0
+ ],
+ [
+ 105.670430395,
+ 27.3832672417,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001309,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.267071",
+ "lng": "105.472222",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.472222,
+ 27.718288426357834,
+ 500.0
+ ],
+ [
+ 105.560257770189665,
+ 27.711405923829631,
+ 500.0
+ ],
+ [
+ 105.645586517351475,
+ 27.690970042538726,
+ 500.0
+ ],
+ [
+ 105.725587437640939,
+ 27.657608919185225,
+ 500.0
+ ],
+ [
+ 105.797809041128716,
+ 27.612347219530736,
+ 500.0
+ ],
+ [
+ 105.86004616068513,
+ 27.55657364041695,
+ 500.0
+ ],
+ [
+ 105.910408224510164,
+ 27.49199705708984,
+ 500.0
+ ],
+ [
+ 105.947376572380549,
+ 27.420592858083342,
+ 500.0
+ ],
+ [
+ 105.969849109027024,
+ 27.344541315372595,
+ 500.0
+ ],
+ [
+ 105.977171143561563,
+ 27.266160058751659,
+ 500.0
+ ],
+ [
+ 105.969151822421296,
+ 27.187832857511705,
+ 500.0
+ ],
+ [
+ 105.946066091508087,
+ 27.11193696228575,
+ 500.0
+ ],
+ [
+ 105.908642596285631,
+ 27.040771232569643,
+ 500.0
+ ],
+ [
+ 105.85803833149059,
+ 26.976487180931645,
+ 500.0
+ ],
+ [
+ 105.795801179093729,
+ 26.921024914557215,
+ 500.0
+ ],
+ [
+ 105.723821726261477,
+ 26.876055759781782,
+ 500.0
+ ],
+ [
+ 105.644275941918735,
+ 26.842933125926859,
+ 500.0
+ ],
+ [
+ 105.559560421864106,
+ 26.822652909891538,
+ 500.0
+ ],
+ [
+ 105.472222,
+ 26.815824469762546,
+ 500.0
+ ],
+ [
+ 105.384883578135899,
+ 26.822652909891538,
+ 500.0
+ ],
+ [
+ 105.300168058081269,
+ 26.842933125926859,
+ 500.0
+ ],
+ [
+ 105.220622273738527,
+ 26.876055759781782,
+ 500.0
+ ],
+ [
+ 105.148642820906275,
+ 26.921024914557215,
+ 500.0
+ ],
+ [
+ 105.086405668509414,
+ 26.976487180931645,
+ 500.0
+ ],
+ [
+ 105.035801403714373,
+ 27.040771232569643,
+ 500.0
+ ],
+ [
+ 104.998377908491918,
+ 27.11193696228575,
+ 500.0
+ ],
+ [
+ 104.975292177578709,
+ 27.187832857511705,
+ 500.0
+ ],
+ [
+ 104.967272856438441,
+ 27.266160058751659,
+ 500.0
+ ],
+ [
+ 104.97459489097298,
+ 27.344541315372595,
+ 500.0
+ ],
+ [
+ 104.997067427619456,
+ 27.420592858083342,
+ 500.0
+ ],
+ [
+ 105.034035775489841,
+ 27.49199705708984,
+ 500.0
+ ],
+ [
+ 105.084397839314875,
+ 27.55657364041695,
+ 500.0
+ ],
+ [
+ 105.146634958871289,
+ 27.612347219530736,
+ 500.0
+ ],
+ [
+ 105.218856562359065,
+ 27.657608919185225,
+ 500.0
+ ],
+ [
+ 105.298857482648529,
+ 27.690970042538726,
+ 500.0
+ ],
+ [
+ 105.384186229810339,
+ 27.711405923829631,
+ 500.0
+ ],
+ [
+ 105.472222,
+ 27.718288426357834,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001395,
+ "name": "Zhijiang Airport",
+ "country": "CN",
+ "city": "Huaihua",
+ "height": 500,
+ "level": 2,
+ "lat": "27.443886",
+ "lng": "109.70527",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.70527,
+ 27.895091934096335,
+ 500.0
+ ],
+ [
+ 109.79344836391121,
+ 27.888209397889781,
+ 500.0
+ ],
+ [
+ 109.87891507719533,
+ 27.867773435592781,
+ 500.0
+ ],
+ [
+ 109.95904488550633,
+ 27.834412241023106,
+ 500.0
+ ],
+ [
+ 110.031382192574398,
+ 27.789150565635008,
+ 500.0
+ ],
+ [
+ 110.093718217022456,
+ 27.733377207607369,
+ 500.0
+ ],
+ [
+ 110.144159386348235,
+ 27.668801143528629,
+ 500.0
+ ],
+ [
+ 110.181184743126494,
+ 27.597397846990322,
+ 500.0
+ ],
+ [
+ 110.203690654447968,
+ 27.521347643935105,
+ 500.0
+ ],
+ [
+ 110.211021673717227,
+ 27.442968175652474,
+ 500.0
+ ],
+ [
+ 110.202986964770844,
+ 27.36464317399729,
+ 500.0
+ ],
+ [
+ 110.17986222826093,
+ 27.288749802578742,
+ 500.0
+ ],
+ [
+ 110.142377544448323,
+ 27.217586789599846,
+ 500.0
+ ],
+ [
+ 110.091691949869684,
+ 27.153305482811785,
+ 500.0
+ ],
+ [
+ 110.029355892105585,
+ 27.097845806045335,
+ 500.0
+ ],
+ [
+ 109.957262959247259,
+ 27.052878901299707,
+ 500.0
+ ],
+ [
+ 109.877592466400088,
+ 27.019758010745591,
+ 500.0
+ ],
+ [
+ 109.792744611620421,
+ 26.99947889807413,
+ 500.0
+ ],
+ [
+ 109.70527,
+ 26.992650835599353,
+ 500.0
+ ],
+ [
+ 109.617795388379577,
+ 26.99947889807413,
+ 500.0
+ ],
+ [
+ 109.532947533599909,
+ 27.019758010745591,
+ 500.0
+ ],
+ [
+ 109.453277040752738,
+ 27.052878901299707,
+ 500.0
+ ],
+ [
+ 109.381184107894413,
+ 27.097845806045335,
+ 500.0
+ ],
+ [
+ 109.318848050130313,
+ 27.153305482811785,
+ 500.0
+ ],
+ [
+ 109.268162455551675,
+ 27.217586789599846,
+ 500.0
+ ],
+ [
+ 109.230677771739067,
+ 27.288749802578742,
+ 500.0
+ ],
+ [
+ 109.207553035229154,
+ 27.36464317399729,
+ 500.0
+ ],
+ [
+ 109.199518326282771,
+ 27.442968175652474,
+ 500.0
+ ],
+ [
+ 109.20684934555203,
+ 27.521347643935105,
+ 500.0
+ ],
+ [
+ 109.229355256873504,
+ 27.597397846990322,
+ 500.0
+ ],
+ [
+ 109.266380613651762,
+ 27.668801143528629,
+ 500.0
+ ],
+ [
+ 109.316821782977541,
+ 27.733377207607369,
+ 500.0
+ ],
+ [
+ 109.379157807425599,
+ 27.789150565635008,
+ 500.0
+ ],
+ [
+ 109.451495114493667,
+ 27.834412241023106,
+ 500.0
+ ],
+ [
+ 109.531624922804667,
+ 27.867773435592781,
+ 500.0
+ ],
+ [
+ 109.617091636088787,
+ 27.888209397889781,
+ 500.0
+ ],
+ [
+ 109.70527,
+ 27.895091934096335,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1451,
+ "name": "Zhijiang Airport",
+ "country": "CN",
+ "city": "Huaihua",
+ "height": 0,
+ "level": 2,
+ "lat": "27.4077471210232",
+ "lng": "109.679553680448",
+ "radius": 13052,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.640268068,
+ 27.401663472700001,
+ 0.0
+ ],
+ [
+ 109.570251674,
+ 27.341739979700002,
+ 0.0
+ ],
+ [
+ 109.630393905,
+ 27.298790585100001,
+ 0.0
+ ],
+ [
+ 109.67537798,
+ 27.373786515799999,
+ 0.0
+ ],
+ [
+ 109.710275709,
+ 27.372305715100001,
+ 0.0
+ ],
+ [
+ 109.727962098,
+ 27.3776750181,
+ 0.0
+ ],
+ [
+ 109.743483328,
+ 27.386924487800002,
+ 0.0
+ ],
+ [
+ 109.774147789,
+ 27.417798454,
+ 0.0
+ ],
+ [
+ 109.78820314399999,
+ 27.445758351199999,
+ 0.0
+ ],
+ [
+ 109.789057156,
+ 27.462339281,
+ 0.0
+ ],
+ [
+ 109.785045145,
+ 27.478551326400002,
+ 0.0
+ ],
+ [
+ 109.640268068,
+ 27.401663472700001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1451,
+ "name": "Zhijiang Airport",
+ "country": "CN",
+ "city": "Huaihua",
+ "height": 0,
+ "level": 2,
+ "lat": "27.4795793364731",
+ "lng": "109.740508157812",
+ "radius": 13149,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.844753365,
+ 27.553319367099999,
+ 0.0
+ ],
+ [
+ 109.78456560399999,
+ 27.5911987434,
+ 0.0
+ ],
+ [
+ 109.736227658,
+ 27.5195306733,
+ 0.0
+ ],
+ [
+ 109.702157254,
+ 27.5215876205,
+ 0.0
+ ],
+ [
+ 109.684297423,
+ 27.5166253559,
+ 0.0
+ ],
+ [
+ 109.65583274799999,
+ 27.495510999699999,
+ 0.0
+ ],
+ [
+ 109.628451559,
+ 27.449183319,
+ 0.0
+ ],
+ [
+ 109.627619314,
+ 27.432601521599999,
+ 0.0
+ ],
+ [
+ 109.640268068,
+ 27.401663472700001,
+ 0.0
+ ],
+ [
+ 109.785045145,
+ 27.478551326400002,
+ 0.0
+ ],
+ [
+ 109.776438579,
+ 27.4932892671,
+ 0.0
+ ],
+ [
+ 109.844753365,
+ 27.553319367099999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1451,
+ "name": "Zhijiang Airport",
+ "country": "CN",
+ "city": "Huaihua",
+ "height": 120,
+ "level": 2,
+ "lat": "27.4473965526914",
+ "lng": "109.70727359011",
+ "radius": 23516,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.75791183,
+ 27.654064333800001,
+ 120.0
+ ],
+ [
+ 109.918993153,
+ 27.544642471100001,
+ 120.0
+ ],
+ [
+ 109.656333936,
+ 27.2408055336,
+ 120.0
+ ],
+ [
+ 109.495695682,
+ 27.350227396899999,
+ 120.0
+ ],
+ [
+ 109.75791183,
+ 27.654064333800001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001481,
+ "name": "Nanping Wuyishan Airport",
+ "country": "CN",
+ "city": "Wuyishan",
+ "height": 500,
+ "level": 2,
+ "lat": "27.701342",
+ "lng": "117.999447",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.999447,
+ 28.152531112913739,
+ 500.0
+ ],
+ [
+ 118.087835325870586,
+ 28.14564852778603,
+ 500.0
+ ],
+ [
+ 118.173505188333294,
+ 28.125212448002415,
+ 500.0
+ ],
+ [
+ 118.253824780865855,
+ 28.09185115086882,
+ 500.0
+ ],
+ [
+ 118.326332461475005,
+ 28.04658951308873,
+ 500.0
+ ],
+ [
+ 118.38881412722661,
+ 27.990816480942954,
+ 500.0
+ ],
+ [
+ 118.439371787000013,
+ 27.926241179106817,
+ 500.0
+ ],
+ [
+ 118.476481100142777,
+ 27.854839205426774,
+ 500.0
+ ],
+ [
+ 118.499036168516369,
+ 27.778790964626154,
+ 500.0
+ ],
+ [
+ 118.506380431347807,
+ 27.700414114666902,
+ 500.0
+ ],
+ [
+ 118.498323076511838,
+ 27.622092332533107,
+ 500.0
+ ],
+ [
+ 118.475140914451728,
+ 27.546202654471976,
+ 500.0
+ ],
+ [
+ 118.437566136786231,
+ 27.475043616618301,
+ 500.0
+ ],
+ [
+ 118.386760785595499,
+ 27.410766325665044,
+ 500.0
+ ],
+ [
+ 118.324279085822525,
+ 27.355310437308198,
+ 500.0
+ ],
+ [
+ 118.252019044506966,
+ 27.310346824001901,
+ 500.0
+ ],
+ [
+ 118.172164904681665,
+ 27.27722848351717,
+ 500.0
+ ],
+ [
+ 118.087122169926829,
+ 27.256950984784037,
+ 500.0
+ ],
+ [
+ 117.999447,
+ 27.250123474713366,
+ 500.0
+ ],
+ [
+ 117.911771830073178,
+ 27.256950984784037,
+ 500.0
+ ],
+ [
+ 117.826729095318342,
+ 27.27722848351717,
+ 500.0
+ ],
+ [
+ 117.746874955493041,
+ 27.310346824001901,
+ 500.0
+ ],
+ [
+ 117.674614914177482,
+ 27.355310437308198,
+ 500.0
+ ],
+ [
+ 117.612133214404508,
+ 27.410766325665044,
+ 500.0
+ ],
+ [
+ 117.561327863213776,
+ 27.475043616618301,
+ 500.0
+ ],
+ [
+ 117.523753085548279,
+ 27.546202654471976,
+ 500.0
+ ],
+ [
+ 117.500570923488169,
+ 27.622092332533107,
+ 500.0
+ ],
+ [
+ 117.4925135686522,
+ 27.700414114666902,
+ 500.0
+ ],
+ [
+ 117.499857831483638,
+ 27.778790964626154,
+ 500.0
+ ],
+ [
+ 117.52241289985723,
+ 27.854839205426774,
+ 500.0
+ ],
+ [
+ 117.55952221299999,
+ 27.926241179106817,
+ 500.0
+ ],
+ [
+ 117.610079872773397,
+ 27.990816480942954,
+ 500.0
+ ],
+ [
+ 117.672561538525002,
+ 28.04658951308873,
+ 500.0
+ ],
+ [
+ 117.745069219134152,
+ 28.09185115086882,
+ 500.0
+ ],
+ [
+ 117.825388811666713,
+ 28.125212448002415,
+ 500.0
+ ],
+ [
+ 117.911058674129421,
+ 28.14564852778603,
+ 500.0
+ ],
+ [
+ 117.999447,
+ 28.152531112913739,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8077,
+ "name": "Nanping Wuyishan Airport",
+ "country": "CN",
+ "city": "Wuyishan",
+ "height": 0,
+ "level": 2,
+ "lat": "27.65933770284",
+ "lng": "117.979392203807",
+ "radius": 13480,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.941429304,
+ 27.6403748036,
+ 0.0
+ ],
+ [
+ 117.88890864,
+ 27.568403012899999,
+ 0.0
+ ],
+ [
+ 117.964666952,
+ 27.538809177400001,
+ 0.0
+ ],
+ [
+ 117.989164233,
+ 27.621745291700002,
+ 0.0
+ ],
+ [
+ 118.025247944,
+ 27.6260454162,
+ 0.0
+ ],
+ [
+ 118.041498254,
+ 27.634305233900001,
+ 0.0
+ ],
+ [
+ 118.054784667,
+ 27.646008444100001,
+ 0.0
+ ],
+ [
+ 118.075868789,
+ 27.6837637456,
+ 0.0
+ ],
+ [
+ 118.08238649099999,
+ 27.715512585199999,
+ 0.0
+ ],
+ [
+ 118.078520736,
+ 27.7317542489,
+ 0.0
+ ],
+ [
+ 118.057508789,
+ 27.758909652,
+ 0.0
+ ],
+ [
+ 117.941429304,
+ 27.6403748036,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8077,
+ "name": "Nanping Wuyishan Airport",
+ "country": "CN",
+ "city": "Wuyishan",
+ "height": 0,
+ "level": 2,
+ "lat": "27.7399510945678",
+ "lng": "118.019538034611",
+ "radius": 13481,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.110166531,
+ 27.830892370600001,
+ 0.0
+ ],
+ [
+ 118.034248477,
+ 27.860490125199998,
+ 0.0
+ ],
+ [
+ 118.009681277,
+ 27.777572683100001,
+ 0.0
+ ],
+ [
+ 117.973484853,
+ 27.773240703500001,
+ 0.0
+ ],
+ [
+ 117.957229309,
+ 27.764957079399998,
+ 0.0
+ ],
+ [
+ 117.934562094,
+ 27.738864292399999,
+ 0.0
+ ],
+ [
+ 117.92295501,
+ 27.715522131299998,
+ 0.0
+ ],
+ [
+ 117.91648760299999,
+ 27.6837353381,
+ 0.0
+ ],
+ [
+ 117.920385158,
+ 27.667499953499998,
+ 0.0
+ ],
+ [
+ 117.941429304,
+ 27.6403748036,
+ 0.0
+ ],
+ [
+ 118.057508789,
+ 27.758909652,
+ 0.0
+ ],
+ [
+ 118.110166531,
+ 27.830892370600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8077,
+ "name": "Nanping Wuyishan Airport",
+ "country": "CN",
+ "city": "Wuyishan",
+ "height": 120,
+ "level": 2,
+ "lat": "27.6996081414783",
+ "lng": "117.999554080154",
+ "radius": 23639,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.994199403,
+ 27.9121501286,
+ 120.0
+ ],
+ [
+ 118.180383642,
+ 27.839592286599999,
+ 120.0
+ ],
+ [
+ 118.00454672399999,
+ 27.487059438599999,
+ 120.0
+ ],
+ [
+ 117.818962943,
+ 27.559617281200001,
+ 120.0
+ ],
+ [
+ 117.994199403,
+ 27.9121501286,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287740,
+ "name": "Simara Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "27.1600038458371",
+ "lng": "84.9799870690088",
+ "radius": 4604,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 84.939199460599994,
+ 27.162472209699999,
+ 0.0
+ ],
+ [
+ 84.944542396700001,
+ 27.180258651199999,
+ 0.0
+ ],
+ [
+ 84.9488339551,
+ 27.186738033,
+ 0.0
+ ],
+ [
+ 84.961430980599999,
+ 27.196647831700002,
+ 0.0
+ ],
+ [
+ 84.977472035,
+ 27.2011418377,
+ 0.0
+ ],
+ [
+ 84.994181349,
+ 27.199442335099999,
+ 0.0
+ ],
+ [
+ 85.008667203599998,
+ 27.191843444100002,
+ 0.0
+ ],
+ [
+ 85.018423609,
+ 27.179660091399999,
+ 0.0
+ ],
+ [
+ 85.020960130199995,
+ 27.172486234099999,
+ 0.0
+ ],
+ [
+ 85.021764442800006,
+ 27.164999979,
+ 0.0
+ ],
+ [
+ 85.018125588800004,
+ 27.146839050099999,
+ 0.0
+ ],
+ [
+ 85.015433332800001,
+ 27.139710486599999,
+ 0.0
+ ],
+ [
+ 85.011134833100002,
+ 27.133235697899998,
+ 0.0
+ ],
+ [
+ 84.998533080499996,
+ 27.123337864,
+ 0.0
+ ],
+ [
+ 84.982498965399998,
+ 27.1188558323,
+ 0.0
+ ],
+ [
+ 84.965802811,
+ 27.120563929399999,
+ 0.0
+ ],
+ [
+ 84.951329016399995,
+ 27.128167070700002,
+ 0.0
+ ],
+ [
+ 84.941578981800006,
+ 27.140351610700002,
+ 0.0
+ ],
+ [
+ 84.939043504099999,
+ 27.147525555800001,
+ 0.0
+ ],
+ [
+ 84.938239420900004,
+ 27.1550118197,
+ 0.0
+ ],
+ [
+ 84.939199460599994,
+ 27.162472209699999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009810,
+ "name": "Janakpur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.708649",
+ "lng": "85.921883",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.921883,
+ 27.159902394532899,
+ 500.0
+ ],
+ [
+ 86.009476889368543,
+ 27.153019998969036,
+ 500.0
+ ],
+ [
+ 86.094378100298684,
+ 27.132584375716991,
+ 500.0
+ ],
+ [
+ 86.173979624118076,
+ 27.099223482224087,
+ 500.0
+ ],
+ [
+ 86.245842698400281,
+ 27.053961715295962,
+ 500.0
+ ],
+ [
+ 86.307773357018064,
+ 26.998187453662801,
+ 500.0
+ ],
+ [
+ 86.357890326085723,
+ 26.93360925435217,
+ 500.0
+ ],
+ [
+ 86.394682061442097,
+ 26.86220223867225,
+ 500.0
+ ],
+ [
+ 86.417051228521913,
+ 26.786146508819353,
+ 500.0
+ ],
+ [
+ 86.424345472892327,
+ 26.707759657984781,
+ 500.0
+ ],
+ [
+ 86.41637388114502,
+ 26.629425572331836,
+ 500.0
+ ],
+ [
+ 86.393409054537273,
+ 26.553521774936684,
+ 500.0
+ ],
+ [
+ 86.35617518738222,
+ 26.482347536662814,
+ 500.0
+ ],
+ [
+ 86.305822943756951,
+ 26.418054886692193,
+ 500.0
+ ],
+ [
+ 86.243892253755149,
+ 26.362584507072278,
+ 500.0
+ ],
+ [
+ 86.172264405947431,
+ 26.317608302175302,
+ 500.0
+ ],
+ [
+ 86.093105003027162,
+ 26.284480205532386,
+ 500.0
+ ],
+ [
+ 86.008799483008985,
+ 26.264196531836806,
+ 500.0
+ ],
+ [
+ 85.921883,
+ 26.257366908207398,
+ 500.0
+ ],
+ [
+ 85.834966516991003,
+ 26.264196531836806,
+ 500.0
+ ],
+ [
+ 85.750660996972826,
+ 26.284480205532386,
+ 500.0
+ ],
+ [
+ 85.671501594052557,
+ 26.317608302175302,
+ 500.0
+ ],
+ [
+ 85.599873746244839,
+ 26.362584507072278,
+ 500.0
+ ],
+ [
+ 85.537943056243037,
+ 26.418054886692193,
+ 500.0
+ ],
+ [
+ 85.487590812617768,
+ 26.482347536662814,
+ 500.0
+ ],
+ [
+ 85.450356945462715,
+ 26.553521774936684,
+ 500.0
+ ],
+ [
+ 85.427392118854968,
+ 26.629425572331836,
+ 500.0
+ ],
+ [
+ 85.419420527107661,
+ 26.707759657984781,
+ 500.0
+ ],
+ [
+ 85.426714771478075,
+ 26.786146508819353,
+ 500.0
+ ],
+ [
+ 85.449083938557891,
+ 26.86220223867225,
+ 500.0
+ ],
+ [
+ 85.485875673914265,
+ 26.93360925435217,
+ 500.0
+ ],
+ [
+ 85.535992642981924,
+ 26.998187453662801,
+ 500.0
+ ],
+ [
+ 85.597923301599707,
+ 27.053961715295962,
+ 500.0
+ ],
+ [
+ 85.669786375881912,
+ 27.099223482224087,
+ 500.0
+ ],
+ [
+ 85.749387899701304,
+ 27.132584375716991,
+ 500.0
+ ],
+ [
+ 85.834289110631445,
+ 27.153019998969036,
+ 500.0
+ ],
+ [
+ 85.921883,
+ 27.159902394532899,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010697,
+ "name": "Simara Airport",
+ "country": "NP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.160032",
+ "lng": "84.980031",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 84.980031,
+ 27.611256359442539,
+ 500.0
+ ],
+ [
+ 85.067981077774618,
+ 27.604373877341022,
+ 500.0
+ ],
+ [
+ 85.153226913809249,
+ 27.583938045235378,
+ 500.0
+ ],
+ [
+ 85.233150379074686,
+ 27.550576965333761,
+ 500.0
+ ],
+ [
+ 85.305302451547007,
+ 27.505315251648188,
+ 500.0
+ ],
+ [
+ 85.367480136161674,
+ 27.449541539819233,
+ 500.0
+ ],
+ [
+ 85.417794664340036,
+ 27.384964643882121,
+ 500.0
+ ],
+ [
+ 85.454728756176976,
+ 27.313559900985918,
+ 500.0
+ ],
+ [
+ 85.47718124014385,
+ 27.237507550486747,
+ 500.0
+ ],
+ [
+ 85.484497879103643,
+ 27.159125215199463,
+ 500.0
+ ],
+ [
+ 85.476487808602613,
+ 27.080796686978736,
+ 500.0
+ ],
+ [
+ 85.453425520548649,
+ 27.004899268962486,
+ 500.0
+ ],
+ [
+ 85.416038797798137,
+ 26.933731899884464,
+ 500.0
+ ],
+ [
+ 85.365483407810373,
+ 26.869446191798168,
+ 500.0
+ ],
+ [
+ 85.303305690639732,
+ 26.813982362574098,
+ 500.0
+ ],
+ [
+ 85.231394430098206,
+ 26.76901184983225,
+ 500.0
+ ],
+ [
+ 85.151923584439771,
+ 26.735888163808291,
+ 500.0
+ ],
+ [
+ 85.067287585048192,
+ 26.715607281825616,
+ 500.0
+ ],
+ [
+ 84.980031,
+ 26.708778613757246,
+ 500.0
+ ],
+ [
+ 84.892774414951802,
+ 26.715607281825616,
+ 500.0
+ ],
+ [
+ 84.808138415560222,
+ 26.735888163808291,
+ 500.0
+ ],
+ [
+ 84.728667569901788,
+ 26.76901184983225,
+ 500.0
+ ],
+ [
+ 84.656756309360262,
+ 26.813982362574098,
+ 500.0
+ ],
+ [
+ 84.59457859218962,
+ 26.869446191798168,
+ 500.0
+ ],
+ [
+ 84.544023202201856,
+ 26.933731899884464,
+ 500.0
+ ],
+ [
+ 84.506636479451345,
+ 27.004899268962486,
+ 500.0
+ ],
+ [
+ 84.483574191397381,
+ 27.080796686978736,
+ 500.0
+ ],
+ [
+ 84.475564120896351,
+ 27.159125215199463,
+ 500.0
+ ],
+ [
+ 84.482880759856144,
+ 27.237507550486747,
+ 500.0
+ ],
+ [
+ 84.505333243823017,
+ 27.313559900985918,
+ 500.0
+ ],
+ [
+ 84.542267335659957,
+ 27.384964643882121,
+ 500.0
+ ],
+ [
+ 84.592581863838319,
+ 27.449541539819233,
+ 500.0
+ ],
+ [
+ 84.654759548452986,
+ 27.505315251648188,
+ 500.0
+ ],
+ [
+ 84.726911620925307,
+ 27.550576965333761,
+ 500.0
+ ],
+ [
+ 84.806835086190745,
+ 27.583938045235378,
+ 500.0
+ ],
+ [
+ 84.892080922225375,
+ 27.604373877341022,
+ 500.0
+ ],
+ [
+ 84.980031,
+ 27.611256359442539,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287739,
+ "name": "Simara Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.1599996120739",
+ "lng": "84.980001929506",
+ "radius": 3657,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 84.966165883200006,
+ 27.129502108,
+ 0.0
+ ],
+ [
+ 84.981997167599999,
+ 27.192840667799999,
+ 0.0
+ ],
+ [
+ 84.993840483499994,
+ 27.1904975727,
+ 0.0
+ ],
+ [
+ 84.978002427899995,
+ 27.127158789,
+ 0.0
+ ],
+ [
+ 84.966165883200006,
+ 27.129502108,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287739,
+ "name": "Simara Airport",
+ "country": "NP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "27.2086105808718",
+ "lng": "84.9921558712111",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 84.981997167599999,
+ 27.192840667799999,
+ 60.0
+ ],
+ [
+ 84.984590634,
+ 27.2254944558,
+ 60.0
+ ],
+ [
+ 85.007056618199996,
+ 27.2210496975,
+ 60.0
+ ],
+ [
+ 84.993840483499994,
+ 27.1904975727,
+ 60.0
+ ],
+ [
+ 84.981997167599999,
+ 27.192840667799999,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287739,
+ "name": "Simara Airport",
+ "country": "NP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "27.1113884534968",
+ "lng": "84.9678503328899",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 84.952963461099998,
+ 27.098948996,
+ 60.0
+ ],
+ [
+ 84.966165883200006,
+ 27.129502108,
+ 60.0
+ ],
+ [
+ 84.978002427899995,
+ 27.127158789,
+ 60.0
+ ],
+ [
+ 84.9754112225,
+ 27.094505002399998,
+ 60.0
+ ],
+ [
+ 84.952963461099998,
+ 27.098948996,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287739,
+ "name": "Simara Airport",
+ "country": "NP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "27.2624577431623",
+ "lng": "85.005631677895",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 84.984590634,
+ 27.2254944558,
+ 150.0
+ ],
+ [
+ 84.990647976899993,
+ 27.301686441699999,
+ 150.0
+ ],
+ [
+ 85.037922490900002,
+ 27.2923331597,
+ 150.0
+ ],
+ [
+ 85.007056618199996,
+ 27.2210496975,
+ 150.0
+ ],
+ [
+ 84.984590634,
+ 27.2254944558,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287739,
+ "name": "Simara Airport",
+ "country": "NP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "27.0575386935599",
+ "lng": "84.9544018370587",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 84.922185799399998,
+ 27.0276536105,
+ 150.0
+ ],
+ [
+ 84.952963461099998,
+ 27.098948996,
+ 150.0
+ ],
+ [
+ 84.9754112225,
+ 27.094505002399998,
+ 150.0
+ ],
+ [
+ 84.969370946,
+ 27.018312649199999,
+ 150.0
+ ],
+ [
+ 84.922185799399998,
+ 27.0276536105,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282240,
+ "name": "Janakpur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "26.7087962772399",
+ "lng": "85.9223943973482",
+ "radius": 3551,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.887233725,
+ 26.714575396600001,
+ 0.0
+ ],
+ [
+ 85.957700184700002,
+ 26.7138194238,
+ 0.0
+ ],
+ [
+ 85.957555587499996,
+ 26.703028337599999,
+ 0.0
+ ],
+ [
+ 85.887088172800006,
+ 26.703784320600001,
+ 0.0
+ ],
+ [
+ 85.887233725,
+ 26.714575396600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282240,
+ "name": "Janakpur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "26.7082148241892",
+ "lng": "85.9770551814841",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.957700184700002,
+ 26.7138194238,
+ 60.0
+ ],
+ [
+ 85.994008013,
+ 26.718265511799999,
+ 60.0
+ ],
+ [
+ 85.9937272417,
+ 26.697798029699999,
+ 60.0
+ ],
+ [
+ 85.957555587499996,
+ 26.703028337599999,
+ 60.0
+ ],
+ [
+ 85.957700184700002,
+ 26.7138194238,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282240,
+ "name": "Janakpur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "26.7093876407127",
+ "lng": "85.8677334752107",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.851055543900003,
+ 26.719799086199998,
+ 60.0
+ ],
+ [
+ 85.887233725,
+ 26.714575396600001,
+ 60.0
+ ],
+ [
+ 85.887088172800006,
+ 26.703784320600001,
+ 60.0
+ ],
+ [
+ 85.850785987600005,
+ 26.699331557499999,
+ 60.0
+ ],
+ [
+ 85.851055543900003,
+ 26.719799086199998,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282240,
+ "name": "Janakpur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "26.7075327862179",
+ "lng": "86.0388034199571",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.994008013,
+ 26.718265511799999,
+ 150.0
+ ],
+ [
+ 86.078737289200006,
+ 26.728603776700002,
+ 150.0
+ ],
+ [
+ 86.078114833699999,
+ 26.685558341099998,
+ 150.0
+ ],
+ [
+ 85.9937272417,
+ 26.697798029699999,
+ 150.0
+ ],
+ [
+ 85.994008013,
+ 26.718265511799999,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282240,
+ "name": "Janakpur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "26.7100305027333",
+ "lng": "85.8059837253841",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.766626893099996,
+ 26.7319520086,
+ 150.0
+ ],
+ [
+ 85.851055543900003,
+ 26.719799086199998,
+ 150.0
+ ],
+ [
+ 85.850785987600005,
+ 26.699331557499999,
+ 150.0
+ ],
+ [
+ 85.766091944199999,
+ 26.6889058796,
+ 150.0
+ ],
+ [
+ 85.766626893099996,
+ 26.7319520086,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282241,
+ "name": "Janakpur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "26.708806781478",
+ "lng": "85.9223942221277",
+ "radius": 4497,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 85.917846325900001,
+ 26.7448282525,
+ 0.0
+ ],
+ [
+ 85.936274237700005,
+ 26.743844426700001,
+ 0.0
+ ],
+ [
+ 85.9442512026,
+ 26.741434317500001,
+ 0.0
+ ],
+ [
+ 85.957680860799996,
+ 26.7324955389,
+ 0.0
+ ],
+ [
+ 85.965876439300004,
+ 26.719450628800001,
+ 0.0
+ ],
+ [
+ 85.967525608200006,
+ 26.712075943599999,
+ 0.0
+ ],
+ [
+ 85.967422168599995,
+ 26.704556135400001,
+ 0.0
+ ],
+ [
+ 85.965570982700001,
+ 26.697219851900002,
+ 0.0
+ ],
+ [
+ 85.957022978,
+ 26.684358039,
+ 0.0
+ ],
+ [
+ 85.9433608298,
+ 26.675713437599999,
+ 0.0
+ ],
+ [
+ 85.926946159899998,
+ 26.672779711800001,
+ 0.0
+ ],
+ [
+ 85.908517401200001,
+ 26.673763589099998,
+ 0.0
+ ],
+ [
+ 85.900544824799994,
+ 26.676172772600001,
+ 0.0
+ ],
+ [
+ 85.887118828400006,
+ 26.6851079787,
+ 0.0
+ ],
+ [
+ 85.8789188967,
+ 26.698149465299998,
+ 0.0
+ ],
+ [
+ 85.877265432900003,
+ 26.705523347,
+ 0.0
+ ],
+ [
+ 85.877364185399998,
+ 26.713043205599998,
+ 0.0
+ ],
+ [
+ 85.87921118,
+ 26.720380383599998,
+ 0.0
+ ],
+ [
+ 85.887755263399995,
+ 26.7332457087,
+ 0.0
+ ],
+ [
+ 85.9014215487,
+ 26.741893799,
+ 0.0
+ ],
+ [
+ 85.917846325900001,
+ 26.7448282525,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283322,
+ "name": "Lamidanda Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "27.252675",
+ "lng": "86.672584",
+ "radius": 314,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 86.672584,
+ 27.255508742419384,
+ 0.0
+ ],
+ [
+ 86.673134598198189,
+ 27.255465690430526,
+ 0.0
+ ],
+ [
+ 86.673668465508811,
+ 27.255337842672986,
+ 0.0
+ ],
+ [
+ 86.674169379553419,
+ 27.25512908401301,
+ 0.0
+ ],
+ [
+ 86.674622119502999,
+ 27.254845757900974,
+ 0.0
+ ],
+ [
+ 86.675012928652748,
+ 27.254496473577667,
+ 0.0
+ ],
+ [
+ 86.675329932464521,
+ 27.254091844424114,
+ 0.0
+ ],
+ [
+ 86.675563499368636,
+ 27.253644165412609,
+ 0.0
+ ],
+ [
+ 86.675706533362273,
+ 27.253167039467407,
+ 0.0
+ ],
+ [
+ 86.675754689520275,
+ 27.252674964095672,
+ 0.0
+ ],
+ [
+ 86.675706505881962,
+ 27.252182890854638,
+ 0.0
+ ],
+ [
+ 86.675563447722524,
+ 27.251705771044545,
+ 0.0
+ ],
+ [
+ 86.67532986288191,
+ 27.251258101432541,
+ 0.0
+ ],
+ [
+ 86.675012849526325,
+ 27.250853483809205,
+ 0.0
+ ],
+ [
+ 86.674622040376576,
+ 27.250504211756084,
+ 0.0
+ ],
+ [
+ 86.674169309970821,
+ 27.250220897174252,
+ 0.0
+ ],
+ [
+ 86.673668413862714,
+ 27.250012147913797,
+ 0.0
+ ],
+ [
+ 86.673134570717878,
+ 27.249884306291356,
+ 0.0
+ ],
+ [
+ 86.672584,
+ 27.249841256433196,
+ 0.0
+ ],
+ [
+ 86.672033429282124,
+ 27.249884306291356,
+ 0.0
+ ],
+ [
+ 86.671499586137287,
+ 27.250012147913797,
+ 0.0
+ ],
+ [
+ 86.67099869002918,
+ 27.250220897174252,
+ 0.0
+ ],
+ [
+ 86.670545959623425,
+ 27.250504211756084,
+ 0.0
+ ],
+ [
+ 86.670155150473676,
+ 27.250853483809205,
+ 0.0
+ ],
+ [
+ 86.669838137118091,
+ 27.251258101432541,
+ 0.0
+ ],
+ [
+ 86.669604552277477,
+ 27.251705771044545,
+ 0.0
+ ],
+ [
+ 86.669461494118039,
+ 27.252182890854638,
+ 0.0
+ ],
+ [
+ 86.669413310479726,
+ 27.252674964095672,
+ 0.0
+ ],
+ [
+ 86.669461466637728,
+ 27.253167039467407,
+ 0.0
+ ],
+ [
+ 86.669604500631365,
+ 27.253644165412609,
+ 0.0
+ ],
+ [
+ 86.66983806753548,
+ 27.254091844424114,
+ 0.0
+ ],
+ [
+ 86.670155071347253,
+ 27.254496473577667,
+ 0.0
+ ],
+ [
+ 86.670545880497002,
+ 27.254845757900974,
+ 0.0
+ ],
+ [
+ 86.670998620446582,
+ 27.25512908401301,
+ 0.0
+ ],
+ [
+ 86.67149953449119,
+ 27.255337842672986,
+ 0.0
+ ],
+ [
+ 86.672033401801812,
+ 27.255465690430526,
+ 0.0
+ ],
+ [
+ 86.672584,
+ 27.255508742419384,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282734,
+ "name": "Bhadrapur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "26.5708346771793",
+ "lng": "88.0795834973242",
+ "radius": 4595,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.081139349,
+ 26.6071800906,
+ 0.0
+ ],
+ [
+ 88.101027063299995,
+ 26.6030183779,
+ 0.0
+ ],
+ [
+ 88.108403731699994,
+ 26.599405712399999,
+ 0.0
+ ],
+ [
+ 88.119873101699994,
+ 26.588516800099999,
+ 0.0
+ ],
+ [
+ 88.125396309600006,
+ 26.574397495,
+ 0.0
+ ],
+ [
+ 88.125584177299999,
+ 26.566878996300002,
+ 0.0
+ ],
+ [
+ 88.124020308200002,
+ 26.559489852799999,
+ 0.0
+ ],
+ [
+ 88.120773366600005,
+ 26.55255295,
+ 0.0
+ ],
+ [
+ 88.109866071100001,
+ 26.541215093,
+ 0.0
+ ],
+ [
+ 88.0947486333,
+ 26.534824734400001,
+ 0.0
+ ],
+ [
+ 88.08641090499999,
+ 26.533869698699998,
+ 0.0
+ ],
+ [
+ 88.066200896599995,
+ 26.536485797200001,
+ 0.0
+ ],
+ [
+ 88.050775158500002,
+ 26.5422567972,
+ 0.0
+ ],
+ [
+ 88.039304683699996,
+ 26.553140874699999,
+ 0.0
+ ],
+ [
+ 88.033772967399997,
+ 26.5672571938,
+ 0.0
+ ],
+ [
+ 88.033579646500002,
+ 26.574775581899999,
+ 0.0
+ ],
+ [
+ 88.035138453200005,
+ 26.582165616200001,
+ 0.0
+ ],
+ [
+ 88.038381576199995,
+ 26.589104261700001,
+ 0.0
+ ],
+ [
+ 88.049287219,
+ 26.600446897699999,
+ 0.0
+ ],
+ [
+ 88.064411269,
+ 26.606841134,
+ 0.0
+ ],
+ [
+ 88.081139349,
+ 26.6071800906,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008900,
+ "name": "Bhadrapur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.570822",
+ "lng": "88.079578",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.079578,
+ 27.022084194494379,
+ 500.0
+ ],
+ [
+ 88.167064782082633,
+ 27.01520182550593,
+ 500.0
+ ],
+ [
+ 88.251862363727867,
+ 26.994766266557907,
+ 500.0
+ ],
+ [
+ 88.331367080942286,
+ 26.961405431113302,
+ 500.0
+ ],
+ [
+ 88.403143256905707,
+ 26.916143649975929,
+ 500.0
+ ],
+ [
+ 88.464999640709564,
+ 26.860369223798045,
+ 500.0
+ ],
+ [
+ 88.515057211964915,
+ 26.795790631480486,
+ 500.0
+ ],
+ [
+ 88.551806150715322,
+ 26.724382928688247,
+ 500.0
+ ],
+ [
+ 88.574150275307048,
+ 26.648326175854116,
+ 500.0
+ ],
+ [
+ 88.581437796332523,
+ 26.569937957054435,
+ 500.0
+ ],
+ [
+ 88.573477784442147,
+ 26.49160218697299,
+ 500.0
+ ],
+ [
+ 88.550542271181371,
+ 26.415696455365445,
+ 500.0
+ ],
+ [
+ 88.513354370770074,
+ 26.344520133860115,
+ 500.0
+ ],
+ [
+ 88.463063211987404,
+ 26.280225378236029,
+ 500.0
+ ],
+ [
+ 88.401206797148632,
+ 26.224753011447007,
+ 500.0
+ ],
+ [
+ 88.329664161164317,
+ 26.179775079573922,
+ 500.0
+ ],
+ [
+ 88.250598394832465,
+ 26.146645644675861,
+ 500.0
+ ],
+ [
+ 88.166392232891184,
+ 26.126361123891044,
+ 500.0
+ ],
+ [
+ 88.079578,
+ 26.119531210309631,
+ 500.0
+ ],
+ [
+ 87.992763767108812,
+ 26.126361123891044,
+ 500.0
+ ],
+ [
+ 87.90855760516753,
+ 26.146645644675861,
+ 500.0
+ ],
+ [
+ 87.829491838835679,
+ 26.179775079573922,
+ 500.0
+ ],
+ [
+ 87.757949202851364,
+ 26.224753011447007,
+ 500.0
+ ],
+ [
+ 87.696092788012592,
+ 26.280225378236029,
+ 500.0
+ ],
+ [
+ 87.645801629229922,
+ 26.344520133860115,
+ 500.0
+ ],
+ [
+ 87.608613728818625,
+ 26.415696455365445,
+ 500.0
+ ],
+ [
+ 87.585678215557849,
+ 26.49160218697299,
+ 500.0
+ ],
+ [
+ 87.577718203667473,
+ 26.569937957054435,
+ 500.0
+ ],
+ [
+ 87.585005724692948,
+ 26.648326175854116,
+ 500.0
+ ],
+ [
+ 87.607349849284674,
+ 26.724382928688247,
+ 500.0
+ ],
+ [
+ 87.64409878803508,
+ 26.795790631480486,
+ 500.0
+ ],
+ [
+ 87.694156359290432,
+ 26.860369223798045,
+ 500.0
+ ],
+ [
+ 87.756012743094288,
+ 26.916143649975929,
+ 500.0
+ ],
+ [
+ 87.82778891905771,
+ 26.961405431113302,
+ 500.0
+ ],
+ [
+ 87.907293636272129,
+ 26.994766266557907,
+ 500.0
+ ],
+ [
+ 87.992091217917363,
+ 27.01520182550593,
+ 500.0
+ ],
+ [
+ 88.079578,
+ 27.022084194494379,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282855,
+ "name": "Biratnagar Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "26.4823327977031",
+ "lng": "87.2636666572911",
+ "radius": 4743,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 87.257166826,
+ 26.518461727,
+ 0.0
+ ],
+ [
+ 87.280496595399995,
+ 26.517157086899999,
+ 0.0
+ ],
+ [
+ 87.2884226181,
+ 26.514655985899999,
+ 0.0
+ ],
+ [
+ 87.295593842399995,
+ 26.5107345933,
+ 0.0
+ ],
+ [
+ 87.306464440200003,
+ 26.4993716002,
+ 0.0
+ ],
+ [
+ 87.309688819,
+ 26.492426909399999,
+ 0.0
+ ],
+ [
+ 87.311229151099994,
+ 26.485033978299999,
+ 0.0
+ ],
+ [
+ 87.311018432,
+ 26.477515967900001,
+ 0.0
+ ],
+ [
+ 87.305458102599999,
+ 26.463410016800001,
+ 0.0
+ ],
+ [
+ 87.293971205899993,
+ 26.452547401,
+ 0.0
+ ],
+ [
+ 87.278544065600002,
+ 26.446805249400001,
+ 0.0
+ ],
+ [
+ 87.246838430899999,
+ 26.447509818699999,
+ 0.0
+ ],
+ [
+ 87.231748323399998,
+ 26.4539301308,
+ 0.0
+ ],
+ [
+ 87.220877406499994,
+ 26.465289586600001,
+ 0.0
+ ],
+ [
+ 87.217650117399998,
+ 26.472232911,
+ 0.0
+ ],
+ [
+ 87.216105741800007,
+ 26.479625137500001,
+ 0.0
+ ],
+ [
+ 87.216312090700001,
+ 26.4871432451,
+ 0.0
+ ],
+ [
+ 87.221866066800004,
+ 26.5012515632,
+ 0.0
+ ],
+ [
+ 87.233353662400006,
+ 26.512117708,
+ 0.0
+ ],
+ [
+ 87.240733648499997,
+ 26.515715740600001,
+ 0.0
+ ],
+ [
+ 87.257166826,
+ 26.518461727,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010768,
+ "name": "Biratnagar Airport",
+ "country": "NP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.482195",
+ "lng": "87.263316",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 87.263316,
+ 26.933462836720139,
+ 500.0
+ ],
+ [
+ 87.35073431367519,
+ 26.926580484863546,
+ 500.0
+ ],
+ [
+ 87.435465650448734,
+ 26.906144967412672,
+ 500.0
+ ],
+ [
+ 87.514908484604476,
+ 26.87278416959974,
+ 500.0
+ ],
+ [
+ 87.586629111926186,
+ 26.827522379864625,
+ 500.0
+ ],
+ [
+ 87.64843801725651,
+ 26.771747848741626,
+ 500.0
+ ],
+ [
+ 87.698457620707927,
+ 26.707169004977246,
+ 500.0
+ ],
+ [
+ 87.73517920438141,
+ 26.635760862088123,
+ 500.0
+ ],
+ [
+ 87.757507323399125,
+ 26.559703453678534,
+ 500.0
+ ],
+ [
+ 87.764790549263822,
+ 26.481314357944591,
+ 500.0
+ ],
+ [
+ 87.756837942125486,
+ 26.402977507840212,
+ 500.0
+ ],
+ [
+ 87.733921169039931,
+ 26.327070535879557,
+ 500.0
+ ],
+ [
+ 87.696762653522114,
+ 26.255892878325596,
+ 500.0
+ ],
+ [
+ 87.646510542735982,
+ 26.191596772173401,
+ 500.0
+ ],
+ [
+ 87.584701606593129,
+ 26.136123130780529,
+ 500.0
+ ],
+ [
+ 87.513213439398626,
+ 26.091144091151619,
+ 500.0
+ ],
+ [
+ 87.43420752638616,
+ 26.058013797815821,
+ 500.0
+ ],
+ [
+ 87.350064874492944,
+ 26.037728733647072,
+ 500.0
+ ],
+ [
+ 87.263316,
+ 26.03089863406797,
+ 500.0
+ ],
+ [
+ 87.176567125507063,
+ 26.037728733647072,
+ 500.0
+ ],
+ [
+ 87.092424473613846,
+ 26.058013797815821,
+ 500.0
+ ],
+ [
+ 87.01341856060138,
+ 26.091144091151619,
+ 500.0
+ ],
+ [
+ 86.941930393406878,
+ 26.136123130780529,
+ 500.0
+ ],
+ [
+ 86.880121457264025,
+ 26.191596772173401,
+ 500.0
+ ],
+ [
+ 86.829869346477892,
+ 26.255892878325596,
+ 500.0
+ ],
+ [
+ 86.792710830960075,
+ 26.327070535879557,
+ 500.0
+ ],
+ [
+ 86.76979405787452,
+ 26.402977507840212,
+ 500.0
+ ],
+ [
+ 86.761841450736185,
+ 26.481314357944591,
+ 500.0
+ ],
+ [
+ 86.769124676600882,
+ 26.559703453678534,
+ 500.0
+ ],
+ [
+ 86.791452795618596,
+ 26.635760862088123,
+ 500.0
+ ],
+ [
+ 86.828174379292079,
+ 26.707169004977246,
+ 500.0
+ ],
+ [
+ 86.878193982743497,
+ 26.771747848741626,
+ 500.0
+ ],
+ [
+ 86.94000288807382,
+ 26.827522379864625,
+ 500.0
+ ],
+ [
+ 87.011723515395531,
+ 26.87278416959974,
+ 500.0
+ ],
+ [
+ 87.091166349551273,
+ 26.906144967412672,
+ 500.0
+ ],
+ [
+ 87.175897686324817,
+ 26.926580484863546,
+ 500.0
+ ],
+ [
+ 87.263316,
+ 26.933462836720139,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282854,
+ "name": "Biratnagar Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "26.4823248459109",
+ "lng": "87.2636664366839",
+ "radius": 3794,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 87.22618332499999,
+ 26.488562296600001,
+ 0.0
+ ],
+ [
+ 87.301448921399995,
+ 26.486889728,
+ 0.0
+ ],
+ [
+ 87.301150377200003,
+ 26.4761011776,
+ 0.0
+ ],
+ [
+ 87.225883369399995,
+ 26.477773777500001,
+ 0.0
+ ],
+ [
+ 87.22618332499999,
+ 26.488562296600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282854,
+ "name": "Biratnagar Airport",
+ "country": "NP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "26.4810643923008",
+ "lng": "87.3206838687126",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 87.301448921399995,
+ 26.486889728,
+ 60.0
+ ],
+ [
+ 87.337745320500005,
+ 26.490920556300001,
+ 60.0
+ ],
+ [
+ 87.337172638499993,
+ 26.470457918400001,
+ 60.0
+ ],
+ [
+ 87.301150377200003,
+ 26.4761011776,
+ 60.0
+ ],
+ [
+ 87.301448921399995,
+ 26.486889728,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282854,
+ "name": "Biratnagar Airport",
+ "country": "NP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "26.4835985052406",
+ "lng": "87.2066487636258",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 87.190154362200005,
+ 26.494200279200001,
+ 60.0
+ ],
+ [
+ 87.22618332499999,
+ 26.488562296600001,
+ 60.0
+ ],
+ [
+ 87.225883369399995,
+ 26.477773777500001,
+ 60.0
+ ],
+ [
+ 87.189591866900003,
+ 26.473737565499999,
+ 60.0
+ ],
+ [
+ 87.190154362200005,
+ 26.494200279200001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282854,
+ "name": "Biratnagar Airport",
+ "country": "NP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "26.4796769068307",
+ "lng": "87.3822947011461",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 87.337745320500005,
+ 26.490920556300001,
+ 150.0
+ ],
+ [
+ 87.422446796499997,
+ 26.500290117799999,
+ 150.0
+ ],
+ [
+ 87.421210822700004,
+ 26.457255180499999,
+ 150.0
+ ],
+ [
+ 87.337172638499993,
+ 26.470457918400001,
+ 150.0
+ ],
+ [
+ 87.337745320500005,
+ 26.490920556300001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282854,
+ "name": "Biratnagar Airport",
+ "country": "NP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "26.4849493445396",
+ "lng": "87.1450348450811",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 87.106073055600007,
+ 26.5073203862,
+ 150.0
+ ],
+ [
+ 87.190154362200005,
+ 26.494200279200001,
+ 150.0
+ ],
+ [
+ 87.189591866900003,
+ 26.473737565499999,
+ 150.0
+ ],
+ [
+ 87.1049216169,
+ 26.464284071600002,
+ 150.0
+ ],
+ [
+ 87.106073055600007,
+ 26.5073203862,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284829,
+ "name": "Rajbiraj Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "26.509472",
+ "lng": "86.737551",
+ "radius": 972,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 86.737551,
+ 26.518244886210443,
+ 0.0
+ ],
+ [
+ 86.739244372873074,
+ 26.51811159638795,
+ 0.0
+ ],
+ [
+ 86.740886282034452,
+ 26.517715777756653,
+ 0.0
+ ],
+ [
+ 86.742426828850981,
+ 26.517069459634762,
+ 0.0
+ ],
+ [
+ 86.743819197126015,
+ 26.516192284007676,
+ 0.0
+ ],
+ [
+ 86.745021076485898,
+ 26.515110908241176,
+ 0.0
+ ],
+ [
+ 86.745995948437766,
+ 26.513858194528236,
+ 0.0
+ ],
+ [
+ 86.746714195964486,
+ 26.512472210768067,
+ 0.0
+ ],
+ [
+ 86.747154002942935,
+ 26.510995073309999,
+ 0.0
+ ],
+ [
+ 86.747302016114688,
+ 26.509471666795069,
+ 0.0
+ ],
+ [
+ 86.747153749605019,
+ 26.507948280049515,
+ 0.0
+ ],
+ [
+ 86.746713719844934,
+ 26.506471199515083,
+ 0.0
+ ],
+ [
+ 86.745995306963607,
+ 26.505085302966993,
+ 0.0
+ ],
+ [
+ 86.745020347028415,
+ 26.503832696235506,
+ 0.0
+ ],
+ [
+ 86.743818467668518,
+ 26.502751434316291,
+ 0.0
+ ],
+ [
+ 86.742426187376822,
+ 26.501874365670659,
+ 0.0
+ ],
+ [
+ 86.740885805914871,
+ 26.501228134760847,
+ 0.0
+ ],
+ [
+ 86.739244119535144,
+ 26.500832373053189,
+ 0.0
+ ],
+ [
+ 86.737551,
+ 26.500699103000077,
+ 0.0
+ ],
+ [
+ 86.735857880464849,
+ 26.500832373053189,
+ 0.0
+ ],
+ [
+ 86.734216194085121,
+ 26.501228134760847,
+ 0.0
+ ],
+ [
+ 86.732675812623171,
+ 26.501874365670659,
+ 0.0
+ ],
+ [
+ 86.731283532331474,
+ 26.502751434316291,
+ 0.0
+ ],
+ [
+ 86.730081652971577,
+ 26.503832696235506,
+ 0.0
+ ],
+ [
+ 86.729106693036385,
+ 26.505085302966993,
+ 0.0
+ ],
+ [
+ 86.728388280155059,
+ 26.506471199515083,
+ 0.0
+ ],
+ [
+ 86.727948250394974,
+ 26.507948280049515,
+ 0.0
+ ],
+ [
+ 86.727799983885305,
+ 26.509471666795069,
+ 0.0
+ ],
+ [
+ 86.727947997057058,
+ 26.510995073309999,
+ 0.0
+ ],
+ [
+ 86.728387804035506,
+ 26.512472210768067,
+ 0.0
+ ],
+ [
+ 86.729106051562226,
+ 26.513858194528236,
+ 0.0
+ ],
+ [
+ 86.730080923514095,
+ 26.515110908241176,
+ 0.0
+ ],
+ [
+ 86.731282802873977,
+ 26.516192284007676,
+ 0.0
+ ],
+ [
+ 86.732675171149012,
+ 26.517069459634762,
+ 0.0
+ ],
+ [
+ 86.73421571796554,
+ 26.517715777756653,
+ 0.0
+ ],
+ [
+ 86.735857627126919,
+ 26.51811159638795,
+ 0.0
+ ],
+ [
+ 86.737551,
+ 26.518244886210443,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282733,
+ "name": "Bhadrapur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "26.5708256062015",
+ "lng": "88.0795817262661",
+ "radius": 3648,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.045144952699999,
+ 26.582143287699999,
+ 0.0
+ ],
+ [
+ 88.116259770799999,
+ 26.570123862799999,
+ 0.0
+ ],
+ [
+ 88.114019890500003,
+ 26.559519592,
+ 0.0
+ ],
+ [
+ 88.04290374199999,
+ 26.571539202099999,
+ 0.0
+ ],
+ [
+ 88.045144952699999,
+ 26.582143287699999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282733,
+ "name": "Bhadrapur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "26.5615985018365",
+ "lng": "88.1342063386969",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.116259770799999,
+ 26.570123862799999,
+ 60.0
+ ],
+ [
+ 88.152833052800005,
+ 26.568863408199999,
+ 60.0
+ ],
+ [
+ 88.148578522799994,
+ 26.548750725600001,
+ 60.0
+ ],
+ [
+ 88.114019890500003,
+ 26.559519592,
+ 60.0
+ ],
+ [
+ 88.116259770799999,
+ 26.570123862799999,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282733,
+ "name": "Bhadrapur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "26.5800634900331",
+ "lng": "88.0249551487459",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.010574110199997,
+ 26.592906668,
+ 60.0
+ ],
+ [
+ 88.045144952699999,
+ 26.582143287699999,
+ 60.0
+ ],
+ [
+ 88.04290374199999,
+ 26.571539202099999,
+ 60.0
+ ],
+ [
+ 88.006329335299995,
+ 26.5727933386,
+ 60.0
+ ],
+ [
+ 88.010574110199997,
+ 26.592906668,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282733,
+ "name": "Bhadrapur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "26.5513368008799",
+ "lng": "88.194801185794",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.152833052800005,
+ 26.568863408199999,
+ 150.0
+ ],
+ [
+ 88.238167559499999,
+ 26.5658860305,
+ 150.0
+ ],
+ [
+ 88.229190080799995,
+ 26.523590975400001,
+ 150.0
+ ],
+ [
+ 88.148578522799994,
+ 26.548750725600001,
+ 150.0
+ ],
+ [
+ 88.152833052800005,
+ 26.568863408199999,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282733,
+ "name": "Bhadrapur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "26.5902883866776",
+ "lng": "87.9643375020729",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 87.9298835333,
+ 26.617988735200001,
+ 150.0
+ ],
+ [
+ 88.010574110199997,
+ 26.592906668,
+ 150.0
+ ],
+ [
+ 88.006329335299995,
+ 26.5727933386,
+ 150.0
+ ],
+ [
+ 87.920985960400003,
+ 26.5756833302,
+ 150.0
+ ],
+ [
+ 87.9298835333,
+ 26.617988735200001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282567,
+ "name": "Bagdogra Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "26.681416547519",
+ "lng": "88.3280877635344",
+ "radius": 5375,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.368745771700006,
+ 26.6927496594,
+ 0.0
+ ],
+ [
+ 88.366767958099999,
+ 26.6604531417,
+ 0.0
+ ],
+ [
+ 88.3594962632,
+ 26.6469803562,
+ 0.0
+ ],
+ [
+ 88.346723944100006,
+ 26.637314823400001,
+ 0.0
+ ],
+ [
+ 88.3306590336,
+ 26.633126690699999,
+ 0.0
+ ],
+ [
+ 88.314077175099996,
+ 26.635139518900001,
+ 0.0
+ ],
+ [
+ 88.299843093500002,
+ 26.643005572,
+ 0.0
+ ],
+ [
+ 88.290416863199994,
+ 26.655365745600001,
+ 0.0
+ ],
+ [
+ 88.2880576668,
+ 26.662584520799999,
+ 0.0
+ ],
+ [
+ 88.287428907,
+ 26.670072568799998,
+ 0.0
+ ],
+ [
+ 88.289378252800006,
+ 26.702347208700001,
+ 0.0
+ ],
+ [
+ 88.292213598800004,
+ 26.709428207399998,
+ 0.0
+ ],
+ [
+ 88.296635476299997,
+ 26.715827740400002,
+ 0.0
+ ],
+ [
+ 88.309405373,
+ 26.725505099399999,
+ 0.0
+ ],
+ [
+ 88.325479501100006,
+ 26.729704867399999,
+ 0.0
+ ],
+ [
+ 88.333895957500005,
+ 26.729481805799999,
+ 0.0
+ ],
+ [
+ 88.349662900799999,
+ 26.724438153200001,
+ 0.0
+ ],
+ [
+ 88.356323779799993,
+ 26.719838183699999,
+ 0.0
+ ],
+ [
+ 88.365757103,
+ 26.707479082500001,
+ 0.0
+ ],
+ [
+ 88.368117510499999,
+ 26.7002603808,
+ 0.0
+ ],
+ [
+ 88.368745771700006,
+ 26.6927496594,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288685,
+ "name": "Hashimara Air Force Station",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "26.7051137286523",
+ "lng": "89.3709298197435",
+ "radius": 5586,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.368547176800007,
+ 26.747792938300002,
+ 0.0
+ ],
+ [
+ 89.386108767699994,
+ 26.743309442,
+ 0.0
+ ],
+ [
+ 89.400903397700006,
+ 26.736296392,
+ 0.0
+ ],
+ [
+ 89.406756590699999,
+ 26.730890010500001,
+ 0.0
+ ],
+ [
+ 89.421422078899994,
+ 26.703379226399999,
+ 0.0
+ ],
+ [
+ 89.421927429199997,
+ 26.688427684200001,
+ 0.0
+ ],
+ [
+ 89.415583311399999,
+ 26.674585006499999,
+ 0.0
+ ],
+ [
+ 89.403488480099995,
+ 26.664243925899999,
+ 0.0
+ ],
+ [
+ 89.395908241499995,
+ 26.6609779787,
+ 0.0
+ ],
+ [
+ 89.379323086699998,
+ 26.658962149800001,
+ 0.0
+ ],
+ [
+ 89.344579509900001,
+ 26.667192599300002,
+ 0.0
+ ],
+ [
+ 89.329833373499994,
+ 26.674271788799999,
+ 0.0
+ ],
+ [
+ 89.319582166700002,
+ 26.686097686,
+ 0.0
+ ],
+ [
+ 89.315599046299994,
+ 26.700626578600001,
+ 0.0
+ ],
+ [
+ 89.3178072953,
+ 26.719415296400001,
+ 0.0
+ ],
+ [
+ 89.320118357699997,
+ 26.7266468282,
+ 0.0
+ ],
+ [
+ 89.329467992199994,
+ 26.739057516199999,
+ 0.0
+ ],
+ [
+ 89.343663403299999,
+ 26.746997705599998,
+ 0.0
+ ],
+ [
+ 89.351832776899997,
+ 26.748824157600001,
+ 0.0
+ ],
+ [
+ 89.368547176800007,
+ 26.747792938300002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010786,
+ "name": "Bagdogra Airport",
+ "country": "IN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.682009",
+ "lng": "88.329145",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.329145,
+ 27.133264097856042,
+ 500.0
+ ],
+ [
+ 88.416718127146154,
+ 27.126381707422723,
+ 500.0
+ ],
+ [
+ 88.50159925001482,
+ 27.105946096578631,
+ 500.0
+ ],
+ [
+ 88.58118200825551,
+ 27.07258521426176,
+ 500.0
+ ],
+ [
+ 88.653028237552633,
+ 27.027323444509051,
+ 500.0
+ ],
+ [
+ 88.714944498104003,
+ 26.971549150946128,
+ 500.0
+ ],
+ [
+ 88.765049952860267,
+ 26.906970875487346,
+ 500.0
+ ],
+ [
+ 88.801833391909753,
+ 26.835563726743693,
+ 500.0
+ ],
+ [
+ 88.824197704206284,
+ 26.759507798835145,
+ 500.0
+ ],
+ [
+ 88.831490644885918,
+ 26.681120683193928,
+ 500.0
+ ],
+ [
+ 88.823521297495802,
+ 26.602786271506158,
+ 500.0
+ ],
+ [
+ 88.800562152901648,
+ 26.526882099753642,
+ 500.0
+ ],
+ [
+ 88.763337196083228,
+ 26.455707458299948,
+ 500.0
+ ],
+ [
+ 88.712996793533407,
+ 26.391414400824491,
+ 500.0
+ ],
+ [
+ 88.651080501665803,
+ 26.335943636639978,
+ 500.0
+ ],
+ [
+ 88.579469172182982,
+ 26.290967097538367,
+ 500.0
+ ],
+ [
+ 88.500327920835204,
+ 26.257838741919642,
+ 500.0
+ ],
+ [
+ 88.416041661580408,
+ 26.237554904298875,
+ 500.0
+ ],
+ [
+ 88.329145,
+ 26.230725224559389,
+ 500.0
+ ],
+ [
+ 88.242248338419586,
+ 26.237554904298875,
+ 500.0
+ ],
+ [
+ 88.15796207916479,
+ 26.257838741919642,
+ 500.0
+ ],
+ [
+ 88.078820827817012,
+ 26.290967097538367,
+ 500.0
+ ],
+ [
+ 88.007209498334191,
+ 26.335943636639978,
+ 500.0
+ ],
+ [
+ 87.945293206466587,
+ 26.391414400824491,
+ 500.0
+ ],
+ [
+ 87.894952803916766,
+ 26.455707458299948,
+ 500.0
+ ],
+ [
+ 87.857727847098346,
+ 26.526882099753642,
+ 500.0
+ ],
+ [
+ 87.834768702504192,
+ 26.602786271506158,
+ 500.0
+ ],
+ [
+ 87.826799355114076,
+ 26.681120683193928,
+ 500.0
+ ],
+ [
+ 87.83409229579371,
+ 26.759507798835145,
+ 500.0
+ ],
+ [
+ 87.856456608090241,
+ 26.835563726743693,
+ 500.0
+ ],
+ [
+ 87.893240047139727,
+ 26.906970875487346,
+ 500.0
+ ],
+ [
+ 87.94334550189599,
+ 26.971549150946128,
+ 500.0
+ ],
+ [
+ 88.005261762447361,
+ 27.027323444509051,
+ 500.0
+ ],
+ [
+ 88.077107991744484,
+ 27.07258521426176,
+ 500.0
+ ],
+ [
+ 88.156690749985174,
+ 27.105946096578631,
+ 500.0
+ ],
+ [
+ 88.241571872853839,
+ 27.126381707422723,
+ 500.0
+ ],
+ [
+ 88.329145,
+ 27.133264097856042,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282566,
+ "name": "Bagdogra Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "26.681416746003",
+ "lng": "88.3280830933376",
+ "radius": 4422,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.335443509100003,
+ 26.720639033699999,
+ 0.0
+ ],
+ [
+ 88.3327961026,
+ 26.641870608400001,
+ 0.0
+ ],
+ [
+ 88.320727740099997,
+ 26.642194079199999,
+ 0.0
+ ],
+ [
+ 88.323366803599995,
+ 26.720962434,
+ 0.0
+ ],
+ [
+ 88.335443509100003,
+ 26.720639033699999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282566,
+ "name": "Bagdogra Airport",
+ "country": "IN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "26.6246841110471",
+ "lng": "88.3261799960999",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.3327961026,
+ 26.641870608400001,
+ 60.0
+ ],
+ [
+ 88.337120068700003,
+ 26.6093644828,
+ 60.0
+ ],
+ [
+ 88.314232991500006,
+ 26.609977929599999,
+ 60.0
+ ],
+ [
+ 88.320727740099997,
+ 26.642194079199999,
+ 60.0
+ ],
+ [
+ 88.3327961026,
+ 26.641870608400001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282566,
+ "name": "Bagdogra Airport",
+ "country": "IN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "26.7381484671894",
+ "lng": "88.329987526005",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.341946166200003,
+ 26.752854925600001,
+ 60.0
+ ],
+ [
+ 88.335443509100003,
+ 26.720639033699999,
+ 60.0
+ ],
+ [
+ 88.323366803599995,
+ 26.720962434,
+ 60.0
+ ],
+ [
+ 88.319037131100004,
+ 26.753468403300001,
+ 60.0
+ ],
+ [
+ 88.341946166200003,
+ 26.752854925600001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282566,
+ "name": "Bagdogra Airport",
+ "country": "IN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "26.5695439808377",
+ "lng": "88.32433154665",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.337120068700003,
+ 26.6093644828,
+ 150.0
+ ],
+ [
+ 88.347199775299998,
+ 26.533516348799999,
+ 150.0
+ ],
+ [
+ 88.299092791299998,
+ 26.5348057689,
+ 150.0
+ ],
+ [
+ 88.314232991500006,
+ 26.609977929599999,
+ 150.0
+ ],
+ [
+ 88.337120068700003,
+ 26.6093644828,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282566,
+ "name": "Bagdogra Airport",
+ "country": "IN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "26.7932877895671",
+ "lng": "88.3318397404837",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.357133384899996,
+ 26.828024184499998,
+ 150.0
+ ],
+ [
+ 88.341946166200003,
+ 26.752854925600001,
+ 150.0
+ ],
+ [
+ 88.319037131100004,
+ 26.753468403300001,
+ 150.0
+ ],
+ [
+ 88.308924919600003,
+ 26.829315152900001,
+ 150.0
+ ],
+ [
+ 88.357133384899996,
+ 26.828024184499998,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288684,
+ "name": "Hashimara Air Force Station",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "26.6982715820241",
+ "lng": "89.3690742998961",
+ "radius": 4410,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.328544057100004,
+ 26.714459156299998,
+ 0.0
+ ],
+ [
+ 89.412988244,
+ 26.6924648428,
+ 0.0
+ ],
+ [
+ 89.409608782899994,
+ 26.682103996199999,
+ 0.0
+ ],
+ [
+ 89.325161536899998,
+ 26.704098936400001,
+ 0.0
+ ],
+ [
+ 89.328544057100004,
+ 26.714459156299998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288684,
+ "name": "Hashimara Air Force Station",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "26.7109554902123",
+ "lng": "89.3662543634591",
+ "radius": 3953,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.330093581900002,
+ 26.725806699900001,
+ 0.0
+ ],
+ [
+ 89.405736565799998,
+ 26.70649536,
+ 0.0
+ ],
+ [
+ 89.402417869499999,
+ 26.696118741,
+ 0.0
+ ],
+ [
+ 89.326772722100003,
+ 26.715430489500001,
+ 0.0
+ ],
+ [
+ 89.330093581900002,
+ 26.725806699900001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288684,
+ "name": "Hashimara Air Force Station",
+ "country": "IN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "26.6874471136844",
+ "lng": "89.4243096885441",
+ "radius": 2809,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.405736565799998,
+ 26.70649536,
+ 60.0
+ ],
+ [
+ 89.442070584299998,
+ 26.7022487405,
+ 60.0
+ ],
+ [
+ 89.437965472703368,
+ 26.689425485845529,
+ 60.0
+ ],
+ [
+ 89.449292202699993,
+ 26.688047191399999,
+ 60.0
+ ],
+ [
+ 89.442876604199995,
+ 26.6683964522,
+ 60.0
+ ],
+ [
+ 89.409608782899994,
+ 26.682103996199999,
+ 60.0
+ ],
+ [
+ 89.412803710447747,
+ 26.691899094661203,
+ 60.0
+ ],
+ [
+ 89.412988244,
+ 26.6924648428,
+ 60.0
+ ],
+ [
+ 89.408594579137869,
+ 26.69360921573956,
+ 60.0
+ ],
+ [
+ 89.402417869499999,
+ 26.696118741,
+ 60.0
+ ],
+ [
+ 89.405736565799998,
+ 26.70649536,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288684,
+ "name": "Hashimara Air Force Station",
+ "country": "IN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "26.7205930841796",
+ "lng": "89.3091841563501",
+ "radius": 2425,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.296726697,
+ 26.7393536742,
+ 60.0
+ ],
+ [
+ 89.330093581900002,
+ 26.725806699900001,
+ 60.0
+ ],
+ [
+ 89.326772722100003,
+ 26.715430489500001,
+ 60.0
+ ],
+ [
+ 89.325953028211373,
+ 26.715526172293217,
+ 60.0
+ ],
+ [
+ 89.328544057100004,
+ 26.714459156299998,
+ 60.0
+ ],
+ [
+ 89.325161536899998,
+ 26.704098936400001,
+ 60.0
+ ],
+ [
+ 89.288852081599998,
+ 26.708514083600001,
+ 60.0
+ ],
+ [
+ 89.292416256483634,
+ 26.719440916612829,
+ 60.0
+ ],
+ [
+ 89.290433798099997,
+ 26.719672328800002,
+ 60.0
+ ],
+ [
+ 89.296726697,
+ 26.7393536742,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288684,
+ "name": "Hashimara Air Force Station",
+ "country": "IN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "26.6693207849702",
+ "lng": "89.4812818232646",
+ "radius": 5346,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.442070584299998,
+ 26.7022487405,
+ 150.0
+ ],
+ [
+ 89.526839405299995,
+ 26.6923039984,
+ 150.0
+ ],
+ [
+ 89.522601183132281,
+ 26.679094360642701,
+ 150.0
+ ],
+ [
+ 89.533990475799996,
+ 26.677703447700001,
+ 150.0
+ ],
+ [
+ 89.520470427700005,
+ 26.636382072499998,
+ 150.0
+ ],
+ [
+ 89.442876604199995,
+ 26.6683964522,
+ 150.0
+ ],
+ [
+ 89.449292202699993,
+ 26.688047191399999,
+ 150.0
+ ],
+ [
+ 89.437965472703368,
+ 26.689425485845529,
+ 150.0
+ ],
+ [
+ 89.442070584299998,
+ 26.7022487405,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288684,
+ "name": "Hashimara Air Force Station",
+ "country": "IN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "26.7361994978101",
+ "lng": "89.2499116240745",
+ "radius": 4943,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.218839719900004,
+ 26.7709328981,
+ 150.0
+ ],
+ [
+ 89.296726697,
+ 26.7393536742,
+ 150.0
+ ],
+ [
+ 89.290433798099997,
+ 26.719672328800002,
+ 150.0
+ ],
+ [
+ 89.292416256483634,
+ 26.719440916612829,
+ 150.0
+ ],
+ [
+ 89.288852081599998,
+ 26.708514083600001,
+ 150.0
+ ],
+ [
+ 89.20411909,
+ 26.7187801593,
+ 150.0
+ ],
+ [
+ 89.207546693075329,
+ 26.729311343251933,
+ 150.0
+ ],
+ [
+ 89.205632462599993,
+ 26.7295339508,
+ 150.0
+ ],
+ [
+ 89.218839719900004,
+ 26.7709328981,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008243,
+ "name": "Hashimara Air Force Station",
+ "country": "IN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.698448",
+ "lng": "89.369202",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.369202,
+ 27.14970204690659,
+ 500.0
+ ],
+ [
+ 89.456787935692461,
+ 27.142819653306987,
+ 500.0
+ ],
+ [
+ 89.541681451204965,
+ 27.122384034805027,
+ 500.0
+ ],
+ [
+ 89.621275786225368,
+ 27.089023145589216,
+ 500.0
+ ],
+ [
+ 89.693132407452921,
+ 27.043761377575127,
+ 500.0
+ ],
+ [
+ 89.755057550386681,
+ 26.987987103708353,
+ 500.0
+ ],
+ [
+ 89.805170108486436,
+ 26.923408875228603,
+ 500.0
+ ],
+ [
+ 89.841958665637804,
+ 26.852001808581502,
+ 500.0
+ ],
+ [
+ 89.864325972903956,
+ 26.775946002870548,
+ 500.0
+ ],
+ [
+ 89.871619717828537,
+ 26.697559050613595,
+ 500.0
+ ],
+ [
+ 89.863648985839419,
+ 26.619224840089338,
+ 500.0
+ ],
+ [
+ 89.840686335907179,
+ 26.54332089931674,
+ 500.0
+ ],
+ [
+ 89.803455882154765,
+ 26.472146506627617,
+ 500.0
+ ],
+ [
+ 89.753108174660937,
+ 26.407853700586106,
+ 500.0
+ ],
+ [
+ 89.691183000369108,
+ 26.35238317368178,
+ 500.0
+ ],
+ [
+ 89.619561480492322,
+ 26.307406840788119,
+ 500.0
+ ],
+ [
+ 89.540409031182435,
+ 26.274278644960525,
+ 500.0
+ ],
+ [
+ 89.45611088969406,
+ 26.253994908483605,
+ 500.0
+ ],
+ [
+ 89.369202,
+ 26.247165263364739,
+ 500.0
+ ],
+ [
+ 89.282293110305943,
+ 26.253994908483605,
+ 500.0
+ ],
+ [
+ 89.197994968817568,
+ 26.274278644960525,
+ 500.0
+ ],
+ [
+ 89.11884251950768,
+ 26.307406840788119,
+ 500.0
+ ],
+ [
+ 89.047220999630895,
+ 26.35238317368178,
+ 500.0
+ ],
+ [
+ 88.985295825339065,
+ 26.407853700586106,
+ 500.0
+ ],
+ [
+ 88.934948117845238,
+ 26.472146506627617,
+ 500.0
+ ],
+ [
+ 88.897717664092823,
+ 26.54332089931674,
+ 500.0
+ ],
+ [
+ 88.874755014160584,
+ 26.619224840089338,
+ 500.0
+ ],
+ [
+ 88.866784282171466,
+ 26.697559050613595,
+ 500.0
+ ],
+ [
+ 88.874078027096047,
+ 26.775946002870548,
+ 500.0
+ ],
+ [
+ 88.896445334362198,
+ 26.852001808581502,
+ 500.0
+ ],
+ [
+ 88.933233891513567,
+ 26.923408875228603,
+ 500.0
+ ],
+ [
+ 88.983346449613322,
+ 26.987987103708353,
+ 500.0
+ ],
+ [
+ 89.045271592547081,
+ 27.043761377575127,
+ 500.0
+ ],
+ [
+ 89.117128213774635,
+ 27.089023145589216,
+ 500.0
+ ],
+ [
+ 89.196722548795037,
+ 27.122384034805027,
+ 500.0
+ ],
+ [
+ 89.281616064307542,
+ 27.142819653306987,
+ 500.0
+ ],
+ [
+ 89.369202,
+ 27.14970204690659,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281982,
+ "name": "Gelephu Airport",
+ "country": "BT",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "26.8845932991074",
+ "lng": "90.464146045266",
+ "radius": 7436,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 90.4337486891,
+ 26.905357877699998,
+ 0.0
+ ],
+ [
+ 90.500290620599998,
+ 26.8733373114,
+ 0.0
+ ],
+ [
+ 90.534806258,
+ 26.862220575399999,
+ 0.0
+ ],
+ [
+ 90.523907704500004,
+ 26.844206797199998,
+ 0.0
+ ],
+ [
+ 90.494546889700004,
+ 26.863839298799999,
+ 0.0
+ ],
+ [
+ 90.428002212600006,
+ 26.895860403,
+ 0.0
+ ],
+ [
+ 90.393474212900003,
+ 26.9069719819,
+ 0.0
+ ],
+ [
+ 90.404369190899999,
+ 26.924987056900001,
+ 0.0
+ ],
+ [
+ 90.4337486891,
+ 26.905357877699998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286888,
+ "name": "Tezpur Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "26.7091611347679",
+ "lng": "92.7846726275356",
+ "radius": 4414,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 92.749572754300004,
+ 26.684812812899999,
+ 0.0
+ ],
+ [
+ 92.8111286388,
+ 26.741064097700001,
+ 0.0
+ ],
+ [
+ 92.819770220699994,
+ 26.733520711600001,
+ 0.0
+ ],
+ [
+ 92.758208788,
+ 26.677268256400001,
+ 0.0
+ ],
+ [
+ 92.749572754300004,
+ 26.684812812899999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286888,
+ "name": "Tezpur Airport",
+ "country": "IN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "26.7497033174942",
+ "lng": "92.8290347425087",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 92.8111286388,
+ 26.741064097700001,
+ 60.0
+ ],
+ [
+ 92.832599370899999,
+ 26.7675974203,
+ 60.0
+ ],
+ [
+ 92.848988298099997,
+ 26.753288458,
+ 60.0
+ ],
+ [
+ 92.819770220699994,
+ 26.733520711600001,
+ 60.0
+ ],
+ [
+ 92.8111286388,
+ 26.741064097700001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286888,
+ "name": "Tezpur Airport",
+ "country": "IN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "26.6686299127895",
+ "lng": "92.7403128832597",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 92.720373955300005,
+ 26.665043045299999,
+ 60.0
+ ],
+ [
+ 92.749572754300004,
+ 26.684812812899999,
+ 60.0
+ ],
+ [
+ 92.758208788,
+ 26.677268256400001,
+ 60.0
+ ],
+ [
+ 92.736755576299998,
+ 26.650734613699999,
+ 60.0
+ ],
+ [
+ 92.720373955300005,
+ 26.665043045299999,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286888,
+ "name": "Tezpur Airport",
+ "country": "IN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "26.7891424083141",
+ "lng": "92.8722347120239",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 92.832599370899999,
+ 26.7675974203,
+ 150.0
+ ],
+ [
+ 92.882736788,
+ 26.829495909599999,
+ 150.0
+ ],
+ [
+ 92.917203353600001,
+ 26.7993898878,
+ 150.0
+ ],
+ [
+ 92.848988298099997,
+ 26.753288458,
+ 150.0
+ ],
+ [
+ 92.832599370899999,
+ 26.7675974203,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286888,
+ "name": "Tezpur Airport",
+ "country": "IN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "26.6291749951709",
+ "lng": "92.6971758306099",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 92.652282759,
+ 26.6188904005,
+ 150.0
+ ],
+ [
+ 92.720373955300005,
+ 26.665043045299999,
+ 150.0
+ ],
+ [
+ 92.736755576299998,
+ 26.650734613699999,
+ 150.0
+ ],
+ [
+ 92.686736830300006,
+ 26.5888102722,
+ 150.0
+ ],
+ [
+ 92.652282759,
+ 26.6188904005,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286889,
+ "name": "Tezpur Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "26.7091637357916",
+ "lng": "92.7846696482646",
+ "radius": 5367,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 92.746201988600006,
+ 26.725478949599999,
+ 0.0
+ ],
+ [
+ 92.772001604099998,
+ 26.747937499799999,
+ 0.0
+ ],
+ [
+ 92.787568522499996,
+ 26.753461896899999,
+ 0.0
+ ],
+ [
+ 92.804306169499995,
+ 26.752852806500002,
+ 0.0
+ ],
+ [
+ 92.812202868300005,
+ 26.750238892799999,
+ 0.0
+ ],
+ [
+ 92.825340240399996,
+ 26.740959015400001,
+ 0.0
+ ],
+ [
+ 92.833113178100007,
+ 26.727709082499999,
+ 0.0
+ ],
+ [
+ 92.834524470299996,
+ 26.7202951033,
+ 0.0
+ ],
+ [
+ 92.834179112800001,
+ 26.712781057099999,
+ 0.0
+ ],
+ [
+ 92.832092540199994,
+ 26.705495331200002,
+ 0.0
+ ],
+ [
+ 92.8283562453,
+ 26.698756273400001,
+ 0.0
+ ],
+ [
+ 92.797296302800007,
+ 26.670380315799999,
+ 0.0
+ ],
+ [
+ 92.781735602300003,
+ 26.6648674783,
+ 0.0
+ ],
+ [
+ 92.765011278900005,
+ 26.665485209,
+ 0.0
+ ],
+ [
+ 92.750012604099993,
+ 26.672126789499998,
+ 0.0
+ ],
+ [
+ 92.743994897099995,
+ 26.677384295100001,
+ 0.0
+ ],
+ [
+ 92.736226224700005,
+ 26.690634617,
+ 0.0
+ ],
+ [
+ 92.734815167299999,
+ 26.698048576,
+ 0.0
+ ],
+ [
+ 92.7351602751,
+ 26.705562629700001,
+ 0.0
+ ],
+ [
+ 92.737246805799998,
+ 26.712848365399999,
+ 0.0
+ ],
+ [
+ 92.746201988600006,
+ 26.725478949599999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009704,
+ "name": "Tezpur Airport",
+ "country": "IN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.711101",
+ "lng": "92.783644",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 92.783644,
+ 27.162354237697507,
+ 500.0
+ ],
+ [
+ 92.871239801811214,
+ 27.155471841661569,
+ 500.0
+ ],
+ [
+ 92.956142863086725,
+ 27.135036217267967,
+ 500.0
+ ],
+ [
+ 93.035746115436837,
+ 27.101675322747433,
+ 500.0
+ ],
+ [
+ 93.107610741342612,
+ 27.056413556081154,
+ 500.0
+ ],
+ [
+ 93.169542726196298,
+ 27.000639297389863,
+ 500.0
+ ],
+ [
+ 93.219660755874301,
+ 26.936061105092499,
+ 500.0
+ ],
+ [
+ 93.256453255426678,
+ 26.86465410166614,
+ 500.0
+ ],
+ [
+ 93.278822869698672,
+ 26.788598390050563,
+ 500.0
+ ],
+ [
+ 93.286117234163868,
+ 26.710211563598904,
+ 500.0
+ ],
+ [
+ 93.278145435693276,
+ 26.631877507965907,
+ 500.0
+ ],
+ [
+ 93.255180085711487,
+ 26.555973745039431,
+ 500.0
+ ],
+ [
+ 93.217945397812784,
+ 26.484799543887576,
+ 500.0
+ ],
+ [
+ 93.167592063484562,
+ 26.420506931436861,
+ 500.0
+ ],
+ [
+ 93.105660047240619,
+ 26.365036587224445,
+ 500.0
+ ],
+ [
+ 93.034030677892346,
+ 26.320060413098091,
+ 500.0
+ ],
+ [
+ 92.954869602986847,
+ 26.286932340299309,
+ 500.0
+ ],
+ [
+ 92.870562308811401,
+ 26.266648681696431,
+ 500.0
+ ],
+ [
+ 92.783644,
+ 26.259819063233106,
+ 500.0
+ ],
+ [
+ 92.69672569118859,
+ 26.266648681696431,
+ 500.0
+ ],
+ [
+ 92.612418397013144,
+ 26.286932340299309,
+ 500.0
+ ],
+ [
+ 92.533257322107644,
+ 26.320060413098091,
+ 500.0
+ ],
+ [
+ 92.461627952759372,
+ 26.365036587224445,
+ 500.0
+ ],
+ [
+ 92.399695936515428,
+ 26.420506931436861,
+ 500.0
+ ],
+ [
+ 92.349342602187207,
+ 26.484799543887576,
+ 500.0
+ ],
+ [
+ 92.312107914288504,
+ 26.555973745039431,
+ 500.0
+ ],
+ [
+ 92.289142564306715,
+ 26.631877507965907,
+ 500.0
+ ],
+ [
+ 92.281170765836123,
+ 26.710211563598904,
+ 500.0
+ ],
+ [
+ 92.288465130301319,
+ 26.788598390050563,
+ 500.0
+ ],
+ [
+ 92.310834744573313,
+ 26.86465410166614,
+ 500.0
+ ],
+ [
+ 92.34762724412569,
+ 26.936061105092499,
+ 500.0
+ ],
+ [
+ 92.397745273803693,
+ 27.000639297389863,
+ 500.0
+ ],
+ [
+ 92.459677258657379,
+ 27.056413556081154,
+ 500.0
+ ],
+ [
+ 92.531541884563154,
+ 27.101675322747433,
+ 500.0
+ ],
+ [
+ 92.611145136913265,
+ 27.135036217267967,
+ 500.0
+ ],
+ [
+ 92.696048198188777,
+ 27.155471841661569,
+ 500.0
+ ],
+ [
+ 92.783644,
+ 27.162354237697507,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282283,
+ "name": "Jorhat Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "26.7314945794353",
+ "lng": "94.1755892300484",
+ "radius": 4384,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.140798442299996,
+ 26.7072294144,
+ 0.0
+ ],
+ [
+ 94.201703621500002,
+ 26.763285697400001,
+ 0.0
+ ],
+ [
+ 94.210377857200001,
+ 26.755770701199999,
+ 0.0
+ ],
+ [
+ 94.149467161,
+ 26.6997132732,
+ 0.0
+ ],
+ [
+ 94.140798442299996,
+ 26.7072294144,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282283,
+ "name": "Jorhat Airport",
+ "country": "IN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "26.7719835785025",
+ "lng": "94.2195775770108",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.201703621500002,
+ 26.763285697400001,
+ 60.0
+ ],
+ [
+ 94.223069272900005,
+ 26.789889248,
+ 60.0
+ ],
+ [
+ 94.239520168200002,
+ 26.775634132,
+ 60.0
+ ],
+ [
+ 94.210377857200001,
+ 26.755770701199999,
+ 60.0
+ ],
+ [
+ 94.201703621500002,
+ 26.763285697400001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282283,
+ "name": "Jorhat Airport",
+ "country": "IN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "26.6910162089423",
+ "lng": "94.1316033960684",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.111675447,
+ 26.687363879799999,
+ 60.0
+ ],
+ [
+ 94.140798442299996,
+ 26.7072294144,
+ 60.0
+ ],
+ [
+ 94.149467161,
+ 26.6997132732,
+ 60.0
+ ],
+ [
+ 94.128119028499995,
+ 26.6731093446,
+ 60.0
+ ],
+ [
+ 94.111675447,
+ 26.687363879799999,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282283,
+ "name": "Jorhat Airport",
+ "country": "IN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "26.8115640615912",
+ "lng": "94.2626234898812",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.223069272900005,
+ 26.789889248,
+ 150.0
+ ],
+ [
+ 94.272961451200004,
+ 26.851951718500001,
+ 150.0
+ ],
+ [
+ 94.307558562400004,
+ 26.821958932800001,
+ 150.0
+ ],
+ [
+ 94.239520168200002,
+ 26.775634132,
+ 150.0
+ ],
+ [
+ 94.223069272900005,
+ 26.789889248,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282283,
+ "name": "Jorhat Airport",
+ "country": "IN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "26.6514198668588",
+ "lng": "94.0886204613565",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.043761252199999,
+ 26.6409878857,
+ 150.0
+ ],
+ [
+ 94.111675447,
+ 26.687363879799999,
+ 150.0
+ ],
+ [
+ 94.128119028499995,
+ 26.6731093446,
+ 150.0
+ ],
+ [
+ 94.0783454173,
+ 26.611021118,
+ 150.0
+ ],
+ [
+ 94.043761252199999,
+ 26.6409878857,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010712,
+ "name": "Jorhat Airport",
+ "country": "IN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.73",
+ "lng": "94.175",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.175,
+ 27.181252028547245,
+ 500.0
+ ],
+ [
+ 94.262610550307642,
+ 27.174369628873499,
+ 500.0
+ ],
+ [
+ 94.347527881198062,
+ 27.153933995684014,
+ 500.0
+ ],
+ [
+ 94.42714446375345,
+ 27.12057309324879,
+ 500.0
+ ],
+ [
+ 94.499021055591371,
+ 27.075311328611129,
+ 500.0
+ ],
+ [
+ 94.560963268229884,
+ 27.019537092611504,
+ 500.0
+ ],
+ [
+ 94.611089477235353,
+ 26.954958954394545,
+ 500.0
+ ],
+ [
+ 94.64788787021628,
+ 26.883552045448035,
+ 500.0
+ ],
+ [
+ 94.670260933229997,
+ 26.807496474442605,
+ 500.0
+ ],
+ [
+ 94.677556223904233,
+ 26.729109835978445,
+ 500.0
+ ],
+ [
+ 94.669582831258154,
+ 26.650776011789041,
+ 500.0
+ ],
+ [
+ 94.646613445119101,
+ 26.574872514601079,
+ 500.0
+ ],
+ [
+ 94.609372427769813,
+ 26.503698599641279,
+ 500.0
+ ],
+ [
+ 94.559010682079162,
+ 26.439406276448086,
+ 500.0
+ ],
+ [
+ 94.497068438002202,
+ 26.383936205206417,
+ 500.0
+ ],
+ [
+ 94.425427334682894,
+ 26.338960268302383,
+ 500.0
+ ],
+ [
+ 94.346253365577425,
+ 26.305832379326521,
+ 500.0
+ ],
+ [
+ 94.261932389250816,
+ 26.285548837078483,
+ 500.0
+ ],
+ [
+ 94.175,
+ 26.278719258442273,
+ 500.0
+ ],
+ [
+ 94.088067610749178,
+ 26.285548837078483,
+ 500.0
+ ],
+ [
+ 94.003746634422569,
+ 26.305832379326521,
+ 500.0
+ ],
+ [
+ 93.9245726653171,
+ 26.338960268302383,
+ 500.0
+ ],
+ [
+ 93.852931561997792,
+ 26.383936205206417,
+ 500.0
+ ],
+ [
+ 93.790989317920832,
+ 26.439406276448086,
+ 500.0
+ ],
+ [
+ 93.740627572230181,
+ 26.503698599641279,
+ 500.0
+ ],
+ [
+ 93.703386554880893,
+ 26.574872514601079,
+ 500.0
+ ],
+ [
+ 93.68041716874184,
+ 26.650776011789041,
+ 500.0
+ ],
+ [
+ 93.672443776095761,
+ 26.729109835978445,
+ 500.0
+ ],
+ [
+ 93.679739066769997,
+ 26.807496474442605,
+ 500.0
+ ],
+ [
+ 93.702112129783714,
+ 26.883552045448035,
+ 500.0
+ ],
+ [
+ 93.738910522764641,
+ 26.954958954394545,
+ 500.0
+ ],
+ [
+ 93.789036731770111,
+ 27.019537092611504,
+ 500.0
+ ],
+ [
+ 93.850978944408624,
+ 27.075311328611129,
+ 500.0
+ ],
+ [
+ 93.922855536246544,
+ 27.12057309324879,
+ 500.0
+ ],
+ [
+ 94.002472118801933,
+ 27.153933995684014,
+ 500.0
+ ],
+ [
+ 94.087389449692353,
+ 27.174369628873499,
+ 500.0
+ ],
+ [
+ 94.175,
+ 27.181252028547245,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282284,
+ "name": "Jorhat Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "26.7314971611481",
+ "lng": "94.1755862505281",
+ "radius": 5337,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 94.137259658399998,
+ 26.747884208399999,
+ 0.0
+ ],
+ [
+ 94.156078063400003,
+ 26.7652078548,
+ 0.0
+ ],
+ [
+ 94.169986089800005,
+ 26.7735480714,
+ 0.0
+ ],
+ [
+ 94.186492314500001,
+ 26.776114843,
+ 0.0
+ ],
+ [
+ 94.194831327100005,
+ 26.775051957199999,
+ 0.0
+ ],
+ [
+ 94.202740273499998,
+ 26.7724639684,
+ 0.0
+ ],
+ [
+ 94.215918312599996,
+ 26.7632272534,
+ 0.0
+ ],
+ [
+ 94.223747228400001,
+ 26.750002909900001,
+ 0.0
+ ],
+ [
+ 94.225189281300004,
+ 26.7425936106,
+ 0.0
+ ],
+ [
+ 94.224874759599999,
+ 26.7350784821,
+ 0.0
+ ],
+ [
+ 94.219108456699999,
+ 26.7210346904,
+ 0.0
+ ],
+ [
+ 94.188590427299999,
+ 26.6929537135,
+ 0.0
+ ],
+ [
+ 94.173049421800002,
+ 26.687389830099999,
+ 0.0
+ ],
+ [
+ 94.156319371899997,
+ 26.6879526516,
+ 0.0
+ ],
+ [
+ 94.1412905352,
+ 26.694544945899999,
+ 0.0
+ ],
+ [
+ 94.135250063699999,
+ 26.699782659099998,
+ 0.0
+ ],
+ [
+ 94.127425414499996,
+ 26.713007385699999,
+ 0.0
+ ],
+ [
+ 94.125983587600004,
+ 26.7204166619,
+ 0.0
+ ],
+ [
+ 94.126297843299994,
+ 26.727931797899998,
+ 0.0
+ ],
+ [
+ 94.128354788,
+ 26.7352243349,
+ 0.0
+ ],
+ [
+ 94.137259658399998,
+ 26.747884208399999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3840,
+ "name": "Lijiang Airport",
+ "country": "CN",
+ "city": "Lijiang",
+ "height": 0,
+ "level": 2,
+ "lat": "26.6257668635011",
+ "lng": "100.236016067453",
+ "radius": 13076,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.20035287499999,
+ 26.612913773199999,
+ 0.0
+ ],
+ [
+ 100.155346126,
+ 26.532898168,
+ 0.0
+ ],
+ [
+ 100.227511088,
+ 26.515659550599999,
+ 0.0
+ ],
+ [
+ 100.244191794,
+ 26.600668660899998,
+ 0.0
+ ],
+ [
+ 100.27681851299999,
+ 26.608458197600001,
+ 0.0
+ ],
+ [
+ 100.29180463599999,
+ 26.618255442,
+ 0.0
+ ],
+ [
+ 100.310950515,
+ 26.646368144499998,
+ 0.0
+ ],
+ [
+ 100.3233489,
+ 26.686198893699999,
+ 0.0
+ ],
+ [
+ 100.322470235,
+ 26.7027785589,
+ 0.0
+ ],
+ [
+ 100.316817185,
+ 26.718589981,
+ 0.0
+ ],
+ [
+ 100.20035287499999,
+ 26.612913773199999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3840,
+ "name": "Lijiang Airport",
+ "country": "CN",
+ "city": "Lijiang",
+ "height": 0,
+ "level": 2,
+ "lat": "26.7214929278154",
+ "lng": "100.256564245075",
+ "radius": 13302,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.33468526199999,
+ 26.818693234600001,
+ 0.0
+ ],
+ [
+ 100.26249303199999,
+ 26.841011458600001,
+ 0.0
+ ],
+ [
+ 100.24581870199999,
+ 26.7560059268,
+ 0.0
+ ],
+ [
+ 100.213139541,
+ 26.748193820600001,
+ 0.0
+ ],
+ [
+ 100.198148802,
+ 26.738381364799999,
+ 0.0
+ ],
+ [
+ 100.18651538899999,
+ 26.725437312299999,
+ 0.0
+ ],
+ [
+ 100.170705458,
+ 26.685266820399999,
+ 0.0
+ ],
+ [
+ 100.169197173,
+ 26.652820181599999,
+ 0.0
+ ],
+ [
+ 100.175523054,
+ 26.6372146424,
+ 0.0
+ ],
+ [
+ 100.20035287499999,
+ 26.612913773199999,
+ 0.0
+ ],
+ [
+ 100.316817185,
+ 26.718589981,
+ 0.0
+ ],
+ [
+ 100.29302225399999,
+ 26.743721400599998,
+ 0.0
+ ],
+ [
+ 100.33468526199999,
+ 26.818693234600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3840,
+ "name": "Lijiang Airport",
+ "country": "CN",
+ "city": "Lijiang",
+ "height": 120,
+ "level": 2,
+ "lat": "26.6779079520704",
+ "lng": "100.245107896252",
+ "radius": 23626,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.21219596,
+ 26.888345509400001,
+ 120.0
+ ],
+ [
+ 100.404873437,
+ 26.835374355599999,
+ 120.0
+ ],
+ [
+ 100.277664705,
+ 26.467433795800002,
+ 120.0
+ ],
+ [
+ 100.085607944,
+ 26.520404950100001,
+ 120.0
+ ],
+ [
+ 100.21219596,
+ 26.888345509400001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001470,
+ "name": "Lijiang Airport",
+ "country": "CN",
+ "city": "Lijiang",
+ "height": 500,
+ "level": 2,
+ "lat": "26.676563",
+ "lng": "100.246664",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.246664,
+ 27.12781844592315,
+ 500.0
+ ],
+ [
+ 100.334232886275771,
+ 27.120936056539009,
+ 500.0
+ ],
+ [
+ 100.419109905979411,
+ 27.100500448232701,
+ 500.0
+ ],
+ [
+ 100.498688831187593,
+ 27.0671395682031,
+ 500.0
+ ],
+ [
+ 100.570531619755329,
+ 27.021877797877512,
+ 500.0
+ ],
+ [
+ 100.632444939387469,
+ 26.96610349779457,
+ 500.0
+ ],
+ [
+ 100.682548042261999,
+ 26.901525206779755,
+ 500.0
+ ],
+ [
+ 100.719329786739465,
+ 26.83011803084894,
+ 500.0
+ ],
+ [
+ 100.741693107427551,
+ 26.754062062471274,
+ 500.0
+ ],
+ [
+ 100.748985781840318,
+ 26.675674892719243,
+ 500.0
+ ],
+ [
+ 100.741016892900362,
+ 26.597340414407391,
+ 500.0
+ ],
+ [
+ 100.718058908922302,
+ 26.521436166154778,
+ 500.0
+ ],
+ [
+ 100.680835772125533,
+ 26.450261442309962,
+ 500.0
+ ],
+ [
+ 100.630497788217127,
+ 26.385968301558705,
+ 500.0
+ ],
+ [
+ 100.568584437282581,
+ 26.330497458785775,
+ 500.0
+ ],
+ [
+ 100.496976481790668,
+ 26.285520851386774,
+ 500.0
+ ],
+ [
+ 100.417838938030599,
+ 26.252392442844066,
+ 500.0
+ ],
+ [
+ 100.333556612919338,
+ 26.232108571723657,
+ 500.0
+ ],
+ [
+ 100.246664,
+ 26.22527888051755,
+ 500.0
+ ],
+ [
+ 100.159771387080653,
+ 26.232108571723657,
+ 500.0
+ ],
+ [
+ 100.075489061969392,
+ 26.252392442844066,
+ 500.0
+ ],
+ [
+ 99.996351518209323,
+ 26.285520851386774,
+ 500.0
+ ],
+ [
+ 99.92474356271741,
+ 26.330497458785775,
+ 500.0
+ ],
+ [
+ 99.862830211782864,
+ 26.385968301558705,
+ 500.0
+ ],
+ [
+ 99.812492227874458,
+ 26.450261442309962,
+ 500.0
+ ],
+ [
+ 99.775269091077689,
+ 26.521436166154778,
+ 500.0
+ ],
+ [
+ 99.752311107099629,
+ 26.597340414407391,
+ 500.0
+ ],
+ [
+ 99.744342218159673,
+ 26.675674892719243,
+ 500.0
+ ],
+ [
+ 99.75163489257244,
+ 26.754062062471274,
+ 500.0
+ ],
+ [
+ 99.773998213260526,
+ 26.83011803084894,
+ 500.0
+ ],
+ [
+ 99.810779957737992,
+ 26.901525206779755,
+ 500.0
+ ],
+ [
+ 99.860883060612522,
+ 26.96610349779457,
+ 500.0
+ ],
+ [
+ 99.922796380244662,
+ 27.021877797877512,
+ 500.0
+ ],
+ [
+ 99.994639168812398,
+ 27.0671395682031,
+ 500.0
+ ],
+ [
+ 100.07421809402058,
+ 27.100500448232701,
+ 500.0
+ ],
+ [
+ 100.15909511372422,
+ 27.120936056539009,
+ 500.0
+ ],
+ [
+ 100.246664,
+ 27.12781844592315,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32771,
+ "name": "保安营",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "26.4979938999408",
+ "lng": "101.781758636311",
+ "radius": 13315,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.745321512,
+ 26.478012640599999,
+ 0.0
+ ],
+ [
+ 101.70030946,
+ 26.403005543799999,
+ 0.0
+ ],
+ [
+ 101.767412405,
+ 26.378932821900001,
+ 0.0
+ ],
+ [
+ 101.789074299,
+ 26.462263193,
+ 0.0
+ ],
+ [
+ 101.821824103,
+ 26.467671644599999,
+ 0.0
+ ],
+ [
+ 101.83763405,
+ 26.476344227199998,
+ 0.0
+ ],
+ [
+ 101.859253024,
+ 26.502968195299999,
+ 0.0
+ ],
+ [
+ 101.874351543,
+ 26.5561519659,
+ 0.0
+ ],
+ [
+ 101.871143626,
+ 26.572500325299998,
+ 0.0
+ ],
+ [
+ 101.863312551,
+ 26.587548706500002,
+ 0.0
+ ],
+ [
+ 101.851390675,
+ 26.600270889699999,
+ 0.0
+ ],
+ [
+ 101.745321512,
+ 26.478012640599999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32771,
+ "name": "保安营",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "26.5827475921689",
+ "lng": "101.812157976537",
+ "radius": 13410,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.89636600199999,
+ 26.676975463,
+ 0.0
+ ],
+ [
+ 101.825901626,
+ 26.7027240693,
+ 0.0
+ ],
+ [
+ 101.807592234,
+ 26.617737285899999,
+ 0.0
+ ],
+ [
+ 101.77480323899999,
+ 26.6123089112,
+ 0.0
+ ],
+ [
+ 101.758984827,
+ 26.6036213432,
+ 0.0
+ ],
+ [
+ 101.73738712399999,
+ 26.5769712576,
+ 0.0
+ ],
+ [
+ 101.727400476,
+ 26.550335290700001,
+ 0.0
+ ],
+ [
+ 101.721797714,
+ 26.521886845699999,
+ 0.0
+ ],
+ [
+ 101.725221839,
+ 26.505573861799999,
+ 0.0
+ ],
+ [
+ 101.745321512,
+ 26.478012640599999,
+ 0.0
+ ],
+ [
+ 101.851390675,
+ 26.600270889699999,
+ 0.0
+ ],
+ [
+ 101.89636600199999,
+ 26.676975463,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32771,
+ "name": "保安营",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "26.5399847231523",
+ "lng": "101.798449359719",
+ "radius": 23769,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.77192264,
+ 26.7524316921,
+ 120.0
+ ],
+ [
+ 101.962837013,
+ 26.695217052099999,
+ 120.0
+ ],
+ [
+ 101.82462320499999,
+ 26.3275075717,
+ 120.0
+ ],
+ [
+ 101.63431980599999,
+ 26.3847222122,
+ 120.0
+ ],
+ [
+ 101.77192264,
+ 26.7524316921,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001364,
+ "name": "保安营",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.54",
+ "lng": "101.798611111111",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.798611111111001,
+ 26.991264158164775,
+ 500.0
+ ],
+ [
+ 101.886074045926307,
+ 26.984381795130368,
+ 500.0
+ ],
+ [
+ 101.970848554732839,
+ 26.963946250600426,
+ 500.0
+ ],
+ [
+ 102.050331718273526,
+ 26.930585428215444,
+ 500.0
+ ],
+ [
+ 102.122088546766619,
+ 26.885323644039417,
+ 500.0
+ ],
+ [
+ 102.183928393854558,
+ 26.829549181287174,
+ 500.0
+ ],
+ [
+ 102.233972740873455,
+ 26.764970501409906,
+ 500.0
+ ],
+ [
+ 102.270712151721696,
+ 26.693562645409113,
+ 500.0
+ ],
+ [
+ 102.293050701381603,
+ 26.617505664385067,
+ 500.0
+ ],
+ [
+ 102.300336726174493,
+ 26.539117140370845,
+ 500.0
+ ],
+ [
+ 102.292379293121314,
+ 26.460780994410282,
+ 500.0
+ ],
+ [
+ 102.269450306844163,
+ 26.384874831139761,
+ 500.0
+ ],
+ [
+ 102.232272641016039,
+ 26.313698044679967,
+ 500.0
+ ],
+ [
+ 102.181995082539103,
+ 26.249402819071438,
+ 500.0
+ ],
+ [
+ 102.120155204493784,
+ 26.193930008725896,
+ 500.0
+ ],
+ [
+ 102.048631540029263,
+ 26.148951691362662,
+ 500.0
+ ],
+ [
+ 101.969586620717081,
+ 26.11582195773731,
+ 500.0
+ ],
+ [
+ 101.885402579485159,
+ 26.095537247861486,
+ 500.0
+ ],
+ [
+ 101.798611111111001,
+ 26.088707269555279,
+ 500.0
+ ],
+ [
+ 101.711819642736842,
+ 26.095537247861486,
+ 500.0
+ ],
+ [
+ 101.62763560150492,
+ 26.11582195773731,
+ 500.0
+ ],
+ [
+ 101.548590682192739,
+ 26.148951691362662,
+ 500.0
+ ],
+ [
+ 101.477067017728217,
+ 26.193930008725896,
+ 500.0
+ ],
+ [
+ 101.415227139682898,
+ 26.249402819071438,
+ 500.0
+ ],
+ [
+ 101.364949581205963,
+ 26.313698044679967,
+ 500.0
+ ],
+ [
+ 101.327771915377838,
+ 26.384874831139761,
+ 500.0
+ ],
+ [
+ 101.304842929100687,
+ 26.460780994410282,
+ 500.0
+ ],
+ [
+ 101.296885496047508,
+ 26.539117140370845,
+ 500.0
+ ],
+ [
+ 101.304171520840399,
+ 26.617505664385067,
+ 500.0
+ ],
+ [
+ 101.326510070500305,
+ 26.693562645409113,
+ 500.0
+ ],
+ [
+ 101.363249481348547,
+ 26.764970501409906,
+ 500.0
+ ],
+ [
+ 101.413293828367443,
+ 26.829549181287174,
+ 500.0
+ ],
+ [
+ 101.475133675455382,
+ 26.885323644039417,
+ 500.0
+ ],
+ [
+ 101.546890503948475,
+ 26.930585428215444,
+ 500.0
+ ],
+ [
+ 101.626373667489162,
+ 26.963946250600426,
+ 500.0
+ ],
+ [
+ 101.711148176295694,
+ 26.984381795130368,
+ 500.0
+ ],
+ [
+ 101.798611111111001,
+ 26.991264158164775,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001528,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.605355",
+ "lng": "104.974023",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.974023,
+ 27.056614992548266,
+ 500.0
+ ],
+ [
+ 105.061536546087012,
+ 27.049732616893788,
+ 500.0
+ ],
+ [
+ 105.146360022613337,
+ 27.029297041808455,
+ 500.0
+ ],
+ [
+ 105.225888929782599,
+ 26.995936191766315,
+ 500.0
+ ],
+ [
+ 105.297686819719601,
+ 26.950674414094333,
+ 500.0
+ ],
+ [
+ 105.359561763027884,
+ 26.89490002899165,
+ 500.0
+ ],
+ [
+ 105.409634176222468,
+ 26.830321534919051,
+ 500.0
+ ],
+ [
+ 105.446393808527219,
+ 26.758914003977505,
+ 500.0
+ ],
+ [
+ 105.468744190238084,
+ 26.682857507058973,
+ 500.0
+ ],
+ [
+ 105.476033390808908,
+ 26.604469630526886,
+ 500.0
+ ],
+ [
+ 105.468070484928447,
+ 26.526134281931451,
+ 500.0
+ ],
+ [
+ 105.445127646555349,
+ 26.450229034342577,
+ 500.0
+ ],
+ [
+ 105.407928259848674,
+ 26.379053234170136,
+ 500.0
+ ],
+ [
+ 105.357621837259373,
+ 26.314759005507611,
+ 500.0
+ ],
+ [
+ 105.295746862829091,
+ 26.259287136040417,
+ 500.0
+ ],
+ [
+ 105.224182934605139,
+ 26.214309636379358,
+ 500.0
+ ],
+ [
+ 105.145093771029224,
+ 26.181180536411972,
+ 500.0
+ ],
+ [
+ 105.060862782287131,
+ 26.160896227633405,
+ 500.0
+ ],
+ [
+ 104.974023,
+ 26.154066386620357,
+ 500.0
+ ],
+ [
+ 104.887183217712874,
+ 26.160896227633405,
+ 500.0
+ ],
+ [
+ 104.802952228970781,
+ 26.181180536411972,
+ 500.0
+ ],
+ [
+ 104.723863065394866,
+ 26.214309636379358,
+ 500.0
+ ],
+ [
+ 104.652299137170914,
+ 26.259287136040417,
+ 500.0
+ ],
+ [
+ 104.590424162740632,
+ 26.314759005507611,
+ 500.0
+ ],
+ [
+ 104.540117740151331,
+ 26.379053234170136,
+ 500.0
+ ],
+ [
+ 104.502918353444656,
+ 26.450229034342577,
+ 500.0
+ ],
+ [
+ 104.479975515071558,
+ 26.526134281931451,
+ 500.0
+ ],
+ [
+ 104.472012609191097,
+ 26.604469630526886,
+ 500.0
+ ],
+ [
+ 104.479301809761921,
+ 26.682857507058973,
+ 500.0
+ ],
+ [
+ 104.501652191472786,
+ 26.758914003977505,
+ 500.0
+ ],
+ [
+ 104.538411823777537,
+ 26.830321534919051,
+ 500.0
+ ],
+ [
+ 104.588484236972121,
+ 26.89490002899165,
+ 500.0
+ ],
+ [
+ 104.650359180280404,
+ 26.950674414094333,
+ 500.0
+ ],
+ [
+ 104.722157070217406,
+ 26.995936191766315,
+ 500.0
+ ],
+ [
+ 104.801685977386668,
+ 27.029297041808455,
+ 500.0
+ ],
+ [
+ 104.886509453912993,
+ 27.049732616893788,
+ 500.0
+ ],
+ [
+ 104.974023,
+ 27.056614992548266,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33362,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "26.5803305441226",
+ "lng": "104.940819034846",
+ "radius": 13434,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.899899185,
+ 26.5759775374,
+ 0.0
+ ],
+ [
+ 104.817870928,
+ 26.5302973364,
+ 0.0
+ ],
+ [
+ 104.865580706,
+ 26.479996277400002,
+ 0.0
+ ],
+ [
+ 104.929288297,
+ 26.545009917800002,
+ 0.0
+ ],
+ [
+ 104.947274757,
+ 26.536693980199999,
+ 0.0
+ ],
+ [
+ 104.983965921,
+ 26.534310122299999,
+ 0.0
+ ],
+ [
+ 105.001576975,
+ 26.539531270200001,
+ 0.0
+ ],
+ [
+ 105.038690356,
+ 26.565037675300001,
+ 0.0
+ ],
+ [
+ 105.060505624,
+ 26.5933358176,
+ 0.0
+ ],
+ [
+ 105.063014146,
+ 26.626171788800001,
+ 0.0
+ ],
+ [
+ 105.057093576,
+ 26.641903693300002,
+ 0.0
+ ],
+ [
+ 104.899899185,
+ 26.5759775374,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33362,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "26.6374986625179",
+ "lng": "105.01621282925",
+ "radius": 13435,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.139266078,
+ 26.687568768199998,
+ 0.0
+ ],
+ [
+ 105.09149702,
+ 26.737876018600002,
+ 0.0
+ ],
+ [
+ 105.027649045,
+ 26.672928513799999,
+ 0.0
+ ],
+ [
+ 104.991424828,
+ 26.684602406700002,
+ 0.0
+ ],
+ [
+ 104.972880382,
+ 26.683624175399999,
+ 0.0
+ ],
+ [
+ 104.939744125,
+ 26.669252946699999,
+ 0.0
+ ],
+ [
+ 104.904610288,
+ 26.639419888300001,
+ 0.0
+ ],
+ [
+ 104.896383898,
+ 26.624539497099999,
+ 0.0
+ ],
+ [
+ 104.892747588,
+ 26.608262739699999,
+ 0.0
+ ],
+ [
+ 104.899899185,
+ 26.5759775374,
+ 0.0
+ ],
+ [
+ 105.057093576,
+ 26.641903693300002,
+ 0.0
+ ],
+ [
+ 105.139266078,
+ 26.687568768199998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33362,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "26.6087986507184",
+ "lng": "104.978623728274",
+ "radius": 23627,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.077654319,
+ 26.801994496100001,
+ 120.0
+ ],
+ [
+ 105.207927845,
+ 26.6648295729,
+ 120.0
+ ],
+ [
+ 104.879374044,
+ 26.415761413399999,
+ 120.0
+ ],
+ [
+ 104.749383906,
+ 26.552926337100001,
+ 120.0
+ ],
+ [
+ 105.077654319,
+ 26.801994496100001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001415,
+ "name": "Longdongbao Airport",
+ "country": "CN",
+ "city": "Guiyang",
+ "height": 500,
+ "level": 2,
+ "lat": "26.538388",
+ "lng": "106.799351",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.799351,
+ 26.989652260822485,
+ 500.0
+ ],
+ [
+ 106.886812688649144,
+ 26.982769898099587,
+ 500.0
+ ],
+ [
+ 106.971585991758758,
+ 26.962334354324117,
+ 500.0
+ ],
+ [
+ 107.051068028989278,
+ 26.928973532622958,
+ 500.0
+ ],
+ [
+ 107.122823846461316,
+ 26.883711748289429,
+ 500.0
+ ],
+ [
+ 107.184662829408893,
+ 26.827937283626596,
+ 500.0
+ ],
+ [
+ 107.234706485386226,
+ 26.763358599173245,
+ 500.0
+ ],
+ [
+ 107.27144539835011,
+ 26.691950735164149,
+ 500.0
+ ],
+ [
+ 107.29378365669308,
+ 26.615893742211533,
+ 500.0
+ ],
+ [
+ 107.30106960330582,
+ 26.537505202241572,
+ 500.0
+ ],
+ [
+ 107.293112305018795,
+ 26.459169036630549,
+ 500.0
+ ],
+ [
+ 107.270183659820816,
+ 26.383262850792804,
+ 500.0
+ ],
+ [
+ 107.233006528814116,
+ 26.312086040024951,
+ 500.0
+ ],
+ [
+ 107.182729681035312,
+ 26.247790789845137,
+ 500.0
+ ],
+ [
+ 107.12089066713439,
+ 26.192317956309818,
+ 500.0
+ ],
+ [
+ 107.049367994040594,
+ 26.147339618792476,
+ 500.0
+ ],
+ [
+ 106.970324164102905,
+ 26.114209869549075,
+ 500.0
+ ],
+ [
+ 106.886141278801631,
+ 26.093925149787175,
+ 500.0
+ ],
+ [
+ 106.799351,
+ 26.087095168097015,
+ 500.0
+ ],
+ [
+ 106.712560721198372,
+ 26.093925149787175,
+ 500.0
+ ],
+ [
+ 106.628377835897098,
+ 26.114209869549075,
+ 500.0
+ ],
+ [
+ 106.549334005959409,
+ 26.147339618792476,
+ 500.0
+ ],
+ [
+ 106.477811332865613,
+ 26.192317956309818,
+ 500.0
+ ],
+ [
+ 106.415972318964691,
+ 26.247790789845137,
+ 500.0
+ ],
+ [
+ 106.365695471185887,
+ 26.312086040024951,
+ 500.0
+ ],
+ [
+ 106.328518340179187,
+ 26.383262850792804,
+ 500.0
+ ],
+ [
+ 106.305589694981208,
+ 26.459169036630549,
+ 500.0
+ ],
+ [
+ 106.297632396694183,
+ 26.537505202241572,
+ 500.0
+ ],
+ [
+ 106.304918343306923,
+ 26.615893742211533,
+ 500.0
+ ],
+ [
+ 106.327256601649893,
+ 26.691950735164149,
+ 500.0
+ ],
+ [
+ 106.363995514613777,
+ 26.763358599173245,
+ 500.0
+ ],
+ [
+ 106.41403917059111,
+ 26.827937283626596,
+ 500.0
+ ],
+ [
+ 106.475878153538687,
+ 26.883711748289429,
+ 500.0
+ ],
+ [
+ 106.547633971010725,
+ 26.928973532622958,
+ 500.0
+ ],
+ [
+ 106.627116008241245,
+ 26.962334354324117,
+ 500.0
+ ],
+ [
+ 106.711889311350859,
+ 26.982769898099587,
+ 500.0
+ ],
+ [
+ 106.799351,
+ 26.989652260822485,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5183,
+ "name": "Longdongbao Airport",
+ "country": "CN",
+ "city": "Guiyang",
+ "height": 0,
+ "level": 2,
+ "lat": "26.5817098388724",
+ "lng": "106.806163252435",
+ "radius": 13479,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.839615341,
+ 26.610544151100001,
+ 0.0
+ ],
+ [
+ 106.86962059,
+ 26.688845628300001,
+ 0.0
+ ],
+ [
+ 106.795688543,
+ 26.702573121699999,
+ 0.0
+ ],
+ [
+ 106.79236226899999,
+ 26.617578544200001,
+ 0.0
+ ],
+ [
+ 106.762667967,
+ 26.606509541299999,
+ 0.0
+ ],
+ [
+ 106.739364329,
+ 26.5810340347,
+ 0.0
+ ],
+ [
+ 106.727251378,
+ 26.5197164886,
+ 0.0
+ ],
+ [
+ 106.730475931,
+ 26.503370982,
+ 0.0
+ ],
+ [
+ 106.738316482,
+ 26.488328947199999,
+ 0.0
+ ],
+ [
+ 106.765425961,
+ 26.4660940234,
+ 0.0
+ ],
+ [
+ 106.839615341,
+ 26.610544151100001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5183,
+ "name": "Longdongbao Airport",
+ "country": "CN",
+ "city": "Guiyang",
+ "height": 0,
+ "level": 2,
+ "lat": "26.4951828953707",
+ "lng": "106.797133728673",
+ "radius": 13505,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.733720241,
+ 26.387812811900002,
+ 0.0
+ ],
+ [
+ 106.807636221,
+ 26.3740885805,
+ 0.0
+ ],
+ [
+ 106.807604857,
+ 26.4590620496,
+ 0.0
+ ],
+ [
+ 106.83878034599999,
+ 26.470212633100001,
+ 0.0
+ ],
+ [
+ 106.852355239,
+ 26.481519717800001,
+ 0.0
+ ],
+ [
+ 106.86220072499999,
+ 26.495585677400001,
+ 0.0
+ ],
+ [
+ 106.867644969,
+ 26.511452758699999,
+ 0.0
+ ],
+ [
+ 106.87775801399999,
+ 26.556886320099998,
+ 0.0
+ ],
+ [
+ 106.874555871,
+ 26.573235588199999,
+ 0.0
+ ],
+ [
+ 106.86673008,
+ 26.5882861889,
+ 0.0
+ ],
+ [
+ 106.839615341,
+ 26.610544151100001,
+ 0.0
+ ],
+ [
+ 106.765425961,
+ 26.4660940234,
+ 0.0
+ ],
+ [
+ 106.733720241,
+ 26.387812811900002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5183,
+ "name": "Longdongbao Airport",
+ "country": "CN",
+ "city": "Guiyang",
+ "height": 120,
+ "level": 2,
+ "lat": "26.5383384747117",
+ "lng": "106.801742363779",
+ "radius": 23811,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.855191651,
+ 26.3296138079,
+ 120.0
+ ],
+ [
+ 106.658779073,
+ 26.366659089399999,
+ 120.0
+ ],
+ [
+ 106.747936576,
+ 26.7470086714,
+ 120.0
+ ],
+ [
+ 106.945001407,
+ 26.7099633901,
+ 120.0
+ ],
+ [
+ 106.855191651,
+ 26.3296138079,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001536,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.970662",
+ "lng": "107.987228",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.987228,
+ 27.421898580513467,
+ 500.0
+ ],
+ [
+ 108.075027630064838,
+ 27.415016134632832,
+ 500.0
+ ],
+ [
+ 108.160127901997583,
+ 27.394580389846986,
+ 500.0
+ ],
+ [
+ 108.239915383361648,
+ 27.36121938749741,
+ 500.0
+ ],
+ [
+ 108.311945385300788,
+ 27.315957650272029,
+ 500.0
+ ],
+ [
+ 108.37401872630457,
+ 27.260183705800575,
+ 500.0
+ ],
+ [
+ 108.424249803533954,
+ 27.195606260077977,
+ 500.0
+ ],
+ [
+ 108.461123760098005,
+ 27.124200559536774,
+ 500.0
+ ],
+ [
+ 108.483541045666286,
+ 27.048146785914895,
+ 500.0
+ ],
+ [
+ 108.490848218996618,
+ 26.969762549638997,
+ 500.0
+ ],
+ [
+ 108.482854395697871,
+ 26.891431682296279,
+ 500.0
+ ],
+ [
+ 108.459833269819768,
+ 26.815531579586825,
+ 500.0
+ ],
+ [
+ 108.422511109090593,
+ 26.744361319980403,
+ 500.0
+ ],
+ [
+ 108.372041525810289,
+ 26.680072691001406,
+ 500.0
+ ],
+ [
+ 108.309968152747615,
+ 26.624606105764762,
+ 500.0
+ ],
+ [
+ 108.238176607742318,
+ 26.579633198205872,
+ 500.0
+ ],
+ [
+ 108.158837319409443,
+ 26.546507656590094,
+ 500.0
+ ],
+ [
+ 108.074340919845426,
+ 26.526225600127642,
+ 500.0
+ ],
+ [
+ 107.987228,
+ 26.519396530056301,
+ 500.0
+ ],
+ [
+ 107.900115080154578,
+ 26.526225600127642,
+ 500.0
+ ],
+ [
+ 107.815618680590561,
+ 26.546507656590094,
+ 500.0
+ ],
+ [
+ 107.736279392257686,
+ 26.579633198205872,
+ 500.0
+ ],
+ [
+ 107.664487847252389,
+ 26.624606105764762,
+ 500.0
+ ],
+ [
+ 107.602414474189715,
+ 26.680072691001406,
+ 500.0
+ ],
+ [
+ 107.551944890909411,
+ 26.744361319980403,
+ 500.0
+ ],
+ [
+ 107.514622730180236,
+ 26.815531579586825,
+ 500.0
+ ],
+ [
+ 107.491601604302133,
+ 26.891431682296279,
+ 500.0
+ ],
+ [
+ 107.483607781003386,
+ 26.969762549638997,
+ 500.0
+ ],
+ [
+ 107.490914954333718,
+ 27.048146785914895,
+ 500.0
+ ],
+ [
+ 107.513332239901999,
+ 27.124200559536774,
+ 500.0
+ ],
+ [
+ 107.55020619646605,
+ 27.195606260077977,
+ 500.0
+ ],
+ [
+ 107.600437273695434,
+ 27.260183705800575,
+ 500.0
+ ],
+ [
+ 107.662510614699215,
+ 27.315957650272029,
+ 500.0
+ ],
+ [
+ 107.734540616638355,
+ 27.36121938749741,
+ 500.0
+ ],
+ [
+ 107.81432809800242,
+ 27.394580389846986,
+ 500.0
+ ],
+ [
+ 107.899428369935166,
+ 27.415016134632832,
+ 500.0
+ ],
+ [
+ 107.987228,
+ 27.421898580513467,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33361,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "26.935330216038",
+ "lng": "107.96007566761",
+ "radius": 13330,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.922456074,
+ 26.9221401878,
+ 0.0
+ ],
+ [
+ 107.856893343,
+ 26.8584839645,
+ 0.0
+ ],
+ [
+ 107.91809406599999,
+ 26.8214405704,
+ 0.0
+ ],
+ [
+ 107.960164576,
+ 26.899332823600002,
+ 0.0
+ ],
+ [
+ 107.980029748,
+ 26.895627584100001,
+ 0.0
+ ],
+ [
+ 108.01621248399999,
+ 26.902108904799999,
+ 0.0
+ ],
+ [
+ 108.04392346,
+ 26.923849651099999,
+ 0.0
+ ],
+ [
+ 108.067764063,
+ 26.9594118451,
+ 0.0
+ ],
+ [
+ 108.07127927099999,
+ 26.975711722500002,
+ 0.0
+ ],
+ [
+ 108.069941255,
+ 26.992267079400001,
+ 0.0
+ ],
+ [
+ 108.053387119,
+ 27.021689865799999,
+ 0.0
+ ],
+ [
+ 107.922456074,
+ 26.9221401878,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33361,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.008480218627",
+ "lng": "108.015788926591",
+ "radius": 13331,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.11910092,
+ 27.085344044399999,
+ 0.0
+ ],
+ [
+ 108.057780775,
+ 27.1223934631,
+ 0.0
+ ],
+ [
+ 108.015598232,
+ 27.044537526799999,
+ 0.0
+ ],
+ [
+ 107.99565863799999,
+ 27.048246341500001,
+ 0.0
+ ],
+ [
+ 107.959436749,
+ 27.041730365,
+ 0.0
+ ],
+ [
+ 107.931735347,
+ 27.0199506041,
+ 0.0
+ ],
+ [
+ 107.90796128,
+ 26.9843956263,
+ 0.0
+ ],
+ [
+ 107.904480506,
+ 26.968089834400001,
+ 0.0
+ ],
+ [
+ 107.90585378599999,
+ 26.9515367901,
+ 0.0
+ ],
+ [
+ 107.922456074,
+ 26.9221401878,
+ 0.0
+ ],
+ [
+ 108.053387119,
+ 27.021689865799999,
+ 0.0
+ ],
+ [
+ 108.11910092,
+ 27.085344044399999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33361,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "26.9718417891588",
+ "lng": "107.988034122419",
+ "radius": 23530,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.025085664,
+ 27.1808708553,
+ 120.0
+ ],
+ [
+ 108.19230985199999,
+ 27.079863969,
+ 120.0
+ ],
+ [
+ 107.950672447,
+ 26.762866342199999,
+ 120.0
+ ],
+ [
+ 107.783918437,
+ 26.863873229100001,
+ 120.0
+ ],
+ [
+ 108.025085664,
+ 27.1808708553,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001406,
+ "name": "Shaoyang Wugang Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.795882",
+ "lng": "110.635071",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.635071,
+ 27.247129808908674,
+ 500.0
+ ],
+ [
+ 110.722733077001692,
+ 27.240247396564399,
+ 500.0
+ ],
+ [
+ 110.807700261582781,
+ 27.219811732750422,
+ 500.0
+ ],
+ [
+ 110.887363415934075,
+ 27.186450802804384,
+ 500.0
+ ],
+ [
+ 110.959281813366474,
+ 27.141189045382106,
+ 500.0
+ ],
+ [
+ 111.021259759209656,
+ 27.085414888718251,
+ 500.0
+ ],
+ [
+ 111.07141454488945,
+ 27.020836939371073,
+ 500.0
+ ],
+ [
+ 111.108233528427732,
+ 26.949430360257502,
+ 500.0
+ ],
+ [
+ 111.130618641064714,
+ 26.873375280033798,
+ 500.0
+ ],
+ [
+ 111.137917168381207,
+ 26.794989297642509,
+ 500.0
+ ],
+ [
+ 111.129938206815979,
+ 26.716656281128486,
+ 500.0
+ ],
+ [
+ 111.106954720028753,
+ 26.640753711249676,
+ 500.0
+ ],
+ [
+ 111.069691589703751,
+ 26.569580794937004,
+ 500.0
+ ],
+ [
+ 111.019300457163382,
+ 26.505289481061141,
+ 500.0
+ ],
+ [
+ 110.957322479713113,
+ 26.449820362288165,
+ 500.0
+ ],
+ [
+ 110.885640380716467,
+ 26.404845253105055,
+ 500.0
+ ],
+ [
+ 110.806421362174845,
+ 26.371718005521405,
+ 500.0
+ ],
+ [
+ 110.722052583351086,
+ 26.351434869254376,
+ 500.0
+ ],
+ [
+ 110.635071,
+ 26.344605429581001,
+ 500.0
+ ],
+ [
+ 110.548089416648907,
+ 26.351434869254376,
+ 500.0
+ ],
+ [
+ 110.463720637825148,
+ 26.371718005521405,
+ 500.0
+ ],
+ [
+ 110.384501619283526,
+ 26.404845253105055,
+ 500.0
+ ],
+ [
+ 110.31281952028688,
+ 26.449820362288165,
+ 500.0
+ ],
+ [
+ 110.250841542836611,
+ 26.505289481061141,
+ 500.0
+ ],
+ [
+ 110.200450410296241,
+ 26.569580794937004,
+ 500.0
+ ],
+ [
+ 110.16318727997124,
+ 26.640753711249676,
+ 500.0
+ ],
+ [
+ 110.140203793184014,
+ 26.716656281128486,
+ 500.0
+ ],
+ [
+ 110.132224831618785,
+ 26.794989297642509,
+ 500.0
+ ],
+ [
+ 110.139523358935278,
+ 26.873375280033798,
+ 500.0
+ ],
+ [
+ 110.161908471572261,
+ 26.949430360257502,
+ 500.0
+ ],
+ [
+ 110.198727455110543,
+ 27.020836939371073,
+ 500.0
+ ],
+ [
+ 110.248882240790337,
+ 27.085414888718251,
+ 500.0
+ ],
+ [
+ 110.310860186633519,
+ 27.141189045382106,
+ 500.0
+ ],
+ [
+ 110.382778584065917,
+ 27.186450802804384,
+ 500.0
+ ],
+ [
+ 110.462441738417212,
+ 27.219811732750422,
+ 500.0
+ ],
+ [
+ 110.547408922998301,
+ 27.240247396564399,
+ 500.0
+ ],
+ [
+ 110.635071,
+ 27.247129808908674,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286026,
+ "name": "Shaoyang Wugang Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "26.7671454454543",
+ "lng": "110.618111136389",
+ "radius": 13334,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.525071837,
+ 26.680687134399999,
+ 0.0
+ ],
+ [
+ 110.590419207,
+ 26.649804449099999,
+ 0.0
+ ],
+ [
+ 110.62262123,
+ 26.731329989900001,
+ 0.0
+ ],
+ [
+ 110.642759778,
+ 26.729592276199998,
+ 0.0
+ ],
+ [
+ 110.67787918499999,
+ 26.739565187,
+ 0.0
+ ],
+ [
+ 110.702720337,
+ 26.7638793245,
+ 0.0
+ ],
+ [
+ 110.722057627,
+ 26.801596082500001,
+ 0.0
+ ],
+ [
+ 110.723554752,
+ 26.818140450800001,
+ 0.0
+ ],
+ [
+ 110.720202535,
+ 26.834466895199999,
+ 0.0
+ ],
+ [
+ 110.700171789,
+ 26.862104536,
+ 0.0
+ ],
+ [
+ 110.582345825,
+ 26.750349705,
+ 0.0
+ ],
+ [
+ 110.525071837,
+ 26.680687134399999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286026,
+ "name": "Shaoyang Wugang Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "26.8453002264073",
+ "lng": "110.66441625649",
+ "radius": 13335,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.700171789,
+ 26.862104536,
+ 0.0
+ ],
+ [
+ 110.75758673199999,
+ 26.931769132700001,
+ 0.0
+ ],
+ [
+ 110.692099463,
+ 26.962657121900001,
+ 0.0
+ ],
+ [
+ 110.65981083699999,
+ 26.881156486199998,
+ 0.0
+ ],
+ [
+ 110.639589323,
+ 26.8828908238,
+ 0.0
+ ],
+ [
+ 110.60443983099999,
+ 26.872877814399999,
+ 0.0
+ ],
+ [
+ 110.579622547,
+ 26.848524880300001,
+ 0.0
+ ],
+ [
+ 110.56035794,
+ 26.810825813699999,
+ 0.0
+ ],
+ [
+ 110.558894951,
+ 26.794279019699999,
+ 0.0
+ ],
+ [
+ 110.562279286,
+ 26.777958051100001,
+ 0.0
+ ],
+ [
+ 110.582345825,
+ 26.750349705,
+ 0.0
+ ],
+ [
+ 110.700171789,
+ 26.862104536,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286026,
+ "name": "Shaoyang Wugang Airport",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "26.8061800226639",
+ "lng": "110.641352304052",
+ "radius": 23533,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.629904315,
+ 26.594781244699998,
+ 120.0
+ ],
+ [
+ 110.45202755699999,
+ 26.678869359699998,
+ 120.0
+ ],
+ [
+ 110.652469991,
+ 27.017591663800001,
+ 120.0
+ ],
+ [
+ 110.830878879,
+ 26.933503549400001,
+ 120.0
+ ],
+ [
+ 110.629904315,
+ 26.594781244699998,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3866,
+ "name": "Lingling Airport",
+ "country": "CN",
+ "city": "Yongzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "26.2967928692359",
+ "lng": "111.614730747531",
+ "radius": 13453,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.593945089,
+ 26.265842744499999,
+ 0.0
+ ],
+ [
+ 111.592295701,
+ 26.177485941400001,
+ 0.0
+ ],
+ [
+ 111.66453434899999,
+ 26.184349128499999,
+ 0.0
+ ],
+ [
+ 111.64287877,
+ 26.267697894600001,
+ 0.0
+ ],
+ [
+ 111.671051946,
+ 26.287875182499999,
+ 0.0
+ ],
+ [
+ 111.680074017,
+ 26.302369237600001,
+ 0.0
+ ],
+ [
+ 111.684605898,
+ 26.3184626653,
+ 0.0
+ ],
+ [
+ 111.684336977,
+ 26.3350591544,
+ 0.0
+ ],
+ [
+ 111.667976218,
+ 26.388384251800002,
+ 0.0
+ ],
+ [
+ 111.641639567,
+ 26.411335057799999,
+ 0.0
+ ],
+ [
+ 111.624420269,
+ 26.417473112700002,
+ 0.0
+ ],
+ [
+ 111.593945089,
+ 26.265842744499999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3866,
+ "name": "Lingling Airport",
+ "country": "CN",
+ "city": "Yongzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "26.3858725478637",
+ "lng": "111.610591249575",
+ "radius": 13449,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.627702725,
+ 26.505851810100001,
+ 0.0
+ ],
+ [
+ 111.55376507,
+ 26.495603061099999,
+ 0.0
+ ],
+ [
+ 111.575458993,
+ 26.415644503199999,
+ 0.0
+ ],
+ [
+ 111.550972566,
+ 26.3982537029,
+ 0.0
+ ],
+ [
+ 111.541328535,
+ 26.3840808285,
+ 0.0
+ ],
+ [
+ 111.536109806,
+ 26.368154693699999,
+ 0.0
+ ],
+ [
+ 111.539001954,
+ 26.321574318,
+ 0.0
+ ],
+ [
+ 111.549614351,
+ 26.2939172291,
+ 0.0
+ ],
+ [
+ 111.561458038,
+ 26.281160205,
+ 0.0
+ ],
+ [
+ 111.593945089,
+ 26.265842744499999,
+ 0.0
+ ],
+ [
+ 111.624420269,
+ 26.417473112700002,
+ 0.0
+ ],
+ [
+ 111.627702725,
+ 26.505851810100001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3866,
+ "name": "Lingling Airport",
+ "country": "CN",
+ "city": "Yongzhou",
+ "height": 120,
+ "level": 2,
+ "lat": "26.3425110012277",
+ "lng": "111.60911105391",
+ "radius": 23797,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.475988029,
+ 26.520256805199999,
+ 120.0
+ ],
+ [
+ 111.674561095,
+ 26.548350392900002,
+ 120.0
+ ],
+ [
+ 111.741929438,
+ 26.164704975199999,
+ 120.0
+ ],
+ [
+ 111.544013652,
+ 26.1366113873,
+ 120.0
+ ],
+ [
+ 111.475988029,
+ 26.520256805199999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001299,
+ "name": "Lingling Airport",
+ "country": "CN",
+ "city": "Yongzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "26.338876",
+ "lng": "111.610043",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.610043,
+ 26.790152933424753,
+ 500.0
+ ],
+ [
+ 111.697351260627542,
+ 26.783270609348424,
+ 500.0
+ ],
+ [
+ 111.781976118736225,
+ 26.76283515926195,
+ 500.0
+ ],
+ [
+ 111.861319485897681,
+ 26.729474422831153,
+ 500.0
+ ],
+ [
+ 111.932950828785494,
+ 26.684212620115431,
+ 500.0
+ ],
+ [
+ 111.994683422287679,
+ 26.628437920747579,
+ 500.0
+ ],
+ [
+ 112.044642001833353,
+ 26.563858672505376,
+ 500.0
+ ],
+ [
+ 112.081319620683161,
+ 26.492449820848023,
+ 500.0
+ ],
+ [
+ 112.103622017844756,
+ 26.416391356037408,
+ 500.0
+ ],
+ [
+ 112.110898344458093,
+ 26.338000846727613,
+ 500.0
+ ],
+ [
+ 112.102957643275516,
+ 26.259662255301158,
+ 500.0
+ ],
+ [
+ 112.080070994984268,
+ 26.183753283220479,
+ 500.0
+ ],
+ [
+ 112.042959712464636,
+ 26.112573471004094,
+ 500.0
+ ],
+ [
+ 111.99277036478351,
+ 26.048275186668118,
+ 500.0
+ ],
+ [
+ 111.931037740824976,
+ 25.992799489426343,
+ 500.0
+ ],
+ [
+ 111.85963711941082,
+ 25.947818662987633,
+ 500.0
+ ],
+ [
+ 111.780727405341835,
+ 25.914686984950993,
+ 500.0
+ ],
+ [
+ 111.696686828819111,
+ 25.894401044261588,
+ 500.0
+ ],
+ [
+ 111.610043,
+ 25.88757064465096,
+ 500.0
+ ],
+ [
+ 111.523399171180898,
+ 25.894401044261588,
+ 500.0
+ ],
+ [
+ 111.439358594658174,
+ 25.914686984950993,
+ 500.0
+ ],
+ [
+ 111.360448880589189,
+ 25.947818662987633,
+ 500.0
+ ],
+ [
+ 111.289048259175033,
+ 25.992799489426343,
+ 500.0
+ ],
+ [
+ 111.227315635216499,
+ 26.048275186668118,
+ 500.0
+ ],
+ [
+ 111.177126287535373,
+ 26.112573471004094,
+ 500.0
+ ],
+ [
+ 111.140015005015741,
+ 26.183753283220479,
+ 500.0
+ ],
+ [
+ 111.117128356724493,
+ 26.259662255301158,
+ 500.0
+ ],
+ [
+ 111.109187655541916,
+ 26.338000846727613,
+ 500.0
+ ],
+ [
+ 111.116463982155253,
+ 26.416391356037408,
+ 500.0
+ ],
+ [
+ 111.138766379316849,
+ 26.492449820848023,
+ 500.0
+ ],
+ [
+ 111.175443998166656,
+ 26.563858672505376,
+ 500.0
+ ],
+ [
+ 111.22540257771233,
+ 26.628437920747579,
+ 500.0
+ ],
+ [
+ 111.287135171214516,
+ 26.684212620115431,
+ 500.0
+ ],
+ [
+ 111.358766514102328,
+ 26.729474422831153,
+ 500.0
+ ],
+ [
+ 111.438109881263784,
+ 26.76283515926195,
+ 500.0
+ ],
+ [
+ 111.522734739372467,
+ 26.783270609348424,
+ 500.0
+ ],
+ [
+ 111.610043,
+ 26.790152933424753,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1509,
+ "name": "Nanyue Airport",
+ "country": "CN",
+ "city": "Hengyang",
+ "height": 0,
+ "level": 2,
+ "lat": "26.6854114172386",
+ "lng": "112.589368480246",
+ "radius": 13086,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.54861129699999,
+ 26.6767045426,
+ 0.0
+ ],
+ [
+ 112.478596434,
+ 26.6217704379,
+ 0.0
+ ],
+ [
+ 112.533658183,
+ 26.578774925800001,
+ 0.0
+ ],
+ [
+ 112.585402224,
+ 26.6504600289,
+ 0.0
+ ],
+ [
+ 112.618380677,
+ 26.647119675500001,
+ 0.0
+ ],
+ [
+ 112.636359158,
+ 26.651279137,
+ 0.0
+ ],
+ [
+ 112.652522631,
+ 26.6594537993,
+ 0.0
+ ],
+ [
+ 112.682462989,
+ 26.691116579199999,
+ 0.0
+ ],
+ [
+ 112.69643344399999,
+ 26.7190683169,
+ 0.0
+ ],
+ [
+ 112.697287635,
+ 26.735649013100002,
+ 0.0
+ ],
+ [
+ 112.684761442,
+ 26.766602453299999,
+ 0.0
+ ],
+ [
+ 112.54861129699999,
+ 26.6767045426,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1509,
+ "name": "Nanyue Airport",
+ "country": "CN",
+ "city": "Hengyang",
+ "height": 0,
+ "level": 2,
+ "lat": "26.7553678104937",
+ "lng": "112.647902827719",
+ "radius": 13182,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.758072943,
+ 26.821565549199999,
+ 0.0
+ ],
+ [
+ 112.699647604,
+ 26.864552505799999,
+ 0.0
+ ],
+ [
+ 112.651301815,
+ 26.792882864599999,
+ 0.0
+ ],
+ [
+ 112.632319905,
+ 26.796911249800001,
+ 0.0
+ ],
+ [
+ 112.59595539599999,
+ 26.7914731706,
+ 0.0
+ ],
+ [
+ 112.580190989,
+ 26.78267198,
+ 0.0
+ ],
+ [
+ 112.55087675599999,
+ 26.7522245593,
+ 0.0
+ ],
+ [
+ 112.53689924699999,
+ 26.724229965,
+ 0.0
+ ],
+ [
+ 112.536062456,
+ 26.707648564399999,
+ 0.0
+ ],
+ [
+ 112.54861129699999,
+ 26.6767045426,
+ 0.0
+ ],
+ [
+ 112.684761442,
+ 26.766602453299999,
+ 0.0
+ ],
+ [
+ 112.758072943,
+ 26.821565549199999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1509,
+ "name": "Nanyue Airport",
+ "country": "CN",
+ "city": "Hengyang",
+ "height": 120,
+ "level": 2,
+ "lat": "26.7211474631776",
+ "lng": "112.616851468154",
+ "radius": 23575,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.669056533,
+ 26.927982903299998,
+ 120.0
+ ],
+ [
+ 112.828297296,
+ 26.817644812699999,
+ 120.0
+ ],
+ [
+ 112.56435751399999,
+ 26.514389577900001,
+ 120.0
+ ],
+ [
+ 112.405540479,
+ 26.6247276691,
+ 120.0
+ ],
+ [
+ 112.669056533,
+ 26.927982903299998,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001450,
+ "name": "Nanyue Airport",
+ "country": "CN",
+ "city": "Hengyang",
+ "height": 500,
+ "level": 2,
+ "lat": "26.7208002757",
+ "lng": "112.6188744664",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.618874466400001,
+ 27.172052892914376,
+ 500.0
+ ],
+ [
+ 112.706477835571306,
+ 27.165170495011278,
+ 500.0
+ ],
+ [
+ 112.791388218494859,
+ 27.144734866102873,
+ 500.0
+ ],
+ [
+ 112.870998310486087,
+ 27.111373967519103,
+ 500.0
+ ],
+ [
+ 112.942869076030703,
+ 27.066112201891631,
+ 500.0
+ ],
+ [
+ 113.004806308688273,
+ 27.010337954842335,
+ 500.0
+ ],
+ [
+ 113.054928535117341,
+ 26.945759790294389,
+ 500.0
+ ],
+ [
+ 113.091724058538787,
+ 26.874352835349015,
+ 500.0
+ ],
+ [
+ 113.114095442325748,
+ 26.798297195887031,
+ 500.0
+ ],
+ [
+ 113.121390282010893,
+ 26.719910465901666,
+ 500.0
+ ],
+ [
+ 113.113417665568761,
+ 26.641576529035522,
+ 500.0
+ ],
+ [
+ 113.090450244653212,
+ 26.565672902475317,
+ 500.0
+ ],
+ [
+ 113.053212309150766,
+ 26.494498848186232,
+ 500.0
+ ],
+ [
+ 113.002854659008108,
+ 26.430206384171797,
+ 500.0
+ ],
+ [
+ 112.940917394935539,
+ 26.37473618003818,
+ 500.0
+ ],
+ [
+ 112.869282004973925,
+ 26.329760127646011,
+ 500.0
+ ],
+ [
+ 112.790114314153413,
+ 26.296632149178816,
+ 500.0
+ ],
+ [
+ 112.705799999773419,
+ 26.276348550285274,
+ 500.0
+ ],
+ [
+ 112.618874466400001,
+ 26.269518952259872,
+ 500.0
+ ],
+ [
+ 112.531948933026584,
+ 26.276348550285274,
+ 500.0
+ ],
+ [
+ 112.447634618646589,
+ 26.296632149178816,
+ 500.0
+ ],
+ [
+ 112.368466927826077,
+ 26.329760127646011,
+ 500.0
+ ],
+ [
+ 112.296831537864463,
+ 26.37473618003818,
+ 500.0
+ ],
+ [
+ 112.234894273791895,
+ 26.430206384171797,
+ 500.0
+ ],
+ [
+ 112.184536623649237,
+ 26.494498848186232,
+ 500.0
+ ],
+ [
+ 112.14729868814679,
+ 26.565672902475317,
+ 500.0
+ ],
+ [
+ 112.124331267231241,
+ 26.641576529035522,
+ 500.0
+ ],
+ [
+ 112.11635865078911,
+ 26.719910465901666,
+ 500.0
+ ],
+ [
+ 112.123653490474254,
+ 26.798297195887031,
+ 500.0
+ ],
+ [
+ 112.146024874261215,
+ 26.874352835349015,
+ 500.0
+ ],
+ [
+ 112.182820397682661,
+ 26.945759790294389,
+ 500.0
+ ],
+ [
+ 112.232942624111729,
+ 27.010337954842335,
+ 500.0
+ ],
+ [
+ 112.294879856769299,
+ 27.066112201891631,
+ 500.0
+ ],
+ [
+ 112.366750622313916,
+ 27.111373967519103,
+ 500.0
+ ],
+ [
+ 112.446360714305143,
+ 27.144734866102873,
+ 500.0
+ ],
+ [
+ 112.531271097228696,
+ 27.165170495011278,
+ 500.0
+ ],
+ [
+ 112.618874466400001,
+ 27.172052892914376,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2636,
+ "name": "Jinggangshan Airport",
+ "country": "CN",
+ "city": "Ji'an",
+ "height": 0,
+ "level": 2,
+ "lat": "26.8511992064182",
+ "lng": "114.688769900388",
+ "radius": 13118,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.650675486,
+ 26.867535652,
+ 0.0
+ ],
+ [
+ 114.55733734899999,
+ 26.8642253947,
+ 0.0
+ ],
+ [
+ 114.56937603599999,
+ 26.800537494499999,
+ 0.0
+ ],
+ [
+ 114.657699319,
+ 26.823875238399999,
+ 0.0
+ ],
+ [
+ 114.680217575,
+ 26.8011126235,
+ 0.0
+ ],
+ [
+ 114.696748708,
+ 26.793512112199998,
+ 0.0
+ ],
+ [
+ 114.73349193599999,
+ 26.790778450099999,
+ 0.0
+ ],
+ [
+ 114.779246748,
+ 26.799229520800001,
+ 0.0
+ ],
+ [
+ 114.80785393399999,
+ 26.819998194299998,
+ 0.0
+ ],
+ [
+ 114.816695623,
+ 26.834601221900002,
+ 0.0
+ ],
+ [
+ 114.821002169,
+ 26.850748563,
+ 0.0
+ ],
+ [
+ 114.650675486,
+ 26.867535652,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2636,
+ "name": "Jinggangshan Airport",
+ "country": "CN",
+ "city": "Ji'an",
+ "height": 0,
+ "level": 2,
+ "lat": "26.8636915776003",
+ "lng": "114.782876156295",
+ "radius": 13120,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.914344008,
+ 26.8507879555,
+ 0.0
+ ],
+ [
+ 114.902304293,
+ 26.914456695799998,
+ 0.0
+ ],
+ [
+ 114.810616052,
+ 26.891132838899999,
+ 0.0
+ ],
+ [
+ 114.790948693,
+ 26.911770629700001,
+ 0.0
+ ],
+ [
+ 114.75680522099999,
+ 26.924275898099999,
+ 0.0
+ ],
+ [
+ 114.738189199,
+ 26.924223457499998,
+ 0.0
+ ],
+ [
+ 114.681306315,
+ 26.9078071028,
+ 0.0
+ ],
+ [
+ 114.667226072,
+ 26.896951835799999,
+ 0.0
+ ],
+ [
+ 114.656778729,
+ 26.883215700899999,
+ 0.0
+ ],
+ [
+ 114.650675486,
+ 26.867535652,
+ 0.0
+ ],
+ [
+ 114.821002169,
+ 26.850748563,
+ 0.0
+ ],
+ [
+ 114.914344008,
+ 26.8507879555,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2636,
+ "name": "Jinggangshan Airport",
+ "country": "CN",
+ "city": "Ji'an",
+ "height": 120,
+ "level": 2,
+ "lat": "26.85637498393",
+ "lng": "114.735074351462",
+ "radius": 23577,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.924965731,
+ 26.984015149800001,
+ 120.0
+ ],
+ [
+ 114.96642586199999,
+ 26.807992425599998,
+ 120.0
+ ],
+ [
+ 114.545137697,
+ 26.729042204500001,
+ 120.0
+ ],
+ [
+ 114.503706486,
+ 26.905064928800002,
+ 120.0
+ ],
+ [
+ 114.924965731,
+ 26.984015149800001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001315,
+ "name": "Jinggangshan Airport",
+ "country": "CN",
+ "city": "Ji'an",
+ "height": 500,
+ "level": 2,
+ "lat": "26.857079",
+ "lng": "114.735591",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.735591,
+ 27.308322883037306,
+ 500.0
+ ],
+ [
+ 114.823301097672996,
+ 27.301440458938238,
+ 500.0
+ ],
+ [
+ 114.908314743842027,
+ 27.281004766728991,
+ 500.0
+ ],
+ [
+ 114.988021301351935,
+ 27.2476438113375,
+ 500.0
+ ],
+ [
+ 115.05997866025217,
+ 27.202382060814735,
+ 500.0
+ ],
+ [
+ 115.121989908578271,
+ 27.146607978165516,
+ 500.0
+ ],
+ [
+ 115.172171327365334,
+ 27.082030204734497,
+ 500.0
+ ],
+ [
+ 115.209009501442296,
+ 27.010623932657793,
+ 500.0
+ ],
+ [
+ 115.231405844898546,
+ 26.934569309167316,
+ 500.0
+ ],
+ [
+ 115.238707389671262,
+ 26.85618393723238,
+ 500.0
+ ],
+ [
+ 115.230723238996021,
+ 26.777851672156189,
+ 500.0
+ ],
+ [
+ 115.207726611617858,
+ 26.701949964955531,
+ 500.0
+ ],
+ [
+ 115.170442873183944,
+ 26.630777977637884,
+ 500.0
+ ],
+ [
+ 115.12002435315685,
+ 26.566487602646564,
+ 500.0
+ ],
+ [
+ 115.058013073066235,
+ 26.511019369850988,
+ 500.0
+ ],
+ [
+ 114.986292766739965,
+ 26.466045030589843,
+ 500.0
+ ],
+ [
+ 114.907031762555278,
+ 26.432918379601745,
+ 500.0
+ ],
+ [
+ 114.822618432072687,
+ 26.412635620957271,
+ 500.0
+ ],
+ [
+ 114.735591,
+ 26.405806310539344,
+ 500.0
+ ],
+ [
+ 114.648563567927312,
+ 26.412635620957271,
+ 500.0
+ ],
+ [
+ 114.564150237444721,
+ 26.432918379601745,
+ 500.0
+ ],
+ [
+ 114.484889233260034,
+ 26.466045030589843,
+ 500.0
+ ],
+ [
+ 114.413168926933764,
+ 26.511019369850988,
+ 500.0
+ ],
+ [
+ 114.351157646843149,
+ 26.566487602646564,
+ 500.0
+ ],
+ [
+ 114.300739126816055,
+ 26.630777977637884,
+ 500.0
+ ],
+ [
+ 114.263455388382141,
+ 26.701949964955531,
+ 500.0
+ ],
+ [
+ 114.240458761003978,
+ 26.777851672156189,
+ 500.0
+ ],
+ [
+ 114.232474610328737,
+ 26.85618393723238,
+ 500.0
+ ],
+ [
+ 114.239776155101453,
+ 26.934569309167316,
+ 500.0
+ ],
+ [
+ 114.262172498557703,
+ 27.010623932657793,
+ 500.0
+ ],
+ [
+ 114.299010672634665,
+ 27.082030204734497,
+ 500.0
+ ],
+ [
+ 114.349192091421727,
+ 27.146607978165516,
+ 500.0
+ ],
+ [
+ 114.411203339747829,
+ 27.202382060814735,
+ 500.0
+ ],
+ [
+ 114.483160698648064,
+ 27.2476438113375,
+ 500.0
+ ],
+ [
+ 114.562867256157972,
+ 27.281004766728991,
+ 500.0
+ ],
+ [
+ 114.647880902327003,
+ 27.301440458938238,
+ 500.0
+ ],
+ [
+ 114.735591,
+ 27.308322883037306,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33210,
+ "name": "沙县",
+ "country": "CN",
+ "city": "三明",
+ "height": 0,
+ "level": 2,
+ "lat": "26.3977022728829",
+ "lng": "117.793782165278",
+ "radius": 12915,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.75201977899999,
+ 26.403727692099999,
+ 0.0
+ ],
+ [
+ 117.668698033,
+ 26.367140412600001,
+ 0.0
+ ],
+ [
+ 117.70827627,
+ 26.310408655900002,
+ 0.0
+ ],
+ [
+ 117.77825224,
+ 26.3670763812,
+ 0.0
+ ],
+ [
+ 117.809536614,
+ 26.355687947,
+ 0.0
+ ],
+ [
+ 117.828058196,
+ 26.355439571800002,
+ 0.0
+ ],
+ [
+ 117.84602134799999,
+ 26.3594928417,
+ 0.0
+ ],
+ [
+ 117.885553954,
+ 26.379250003300001,
+ 0.0
+ ],
+ [
+ 117.90826259,
+ 26.4011790924,
+ 0.0
+ ],
+ [
+ 117.915130454,
+ 26.416595475699999,
+ 0.0
+ ],
+ [
+ 117.91731029,
+ 26.433078524900001,
+ 0.0
+ ],
+ [
+ 117.75201977899999,
+ 26.403727692099999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33210,
+ "name": "沙县",
+ "country": "CN",
+ "city": "三明",
+ "height": 0,
+ "level": 2,
+ "lat": "26.4469101741809",
+ "lng": "117.877387779009",
+ "radius": 13375,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.003006224,
+ 26.489615562299999,
+ 0.0
+ ],
+ [
+ 117.958348109,
+ 26.542925647499999,
+ 0.0
+ ],
+ [
+ 117.888373931,
+ 26.4845918591,
+ 0.0
+ ],
+ [
+ 117.857911015,
+ 26.4978456258,
+ 0.0
+ ],
+ [
+ 117.839424705,
+ 26.499183313,
+ 0.0
+ ],
+ [
+ 117.804428155,
+ 26.4890732854,
+ 0.0
+ ],
+ [
+ 117.76099271,
+ 26.4517233039,
+ 0.0
+ ],
+ [
+ 117.753303892,
+ 26.436620073099999,
+ 0.0
+ ],
+ [
+ 117.75201977899999,
+ 26.403727692099999,
+ 0.0
+ ],
+ [
+ 117.91731029,
+ 26.433078524900001,
+ 0.0
+ ],
+ [
+ 117.91465157899999,
+ 26.449505160299999,
+ 0.0
+ ],
+ [
+ 118.003006224,
+ 26.489615562299999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33210,
+ "name": "沙县",
+ "country": "CN",
+ "city": "三明",
+ "height": 120,
+ "level": 2,
+ "lat": "26.4268934116723",
+ "lng": "117.834344077017",
+ "radius": 23563,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.94809880699999,
+ 26.612754705099999,
+ 120.0
+ ],
+ [
+ 118.06663912,
+ 26.467479620599999,
+ 120.0
+ ],
+ [
+ 117.72039908799999,
+ 26.2412157857,
+ 120.0
+ ],
+ [
+ 117.6020912,
+ 26.386490870500001,
+ 120.0
+ ],
+ [
+ 117.94809880699999,
+ 26.612754705099999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001377,
+ "name": "沙县",
+ "country": "CN",
+ "city": "三明",
+ "height": 500,
+ "level": 2,
+ "lat": "26.42625",
+ "lng": "117.833333333333",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.833333333333314,
+ 26.877521391677739,
+ 500.0
+ ],
+ [
+ 117.920708589510966,
+ 26.870639050653747,
+ 500.0
+ ],
+ [
+ 118.005398267184603,
+ 26.850203559459825,
+ 500.0
+ ],
+ [
+ 118.084802185406232,
+ 26.816842785528653,
+ 500.0
+ ],
+ [
+ 118.156487880516636,
+ 26.771580990589115,
+ 500.0
+ ],
+ [
+ 118.218266928933147,
+ 26.715806393574269,
+ 500.0
+ ],
+ [
+ 118.268262656631904,
+ 26.651227391604355,
+ 500.0
+ ],
+ [
+ 118.304967038703239,
+ 26.579818971614905,
+ 500.0
+ ],
+ [
+ 118.327285093512032,
+ 26.503761150285296,
+ 500.0
+ ],
+ [
+ 118.334565619410355,
+ 26.425371502091846,
+ 500.0
+ ],
+ [
+ 118.326617669818532,
+ 26.347033971493129,
+ 500.0
+ ],
+ [
+ 118.303712682454545,
+ 26.271126217946435,
+ 500.0
+ ],
+ [
+ 118.266572646368374,
+ 26.199947718450201,
+ 500.0
+ ],
+ [
+ 118.216345091347776,
+ 26.135650761190025,
+ 500.0
+ ],
+ [
+ 118.154566012258286,
+ 26.080176316508243,
+ 500.0
+ ],
+ [
+ 118.083112097476004,
+ 26.035196578724243,
+ 500.0
+ ],
+ [
+ 118.004143822616584,
+ 26.00206574435434,
+ 500.0
+ ],
+ [
+ 117.92004110817112,
+ 25.981780337711509,
+ 500.0
+ ],
+ [
+ 117.833333333333314,
+ 25.97495012090452,
+ 500.0
+ ],
+ [
+ 117.746625558495509,
+ 25.981780337711509,
+ 500.0
+ ],
+ [
+ 117.662522844050045,
+ 26.00206574435434,
+ 500.0
+ ],
+ [
+ 117.583554569190625,
+ 26.035196578724243,
+ 500.0
+ ],
+ [
+ 117.512100654408343,
+ 26.080176316508243,
+ 500.0
+ ],
+ [
+ 117.450321575318853,
+ 26.135650761190025,
+ 500.0
+ ],
+ [
+ 117.400094020298255,
+ 26.199947718450201,
+ 500.0
+ ],
+ [
+ 117.362953984212083,
+ 26.271126217946435,
+ 500.0
+ ],
+ [
+ 117.340048996848097,
+ 26.347033971493129,
+ 500.0
+ ],
+ [
+ 117.332101047256273,
+ 26.425371502091846,
+ 500.0
+ ],
+ [
+ 117.339381573154597,
+ 26.503761150285296,
+ 500.0
+ ],
+ [
+ 117.36169962796339,
+ 26.579818971614905,
+ 500.0
+ ],
+ [
+ 117.398404010034724,
+ 26.651227391604355,
+ 500.0
+ ],
+ [
+ 117.448399737733482,
+ 26.715806393574269,
+ 500.0
+ ],
+ [
+ 117.510178786149993,
+ 26.771580990589115,
+ 500.0
+ ],
+ [
+ 117.581864481260396,
+ 26.816842785528653,
+ 500.0
+ ],
+ [
+ 117.661268399482026,
+ 26.850203559459825,
+ 500.0
+ ],
+ [
+ 117.745958077155663,
+ 26.870639050653747,
+ 500.0
+ ],
+ [
+ 117.833333333333314,
+ 26.877521391677739,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287905,
+ "name": "Saidpur Airport",
+ "country": "BD",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "25.7590822750618",
+ "lng": "88.9089969091596",
+ "radius": 3963,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.901109827599996,
+ 25.7940161129,
+ 0.0
+ ],
+ [
+ 88.928131245200007,
+ 25.727877094699998,
+ 0.0
+ ],
+ [
+ 88.916889168,
+ 25.724149810899998,
+ 0.0
+ ],
+ [
+ 88.889861287800002,
+ 25.790289315599999,
+ 0.0
+ ],
+ [
+ 88.901109827599996,
+ 25.7940161129,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287905,
+ "name": "Saidpur Airport",
+ "country": "BD",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "25.7097253293919",
+ "lng": "88.9291631933034",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.928131245200007,
+ 25.727877094699998,
+ 60.0
+ ],
+ [
+ 88.945579868300001,
+ 25.699163906,
+ 60.0
+ ],
+ [
+ 88.924258790300001,
+ 25.692095198,
+ 60.0
+ ],
+ [
+ 88.916889168,
+ 25.724149810899998,
+ 60.0
+ ],
+ [
+ 88.928131245200007,
+ 25.727877094699998,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287905,
+ "name": "Saidpur Airport",
+ "country": "BD",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "25.8084403994604",
+ "lng": "88.8888279917075",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.893733596,
+ 25.826070673499999,
+ 60.0
+ ],
+ [
+ 88.901109827599996,
+ 25.7940161129,
+ 60.0
+ ],
+ [
+ 88.889861287800002,
+ 25.790289315599999,
+ 60.0
+ ],
+ [
+ 88.87239657799999,
+ 25.819001177899999,
+ 60.0
+ ],
+ [
+ 88.893733596,
+ 25.826070673499999,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287905,
+ "name": "Saidpur Airport",
+ "country": "BD",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "25.6579526558302",
+ "lng": "88.9502973060427",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.945579868300001,
+ 25.699163906,
+ 150.0
+ ],
+ [
+ 88.986260623500002,
+ 25.632158401,
+ 150.0
+ ],
+ [
+ 88.941439165299997,
+ 25.617299662899999,
+ 150.0
+ ],
+ [
+ 88.924258790300001,
+ 25.692095198,
+ 150.0
+ ],
+ [
+ 88.945579868300001,
+ 25.699163906,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287905,
+ "name": "Saidpur Airport",
+ "country": "BD",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "25.860208348051",
+ "lng": "88.8676550740799",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.876506837299999,
+ 25.900863198100001,
+ 150.0
+ ],
+ [
+ 88.893733596,
+ 25.826070673499999,
+ 150.0
+ ],
+ [
+ 88.87239657799999,
+ 25.819001177899999,
+ 150.0
+ ],
+ [
+ 88.831612622600005,
+ 25.885987396499999,
+ 150.0
+ ],
+ [
+ 88.876506837299999,
+ 25.900863198100001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287906,
+ "name": "Saidpur Airport",
+ "country": "BD",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.7590812819769",
+ "lng": "88.9089910576766",
+ "radius": 4914,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.943324387600001,
+ 25.779251188700002,
+ 0.0
+ ],
+ [
+ 88.949656080099999,
+ 25.7637432143,
+ 0.0
+ ],
+ [
+ 88.951700479799996,
+ 25.756451717600001,
+ 0.0
+ ],
+ [
+ 88.952016842600003,
+ 25.7489367417,
+ 0.0
+ ],
+ [
+ 88.947487542900006,
+ 25.73454551,
+ 0.0
+ ],
+ [
+ 88.936853383200003,
+ 25.723057325100001,
+ 0.0
+ ],
+ [
+ 88.921953536299995,
+ 25.7164575338,
+ 0.0
+ ],
+ [
+ 88.9053628538,
+ 25.715886443700001,
+ 0.0
+ ],
+ [
+ 88.889947621100006,
+ 25.721442718799999,
+ 0.0
+ ],
+ [
+ 88.878371532399996,
+ 25.7321663747,
+ 0.0
+ ],
+ [
+ 88.868354051899999,
+ 25.7543962787,
+ 0.0
+ ],
+ [
+ 88.866300744599997,
+ 25.761685736800001,
+ 0.0
+ ],
+ [
+ 88.865974979100002,
+ 25.769200388,
+ 0.0
+ ],
+ [
+ 88.867391317100001,
+ 25.776611817700001,
+ 0.0
+ ],
+ [
+ 88.870488164400001,
+ 25.783596061800001,
+ 0.0
+ ],
+ [
+ 88.881115290300002,
+ 25.795093590899999,
+ 0.0
+ ],
+ [
+ 88.896019269500002,
+ 25.8017038815,
+ 0.0
+ ],
+ [
+ 88.904286605,
+ 25.802779227,
+ 0.0
+ ],
+ [
+ 88.920659654,
+ 25.8002371848,
+ 0.0
+ ],
+ [
+ 88.934467055599995,
+ 25.791917876100001,
+ 0.0
+ ],
+ [
+ 88.943324387600001,
+ 25.779251188700002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281554,
+ "name": "Cooch Behar Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "26.3304962852403",
+ "lng": "89.4672542430709",
+ "radius": 7229,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.438311591900003,
+ 26.311276312,
+ 0.0
+ ],
+ [
+ 89.487509989,
+ 26.357196418800001,
+ 0.0
+ ],
+ [
+ 89.508645084099996,
+ 26.383898964099998,
+ 0.0
+ ],
+ [
+ 89.525120485299993,
+ 26.369720555099999,
+ 0.0
+ ],
+ [
+ 89.496197101600004,
+ 26.349721851799998,
+ 0.0
+ ],
+ [
+ 89.4469947754,
+ 26.303801293100001,
+ 0.0
+ ],
+ [
+ 89.425877439499999,
+ 26.277096750599998,
+ 0.0
+ ],
+ [
+ 89.409406504499998,
+ 26.291273312800001,
+ 0.0
+ ],
+ [
+ 89.438311591900003,
+ 26.311276312,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283478,
+ "name": "Lalmonirhat Airport",
+ "country": "BD",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.887672",
+ "lng": "89.428614",
+ "radius": 976,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.428614,
+ 25.896481750243996,
+ 0.0
+ ],
+ [
+ 89.430305332027757,
+ 25.896347900563125,
+ 0.0
+ ],
+ [
+ 89.43194526263018,
+ 25.895950419350676,
+ 0.0
+ ],
+ [
+ 89.433483953534648,
+ 25.895301386392603,
+ 0.0
+ ],
+ [
+ 89.434874645115755,
+ 25.894420526088194,
+ 0.0
+ ],
+ [
+ 89.436075078041284,
+ 25.89333460766828,
+ 0.0
+ ],
+ [
+ 89.437048777767458,
+ 25.892076631254145,
+ 0.0
+ ],
+ [
+ 89.437766162798624,
+ 25.890684824557493,
+ 0.0
+ ],
+ [
+ 89.438205443037745,
+ 25.889201480779658,
+ 0.0
+ ],
+ [
+ 89.438353280988125,
+ 25.887671673088612,
+ 0.0
+ ],
+ [
+ 89.438205195822775,
+ 25.886141884790113,
+ 0.0
+ ],
+ [
+ 89.437765698186467,
+ 25.88465859685088,
+ 0.0
+ ],
+ [
+ 89.437048151797185,
+ 25.883266875703939,
+ 0.0
+ ],
+ [
+ 89.436074366214172,
+ 25.882009004232042,
+ 0.0
+ ],
+ [
+ 89.434873933288628,
+ 25.880923197489338,
+ 0.0
+ ],
+ [
+ 89.433483327564375,
+ 25.880042442127181,
+ 0.0
+ ],
+ [
+ 89.431944798018009,
+ 25.879393494718812,
+ 0.0
+ ],
+ [
+ 89.430305084812787,
+ 25.878996069344975,
+ 0.0
+ ],
+ [
+ 89.428614,
+ 25.878862239056641,
+ 0.0
+ ],
+ [
+ 89.426922915187205,
+ 25.878996069344975,
+ 0.0
+ ],
+ [
+ 89.425283201981983,
+ 25.879393494718812,
+ 0.0
+ ],
+ [
+ 89.423744672435618,
+ 25.880042442127181,
+ 0.0
+ ],
+ [
+ 89.422354066711364,
+ 25.880923197489338,
+ 0.0
+ ],
+ [
+ 89.421153633785821,
+ 25.882009004232042,
+ 0.0
+ ],
+ [
+ 89.420179848202807,
+ 25.883266875703939,
+ 0.0
+ ],
+ [
+ 89.419462301813525,
+ 25.88465859685088,
+ 0.0
+ ],
+ [
+ 89.419022804177217,
+ 25.886141884790113,
+ 0.0
+ ],
+ [
+ 89.418874719011868,
+ 25.887671673088612,
+ 0.0
+ ],
+ [
+ 89.419022556962247,
+ 25.889201480779658,
+ 0.0
+ ],
+ [
+ 89.419461837201368,
+ 25.890684824557493,
+ 0.0
+ ],
+ [
+ 89.420179222232534,
+ 25.892076631254145,
+ 0.0
+ ],
+ [
+ 89.421152921958708,
+ 25.89333460766828,
+ 0.0
+ ],
+ [
+ 89.422353354884237,
+ 25.894420526088194,
+ 0.0
+ ],
+ [
+ 89.423744046465345,
+ 25.895301386392603,
+ 0.0
+ ],
+ [
+ 89.425282737369812,
+ 25.895950419350676,
+ 0.0
+ ],
+ [
+ 89.426922667972235,
+ 25.896347900563125,
+ 0.0
+ ],
+ [
+ 89.428614,
+ 25.896481750243996,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283357,
+ "name": "Rupsi India Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "26.141455",
+ "lng": "89.907612",
+ "radius": 1026,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 89.907612,
+ 26.150715743956685,
+ 0.0
+ ],
+ [
+ 89.90939381317969,
+ 26.150575041518206,
+ 0.0
+ ],
+ [
+ 89.911121474371271,
+ 26.15015721035347,
+ 0.0
+ ],
+ [
+ 89.912742478475408,
+ 26.149474948867905,
+ 0.0
+ ],
+ [
+ 89.914207563948253,
+ 26.148548991546974,
+ 0.0
+ ],
+ [
+ 89.915472210572389,
+ 26.147407478428619,
+ 0.0
+ ],
+ [
+ 89.916497992703839,
+ 26.146085099443603,
+ 0.0
+ ],
+ [
+ 89.917253746814907,
+ 26.144622039700039,
+ 0.0
+ ],
+ [
+ 89.917716517857514,
+ 26.14306275784082,
+ 0.0
+ ],
+ [
+ 89.917872255756009,
+ 26.141454634670144,
+ 0.0
+ ],
+ [
+ 89.917716240985627,
+ 26.139846533172566,
+ 0.0
+ ],
+ [
+ 89.917253226465959,
+ 26.138287313718546,
+ 0.0
+ ],
+ [
+ 89.916497291639587,
+ 26.136824349585314,
+ 0.0
+ ],
+ [
+ 89.915471413351526,
+ 26.135502087883726,
+ 0.0
+ ],
+ [
+ 89.914206766727389,
+ 26.134360699575787,
+ 0.0
+ ],
+ [
+ 89.912741777411128,
+ 26.133434859538298,
+ 0.0
+ ],
+ [
+ 89.911120954022294,
+ 26.132752693663054,
+ 0.0
+ ],
+ [
+ 89.909393536307789,
+ 26.132334924903539,
+ 0.0
+ ],
+ [
+ 89.907612,
+ 26.132194244138155,
+ 0.0
+ ],
+ [
+ 89.905830463692212,
+ 26.132334924903539,
+ 0.0
+ ],
+ [
+ 89.904103045977706,
+ 26.132752693663054,
+ 0.0
+ ],
+ [
+ 89.902482222588873,
+ 26.133434859538298,
+ 0.0
+ ],
+ [
+ 89.901017233272611,
+ 26.134360699575787,
+ 0.0
+ ],
+ [
+ 89.899752586648475,
+ 26.135502087883726,
+ 0.0
+ ],
+ [
+ 89.898726708360414,
+ 26.136824349585314,
+ 0.0
+ ],
+ [
+ 89.897970773534041,
+ 26.138287313718546,
+ 0.0
+ ],
+ [
+ 89.897507759014374,
+ 26.139846533172566,
+ 0.0
+ ],
+ [
+ 89.897351744243991,
+ 26.141454634670144,
+ 0.0
+ ],
+ [
+ 89.897507482142487,
+ 26.14306275784082,
+ 0.0
+ ],
+ [
+ 89.897970253185093,
+ 26.144622039700039,
+ 0.0
+ ],
+ [
+ 89.898726007296162,
+ 26.146085099443603,
+ 0.0
+ ],
+ [
+ 89.899751789427611,
+ 26.147407478428619,
+ 0.0
+ ],
+ [
+ 89.901016436051748,
+ 26.148548991546974,
+ 0.0
+ ],
+ [
+ 89.902481521524592,
+ 26.149474948867905,
+ 0.0
+ ],
+ [
+ 89.90410252562873,
+ 26.15015721035347,
+ 0.0
+ ],
+ [
+ 89.90583018682031,
+ 26.150575041518206,
+ 0.0
+ ],
+ [
+ 89.907612,
+ 26.150715743956685,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010249,
+ "name": "Saidpur Airport",
+ "country": "BD",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "25.758374",
+ "lng": "88.908903",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.908903,
+ 26.209687428708367,
+ 500.0
+ ],
+ [
+ 88.99577384942657,
+ 26.202805218255133,
+ 500.0
+ ],
+ [
+ 89.079975507682448,
+ 26.182370044699354,
+ 500.0
+ ],
+ [
+ 89.158923552095033,
+ 26.149009564196771,
+ 500.0
+ ],
+ [
+ 89.230200054961315,
+ 26.103747721384863,
+ 500.0
+ ],
+ [
+ 89.291629381324341,
+ 26.047972359976857,
+ 500.0
+ ],
+ [
+ 89.341345467904702,
+ 25.983391501447109,
+ 500.0
+ ],
+ [
+ 89.377848404447761,
+ 25.911979816802759,
+ 500.0
+ ],
+ [
+ 89.400048630529312,
+ 25.835917121226426,
+ 500.0
+ ],
+ [
+ 89.407297594974153,
+ 25.757520944259308,
+ 500.0
+ ],
+ [
+ 89.399404264688812,
+ 25.679175365985802,
+ 500.0
+ ],
+ [
+ 89.376637383315341,
+ 25.603258364638933,
+ 500.0
+ ],
+ [
+ 89.339713843974522,
+ 25.532069899665522,
+ 500.0
+ ],
+ [
+ 89.289773939746908,
+ 25.467762865822809,
+ 500.0
+ ],
+ [
+ 89.228344584327857,
+ 25.412278908883149,
+ 500.0
+ ],
+ [
+ 89.157291854592444,
+ 25.367290902641553,
+ 500.0
+ ],
+ [
+ 89.078764402886549,
+ 25.334153660016103,
+ 500.0
+ ],
+ [
+ 88.995129428978615,
+ 25.313864196700067,
+ 500.0
+ ],
+ [
+ 88.908903,
+ 25.307032591263386,
+ 500.0
+ ],
+ [
+ 88.822676571021375,
+ 25.313864196700067,
+ 500.0
+ ],
+ [
+ 88.739041597113442,
+ 25.334153660016103,
+ 500.0
+ ],
+ [
+ 88.660514145407546,
+ 25.367290902641553,
+ 500.0
+ ],
+ [
+ 88.589461415672133,
+ 25.412278908883149,
+ 500.0
+ ],
+ [
+ 88.528032060253082,
+ 25.467762865822809,
+ 500.0
+ ],
+ [
+ 88.478092156025468,
+ 25.532069899665522,
+ 500.0
+ ],
+ [
+ 88.441168616684649,
+ 25.603258364638933,
+ 500.0
+ ],
+ [
+ 88.418401735311178,
+ 25.679175365985802,
+ 500.0
+ ],
+ [
+ 88.410508405025837,
+ 25.757520944259308,
+ 500.0
+ ],
+ [
+ 88.417757369470678,
+ 25.835917121226426,
+ 500.0
+ ],
+ [
+ 88.439957595552229,
+ 25.911979816802759,
+ 500.0
+ ],
+ [
+ 88.476460532095288,
+ 25.983391501447109,
+ 500.0
+ ],
+ [
+ 88.526176618675649,
+ 26.047972359976857,
+ 500.0
+ ],
+ [
+ 88.587605945038675,
+ 26.103747721384863,
+ 500.0
+ ],
+ [
+ 88.658882447904958,
+ 26.149009564196771,
+ 500.0
+ ],
+ [
+ 88.737830492317542,
+ 26.182370044699354,
+ 500.0
+ ],
+ [
+ 88.82203215057342,
+ 26.202805218255133,
+ 500.0
+ ],
+ [
+ 88.908903,
+ 26.209687428708367,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287039,
+ "name": "Thakurgaon Airport",
+ "country": "BD",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "26.016203",
+ "lng": "88.40236",
+ "radius": 1020,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 88.40236,
+ 26.025409747419094,
+ 0.0
+ ],
+ [
+ 88.404129507630799,
+ 26.025269865496384,
+ 0.0
+ ],
+ [
+ 88.405845237398296,
+ 26.024854470931249,
+ 0.0
+ ],
+ [
+ 88.407455046932981,
+ 26.024176188045995,
+ 0.0
+ ],
+ [
+ 88.408910014980449,
+ 26.02325563036441,
+ 0.0
+ ],
+ [
+ 88.410165928814834,
+ 26.022120773768417,
+ 0.0
+ ],
+ [
+ 88.411184628133483,
+ 26.020806105837238,
+ 0.0
+ ],
+ [
+ 88.411935164537496,
+ 26.019351577291868,
+ 0.0
+ ],
+ [
+ 88.412394741368004,
+ 26.017801387485157,
+ 0.0
+ ],
+ [
+ 88.41254940540432,
+ 26.016202640915715,
+ 0.0
+ ],
+ [
+ 88.412394469523591,
+ 26.014603915648106,
+ 0.0
+ ],
+ [
+ 88.411934653637104,
+ 26.013053787177569,
+ 0.0
+ ],
+ [
+ 88.411183939799272,
+ 26.011599352604655,
+ 0.0
+ ],
+ [
+ 88.410165146070028,
+ 26.010284799947776,
+ 0.0
+ ],
+ [
+ 88.408909232235644,
+ 26.009150066024127,
+ 0.0
+ ],
+ [
+ 88.407454358598756,
+ 26.008229623616842,
+ 0.0
+ ],
+ [
+ 88.405844726497904,
+ 26.007551434704055,
+ 0.0
+ ],
+ [
+ 88.404129235786371,
+ 26.007136101475098,
+ 0.0
+ ],
+ [
+ 88.40236,
+ 26.006996240854214,
+ 0.0
+ ],
+ [
+ 88.400590764213632,
+ 26.007136101475098,
+ 0.0
+ ],
+ [
+ 88.3988752735021,
+ 26.007551434704055,
+ 0.0
+ ],
+ [
+ 88.397265641401248,
+ 26.008229623616842,
+ 0.0
+ ],
+ [
+ 88.39581076776436,
+ 26.009150066024127,
+ 0.0
+ ],
+ [
+ 88.394554853929975,
+ 26.010284799947776,
+ 0.0
+ ],
+ [
+ 88.393536060200731,
+ 26.011599352604655,
+ 0.0
+ ],
+ [
+ 88.392785346362899,
+ 26.013053787177569,
+ 0.0
+ ],
+ [
+ 88.392325530476413,
+ 26.014603915648106,
+ 0.0
+ ],
+ [
+ 88.392170594595683,
+ 26.016202640915715,
+ 0.0
+ ],
+ [
+ 88.392325258631999,
+ 26.017801387485157,
+ 0.0
+ ],
+ [
+ 88.392784835462507,
+ 26.019351577291868,
+ 0.0
+ ],
+ [
+ 88.39353537186652,
+ 26.020806105837238,
+ 0.0
+ ],
+ [
+ 88.394554071185169,
+ 26.022120773768417,
+ 0.0
+ ],
+ [
+ 88.395809985019554,
+ 26.02325563036441,
+ 0.0
+ ],
+ [
+ 88.397264953067022,
+ 26.024176188045995,
+ 0.0
+ ],
+ [
+ 88.398874762601707,
+ 26.024854470931249,
+ 0.0
+ ],
+ [
+ 88.400590492369204,
+ 26.025269865496384,
+ 0.0
+ ],
+ [
+ 88.40236,
+ 26.025409747419094,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295433,
+ "name": "Baljek Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "25.661488",
+ "lng": "90.345039",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 90.345039,
+ 25.666001333357038,
+ 0.0
+ ],
+ [
+ 90.345903788795852,
+ 25.665932763141349,
+ 0.0
+ ],
+ [
+ 90.346742298528881,
+ 25.665729136192937,
+ 0.0
+ ],
+ [
+ 90.347529048961292,
+ 25.665396640268263,
+ 0.0
+ ],
+ [
+ 90.348240133191382,
+ 25.664945379090739,
+ 0.0
+ ],
+ [
+ 90.348853944280307,
+ 25.66438906523317,
+ 0.0
+ ],
+ [
+ 90.349351831889152,
+ 25.66374460331977,
+ 0.0
+ ],
+ [
+ 90.349718668959937,
+ 25.663031576229795,
+ 0.0
+ ],
+ [
+ 90.34994331122229,
+ 25.662271649933242,
+ 0.0
+ ],
+ [
+ 90.350018935578589,
+ 25.661487915060434,
+ 0.0
+ ],
+ [
+ 90.349943247113472,
+ 25.660704185225971,
+ 0.0
+ ],
+ [
+ 90.349718548474755,
+ 25.659944273436729,
+ 0.0
+ ],
+ [
+ 90.349351669559894,
+ 25.659231268573237,
+ 0.0
+ ],
+ [
+ 90.348853759686278,
+ 25.658586833924669,
+ 0.0
+ ],
+ [
+ 90.348239948597353,
+ 25.65803054908173,
+ 0.0
+ ],
+ [
+ 90.347528886632034,
+ 25.657579315169013,
+ 0.0
+ ],
+ [
+ 90.346742178043684,
+ 25.65724684147084,
+ 0.0
+ ],
+ [
+ 90.34590372468702,
+ 25.65704322902975,
+ 0.0
+ ],
+ [
+ 90.345039,
+ 25.656974663852385,
+ 0.0
+ ],
+ [
+ 90.34417427531298,
+ 25.65704322902975,
+ 0.0
+ ],
+ [
+ 90.343335821956316,
+ 25.65724684147084,
+ 0.0
+ ],
+ [
+ 90.342549113367966,
+ 25.657579315169013,
+ 0.0
+ ],
+ [
+ 90.341838051402647,
+ 25.65803054908173,
+ 0.0
+ ],
+ [
+ 90.341224240313721,
+ 25.658586833924669,
+ 0.0
+ ],
+ [
+ 90.340726330440106,
+ 25.659231268573237,
+ 0.0
+ ],
+ [
+ 90.340359451525245,
+ 25.659944273436729,
+ 0.0
+ ],
+ [
+ 90.340134752886527,
+ 25.660704185225971,
+ 0.0
+ ],
+ [
+ 90.340059064421411,
+ 25.661487915060434,
+ 0.0
+ ],
+ [
+ 90.340134688777709,
+ 25.662271649933242,
+ 0.0
+ ],
+ [
+ 90.340359331040062,
+ 25.663031576229795,
+ 0.0
+ ],
+ [
+ 90.340726168110848,
+ 25.66374460331977,
+ 0.0
+ ],
+ [
+ 90.341224055719692,
+ 25.66438906523317,
+ 0.0
+ ],
+ [
+ 90.341837866808618,
+ 25.664945379090739,
+ 0.0
+ ],
+ [
+ 90.342548951038708,
+ 25.665396640268263,
+ 0.0
+ ],
+ [
+ 90.343335701471119,
+ 25.665729136192937,
+ 0.0
+ ],
+ [
+ 90.344174211204148,
+ 25.665932763141349,
+ 0.0
+ ],
+ [
+ 90.345039,
+ 25.666001333357038,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010014,
+ "name": "BARAPANI",
+ "country": "IN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "25.70396389",
+ "lng": "91.97816944",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.97816944,
+ 26.155280710254637,
+ 500.0
+ ],
+ [
+ 92.064999970913576,
+ 26.148398510552482,
+ 500.0
+ ],
+ [
+ 92.149162620998553,
+ 26.127963363249311,
+ 500.0
+ ],
+ [
+ 92.228074227574609,
+ 26.094602907384676,
+ 500.0
+ ],
+ [
+ 92.299318025100661,
+ 26.049341061904432,
+ 500.0
+ ],
+ [
+ 92.360719400941377,
+ 25.993565640113996,
+ 500.0
+ ],
+ [
+ 92.410413139859841,
+ 25.928984633034336,
+ 500.0
+ ],
+ [
+ 92.446899979930109,
+ 25.85757268604279,
+ 500.0
+ ],
+ [
+ 92.469090793593011,
+ 25.781509597946517,
+ 500.0
+ ],
+ [
+ 92.476337240944559,
+ 25.703112894579064,
+ 500.0
+ ],
+ [
+ 92.468448281332201,
+ 25.624766666931638,
+ 500.0
+ ],
+ [
+ 92.445692442429703,
+ 25.548848918972361,
+ 500.0
+ ],
+ [
+ 92.408786209500519,
+ 25.477659649138698,
+ 500.0
+ ],
+ [
+ 92.358869296815911,
+ 25.413351801235653,
+ 500.0
+ ],
+ [
+ 92.297467892047038,
+ 25.35786707566831,
+ 500.0
+ ],
+ [
+ 92.226447223966616,
+ 25.312878401203161,
+ 500.0
+ ],
+ [
+ 92.147955000202828,
+ 25.279740640634042,
+ 500.0
+ ],
+ [
+ 92.064357404285602,
+ 25.259450849417828,
+ 500.0
+ ],
+ [
+ 91.97816944,
+ 25.252619131734821,
+ 500.0
+ ],
+ [
+ 91.891981475714402,
+ 25.259450849417828,
+ 500.0
+ ],
+ [
+ 91.808383879797177,
+ 25.279740640634042,
+ 500.0
+ ],
+ [
+ 91.729891656033388,
+ 25.312878401203161,
+ 500.0
+ ],
+ [
+ 91.658870987952966,
+ 25.35786707566831,
+ 500.0
+ ],
+ [
+ 91.597469583184093,
+ 25.413351801235653,
+ 500.0
+ ],
+ [
+ 91.547552670499485,
+ 25.477659649138698,
+ 500.0
+ ],
+ [
+ 91.510646437570301,
+ 25.548848918972361,
+ 500.0
+ ],
+ [
+ 91.487890598667803,
+ 25.624766666931638,
+ 500.0
+ ],
+ [
+ 91.480001639055445,
+ 25.703112894579064,
+ 500.0
+ ],
+ [
+ 91.487248086406993,
+ 25.781509597946517,
+ 500.0
+ ],
+ [
+ 91.509438900069895,
+ 25.85757268604279,
+ 500.0
+ ],
+ [
+ 91.545925740140163,
+ 25.928984633034336,
+ 500.0
+ ],
+ [
+ 91.595619479058627,
+ 25.993565640113996,
+ 500.0
+ ],
+ [
+ 91.657020854899343,
+ 26.049341061904432,
+ 500.0
+ ],
+ [
+ 91.728264652425395,
+ 26.094602907384676,
+ 500.0
+ ],
+ [
+ 91.807176259001452,
+ 26.127963363249311,
+ 500.0
+ ],
+ [
+ 91.891338909086429,
+ 26.148398510552482,
+ 500.0
+ ],
+ [
+ 91.97816944,
+ 26.155280710254637,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281819,
+ "name": "Lokpriya Gopinath Bordoloi International Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "26.1077482724966",
+ "lng": "91.5857543517194",
+ "radius": 4592,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.562850968099994,
+ 26.071934772399999,
+ 0.0
+ ],
+ [
+ 91.597539137799998,
+ 26.147670311900001,
+ 0.0
+ ],
+ [
+ 91.608657522800002,
+ 26.1435655,
+ 0.0
+ ],
+ [
+ 91.573961737700003,
+ 26.067829053400001,
+ 0.0
+ ],
+ [
+ 91.562850968099994,
+ 26.071934772399999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281819,
+ "name": "Lokpriya Gopinath Bordoloi International Airport",
+ "country": "IN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "26.1616687900419",
+ "lng": "91.6104532508009",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.597539137799998,
+ 26.147670311900001,
+ 60.0
+ ],
+ [
+ 91.606274823899994,
+ 26.179452609199998,
+ 60.0
+ ],
+ [
+ 91.627364774300005,
+ 26.171666043199998,
+ 60.0
+ ],
+ [
+ 91.608657522800002,
+ 26.1435655,
+ 60.0
+ ],
+ [
+ 91.597539137799998,
+ 26.147670311900001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281819,
+ "name": "Lokpriya Gopinath Bordoloi International Airport",
+ "country": "IN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "26.0538308381806",
+ "lng": "91.5610564956729",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.544161317,
+ 26.043833343799999,
+ 60.0
+ ],
+ [
+ 91.562850968099994,
+ 26.071934772399999,
+ 60.0
+ ],
+ [
+ 91.573961737700003,
+ 26.067829053400001,
+ 60.0
+ ],
+ [
+ 91.565233545300003,
+ 26.036046942799999,
+ 60.0
+ ],
+ [
+ 91.544161317,
+ 26.043833343799999,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281819,
+ "name": "Lokpriya Gopinath Bordoloi International Airport",
+ "country": "IN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "26.2126836051836",
+ "lng": "91.6338439632363",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.606274823899994,
+ 26.179452609199998,
+ 150.0
+ ],
+ [
+ 91.6266766408,
+ 26.253609249499998,
+ 150.0
+ ],
+ [
+ 91.67105013,
+ 26.237224563200002,
+ 150.0
+ ],
+ [
+ 91.627364774300005,
+ 26.171666043199998,
+ 150.0
+ ],
+ [
+ 91.606274823899994,
+ 26.179452609199998,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281819,
+ "name": "Lokpriya Gopinath Bordoloi International Airport",
+ "country": "IN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "26.0028111428424",
+ "lng": "91.5377086877997",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.500586939499996,
+ 25.978254003,
+ 150.0
+ ],
+ [
+ 91.544161317,
+ 26.043833343799999,
+ 150.0
+ ],
+ [
+ 91.565233545300003,
+ 26.036046942799999,
+ 150.0
+ ],
+ [
+ 91.544886137899994,
+ 25.961886648299998,
+ 150.0
+ ],
+ [
+ 91.500586939499996,
+ 25.978254003,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30304715,
+ "name": "BARAPANI",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "25.7051635554179",
+ "lng": "91.9828375446987",
+ "radius": 3714,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.955235866300001,
+ 25.682860358799999,
+ 0.0
+ ],
+ [
+ 92.001105098300002,
+ 25.734236148400001,
+ 0.0
+ ],
+ [
+ 92.010439415799993,
+ 25.727471755100002,
+ 0.0
+ ],
+ [
+ 91.964565682100002,
+ 25.676095435200001,
+ 0.0
+ ],
+ [
+ 91.955235866300001,
+ 25.682860358799999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30304715,
+ "name": "BARAPANI",
+ "country": "IN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "25.7443765155686",
+ "lng": "92.0178496872859",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 92.001105098300002,
+ 25.734236148400001,
+ 60.0
+ ],
+ [
+ 92.019451782,
+ 25.7624941093,
+ 60.0
+ ],
+ [
+ 92.037155580900006,
+ 25.749662757,
+ 60.0
+ ],
+ [
+ 92.010439415799993,
+ 25.727471755100002,
+ 60.0
+ ],
+ [
+ 92.001105098300002,
+ 25.734236148400001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30304715,
+ "name": "BARAPANI",
+ "country": "IN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "25.6659547338627",
+ "lng": "91.9478302248043",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.928538116699997,
+ 25.6606660098,
+ 60.0
+ ],
+ [
+ 91.955235866300001,
+ 25.682860358799999,
+ 60.0
+ ],
+ [
+ 91.964565682100002,
+ 25.676095435200001,
+ 60.0
+ ],
+ [
+ 91.946234686,
+ 25.647836222700001,
+ 60.0
+ ],
+ [
+ 91.928538116699997,
+ 25.6606660098,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30304715,
+ "name": "BARAPANI",
+ "country": "IN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "25.7873509476708",
+ "lng": "92.0562554824876",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 92.019451782,
+ 25.7624941093,
+ 150.0
+ ],
+ [
+ 92.062294707099994,
+ 25.828420397199999,
+ 150.0
+ ],
+ [
+ 92.099532140199997,
+ 25.8014227862,
+ 150.0
+ ],
+ [
+ 92.037155580900006,
+ 25.749662757,
+ 150.0
+ ],
+ [
+ 92.019451782,
+ 25.7624941093,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30304715,
+ "name": "BARAPANI",
+ "country": "IN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "25.6229656623107",
+ "lng": "91.9094827376856",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.866281988200001,
+ 25.608860330300001,
+ 150.0
+ ],
+ [
+ 91.928538116699997,
+ 25.6606660098,
+ 150.0
+ ],
+ [
+ 91.946234686,
+ 25.647836222700001,
+ 150.0
+ ],
+ [
+ 91.903496094199994,
+ 25.581889172,
+ 150.0
+ ],
+ [
+ 91.866281988200001,
+ 25.608860330300001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009500,
+ "name": "Lokpriya Gopinath Bordoloi International Airport",
+ "country": "IN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.107705",
+ "lng": "91.586557",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.586557,
+ 26.558996534486905,
+ 500.0
+ ],
+ [
+ 91.673689474948091,
+ 26.552114255434475,
+ 500.0
+ ],
+ [
+ 91.758144257652916,
+ 26.531678914727777,
+ 500.0
+ ],
+ [
+ 91.837328750838822,
+ 26.498318278754567,
+ 500.0
+ ],
+ [
+ 91.908817486549438,
+ 26.453056457600827,
+ 500.0
+ ],
+ [
+ 91.97042819636205,
+ 26.397281490775729,
+ 500.0
+ ],
+ [
+ 92.020289313703913,
+ 26.332701595802455,
+ 500.0
+ ],
+ [
+ 92.056896720246627,
+ 26.261291608619569,
+ 500.0
+ ],
+ [
+ 92.079158045004689,
+ 26.185231449681456,
+ 500.0
+ ],
+ [
+ 92.086423363710125,
+ 26.106838672159512,
+ 500.0
+ ],
+ [
+ 92.078501689954138,
+ 26.028497285598373,
+ 500.0
+ ],
+ [
+ 92.055663166497382,
+ 25.952585102159119,
+ 500.0
+ ],
+ [
+ 92.01862733109904,
+ 25.881401829832082,
+ 500.0
+ ],
+ [
+ 91.968538231389246,
+ 25.81710004715292,
+ 500.0
+ ],
+ [
+ 91.906927491685991,
+ 25.761621047727193,
+ 500.0
+ ],
+ [
+ 91.835666692548173,
+ 25.716637351041989,
+ 500.0
+ ],
+ [
+ 91.756910617836979,
+ 25.68350344857695,
+ 500.0
+ ],
+ [
+ 91.673033063721476,
+ 25.663216099771677,
+ 500.0
+ ],
+ [
+ 91.586557,
+ 25.656385218157951,
+ 500.0
+ ],
+ [
+ 91.500080936278522,
+ 25.663216099771677,
+ 500.0
+ ],
+ [
+ 91.416203382163019,
+ 25.68350344857695,
+ 500.0
+ ],
+ [
+ 91.337447307451825,
+ 25.716637351041989,
+ 500.0
+ ],
+ [
+ 91.266186508314007,
+ 25.761621047727193,
+ 500.0
+ ],
+ [
+ 91.204575768610752,
+ 25.81710004715292,
+ 500.0
+ ],
+ [
+ 91.154486668900958,
+ 25.881401829832082,
+ 500.0
+ ],
+ [
+ 91.117450833502616,
+ 25.952585102159119,
+ 500.0
+ ],
+ [
+ 91.094612310045861,
+ 26.028497285598373,
+ 500.0
+ ],
+ [
+ 91.086690636289873,
+ 26.106838672159512,
+ 500.0
+ ],
+ [
+ 91.093955954995309,
+ 26.185231449681456,
+ 500.0
+ ],
+ [
+ 91.116217279753371,
+ 26.261291608619569,
+ 500.0
+ ],
+ [
+ 91.152824686296086,
+ 26.332701595802455,
+ 500.0
+ ],
+ [
+ 91.202685803637948,
+ 26.397281490775729,
+ 500.0
+ ],
+ [
+ 91.26429651345056,
+ 26.453056457600827,
+ 500.0
+ ],
+ [
+ 91.335785249161177,
+ 26.498318278754567,
+ 500.0
+ ],
+ [
+ 91.414969742347083,
+ 26.531678914727777,
+ 500.0
+ ],
+ [
+ 91.499424525051907,
+ 26.552114255434475,
+ 500.0
+ ],
+ [
+ 91.586557,
+ 26.558996534486905,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281820,
+ "name": "Lokpriya Gopinath Bordoloi International Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "26.1071896786661",
+ "lng": "91.5872666571125",
+ "radius": 5537,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.542785204599994,
+ 26.1085143315,
+ 0.0
+ ],
+ [
+ 91.558579206100006,
+ 26.140955164,
+ 0.0
+ ],
+ [
+ 91.570631950199996,
+ 26.151284369799999,
+ 0.0
+ ],
+ [
+ 91.578183321200001,
+ 26.1545418428,
+ 0.0
+ ],
+ [
+ 91.594699338200002,
+ 26.156536359099999,
+ 0.0
+ ],
+ [
+ 91.610690523100004,
+ 26.152326861799999,
+ 0.0
+ ],
+ [
+ 91.623389788200001,
+ 26.142641806899999,
+ 0.0
+ ],
+ [
+ 91.630600919900004,
+ 26.129156916,
+ 0.0
+ ],
+ [
+ 91.631714925200001,
+ 26.121703348099999,
+ 0.0
+ ],
+ [
+ 91.631078584199997,
+ 26.114204708300001,
+ 0.0
+ ],
+ [
+ 91.616868458300004,
+ 26.0811334184,
+ 0.0
+ ],
+ [
+ 91.607461835500004,
+ 26.068789868500001,
+ 0.0
+ ],
+ [
+ 91.593280998300003,
+ 26.0609489263,
+ 0.0
+ ],
+ [
+ 91.5851448847,
+ 26.059178237099999,
+ 0.0
+ ],
+ [
+ 91.568542257199994,
+ 26.060319653600001,
+ 0.0
+ ],
+ [
+ 91.553890332799995,
+ 26.067427184700001,
+ 0.0
+ ],
+ [
+ 91.54372122,
+ 26.079272791800001,
+ 0.0
+ ],
+ [
+ 91.540907096500007,
+ 26.086355703399999,
+ 0.0
+ ],
+ [
+ 91.539793871300006,
+ 26.093809324799999,
+ 0.0
+ ],
+ [
+ 91.540430516900003,
+ 26.101307936,
+ 0.0
+ ],
+ [
+ 91.542785204599994,
+ 26.1085143315,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30293027,
+ "name": "BARAPANI",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.7055601861649",
+ "lng": "91.9822903752773",
+ "radius": 4657,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 91.947555897399994,
+ 25.723046444800001,
+ 0.0
+ ],
+ [
+ 91.961760783,
+ 25.737708649799998,
+ 0.0
+ ],
+ [
+ 91.968746092,
+ 25.741827424699999,
+ 0.0
+ ],
+ [
+ 91.984771538499999,
+ 25.745750136,
+ 0.0
+ ],
+ [
+ 92.001182635500001,
+ 25.743460714,
+ 0.0
+ ],
+ [
+ 92.008634164,
+ 25.740068882199999,
+ 0.0
+ ],
+ [
+ 92.020414155500006,
+ 25.7295262582,
+ 0.0
+ ],
+ [
+ 92.026413832299994,
+ 25.715578611800002,
+ 0.0
+ ],
+ [
+ 92.02687707299999,
+ 25.708069826700001,
+ 0.0
+ ],
+ [
+ 92.025597571199995,
+ 25.700638346,
+ 0.0
+ ],
+ [
+ 92.018103001,
+ 25.687282056299999,
+ 0.0
+ ],
+ [
+ 92.003875560500006,
+ 25.672608205700001,
+ 0.0
+ ],
+ [
+ 91.996890371,
+ 25.668494863,
+ 0.0
+ ],
+ [
+ 91.980872327599997,
+ 25.664582096899998,
+ 0.0
+ ],
+ [
+ 91.964473230300001,
+ 25.6668780736,
+ 0.0
+ ],
+ [
+ 91.950526349800001,
+ 25.6749861252,
+ 0.0
+ ],
+ [
+ 91.941442239599994,
+ 25.687505279,
+ 0.0
+ ],
+ [
+ 91.9392563241,
+ 25.694763091599999,
+ 0.0
+ ],
+ [
+ 91.938792583799994,
+ 25.702271849,
+ 0.0
+ ],
+ [
+ 91.940071608400004,
+ 25.7097033989,
+ 0.0
+ ],
+ [
+ 91.947555897399994,
+ 25.723046444800001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001336,
+ "name": "Dali Airport",
+ "country": "CN",
+ "city": "Xiaguan",
+ "height": 500,
+ "level": 2,
+ "lat": "25.650105",
+ "lng": "100.318848",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.318848,
+ 26.101425172472549,
+ 500.0
+ ],
+ [
+ 100.405638734620041,
+ 26.094542983431221,
+ 500.0
+ ],
+ [
+ 100.489762881852144,
+ 26.074107862175637,
+ 500.0
+ ],
+ [
+ 100.568638522748614,
+ 26.040747430816381,
+ 500.0
+ ],
+ [
+ 100.639850038918297,
+ 25.995485582888232,
+ 500.0
+ ],
+ [
+ 100.701223826820339,
+ 25.939710101619895,
+ 500.0
+ ],
+ [
+ 100.750895508260641,
+ 25.875128947908799,
+ 500.0
+ ],
+ [
+ 100.787366461199113,
+ 25.803716741777301,
+ 500.0
+ ],
+ [
+ 100.80954798526362,
+ 25.727653265828192,
+ 500.0
+ ],
+ [
+ 100.816791948994961,
+ 25.649256042217402,
+ 500.0
+ ],
+ [
+ 100.808907304180906,
+ 25.570909172710934,
+ 500.0
+ ],
+ [
+ 100.786162365228904,
+ 25.494990686716296,
+ 500.0
+ ],
+ [
+ 100.749273214747291,
+ 25.423800621220181,
+ 500.0
+ ],
+ [
+ 100.699378995639947,
+ 25.359491968523997,
+ 500.0
+ ],
+ [
+ 100.638005178935728,
+ 25.304006483054224,
+ 500.0
+ ],
+ [
+ 100.567016156305627,
+ 25.259017147935328,
+ 500.0
+ ],
+ [
+ 100.488558702949419,
+ 25.225878875281424,
+ 500.0
+ ],
+ [
+ 100.404997999406973,
+ 25.205588759870775,
+ 500.0
+ ],
+ [
+ 100.318848,
+ 25.198756931209417,
+ 500.0
+ ],
+ [
+ 100.232698000593032,
+ 25.205588759870775,
+ 500.0
+ ],
+ [
+ 100.149137297050586,
+ 25.225878875281424,
+ 500.0
+ ],
+ [
+ 100.070679843694379,
+ 25.259017147935328,
+ 500.0
+ ],
+ [
+ 99.999690821064277,
+ 25.304006483054224,
+ 500.0
+ ],
+ [
+ 99.938317004360059,
+ 25.359491968523997,
+ 500.0
+ ],
+ [
+ 99.888422785252715,
+ 25.423800621220181,
+ 500.0
+ ],
+ [
+ 99.851533634771101,
+ 25.494990686716296,
+ 500.0
+ ],
+ [
+ 99.8287886958191,
+ 25.570909172710934,
+ 500.0
+ ],
+ [
+ 99.820904051005044,
+ 25.649256042217402,
+ 500.0
+ ],
+ [
+ 99.828148014736385,
+ 25.727653265828192,
+ 500.0
+ ],
+ [
+ 99.850329538800892,
+ 25.803716741777301,
+ 500.0
+ ],
+ [
+ 99.886800491739365,
+ 25.875128947908799,
+ 500.0
+ ],
+ [
+ 99.936472173179666,
+ 25.939710101619895,
+ 500.0
+ ],
+ [
+ 99.997845961081708,
+ 25.995485582888232,
+ 500.0
+ ],
+ [
+ 100.069057477251391,
+ 26.040747430816381,
+ 500.0
+ ],
+ [
+ 100.147933118147861,
+ 26.074107862175637,
+ 500.0
+ ],
+ [
+ 100.232057265379964,
+ 26.094542983431221,
+ 500.0
+ ],
+ [
+ 100.318848,
+ 26.101425172472549,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 627,
+ "name": "Dali Airport",
+ "country": "CN",
+ "city": "Xiaguan",
+ "height": 0,
+ "level": 2,
+ "lat": "25.6064052352542",
+ "lng": "100.328205077607",
+ "radius": 13755,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.311098867,
+ 25.569192580700001,
+ 0.0
+ ],
+ [
+ 100.314519586,
+ 25.483314916,
+ 0.0
+ ],
+ [
+ 100.39187283299999,
+ 25.496841364200002,
+ 0.0
+ ],
+ [
+ 100.35951869,
+ 25.577655769700002,
+ 0.0
+ ],
+ [
+ 100.386679622,
+ 25.5996306043,
+ 0.0
+ ],
+ [
+ 100.394637203,
+ 25.614597463500001,
+ 0.0
+ ],
+ [
+ 100.398029228,
+ 25.630911487799999,
+ 0.0
+ ],
+ [
+ 100.396622728,
+ 25.6474612216,
+ 0.0
+ ],
+ [
+ 100.384583568,
+ 25.693637865,
+ 0.0
+ ],
+ [
+ 100.361107485,
+ 25.718852873300001,
+ 0.0
+ ],
+ [
+ 100.326776279,
+ 25.730106625800001,
+ 0.0
+ ],
+ [
+ 100.311098867,
+ 25.569192580700001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 627,
+ "name": "Dali Airport",
+ "country": "CN",
+ "city": "Xiaguan",
+ "height": 0,
+ "level": 2,
+ "lat": "25.6928937782322",
+ "lng": "100.30960635334",
+ "radius": 13755,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.32335169,
+ 25.815981284799999,
+ 0.0
+ ],
+ [
+ 100.245823103,
+ 25.8024530267,
+ 0.0
+ ],
+ [
+ 100.278293123,
+ 25.7216431692,
+ 0.0
+ ],
+ [
+ 100.263037891,
+ 25.712209618599999,
+ 0.0
+ ],
+ [
+ 100.243147369,
+ 25.684605406,
+ 0.0
+ ],
+ [
+ 100.23979426299999,
+ 25.668284590100001,
+ 0.0
+ ],
+ [
+ 100.24124229,
+ 25.651737749399999,
+ 0.0
+ ],
+ [
+ 100.253323089,
+ 25.605624271899998,
+ 0.0
+ ],
+ [
+ 100.27680403799999,
+ 25.5804298101,
+ 0.0
+ ],
+ [
+ 100.311098867,
+ 25.569192580700001,
+ 0.0
+ ],
+ [
+ 100.326776279,
+ 25.730106625800001,
+ 0.0
+ ],
+ [
+ 100.32335169,
+ 25.815981284799999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 627,
+ "name": "Dali Airport",
+ "country": "CN",
+ "city": "Xiaguan",
+ "height": 120,
+ "level": 2,
+ "lat": "25.6496390869534",
+ "lng": "100.318865532543",
+ "radius": 23906,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.17955998799999,
+ 25.8242180865,
+ 120.0
+ ],
+ [
+ 100.375756953,
+ 25.858442817,
+ 120.0
+ ],
+ [
+ 100.457884248,
+ 25.475006371900001,
+ 120.0
+ ],
+ [
+ 100.262316755,
+ 25.440781641099999,
+ 120.0
+ ],
+ [
+ 100.17955998799999,
+ 25.8242180865,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001366,
+ "name": "Anshun Huangguoshu Airport",
+ "country": "CN",
+ "city": "Anshun",
+ "height": 500,
+ "level": 2,
+ "lat": "26.260626",
+ "lng": "105.873664",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.873664,
+ 26.711907885750012,
+ 500.0
+ ],
+ [
+ 105.960912520060873,
+ 26.705025576883244,
+ 500.0
+ ],
+ [
+ 106.045479578096234,
+ 26.684590163718227,
+ 500.0
+ ],
+ [
+ 106.124768951722544,
+ 26.651229461086491,
+ 500.0
+ ],
+ [
+ 106.19635182899431,
+ 26.605967651777789,
+ 500.0
+ ],
+ [
+ 106.258042999372179,
+ 26.550192861328295,
+ 500.0
+ ],
+ [
+ 106.307968455075823,
+ 26.485613393378028,
+ 500.0
+ ],
+ [
+ 106.344622210686396,
+ 26.414204156279371,
+ 500.0
+ ],
+ [
+ 106.366910647667225,
+ 26.338145116651006,
+ 500.0
+ ],
+ [
+ 106.374183231555193,
+ 26.259753837919213,
+ 500.0
+ ],
+ [
+ 106.366248995384495,
+ 26.181414298473094,
+ 500.0
+ ],
+ [
+ 106.343378701275469,
+ 26.105504237317021,
+ 500.0
+ ],
+ [
+ 106.306293058993006,
+ 26.034323251753143,
+ 500.0
+ ],
+ [
+ 106.256137780804593,
+ 25.970023781169697,
+ 500.0
+ ],
+ [
+ 106.194446580163074,
+ 25.914546964241016,
+ 500.0
+ ],
+ [
+ 106.123093479009498,
+ 25.869565164603131,
+ 500.0
+ ],
+ [
+ 106.044235981544631,
+ 25.836432732357004,
+ 500.0
+ ],
+ [
+ 105.960250810901087,
+ 25.816146314241418,
+ 500.0
+ ],
+ [
+ 105.873664,
+ 25.809315751207144,
+ 500.0
+ ],
+ [
+ 105.787077189098923,
+ 25.816146314241418,
+ 500.0
+ ],
+ [
+ 105.703092018455379,
+ 25.836432732357004,
+ 500.0
+ ],
+ [
+ 105.624234520990512,
+ 25.869565164603131,
+ 500.0
+ ],
+ [
+ 105.552881419836936,
+ 25.914546964241016,
+ 500.0
+ ],
+ [
+ 105.491190219195417,
+ 25.970023781169697,
+ 500.0
+ ],
+ [
+ 105.441034941007004,
+ 26.034323251753143,
+ 500.0
+ ],
+ [
+ 105.403949298724541,
+ 26.105504237317021,
+ 500.0
+ ],
+ [
+ 105.381079004615515,
+ 26.181414298473094,
+ 500.0
+ ],
+ [
+ 105.373144768444817,
+ 26.259753837919213,
+ 500.0
+ ],
+ [
+ 105.380417352332785,
+ 26.338145116651006,
+ 500.0
+ ],
+ [
+ 105.402705789313615,
+ 26.414204156279371,
+ 500.0
+ ],
+ [
+ 105.439359544924187,
+ 26.485613393378028,
+ 500.0
+ ],
+ [
+ 105.489285000627831,
+ 26.550192861328295,
+ 500.0
+ ],
+ [
+ 105.550976171005701,
+ 26.605967651777789,
+ 500.0
+ ],
+ [
+ 105.622559048277466,
+ 26.651229461086491,
+ 500.0
+ ],
+ [
+ 105.701848421903776,
+ 26.684590163718227,
+ 500.0
+ ],
+ [
+ 105.786415479939137,
+ 26.705025576883244,
+ 500.0
+ ],
+ [
+ 105.873664,
+ 26.711907885750012,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1253,
+ "name": "Anshun Huangguoshu Airport",
+ "country": "CN",
+ "city": "Anshun",
+ "height": 0,
+ "level": 2,
+ "lat": "26.2725250521378",
+ "lng": "105.920843549864",
+ "radius": 13859,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.964517575,
+ 26.2610611944,
+ 0.0
+ ],
+ [
+ 106.05984126,
+ 26.271410063400001,
+ 0.0
+ ],
+ [
+ 106.038888068,
+ 26.3383912231,
+ 0.0
+ ],
+ [
+ 105.951463932,
+ 26.302808338199998,
+ 0.0
+ ],
+ [
+ 105.939531944,
+ 26.3161165942,
+ 0.0
+ ],
+ [
+ 105.907256829,
+ 26.331813389299999,
+ 0.0
+ ],
+ [
+ 105.87054724,
+ 26.330934328400001,
+ 0.0
+ ],
+ [
+ 105.817628864,
+ 26.3154746692,
+ 0.0
+ ],
+ [
+ 105.79181715,
+ 26.2920692563,
+ 0.0
+ ],
+ [
+ 105.784832952,
+ 26.276697598199998,
+ 0.0
+ ],
+ [
+ 105.782524966,
+ 26.260228896600001,
+ 0.0
+ ],
+ [
+ 105.964517575,
+ 26.2610611944,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1253,
+ "name": "Anshun Huangguoshu Airport",
+ "country": "CN",
+ "city": "Anshun",
+ "height": 0,
+ "level": 2,
+ "lat": "26.2486731087581",
+ "lng": "105.826232547548",
+ "radius": 13858,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.687272209,
+ 26.249846189900001,
+ 0.0
+ ],
+ [
+ 105.708248345,
+ 26.18286768,
+ 0.0
+ ],
+ [
+ 105.795580488,
+ 26.2185522242,
+ 0.0
+ ],
+ [
+ 105.807520192,
+ 26.205242082600002,
+ 0.0
+ ],
+ [
+ 105.839767256,
+ 26.189557042299999,
+ 0.0
+ ],
+ [
+ 105.876432304,
+ 26.190431953,
+ 0.0
+ ],
+ [
+ 105.929327388,
+ 26.2058680184,
+ 0.0
+ ],
+ [
+ 105.95516157,
+ 26.229236455500001,
+ 0.0
+ ],
+ [
+ 105.962174608,
+ 26.2445965014,
+ 0.0
+ ],
+ [
+ 105.964517575,
+ 26.2610611944,
+ 0.0
+ ],
+ [
+ 105.782524966,
+ 26.260228896600001,
+ 0.0
+ ],
+ [
+ 105.687272209,
+ 26.249846189900001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1253,
+ "name": "Anshun Huangguoshu Airport",
+ "country": "CN",
+ "city": "Anshun",
+ "height": 120,
+ "level": 2,
+ "lat": "26.2604073729485",
+ "lng": "105.873601305762",
+ "radius": 24010,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.689952804,
+ 26.120879105499998,
+ 120.0
+ ],
+ [
+ 105.635726899,
+ 26.294038586199999,
+ 120.0
+ ],
+ [
+ 106.05718354,
+ 26.400232303599999,
+ 120.0
+ ],
+ [
+ 106.111459055,
+ 26.227072822899999,
+ 120.0
+ ],
+ [
+ 105.689952804,
+ 26.120879105499998,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1630,
+ "name": "Liping Airport",
+ "country": "CN",
+ "city": "Liping",
+ "height": 0,
+ "level": 2,
+ "lat": "26.3033266898366",
+ "lng": "109.105746876343",
+ "radius": 13082,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.070388405,
+ 26.3038061982,
+ 0.0
+ ],
+ [
+ 108.978708358,
+ 26.273827065900001,
+ 0.0
+ ],
+ [
+ 109.016503039,
+ 26.2170828697,
+ 0.0
+ ],
+ [
+ 109.091479495,
+ 26.270418853500001,
+ 0.0
+ ],
+ [
+ 109.11995598199999,
+ 26.256506098300001,
+ 0.0
+ ],
+ [
+ 109.138289199,
+ 26.254232626,
+ 0.0
+ ],
+ [
+ 109.15665414199999,
+ 26.256289736100001,
+ 0.0
+ ],
+ [
+ 109.19548929299999,
+ 26.2692149716,
+ 0.0
+ ],
+ [
+ 109.220844898,
+ 26.2899899654,
+ 0.0
+ ],
+ [
+ 109.228981679,
+ 26.304899334,
+ 0.0
+ ],
+ [
+ 109.231270262,
+ 26.337747825,
+ 0.0
+ ],
+ [
+ 109.070388405,
+ 26.3038061982,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1630,
+ "name": "Liping Airport",
+ "country": "CN",
+ "city": "Liping",
+ "height": 0,
+ "level": 2,
+ "lat": "26.3481815228544",
+ "lng": "109.190525155208",
+ "radius": 12950,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.317948771,
+ 26.371151164899999,
+ 0.0
+ ],
+ [
+ 109.283503877,
+ 26.429583087,
+ 0.0
+ ],
+ [
+ 109.205121389,
+ 26.374587677800001,
+ 0.0
+ ],
+ [
+ 109.176963218,
+ 26.389830421599999,
+ 0.0
+ ],
+ [
+ 109.158728461,
+ 26.3927785809,
+ 0.0
+ ],
+ [
+ 109.122828143,
+ 26.385777928500001,
+ 0.0
+ ],
+ [
+ 109.080716495,
+ 26.351581251199999,
+ 0.0
+ ],
+ [
+ 109.072606914,
+ 26.336658550100001,
+ 0.0
+ ],
+ [
+ 109.069084832,
+ 26.320363254699998,
+ 0.0
+ ],
+ [
+ 109.070388405,
+ 26.3038061982,
+ 0.0
+ ],
+ [
+ 109.231270262,
+ 26.337747825,
+ 0.0
+ ],
+ [
+ 109.317948771,
+ 26.371151164899999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1630,
+ "name": "Liping Airport",
+ "country": "CN",
+ "city": "Liping",
+ "height": 120,
+ "level": 2,
+ "lat": "26.322283920504",
+ "lng": "109.14974338757",
+ "radius": 23354,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.28222377199999,
+ 26.495588594800001,
+ 120.0
+ ],
+ [
+ 109.383242483,
+ 26.3401330477,
+ 120.0
+ ],
+ [
+ 109.017112212,
+ 26.149193846900001,
+ 120.0
+ ],
+ [
+ 108.916259909,
+ 26.304649394199998,
+ 120.0
+ ],
+ [
+ 109.28222377199999,
+ 26.495588594800001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001502,
+ "name": "Liping Airport",
+ "country": "CN",
+ "city": "Liping",
+ "height": 500,
+ "level": 2,
+ "lat": "26.322162",
+ "lng": "109.149912",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.149912,
+ 26.773439992081425,
+ 500.0
+ ],
+ [
+ 109.237207479668456,
+ 26.766557671251263,
+ 500.0
+ ],
+ [
+ 109.321819971957524,
+ 26.746122229042523,
+ 500.0
+ ],
+ [
+ 109.401151787652367,
+ 26.71276149981389,
+ 500.0
+ ],
+ [
+ 109.472772761693847,
+ 26.667499695660215,
+ 500.0
+ ],
+ [
+ 109.534496492996809,
+ 26.611724976790974,
+ 500.0
+ ],
+ [
+ 109.584447985872004,
+ 26.547145681552138,
+ 500.0
+ ],
+ [
+ 109.621120499253493,
+ 26.475736747473942,
+ 500.0
+ ],
+ [
+ 109.643419909608454,
+ 26.399678159766935,
+ 500.0
+ ],
+ [
+ 109.65069543535418,
+ 26.321287485969641,
+ 500.0
+ ],
+ [
+ 109.642756117180298,
+ 26.242948691887175,
+ 500.0
+ ],
+ [
+ 109.61987296763543,
+ 26.167039487006935,
+ 500.0
+ ],
+ [
+ 109.582767170582159,
+ 26.095859423984496,
+ 500.0
+ ],
+ [
+ 109.532585111792073,
+ 26.031560886090531,
+ 500.0
+ ],
+ [
+ 109.470861350074031,
+ 25.976084949521791,
+ 500.0
+ ],
+ [
+ 109.39947089534887,
+ 25.931103915069489,
+ 500.0
+ ],
+ [
+ 109.320572352762753,
+ 25.897972075827873,
+ 500.0
+ ],
+ [
+ 109.236543630078657,
+ 25.877686033093784,
+ 500.0
+ ],
+ [
+ 109.149912,
+ 25.870855598553206,
+ 500.0
+ ],
+ [
+ 109.063280369921344,
+ 25.877686033093784,
+ 500.0
+ ],
+ [
+ 108.979251647237248,
+ 25.897972075827873,
+ 500.0
+ ],
+ [
+ 108.900353104651131,
+ 25.931103915069489,
+ 500.0
+ ],
+ [
+ 108.82896264992597,
+ 25.976084949521791,
+ 500.0
+ ],
+ [
+ 108.767238888207928,
+ 26.031560886090531,
+ 500.0
+ ],
+ [
+ 108.717056829417842,
+ 26.095859423984496,
+ 500.0
+ ],
+ [
+ 108.679951032364571,
+ 26.167039487006935,
+ 500.0
+ ],
+ [
+ 108.657067882819703,
+ 26.242948691887175,
+ 500.0
+ ],
+ [
+ 108.649128564645821,
+ 26.321287485969641,
+ 500.0
+ ],
+ [
+ 108.656404090391547,
+ 26.399678159766935,
+ 500.0
+ ],
+ [
+ 108.678703500746508,
+ 26.475736747473942,
+ 500.0
+ ],
+ [
+ 108.715376014127997,
+ 26.547145681552138,
+ 500.0
+ ],
+ [
+ 108.765327507003192,
+ 26.611724976790974,
+ 500.0
+ ],
+ [
+ 108.827051238306154,
+ 26.667499695660215,
+ 500.0
+ ],
+ [
+ 108.898672212347634,
+ 26.71276149981389,
+ 500.0
+ ],
+ [
+ 108.978004028042477,
+ 26.746122229042523,
+ 500.0
+ ],
+ [
+ 109.062616520331545,
+ 26.766557671251263,
+ 500.0
+ ],
+ [
+ 109.149912,
+ 26.773439992081425,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001607,
+ "name": "郴州北湖机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "25.75307515",
+ "lng": "112.84516493",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.84516493,
+ 26.204388909223091,
+ 500.0
+ ],
+ [
+ 112.932031847834907,
+ 26.197506699816046,
+ 500.0
+ ],
+ [
+ 113.016229702271772,
+ 26.177071528814256,
+ 500.0
+ ],
+ [
+ 113.09517419350135,
+ 26.143711050705914,
+ 500.0
+ ],
+ [
+ 113.166447507145023,
+ 26.098449207625574,
+ 500.0
+ ],
+ [
+ 113.227874107935222,
+ 26.042673840324102,
+ 500.0
+ ],
+ [
+ 113.277588015288615,
+ 25.978092967309106,
+ 500.0
+ ],
+ [
+ 113.314089382173279,
+ 25.906681257091044,
+ 500.0
+ ],
+ [
+ 113.336288690378296,
+ 25.830618523257538,
+ 500.0
+ ],
+ [
+ 113.343537409334232,
+ 25.752222294989036,
+ 500.0
+ ],
+ [
+ 113.335644505214901,
+ 25.673876653433073,
+ 500.0
+ ],
+ [
+ 113.312878700606788,
+ 25.597959579330514,
+ 500.0
+ ],
+ [
+ 113.275956848862791,
+ 25.526771035927425,
+ 500.0
+ ],
+ [
+ 113.226019186624256,
+ 25.462463922760133,
+ 500.0
+ ],
+ [
+ 113.164592556790524,
+ 25.406979890924081,
+ 500.0
+ ],
+ [
+ 113.093542953534694,
+ 25.361991819570346,
+ 500.0
+ ],
+ [
+ 113.015018937077741,
+ 25.328854526476494,
+ 500.0
+ ],
+ [
+ 112.931387608087505,
+ 25.308565031210037,
+ 500.0
+ ],
+ [
+ 112.84516493,
+ 25.301733414836164,
+ 500.0
+ ],
+ [
+ 112.758942251912487,
+ 25.308565031210037,
+ 500.0
+ ],
+ [
+ 112.67531092292225,
+ 25.328854526476494,
+ 500.0
+ ],
+ [
+ 112.596786906465297,
+ 25.361991819570346,
+ 500.0
+ ],
+ [
+ 112.525737303209468,
+ 25.406979890924081,
+ 500.0
+ ],
+ [
+ 112.464310673375735,
+ 25.462463922760133,
+ 500.0
+ ],
+ [
+ 112.414373011137201,
+ 25.526771035927425,
+ 500.0
+ ],
+ [
+ 112.377451159393203,
+ 25.597959579330514,
+ 500.0
+ ],
+ [
+ 112.35468535478509,
+ 25.673876653433073,
+ 500.0
+ ],
+ [
+ 112.34679245066576,
+ 25.752222294989036,
+ 500.0
+ ],
+ [
+ 112.354041169621695,
+ 25.830618523257538,
+ 500.0
+ ],
+ [
+ 112.376240477826713,
+ 25.906681257091044,
+ 500.0
+ ],
+ [
+ 112.412741844711377,
+ 25.978092967309106,
+ 500.0
+ ],
+ [
+ 112.46245575206477,
+ 26.042673840324102,
+ 500.0
+ ],
+ [
+ 112.523882352854969,
+ 26.098449207625574,
+ 500.0
+ ],
+ [
+ 112.595155666498641,
+ 26.143711050705914,
+ 500.0
+ ],
+ [
+ 112.674100157728219,
+ 26.177071528814256,
+ 500.0
+ ],
+ [
+ 112.758298012165085,
+ 26.197506699816046,
+ 500.0
+ ],
+ [
+ 112.84516493,
+ 26.204388909223091,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001606,
+ "name": "郴州北湖机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "25.7689616272649",
+ "lng": "112.891478674999",
+ "radius": 13385,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.930849872,
+ 25.7605943724,
+ 0.0
+ ],
+ [
+ 113.024708542,
+ 25.778820512300001,
+ 0.0
+ ],
+ [
+ 112.998898117,
+ 25.8406483061,
+ 0.0
+ ],
+ [
+ 112.914934004,
+ 25.798733243600001,
+ 0.0
+ ],
+ [
+ 112.901238525,
+ 25.811971442400001,
+ 0.0
+ ],
+ [
+ 112.867797387,
+ 25.825277214100002,
+ 0.0
+ ],
+ [
+ 112.831445413,
+ 25.821740203600001,
+ 0.0
+ ],
+ [
+ 112.788395646,
+ 25.8045782198,
+ 0.0
+ ],
+ [
+ 112.76562674199999,
+ 25.778830359899999,
+ 0.0
+ ],
+ [
+ 112.760539824,
+ 25.7628767952,
+ 0.0
+ ],
+ [
+ 112.760211782,
+ 25.746281185899999,
+ 0.0
+ ],
+ [
+ 112.930849872,
+ 25.7605943724,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001606,
+ "name": "郴州北湖机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "25.7378247225846",
+ "lng": "112.799619956843",
+ "radius": 13384,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.66643959699999,
+ 25.728020304800001,
+ 0.0
+ ],
+ [
+ 112.692255929,
+ 25.666196514799999,
+ 0.0
+ ],
+ [
+ 112.776113266,
+ 25.708209714599999,
+ 0.0
+ ],
+ [
+ 112.789808303,
+ 25.694976070700001,
+ 0.0
+ ],
+ [
+ 112.823216665,
+ 25.6816782366,
+ 0.0
+ ],
+ [
+ 112.859526833,
+ 25.685206565,
+ 0.0
+ ],
+ [
+ 112.902562993,
+ 25.702341936300002,
+ 0.0
+ ],
+ [
+ 112.925366137,
+ 25.728054653699999,
+ 0.0
+ ],
+ [
+ 112.930485627,
+ 25.7439993757,
+ 0.0
+ ],
+ [
+ 112.930849872,
+ 25.7605943724,
+ 0.0
+ ],
+ [
+ 112.760211782,
+ 25.746281185899999,
+ 0.0
+ ],
+ [
+ 112.66643959699999,
+ 25.728020304800001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001606,
+ "name": "郴州北湖机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "25.7532266461382",
+ "lng": "112.845620416277",
+ "radius": 23581,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 112.681160051,
+ 25.601555119899999,
+ 120.0
+ ],
+ [
+ 112.610876633,
+ 25.769898313199999,
+ 120.0
+ ],
+ [
+ 113.009990578,
+ 25.905158083900002,
+ 120.0
+ ],
+ [
+ 113.080354084,
+ 25.7368148907,
+ 120.0
+ ],
+ [
+ 112.681160051,
+ 25.601555119899999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001511,
+ "name": "Ganzhou Airport",
+ "country": "CN",
+ "city": "Ganzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "25.853444",
+ "lng": "114.779242",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.779242,
+ 26.304751490635148,
+ 500.0
+ ],
+ [
+ 114.86618357532349,
+ 26.297869261441086,
+ 500.0
+ ],
+ [
+ 114.950453661072899,
+ 26.277434042159683,
+ 500.0
+ ],
+ [
+ 115.02946562446968,
+ 26.244073518887525,
+ 500.0
+ ],
+ [
+ 115.100799499269385,
+ 26.198811681202564,
+ 500.0
+ ],
+ [
+ 115.162277857214718,
+ 26.143036426005708,
+ 500.0
+ ],
+ [
+ 115.212033147369908,
+ 26.078455828034567,
+ 500.0
+ ],
+ [
+ 115.248564322085358,
+ 26.007044603116505,
+ 500.0
+ ],
+ [
+ 115.27078106144053,
+ 25.930982595059813,
+ 500.0
+ ],
+ [
+ 115.278034443434109,
+ 25.852587339865988,
+ 500.0
+ ],
+ [
+ 115.270133447993345,
+ 25.774242898509986,
+ 500.0
+ ],
+ [
+ 115.247347197375504,
+ 25.69832720417309,
+ 500.0
+ ],
+ [
+ 115.2103932999607,
+ 25.627140148061123,
+ 500.0
+ ],
+ [
+ 115.160413064030735,
+ 25.56283453909824,
+ 500.0
+ ],
+ [
+ 115.098934676804618,
+ 25.50735192745627,
+ 500.0
+ ],
+ [
+ 115.027825702918904,
+ 25.462365090741404,
+ 500.0
+ ],
+ [
+ 114.949236452052361,
+ 25.429228754601958,
+ 500.0
+ ],
+ [
+ 114.865535906846404,
+ 25.408939865156519,
+ 500.0
+ ],
+ [
+ 114.779242,
+ 25.402108456165045,
+ 500.0
+ ],
+ [
+ 114.692948093153589,
+ 25.408939865156519,
+ 500.0
+ ],
+ [
+ 114.609247547947632,
+ 25.429228754601958,
+ 500.0
+ ],
+ [
+ 114.530658297081089,
+ 25.462365090741404,
+ 500.0
+ ],
+ [
+ 114.459549323195375,
+ 25.50735192745627,
+ 500.0
+ ],
+ [
+ 114.398070935969258,
+ 25.56283453909824,
+ 500.0
+ ],
+ [
+ 114.348090700039293,
+ 25.627140148061123,
+ 500.0
+ ],
+ [
+ 114.311136802624489,
+ 25.69832720417309,
+ 500.0
+ ],
+ [
+ 114.288350552006648,
+ 25.774242898509986,
+ 500.0
+ ],
+ [
+ 114.280449556565884,
+ 25.852587339865988,
+ 500.0
+ ],
+ [
+ 114.287702938559462,
+ 25.930982595059813,
+ 500.0
+ ],
+ [
+ 114.309919677914635,
+ 26.007044603116505,
+ 500.0
+ ],
+ [
+ 114.346450852630085,
+ 26.078455828034567,
+ 500.0
+ ],
+ [
+ 114.396206142785275,
+ 26.143036426005708,
+ 500.0
+ ],
+ [
+ 114.457684500730608,
+ 26.198811681202564,
+ 500.0
+ ],
+ [
+ 114.529018375530313,
+ 26.244073518887525,
+ 500.0
+ ],
+ [
+ 114.608030338927094,
+ 26.277434042159683,
+ 500.0
+ ],
+ [
+ 114.692300424676503,
+ 26.297869261441086,
+ 500.0
+ ],
+ [
+ 114.779242,
+ 26.304751490635148,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5043,
+ "name": "Ganzhou Airport",
+ "country": "CN",
+ "city": "Ganzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "25.8317705580419",
+ "lng": "114.735087092551",
+ "radius": 13026,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.697112434,
+ 25.840570912699999,
+ 0.0
+ ],
+ [
+ 114.60709401299999,
+ 25.8105834823,
+ 0.0
+ ],
+ [
+ 114.641468503,
+ 25.750420331699999,
+ 0.0
+ ],
+ [
+ 114.716468828,
+ 25.800420279099999,
+ 0.0
+ ],
+ [
+ 114.746691062,
+ 25.784111826,
+ 0.0
+ ],
+ [
+ 114.764897437,
+ 25.781515476100001,
+ 0.0
+ ],
+ [
+ 114.800441105,
+ 25.789192569099999,
+ 0.0
+ ],
+ [
+ 114.845253594,
+ 25.819101662600001,
+ 0.0
+ ],
+ [
+ 114.859452696,
+ 25.849431554199999,
+ 0.0
+ ],
+ [
+ 114.859566042,
+ 25.8660294799,
+ 0.0
+ ],
+ [
+ 114.697112434,
+ 25.840570912699999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5043,
+ "name": "Ganzhou Airport",
+ "country": "CN",
+ "city": "Ganzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "25.8741977290139",
+ "lng": "114.823431627775",
+ "radius": 13181,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.95292229,
+ 25.896110477699999,
+ 0.0
+ ],
+ [
+ 114.91855937299999,
+ 25.9562425381,
+ 0.0
+ ],
+ [
+ 114.838520495,
+ 25.9045810766,
+ 0.0
+ ],
+ [
+ 114.810165801,
+ 25.920749512099999,
+ 0.0
+ ],
+ [
+ 114.792057594,
+ 25.9239523643,
+ 0.0
+ ],
+ [
+ 114.77364472799999,
+ 25.9228285748,
+ 0.0
+ ],
+ [
+ 114.732876321,
+ 25.907466535,
+ 0.0
+ ],
+ [
+ 114.70878868699999,
+ 25.888086744100001,
+ 0.0
+ ],
+ [
+ 114.70027889,
+ 25.8733598112,
+ 0.0
+ ],
+ [
+ 114.69629694699999,
+ 25.857152919200001,
+ 0.0
+ ],
+ [
+ 114.697112434,
+ 25.840570912699999,
+ 0.0
+ ],
+ [
+ 114.859566042,
+ 25.8660294799,
+ 0.0
+ ],
+ [
+ 114.95292229,
+ 25.896110477699999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5043,
+ "name": "Ganzhou Airport",
+ "country": "CN",
+ "city": "Ganzhou",
+ "height": 120,
+ "level": 2,
+ "lat": "25.8539474295074",
+ "lng": "114.778487276",
+ "radius": 23562,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.916275234,
+ 26.025851725100001,
+ 120.0
+ ],
+ [
+ 115.013411016,
+ 25.8686188836,
+ 120.0
+ ],
+ [
+ 114.64055910899999,
+ 25.682264418799999,
+ 120.0
+ ],
+ [
+ 114.543576305,
+ 25.8394972605,
+ 120.0
+ ],
+ [
+ 114.916275234,
+ 26.025851725100001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3721,
+ "name": "Longyan Guanzhishan Airport",
+ "country": "CN",
+ "city": "Longyan",
+ "height": 0,
+ "level": 2,
+ "lat": "25.7154715608709",
+ "lng": "116.765837710796",
+ "radius": 13402,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.801765254,
+ 25.734373937499999,
+ 0.0
+ ],
+ [
+ 116.853052804,
+ 25.806898051600001,
+ 0.0
+ ],
+ [
+ 116.781086953,
+ 25.835220783600001,
+ 0.0
+ ],
+ [
+ 116.756796734,
+ 25.752086596600002,
+ 0.0
+ ],
+ [
+ 116.738172138,
+ 25.7521499365,
+ 0.0
+ ],
+ [
+ 116.704383428,
+ 25.739621036100001,
+ 0.0
+ ],
+ [
+ 116.68208617499999,
+ 25.713549183800001,
+ 0.0
+ ],
+ [
+ 116.665881884,
+ 25.675249690200001,
+ 0.0
+ ],
+ [
+ 116.66528226,
+ 25.658660252400001,
+ 0.0
+ ],
+ [
+ 116.66946595899999,
+ 25.642496153500002,
+ 0.0
+ ],
+ [
+ 116.690730152,
+ 25.615744275,
+ 0.0
+ ],
+ [
+ 116.801765254,
+ 25.734373937499999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3721,
+ "name": "Longyan Guanzhishan Airport",
+ "country": "CN",
+ "city": "Longyan",
+ "height": 0,
+ "level": 2,
+ "lat": "25.6346485052311",
+ "lng": "116.72665343503",
+ "radius": 13402,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.63956581799999,
+ 25.5432279632,
+ 0.0
+ ],
+ [
+ 116.71138784599999,
+ 25.5149090745,
+ 0.0
+ ],
+ [
+ 116.735615623,
+ 25.598060405,
+ 0.0
+ ],
+ [
+ 116.754156032,
+ 25.597988148599999,
+ 0.0
+ ],
+ [
+ 116.787923627,
+ 25.610475302699999,
+ 0.0
+ ],
+ [
+ 116.81025348199999,
+ 25.636511047799999,
+ 0.0
+ ],
+ [
+ 116.826526305,
+ 25.674834835199999,
+ 0.0
+ ],
+ [
+ 116.827157287,
+ 25.691423330799999,
+ 0.0
+ ],
+ [
+ 116.823001873,
+ 25.7075937137,
+ 0.0
+ ],
+ [
+ 116.801765254,
+ 25.734373937499999,
+ 0.0
+ ],
+ [
+ 116.690730152,
+ 25.615744275,
+ 0.0
+ ],
+ [
+ 116.63956581799999,
+ 25.5432279632,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3721,
+ "name": "Longyan Guanzhishan Airport",
+ "country": "CN",
+ "city": "Longyan",
+ "height": 120,
+ "level": 2,
+ "lat": "25.675028913333",
+ "lng": "116.746322376344",
+ "radius": 23578,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.752278716,
+ 25.4630532,
+ 120.0
+ ],
+ [
+ 116.569677134,
+ 25.5350759142,
+ 120.0
+ ],
+ [
+ 116.740042514,
+ 25.886995494400001,
+ 120.0
+ ],
+ [
+ 116.92318406699999,
+ 25.8149727807,
+ 120.0
+ ],
+ [
+ 116.752278716,
+ 25.4630532,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001525,
+ "name": "Longyan Guanzhishan Airport",
+ "country": "CN",
+ "city": "Longyan",
+ "height": 500,
+ "level": 2,
+ "lat": "25.676484",
+ "lng": "116.745942",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.745942,
+ 26.127802531242178,
+ 500.0
+ ],
+ [
+ 116.83275221191623,
+ 26.120920336977047,
+ 500.0
+ ],
+ [
+ 116.916895203393679,
+ 26.100485202956236,
+ 500.0
+ ],
+ [
+ 116.995788446763427,
+ 26.067124759580082,
+ 500.0
+ ],
+ [
+ 117.067015762185534,
+ 26.021862912826684,
+ 500.0
+ ],
+ [
+ 117.12840305224141,
+ 25.966087460652872,
+ 500.0
+ ],
+ [
+ 117.178085529069335,
+ 25.901506378707321,
+ 500.0
+ ],
+ [
+ 117.21456425745879,
+ 25.830094299428886,
+ 500.0
+ ],
+ [
+ 117.23675032797064,
+ 25.754031013356283,
+ 500.0
+ ],
+ [
+ 117.24399550713882,
+ 25.675634044447623,
+ 500.0
+ ],
+ [
+ 117.236108750463288,
+ 25.597287489194297,
+ 500.0
+ ],
+ [
+ 117.213358476741234,
+ 25.521369364548473,
+ 500.0
+ ],
+ [
+ 117.176460965660496,
+ 25.450179688621969,
+ 500.0
+ ],
+ [
+ 117.126555639773201,
+ 25.385871429970411,
+ 500.0
+ ],
+ [
+ 117.065168320853516,
+ 25.33038631656887,
+ 500.0
+ ],
+ [
+ 116.994163810268873,
+ 25.285397304925393,
+ 500.0
+ ],
+ [
+ 116.915689339566114,
+ 25.252259283004268,
+ 500.0
+ ],
+ [
+ 116.832110580162677,
+ 25.231969326329803,
+ 500.0
+ ],
+ [
+ 116.745942,
+ 25.225137552007151,
+ 500.0
+ ],
+ [
+ 116.659773419837322,
+ 25.231969326329803,
+ 500.0
+ ],
+ [
+ 116.576194660433885,
+ 25.252259283004268,
+ 500.0
+ ],
+ [
+ 116.497720189731126,
+ 25.285397304925393,
+ 500.0
+ ],
+ [
+ 116.426715679146483,
+ 25.33038631656887,
+ 500.0
+ ],
+ [
+ 116.365328360226798,
+ 25.385871429970411,
+ 500.0
+ ],
+ [
+ 116.315423034339503,
+ 25.450179688621969,
+ 500.0
+ ],
+ [
+ 116.278525523258764,
+ 25.521369364548473,
+ 500.0
+ ],
+ [
+ 116.255775249536711,
+ 25.597287489194297,
+ 500.0
+ ],
+ [
+ 116.247888492861179,
+ 25.675634044447623,
+ 500.0
+ ],
+ [
+ 116.255133672029359,
+ 25.754031013356283,
+ 500.0
+ ],
+ [
+ 116.277319742541209,
+ 25.830094299428886,
+ 500.0
+ ],
+ [
+ 116.313798470930664,
+ 25.901506378707321,
+ 500.0
+ ],
+ [
+ 116.363480947758589,
+ 25.966087460652872,
+ 500.0
+ ],
+ [
+ 116.424868237814465,
+ 26.021862912826684,
+ 500.0
+ ],
+ [
+ 116.496095553236572,
+ 26.067124759580082,
+ 500.0
+ ],
+ [
+ 116.57498879660632,
+ 26.100485202956236,
+ 500.0
+ ],
+ [
+ 116.659131788083769,
+ 26.120920336977047,
+ 500.0
+ ],
+ [
+ 116.745942,
+ 26.127802531242178,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 393,
+ "name": "Fuzhou Changle International Airport",
+ "country": "CN",
+ "city": "Fuzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "25.8927680564598",
+ "lng": "119.647057478653",
+ "radius": 13631,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.60529877,
+ 25.876483068300001,
+ 0.0
+ ],
+ [
+ 119.55028253899999,
+ 25.8064864581,
+ 0.0
+ ],
+ [
+ 119.61391933199999,
+ 25.773856872300001,
+ 0.0
+ ],
+ [
+ 119.643957232,
+ 25.857206390399998,
+ 0.0
+ ],
+ [
+ 119.675454461,
+ 25.858961642499999,
+ 0.0
+ ],
+ [
+ 119.692313647,
+ 25.865696098099999,
+ 0.0
+ ],
+ [
+ 119.71752735299999,
+ 25.889541432400001,
+ 0.0
+ ],
+ [
+ 119.734229344,
+ 25.9212674698,
+ 0.0
+ ],
+ [
+ 119.74247806,
+ 25.947543114599998,
+ 0.0
+ ],
+ [
+ 119.735096643,
+ 25.9797795705,
+ 0.0
+ ],
+ [
+ 119.724734586,
+ 25.993517956200002,
+ 0.0
+ ],
+ [
+ 119.60529877,
+ 25.876483068300001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 393,
+ "name": "Fuzhou Changle International Airport",
+ "country": "CN",
+ "city": "Fuzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "25.9764453122653",
+ "lng": "119.68391759355",
+ "radius": 13614,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.779721484,
+ 26.063507202699999,
+ 0.0
+ ],
+ [
+ 119.712701317,
+ 26.096123855,
+ 0.0
+ ],
+ [
+ 119.682707568,
+ 26.012793139500001,
+ 0.0
+ ],
+ [
+ 119.649226776,
+ 26.009696812600001,
+ 0.0
+ ],
+ [
+ 119.632793092,
+ 26.0021234443,
+ 0.0
+ ],
+ [
+ 119.619102845,
+ 25.990984022300001,
+ 0.0
+ ],
+ [
+ 119.590789973,
+ 25.952099540199999,
+ 0.0
+ ],
+ [
+ 119.582943345,
+ 25.920796976199998,
+ 0.0
+ ],
+ [
+ 119.585961542,
+ 25.9044222498,
+ 0.0
+ ],
+ [
+ 119.60529877,
+ 25.876483068300001,
+ 0.0
+ ],
+ [
+ 119.724734586,
+ 25.993517956200002,
+ 0.0
+ ],
+ [
+ 119.779721484,
+ 26.063507202699999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 393,
+ "name": "Fuzhou Changle International Airport",
+ "country": "CN",
+ "city": "Fuzhou",
+ "height": 120,
+ "level": 2,
+ "lat": "25.9349431720601",
+ "lng": "119.663073307703",
+ "radius": 23985,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.68136232499999,
+ 26.1500266872,
+ 120.0
+ ],
+ [
+ 119.856461261,
+ 26.062686540600001,
+ 120.0
+ ],
+ [
+ 119.64446604699999,
+ 25.719884069700001,
+ 120.0
+ ],
+ [
+ 119.46987586199999,
+ 25.8072242169,
+ 120.0
+ ],
+ [
+ 119.68136232499999,
+ 26.1500266872,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001301,
+ "name": "Matsu Beigan Airport",
+ "country": "TW",
+ "city": "Beigan Island",
+ "height": 500,
+ "level": 2,
+ "lat": "26.224381",
+ "lng": "120.002228",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.002228,
+ 26.675665176196215,
+ 500.0
+ ],
+ [
+ 120.089448931254765,
+ 26.668782874384917,
+ 500.0
+ ],
+ [
+ 120.173989296671138,
+ 26.648347478356865,
+ 500.0
+ ],
+ [
+ 120.2532537356646,
+ 26.614986791450956,
+ 500.0
+ ],
+ [
+ 120.324814231268405,
+ 26.569724979209276,
+ 500.0
+ ],
+ [
+ 120.386486272398116,
+ 26.51395014676029,
+ 500.0
+ ],
+ [
+ 120.436396431661805,
+ 26.449370577316135,
+ 500.0
+ ],
+ [
+ 120.473039167557943,
+ 26.377961162053648,
+ 500.0
+ ],
+ [
+ 120.495321158194528,
+ 26.301901856644971,
+ 500.0
+ ],
+ [
+ 120.502592014239724,
+ 26.223510222090432,
+ 500.0
+ ],
+ [
+ 120.494660764173531,
+ 26.14517024417863,
+ 500.0
+ ],
+ [
+ 120.47179802293455,
+ 26.069259679278495,
+ 500.0
+ ],
+ [
+ 120.434724221708464,
+ 25.998078150960996,
+ 500.0
+ ],
+ [
+ 120.384584677046732,
+ 25.933778131634515,
+ 500.0
+ ],
+ [
+ 120.322912605742204,
+ 25.878300796737335,
+ 500.0
+ ],
+ [
+ 120.251581449305945,
+ 25.833318546886503,
+ 500.0
+ ],
+ [
+ 120.17274806516285,
+ 25.800185765729182,
+ 500.0
+ ],
+ [
+ 120.088788480523675,
+ 25.779899126745295,
+ 500.0
+ ],
+ [
+ 120.002228,
+ 25.773068488107139,
+ 500.0
+ ],
+ [
+ 119.91566751947633,
+ 25.779899126745295,
+ 500.0
+ ],
+ [
+ 119.831707934837155,
+ 25.800185765729182,
+ 500.0
+ ],
+ [
+ 119.75287455069406,
+ 25.833318546886503,
+ 500.0
+ ],
+ [
+ 119.681543394257801,
+ 25.878300796737335,
+ 500.0
+ ],
+ [
+ 119.619871322953273,
+ 25.933778131634515,
+ 500.0
+ ],
+ [
+ 119.569731778291541,
+ 25.998078150960996,
+ 500.0
+ ],
+ [
+ 119.532657977065455,
+ 26.069259679278495,
+ 500.0
+ ],
+ [
+ 119.509795235826473,
+ 26.14517024417863,
+ 500.0
+ ],
+ [
+ 119.501863985760281,
+ 26.223510222090432,
+ 500.0
+ ],
+ [
+ 119.509134841805476,
+ 26.301901856644971,
+ 500.0
+ ],
+ [
+ 119.531416832442062,
+ 26.377961162053648,
+ 500.0
+ ],
+ [
+ 119.568059568338199,
+ 26.449370577316135,
+ 500.0
+ ],
+ [
+ 119.617969727601889,
+ 26.51395014676029,
+ 500.0
+ ],
+ [
+ 119.679641768731599,
+ 26.569724979209276,
+ 500.0
+ ],
+ [
+ 119.751202264335404,
+ 26.614986791450956,
+ 500.0
+ ],
+ [
+ 119.830466703328867,
+ 26.648347478356865,
+ 500.0
+ ],
+ [
+ 119.91500706874524,
+ 26.668782874384917,
+ 500.0
+ ],
+ [
+ 120.002228,
+ 26.675665176196215,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000309,
+ "name": "東莒直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.960556",
+ "lng": "119.959444",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.959444,
+ 25.969582292516648,
+ 0.0
+ ],
+ [
+ 119.961177991756983,
+ 25.969445152551948,
+ 0.0
+ ],
+ [
+ 119.962859285293604,
+ 25.969037900508209,
+ 0.0
+ ],
+ [
+ 119.96443678501717,
+ 25.968372913187228,
+ 0.0
+ ],
+ [
+ 119.965862551724044,
+ 25.967470399959019,
+ 0.0
+ ],
+ [
+ 119.967093260133581,
+ 25.966357788219497,
+ 0.0
+ ],
+ [
+ 119.968091515797013,
+ 25.965068889421069,
+ 0.0
+ ],
+ [
+ 119.968826991307836,
+ 25.963642871088336,
+ 0.0
+ ],
+ [
+ 119.96927734729114,
+ 25.962123066131142,
+ 0.0
+ ],
+ [
+ 119.969428910247615,
+ 25.960555655705857,
+ 0.0
+ ],
+ [
+ 119.969277086768301,
+ 25.95898826570469,
+ 0.0
+ ],
+ [
+ 119.968826501685058,
+ 25.957468519556393,
+ 0.0
+ ],
+ [
+ 119.968090856130004,
+ 25.956042591324135,
+ 0.0
+ ],
+ [
+ 119.967092509987936,
+ 25.954753803050288,
+ 0.0
+ ],
+ [
+ 119.965861801578399,
+ 25.953641308928571,
+ 0.0
+ ],
+ [
+ 119.964436125350176,
+ 25.952738906224933,
+ 0.0
+ ],
+ [
+ 119.962858795670797,
+ 25.952074009004434,
+ 0.0
+ ],
+ [
+ 119.96117773123413,
+ 25.951666815769602,
+ 0.0
+ ],
+ [
+ 119.959444,
+ 25.951529696229013,
+ 0.0
+ ],
+ [
+ 119.957710268765879,
+ 25.951666815769602,
+ 0.0
+ ],
+ [
+ 119.956029204329212,
+ 25.952074009004434,
+ 0.0
+ ],
+ [
+ 119.954451874649834,
+ 25.952738906224933,
+ 0.0
+ ],
+ [
+ 119.953026198421611,
+ 25.953641308928571,
+ 0.0
+ ],
+ [
+ 119.951795490012074,
+ 25.954753803050288,
+ 0.0
+ ],
+ [
+ 119.950797143870005,
+ 25.956042591324135,
+ 0.0
+ ],
+ [
+ 119.950061498314952,
+ 25.957468519556393,
+ 0.0
+ ],
+ [
+ 119.949610913231709,
+ 25.95898826570469,
+ 0.0
+ ],
+ [
+ 119.949459089752395,
+ 25.960555655705857,
+ 0.0
+ ],
+ [
+ 119.94961065270887,
+ 25.962123066131142,
+ 0.0
+ ],
+ [
+ 119.950061008692174,
+ 25.963642871088336,
+ 0.0
+ ],
+ [
+ 119.950796484202996,
+ 25.965068889421069,
+ 0.0
+ ],
+ [
+ 119.951794739866429,
+ 25.966357788219497,
+ 0.0
+ ],
+ [
+ 119.953025448275966,
+ 25.967470399959019,
+ 0.0
+ ],
+ [
+ 119.954451214982839,
+ 25.968372913187228,
+ 0.0
+ ],
+ [
+ 119.956028714706406,
+ 25.969037900508209,
+ 0.0
+ ],
+ [
+ 119.957710008243026,
+ 25.969445152551948,
+ 0.0
+ ],
+ [
+ 119.959444,
+ 25.969582292516648,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001520,
+ "name": "Fuzhou Changle International Airport",
+ "country": "CN",
+ "city": "Fuzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "25.934999",
+ "lng": "119.66333",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.66333,
+ 26.386301384513487,
+ 500.0
+ ],
+ [
+ 119.750332529481057,
+ 26.379419139286441,
+ 500.0
+ ],
+ [
+ 119.834661588712649,
+ 26.358983880923034,
+ 500.0
+ ],
+ [
+ 119.913728640313394,
+ 26.325623321239078,
+ 500.0
+ ],
+ [
+ 119.985111961249046,
+ 26.28036148841532,
+ 500.0
+ ],
+ [
+ 120.04663257776582,
+ 26.224586325037212,
+ 500.0
+ ],
+ [
+ 120.096421656773515,
+ 26.160005951587671,
+ 500.0
+ ],
+ [
+ 120.132977170263118,
+ 26.088595122381374,
+ 500.0
+ ],
+ [
+ 120.155208143578022,
+ 26.012533705796745,
+ 500.0
+ ],
+ [
+ 120.162465334905519,
+ 25.934139243359358,
+ 500.0
+ ],
+ [
+ 120.154557735153844,
+ 25.85579577959874,
+ 500.0
+ ],
+ [
+ 120.131754792651378,
+ 25.779881208962685,
+ 500.0
+ ],
+ [
+ 120.09477473201791,
+ 25.708695364002317,
+ 500.0
+ ],
+ [
+ 120.044759736337951,
+ 25.64439097987589,
+ 500.0
+ ],
+ [
+ 119.983239090346146,
+ 25.588909524601583,
+ 500.0
+ ],
+ [
+ 119.912081640924413,
+ 25.543923693130584,
+ 500.0
+ ],
+ [
+ 119.833439126230942,
+ 25.510788136123065,
+ 500.0
+ ],
+ [
+ 119.749682065661958,
+ 25.490499739915769,
+ 500.0
+ ],
+ [
+ 119.66333,
+ 25.483668499766331,
+ 500.0
+ ],
+ [
+ 119.576977934338046,
+ 25.490499739915769,
+ 500.0
+ ],
+ [
+ 119.493220873769062,
+ 25.510788136123065,
+ 500.0
+ ],
+ [
+ 119.414578359075591,
+ 25.543923693130584,
+ 500.0
+ ],
+ [
+ 119.343420909653858,
+ 25.588909524601583,
+ 500.0
+ ],
+ [
+ 119.281900263662052,
+ 25.64439097987589,
+ 500.0
+ ],
+ [
+ 119.231885267982094,
+ 25.708695364002317,
+ 500.0
+ ],
+ [
+ 119.194905207348626,
+ 25.779881208962685,
+ 500.0
+ ],
+ [
+ 119.17210226484616,
+ 25.85579577959874,
+ 500.0
+ ],
+ [
+ 119.164194665094485,
+ 25.934139243359358,
+ 500.0
+ ],
+ [
+ 119.171451856421982,
+ 26.012533705796745,
+ 500.0
+ ],
+ [
+ 119.193682829736886,
+ 26.088595122381374,
+ 500.0
+ ],
+ [
+ 119.230238343226489,
+ 26.160005951587671,
+ 500.0
+ ],
+ [
+ 119.280027422234184,
+ 26.224586325037212,
+ 500.0
+ ],
+ [
+ 119.341548038750958,
+ 26.28036148841532,
+ 500.0
+ ],
+ [
+ 119.41293135968661,
+ 26.325623321239078,
+ 500.0
+ ],
+ [
+ 119.491998411287355,
+ 26.358983880923034,
+ 500.0
+ ],
+ [
+ 119.576327470518947,
+ 26.379419139286441,
+ 500.0
+ ],
+ [
+ 119.66333,
+ 26.386301384513487,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001493,
+ "name": "Matsu Nangan Airport",
+ "country": "TW",
+ "city": "Nangang Island",
+ "height": 500,
+ "level": 2,
+ "lat": "26.159537",
+ "lng": "119.9582",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.9582,
+ 26.61082526845399,
+ 500.0
+ ],
+ [
+ 120.045371703954046,
+ 26.603942979282255,
+ 500.0
+ ],
+ [
+ 120.129864441230907,
+ 26.58350761396991,
+ 500.0
+ ],
+ [
+ 120.209084389036931,
+ 26.550146955311433,
+ 500.0
+ ],
+ [
+ 120.280604948946603,
+ 26.504885138016235,
+ 500.0
+ ],
+ [
+ 120.342242857943361,
+ 26.449110230730032,
+ 500.0
+ ],
+ [
+ 120.392125724218403,
+ 26.384530480144427,
+ 500.0
+ ],
+ [
+ 120.428748798312981,
+ 26.313120746727343,
+ 500.0
+ ],
+ [
+ 120.451019287568528,
+ 26.237060966574511,
+ 500.0
+ ],
+ [
+ 120.458287061518035,
+ 26.158668696338989,
+ 500.0
+ ],
+ [
+ 120.450361140409981,
+ 26.080327935024044,
+ 500.0
+ ],
+ [
+ 120.427511876461324,
+ 26.004416470025735,
+ 500.0
+ ],
+ [
+ 120.390459203696636,
+ 25.933233971858822,
+ 500.0
+ ],
+ [
+ 120.340347732523568,
+ 25.868932971944705,
+ 500.0
+ ],
+ [
+ 120.278709793510259,
+ 25.813454711428186,
+ 500.0
+ ],
+ [
+ 120.207417792510611,
+ 25.768471657022673,
+ 500.0
+ ],
+ [
+ 120.128627432950054,
+ 25.735338252333761,
+ 500.0
+ ],
+ [
+ 120.044713500382827,
+ 25.715051218637473,
+ 500.0
+ ],
+ [
+ 119.9582,
+ 25.708220444887505,
+ 500.0
+ ],
+ [
+ 119.871686499617184,
+ 25.715051218637473,
+ 500.0
+ ],
+ [
+ 119.787772567049956,
+ 25.735338252333761,
+ 500.0
+ ],
+ [
+ 119.708982207489399,
+ 25.768471657022673,
+ 500.0
+ ],
+ [
+ 119.637690206489751,
+ 25.813454711428186,
+ 500.0
+ ],
+ [
+ 119.576052267476442,
+ 25.868932971944705,
+ 500.0
+ ],
+ [
+ 119.525940796303374,
+ 25.933233971858822,
+ 500.0
+ ],
+ [
+ 119.488888123538686,
+ 26.004416470025735,
+ 500.0
+ ],
+ [
+ 119.466038859590029,
+ 26.080327935024044,
+ 500.0
+ ],
+ [
+ 119.458112938481975,
+ 26.158668696338989,
+ 500.0
+ ],
+ [
+ 119.465380712431482,
+ 26.237060966574511,
+ 500.0
+ ],
+ [
+ 119.487651201687029,
+ 26.313120746727343,
+ 500.0
+ ],
+ [
+ 119.524274275781607,
+ 26.384530480144427,
+ 500.0
+ ],
+ [
+ 119.574157142056649,
+ 26.449110230730032,
+ 500.0
+ ],
+ [
+ 119.635795051053407,
+ 26.504885138016235,
+ 500.0
+ ],
+ [
+ 119.707315610963079,
+ 26.550146955311433,
+ 500.0
+ ],
+ [
+ 119.786535558769103,
+ 26.58350761396991,
+ 500.0
+ ],
+ [
+ 119.871028296045964,
+ 26.603942979282255,
+ 500.0
+ ],
+ [
+ 119.9582,
+ 26.61082526845399,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4111,
+ "name": "Matsu Nangan Airport",
+ "country": "TW",
+ "city": "Nangang Island",
+ "height": 0,
+ "level": 2,
+ "lat": "26.1597700394516",
+ "lng": "119.95846135696",
+ "radius": 5218,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.91521,
+ 26.13372,
+ 0.0
+ ],
+ [
+ 119.95508,
+ 26.2066,
+ 0.0
+ ],
+ [
+ 120.00172,
+ 26.18582,
+ 0.0
+ ],
+ [
+ 119.96184,
+ 26.11294,
+ 0.0
+ ],
+ [
+ 119.91521,
+ 26.13372,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4111,
+ "name": "Matsu Nangan Airport",
+ "country": "TW",
+ "city": "Nangang Island",
+ "height": 0,
+ "level": 2,
+ "lat": "26.1202402807254",
+ "lng": "119.936841520892",
+ "radius": 2865,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.91521,
+ 26.13372,
+ 0.0
+ ],
+ [
+ 119.96184,
+ 26.11294,
+ 0.0
+ ],
+ [
+ 119.962552,
+ 26.108782,
+ 0.0
+ ],
+ [
+ 119.958217,
+ 26.108355,
+ 0.0
+ ],
+ [
+ 119.953857,
+ 26.108271,
+ 0.0
+ ],
+ [
+ 119.949506,
+ 26.10853,
+ 0.0
+ ],
+ [
+ 119.945196,
+ 26.109131,
+ 0.0
+ ],
+ [
+ 119.940961,
+ 26.110068,
+ 0.0
+ ],
+ [
+ 119.936832,
+ 26.111334,
+ 0.0
+ ],
+ [
+ 119.932841,
+ 26.112921,
+ 0.0
+ ],
+ [
+ 119.929018,
+ 26.114816,
+ 0.0
+ ],
+ [
+ 119.925392,
+ 26.117004,
+ 0.0
+ ],
+ [
+ 119.921991,
+ 26.119469,
+ 0.0
+ ],
+ [
+ 119.918842,
+ 26.122192,
+ 0.0
+ ],
+ [
+ 119.915966,
+ 26.125152,
+ 0.0
+ ],
+ [
+ 119.913388,
+ 26.128327,
+ 0.0
+ ],
+ [
+ 119.911126,
+ 26.131694,
+ 0.0
+ ],
+ [
+ 119.91521,
+ 26.13372,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4111,
+ "name": "Matsu Nangan Airport",
+ "country": "TW",
+ "city": "Nangang Island",
+ "height": 0,
+ "level": 2,
+ "lat": "26.1993112878153",
+ "lng": "119.980102032696",
+ "radius": 2865,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.95508,
+ 26.2066,
+ 0.0
+ ],
+ [
+ 119.954374,
+ 26.210773,
+ 0.0
+ ],
+ [
+ 119.958712,
+ 26.2112,
+ 0.0
+ ],
+ [
+ 119.963076,
+ 26.211284,
+ 0.0
+ ],
+ [
+ 119.967431,
+ 26.211024,
+ 0.0
+ ],
+ [
+ 119.971744,
+ 26.210423,
+ 0.0
+ ],
+ [
+ 119.975983,
+ 26.209485,
+ 0.0
+ ],
+ [
+ 119.980115,
+ 26.208217,
+ 0.0
+ ],
+ [
+ 119.984109,
+ 26.206629,
+ 0.0
+ ],
+ [
+ 119.987934,
+ 26.204733,
+ 0.0
+ ],
+ [
+ 119.991561,
+ 26.202543,
+ 0.0
+ ],
+ [
+ 119.994962,
+ 26.200077,
+ 0.0
+ ],
+ [
+ 119.998112,
+ 26.197352,
+ 0.0
+ ],
+ [
+ 120.000987,
+ 26.19439,
+ 0.0
+ ],
+ [
+ 120.003565,
+ 26.191213,
+ 0.0
+ ],
+ [
+ 120.005825,
+ 26.187845,
+ 0.0
+ ],
+ [
+ 120.00172,
+ 26.18582,
+ 0.0
+ ],
+ [
+ 119.95508,
+ 26.2066,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4111,
+ "name": "Matsu Nangan Airport",
+ "country": "TW",
+ "city": "Nangang Island",
+ "height": 60,
+ "level": 2,
+ "lat": "26.1597708956776",
+ "lng": "119.958464047048",
+ "radius": 16951,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.97459,
+ 26.31153,
+ 60.0
+ ],
+ [
+ 120.08229,
+ 26.26353,
+ 60.0
+ ],
+ [
+ 119.94238,
+ 26.00801,
+ 60.0
+ ],
+ [
+ 119.83485,
+ 26.05591,
+ 60.0
+ ],
+ [
+ 119.97459,
+ 26.31153,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6339,
+ "name": "Matsu Beigan Airport",
+ "country": "TW",
+ "city": "Beigan Island",
+ "height": 0,
+ "level": 2,
+ "lat": "26.2242800254052",
+ "lng": "120.002781053097",
+ "radius": 5033,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.95961,
+ 26.20121,
+ 0.0
+ ],
+ [
+ 120.00007,
+ 26.26948,
+ 0.0
+ ],
+ [
+ 120.04597,
+ 26.24734,
+ 0.0
+ ],
+ [
+ 120.00549,
+ 26.17908,
+ 0.0
+ ],
+ [
+ 119.95961,
+ 26.20121,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6339,
+ "name": "Matsu Beigan Airport",
+ "country": "TW",
+ "city": "Beigan Island",
+ "height": 0,
+ "level": 2,
+ "lat": "26.187105712646",
+ "lng": "119.980754149768",
+ "radius": 2866,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.95961,
+ 26.20121,
+ 0.0
+ ],
+ [
+ 119.955448,
+ 26.199304,
+ 0.0
+ ],
+ [
+ 119.95759,
+ 26.195874,
+ 0.0
+ ],
+ [
+ 119.960055,
+ 26.192625,
+ 0.0
+ ],
+ [
+ 119.962824,
+ 26.189582,
+ 0.0
+ ],
+ [
+ 119.965876,
+ 26.186768,
+ 0.0
+ ],
+ [
+ 119.969189,
+ 26.184205,
+ 0.0
+ ],
+ [
+ 119.972736,
+ 26.181912,
+ 0.0
+ ],
+ [
+ 119.976491,
+ 26.179907,
+ 0.0
+ ],
+ [
+ 119.980425,
+ 26.178205,
+ 0.0
+ ],
+ [
+ 119.984509,
+ 26.176818,
+ 0.0
+ ],
+ [
+ 119.988711,
+ 26.175758,
+ 0.0
+ ],
+ [
+ 119.993,
+ 26.175032,
+ 0.0
+ ],
+ [
+ 119.997342,
+ 26.174646,
+ 0.0
+ ],
+ [
+ 120.001705,
+ 26.174603,
+ 0.0
+ ],
+ [
+ 120.006055,
+ 26.174903,
+ 0.0
+ ],
+ [
+ 120.00549,
+ 26.17908,
+ 0.0
+ ],
+ [
+ 119.95961,
+ 26.20121,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6339,
+ "name": "Matsu Beigan Airport",
+ "country": "TW",
+ "city": "Beigan Island",
+ "height": 0,
+ "level": 2,
+ "lat": "26.2614597189933",
+ "lng": "120.024831161356",
+ "radius": 2866,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.04597,
+ 26.24734,
+ 0.0
+ ],
+ [
+ 120.00007,
+ 26.26948,
+ 0.0
+ ],
+ [
+ 119.999514,
+ 26.273666,
+ 0.0
+ ],
+ [
+ 120.003868,
+ 26.273966,
+ 0.0
+ ],
+ [
+ 120.008235,
+ 26.273922,
+ 0.0
+ ],
+ [
+ 120.012581,
+ 26.273536,
+ 0.0
+ ],
+ [
+ 120.016872,
+ 26.272809,
+ 0.0
+ ],
+ [
+ 120.021078,
+ 26.271748,
+ 0.0
+ ],
+ [
+ 120.025164,
+ 26.27036,
+ 0.0
+ ],
+ [
+ 120.029101,
+ 26.268656,
+ 0.0
+ ],
+ [
+ 120.032857,
+ 26.266649,
+ 0.0
+ ],
+ [
+ 120.036406,
+ 26.264355,
+ 0.0
+ ],
+ [
+ 120.039719,
+ 26.26179,
+ 0.0
+ ],
+ [
+ 120.042771,
+ 26.258975,
+ 0.0
+ ],
+ [
+ 120.045539,
+ 26.255931,
+ 0.0
+ ],
+ [
+ 120.048003,
+ 26.25268,
+ 0.0
+ ],
+ [
+ 120.050143,
+ 26.249249,
+ 0.0
+ ],
+ [
+ 120.04597,
+ 26.24734,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6339,
+ "name": "Matsu Beigan Airport",
+ "country": "TW",
+ "city": "Beigan Island",
+ "height": 60,
+ "level": 2,
+ "lat": "26.2242764594348",
+ "lng": "120.002783599156",
+ "radius": 16749,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.02335,
+ 26.37378,
+ 60.0
+ ],
+ [
+ 120.12932,
+ 26.32266,
+ 60.0
+ ],
+ [
+ 119.98227,
+ 26.07477,
+ 60.0
+ ],
+ [
+ 119.87645,
+ 26.12579,
+ 60.0
+ ],
+ [
+ 120.02335,
+ 26.37378,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000284,
+ "name": "西莒直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.973056",
+ "lng": "119.928056",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.928056,
+ 25.982082276926587,
+ 0.0
+ ],
+ [
+ 119.929790175077827,
+ 25.981945137193026,
+ 0.0
+ ],
+ [
+ 119.931471646357423,
+ 25.981537885836211,
+ 0.0
+ ],
+ [
+ 119.933049312838662,
+ 25.980872899638538,
+ 0.0
+ ],
+ [
+ 119.934475230245965,
+ 25.979970387938124,
+ 0.0
+ ],
+ [
+ 119.935706068717082,
+ 25.978857778087281,
+ 0.0
+ ],
+ [
+ 119.93670442985136,
+ 25.977568881483936,
+ 0.0
+ ],
+ [
+ 119.937439983040321,
+ 25.976142865588805,
+ 0.0
+ ],
+ [
+ 119.937890386553917,
+ 25.974623063239878,
+ 0.0
+ ],
+ [
+ 119.938041965455454,
+ 25.973055655515779,
+ 0.0
+ ],
+ [
+ 119.937890125859255,
+ 25.971488268227144,
+ 0.0
+ ],
+ [
+ 119.937439493094629,
+ 25.9699685247198,
+ 0.0
+ ],
+ [
+ 119.9367037697493,
+ 25.968542598975176,
+ 0.0
+ ],
+ [
+ 119.9357053180767,
+ 25.967253812957836,
+ 0.0
+ ],
+ [
+ 119.934474479605598,
+ 25.966141320790129,
+ 0.0
+ ],
+ [
+ 119.933048652736588,
+ 25.965238919675723,
+ 0.0
+ ],
+ [
+ 119.931471156411703,
+ 25.964574023628579,
+ 0.0
+ ],
+ [
+ 119.92978991438315,
+ 25.964166831113342,
+ 0.0
+ ],
+ [
+ 119.928056,
+ 25.96402971181525,
+ 0.0
+ ],
+ [
+ 119.926322085616846,
+ 25.964166831113342,
+ 0.0
+ ],
+ [
+ 119.924640843588293,
+ 25.964574023628579,
+ 0.0
+ ],
+ [
+ 119.923063347263408,
+ 25.965238919675723,
+ 0.0
+ ],
+ [
+ 119.921637520394398,
+ 25.966141320790129,
+ 0.0
+ ],
+ [
+ 119.920406681923296,
+ 25.967253812957836,
+ 0.0
+ ],
+ [
+ 119.919408230250696,
+ 25.968542598975176,
+ 0.0
+ ],
+ [
+ 119.918672506905367,
+ 25.9699685247198,
+ 0.0
+ ],
+ [
+ 119.918221874140741,
+ 25.971488268227144,
+ 0.0
+ ],
+ [
+ 119.918070034544542,
+ 25.973055655515779,
+ 0.0
+ ],
+ [
+ 119.918221613446079,
+ 25.974623063239878,
+ 0.0
+ ],
+ [
+ 119.918672016959675,
+ 25.976142865588805,
+ 0.0
+ ],
+ [
+ 119.919407570148636,
+ 25.977568881483936,
+ 0.0
+ ],
+ [
+ 119.920405931282914,
+ 25.978857778087281,
+ 0.0
+ ],
+ [
+ 119.921636769754031,
+ 25.979970387938124,
+ 0.0
+ ],
+ [
+ 119.923062687161334,
+ 25.980872899638538,
+ 0.0
+ ],
+ [
+ 119.924640353642573,
+ 25.981537885836211,
+ 0.0
+ ],
+ [
+ 119.926321824922169,
+ 25.981945137193026,
+ 0.0
+ ],
+ [
+ 119.928056,
+ 25.982082276926587,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000294,
+ "name": "東引直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "26.358889",
+ "lng": "120.483056",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.483056,
+ 26.36791479311443,
+ 0.0
+ ],
+ [
+ 120.484795893457829,
+ 26.367777660554413,
+ 0.0
+ ],
+ [
+ 120.486482909126195,
+ 26.367370430516125,
+ 0.0
+ ],
+ [
+ 120.488065777329496,
+ 26.366705479179888,
+ 0.0
+ ],
+ [
+ 120.489496395583089,
+ 26.365803014894563,
+ 0.0
+ ],
+ [
+ 120.490731291108219,
+ 26.364690463657595,
+ 0.0
+ ],
+ [
+ 120.491732942232744,
+ 26.363401635177301,
+ 0.0
+ ],
+ [
+ 120.492470918467333,
+ 26.361975694930308,
+ 0.0
+ ],
+ [
+ 120.492922804616327,
+ 26.360455973526058,
+ 0.0
+ ],
+ [
+ 120.493074880905965,
+ 26.358888649629332,
+ 0.0
+ ],
+ [
+ 120.492922538578753,
+ 26.357321346519541,
+ 0.0
+ ],
+ [
+ 120.492470418480238,
+ 26.355801684968892,
+ 0.0
+ ],
+ [
+ 120.491732268601936,
+ 26.354375836422943,
+ 0.0
+ ],
+ [
+ 120.490730525083521,
+ 26.353087120430626,
+ 0.0
+ ],
+ [
+ 120.489495629558405,
+ 26.351974688900853,
+ 0.0
+ ],
+ [
+ 120.488065103698688,
+ 26.35107233710351,
+ 0.0
+ ],
+ [
+ 120.486482409139086,
+ 26.35040747746832,
+ 0.0
+ ],
+ [
+ 120.48479562742024,
+ 26.350000307283633,
+ 0.0
+ ],
+ [
+ 120.483056,
+ 26.349863195510554,
+ 0.0
+ ],
+ [
+ 120.481316372579769,
+ 26.350000307283633,
+ 0.0
+ ],
+ [
+ 120.479629590860924,
+ 26.35040747746832,
+ 0.0
+ ],
+ [
+ 120.478046896301322,
+ 26.35107233710351,
+ 0.0
+ ],
+ [
+ 120.476616370441604,
+ 26.351974688900853,
+ 0.0
+ ],
+ [
+ 120.475381474916489,
+ 26.353087120430626,
+ 0.0
+ ],
+ [
+ 120.474379731398074,
+ 26.354375836422943,
+ 0.0
+ ],
+ [
+ 120.473641581519772,
+ 26.355801684968892,
+ 0.0
+ ],
+ [
+ 120.473189461421256,
+ 26.357321346519541,
+ 0.0
+ ],
+ [
+ 120.473037119094045,
+ 26.358888649629332,
+ 0.0
+ ],
+ [
+ 120.473189195383682,
+ 26.360455973526058,
+ 0.0
+ ],
+ [
+ 120.473641081532676,
+ 26.361975694930308,
+ 0.0
+ ],
+ [
+ 120.474379057767266,
+ 26.363401635177301,
+ 0.0
+ ],
+ [
+ 120.475380708891791,
+ 26.364690463657595,
+ 0.0
+ ],
+ [
+ 120.476615604416921,
+ 26.365803014894563,
+ 0.0
+ ],
+ [
+ 120.478046222670514,
+ 26.366705479179888,
+ 0.0
+ ],
+ [
+ 120.479629090873814,
+ 26.367370430516125,
+ 0.0
+ ],
+ [
+ 120.481316106542181,
+ 26.367777660554413,
+ 0.0
+ ],
+ [
+ 120.483056,
+ 26.36791479311443,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008310,
+ "name": "NAMPONG",
+ "country": "MM",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "25.35438611",
+ "lng": "97.29513611",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.29513611,
+ 25.805724599617285,
+ 500.0
+ ],
+ [
+ 97.38171034480402,
+ 25.798842469458044,
+ 500.0
+ ],
+ [
+ 97.465625030059456,
+ 25.778407492347807,
+ 500.0
+ ],
+ [
+ 97.544305014050593,
+ 25.745047197688322,
+ 500.0
+ ],
+ [
+ 97.615340919839568,
+ 25.699785339845647,
+ 500.0
+ ],
+ [
+ 97.676564633818543,
+ 25.644009537309415,
+ 500.0
+ ],
+ [
+ 97.726116331194675,
+ 25.579427585950476,
+ 500.0
+ ],
+ [
+ 97.762500870221672,
+ 25.508013966838138,
+ 500.0
+ ],
+ [
+ 97.784631873233252,
+ 25.431948373688357,
+ 500.0
+ ],
+ [
+ 97.791862341142334,
+ 25.353548308325482,
+ 500.0
+ ],
+ [
+ 97.784001182849664,
+ 25.27519793129132,
+ 500.0
+ ],
+ [
+ 97.761315550846533,
+ 25.19927541104936,
+ 500.0
+ ],
+ [
+ 97.724519335778822,
+ 25.128080995422792,
+ 500.0
+ ],
+ [
+ 97.674748571214081,
+ 25.06376794202599,
+ 500.0
+ ],
+ [
+ 97.613524829114994,
+ 25.008278300872067,
+ 500.0
+ ],
+ [
+ 97.54270794743212,
+ 24.963285352546123,
+ 500.0
+ ],
+ [
+ 97.46443962971567,
+ 24.93014427907508,
+ 500.0
+ ],
+ [
+ 97.381079601571912,
+ 24.909852390440165,
+ 500.0
+ ],
+ [
+ 97.29513611,
+ 24.903019954757706,
+ 500.0
+ ],
+ [
+ 97.209192618428091,
+ 24.909852390440165,
+ 500.0
+ ],
+ [
+ 97.125832590284332,
+ 24.93014427907508,
+ 500.0
+ ],
+ [
+ 97.047564272567882,
+ 24.963285352546123,
+ 500.0
+ ],
+ [
+ 96.976747390885009,
+ 25.008278300872067,
+ 500.0
+ ],
+ [
+ 96.915523648785921,
+ 25.06376794202599,
+ 500.0
+ ],
+ [
+ 96.86575288422118,
+ 25.128080995422792,
+ 500.0
+ ],
+ [
+ 96.82895666915347,
+ 25.19927541104936,
+ 500.0
+ ],
+ [
+ 96.806271037150339,
+ 25.27519793129132,
+ 500.0
+ ],
+ [
+ 96.798409878857669,
+ 25.353548308325482,
+ 500.0
+ ],
+ [
+ 96.805640346766751,
+ 25.431948373688357,
+ 500.0
+ ],
+ [
+ 96.827771349778331,
+ 25.508013966838138,
+ 500.0
+ ],
+ [
+ 96.864155888805328,
+ 25.579427585950476,
+ 500.0
+ ],
+ [
+ 96.913707586181459,
+ 25.644009537309415,
+ 500.0
+ ],
+ [
+ 96.974931300160435,
+ 25.699785339845647,
+ 500.0
+ ],
+ [
+ 97.04596720594941,
+ 25.745047197688322,
+ 500.0
+ ],
+ [
+ 97.124647189940546,
+ 25.778407492347807,
+ 500.0
+ ],
+ [
+ 97.208561875195983,
+ 25.798842469458044,
+ 500.0
+ ],
+ [
+ 97.29513611,
+ 25.805724599617285,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008143,
+ "name": "KANTI",
+ "country": "MM",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "25.98874722",
+ "lng": "95.67468889",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 95.67468889,
+ 26.440046233226113,
+ 500.0
+ ],
+ [
+ 95.76173173392381,
+ 26.433163977454043,
+ 500.0
+ ],
+ [
+ 95.846099797686492,
+ 26.412728693404354,
+ 500.0
+ ],
+ [
+ 95.925203284295961,
+ 26.379368109860632,
+ 500.0
+ ],
+ [
+ 95.996619308845311,
+ 26.334106280470472,
+ 500.0
+ ],
+ [
+ 96.058167875423251,
+ 26.278331177956922,
+ 500.0
+ ],
+ [
+ 96.10797930291703,
+ 26.213750952978536,
+ 500.0
+ ],
+ [
+ 96.14455091486262,
+ 26.142340385234572,
+ 500.0
+ ],
+ [
+ 96.166791303480551,
+ 26.066279359303508,
+ 500.0
+ ],
+ [
+ 96.174051015328075,
+ 25.987885420342721,
+ 500.0
+ ],
+ [
+ 96.166139048455534,
+ 25.909542602017119,
+ 500.0
+ ],
+ [
+ 96.143325066734548,
+ 25.833628773203984,
+ 500.0
+ ],
+ [
+ 96.106327702260714,
+ 25.762443727740578,
+ 500.0
+ ],
+ [
+ 96.056289716636343,
+ 25.698140152102198,
+ 500.0
+ ],
+ [
+ 95.994741120454663,
+ 25.642659460091632,
+ 500.0
+ ],
+ [
+ 95.923551608680327,
+ 25.597674292116025,
+ 500.0
+ ],
+ [
+ 95.844873864317833,
+ 25.564539249352123,
+ 500.0
+ ],
+ [
+ 95.761079423261975,
+ 25.544251178688377,
+ 500.0
+ ],
+ [
+ 95.67468889,
+ 25.537420049976191,
+ 500.0
+ ],
+ [
+ 95.588298356738022,
+ 25.544251178688377,
+ 500.0
+ ],
+ [
+ 95.504503915682164,
+ 25.564539249352123,
+ 500.0
+ ],
+ [
+ 95.42582617131967,
+ 25.597674292116025,
+ 500.0
+ ],
+ [
+ 95.354636659545335,
+ 25.642659460091632,
+ 500.0
+ ],
+ [
+ 95.293088063363655,
+ 25.698140152102198,
+ 500.0
+ ],
+ [
+ 95.243050077739284,
+ 25.762443727740578,
+ 500.0
+ ],
+ [
+ 95.20605271326545,
+ 25.833628773203984,
+ 500.0
+ ],
+ [
+ 95.183238731544463,
+ 25.909542602017119,
+ 500.0
+ ],
+ [
+ 95.175326764671922,
+ 25.987885420342721,
+ 500.0
+ ],
+ [
+ 95.182586476519447,
+ 26.066279359303508,
+ 500.0
+ ],
+ [
+ 95.204826865137377,
+ 26.142340385234572,
+ 500.0
+ ],
+ [
+ 95.241398477082967,
+ 26.213750952978536,
+ 500.0
+ ],
+ [
+ 95.291209904576746,
+ 26.278331177956922,
+ 500.0
+ ],
+ [
+ 95.352758471154687,
+ 26.334106280470472,
+ 500.0
+ ],
+ [
+ 95.424174495704037,
+ 26.379368109860632,
+ 500.0
+ ],
+ [
+ 95.503277982313506,
+ 26.412728693404354,
+ 500.0
+ ],
+ [
+ 95.587646046076188,
+ 26.433163977454043,
+ 500.0
+ ],
+ [
+ 95.67468889,
+ 26.440046233226113,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296181,
+ "name": "KANTI",
+ "country": "MM",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "25.9887473081189",
+ "lng": "95.6747543043754",
+ "radius": 3863,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 95.648370058500007,
+ 25.963353207299999,
+ 0.0
+ ],
+ [
+ 95.691195342499995,
+ 26.0201972222,
+ 0.0
+ ],
+ [
+ 95.701138723300005,
+ 26.014146049299999,
+ 0.0
+ ],
+ [
+ 95.658308159499995,
+ 25.957301408,
+ 0.0
+ ],
+ [
+ 95.648370058500007,
+ 25.963353207299999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296181,
+ "name": "KANTI",
+ "country": "MM",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "26.031541788203",
+ "lng": "95.7069973569743",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 95.691195342499995,
+ 26.0201972222,
+ 60.0
+ ],
+ [
+ 95.7069421594,
+ 26.0497166647,
+ 60.0
+ ],
+ [
+ 95.725801889099998,
+ 26.0382381294,
+ 60.0
+ ],
+ [
+ 95.701138723300005,
+ 26.014146049299999,
+ 60.0
+ ],
+ [
+ 95.691195342499995,
+ 26.0201972222,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296181,
+ "name": "KANTI",
+ "country": "MM",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "25.9459566985185",
+ "lng": "95.6425154251218",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 95.623725775699995,
+ 25.939258502400001,
+ 60.0
+ ],
+ [
+ 95.648370058500007,
+ 25.963353207299999,
+ 60.0
+ ],
+ [
+ 95.658308159499995,
+ 25.957301408,
+ 60.0
+ ],
+ [
+ 95.642575369799999,
+ 25.927781254300001,
+ 60.0
+ ],
+ [
+ 95.623725775699995,
+ 25.939258502400001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296181,
+ "name": "KANTI",
+ "country": "MM",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "26.0772115279876",
+ "lng": "95.7414386505263",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 95.7069421594,
+ 26.0497166647,
+ 150.0
+ ],
+ [
+ 95.743715607,
+ 26.118588715,
+ 150.0
+ ],
+ [
+ 95.783388710200001,
+ 26.0944366819,
+ 150.0
+ ],
+ [
+ 95.725801889099998,
+ 26.0382381294,
+ 150.0
+ ],
+ [
+ 95.7069421594,
+ 26.0497166647,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296181,
+ "name": "KANTI",
+ "country": "MM",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "25.9002753442646",
+ "lng": "95.608130399971",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 95.5662616308,
+ 25.8830213265,
+ 150.0
+ ],
+ [
+ 95.623725775699995,
+ 25.939258502400001,
+ 150.0
+ ],
+ [
+ 95.642575369799999,
+ 25.927781254300001,
+ 150.0
+ ],
+ [
+ 95.605896147799996,
+ 25.858894297900001,
+ 150.0
+ ],
+ [
+ 95.5662616308,
+ 25.8830213265,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009041,
+ "name": "Myitkyina Airport",
+ "country": "MM",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "25.383538",
+ "lng": "97.353351",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.353351,
+ 25.834874690611237,
+ 500.0
+ ],
+ [
+ 97.439946427053627,
+ 25.827992554620327,
+ 500.0
+ ],
+ [
+ 97.523881615558111,
+ 25.807557563212669,
+ 500.0
+ ],
+ [
+ 97.602580751299982,
+ 25.774197254911261,
+ 500.0
+ ],
+ [
+ 97.6736338463365,
+ 25.728935397775132,
+ 500.0
+ ],
+ [
+ 97.734872249654018,
+ 25.67315962650412,
+ 500.0
+ ],
+ [
+ 97.784435690767879,
+ 25.608577753209989,
+ 500.0
+ ],
+ [
+ 97.820828687322617,
+ 25.53716427264078,
+ 500.0
+ ],
+ [
+ 97.842964634389517,
+ 25.461098887268871,
+ 500.0
+ ],
+ [
+ 97.850196422161062,
+ 25.382699100933685,
+ 500.0
+ ],
+ [
+ 97.842332963870192,
+ 25.304349068412041,
+ 500.0
+ ],
+ [
+ 97.819641525873124,
+ 25.228426944506204,
+ 500.0
+ ],
+ [
+ 97.782836213487158,
+ 25.15723295631695,
+ 500.0
+ ],
+ [
+ 97.733053364714479,
+ 25.092920335376441,
+ 500.0
+ ],
+ [
+ 97.671814933210328,
+ 25.037431102635775,
+ 500.0
+ ],
+ [
+ 97.600981202648242,
+ 24.992438509431302,
+ 500.0
+ ],
+ [
+ 97.522694372948465,
+ 24.959297711248436,
+ 500.0
+ ],
+ [
+ 97.439314703560768,
+ 24.939005996905877,
+ 500.0
+ ],
+ [
+ 97.353351,
+ 24.932173620889056,
+ 500.0
+ ],
+ [
+ 97.267387296439239,
+ 24.939005996905877,
+ 500.0
+ ],
+ [
+ 97.184007627051542,
+ 24.959297711248436,
+ 500.0
+ ],
+ [
+ 97.105720797351765,
+ 24.992438509431302,
+ 500.0
+ ],
+ [
+ 97.034887066789679,
+ 25.037431102635775,
+ 500.0
+ ],
+ [
+ 96.973648635285528,
+ 25.092920335376441,
+ 500.0
+ ],
+ [
+ 96.923865786512849,
+ 25.15723295631695,
+ 500.0
+ ],
+ [
+ 96.887060474126883,
+ 25.228426944506204,
+ 500.0
+ ],
+ [
+ 96.864369036129816,
+ 25.304349068412041,
+ 500.0
+ ],
+ [
+ 96.856505577838945,
+ 25.382699100933685,
+ 500.0
+ ],
+ [
+ 96.86373736561049,
+ 25.461098887268871,
+ 500.0
+ ],
+ [
+ 96.88587331267739,
+ 25.53716427264078,
+ 500.0
+ ],
+ [
+ 96.922266309232128,
+ 25.608577753209989,
+ 500.0
+ ],
+ [
+ 96.971829750345989,
+ 25.67315962650412,
+ 500.0
+ ],
+ [
+ 97.033068153663507,
+ 25.728935397775132,
+ 500.0
+ ],
+ [
+ 97.104121248700025,
+ 25.774197254911261,
+ 500.0
+ ],
+ [
+ 97.182820384441897,
+ 25.807557563212669,
+ 500.0
+ ],
+ [
+ 97.26675557294638,
+ 25.827992554620327,
+ 500.0
+ ],
+ [
+ 97.353351,
+ 25.834874690611237,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286265,
+ "name": "Myitkyina Airport",
+ "country": "MM",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "25.3839134976462",
+ "lng": "97.3535879832341",
+ "radius": 4085,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.325143878199995,
+ 25.357654058400001,
+ 0.0
+ ],
+ [
+ 97.372356855800007,
+ 25.416511522499999,
+ 0.0
+ ],
+ [
+ 97.382031551899999,
+ 25.410178879899998,
+ 0.0
+ ],
+ [
+ 97.334813221800005,
+ 25.351320620300001,
+ 0.0
+ ],
+ [
+ 97.325143878199995,
+ 25.357654058400001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286265,
+ "name": "Myitkyina Airport",
+ "country": "MM",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "25.4273981682506",
+ "lng": "97.3884708558119",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.372356855800007,
+ 25.416511522499999,
+ 60.0
+ ],
+ [
+ 97.389056838200005,
+ 25.445565421,
+ 60.0
+ ],
+ [
+ 97.407406681599994,
+ 25.4335530253,
+ 60.0
+ ],
+ [
+ 97.382031551899999,
+ 25.410178879899998,
+ 60.0
+ ],
+ [
+ 97.372356855800007,
+ 25.416511522499999,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286265,
+ "name": "Myitkyina Airport",
+ "country": "MM",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "25.3404341302966",
+ "lng": "97.3187084790526",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.299787247599994,
+ 25.334277649800001,
+ 60.0
+ ],
+ [
+ 97.325143878199995,
+ 25.357654058400001,
+ 60.0
+ ],
+ [
+ 97.334813221800005,
+ 25.351320620300001,
+ 60.0
+ ],
+ [
+ 97.31812735699999,
+ 25.322266211100001,
+ 60.0
+ ],
+ [
+ 97.299787247599994,
+ 25.334277649800001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286265,
+ "name": "Myitkyina Airport",
+ "country": "MM",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "25.4720593766807",
+ "lng": "97.4243306244222",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.389056838200005,
+ 25.445565421,
+ 150.0
+ ],
+ [
+ 97.428054833399997,
+ 25.513350497499999,
+ 150.0
+ ],
+ [
+ 97.466653631900002,
+ 25.4880757303,
+ 150.0
+ ],
+ [
+ 97.407406681599994,
+ 25.4335530253,
+ 150.0
+ ],
+ [
+ 97.389056838200005,
+ 25.445565421,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286265,
+ "name": "Myitkyina Airport",
+ "country": "MM",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "25.2957612458919",
+ "lng": "97.2829044772308",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.240659845400003,
+ 25.279715836099999,
+ 150.0
+ ],
+ [
+ 97.299787247599994,
+ 25.334277649800001,
+ 150.0
+ ],
+ [
+ 97.31812735699999,
+ 25.322266211100001,
+ 150.0
+ ],
+ [
+ 97.279224782,
+ 25.254465292799999,
+ 150.0
+ ],
+ [
+ 97.240659845400003,
+ 25.279715836099999,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286263,
+ "name": "Myitkyina Airport",
+ "country": "MM",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.3839149669423",
+ "lng": "97.3535857384606",
+ "radius": 5036,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.315257392,
+ 25.397441280199999,
+ 0.0
+ ],
+ [
+ 97.327412238400001,
+ 25.412598257900001,
+ 0.0
+ ],
+ [
+ 97.339701418800004,
+ 25.4226257537,
+ 0.0
+ ],
+ [
+ 97.355445291,
+ 25.427270208700001,
+ 0.0
+ ],
+ [
+ 97.363772286699998,
+ 25.427281199900001,
+ 0.0
+ ],
+ [
+ 97.371919689699993,
+ 25.425727924499999,
+ 0.0
+ ],
+ [
+ 97.386273729,
+ 25.418265795,
+ 0.0
+ ],
+ [
+ 97.396024279499997,
+ 25.4061750129,
+ 0.0
+ ],
+ [
+ 97.398606274399995,
+ 25.3990254558,
+ 0.0
+ ],
+ [
+ 97.399486108299996,
+ 25.391547199200001,
+ 0.0
+ ],
+ [
+ 97.398625640199995,
+ 25.384067109,
+ 0.0
+ ],
+ [
+ 97.396062788500004,
+ 25.376912071100001,
+ 0.0
+ ],
+ [
+ 97.374161436500003,
+ 25.349619259699999,
+ 0.0
+ ],
+ [
+ 97.359833461700006,
+ 25.342130472899999,
+ 0.0
+ ],
+ [
+ 97.343374624500001,
+ 25.340554151199999,
+ 0.0
+ ],
+ [
+ 97.327628505600003,
+ 25.345162632,
+ 0.0
+ ],
+ [
+ 97.320891086900005,
+ 25.349576538200001,
+ 0.0
+ ],
+ [
+ 97.311146475399994,
+ 25.3616682219,
+ 0.0
+ ],
+ [
+ 97.307685560500005,
+ 25.3762960466,
+ 0.0
+ ],
+ [
+ 97.308545841500006,
+ 25.383776149300001,
+ 0.0
+ ],
+ [
+ 97.315257392,
+ 25.397441280199999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30294473,
+ "name": "NAMPONG",
+ "country": "MM",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.3550833559377",
+ "lng": "97.2950880731268",
+ "radius": 5596,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.334811732700004,
+ 25.3696825259,
+ 0.0
+ ],
+ [
+ 97.334137548399994,
+ 25.333355808899999,
+ 0.0
+ ],
+ [
+ 97.327477010899997,
+ 25.319662462499998,
+ 0.0
+ ],
+ [
+ 97.315232462400004,
+ 25.3096008865,
+ 0.0
+ ],
+ [
+ 97.299520871799999,
+ 25.304909761400001,
+ 0.0
+ ],
+ [
+ 97.283057027699996,
+ 25.306399593,
+ 0.0
+ ],
+ [
+ 97.2686853756,
+ 25.313812986399999,
+ 0.0
+ ],
+ [
+ 97.258889708300003,
+ 25.325869012599998,
+ 0.0
+ ],
+ [
+ 97.256277433899996,
+ 25.3330091164,
+ 0.0
+ ],
+ [
+ 97.255364550799996,
+ 25.340473393700002,
+ 0.0
+ ],
+ [
+ 97.256010325199995,
+ 25.376779679,
+ 0.0
+ ],
+ [
+ 97.258536531,
+ 25.383945346200001,
+ 0.0
+ ],
+ [
+ 97.262656928400006,
+ 25.3904798,
+ 0.0
+ ],
+ [
+ 97.274898688500002,
+ 25.400552279399999,
+ 0.0
+ ],
+ [
+ 97.290618675700003,
+ 25.4052544328,
+ 0.0
+ ],
+ [
+ 97.298944034100003,
+ 25.405295961699998,
+ 0.0
+ ],
+ [
+ 97.314720567099997,
+ 25.4007509204,
+ 0.0
+ ],
+ [
+ 97.321481723,
+ 25.396363153599999,
+ 0.0
+ ],
+ [
+ 97.331284767400007,
+ 25.3843082317,
+ 0.0
+ ],
+ [
+ 97.333898402599999,
+ 25.3771682032,
+ 0.0
+ ],
+ [
+ 97.334811732700004,
+ 25.3696825259,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296178,
+ "name": "NAMPONG",
+ "country": "MM",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "25.3550833205449",
+ "lng": "97.2950833805686",
+ "radius": 4642,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.300817102099998,
+ 25.3965073416,
+ 0.0
+ ],
+ [
+ 97.301291579400001,
+ 25.313715455200001,
+ 0.0
+ ],
+ [
+ 97.289353586499999,
+ 25.313659077600001,
+ 0.0
+ ],
+ [
+ 97.288870931800005,
+ 25.396450977400001,
+ 0.0
+ ],
+ [
+ 97.300817102099998,
+ 25.3965073416,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296178,
+ "name": "NAMPONG",
+ "country": "MM",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "25.2963314876133",
+ "lng": "97.2954228680604",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.301291579400001,
+ 25.313715455200001,
+ 60.0
+ ],
+ [
+ 97.306829635200003,
+ 25.281365492799999,
+ 60.0
+ ],
+ [
+ 97.284189631299995,
+ 25.281258574599999,
+ 60.0
+ ],
+ [
+ 97.289353586499999,
+ 25.313659077600001,
+ 60.0
+ ],
+ [
+ 97.301291579400001,
+ 25.313715455200001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296178,
+ "name": "NAMPONG",
+ "country": "MM",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "25.4138344660348",
+ "lng": "97.294743659759",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.305987411900006,
+ 25.428907658499998,
+ 60.0
+ ],
+ [
+ 97.300817102099998,
+ 25.3965073416,
+ 60.0
+ ],
+ [
+ 97.288870931800005,
+ 25.396450977400001,
+ 60.0
+ ],
+ [
+ 97.283326163500007,
+ 25.4288007386,
+ 60.0
+ ],
+ [
+ 97.305987411900006,
+ 25.428907658499998,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296178,
+ "name": "NAMPONG",
+ "country": "MM",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "25.2411673650749",
+ "lng": "97.2957414286076",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.306829635200003,
+ 25.281365492799999,
+ 150.0
+ ],
+ [
+ 97.319740292099993,
+ 25.205881444500001,
+ 150.0
+ ],
+ [
+ 97.272151117099995,
+ 25.205656702900001,
+ 150.0
+ ],
+ [
+ 97.284189631299995,
+ 25.281258574599999,
+ 150.0
+ ],
+ [
+ 97.306829635200003,
+ 25.281365492799999,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296178,
+ "name": "NAMPONG",
+ "country": "MM",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "25.4689978519492",
+ "lng": "97.2944244869067",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.318062292500002,
+ 25.504507693200001,
+ 150.0
+ ],
+ [
+ 97.305987411900006,
+ 25.428907658499998,
+ 150.0
+ ],
+ [
+ 97.283326163500007,
+ 25.4288007386,
+ 150.0
+ ],
+ [
+ 97.270376780600003,
+ 25.5042827045,
+ 150.0
+ ],
+ [
+ 97.318062292500002,
+ 25.504507693200001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30294489,
+ "name": "KANTI",
+ "country": "MM",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.9891817372797",
+ "lng": "95.6740406632542",
+ "radius": 4806,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 95.637027684200007,
+ 26.002835556600001,
+ 0.0
+ ],
+ [
+ 95.651571459099998,
+ 26.020746976800002,
+ 0.0
+ ],
+ [
+ 95.658173382399994,
+ 26.025368693200001,
+ 0.0
+ ],
+ [
+ 95.673824548400006,
+ 26.030463899400001,
+ 0.0
+ ],
+ [
+ 95.690429051,
+ 26.029396484799999,
+ 0.0
+ ],
+ [
+ 95.698183478600001,
+ 26.0265674539,
+ 0.0
+ ],
+ [
+ 95.710915839600005,
+ 26.016932046400001,
+ 0.0
+ ],
+ [
+ 95.718184393599998,
+ 26.003475425400001,
+ 0.0
+ ],
+ [
+ 95.719333242299996,
+ 25.9960262757,
+ 0.0
+ ],
+ [
+ 95.718733851099998,
+ 25.988525223300002,
+ 0.0
+ ],
+ [
+ 95.712465945299996,
+ 25.974658983299999,
+ 0.0
+ ],
+ [
+ 95.697896790100003,
+ 25.9567333416,
+ 0.0
+ ],
+ [
+ 95.691293836300005,
+ 25.9521172683,
+ 0.0
+ ],
+ [
+ 95.675648680099997,
+ 25.947033043099999,
+ 0.0
+ ],
+ [
+ 95.659056445199994,
+ 25.948108425800001,
+ 0.0
+ ],
+ [
+ 95.644383674,
+ 25.9551576297,
+ 0.0
+ ],
+ [
+ 95.634166069499997,
+ 25.966962691599999,
+ 0.0
+ ],
+ [
+ 95.631319794,
+ 25.974034346500002,
+ 0.0
+ ],
+ [
+ 95.630170944300005,
+ 25.981483469299999,
+ 0.0
+ ],
+ [
+ 95.630770046899997,
+ 25.988984538,
+ 0.0
+ ],
+ [
+ 95.637027684200007,
+ 26.002835556600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001436,
+ "name": "Tengchong Tuofeng Airport",
+ "country": "CN",
+ "city": "Tengchong",
+ "height": 500,
+ "level": 2,
+ "lat": "24.938236",
+ "lng": "98.485646",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 98.485646,
+ 25.389600009583891,
+ 500.0
+ ],
+ [
+ 98.57192126212837,
+ 25.382717963369892,
+ 500.0
+ ],
+ [
+ 98.655546697217702,
+ 25.362283192597054,
+ 500.0
+ ],
+ [
+ 98.733956501826029,
+ 25.328923096875048,
+ 500.0
+ ],
+ [
+ 98.804749920198461,
+ 25.283661235708387,
+ 500.0
+ ],
+ [
+ 98.865766420727965,
+ 25.227884996868323,
+ 500.0
+ ],
+ [
+ 98.915152465762645,
+ 25.163301945011789,
+ 500.0
+ ],
+ [
+ 98.951417717241327,
+ 25.091886366375277,
+ 500.0
+ ],
+ [
+ 98.97347900127086,
+ 25.015817829796372,
+ 500.0
+ ],
+ [
+ 98.980690877793208,
+ 24.93741380806048,
+ 500.0
+ ],
+ [
+ 98.972862191338621,
+ 24.859058543300282,
+ 500.0
+ ],
+ [
+ 98.950258484885879,
+ 24.783130397874654,
+ 500.0
+ ],
+ [
+ 98.913590617921457,
+ 24.711929913949827,
+ 500.0
+ ],
+ [
+ 98.863990327346912,
+ 24.647610719752894,
+ 500.0
+ ],
+ [
+ 98.80297379962974,
+ 24.592115278341751,
+ 500.0
+ ],
+ [
+ 98.732394585143311,
+ 24.54711728605951,
+ 500.0
+ ],
+ [
+ 98.654387386578549,
+ 24.513972302246621,
+ 500.0
+ ],
+ [
+ 98.571304401100079,
+ 24.493677937750231,
+ 500.0
+ ],
+ [
+ 98.485646,
+ 24.486844654484536,
+ 500.0
+ ],
+ [
+ 98.399987598899926,
+ 24.493677937750231,
+ 500.0
+ ],
+ [
+ 98.316904613421457,
+ 24.513972302246621,
+ 500.0
+ ],
+ [
+ 98.238897414856694,
+ 24.54711728605951,
+ 500.0
+ ],
+ [
+ 98.168318200370265,
+ 24.592115278341751,
+ 500.0
+ ],
+ [
+ 98.107301672653094,
+ 24.647610719752894,
+ 500.0
+ ],
+ [
+ 98.057701382078548,
+ 24.711929913949827,
+ 500.0
+ ],
+ [
+ 98.021033515114127,
+ 24.783130397874654,
+ 500.0
+ ],
+ [
+ 97.998429808661385,
+ 24.859058543300282,
+ 500.0
+ ],
+ [
+ 97.990601122206797,
+ 24.93741380806048,
+ 500.0
+ ],
+ [
+ 97.997812998729145,
+ 25.015817829796372,
+ 500.0
+ ],
+ [
+ 98.019874282758678,
+ 25.091886366375277,
+ 500.0
+ ],
+ [
+ 98.05613953423736,
+ 25.163301945011789,
+ 500.0
+ ],
+ [
+ 98.10552557927204,
+ 25.227884996868323,
+ 500.0
+ ],
+ [
+ 98.166542079801545,
+ 25.283661235708387,
+ 500.0
+ ],
+ [
+ 98.237335498173977,
+ 25.328923096875048,
+ 500.0
+ ],
+ [
+ 98.315745302782304,
+ 25.362283192597054,
+ 500.0
+ ],
+ [
+ 98.399370737871635,
+ 25.382717963369892,
+ 500.0
+ ],
+ [
+ 98.485646,
+ 25.389600009583891,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 15498,
+ "name": "Tengchong Tuofeng Airport",
+ "country": "CN",
+ "city": "Tengchong",
+ "height": 0,
+ "level": 2,
+ "lat": "24.9860820595071",
+ "lng": "98.4858280282888",
+ "radius": 13415,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 98.507784778,
+ 25.019090170799998,
+ 0.0
+ ],
+ [
+ 98.521116946800007,
+ 25.102416443799999,
+ 0.0
+ ],
+ [
+ 98.450552447099994,
+ 25.102419764,
+ 0.0
+ ],
+ [
+ 98.460526986,
+ 25.0173868179,
+ 0.0
+ ],
+ [
+ 98.4350849641,
+ 25.002006096799999,
+ 0.0
+ ],
+ [
+ 98.424269809500004,
+ 24.988611404899999,
+ 0.0
+ ],
+ [
+ 98.417650090400002,
+ 24.973135736700002,
+ 0.0
+ ],
+ [
+ 98.415675307699999,
+ 24.928357396700001,
+ 0.0
+ ],
+ [
+ 98.421673261699993,
+ 24.9011985904,
+ 0.0
+ ],
+ [
+ 98.431207886699994,
+ 24.887031696099999,
+ 0.0
+ ],
+ [
+ 98.460519058900005,
+ 24.867637663099998,
+ 0.0
+ ],
+ [
+ 98.507784778,
+ 25.019090170799998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 15498,
+ "name": "Tengchong Tuofeng Airport",
+ "country": "CN",
+ "city": "Tengchong",
+ "height": 0,
+ "level": 2,
+ "lat": "24.8995067744892",
+ "lng": "98.4858126940866",
+ "radius": 13480,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 98.450561966500004,
+ 24.782572229300001,
+ 0.0
+ ],
+ [
+ 98.521115338499996,
+ 24.782585127600001,
+ 0.0
+ ],
+ [
+ 98.507785122200005,
+ 24.8675880234,
+ 0.0
+ ],
+ [
+ 98.534382838699997,
+ 24.881097361399998,
+ 0.0
+ ],
+ [
+ 98.546315819499995,
+ 24.893680059299999,
+ 0.0
+ ],
+ [
+ 98.557656011199995,
+ 24.924944165,
+ 0.0
+ ],
+ [
+ 98.557658608599993,
+ 24.956667127,
+ 0.0
+ ],
+ [
+ 98.549348817099997,
+ 24.988280852500001,
+ 0.0
+ ],
+ [
+ 98.538658655800006,
+ 25.001757700100001,
+ 0.0
+ ],
+ [
+ 98.507784778,
+ 25.019090170799998,
+ 0.0
+ ],
+ [
+ 98.460519058900005,
+ 24.867637663099998,
+ 0.0
+ ],
+ [
+ 98.450561966500004,
+ 24.782572229300001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 15498,
+ "name": "Tengchong Tuofeng Airport",
+ "country": "CN",
+ "city": "Tengchong",
+ "height": 120,
+ "level": 2,
+ "lat": "24.9416839475935",
+ "lng": "98.4866671539916",
+ "radius": 23864,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 98.585699530100001,
+ 24.746789726500001,
+ 120.0
+ ],
+ [
+ 98.387647402799999,
+ 24.746784436799999,
+ 120.0
+ ],
+ [
+ 98.387321004,
+ 25.136512510900001,
+ 120.0
+ ],
+ [
+ 98.586000647600002,
+ 25.136517800499998,
+ 120.0
+ ],
+ [
+ 98.585699530100001,
+ 24.746789726500001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 10914,
+ "name": "Kunming Changshui International Airport",
+ "country": "CN",
+ "city": "Kunming",
+ "height": 0,
+ "level": 2,
+ "lat": "25.0720674792027",
+ "lng": "102.909407244197",
+ "radius": 13936,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 103.016406196,
+ 25.151583014900002,
+ 0.0
+ ],
+ [
+ 102.806741917762452,
+ 25.000298772162083,
+ 0.0
+ ],
+ [
+ 102.800278319,
+ 24.995042841099998,
+ 0.0
+ ],
+ [
+ 102.858707678,
+ 24.9554542228,
+ 0.0
+ ],
+ [
+ 102.90873510199999,
+ 25.027128061599999,
+ 0.0
+ ],
+ [
+ 102.942064161,
+ 25.025064925700001,
+ 0.0
+ ],
+ [
+ 102.959548735,
+ 25.030015238600001,
+ 0.0
+ ],
+ [
+ 102.975025599,
+ 25.038895596700002,
+ 0.0
+ ],
+ [
+ 103.012441033,
+ 25.0761037728,
+ 0.0
+ ],
+ [
+ 103.026875159,
+ 25.1038514,
+ 0.0
+ ],
+ [
+ 103.028080814,
+ 25.120413698899998,
+ 0.0
+ ],
+ [
+ 103.016406196,
+ 25.151583014900002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 10914,
+ "name": "Kunming Changshui International Airport",
+ "country": "CN",
+ "city": "Kunming",
+ "height": 0,
+ "level": 2,
+ "lat": "25.1126022913167",
+ "lng": "102.938213475241",
+ "radius": 18650,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 103.058858723022041,
+ 25.230930233081917,
+ 0.0
+ ],
+ [
+ 103.011255997,
+ 25.264536361699999,
+ 0.0
+ ],
+ [
+ 102.966289217,
+ 25.192878505100001,
+ 0.0
+ ],
+ [
+ 102.930594239,
+ 25.1968204157,
+ 0.0
+ ],
+ [
+ 102.912907769,
+ 25.192418530299999,
+ 0.0
+ ],
+ [
+ 102.88420516799999,
+ 25.172205953900001,
+ 0.0
+ ],
+ [
+ 102.865885992,
+ 25.1472228847,
+ 0.0
+ ],
+ [
+ 102.85050654699999,
+ 25.1175438633,
+ 0.0
+ ],
+ [
+ 102.849646273,
+ 25.100963913499999,
+ 0.0
+ ],
+ [
+ 102.861960619,
+ 25.069998674600001,
+ 0.0
+ ],
+ [
+ 102.790279545,
+ 25.0117377895,
+ 0.0
+ ],
+ [
+ 102.806741917762452,
+ 25.000298772162083,
+ 0.0
+ ],
+ [
+ 103.016406196,
+ 25.151583014900002,
+ 0.0
+ ],
+ [
+ 103.086391553,
+ 25.213319772,
+ 0.0
+ ],
+ [
+ 103.058858723022041,
+ 25.230930233081917,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 10914,
+ "name": "Kunming Changshui International Airport",
+ "country": "CN",
+ "city": "Kunming",
+ "height": 120,
+ "level": 2,
+ "lat": "25.1107187945745",
+ "lng": "102.934484483612",
+ "radius": 24690,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.985051974,
+ 25.3280012305,
+ 120.0
+ ],
+ [
+ 103.011468001711251,
+ 25.309458976466708,
+ 120.0
+ ],
+ [
+ 103.013069581,
+ 25.311112912199999,
+ 120.0
+ ],
+ [
+ 103.04337751079683,
+ 25.287060672300392,
+ 120.0
+ ],
+ [
+ 103.142173828,
+ 25.21771238,
+ 120.0
+ ],
+ [
+ 103.137551456655174,
+ 25.212324642711376,
+ 120.0
+ ],
+ [
+ 103.162551785,
+ 25.192484492,
+ 120.0
+ ],
+ [
+ 102.874531382,
+ 24.895423072100002,
+ 120.0
+ ],
+ [
+ 102.72541184,
+ 25.0140514928,
+ 120.0
+ ],
+ [
+ 102.727594282492618,
+ 25.01630528045181,
+ 120.0
+ ],
+ [
+ 102.721630203,
+ 25.0205022056,
+ 120.0
+ ],
+ [
+ 102.985051974,
+ 25.3280012305,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001488,
+ "name": "Kunming Changshui International Airport",
+ "country": "CN",
+ "city": "Kunming",
+ "height": 500,
+ "level": 2,
+ "lat": "25.107363",
+ "lng": "102.938976",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.938976,
+ 25.558716674551146,
+ 500.0
+ ],
+ [
+ 103.025371969187404,
+ 25.551834594059542,
+ 500.0
+ ],
+ [
+ 103.109114185440191,
+ 25.531399738911855,
+ 500.0
+ ],
+ [
+ 103.187633070593449,
+ 25.498039561373513,
+ 500.0
+ ],
+ [
+ 103.258524387872868,
+ 25.452777700006823,
+ 500.0
+ ],
+ [
+ 103.319624544410743,
+ 25.397001636196176,
+ 500.0
+ ],
+ [
+ 103.369077464307622,
+ 25.332419028426202,
+ 500.0
+ ],
+ [
+ 103.405390870410585,
+ 25.261004242019247,
+ 500.0
+ ],
+ [
+ 103.427480295878311,
+ 25.184936896538915,
+ 500.0
+ ],
+ [
+ 103.434699671892602,
+ 25.106534476635424,
+ 500.0
+ ],
+ [
+ 103.426857869717381,
+ 25.02818119144224,
+ 500.0
+ ],
+ [
+ 103.404221082875367,
+ 24.952255324770913,
+ 500.0
+ ],
+ [
+ 103.3675013952585,
+ 24.88105729949628,
+ 500.0
+ ],
+ [
+ 103.317832278916129,
+ 24.81674059361189,
+ 500.0
+ ],
+ [
+ 103.256732094815433,
+ 24.761247502720767,
+ 500.0
+ ],
+ [
+ 103.186056931752788,
+ 24.716251554597463,
+ 500.0
+ ],
+ [
+ 103.107944318540987,
+ 24.683108155592603,
+ 500.0
+ ],
+ [
+ 103.024749491225293,
+ 24.662814794556247,
+ 500.0
+ ],
+ [
+ 102.938976,
+ 24.655981854818311,
+ 500.0
+ ],
+ [
+ 102.8532025087747,
+ 24.662814794556247,
+ 500.0
+ ],
+ [
+ 102.770007681459006,
+ 24.683108155592603,
+ 500.0
+ ],
+ [
+ 102.691895068247206,
+ 24.716251554597463,
+ 500.0
+ ],
+ [
+ 102.62121990518456,
+ 24.761247502720767,
+ 500.0
+ ],
+ [
+ 102.560119721083865,
+ 24.81674059361189,
+ 500.0
+ ],
+ [
+ 102.510450604741493,
+ 24.88105729949628,
+ 500.0
+ ],
+ [
+ 102.473730917124627,
+ 24.952255324770913,
+ 500.0
+ ],
+ [
+ 102.451094130282613,
+ 25.02818119144224,
+ 500.0
+ ],
+ [
+ 102.443252328107391,
+ 25.106534476635424,
+ 500.0
+ ],
+ [
+ 102.450471704121682,
+ 25.184936896538915,
+ 500.0
+ ],
+ [
+ 102.472561129589408,
+ 25.261004242019247,
+ 500.0
+ ],
+ [
+ 102.508874535692371,
+ 25.332419028426202,
+ 500.0
+ ],
+ [
+ 102.55832745558925,
+ 25.397001636196176,
+ 500.0
+ ],
+ [
+ 102.619427612127126,
+ 25.452777700006823,
+ 500.0
+ ],
+ [
+ 102.690318929406544,
+ 25.498039561373513,
+ 500.0
+ ],
+ [
+ 102.768837814559802,
+ 25.531399738911855,
+ 500.0
+ ],
+ [
+ 102.852580030812589,
+ 25.551834594059542,
+ 500.0
+ ],
+ [
+ 102.938976,
+ 25.558716674551146,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001357,
+ "name": "Xingyi Airport",
+ "country": "CN",
+ "city": "Xingyi",
+ "height": 500,
+ "level": 2,
+ "lat": "25.086545",
+ "lng": "104.959255",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.959255,
+ 25.537899949407862,
+ 500.0
+ ],
+ [
+ 105.045636052460395,
+ 25.531017873123268,
+ 500.0
+ ],
+ [
+ 105.129363837100229,
+ 25.510583028322191,
+ 500.0
+ ],
+ [
+ 105.207869242192913,
+ 25.477222860781815,
+ 500.0
+ ],
+ [
+ 105.278748461118312,
+ 25.431960999323241,
+ 500.0
+ ],
+ [
+ 105.339838279304871,
+ 25.376184913796781,
+ 500.0
+ ],
+ [
+ 105.389282934533412,
+ 25.311602251127542,
+ 500.0
+ ],
+ [
+ 105.425590389305711,
+ 25.240187366896208,
+ 500.0
+ ],
+ [
+ 105.447676336600722,
+ 25.164119874420685,
+ 500.0
+ ],
+ [
+ 105.45489478535201,
+ 25.085717256895517,
+ 500.0
+ ],
+ [
+ 105.447054603575353,
+ 25.00736372752797,
+ 500.0
+ ],
+ [
+ 105.424421904454391,
+ 24.931437579816816,
+ 500.0
+ ],
+ [
+ 105.387708620616834,
+ 24.860239251345128,
+ 500.0
+ ],
+ [
+ 105.338048009717028,
+ 24.795922238627362,
+ 500.0
+ ],
+ [
+ 105.276958164014104,
+ 24.740428857908999,
+ 500.0
+ ],
+ [
+ 105.206294858602462,
+ 24.695432657743257,
+ 500.0
+ ],
+ [
+ 105.12819527301869,
+ 24.662289063338488,
+ 500.0
+ ],
+ [
+ 105.045014267721157,
+ 24.641995578581945,
+ 500.0
+ ],
+ [
+ 104.959255,
+ 24.635162596489579,
+ 500.0
+ ],
+ [
+ 104.87349573227884,
+ 24.641995578581945,
+ 500.0
+ ],
+ [
+ 104.790314726981308,
+ 24.662289063338488,
+ 500.0
+ ],
+ [
+ 104.712215141397536,
+ 24.695432657743257,
+ 500.0
+ ],
+ [
+ 104.641551835985894,
+ 24.740428857908999,
+ 500.0
+ ],
+ [
+ 104.58046199028297,
+ 24.795922238627362,
+ 500.0
+ ],
+ [
+ 104.530801379383163,
+ 24.860239251345128,
+ 500.0
+ ],
+ [
+ 104.494088095545607,
+ 24.931437579816816,
+ 500.0
+ ],
+ [
+ 104.471455396424645,
+ 25.00736372752797,
+ 500.0
+ ],
+ [
+ 104.463615214647987,
+ 25.085717256895517,
+ 500.0
+ ],
+ [
+ 104.470833663399276,
+ 25.164119874420685,
+ 500.0
+ ],
+ [
+ 104.492919610694287,
+ 25.240187366896208,
+ 500.0
+ ],
+ [
+ 104.529227065466586,
+ 25.311602251127542,
+ 500.0
+ ],
+ [
+ 104.578671720695127,
+ 25.376184913796781,
+ 500.0
+ ],
+ [
+ 104.639761538881686,
+ 25.431960999323241,
+ 500.0
+ ],
+ [
+ 104.710640757807084,
+ 25.477222860781815,
+ 500.0
+ ],
+ [
+ 104.789146162899769,
+ 25.510583028322191,
+ 500.0
+ ],
+ [
+ 104.872873947539603,
+ 25.531017873123268,
+ 500.0
+ ],
+ [
+ 104.959255,
+ 25.537899949407862,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 857,
+ "name": "Xingyi Airport",
+ "country": "CN",
+ "city": "Xingyi",
+ "height": 0,
+ "level": 2,
+ "lat": "25.1241384410437",
+ "lng": "104.941395836579",
+ "radius": 13261,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.950740221,
+ 25.1593975505,
+ 0.0
+ ],
+ [
+ 104.927413224,
+ 25.242729312800002,
+ 0.0
+ ],
+ [
+ 104.858645366,
+ 25.2169552139,
+ 0.0
+ ],
+ [
+ 104.905310585,
+ 25.1436130355,
+ 0.0
+ ],
+ [
+ 104.885821719,
+ 25.118266890699999,
+ 0.0
+ ],
+ [
+ 104.881610244,
+ 25.1021126638,
+ 0.0
+ ],
+ [
+ 104.88215984,
+ 25.085521888799999,
+ 0.0
+ ],
+ [
+ 104.887431169,
+ 25.069625147,
+ 0.0
+ ],
+ [
+ 104.91779152,
+ 25.025441489399999,
+ 0.0
+ ],
+ [
+ 104.932433755,
+ 25.015468654300001,
+ 0.0
+ ],
+ [
+ 104.96760463299999,
+ 25.007261173900002,
+ 0.0
+ ],
+ [
+ 104.950740221,
+ 25.1593975505,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 857,
+ "name": "Xingyi Airport",
+ "country": "CN",
+ "city": "Xingyi",
+ "height": 0,
+ "level": 2,
+ "lat": "25.0425398711189",
+ "lng": "104.977065962597",
+ "radius": 13261,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.990920431,
+ 24.923938285399998,
+ 0.0
+ ],
+ [
+ 105.05968533,
+ 24.9497126656,
+ 0.0
+ ],
+ [
+ 105.013009065,
+ 25.023008390800001,
+ 0.0
+ ],
+ [
+ 105.031717094,
+ 25.048365879599999,
+ 0.0
+ ],
+ [
+ 105.035647731,
+ 25.064577689,
+ 0.0
+ ],
+ [
+ 105.03481271299999,
+ 25.081158687199999,
+ 0.0
+ ],
+ [
+ 105.020915806,
+ 25.1203481746,
+ 0.0
+ ],
+ [
+ 105.001819903,
+ 25.144221096599999,
+ 0.0
+ ],
+ [
+ 104.986473025,
+ 25.153304646500001,
+ 0.0
+ ],
+ [
+ 104.950740221,
+ 25.1593975505,
+ 0.0
+ ],
+ [
+ 104.96760463299999,
+ 25.007261173900002,
+ 0.0
+ ],
+ [
+ 104.990920431,
+ 24.923938285399998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 857,
+ "name": "Xingyi Airport",
+ "country": "CN",
+ "city": "Xingyi",
+ "height": 120,
+ "level": 2,
+ "lat": "25.0841342715391",
+ "lng": "104.959454124365",
+ "radius": 23550,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.137146814,
+ 24.946547467199998,
+ 120.0
+ ],
+ [
+ 104.956493229,
+ 24.8723521205,
+ 120.0
+ ],
+ [
+ 104.781556429,
+ 25.221715609899999,
+ 120.0
+ ],
+ [
+ 104.962726382,
+ 25.295910956,
+ 120.0
+ ],
+ [
+ 105.137146814,
+ 24.946547467199998,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002377,
+ "name": "华能云南滇东能源厂区",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "25.200651",
+ "lng": "104.683787",
+ "radius": 1422,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.683787,
+ 25.213487718000977,
+ 0.0
+ ],
+ [
+ 104.686237284481692,
+ 25.213292679279423,
+ 0.0
+ ],
+ [
+ 104.688613095469179,
+ 25.212713491069714,
+ 0.0
+ ],
+ [
+ 104.690842225064486,
+ 25.211767756901232,
+ 0.0
+ ],
+ [
+ 104.692856927390054,
+ 25.210484220377069,
+ 0.0
+ ],
+ [
+ 104.69459597881098,
+ 25.208901890854655,
+ 0.0
+ ],
+ [
+ 104.696006539139461,
+ 25.207068856989455,
+ 0.0
+ ],
+ [
+ 104.697045757154541,
+ 25.205040824333757,
+ 0.0
+ ],
+ [
+ 104.697682071655109,
+ 25.202879421575926,
+ 0.0
+ ],
+ [
+ 104.697896168630365,
+ 25.200650327026143,
+ 0.0
+ ],
+ [
+ 104.697681565682601,
+ 25.198421272389847,
+ 0.0
+ ],
+ [
+ 104.697044806237287,
+ 25.196259984558303,
+ 0.0
+ ],
+ [
+ 104.696005257972104,
+ 25.194232127979898,
+ 0.0
+ ],
+ [
+ 104.694594521921189,
+ 25.19239931010549,
+ 0.0
+ ],
+ [
+ 104.692855470500234,
+ 25.190817210435668,
+ 0.0
+ ],
+ [
+ 104.690840943897072,
+ 25.189533889902286,
+ 0.0
+ ],
+ [
+ 104.688612144551868,
+ 25.188588331811104,
+ 0.0
+ ],
+ [
+ 104.686236778509155,
+ 25.188009258527696,
+ 0.0
+ ],
+ [
+ 104.683787,
+ 25.187814259719627,
+ 0.0
+ ],
+ [
+ 104.681337221490836,
+ 25.188009258527696,
+ 0.0
+ ],
+ [
+ 104.678961855448122,
+ 25.188588331811104,
+ 0.0
+ ],
+ [
+ 104.676733056102918,
+ 25.189533889902286,
+ 0.0
+ ],
+ [
+ 104.674718529499756,
+ 25.190817210435668,
+ 0.0
+ ],
+ [
+ 104.672979478078801,
+ 25.19239931010549,
+ 0.0
+ ],
+ [
+ 104.671568742027887,
+ 25.194232127979898,
+ 0.0
+ ],
+ [
+ 104.670529193762704,
+ 25.196259984558303,
+ 0.0
+ ],
+ [
+ 104.66989243431739,
+ 25.198421272389847,
+ 0.0
+ ],
+ [
+ 104.669677831369626,
+ 25.200650327026143,
+ 0.0
+ ],
+ [
+ 104.669891928344882,
+ 25.202879421575926,
+ 0.0
+ ],
+ [
+ 104.67052824284545,
+ 25.205040824333757,
+ 0.0
+ ],
+ [
+ 104.67156746086053,
+ 25.207068856989455,
+ 0.0
+ ],
+ [
+ 104.67297802118901,
+ 25.208901890854655,
+ 0.0
+ ],
+ [
+ 104.674717072609937,
+ 25.210484220377069,
+ 0.0
+ ],
+ [
+ 104.676731774935504,
+ 25.211767756901232,
+ 0.0
+ ],
+ [
+ 104.678960904530811,
+ 25.212713491069714,
+ 0.0
+ ],
+ [
+ 104.681336715518299,
+ 25.213292679279423,
+ 0.0
+ ],
+ [
+ 104.683787,
+ 25.213487718000977,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32780,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "25.4891685814459",
+ "lng": "107.98824740925",
+ "radius": 13446,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.026221126,
+ 25.504090371,
+ 0.0
+ ],
+ [
+ 108.08832139,
+ 25.569602959,
+ 0.0
+ ],
+ [
+ 108.023872844,
+ 25.605750003200001,
+ 0.0
+ ],
+ [
+ 107.986217511,
+ 25.526543698499999,
+ 0.0
+ ],
+ [
+ 107.96714106,
+ 25.529261578,
+ 0.0
+ ],
+ [
+ 107.931739272,
+ 25.521345846500001,
+ 0.0
+ ],
+ [
+ 107.905475603,
+ 25.498511933700001,
+ 0.0
+ ],
+ [
+ 107.882624554,
+ 25.4611935133,
+ 0.0
+ ],
+ [
+ 107.879643641,
+ 25.444814962100001,
+ 0.0
+ ],
+ [
+ 107.881458893,
+ 25.428297871200002,
+ 0.0
+ ],
+ [
+ 107.898657683,
+ 25.3992821756,
+ 0.0
+ ],
+ [
+ 108.026221126,
+ 25.504090371,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32780,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "25.4141925394435",
+ "lng": "107.936644009656",
+ "radius": 13446,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.836694372,
+ 25.333771751,
+ 0.0
+ ],
+ [
+ 107.901025246,
+ 25.297629621700001,
+ 0.0
+ ],
+ [
+ 107.93858524,
+ 25.376865704099998,
+ 0.0
+ ],
+ [
+ 107.95758873299999,
+ 25.3741487733,
+ 0.0
+ ],
+ [
+ 107.992956847,
+ 25.382029450200001,
+ 0.0
+ ],
+ [
+ 108.0192345,
+ 25.4048263677,
+ 0.0
+ ],
+ [
+ 108.042149812,
+ 25.4421558592,
+ 0.0
+ ],
+ [
+ 108.045162367,
+ 25.458529679600002,
+ 0.0
+ ],
+ [
+ 108.043378811,
+ 25.475049625699999,
+ 0.0
+ ],
+ [
+ 108.026221126,
+ 25.504090371,
+ 0.0
+ ],
+ [
+ 107.898657683,
+ 25.3992821756,
+ 0.0
+ ],
+ [
+ 107.836694372,
+ 25.333771751,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32780,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "25.4516279762249",
+ "lng": "107.962537917215",
+ "radius": 23628,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.934423936,
+ 25.240653758499999,
+ 120.0
+ ],
+ [
+ 107.765471471,
+ 25.335600995899998,
+ 120.0
+ ],
+ [
+ 107.990357242,
+ 25.662636956699998,
+ 120.0
+ ],
+ [
+ 108.15976930799999,
+ 25.567689719800001,
+ 120.0
+ ],
+ [
+ 107.934423936,
+ 25.240653758499999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001437,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "25.451111111111",
+ "lng": "107.9625",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.9625,
+ 25.902443626040089,
+ 500.0
+ ],
+ [
+ 108.049144676041522,
+ 25.89556147655486,
+ 500.0
+ ],
+ [
+ 108.133127512436943,
+ 25.875126452081407,
+ 500.0
+ ],
+ [
+ 108.211871155454006,
+ 25.841766112300515,
+ 500.0
+ ],
+ [
+ 108.282964197273657,
+ 25.796504257032939,
+ 500.0
+ ],
+ [
+ 108.34423673801335,
+ 25.740728558578013,
+ 500.0
+ ],
+ [
+ 108.39382747142038,
+ 25.67614686671617,
+ 500.0
+ ],
+ [
+ 108.430240123539804,
+ 25.604733707918236,
+ 500.0
+ ],
+ [
+ 108.452387561221514,
+ 25.528668804958563,
+ 500.0
+ ],
+ [
+ 108.45962241724888,
+ 25.45026966633818,
+ 500.0
+ ],
+ [
+ 108.451753614808624,
+ 25.371920433446263,
+ 500.0
+ ],
+ [
+ 108.42904868475901,
+ 25.295999229379294,
+ 500.0
+ ],
+ [
+ 108.392222231202581,
+ 25.224806233152293,
+ 500.0
+ ],
+ [
+ 108.342411299558108,
+ 25.160494615778976,
+ 500.0
+ ],
+ [
+ 108.281138730476997,
+ 25.10500633078107,
+ 500.0
+ ],
+ [
+ 108.210265843473266,
+ 25.060014561634521,
+ 500.0
+ ],
+ [
+ 108.131935992050373,
+ 25.026874402246623,
+ 500.0
+ ],
+ [
+ 108.048510676364216,
+ 25.006583092338325,
+ 500.0
+ ],
+ [
+ 107.9625,
+ 24.99975085477109,
+ 500.0
+ ],
+ [
+ 107.876489323635795,
+ 25.006583092338325,
+ 500.0
+ ],
+ [
+ 107.793064007949638,
+ 25.026874402246623,
+ 500.0
+ ],
+ [
+ 107.714734156526745,
+ 25.060014561634521,
+ 500.0
+ ],
+ [
+ 107.643861269523015,
+ 25.10500633078107,
+ 500.0
+ ],
+ [
+ 107.582588700441903,
+ 25.160494615778976,
+ 500.0
+ ],
+ [
+ 107.53277776879743,
+ 25.224806233152293,
+ 500.0
+ ],
+ [
+ 107.495951315241001,
+ 25.295999229379294,
+ 500.0
+ ],
+ [
+ 107.473246385191388,
+ 25.371920433446263,
+ 500.0
+ ],
+ [
+ 107.465377582751131,
+ 25.45026966633818,
+ 500.0
+ ],
+ [
+ 107.472612438778498,
+ 25.528668804958563,
+ 500.0
+ ],
+ [
+ 107.494759876460208,
+ 25.604733707918236,
+ 500.0
+ ],
+ [
+ 107.531172528579631,
+ 25.67614686671617,
+ 500.0
+ ],
+ [
+ 107.580763261986661,
+ 25.740728558578013,
+ 500.0
+ ],
+ [
+ 107.642035802726355,
+ 25.796504257032939,
+ 500.0
+ ],
+ [
+ 107.713128844546006,
+ 25.841766112300515,
+ 500.0
+ ],
+ [
+ 107.791872487563069,
+ 25.875126452081407,
+ 500.0
+ ],
+ [
+ 107.87585532395849,
+ 25.89556147655486,
+ 500.0
+ ],
+ [
+ 107.9625,
+ 25.902443626040089,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001300,
+ "name": "Guilin Liangjiang International Airport",
+ "country": "CN",
+ "city": "Guilin City",
+ "height": 500,
+ "level": 2,
+ "lat": "25.218209",
+ "lng": "110.042591",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.042591,
+ 25.669555873793175,
+ 500.0
+ ],
+ [
+ 110.12906667251228,
+ 25.662673770957603,
+ 500.0
+ ],
+ [
+ 110.212886000207178,
+ 25.642238860899738,
+ 500.0
+ ],
+ [
+ 110.291476912797762,
+ 25.608878630464261,
+ 500.0
+ ],
+ [
+ 110.362432875210146,
+ 25.563616770128203,
+ 500.0
+ ],
+ [
+ 110.423588273295479,
+ 25.507840822742889,
+ 500.0
+ ],
+ [
+ 110.473085355050614,
+ 25.443258508390681,
+ 500.0
+ ],
+ [
+ 110.509430562674225,
+ 25.371844244297336,
+ 500.0
+ ],
+ [
+ 110.531538575180917,
+ 25.295777683290709,
+ 500.0
+ ],
+ [
+ 110.538762908069387,
+ 25.217376317749796,
+ 500.0
+ ],
+ [
+ 110.53091244969805,
+ 25.139024335061116,
+ 500.0
+ ],
+ [
+ 110.50825382260679,
+ 25.06309996736784,
+ 500.0
+ ],
+ [
+ 110.471499918712638,
+ 24.991903559114377,
+ 500.0
+ ],
+ [
+ 110.421785355479358,
+ 24.927588489543993,
+ 500.0
+ ],
+ [
+ 110.360629929582501,
+ 24.872096944205349,
+ 500.0
+ ],
+ [
+ 110.289891406038564,
+ 24.827102340096861,
+ 500.0
+ ],
+ [
+ 110.211709180059671,
+ 24.793959983037123,
+ 500.0
+ ],
+ [
+ 110.128440494760838,
+ 24.773667281713394,
+ 500.0
+ ],
+ [
+ 110.042591,
+ 24.766834567820208,
+ 500.0
+ ],
+ [
+ 109.956741505239165,
+ 24.773667281713394,
+ 500.0
+ ],
+ [
+ 109.873472819940332,
+ 24.793959983037123,
+ 500.0
+ ],
+ [
+ 109.79529059396144,
+ 24.827102340096861,
+ 500.0
+ ],
+ [
+ 109.724552070417502,
+ 24.872096944205349,
+ 500.0
+ ],
+ [
+ 109.663396644520645,
+ 24.927588489543993,
+ 500.0
+ ],
+ [
+ 109.613682081287365,
+ 24.991903559114377,
+ 500.0
+ ],
+ [
+ 109.576928177393214,
+ 25.06309996736784,
+ 500.0
+ ],
+ [
+ 109.554269550301953,
+ 25.139024335061116,
+ 500.0
+ ],
+ [
+ 109.546419091930616,
+ 25.217376317749796,
+ 500.0
+ ],
+ [
+ 109.553643424819086,
+ 25.295777683290709,
+ 500.0
+ ],
+ [
+ 109.575751437325778,
+ 25.371844244297336,
+ 500.0
+ ],
+ [
+ 109.612096644949389,
+ 25.443258508390681,
+ 500.0
+ ],
+ [
+ 109.661593726704524,
+ 25.507840822742889,
+ 500.0
+ ],
+ [
+ 109.722749124789857,
+ 25.563616770128203,
+ 500.0
+ ],
+ [
+ 109.793705087202241,
+ 25.608878630464261,
+ 500.0
+ ],
+ [
+ 109.872295999792826,
+ 25.642238860899738,
+ 500.0
+ ],
+ [
+ 109.956115327487723,
+ 25.662673770957603,
+ 500.0
+ ],
+ [
+ 110.042591,
+ 25.669555873793175,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5190,
+ "name": "Guilin Liangjiang International Airport",
+ "country": "CN",
+ "city": "Guilin City",
+ "height": 0,
+ "level": 2,
+ "lat": "25.174796871629",
+ "lng": "110.041924233859",
+ "radius": 13393,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.010496809,
+ 25.1476656834,
+ 0.0
+ ],
+ [
+ 109.98880068699999,
+ 25.064363604099999,
+ 0.0
+ ],
+ [
+ 110.06269612,
+ 25.055820786200002,
+ 0.0
+ ],
+ [
+ 110.054404514,
+ 25.1441969179,
+ 0.0
+ ],
+ [
+ 110.083721392,
+ 25.157997787900001,
+ 0.0
+ ],
+ [
+ 110.095855567,
+ 25.170443069699999,
+ 0.0
+ ],
+ [
+ 110.1040196,
+ 25.1853062253,
+ 0.0
+ ],
+ [
+ 110.110992049,
+ 25.229941413599999,
+ 0.0
+ ],
+ [
+ 110.10719646299999,
+ 25.256114938300001,
+ 0.0
+ ],
+ [
+ 110.098876522,
+ 25.270909813199999,
+ 0.0
+ ],
+ [
+ 110.07121353399999,
+ 25.2923004674,
+ 0.0
+ ],
+ [
+ 110.010496809,
+ 25.1476656834,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5190,
+ "name": "Guilin Liangjiang International Airport",
+ "country": "CN",
+ "city": "Guilin City",
+ "height": 0,
+ "level": 2,
+ "lat": "25.2652286982856",
+ "lng": "110.038467083971",
+ "radius": 13371,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.091205082,
+ 25.375632208500001,
+ 0.0
+ ],
+ [
+ 110.018975763,
+ 25.384187105500001,
+ 0.0
+ ],
+ [
+ 110.022261695,
+ 25.295804031900001,
+ 0.0
+ ],
+ [
+ 109.992887929,
+ 25.2819674918,
+ 0.0
+ ],
+ [
+ 109.980760835,
+ 25.2695076979,
+ 0.0
+ ],
+ [
+ 109.972615371,
+ 25.254633673600001,
+ 0.0
+ ],
+ [
+ 109.965674847,
+ 25.2100595004,
+ 0.0
+ ],
+ [
+ 109.971595295,
+ 25.1812579626,
+ 0.0
+ ],
+ [
+ 109.981137794,
+ 25.1670833873,
+ 0.0
+ ],
+ [
+ 110.010496809,
+ 25.1476656834,
+ 0.0
+ ],
+ [
+ 110.07121353399999,
+ 25.2923004674,
+ 0.0
+ ],
+ [
+ 110.091205082,
+ 25.375632208500001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5190,
+ "name": "Guilin Liangjiang International Airport",
+ "country": "CN",
+ "city": "Guilin City",
+ "height": 120,
+ "level": 2,
+ "lat": "25.2200141887097",
+ "lng": "110.038369176663",
+ "radius": 23788,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.96206520699999,
+ 25.4225224258,
+ 120.0
+ ],
+ [
+ 110.160079405,
+ 25.403484277099999,
+ 120.0
+ ],
+ [
+ 110.114344011,
+ 25.017443689299999,
+ 120.0
+ ],
+ [
+ 109.916957196,
+ 25.0364818382,
+ 120.0
+ ],
+ [
+ 109.96206520699999,
+ 25.4225224258,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001747,
+ "name": "Shaoguan Danxia Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "24.97796784",
+ "lng": "113.42038678",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.42038678,
+ 25.4293294261619,
+ 500.0
+ ],
+ [
+ 113.506690301253357,
+ 25.422447371874682,
+ 500.0
+ ],
+ [
+ 113.590343076296762,
+ 25.402012581214393,
+ 500.0
+ ],
+ [
+ 113.66877841791873,
+ 25.368652466149495,
+ 500.0
+ ],
+ [
+ 113.739594755373176,
+ 25.323390604740581,
+ 500.0
+ ],
+ [
+ 113.800630840357883,
+ 25.267614406732296,
+ 500.0
+ ],
+ [
+ 113.85003254099837,
+ 25.203031458807047,
+ 500.0
+ ],
+ [
+ 113.886309065309391,
+ 25.131616065768963,
+ 500.0
+ ],
+ [
+ 113.90837693676886,
+ 25.0555478083695,
+ 500.0
+ ],
+ [
+ 113.915590568202461,
+ 24.97714416218939,
+ 500.0
+ ],
+ [
+ 113.907758810491842,
+ 24.898789361628893,
+ 500.0
+ ],
+ [
+ 113.885147359006368,
+ 24.822861750625563,
+ 500.0
+ ],
+ [
+ 113.848467359957581,
+ 24.751661843362186,
+ 500.0
+ ],
+ [
+ 113.798850956519686,
+ 24.687343232820012,
+ 500.0
+ ],
+ [
+ 113.737814844259645,
+ 24.631848342768272,
+ 500.0
+ ],
+ [
+ 113.667213167814396,
+ 24.586850829998362,
+ 500.0
+ ],
+ [
+ 113.589181291457592,
+ 24.553706217953255,
+ 500.0
+ ],
+ [
+ 113.506072123715498,
+ 24.533412088854188,
+ 500.0
+ ],
+ [
+ 113.42038678,
+ 24.526578886175734,
+ 500.0
+ ],
+ [
+ 113.334701436284504,
+ 24.533412088854188,
+ 500.0
+ ],
+ [
+ 113.25159226854241,
+ 24.553706217953255,
+ 500.0
+ ],
+ [
+ 113.173560392185607,
+ 24.586850829998362,
+ 500.0
+ ],
+ [
+ 113.102958715740357,
+ 24.631848342768272,
+ 500.0
+ ],
+ [
+ 113.041922603480316,
+ 24.687343232820012,
+ 500.0
+ ],
+ [
+ 112.992306200042421,
+ 24.751661843362186,
+ 500.0
+ ],
+ [
+ 112.955626200993635,
+ 24.822861750625563,
+ 500.0
+ ],
+ [
+ 112.93301474950816,
+ 24.898789361628893,
+ 500.0
+ ],
+ [
+ 112.925182991797541,
+ 24.97714416218939,
+ 500.0
+ ],
+ [
+ 112.932396623231142,
+ 25.0555478083695,
+ 500.0
+ ],
+ [
+ 112.954464494690612,
+ 25.131616065768963,
+ 500.0
+ ],
+ [
+ 112.990741019001632,
+ 25.203031458807047,
+ 500.0
+ ],
+ [
+ 113.04014271964212,
+ 25.267614406732296,
+ 500.0
+ ],
+ [
+ 113.101178804626826,
+ 25.323390604740581,
+ 500.0
+ ],
+ [
+ 113.171995142081272,
+ 25.368652466149495,
+ 500.0
+ ],
+ [
+ 113.250430483703241,
+ 25.402012581214393,
+ 500.0
+ ],
+ [
+ 113.334083258746645,
+ 25.422447371874682,
+ 500.0
+ ],
+ [
+ 113.42038678,
+ 25.4293294261619,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001746,
+ "name": "Shaoguan Danxia Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "25.0155015791717",
+ "lng": "113.39463576245",
+ "radius": 13140,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.397673571,
+ 25.049992857599999,
+ 0.0
+ ],
+ [
+ 113.36020513299999,
+ 25.129487889899998,
+ 0.0
+ ],
+ [
+ 113.298045767,
+ 25.094931183100002,
+ 0.0
+ ],
+ [
+ 113.359390089,
+ 25.028698843,
+ 0.0
+ ],
+ [
+ 113.347613154,
+ 25.014036615399998,
+ 0.0
+ ],
+ [
+ 113.341245294,
+ 24.9984739125,
+ 0.0
+ ],
+ [
+ 113.339539726,
+ 24.9819478193,
+ 0.0
+ ],
+ [
+ 113.35024756599999,
+ 24.950499445,
+ 0.0
+ ],
+ [
+ 113.374304558,
+ 24.919578276199999,
+ 0.0
+ ],
+ [
+ 113.406452059,
+ 24.9043094544,
+ 0.0
+ ],
+ [
+ 113.44270856,
+ 24.905656178099999,
+ 0.0
+ ],
+ [
+ 113.397673571,
+ 25.049992857599999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001746,
+ "name": "Shaoguan Danxia Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "24.9401130786396",
+ "lng": "113.445672304438",
+ "radius": 13140,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.480105157,
+ 24.8261376528,
+ 0.0
+ ],
+ [
+ 113.542150302,
+ 24.860688917400001,
+ 0.0
+ ],
+ [
+ 113.48097505299999,
+ 24.926955810100001,
+ 0.0
+ ],
+ [
+ 113.49271965699999,
+ 24.9415460168,
+ 0.0
+ ],
+ [
+ 113.499120093,
+ 24.957096738200001,
+ 0.0
+ ],
+ [
+ 113.500864144,
+ 24.973619501,
+ 0.0
+ ],
+ [
+ 113.49022593399999,
+ 25.0050878461,
+ 0.0
+ ],
+ [
+ 113.466149649,
+ 25.036068774,
+ 0.0
+ ],
+ [
+ 113.433972736,
+ 25.051346323699999,
+ 0.0
+ ],
+ [
+ 113.397673571,
+ 25.049992857599999,
+ 0.0
+ ],
+ [
+ 113.44270856,
+ 24.905656178099999,
+ 0.0
+ ],
+ [
+ 113.480105157,
+ 24.8261376528,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001746,
+ "name": "Shaoguan Danxia Airport",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "24.9777552612743",
+ "lng": "113.420070871678",
+ "radius": 23353,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.614065522,
+ 24.8630523008,
+ 120.0
+ ],
+ [
+ 113.44517254599999,
+ 24.7689721124,
+ 120.0
+ ],
+ [
+ 113.225917057,
+ 25.092488594,
+ 120.0
+ ],
+ [
+ 113.39525486,
+ 25.186568781799998,
+ 120.0
+ ],
+ [
+ 113.614065522,
+ 24.8630523008,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000080,
+ "name": "RCR48(第二核能發電廠)",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.2",
+ "lng": "121.65",
+ "radius": 3704,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.65,
+ 25.233436808310636,
+ 0.0
+ ],
+ [
+ 121.656383481407602,
+ 25.23292869142,
+ 0.0
+ ],
+ [
+ 121.662572848857522,
+ 25.231419791864472,
+ 0.0
+ ],
+ [
+ 121.668379905188601,
+ 25.228955992038777,
+ 0.0
+ ],
+ [
+ 121.673628104784271,
+ 25.225612207241561,
+ 0.0
+ ],
+ [
+ 121.678157930030778,
+ 25.221490102886694,
+ 0.0
+ ],
+ [
+ 121.681831744650054,
+ 25.21671499745235,
+ 0.0
+ ],
+ [
+ 121.684537975662792,
+ 25.211432046238478,
+ 0.0
+ ],
+ [
+ 121.6861944969273,
+ 25.205801822915607,
+ 0.0
+ ],
+ [
+ 121.686751112246128,
+ 25.199995434081217,
+ 0.0
+ ],
+ [
+ 121.686191064079807,
+ 25.194189316047282,
+ 0.0
+ ],
+ [
+ 121.684531524019633,
+ 25.188559872463301,
+ 0.0
+ ],
+ [
+ 121.681823052374185,
+ 25.183278115878785,
+ 0.0
+ ],
+ [
+ 121.678148045538563,
+ 25.178504475874458,
+ 0.0
+ ],
+ [
+ 121.673618220291218,
+ 25.174383930997813,
+ 0.0
+ ],
+ [
+ 121.6683712129106,
+ 25.171041611630937,
+ 0.0
+ ],
+ [
+ 121.662566397211947,
+ 25.168579006435142,
+ 0.0
+ ],
+ [
+ 121.65638004855856,
+ 25.167070886618966,
+ 0.0
+ ],
+ [
+ 121.65,
+ 25.166563040528963,
+ 0.0
+ ],
+ [
+ 121.643619951441451,
+ 25.167070886618966,
+ 0.0
+ ],
+ [
+ 121.637433602788064,
+ 25.168579006435142,
+ 0.0
+ ],
+ [
+ 121.631628787089412,
+ 25.171041611630937,
+ 0.0
+ ],
+ [
+ 121.626381779708794,
+ 25.174383930997813,
+ 0.0
+ ],
+ [
+ 121.621851954461448,
+ 25.178504475874458,
+ 0.0
+ ],
+ [
+ 121.618176947625827,
+ 25.183278115878785,
+ 0.0
+ ],
+ [
+ 121.615468475980379,
+ 25.188559872463301,
+ 0.0
+ ],
+ [
+ 121.613808935920204,
+ 25.194189316047282,
+ 0.0
+ ],
+ [
+ 121.613248887753883,
+ 25.199995434081217,
+ 0.0
+ ],
+ [
+ 121.613805503072712,
+ 25.205801822915607,
+ 0.0
+ ],
+ [
+ 121.615462024337219,
+ 25.211432046238478,
+ 0.0
+ ],
+ [
+ 121.618168255349957,
+ 25.21671499745235,
+ 0.0
+ ],
+ [
+ 121.621842069969233,
+ 25.221490102886694,
+ 0.0
+ ],
+ [
+ 121.62637189521574,
+ 25.225612207241561,
+ 0.0
+ ],
+ [
+ 121.63162009481141,
+ 25.228955992038777,
+ 0.0
+ ],
+ [
+ 121.637427151142489,
+ 25.231419791864472,
+ 0.0
+ ],
+ [
+ 121.64361651859241,
+ 25.23292869142,
+ 0.0
+ ],
+ [
+ 121.65,
+ 25.233436808310636,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7608,
+ "name": "Taipei Songshan Airport",
+ "country": "TW",
+ "city": "Taipei City",
+ "height": 0,
+ "level": 2,
+ "lat": "25.0695929369847",
+ "lng": "121.552520021558",
+ "radius": 5648,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.50383,
+ 25.0948,
+ 0.0
+ ],
+ [
+ 121.60321,
+ 25.09128,
+ 0.0
+ ],
+ [
+ 121.60119,
+ 25.04437,
+ 0.0
+ ],
+ [
+ 121.50185,
+ 25.04788,
+ 0.0
+ ],
+ [
+ 121.50383,
+ 25.0948,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7608,
+ "name": "Taipei Songshan Airport",
+ "country": "TW",
+ "city": "Taipei City",
+ "height": 0,
+ "level": 2,
+ "lat": "25.0676902200196",
+ "lng": "121.605990959842",
+ "radius": 2878,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.60321,
+ 25.09128,
+ 0.0
+ ],
+ [
+ 121.60119,
+ 25.04437,
+ 0.0
+ ],
+ [
+ 121.604875408,
+ 25.041819261800001,
+ 0.0
+ ],
+ [
+ 121.608571416,
+ 25.046933252700001,
+ 0.0
+ ],
+ [
+ 121.611473997,
+ 25.0524557884,
+ 0.0
+ ],
+ [
+ 121.61352966299999,
+ 25.0582853073,
+ 0.0
+ ],
+ [
+ 121.614700484,
+ 25.064314588199998,
+ 0.0
+ ],
+ [
+ 121.614964791,
+ 25.070432720300001,
+ 0.0
+ ],
+ [
+ 121.614317588,
+ 25.076527142100002,
+ 0.0
+ ],
+ [
+ 121.61277065,
+ 25.082485712299999,
+ 0.0
+ ],
+ [
+ 121.61035231699999,
+ 25.088198773,
+ 0.0
+ ],
+ [
+ 121.60710698299999,
+ 25.093561169899999,
+ 0.0
+ ],
+ [
+ 121.60321,
+ 25.09128,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7608,
+ "name": "Taipei Songshan Airport",
+ "country": "TW",
+ "city": "Taipei City",
+ "height": 0,
+ "level": 2,
+ "lat": "25.0714777212543",
+ "lng": "121.499054453022",
+ "radius": 2878,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.50383,
+ 25.0948,
+ 0.0
+ ],
+ [
+ 121.500148073,
+ 25.097349837399999,
+ 0.0
+ ],
+ [
+ 121.496454957,
+ 25.0922331316,
+ 0.0
+ ],
+ [
+ 121.49355651499999,
+ 25.0867083059,
+ 0.0
+ ],
+ [
+ 121.491505993,
+ 25.080877061,
+ 0.0
+ ],
+ [
+ 121.490341011,
+ 25.0748467238,
+ 0.0
+ ],
+ [
+ 121.490082876,
+ 25.068728270400001,
+ 0.0
+ ],
+ [
+ 121.490736205,
+ 25.062634281899999,
+ 0.0
+ ],
+ [
+ 121.492288843,
+ 25.056676873299999,
+ 0.0
+ ],
+ [
+ 121.49471210199999,
+ 25.0509656306,
+ 0.0
+ ],
+ [
+ 121.497961295,
+ 25.0456055971,
+ 0.0
+ ],
+ [
+ 121.50185,
+ 25.04788,
+ 0.0
+ ],
+ [
+ 121.50383,
+ 25.0948,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7608,
+ "name": "Taipei Songshan Airport",
+ "country": "TW",
+ "city": "Taipei City",
+ "height": 60,
+ "level": 2,
+ "lat": "25.0695898442003",
+ "lng": "121.552517765519",
+ "radius": 17356,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.39328,
+ 25.12935,
+ 60.0
+ ],
+ [
+ 121.71636,
+ 25.11791,
+ 60.0
+ ],
+ [
+ 121.7116,
+ 25.00966,
+ 60.0
+ ],
+ [
+ 121.3888,
+ 25.02109,
+ 60.0
+ ],
+ [
+ 121.39328,
+ 25.12935,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000286,
+ "name": "臺北榮民總醫院直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.120306",
+ "lng": "121.520139",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.520139,
+ 25.129333328136799,
+ 0.0
+ ],
+ [
+ 121.521860943880682,
+ 25.129196172819388,
+ 0.0
+ ],
+ [
+ 121.523530556122893,
+ 25.128788875149812,
+ 0.0
+ ],
+ [
+ 121.525097096515466,
+ 25.12812381321779,
+ 0.0
+ ],
+ [
+ 121.526512959183393,
+ 25.127221198509559,
+ 0.0
+ ],
+ [
+ 121.527735119953391,
+ 25.126108461319529,
+ 0.0
+ ],
+ [
+ 121.528726444092257,
+ 25.124819416715052,
+ 0.0
+ ],
+ [
+ 121.529456814625945,
+ 25.123393236466111,
+ 0.0
+ ],
+ [
+ 121.529904046956659,
+ 25.12187325825154,
+ 0.0
+ ],
+ [
+ 121.530054562044342,
+ 25.120305668393755,
+ 0.0
+ ],
+ [
+ 121.5299037978059,
+ 25.118738098202801,
+ 0.0
+ ],
+ [
+ 121.529456346375682,
+ 25.117218176616642,
+ 0.0
+ ],
+ [
+ 121.528725813220362,
+ 25.115792083127428,
+ 0.0
+ ],
+ [
+ 121.527734402552355,
+ 25.114503144949538,
+ 0.0
+ ],
+ [
+ 121.526512241782356,
+ 25.113390521016299,
+ 0.0
+ ],
+ [
+ 121.525096465643571,
+ 25.112488012734644,
+ 0.0
+ ],
+ [
+ 121.523530087872615,
+ 25.111823037562356,
+ 0.0
+ ],
+ [
+ 121.521860694729924,
+ 25.111415796521182,
+ 0.0
+ ],
+ [
+ 121.520139,
+ 25.111278660870607,
+ 0.0
+ ],
+ [
+ 121.518417305270077,
+ 25.111415796521182,
+ 0.0
+ ],
+ [
+ 121.516747912127386,
+ 25.111823037562356,
+ 0.0
+ ],
+ [
+ 121.515181534356429,
+ 25.112488012734644,
+ 0.0
+ ],
+ [
+ 121.513765758217644,
+ 25.113390521016299,
+ 0.0
+ ],
+ [
+ 121.512543597447646,
+ 25.114503144949538,
+ 0.0
+ ],
+ [
+ 121.511552186779639,
+ 25.115792083127428,
+ 0.0
+ ],
+ [
+ 121.510821653624319,
+ 25.117218176616642,
+ 0.0
+ ],
+ [
+ 121.5103742021941,
+ 25.118738098202801,
+ 0.0
+ ],
+ [
+ 121.510223437955659,
+ 25.120305668393755,
+ 0.0
+ ],
+ [
+ 121.510373953043342,
+ 25.12187325825154,
+ 0.0
+ ],
+ [
+ 121.510821185374056,
+ 25.123393236466111,
+ 0.0
+ ],
+ [
+ 121.511551555907744,
+ 25.124819416715052,
+ 0.0
+ ],
+ [
+ 121.51254288004661,
+ 25.126108461319529,
+ 0.0
+ ],
+ [
+ 121.513765040816608,
+ 25.127221198509559,
+ 0.0
+ ],
+ [
+ 121.515180903484534,
+ 25.12812381321779,
+ 0.0
+ ],
+ [
+ 121.516747443877108,
+ 25.128788875149812,
+ 0.0
+ ],
+ [
+ 121.518417056119318,
+ 25.129196172819388,
+ 0.0
+ ],
+ [
+ 121.520139,
+ 25.129333328136799,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001477,
+ "name": "Taipei Songshan Airport",
+ "country": "TW",
+ "city": "Taipei City",
+ "height": 500,
+ "level": 2,
+ "lat": "25.067799",
+ "lng": "121.55313",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.55313,
+ 25.519155096729758,
+ 500.0
+ ],
+ [
+ 121.63949763452689,
+ 25.51227302423635,
+ 500.0
+ ],
+ [
+ 121.723212437613824,
+ 25.491838188761392,
+ 500.0
+ ],
+ [
+ 121.801705717114217,
+ 25.458478030241238,
+ 500.0
+ ],
+ [
+ 121.872574053346767,
+ 25.413216168727697,
+ 500.0
+ ],
+ [
+ 121.933654572027834,
+ 25.357440063687662,
+ 500.0
+ ],
+ [
+ 121.983091793098623,
+ 25.292857351639736,
+ 500.0
+ ],
+ [
+ 122.019393894629559,
+ 25.221442379394151,
+ 500.0
+ ],
+ [
+ 122.041476713351912,
+ 25.145374754645214,
+ 500.0
+ ],
+ [
+ 122.048694328126516,
+ 25.066971959275531,
+ 500.0
+ ],
+ [
+ 122.040855604034164,
+ 24.988618210157863,
+ 500.0
+ ],
+ [
+ 122.018226581978766,
+ 24.912691809509539,
+ 500.0
+ ],
+ [
+ 121.98151905851168,
+ 24.841493208152066,
+ 500.0
+ ],
+ [
+ 121.931866098426639,
+ 24.777175919270604,
+ 500.0
+ ],
+ [
+ 121.870785552270959,
+ 24.721682277691233,
+ 500.0
+ ],
+ [
+ 121.800132912959143,
+ 24.676685850670712,
+ 500.0
+ ],
+ [
+ 121.722045045853079,
+ 24.643542080391978,
+ 500.0
+ ],
+ [
+ 121.638876473573774,
+ 24.62324848427787,
+ 500.0
+ ],
+ [
+ 121.55313,
+ 24.616415464063209,
+ 500.0
+ ],
+ [
+ 121.467383526426218,
+ 24.62324848427787,
+ 500.0
+ ],
+ [
+ 121.384214954146913,
+ 24.643542080391978,
+ 500.0
+ ],
+ [
+ 121.306127087040849,
+ 24.676685850670712,
+ 500.0
+ ],
+ [
+ 121.235474447729032,
+ 24.721682277691233,
+ 500.0
+ ],
+ [
+ 121.174393901573353,
+ 24.777175919270604,
+ 500.0
+ ],
+ [
+ 121.124740941488312,
+ 24.841493208152066,
+ 500.0
+ ],
+ [
+ 121.088033418021226,
+ 24.912691809509539,
+ 500.0
+ ],
+ [
+ 121.065404395965828,
+ 24.988618210157863,
+ 500.0
+ ],
+ [
+ 121.057565671873476,
+ 25.066971959275531,
+ 500.0
+ ],
+ [
+ 121.06478328664808,
+ 25.145374754645214,
+ 500.0
+ ],
+ [
+ 121.086866105370433,
+ 25.221442379394151,
+ 500.0
+ ],
+ [
+ 121.123168206901369,
+ 25.292857351639736,
+ 500.0
+ ],
+ [
+ 121.172605427972158,
+ 25.357440063687662,
+ 500.0
+ ],
+ [
+ 121.233685946653225,
+ 25.413216168727697,
+ 500.0
+ ],
+ [
+ 121.304554282885775,
+ 25.458478030241238,
+ 500.0
+ ],
+ [
+ 121.383047562386167,
+ 25.491838188761392,
+ 500.0
+ ],
+ [
+ 121.466762365473102,
+ 25.51227302423635,
+ 500.0
+ ],
+ [
+ 121.55313,
+ 25.519155096729758,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1569,
+ "name": "Hsinchu Airport",
+ "country": "TW",
+ "city": "Hsinchu",
+ "height": 0,
+ "level": 2,
+ "lat": "24.819628",
+ "lng": "120.937542",
+ "radius": 2120,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.937542,
+ 24.838766695621743,
+ 0.0
+ ],
+ [
+ 120.941183947585046,
+ 24.838475891849718,
+ 0.0
+ ],
+ [
+ 120.94471518668216,
+ 24.837612320396968,
+ 0.0
+ ],
+ [
+ 120.948028378632088,
+ 24.836202231783108,
+ 0.0
+ ],
+ [
+ 120.951022821316158,
+ 24.834288488205893,
+ 0.0
+ ],
+ [
+ 120.953607512855683,
+ 24.831929259097585,
+ 0.0
+ ],
+ [
+ 120.955703918737413,
+ 24.829196251104388,
+ 0.0
+ ],
+ [
+ 120.957248358036466,
+ 24.826172526580862,
+ 0.0
+ ],
+ [
+ 120.958193936235361,
+ 24.82294997721381,
+ 0.0
+ ],
+ [
+ 120.958511966165162,
+ 24.81962652984819,
+ 0.0
+ ],
+ [
+ 120.958192834369598,
+ 24.816303169666831,
+ 0.0
+ ],
+ [
+ 120.957246287206189,
+ 24.813080871336837,
+ 0.0
+ ],
+ [
+ 120.955701128715262,
+ 24.810057531424427,
+ 0.0
+ ],
+ [
+ 120.953604340159472,
+ 24.807324995226622,
+ 0.0
+ ],
+ [
+ 120.951019648619862,
+ 24.804966268192508,
+ 0.0
+ ],
+ [
+ 120.948025588609724,
+ 24.803052996410717,
+ 0.0
+ ],
+ [
+ 120.944713115851627,
+ 24.801643292408027,
+ 0.0
+ ],
+ [
+ 120.941182845719112,
+ 24.800779971992405,
+ 0.0
+ ],
+ [
+ 120.937542,
+ 24.800489255404656,
+ 0.0
+ ],
+ [
+ 120.933901154280875,
+ 24.800779971992405,
+ 0.0
+ ],
+ [
+ 120.93037088414836,
+ 24.801643292408027,
+ 0.0
+ ],
+ [
+ 120.927058411390263,
+ 24.803052996410717,
+ 0.0
+ ],
+ [
+ 120.924064351380125,
+ 24.804966268192508,
+ 0.0
+ ],
+ [
+ 120.921479659840514,
+ 24.807324995226622,
+ 0.0
+ ],
+ [
+ 120.919382871284725,
+ 24.810057531424427,
+ 0.0
+ ],
+ [
+ 120.917837712793798,
+ 24.813080871336837,
+ 0.0
+ ],
+ [
+ 120.916891165630389,
+ 24.816303169666831,
+ 0.0
+ ],
+ [
+ 120.916572033834825,
+ 24.81962652984819,
+ 0.0
+ ],
+ [
+ 120.916890063764626,
+ 24.82294997721381,
+ 0.0
+ ],
+ [
+ 120.917835641963521,
+ 24.826172526580862,
+ 0.0
+ ],
+ [
+ 120.919380081262574,
+ 24.829196251104388,
+ 0.0
+ ],
+ [
+ 120.921476487144304,
+ 24.831929259097585,
+ 0.0
+ ],
+ [
+ 120.924061178683829,
+ 24.834288488205893,
+ 0.0
+ ],
+ [
+ 120.927055621367899,
+ 24.836202231783108,
+ 0.0
+ ],
+ [
+ 120.930368813317827,
+ 24.837612320396968,
+ 0.0
+ ],
+ [
+ 120.933900052414941,
+ 24.838475891849718,
+ 0.0
+ ],
+ [
+ 120.937542,
+ 24.838766695621743,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001485,
+ "name": "Taiwan Taoyuan International Airport",
+ "country": "TW",
+ "city": "Taipei",
+ "height": 500,
+ "level": 2,
+ "lat": "25.080739",
+ "lng": "121.235926",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.235926,
+ 25.532094304821513,
+ 500.0
+ ],
+ [
+ 121.322302895233818,
+ 25.525212229710831,
+ 500.0
+ ],
+ [
+ 121.406026657848216,
+ 25.504777387797279,
+ 500.0
+ ],
+ [
+ 121.484528306112651,
+ 25.471417223048888,
+ 500.0
+ ],
+ [
+ 121.555404153290198,
+ 25.426155361570487,
+ 500.0
+ ],
+ [
+ 121.616491090239165,
+ 25.370379269996139,
+ 500.0
+ ],
+ [
+ 121.665933442161304,
+ 25.305796592027626,
+ 500.0
+ ],
+ [
+ 121.702239238347786,
+ 25.234381680529093,
+ 500.0
+ ],
+ [
+ 121.724324216316802,
+ 25.15831414707667,
+ 500.0
+ ],
+ [
+ 121.731542406668382,
+ 25.079911474458651,
+ 500.0
+ ],
+ [
+ 121.723702676510385,
+ 25.001557877017891,
+ 500.0
+ ],
+ [
+ 121.701071116633557,
+ 24.925631650953914,
+ 500.0
+ ],
+ [
+ 121.664359617506719,
+ 24.854433237950598,
+ 500.0
+ ],
+ [
+ 121.614701377031722,
+ 24.790116139686326,
+ 500.0
+ ],
+ [
+ 121.553614412579307,
+ 24.73462267816209,
+ 500.0
+ ],
+ [
+ 121.482954411816962,
+ 24.689626407724681,
+ 500.0
+ ],
+ [
+ 121.404858456941042,
+ 24.656482758840443,
+ 500.0
+ ],
+ [
+ 121.321681303737876,
+ 24.636189239589353,
+ 500.0
+ ],
+ [
+ 121.235926,
+ 24.629356245688086,
+ 500.0
+ ],
+ [
+ 121.150170696262137,
+ 24.636189239589353,
+ 500.0
+ ],
+ [
+ 121.06699354305897,
+ 24.656482758840443,
+ 500.0
+ ],
+ [
+ 120.98889758818305,
+ 24.689626407724681,
+ 500.0
+ ],
+ [
+ 120.918237587420705,
+ 24.73462267816209,
+ 500.0
+ ],
+ [
+ 120.857150622968291,
+ 24.790116139686326,
+ 500.0
+ ],
+ [
+ 120.807492382493294,
+ 24.854433237950598,
+ 500.0
+ ],
+ [
+ 120.770780883366456,
+ 24.925631650953914,
+ 500.0
+ ],
+ [
+ 120.748149323489628,
+ 25.001557877017891,
+ 500.0
+ ],
+ [
+ 120.740309593331631,
+ 25.079911474458651,
+ 500.0
+ ],
+ [
+ 120.747527783683211,
+ 25.15831414707667,
+ 500.0
+ ],
+ [
+ 120.769612761652226,
+ 25.234381680529093,
+ 500.0
+ ],
+ [
+ 120.805918557838709,
+ 25.305796592027626,
+ 500.0
+ ],
+ [
+ 120.855360909760847,
+ 25.370379269996139,
+ 500.0
+ ],
+ [
+ 120.916447846709815,
+ 25.426155361570487,
+ 500.0
+ ],
+ [
+ 120.987323693887362,
+ 25.471417223048888,
+ 500.0
+ ],
+ [
+ 121.065825342151797,
+ 25.504777387797279,
+ 500.0
+ ],
+ [
+ 121.149549104766194,
+ 25.525212229710831,
+ 500.0
+ ],
+ [
+ 121.235926,
+ 25.532094304821513,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7564,
+ "name": "Taiwan Taoyuan International Airport",
+ "country": "TW",
+ "city": "Taipei",
+ "height": 0,
+ "level": 2,
+ "lat": "25.08369704935",
+ "lng": "121.229711800818",
+ "radius": 6140,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.171286,
+ 25.06873,
+ 0.0
+ ],
+ [
+ 121.254453,
+ 25.134175,
+ 0.0
+ ],
+ [
+ 121.288152,
+ 25.098641,
+ 0.0
+ ],
+ [
+ 121.204991,
+ 25.033215,
+ 0.0
+ ],
+ [
+ 121.171286,
+ 25.06873,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7564,
+ "name": "Taiwan Taoyuan International Airport",
+ "country": "TW",
+ "city": "Taipei",
+ "height": 0,
+ "level": 2,
+ "lat": "25.0713168591238",
+ "lng": "121.236806965239",
+ "radius": 6000,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.179552,
+ 25.057261,
+ 0.0
+ ],
+ [
+ 121.260376,
+ 25.120881,
+ 0.0
+ ],
+ [
+ 121.294075,
+ 25.08535,
+ 0.0
+ ],
+ [
+ 121.213257,
+ 25.021749,
+ 0.0
+ ],
+ [
+ 121.179552,
+ 25.057261,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7564,
+ "name": "Taiwan Taoyuan International Airport",
+ "country": "TW",
+ "city": "Taipei",
+ "height": 0,
+ "level": 2,
+ "lat": "25.1186661585719",
+ "lng": "121.274176480439",
+ "radius": 2872,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.255588,
+ 25.138263,
+ 0.0
+ ],
+ [
+ 121.259732,
+ 25.137132,
+ 0.0
+ ],
+ [
+ 121.263752,
+ 25.135677,
+ 0.0
+ ],
+ [
+ 121.267617,
+ 25.133908,
+ 0.0
+ ],
+ [
+ 121.271298,
+ 25.131839,
+ 0.0
+ ],
+ [
+ 121.274767,
+ 25.129486,
+ 0.0
+ ],
+ [
+ 121.277997,
+ 25.126867,
+ 0.0
+ ],
+ [
+ 121.280964,
+ 25.124001,
+ 0.0
+ ],
+ [
+ 121.283645,
+ 25.120911,
+ 0.0
+ ],
+ [
+ 121.28602,
+ 25.117619,
+ 0.0
+ ],
+ [
+ 121.28807,
+ 25.114152,
+ 0.0
+ ],
+ [
+ 121.289781,
+ 25.110535,
+ 0.0
+ ],
+ [
+ 121.291139,
+ 25.106796,
+ 0.0
+ ],
+ [
+ 121.292134,
+ 25.102964,
+ 0.0
+ ],
+ [
+ 121.292759,
+ 25.099067,
+ 0.0
+ ],
+ [
+ 121.288152,
+ 25.098641,
+ 0.0
+ ],
+ [
+ 121.254453,
+ 25.134175,
+ 0.0
+ ],
+ [
+ 121.255588,
+ 25.138263,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7564,
+ "name": "Taiwan Taoyuan International Airport",
+ "country": "TW",
+ "city": "Taipei",
+ "height": 0,
+ "level": 2,
+ "lat": "25.0487146566501",
+ "lng": "121.185271969793",
+ "radius": 2872,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.203858,
+ 25.029127,
+ 0.0
+ ],
+ [
+ 121.199718,
+ 25.030256,
+ 0.0
+ ],
+ [
+ 121.1957,
+ 25.031709,
+ 0.0
+ ],
+ [
+ 121.191837,
+ 25.033476,
+ 0.0
+ ],
+ [
+ 121.188158,
+ 25.035543,
+ 0.0
+ ],
+ [
+ 121.18469,
+ 25.037894,
+ 0.0
+ ],
+ [
+ 121.181461,
+ 25.040511,
+ 0.0
+ ],
+ [
+ 121.178493,
+ 25.043375,
+ 0.0
+ ],
+ [
+ 121.175811,
+ 25.046464,
+ 0.0
+ ],
+ [
+ 121.173435,
+ 25.049753,
+ 0.0
+ ],
+ [
+ 121.171382,
+ 25.053219,
+ 0.0
+ ],
+ [
+ 121.169668,
+ 25.056835,
+ 0.0
+ ],
+ [
+ 121.168307,
+ 25.060572,
+ 0.0
+ ],
+ [
+ 121.167308,
+ 25.064404,
+ 0.0
+ ],
+ [
+ 121.16668,
+ 25.0683,
+ 0.0
+ ],
+ [
+ 121.171286,
+ 25.06873,
+ 0.0
+ ],
+ [
+ 121.204991,
+ 25.033215,
+ 0.0
+ ],
+ [
+ 121.203858,
+ 25.029127,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7564,
+ "name": "Taiwan Taoyuan International Airport",
+ "country": "TW",
+ "city": "Taipei",
+ "height": 0,
+ "level": 2,
+ "lat": "25.1053741581245",
+ "lng": "121.280098478336",
+ "radius": 2872,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.26151,
+ 25.124969,
+ 0.0
+ ],
+ [
+ 121.265654,
+ 25.123839,
+ 0.0
+ ],
+ [
+ 121.269673,
+ 25.122384,
+ 0.0
+ ],
+ [
+ 121.273538,
+ 25.120615,
+ 0.0
+ ],
+ [
+ 121.277219,
+ 25.118547,
+ 0.0
+ ],
+ [
+ 121.280688,
+ 25.116194,
+ 0.0
+ ],
+ [
+ 121.283918,
+ 25.113575,
+ 0.0
+ ],
+ [
+ 121.286885,
+ 25.11071,
+ 0.0
+ ],
+ [
+ 121.289566,
+ 25.10762,
+ 0.0
+ ],
+ [
+ 121.291941,
+ 25.104329,
+ 0.0
+ ],
+ [
+ 121.293992,
+ 25.100862,
+ 0.0
+ ],
+ [
+ 121.295703,
+ 25.097245,
+ 0.0
+ ],
+ [
+ 121.297061,
+ 25.093506,
+ 0.0
+ ],
+ [
+ 121.298057,
+ 25.089674,
+ 0.0
+ ],
+ [
+ 121.298681,
+ 25.085777,
+ 0.0
+ ],
+ [
+ 121.294075,
+ 25.08535,
+ 0.0
+ ],
+ [
+ 121.260376,
+ 25.120881,
+ 0.0
+ ],
+ [
+ 121.26151,
+ 25.124969,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7564,
+ "name": "Taiwan Taoyuan International Airport",
+ "country": "TW",
+ "city": "Taipei",
+ "height": 0,
+ "level": 2,
+ "lat": "25.0372466562628",
+ "lng": "121.193538968092",
+ "radius": 2872,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.212125,
+ 25.01766,
+ 0.0
+ ],
+ [
+ 121.207985,
+ 25.018789,
+ 0.0
+ ],
+ [
+ 121.203968,
+ 25.020242,
+ 0.0
+ ],
+ [
+ 121.200105,
+ 25.022009,
+ 0.0
+ ],
+ [
+ 121.196426,
+ 25.024075,
+ 0.0
+ ],
+ [
+ 121.192958,
+ 25.026426,
+ 0.0
+ ],
+ [
+ 121.189729,
+ 25.029043,
+ 0.0
+ ],
+ [
+ 121.186761,
+ 25.031907,
+ 0.0
+ ],
+ [
+ 121.184079,
+ 25.034995,
+ 0.0
+ ],
+ [
+ 121.181702,
+ 25.038284,
+ 0.0
+ ],
+ [
+ 121.179649,
+ 25.04175,
+ 0.0
+ ],
+ [
+ 121.177936,
+ 25.045365,
+ 0.0
+ ],
+ [
+ 121.176574,
+ 25.049103,
+ 0.0
+ ],
+ [
+ 121.175575,
+ 25.052934,
+ 0.0
+ ],
+ [
+ 121.174947,
+ 25.056831,
+ 0.0
+ ],
+ [
+ 121.179552,
+ 25.057261,
+ 0.0
+ ],
+ [
+ 121.213257,
+ 25.021749,
+ 0.0
+ ],
+ [
+ 121.212125,
+ 25.01766,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7564,
+ "name": "Taiwan Taoyuan International Airport",
+ "country": "TW",
+ "city": "Taipei",
+ "height": 60,
+ "level": 2,
+ "lat": "25.0713098764598",
+ "lng": "121.236801898346",
+ "radius": 17766,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.32308,
+ 25.2107,
+ 60.0
+ ],
+ [
+ 121.40083,
+ 25.12867,
+ 60.0
+ ],
+ [
+ 121.15072,
+ 24.93187,
+ 60.0
+ ],
+ [
+ 121.07293,
+ 25.01378,
+ 60.0
+ ],
+ [
+ 121.32308,
+ 25.2107,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7564,
+ "name": "Taiwan Taoyuan International Airport",
+ "country": "TW",
+ "city": "Taipei",
+ "height": 60,
+ "level": 2,
+ "lat": "25.0836905745015",
+ "lng": "121.229704843918",
+ "radius": 17913,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.31717,
+ 25.22399,
+ 60.0
+ ],
+ [
+ 121.39492,
+ 25.14195,
+ 60.0
+ ],
+ [
+ 121.14244,
+ 24.94334,
+ 60.0
+ ],
+ [
+ 121.06465,
+ 25.02525,
+ 60.0
+ ],
+ [
+ 121.31717,
+ 25.22399,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 31502,
+ "name": "總統府",
+ "country": "TW",
+ "city": "100",
+ "height": 0,
+ "level": 2,
+ "lat": "25.039892",
+ "lng": "121.511997",
+ "radius": 292,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.511997,
+ 25.042528009512768,
+ 0.0
+ ],
+ [
+ 121.512499453485916,
+ 25.042487961762671,
+ 0.0
+ ],
+ [
+ 121.512986639222504,
+ 25.042369035418375,
+ 0.0
+ ],
+ [
+ 121.513443753478441,
+ 25.042174844213768,
+ 0.0
+ ],
+ [
+ 121.51385690644544,
+ 25.041911288882883,
+ 0.0
+ ],
+ [
+ 121.514213544348294,
+ 25.041586377828999,
+ 0.0
+ ],
+ [
+ 121.514502830924869,
+ 25.041209983744221,
+ 0.0
+ ],
+ [
+ 121.514715976680463,
+ 25.040793543580232,
+ 0.0
+ ],
+ [
+ 121.514846505912118,
+ 25.040349710993201,
+ 0.0
+ ],
+ [
+ 121.514890453394457,
+ 25.039891971828691,
+ 0.0
+ ],
+ [
+ 121.514846484759786,
+ 25.039434234334919,
+ 0.0
+ ],
+ [
+ 121.51471593692709,
+ 25.038990406558593,
+ 0.0
+ ],
+ [
+ 121.514502777365294,
+ 25.03857397376504,
+ 0.0
+ ],
+ [
+ 121.514213483442603,
+ 25.038197588721424,
+ 0.0
+ ],
+ [
+ 121.513856845539735,
+ 25.037872687288978,
+ 0.0
+ ],
+ [
+ 121.513443699918852,
+ 25.037609140999258,
+ 0.0
+ ],
+ [
+ 121.51298659946913,
+ 25.037414957165073,
+ 0.0
+ ],
+ [
+ 121.512499432333584,
+ 25.037296035631496,
+ 0.0
+ ],
+ [
+ 121.511997,
+ 25.03725598955214,
+ 0.0
+ ],
+ [
+ 121.511494567666404,
+ 25.037296035631496,
+ 0.0
+ ],
+ [
+ 121.511007400530858,
+ 25.037414957165073,
+ 0.0
+ ],
+ [
+ 121.510550300081135,
+ 25.037609140999258,
+ 0.0
+ ],
+ [
+ 121.510137154460253,
+ 25.037872687288978,
+ 0.0
+ ],
+ [
+ 121.509780516557385,
+ 25.038197588721424,
+ 0.0
+ ],
+ [
+ 121.509491222634693,
+ 25.03857397376504,
+ 0.0
+ ],
+ [
+ 121.509278063072898,
+ 25.038990406558593,
+ 0.0
+ ],
+ [
+ 121.509147515240201,
+ 25.039434234334919,
+ 0.0
+ ],
+ [
+ 121.50910354660553,
+ 25.039891971828691,
+ 0.0
+ ],
+ [
+ 121.50914749408787,
+ 25.040349710993201,
+ 0.0
+ ],
+ [
+ 121.509278023319524,
+ 25.040793543580232,
+ 0.0
+ ],
+ [
+ 121.509491169075119,
+ 25.041209983744221,
+ 0.0
+ ],
+ [
+ 121.509780455651693,
+ 25.041586377828999,
+ 0.0
+ ],
+ [
+ 121.510137093554548,
+ 25.041911288882883,
+ 0.0
+ ],
+ [
+ 121.510550246521547,
+ 25.042174844213768,
+ 0.0
+ ],
+ [
+ 121.511007360777484,
+ 25.042369035418375,
+ 0.0
+ ],
+ [
+ 121.511494546514072,
+ 25.042487961762671,
+ 0.0
+ ],
+ [
+ 121.511997,
+ 25.042528009512768,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000075,
+ "name": "RCR46(第一核能發電廠)",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.28333",
+ "lng": "121.583333",
+ "radius": 3704,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.583333,
+ 25.316766430962655,
+ 0.0
+ ],
+ [
+ 121.589720842356598,
+ 25.316258319289169,
+ 0.0
+ ],
+ [
+ 121.595914437558775,
+ 25.314749435272912,
+ 0.0
+ ],
+ [
+ 121.601725459379338,
+ 25.312285660969824,
+ 0.0
+ ],
+ [
+ 121.606977241261319,
+ 25.308941911107379,
+ 0.0
+ ],
+ [
+ 121.611510156505474,
+ 25.304819850288528,
+ 0.0
+ ],
+ [
+ 121.615186474946441,
+ 25.300044795935197,
+ 0.0
+ ],
+ [
+ 121.61789454776833,
+ 25.294761902045597,
+ 0.0
+ ],
+ [
+ 121.619552193318697,
+ 25.289131740752481,
+ 0.0
+ ],
+ [
+ 121.620109181847226,
+ 25.283325416901526,
+ 0.0
+ ],
+ [
+ 121.619548745165403,
+ 25.27751936487622,
+ 0.0
+ ],
+ [
+ 121.617888067359644,
+ 25.27188998627387,
+ 0.0
+ ],
+ [
+ 121.61517774391487,
+ 25.26660829153619,
+ 0.0
+ ],
+ [
+ 121.611500227941917,
+ 25.261834708160613,
+ 0.0
+ ],
+ [
+ 121.606967312696923,
+ 25.257714212723783,
+ 0.0
+ ],
+ [
+ 121.60171672834565,
+ 25.254371933839426,
+ 0.0
+ ],
+ [
+ 121.595907957147674,
+ 25.251909358688799,
+ 0.0
+ ],
+ [
+ 121.589717394201728,
+ 25.250401257363791,
+ 0.0
+ ],
+ [
+ 121.583333,
+ 25.249893417516123,
+ 0.0
+ ],
+ [
+ 121.576948605798265,
+ 25.250401257363791,
+ 0.0
+ ],
+ [
+ 121.570758042852319,
+ 25.251909358688799,
+ 0.0
+ ],
+ [
+ 121.564949271654342,
+ 25.254371933839426,
+ 0.0
+ ],
+ [
+ 121.559698687303069,
+ 25.257714212723783,
+ 0.0
+ ],
+ [
+ 121.555165772058075,
+ 25.261834708160613,
+ 0.0
+ ],
+ [
+ 121.551488256085122,
+ 25.26660829153619,
+ 0.0
+ ],
+ [
+ 121.548777932640348,
+ 25.27188998627387,
+ 0.0
+ ],
+ [
+ 121.547117254834589,
+ 25.27751936487622,
+ 0.0
+ ],
+ [
+ 121.546556818152766,
+ 25.283325416901526,
+ 0.0
+ ],
+ [
+ 121.547113806681296,
+ 25.289131740752481,
+ 0.0
+ ],
+ [
+ 121.548771452231662,
+ 25.294761902045597,
+ 0.0
+ ],
+ [
+ 121.551479525053551,
+ 25.300044795935197,
+ 0.0
+ ],
+ [
+ 121.555155843494518,
+ 25.304819850288528,
+ 0.0
+ ],
+ [
+ 121.559688758738673,
+ 25.308941911107379,
+ 0.0
+ ],
+ [
+ 121.564940540620654,
+ 25.312285660969824,
+ 0.0
+ ],
+ [
+ 121.570751562441217,
+ 25.314749435272912,
+ 0.0
+ ],
+ [
+ 121.576945157643394,
+ 25.316258319289169,
+ 0.0
+ ],
+ [
+ 121.583333,
+ 25.316766430962655,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045009,
+ "name": "RCR48-2(第二核能發電廠)",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.200728",
+ "lng": "121.656353",
+ "radius": 940,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.656353,
+ 25.209213596586046,
+ 0.0
+ ],
+ [
+ 121.657972682292822,
+ 25.209084672510787,
+ 0.0
+ ],
+ [
+ 121.659543141380112,
+ 25.208701818365089,
+ 0.0
+ ],
+ [
+ 121.661016650882672,
+ 25.208076669245205,
+ 0.0
+ ],
+ [
+ 121.662348432448226,
+ 25.207228223463531,
+ 0.0
+ ],
+ [
+ 121.663498017104601,
+ 25.206182264875412,
+ 0.0
+ ],
+ [
+ 121.664430475306531,
+ 25.204970578935736,
+ 0.0
+ ],
+ [
+ 121.665117478251389,
+ 25.203629986367137,
+ 0.0
+ ],
+ [
+ 121.665538158216776,
+ 25.202201223867267,
+ 0.0
+ ],
+ [
+ 121.665679741829351,
+ 25.200727705926276,
+ 0.0
+ ],
+ [
+ 121.665537937118557,
+ 25.199254205426548,
+ 0.0
+ ],
+ [
+ 121.665117062722686,
+ 25.197825493146755,
+ 0.0
+ ],
+ [
+ 121.664429915466215,
+ 25.196484977519788,
+ 0.0
+ ],
+ [
+ 121.663497380477693,
+ 25.195273385963002,
+ 0.0
+ ],
+ [
+ 121.662347795821304,
+ 25.194227527815055,
+ 0.0
+ ],
+ [
+ 121.661016091042342,
+ 25.193379176416268,
+ 0.0
+ ],
+ [
+ 121.659542725851395,
+ 25.192754104238016,
+ 0.0
+ ],
+ [
+ 121.657972461194603,
+ 25.192371300312399,
+ 0.0
+ ],
+ [
+ 121.656353,
+ 25.192242393678402,
+ 0.0
+ ],
+ [
+ 121.654733538805388,
+ 25.192371300312399,
+ 0.0
+ ],
+ [
+ 121.653163274148596,
+ 25.192754104238016,
+ 0.0
+ ],
+ [
+ 121.65168990895765,
+ 25.193379176416268,
+ 0.0
+ ],
+ [
+ 121.650358204178687,
+ 25.194227527815055,
+ 0.0
+ ],
+ [
+ 121.649208619522298,
+ 25.195273385963002,
+ 0.0
+ ],
+ [
+ 121.648276084533776,
+ 25.196484977519788,
+ 0.0
+ ],
+ [
+ 121.647588937277305,
+ 25.197825493146755,
+ 0.0
+ ],
+ [
+ 121.647168062881434,
+ 25.199254205426548,
+ 0.0
+ ],
+ [
+ 121.647026258170641,
+ 25.200727705926276,
+ 0.0
+ ],
+ [
+ 121.647167841783215,
+ 25.202201223867267,
+ 0.0
+ ],
+ [
+ 121.647588521748602,
+ 25.203629986367137,
+ 0.0
+ ],
+ [
+ 121.64827552469346,
+ 25.204970578935736,
+ 0.0
+ ],
+ [
+ 121.649207982895391,
+ 25.206182264875412,
+ 0.0
+ ],
+ [
+ 121.650357567551765,
+ 25.207228223463531,
+ 0.0
+ ],
+ [
+ 121.651689349117319,
+ 25.208076669245205,
+ 0.0
+ ],
+ [
+ 121.653162858619879,
+ 25.208701818365089,
+ 0.0
+ ],
+ [
+ 121.654733317707169,
+ 25.209084672510787,
+ 0.0
+ ],
+ [
+ 121.656353,
+ 25.209213596586046,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045008,
+ "name": "RCR48(總統府侍衛室)",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.0394620699545",
+ "lng": "121.513325385708",
+ "radius": 1161,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.518889,
+ 25.048611,
+ 0.0
+ ],
+ [
+ 121.523889,
+ 25.035278,
+ 0.0
+ ],
+ [
+ 121.509444,
+ 25.030556,
+ 0.0
+ ],
+ [
+ 121.5025,
+ 25.043056,
+ 0.0
+ ],
+ [
+ 121.518889,
+ 25.048611,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000307,
+ "name": "亞東醫院直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "24.997194",
+ "lng": "121.453333",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.453333,
+ 25.006221477801912,
+ 0.0
+ ],
+ [
+ 121.455053223619799,
+ 25.006084320266087,
+ 0.0
+ ],
+ [
+ 121.456721167944281,
+ 25.005677016003713,
+ 0.0
+ ],
+ [
+ 121.458286143506115,
+ 25.005011943290516,
+ 0.0
+ ],
+ [
+ 121.459700592025072,
+ 25.004109313918402,
+ 0.0
+ ],
+ [
+ 121.460921532321763,
+ 25.002996558600465,
+ 0.0
+ ],
+ [
+ 121.461911866746391,
+ 25.001707492926272,
+ 0.0
+ ],
+ [
+ 121.462641508371249,
+ 25.000281289279087,
+ 0.0
+ ],
+ [
+ 121.463088294697755,
+ 24.998761286026838,
+ 0.0
+ ],
+ [
+ 121.463238660172507,
+ 24.99719367023836,
+ 0.0
+ ],
+ [
+ 121.463088047184456,
+ 24.995626074006665,
+ 0.0
+ ],
+ [
+ 121.462641043198403,
+ 24.994106127065894,
+ 0.0
+ ],
+ [
+ 121.461911240020726,
+ 24.992680009692918,
+ 0.0
+ ],
+ [
+ 121.460920819635604,
+ 24.991391049849696,
+ 0.0
+ ],
+ [
+ 121.459699879338913,
+ 24.990278407154729,
+ 0.0
+ ],
+ [
+ 121.458285516780407,
+ 24.98937588361359,
+ 0.0
+ ],
+ [
+ 121.45672070277142,
+ 24.988710897174599,
+ 0.0
+ ],
+ [
+ 121.455052976106487,
+ 24.988303649223713,
+ 0.0
+ ],
+ [
+ 121.453333,
+ 24.98816651124466,
+ 0.0
+ ],
+ [
+ 121.451613023893515,
+ 24.988303649223713,
+ 0.0
+ ],
+ [
+ 121.449945297228581,
+ 24.988710897174599,
+ 0.0
+ ],
+ [
+ 121.448380483219594,
+ 24.98937588361359,
+ 0.0
+ ],
+ [
+ 121.446966120661088,
+ 24.990278407154729,
+ 0.0
+ ],
+ [
+ 121.445745180364398,
+ 24.991391049849696,
+ 0.0
+ ],
+ [
+ 121.444754759979276,
+ 24.992680009692918,
+ 0.0
+ ],
+ [
+ 121.444024956801599,
+ 24.994106127065894,
+ 0.0
+ ],
+ [
+ 121.443577952815545,
+ 24.995626074006665,
+ 0.0
+ ],
+ [
+ 121.443427339827494,
+ 24.99719367023836,
+ 0.0
+ ],
+ [
+ 121.443577705302246,
+ 24.998761286026838,
+ 0.0
+ ],
+ [
+ 121.444024491628753,
+ 25.000281289279087,
+ 0.0
+ ],
+ [
+ 121.44475413325361,
+ 25.001707492926272,
+ 0.0
+ ],
+ [
+ 121.445744467678239,
+ 25.002996558600465,
+ 0.0
+ ],
+ [
+ 121.446965407974929,
+ 25.004109313918402,
+ 0.0
+ ],
+ [
+ 121.448379856493887,
+ 25.005011943290516,
+ 0.0
+ ],
+ [
+ 121.449944832055721,
+ 25.005677016003713,
+ 0.0
+ ],
+ [
+ 121.451612776380202,
+ 25.006084320266087,
+ 0.0
+ ],
+ [
+ 121.453333,
+ 25.006221477801912,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045010,
+ "name": "RCR46-2第一核能發電廠)",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.279917",
+ "lng": "121.58829",
+ "radius": 1374,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.58829,
+ 25.29232027832229,
+ 0.0
+ ],
+ [
+ 121.590659103188315,
+ 25.292131825792211,
+ 0.0
+ ],
+ [
+ 121.592956200960856,
+ 25.291572195925255,
+ 0.0
+ ],
+ [
+ 121.595111478334587,
+ 25.290658397653385,
+ 0.0
+ ],
+ [
+ 121.597059434324564,
+ 25.289418203722622,
+ 0.0
+ ],
+ [
+ 121.59874087384398,
+ 25.287889305933128,
+ 0.0
+ ],
+ [
+ 121.600104707212566,
+ 25.286118168790459,
+ 0.0
+ ],
+ [
+ 121.601109502488413,
+ 25.284158616532178,
+ 0.0
+ ],
+ [
+ 121.601724743456757,
+ 25.282070196604032,
+ 0.0
+ ],
+ [
+ 121.601931755161715,
+ 25.279916369443526,
+ 0.0
+ ],
+ [
+ 121.601724269062899,
+ 25.277762579681582,
+ 0.0
+ ],
+ [
+ 121.601108610919582,
+ 25.275674267438315,
+ 0.0
+ ],
+ [
+ 121.600103506005112,
+ 25.273714880162842,
+ 0.0
+ ],
+ [
+ 121.598739507881248,
+ 25.271943945401549,
+ 0.0
+ ],
+ [
+ 121.597058068361818,
+ 25.270415262981821,
+ 0.0
+ ],
+ [
+ 121.595110277127091,
+ 25.269175271432434,
+ 0.0
+ ],
+ [
+ 121.592955309391982,
+ 25.268261638143386,
+ 0.0
+ ],
+ [
+ 121.590658628794429,
+ 25.267702115961306,
+ 0.0
+ ],
+ [
+ 121.58829,
+ 25.267513700829802,
+ 0.0
+ ],
+ [
+ 121.585921371205572,
+ 25.267702115961306,
+ 0.0
+ ],
+ [
+ 121.583624690608019,
+ 25.268261638143386,
+ 0.0
+ ],
+ [
+ 121.58146972287291,
+ 25.269175271432434,
+ 0.0
+ ],
+ [
+ 121.579521931638183,
+ 25.270415262981821,
+ 0.0
+ ],
+ [
+ 121.577840492118753,
+ 25.271943945401549,
+ 0.0
+ ],
+ [
+ 121.576476493994889,
+ 25.273714880162842,
+ 0.0
+ ],
+ [
+ 121.57547138908042,
+ 25.275674267438315,
+ 0.0
+ ],
+ [
+ 121.574855730937102,
+ 25.277762579681582,
+ 0.0
+ ],
+ [
+ 121.574648244838286,
+ 25.279916369443526,
+ 0.0
+ ],
+ [
+ 121.574855256543245,
+ 25.282070196604032,
+ 0.0
+ ],
+ [
+ 121.575470497511589,
+ 25.284158616532178,
+ 0.0
+ ],
+ [
+ 121.576475292787435,
+ 25.286118168790459,
+ 0.0
+ ],
+ [
+ 121.577839126156022,
+ 25.287889305933128,
+ 0.0
+ ],
+ [
+ 121.579520565675438,
+ 25.289418203722622,
+ 0.0
+ ],
+ [
+ 121.581468521665414,
+ 25.290658397653385,
+ 0.0
+ ],
+ [
+ 121.583623799039145,
+ 25.291572195925255,
+ 0.0
+ ],
+ [
+ 121.585920896811686,
+ 25.292131825792211,
+ 0.0
+ ],
+ [
+ 121.58829,
+ 25.29232027832229,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282943,
+ "name": "Banmaw Airport",
+ "country": "MM",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "24.2708308357433",
+ "lng": "97.2472457174638",
+ "radius": 4193,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.230960501300004,
+ 24.305504619800001,
+ 0.0
+ ],
+ [
+ 97.273637720799996,
+ 24.2417855618,
+ 0.0
+ ],
+ [
+ 97.263536927600001,
+ 24.236161126900001,
+ 0.0
+ ],
+ [
+ 97.220854117900004,
+ 24.2998809668,
+ 0.0
+ ],
+ [
+ 97.230960501300004,
+ 24.305504619800001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282943,
+ "name": "Banmaw Airport",
+ "country": "MM",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "24.2241605600229",
+ "lng": "97.2785061307864",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.273637720799996,
+ 24.2417855618,
+ 60.0
+ ],
+ [
+ 97.296667063,
+ 24.216674607600002,
+ 60.0
+ ],
+ [
+ 97.277509244399994,
+ 24.2060078029,
+ 60.0
+ ],
+ [
+ 97.263536927600001,
+ 24.236161126900001,
+ 60.0
+ ],
+ [
+ 97.273637720799996,
+ 24.2417855618,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282943,
+ "name": "Banmaw Airport",
+ "country": "MM",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "24.3175053742318",
+ "lng": "97.2159827014102",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.216976730499994,
+ 24.335657747700001,
+ 60.0
+ ],
+ [
+ 97.230960501300004,
+ 24.305504619800001,
+ 60.0
+ ],
+ [
+ 97.220854117900004,
+ 24.2998809668,
+ 60.0
+ ],
+ [
+ 97.19780747599999,
+ 24.324990232800001,
+ 60.0
+ ],
+ [
+ 97.216976730499994,
+ 24.335657747700001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282943,
+ "name": "Banmaw Airport",
+ "country": "MM",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "24.177074843151",
+ "lng": "97.3100172663531",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.296667063,
+ 24.216674607600002,
+ 150.0
+ ],
+ [
+ 97.350366914399999,
+ 24.158068929599999,
+ 150.0
+ ],
+ [
+ 97.310085633,
+ 24.135645098099999,
+ 150.0
+ ],
+ [
+ 97.277509244399994,
+ 24.2060078029,
+ 150.0
+ ],
+ [
+ 97.296667063,
+ 24.216674607600002,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282943,
+ "name": "Banmaw Airport",
+ "country": "MM",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "24.3645824250156",
+ "lng": "97.1844224041792",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.184322018200007,
+ 24.406010056300001,
+ 150.0
+ ],
+ [
+ 97.216976730499994,
+ 24.335657747700001,
+ 150.0
+ ],
+ [
+ 97.19780747599999,
+ 24.324990232800001,
+ 150.0
+ ],
+ [
+ 97.143996441,
+ 24.383564973799999,
+ 150.0
+ ],
+ [
+ 97.184322018200007,
+ 24.406010056300001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010177,
+ "name": "Banmaw Airport",
+ "country": "MM",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "24.270715",
+ "lng": "97.248187",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.248187,
+ 24.722119305074283,
+ 500.0
+ ],
+ [
+ 97.333996376815733,
+ 24.71523739653842,
+ 500.0
+ ],
+ [
+ 97.417171086426706,
+ 24.694802966371437,
+ 500.0
+ ],
+ [
+ 97.495159900675091,
+ 24.661443207547105,
+ 500.0
+ ],
+ [
+ 97.565575503473184,
+ 24.616181369272802,
+ 500.0
+ ],
+ [
+ 97.626269180032352,
+ 24.560404471784455,
+ 500.0
+ ],
+ [
+ 97.675397187775971,
+ 24.495819711171578,
+ 500.0
+ ],
+ [
+ 97.711476668109384,
+ 24.42440106270378,
+ 500.0
+ ],
+ [
+ 97.733429430053718,
+ 24.348327895257537,
+ 500.0
+ ],
+ [
+ 97.740612451038615,
+ 24.269917633870129,
+ 500.0
+ ],
+ [
+ 97.732834462255809,
+ 24.191554648728474,
+ 500.0
+ ],
+ [
+ 97.710358486006101,
+ 24.115617608796306,
+ 500.0
+ ],
+ [
+ 97.673890647754448,
+ 24.044407522629985,
+ 500.0
+ ],
+ [
+ 97.62455598172879,
+ 23.980078606264581,
+ 500.0
+ ],
+ [
+ 97.563862279413925,
+ 23.924573978238129,
+ 500.0
+ ],
+ [
+ 97.493653295437909,
+ 23.879567994924962,
+ 500.0
+ ],
+ [
+ 97.416052830162897,
+ 23.846416814816394,
+ 500.0
+ ],
+ [
+ 97.333401360612982,
+ 23.826118526597973,
+ 500.0
+ ],
+ [
+ 97.248187,
+ 23.819283900008479,
+ 500.0
+ ],
+ [
+ 97.162972639387021,
+ 23.826118526597973,
+ 500.0
+ ],
+ [
+ 97.080321169837106,
+ 23.846416814816394,
+ 500.0
+ ],
+ [
+ 97.002720704562094,
+ 23.879567994924962,
+ 500.0
+ ],
+ [
+ 96.932511720586078,
+ 23.924573978238129,
+ 500.0
+ ],
+ [
+ 96.871818018271213,
+ 23.980078606264581,
+ 500.0
+ ],
+ [
+ 96.822483352245555,
+ 24.044407522629985,
+ 500.0
+ ],
+ [
+ 96.786015513993902,
+ 24.115617608796306,
+ 500.0
+ ],
+ [
+ 96.763539537744194,
+ 24.191554648728474,
+ 500.0
+ ],
+ [
+ 96.755761548961388,
+ 24.269917633870129,
+ 500.0
+ ],
+ [
+ 96.762944569946285,
+ 24.348327895257537,
+ 500.0
+ ],
+ [
+ 96.784897331890619,
+ 24.42440106270378,
+ 500.0
+ ],
+ [
+ 96.820976812224032,
+ 24.495819711171578,
+ 500.0
+ ],
+ [
+ 96.870104819967651,
+ 24.560404471784455,
+ 500.0
+ ],
+ [
+ 96.930798496526819,
+ 24.616181369272802,
+ 500.0
+ ],
+ [
+ 97.001214099324912,
+ 24.661443207547105,
+ 500.0
+ ],
+ [
+ 97.079202913573297,
+ 24.694802966371437,
+ 500.0
+ ],
+ [
+ 97.16237762318427,
+ 24.71523739653842,
+ 500.0
+ ],
+ [
+ 97.248187,
+ 24.722119305074283,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282941,
+ "name": "Banmaw Airport",
+ "country": "MM",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "24.2708342930817",
+ "lng": "97.2472519298293",
+ "radius": 5145,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.275020140300001,
+ 24.298408464600001,
+ 0.0
+ ],
+ [
+ 97.286852007899995,
+ 24.280736987699999,
+ 0.0
+ ],
+ [
+ 97.292297650600005,
+ 24.2666263849,
+ 0.0
+ ],
+ [
+ 97.292496465799999,
+ 24.259108193500001,
+ 0.0
+ ],
+ [
+ 97.287804451400007,
+ 24.244774606499998,
+ 0.0
+ ],
+ [
+ 97.277125543699995,
+ 24.233419679099999,
+ 0.0
+ ],
+ [
+ 97.262306559400002,
+ 24.227005782100001,
+ 0.0
+ ],
+ [
+ 97.245908433,
+ 24.226641153700001,
+ 0.0
+ ],
+ [
+ 97.2307643356,
+ 24.2323887921,
+ 0.0
+ ],
+ [
+ 97.219496225399993,
+ 24.243248177600002,
+ 0.0
+ ],
+ [
+ 97.204118611300004,
+ 24.2677015045,
+ 0.0
+ ],
+ [
+ 97.202201792599993,
+ 24.275016057599998,
+ 0.0
+ ],
+ [
+ 97.201995024400006,
+ 24.282534071200001,
+ 0.0
+ ],
+ [
+ 97.203507643199998,
+ 24.289926979200001,
+ 0.0
+ ],
+ [
+ 97.206673820600003,
+ 24.2968716267,
+ 0.0
+ ],
+ [
+ 97.217347856299995,
+ 24.3082345242,
+ 0.0
+ ],
+ [
+ 97.224389299199999,
+ 24.3121558964,
+ 0.0
+ ],
+ [
+ 97.240355105199995,
+ 24.315628480499999,
+ 0.0
+ ],
+ [
+ 97.248581161100006,
+ 24.3150278028,
+ 0.0
+ ],
+ [
+ 97.263736281099995,
+ 24.309282727300001,
+ 0.0
+ ],
+ [
+ 97.275020140300001,
+ 24.298408464600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4042,
+ "name": "Mangshi Airport",
+ "country": "CN",
+ "city": "Luxi",
+ "height": 0,
+ "level": 2,
+ "lat": "24.4308513840974",
+ "lng": "98.5680155660489",
+ "radius": 12883,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 98.679694247599997,
+ 24.486440179799999,
+ 0.0
+ ],
+ [
+ 98.624752367,
+ 24.534572065900001,
+ 0.0
+ ],
+ [
+ 98.571449557099996,
+ 24.467910112199998,
+ 0.0
+ ],
+ [
+ 98.540265458899995,
+ 24.474461133799998,
+ 0.0
+ ],
+ [
+ 98.522195538199995,
+ 24.472221257200001,
+ 0.0
+ ],
+ [
+ 98.5053797522,
+ 24.465799129899999,
+ 0.0
+ ],
+ [
+ 98.4726123935,
+ 24.438948140499999,
+ 0.0
+ ],
+ [
+ 98.457542372500001,
+ 24.415320981800001,
+ 0.0
+ ],
+ [
+ 98.454303944900005,
+ 24.398986819800001,
+ 0.0
+ ],
+ [
+ 98.461980323199995,
+ 24.366825548400001,
+ 0.0
+ ],
+ [
+ 98.601379082199998,
+ 24.438100216799999,
+ 0.0
+ ],
+ [
+ 98.679694247599997,
+ 24.486440179799999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4042,
+ "name": "Mangshi Airport",
+ "country": "CN",
+ "city": "Luxi",
+ "height": 0,
+ "level": 2,
+ "lat": "24.3660994762317",
+ "lng": "98.500949925352",
+ "radius": 12942,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 98.461980323199995,
+ 24.366825548400001,
+ 0.0
+ ],
+ [
+ 98.386968466300004,
+ 24.313528622100002,
+ 0.0
+ ],
+ [
+ 98.4368511184,
+ 24.265418896100002,
+ 0.0
+ ],
+ [
+ 98.491894338400002,
+ 24.337091489300001,
+ 0.0
+ ],
+ [
+ 98.509319544899995,
+ 24.331426077500002,
+ 0.0
+ ],
+ [
+ 98.545392124800003,
+ 24.333130809699998,
+ 0.0
+ ],
+ [
+ 98.561840251099994,
+ 24.3402655999,
+ 0.0
+ ],
+ [
+ 98.590683713499999,
+ 24.3610179346,
+ 0.0
+ ],
+ [
+ 98.601935552100002,
+ 24.3745202084,
+ 0.0
+ ],
+ [
+ 98.611011383700003,
+ 24.406377816100001,
+ 0.0
+ ],
+ [
+ 98.601379082199998,
+ 24.438100216799999,
+ 0.0
+ ],
+ [
+ 98.461980323199995,
+ 24.366825548400001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4042,
+ "name": "Mangshi Airport",
+ "country": "CN",
+ "city": "Luxi",
+ "height": 120,
+ "level": 2,
+ "lat": "24.4015223367928",
+ "lng": "98.5326657224207",
+ "radius": 23370,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 98.624129149,
+ 24.594518749700001,
+ 120.0
+ ],
+ [
+ 98.754594610400005,
+ 24.459377550199999,
+ 120.0
+ ],
+ [
+ 98.441002949500003,
+ 24.2086594359,
+ 120.0
+ ],
+ [
+ 98.310796222600004,
+ 24.343800635800001,
+ 120.0
+ ],
+ [
+ 98.624129149,
+ 24.594518749700001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001492,
+ "name": "Mangshi Airport",
+ "country": "CN",
+ "city": "Luxi",
+ "height": 500,
+ "level": 2,
+ "lat": "24.401433",
+ "lng": "98.532123",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 98.532123,
+ 24.852829477030117,
+ 500.0
+ ],
+ [
+ 98.61802229757717,
+ 24.845947541214475,
+ 500.0
+ ],
+ [
+ 98.701284000995088,
+ 24.825513043339946,
+ 500.0
+ ],
+ [
+ 98.779354068105818,
+ 24.792153216699759,
+ 500.0
+ ],
+ [
+ 98.849842588280637,
+ 24.746891371054303,
+ 500.0
+ ],
+ [
+ 98.910598565771309,
+ 24.691114598376483,
+ 500.0
+ ],
+ [
+ 98.959776367661476,
+ 24.62653016671889,
+ 500.0
+ ],
+ [
+ 98.995891692353553,
+ 24.555112112107711,
+ 500.0
+ ],
+ [
+ 99.017865388072579,
+ 24.479039842553664,
+ 500.0
+ ],
+ [
+ 99.025053966852568,
+ 24.400630792565966,
+ 500.0
+ ],
+ [
+ 99.017266183076245,
+ 24.322269307534302,
+ 500.0
+ ],
+ [
+ 98.994765546832525,
+ 24.246333996811543,
+ 500.0
+ ],
+ [
+ 98.9582590983714,
+ 24.175125778179897,
+ 500.0
+ ],
+ [
+ 98.908873166335837,
+ 24.110798753210478,
+ 500.0
+ ],
+ [
+ 98.848117162815072,
+ 24.055295912761565,
+ 500.0
+ ],
+ [
+ 98.7778367329052,
+ 24.010291484616364,
+ 500.0
+ ],
+ [
+ 98.700157780523369,
+ 23.97714151052077,
+ 500.0
+ ],
+ [
+ 98.617423043660239,
+ 23.956843986044618,
+ 500.0
+ ],
+ [
+ 98.532123,
+ 23.950009620937998,
+ 500.0
+ ],
+ [
+ 98.446822956339759,
+ 23.956843986044618,
+ 500.0
+ ],
+ [
+ 98.364088219476628,
+ 23.97714151052077,
+ 500.0
+ ],
+ [
+ 98.286409267094797,
+ 24.010291484616364,
+ 500.0
+ ],
+ [
+ 98.216128837184925,
+ 24.055295912761565,
+ 500.0
+ ],
+ [
+ 98.15537283366416,
+ 24.110798753210478,
+ 500.0
+ ],
+ [
+ 98.105986901628597,
+ 24.175125778179897,
+ 500.0
+ ],
+ [
+ 98.069480453167472,
+ 24.246333996811543,
+ 500.0
+ ],
+ [
+ 98.046979816923752,
+ 24.322269307534302,
+ 500.0
+ ],
+ [
+ 98.03919203314743,
+ 24.400630792565966,
+ 500.0
+ ],
+ [
+ 98.046380611927418,
+ 24.479039842553664,
+ 500.0
+ ],
+ [
+ 98.068354307646445,
+ 24.555112112107711,
+ 500.0
+ ],
+ [
+ 98.104469632338521,
+ 24.62653016671889,
+ 500.0
+ ],
+ [
+ 98.153647434228688,
+ 24.691114598376483,
+ 500.0
+ ],
+ [
+ 98.21440341171936,
+ 24.746891371054303,
+ 500.0
+ ],
+ [
+ 98.28489193189418,
+ 24.792153216699759,
+ 500.0
+ ],
+ [
+ 98.362961999004909,
+ 24.825513043339946,
+ 500.0
+ ],
+ [
+ 98.446223702422827,
+ 24.845947541214475,
+ 500.0
+ ],
+ [
+ 98.532123,
+ 24.852829477030117,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001407,
+ "name": "Baoshan Yunduan Airport",
+ "country": "CN",
+ "city": "Baoshan Shi",
+ "height": 500,
+ "level": 2,
+ "lat": "25.052167",
+ "lng": "99.167518",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.167518,
+ 25.50352405299294,
+ 500.0
+ ],
+ [
+ 99.253874455759998,
+ 25.496641983663071,
+ 500.0
+ ],
+ [
+ 99.337578443644972,
+ 25.476207155971792,
+ 500.0
+ ],
+ [
+ 99.416061621075272,
+ 25.442847004986067,
+ 500.0
+ ],
+ [
+ 99.48692089074062,
+ 25.397585143446875,
+ 500.0
+ ],
+ [
+ 99.54799366185992,
+ 25.341809022164497,
+ 500.0
+ ],
+ [
+ 99.597424689446569,
+ 25.277226268981433,
+ 500.0
+ ],
+ [
+ 99.633722331161479,
+ 25.205811223395635,
+ 500.0
+ ],
+ [
+ 99.655802543492001,
+ 25.129743488412288,
+ 500.0
+ ],
+ [
+ 99.663019463548039,
+ 25.051340544819158,
+ 500.0
+ ],
+ [
+ 99.655181953955534,
+ 24.972986612543533,
+ 500.0
+ ],
+ [
+ 99.632555995391328,
+ 24.89706000106975,
+ 500.0
+ ],
+ [
+ 99.595853271030776,
+ 24.825861172254378,
+ 500.0
+ ],
+ [
+ 99.546206684985975,
+ 24.761543653179032,
+ 500.0
+ ],
+ [
+ 99.48513388642688,
+ 24.706049794158638,
+ 500.0
+ ],
+ [
+ 99.414490133179399,
+ 24.661053178041396,
+ 500.0
+ ],
+ [
+ 99.336412028865013,
+ 24.627909261160518,
+ 500.0
+ ],
+ [
+ 99.253253814653547,
+ 24.60761557222245,
+ 500.0
+ ],
+ [
+ 99.167518,
+ 24.600782520230272,
+ 500.0
+ ],
+ [
+ 99.081782185346455,
+ 24.60761557222245,
+ 500.0
+ ],
+ [
+ 98.99862397113499,
+ 24.627909261160518,
+ 500.0
+ ],
+ [
+ 98.920545866820603,
+ 24.661053178041396,
+ 500.0
+ ],
+ [
+ 98.849902113573123,
+ 24.706049794158638,
+ 500.0
+ ],
+ [
+ 98.788829315014027,
+ 24.761543653179032,
+ 500.0
+ ],
+ [
+ 98.739182728969226,
+ 24.825861172254378,
+ 500.0
+ ],
+ [
+ 98.702480004608674,
+ 24.89706000106975,
+ 500.0
+ ],
+ [
+ 98.679854046044468,
+ 24.972986612543533,
+ 500.0
+ ],
+ [
+ 98.672016536451963,
+ 25.051340544819158,
+ 500.0
+ ],
+ [
+ 98.679233456508001,
+ 25.129743488412288,
+ 500.0
+ ],
+ [
+ 98.701313668838523,
+ 25.205811223395635,
+ 500.0
+ ],
+ [
+ 98.737611310553433,
+ 25.277226268981433,
+ 500.0
+ ],
+ [
+ 98.787042338140083,
+ 25.341809022164497,
+ 500.0
+ ],
+ [
+ 98.848115109259382,
+ 25.397585143446875,
+ 500.0
+ ],
+ [
+ 98.91897437892473,
+ 25.442847004986067,
+ 500.0
+ ],
+ [
+ 98.99745755635503,
+ 25.476207155971792,
+ 500.0
+ ],
+ [
+ 99.081161544240004,
+ 25.496641983663071,
+ 500.0
+ ],
+ [
+ 99.167518,
+ 25.50352405299294,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3472,
+ "name": "Baoshan Yunduan Airport",
+ "country": "CN",
+ "city": "Baoshan Shi",
+ "height": 0,
+ "level": 2,
+ "lat": "25.1017994096732",
+ "lng": "99.1714265382299",
+ "radius": 12630,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.204619500700005,
+ 25.117170509299999,
+ 0.0
+ ],
+ [
+ 99.239618644700002,
+ 25.197148959,
+ 0.0
+ ],
+ [
+ 99.167439495400004,
+ 25.2142983458,
+ 0.0
+ ],
+ [
+ 99.160721968399997,
+ 25.125923932,
+ 0.0
+ ],
+ [
+ 99.128908534100006,
+ 25.115575161199999,
+ 0.0
+ ],
+ [
+ 99.115116143799995,
+ 25.104642262500001,
+ 0.0
+ ],
+ [
+ 99.10492107,
+ 25.090848702900001,
+ 0.0
+ ],
+ [
+ 99.099017368399998,
+ 25.0751352801,
+ 0.0
+ ],
+ [
+ 99.091990752,
+ 25.037683027700002,
+ 0.0
+ ],
+ [
+ 99.095395287200006,
+ 25.021373967,
+ 0.0
+ ],
+ [
+ 99.103340693500002,
+ 25.006418730099998,
+ 0.0
+ ],
+ [
+ 99.204619500700005,
+ 25.117170509299999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3472,
+ "name": "Baoshan Yunduan Airport",
+ "country": "CN",
+ "city": "Baoshan Shi",
+ "height": 0,
+ "level": 2,
+ "lat": "25.0079913547068",
+ "lng": "99.1567110055763",
+ "radius": 13064,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.095400067100002,
+ 24.904484804799999,
+ 0.0
+ ],
+ [
+ 99.164223847499997,
+ 24.890700914300002,
+ 0.0
+ ],
+ [
+ 99.174255472200002,
+ 24.975725139800002,
+ 0.0
+ ],
+ [
+ 99.206013398099998,
+ 24.986034818,
+ 0.0
+ ],
+ [
+ 99.219811576500007,
+ 24.996947881099999,
+ 0.0
+ ],
+ [
+ 99.235958936499998,
+ 25.026428451499999,
+ 0.0
+ ],
+ [
+ 99.236628178700002,
+ 25.078081899499999,
+ 0.0
+ ],
+ [
+ 99.218977924100002,
+ 25.106852142099999,
+ 0.0
+ ],
+ [
+ 99.204619500700005,
+ 25.117170509299999,
+ 0.0
+ ],
+ [
+ 99.103340693500002,
+ 25.006418730099998,
+ 0.0
+ ],
+ [
+ 99.130411994499994,
+ 24.984481915700002,
+ 0.0
+ ],
+ [
+ 99.095400067100002,
+ 24.904484804799999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3472,
+ "name": "Baoshan Yunduan Airport",
+ "country": "CN",
+ "city": "Baoshan Shi",
+ "height": 120,
+ "level": 2,
+ "lat": "25.0525117840278",
+ "lng": "99.1667162912316",
+ "radius": 23454,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.235824658200002,
+ 24.851098888500001,
+ 120.0
+ ],
+ [
+ 99.039481162,
+ 24.875910294,
+ 120.0
+ ],
+ [
+ 99.097285542500003,
+ 25.2538651958,
+ 120.0
+ ],
+ [
+ 99.294235378899998,
+ 25.229053790599998,
+ 120.0
+ ],
+ [
+ 99.235824658200002,
+ 24.851098888500001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33216,
+ "name": "金城江",
+ "country": "CN",
+ "city": "河池",
+ "height": 0,
+ "level": 2,
+ "lat": "24.7691703100461",
+ "lng": "107.738410857549",
+ "radius": 13094,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.799749444,
+ 24.665428376400001,
+ 0.0
+ ],
+ [
+ 107.851369817,
+ 24.713525133499999,
+ 0.0
+ ],
+ [
+ 107.781371597,
+ 24.768518079500002,
+ 0.0
+ ],
+ [
+ 107.789174767,
+ 24.797167911199999,
+ 0.0
+ ],
+ [
+ 107.786937105,
+ 24.8136413967,
+ 0.0
+ ],
+ [
+ 107.780077237,
+ 24.8290276392,
+ 0.0
+ ],
+ [
+ 107.757398604,
+ 24.857273057,
+ 0.0
+ ],
+ [
+ 107.730593778,
+ 24.8740432349,
+ 0.0
+ ],
+ [
+ 107.712814546,
+ 24.877959223400001,
+ 0.0
+ ],
+ [
+ 107.676969707,
+ 24.872887221,
+ 0.0
+ ],
+ [
+ 107.744709149,
+ 24.737095480099999,
+ 0.0
+ ],
+ [
+ 107.799749444,
+ 24.665428376400001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33216,
+ "name": "金城江",
+ "country": "CN",
+ "city": "河池",
+ "height": 0,
+ "level": 2,
+ "lat": "24.8394731068946",
+ "lng": "107.680560113219",
+ "radius": 13096,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.676969707,
+ 24.872887221,
+ 0.0
+ ],
+ [
+ 107.62193628199999,
+ 24.944568421900001,
+ 0.0
+ ],
+ [
+ 107.566960144,
+ 24.896482969899999,
+ 0.0
+ ],
+ [
+ 107.64195465,
+ 24.844858590299999,
+ 0.0
+ ],
+ [
+ 107.634192354,
+ 24.829797830899999,
+ 0.0
+ ],
+ [
+ 107.631000564,
+ 24.813454350699999,
+ 0.0
+ ],
+ [
+ 107.632577978,
+ 24.796917988899999,
+ 0.0
+ ],
+ [
+ 107.649285947,
+ 24.767709699899999,
+ 0.0
+ ],
+ [
+ 107.691133234,
+ 24.737723118200002,
+ 0.0
+ ],
+ [
+ 107.726996806,
+ 24.733008787300001,
+ 0.0
+ ],
+ [
+ 107.744709149,
+ 24.737095480099999,
+ 0.0
+ ],
+ [
+ 107.676969707,
+ 24.872887221,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33216,
+ "name": "金城江",
+ "country": "CN",
+ "city": "河池",
+ "height": 120,
+ "level": 2,
+ "lat": "24.8048859886118",
+ "lng": "107.710663884275",
+ "radius": 23373,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.924647797,
+ 24.724689461699999,
+ 120.0
+ ],
+ [
+ 107.778092447,
+ 24.6038053732,
+ 120.0
+ ],
+ [
+ 107.496583808,
+ 24.885175645099999,
+ 120.0
+ ],
+ [
+ 107.643472166,
+ 25.006059733200001,
+ 120.0
+ ],
+ [
+ 107.924647797,
+ 24.724689461699999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001432,
+ "name": "金城江",
+ "country": "CN",
+ "city": "河池",
+ "height": 500,
+ "level": 2,
+ "lat": "24.8058333333333",
+ "lng": "107.71125",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.71125,
+ 25.257205398640718,
+ 500.0
+ ],
+ [
+ 107.797431522983317,
+ 25.250323379423985,
+ 500.0
+ ],
+ [
+ 107.880966268233024,
+ 25.229888675223805,
+ 500.0
+ ],
+ [
+ 107.959291364137854,
+ 25.196528644514586,
+ 500.0
+ ],
+ [
+ 108.030008758544412,
+ 25.151266785036441,
+ 500.0
+ ],
+ [
+ 108.090960297275387,
+ 25.09549041141706,
+ 500.0
+ ],
+ [
+ 108.140294413724931,
+ 25.030907014988966,
+ 500.0
+ ],
+ [
+ 108.176522275364192,
+ 24.959490820163211,
+ 500.0
+ ],
+ [
+ 108.198561711857764,
+ 24.883421356087101,
+ 500.0
+ ],
+ [
+ 108.205767770772496,
+ 24.805016086194485,
+ 500.0
+ ],
+ [
+ 108.197949275156361,
+ 24.726659278297053,
+ 500.0
+ ],
+ [
+ 108.175371262088888,
+ 24.650729356002167,
+ 500.0
+ ],
+ [
+ 108.138743639615925,
+ 24.579526954547205,
+ 500.0
+ ],
+ [
+ 108.089196796750599,
+ 24.515205819402446,
+ 500.0
+ ],
+ [
+ 108.028245231122114,
+ 24.459708544328997,
+ 500.0
+ ],
+ [
+ 107.957740521922034,
+ 24.414708957255893,
+ 500.0
+ ],
+ [
+ 107.879815177509514,
+ 24.381562736956933,
+ 500.0
+ ],
+ [
+ 107.796819035731176,
+ 24.361267589522235,
+ 500.0
+ ],
+ [
+ 107.71125,
+ 24.354434038218439,
+ 500.0
+ ],
+ [
+ 107.625680964268838,
+ 24.361267589522235,
+ 500.0
+ ],
+ [
+ 107.5426848224905,
+ 24.381562736956933,
+ 500.0
+ ],
+ [
+ 107.46475947807798,
+ 24.414708957255893,
+ 500.0
+ ],
+ [
+ 107.3942547688779,
+ 24.459708544328997,
+ 500.0
+ ],
+ [
+ 107.333303203249415,
+ 24.515205819402446,
+ 500.0
+ ],
+ [
+ 107.283756360384089,
+ 24.579526954547205,
+ 500.0
+ ],
+ [
+ 107.247128737911126,
+ 24.650729356002167,
+ 500.0
+ ],
+ [
+ 107.224550724843652,
+ 24.726659278297053,
+ 500.0
+ ],
+ [
+ 107.216732229227517,
+ 24.805016086194485,
+ 500.0
+ ],
+ [
+ 107.22393828814225,
+ 24.883421356087101,
+ 500.0
+ ],
+ [
+ 107.245977724635821,
+ 24.959490820163211,
+ 500.0
+ ],
+ [
+ 107.282205586275083,
+ 25.030907014988966,
+ 500.0
+ ],
+ [
+ 107.331539702724626,
+ 25.09549041141706,
+ 500.0
+ ],
+ [
+ 107.392491241455602,
+ 25.151266785036441,
+ 500.0
+ ],
+ [
+ 107.463208635862159,
+ 25.196528644514586,
+ 500.0
+ ],
+ [
+ 107.541533731766989,
+ 25.229888675223805,
+ 500.0
+ ],
+ [
+ 107.625068477016697,
+ 25.250323379423985,
+ 500.0
+ ],
+ [
+ 107.71125,
+ 25.257205398640718,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001429,
+ "name": "Bailian Airport",
+ "country": "CN",
+ "city": "Liuzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "24.207735",
+ "lng": "109.391454",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.391454,
+ 24.659143065592186,
+ 500.0
+ ],
+ [
+ 109.477220279013181,
+ 24.652261170258473,
+ 500.0
+ ],
+ [
+ 109.560353293839739,
+ 24.631826772897984,
+ 500.0
+ ],
+ [
+ 109.638303165172815,
+ 24.598467047083023,
+ 500.0
+ ],
+ [
+ 109.708683820549766,
+ 24.553205212882069,
+ 500.0
+ ],
+ [
+ 109.769347638448608,
+ 24.497428256007765,
+ 500.0
+ ],
+ [
+ 109.818451782268923,
+ 24.43284333791302,
+ 500.0
+ ],
+ [
+ 109.854514084918733,
+ 24.361424404617505,
+ 500.0
+ ],
+ [
+ 109.876456815745087,
+ 24.285350806145502,
+ 500.0
+ ],
+ [
+ 109.883637175021136,
+ 24.206939962948439,
+ 500.0
+ ],
+ [
+ 109.875863882589584,
+ 24.128576257111305,
+ 500.0
+ ],
+ [
+ 109.853399726735162,
+ 24.052638386243256,
+ 500.0
+ ],
+ [
+ 109.816950394288853,
+ 23.981427402538841,
+ 500.0
+ ],
+ [
+ 109.767640298953694,
+ 23.917097577070315,
+ 500.0
+ ],
+ [
+ 109.706976455430379,
+ 23.861592089774174,
+ 500.0
+ ],
+ [
+ 109.636801712309307,
+ 23.816585358865961,
+ 500.0
+ ],
+ [
+ 109.559238861873425,
+ 23.783433598984182,
+ 500.0
+ ],
+ [
+ 109.476627297699409,
+ 23.763134943598637,
+ 500.0
+ ],
+ [
+ 109.391454,
+ 23.756300191300397,
+ 500.0
+ ],
+ [
+ 109.306280702300583,
+ 23.763134943598637,
+ 500.0
+ ],
+ [
+ 109.223669138126567,
+ 23.783433598984182,
+ 500.0
+ ],
+ [
+ 109.146106287690685,
+ 23.816585358865961,
+ 500.0
+ ],
+ [
+ 109.075931544569613,
+ 23.861592089774174,
+ 500.0
+ ],
+ [
+ 109.015267701046298,
+ 23.917097577070315,
+ 500.0
+ ],
+ [
+ 108.965957605711139,
+ 23.981427402538841,
+ 500.0
+ ],
+ [
+ 108.92950827326483,
+ 24.052638386243256,
+ 500.0
+ ],
+ [
+ 108.907044117410408,
+ 24.128576257111305,
+ 500.0
+ ],
+ [
+ 108.899270824978856,
+ 24.206939962948439,
+ 500.0
+ ],
+ [
+ 108.906451184254905,
+ 24.285350806145502,
+ 500.0
+ ],
+ [
+ 108.928393915081259,
+ 24.361424404617505,
+ 500.0
+ ],
+ [
+ 108.964456217731069,
+ 24.43284333791302,
+ 500.0
+ ],
+ [
+ 109.013560361551384,
+ 24.497428256007765,
+ 500.0
+ ],
+ [
+ 109.074224179450226,
+ 24.553205212882069,
+ 500.0
+ ],
+ [
+ 109.144604834827177,
+ 24.598467047083023,
+ 500.0
+ ],
+ [
+ 109.222554706160253,
+ 24.631826772897984,
+ 500.0
+ ],
+ [
+ 109.305687720986811,
+ 24.652261170258473,
+ 500.0
+ ],
+ [
+ 109.391454,
+ 24.659143065592186,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4108,
+ "name": "Bailian Airport",
+ "country": "CN",
+ "city": "Liuzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "24.2482615679581",
+ "lng": "109.37022959298",
+ "radius": 13226,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.37733321899999,
+ 24.284432441300002,
+ 0.0
+ ],
+ [
+ 109.352362682,
+ 24.366087760500001,
+ 0.0
+ ],
+ [
+ 109.285311871,
+ 24.338581299800001,
+ 0.0
+ ],
+ [
+ 109.33531015299999,
+ 24.266903085399999,
+ 0.0
+ ],
+ [
+ 109.317459541,
+ 24.241508358600001,
+ 0.0
+ ],
+ [
+ 109.313852498,
+ 24.225239285499999,
+ 0.0
+ ],
+ [
+ 109.320781078,
+ 24.192939156400001,
+ 0.0
+ ],
+ [
+ 109.334109097,
+ 24.171281766300002,
+ 0.0
+ ],
+ [
+ 109.354696634,
+ 24.147091759799999,
+ 0.0
+ ],
+ [
+ 109.370330167,
+ 24.138607568299999,
+ 0.0
+ ],
+ [
+ 109.406022329,
+ 24.133884316300001,
+ 0.0
+ ],
+ [
+ 109.37733321899999,
+ 24.284432441300002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4108,
+ "name": "Bailian Airport",
+ "country": "CN",
+ "city": "Liuzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "24.1698719906016",
+ "lng": "109.412803398217",
+ "radius": 13236,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.432682123,
+ 24.052223567599999,
+ 0.0
+ ],
+ [
+ 109.49801838499999,
+ 24.0797505325,
+ 0.0
+ ],
+ [
+ 109.444685862,
+ 24.151417440300001,
+ 0.0
+ ],
+ [
+ 109.462523346,
+ 24.176788783,
+ 0.0
+ ],
+ [
+ 109.46614186799999,
+ 24.1930554819,
+ 0.0
+ ],
+ [
+ 109.465021893,
+ 24.209622255799999,
+ 0.0
+ ],
+ [
+ 109.452565985,
+ 24.247035995699999,
+ 0.0
+ ],
+ [
+ 109.442579788,
+ 24.2619606041,
+ 0.0
+ ],
+ [
+ 109.413262215,
+ 24.2811685701,
+ 0.0
+ ],
+ [
+ 109.37733321899999,
+ 24.284432441300002,
+ 0.0
+ ],
+ [
+ 109.406022329,
+ 24.133884316300001,
+ 0.0
+ ],
+ [
+ 109.432682123,
+ 24.052223567599999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4108,
+ "name": "Bailian Airport",
+ "country": "CN",
+ "city": "Liuzhou",
+ "height": 120,
+ "level": 2,
+ "lat": "24.2091404991728",
+ "lng": "109.391547777178",
+ "radius": 23537,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.563834236,
+ 24.067411441600001,
+ 120.0
+ ],
+ [
+ 109.382321808,
+ 23.997634193900002,
+ 120.0
+ ],
+ [
+ 109.219057637,
+ 24.3508574516,
+ 120.0
+ ],
+ [
+ 109.401073882,
+ 24.420634698800001,
+ 120.0
+ ],
+ [
+ 109.563834236,
+ 24.067411441600001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001383,
+ "name": "梅县长岗岌机场",
+ "country": "CN",
+ "city": "Meixian",
+ "height": 500,
+ "level": 2,
+ "lat": "24.263378",
+ "lng": "116.097851",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.097851,
+ 24.714782743534546,
+ 500.0
+ ],
+ [
+ 116.183655348484919,
+ 24.707900836534712,
+ 500.0
+ ],
+ [
+ 116.266825193453101,
+ 24.687466410183347,
+ 500.0
+ ],
+ [
+ 116.344809464115784,
+ 24.654106655193186,
+ 500.0
+ ],
+ [
+ 116.415220989478925,
+ 24.608844817375811,
+ 500.0
+ ],
+ [
+ 116.475911182306973,
+ 24.553067912944005,
+ 500.0
+ ],
+ [
+ 116.525036405727136,
+ 24.488483133950997,
+ 500.0
+ ],
+ [
+ 116.561113881827822,
+ 24.417064452258117,
+ 500.0
+ ],
+ [
+ 116.583065473343311,
+ 24.340991234545552,
+ 500.0
+ ],
+ [
+ 116.590248183710187,
+ 24.262580905317073,
+ 500.0
+ ],
+ [
+ 116.582470742803963,
+ 24.184217836147347,
+ 500.0
+ ],
+ [
+ 116.559996145629754,
+ 24.108280699339751,
+ 500.0
+ ],
+ [
+ 116.523530466482413,
+ 24.037070508537596,
+ 500.0
+ ],
+ [
+ 116.474198667195978,
+ 23.972741486191389,
+ 500.0
+ ],
+ [
+ 116.413508448627553,
+ 23.917236757995848,
+ 500.0
+ ],
+ [
+ 116.343303459694198,
+ 23.872230687533442,
+ 500.0
+ ],
+ [
+ 116.265707383138619,
+ 23.839079439839878,
+ 500.0
+ ],
+ [
+ 116.18306056956952,
+ 23.818781108820559,
+ 500.0
+ ],
+ [
+ 116.097851,
+ 23.811946467577172,
+ 500.0
+ ],
+ [
+ 116.012641430430492,
+ 23.818781108820559,
+ 500.0
+ ],
+ [
+ 115.929994616861393,
+ 23.839079439839878,
+ 500.0
+ ],
+ [
+ 115.852398540305813,
+ 23.872230687533442,
+ 500.0
+ ],
+ [
+ 115.782193551372458,
+ 23.917236757995848,
+ 500.0
+ ],
+ [
+ 115.721503332804033,
+ 23.972741486191389,
+ 500.0
+ ],
+ [
+ 115.672171533517599,
+ 24.037070508537596,
+ 500.0
+ ],
+ [
+ 115.635705854370258,
+ 24.108280699339751,
+ 500.0
+ ],
+ [
+ 115.613231257196048,
+ 24.184217836147347,
+ 500.0
+ ],
+ [
+ 115.605453816289824,
+ 24.262580905317073,
+ 500.0
+ ],
+ [
+ 115.612636526656701,
+ 24.340991234545552,
+ 500.0
+ ],
+ [
+ 115.634588118172189,
+ 24.417064452258117,
+ 500.0
+ ],
+ [
+ 115.670665594272876,
+ 24.488483133950997,
+ 500.0
+ ],
+ [
+ 115.719790817693038,
+ 24.553067912944005,
+ 500.0
+ ],
+ [
+ 115.780481010521086,
+ 24.608844817375811,
+ 500.0
+ ],
+ [
+ 115.850892535884228,
+ 24.654106655193186,
+ 500.0
+ ],
+ [
+ 115.92887680654691,
+ 24.687466410183347,
+ 500.0
+ ],
+ [
+ 116.012046651515092,
+ 24.707900836534712,
+ 500.0
+ ],
+ [
+ 116.097851,
+ 24.714782743534546,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6793,
+ "name": "梅县长岗岌机场",
+ "country": "CN",
+ "city": "Meixian",
+ "height": 0,
+ "level": 2,
+ "lat": "24.232699473831",
+ "lng": "116.065017029328",
+ "radius": 13083,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.02697836,
+ 24.2251346792,
+ 0.0
+ ],
+ [
+ 115.956957827,
+ 24.168435006599999,
+ 0.0
+ ],
+ [
+ 116.011987496,
+ 24.125442137,
+ 0.0
+ ],
+ [
+ 116.063664786,
+ 24.197111120500001,
+ 0.0
+ ],
+ [
+ 116.095396534,
+ 24.1911061108,
+ 0.0
+ ],
+ [
+ 116.113358237,
+ 24.193763072399999,
+ 0.0
+ ],
+ [
+ 116.144058636,
+ 24.2110582615,
+ 0.0
+ ],
+ [
+ 116.173128516,
+ 24.252935933300002,
+ 0.0
+ ],
+ [
+ 116.176708606,
+ 24.2692100987,
+ 0.0
+ ],
+ [
+ 116.175546619,
+ 24.285774505799999,
+ 0.0
+ ],
+ [
+ 116.16971995199999,
+ 24.301500214099999,
+ 0.0
+ ],
+ [
+ 116.02697836,
+ 24.2251346792,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6793,
+ "name": "梅县长岗岌机场",
+ "country": "CN",
+ "city": "Meixian",
+ "height": 0,
+ "level": 2,
+ "lat": "24.2945749954315",
+ "lng": "116.131390079487",
+ "radius": 13101,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.241374682,
+ 24.356536758200001,
+ 0.0
+ ],
+ [
+ 116.186363306,
+ 24.401228367,
+ 0.0
+ ],
+ [
+ 116.134728011,
+ 24.329567750399999,
+ 0.0
+ ],
+ [
+ 116.102375197,
+ 24.335011785799999,
+ 0.0
+ ],
+ [
+ 116.084474338,
+ 24.3319350921,
+ 0.0
+ ],
+ [
+ 116.068059021,
+ 24.324739898499999,
+ 0.0
+ ],
+ [
+ 116.035923971,
+ 24.2972587563,
+ 0.0
+ ],
+ [
+ 116.021532116,
+ 24.273544238500001,
+ 0.0
+ ],
+ [
+ 116.01863953599999,
+ 24.257156815399998,
+ 0.0
+ ],
+ [
+ 116.02697836,
+ 24.2251346792,
+ 0.0
+ ],
+ [
+ 116.16971995199999,
+ 24.301500214099999,
+ 0.0
+ ],
+ [
+ 116.241374682,
+ 24.356536758200001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6793,
+ "name": "梅县长岗岌机场",
+ "country": "CN",
+ "city": "Meixian",
+ "height": 120,
+ "level": 2,
+ "lat": "24.2628162610106",
+ "lng": "116.098080168727",
+ "radius": 23495,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.15532327,
+ 24.467580808299999,
+ 120.0
+ ],
+ [
+ 116.307691737,
+ 24.353124914,
+ 120.0
+ ],
+ [
+ 116.040591774,
+ 24.058130357700001,
+ 120.0
+ ],
+ [
+ 115.888576497,
+ 24.1725862525,
+ 120.0
+ ],
+ [
+ 116.15532327,
+ 24.467580808299999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7802,
+ "name": "Xiamen Gaoqi International Airport",
+ "country": "CN",
+ "city": "Xiamen",
+ "height": 0,
+ "level": 2,
+ "lat": "24.5129989461848",
+ "lng": "118.092165312195",
+ "radius": 13524,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.04868374599999,
+ 24.511991933499999,
+ 0.0
+ ],
+ [
+ 117.967002715,
+ 24.470344162100002,
+ 0.0
+ ],
+ [
+ 118.010014587,
+ 24.417074353099999,
+ 0.0
+ ],
+ [
+ 118.075062887,
+ 24.4820755846,
+ 0.0
+ ],
+ [
+ 118.105368578,
+ 24.4708894179,
+ 0.0
+ ],
+ [
+ 118.123601879,
+ 24.470585499399998,
+ 0.0
+ ],
+ [
+ 118.157261826,
+ 24.48261593,
+ 0.0
+ ],
+ [
+ 118.185619277,
+ 24.5042991075,
+ 0.0
+ ],
+ [
+ 118.205073709,
+ 24.5276411786,
+ 0.0
+ ],
+ [
+ 118.210646399,
+ 24.560160939399999,
+ 0.0
+ ],
+ [
+ 118.20634261399999,
+ 24.5762910658,
+ 0.0
+ ],
+ [
+ 118.04868374599999,
+ 24.511991933499999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7802,
+ "name": "Xiamen Gaoqi International Airport",
+ "country": "CN",
+ "city": "Xiamen",
+ "height": 0,
+ "level": 2,
+ "lat": "24.5677019947428",
+ "lng": "118.168553343704",
+ "radius": 13615,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.291334461,
+ 24.6179965233,
+ 0.0
+ ],
+ [
+ 118.243259495,
+ 24.669590594300001,
+ 0.0
+ ],
+ [
+ 118.178252243,
+ 24.609590223200001,
+ 0.0
+ ],
+ [
+ 118.147337586,
+ 24.6195555183,
+ 0.0
+ ],
+ [
+ 118.129086293,
+ 24.619106702700002,
+ 0.0
+ ],
+ [
+ 118.09603002,
+ 24.605688441400002,
+ 0.0
+ ],
+ [
+ 118.069387937,
+ 24.584039729299999,
+ 0.0
+ ],
+ [
+ 118.049896296,
+ 24.560643006599999,
+ 0.0
+ ],
+ [
+ 118.044775227,
+ 24.544711767100001,
+ 0.0
+ ],
+ [
+ 118.04868374599999,
+ 24.511991933499999,
+ 0.0
+ ],
+ [
+ 118.20634261399999,
+ 24.5762910658,
+ 0.0
+ ],
+ [
+ 118.291334461,
+ 24.6179965233,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7802,
+ "name": "Xiamen Gaoqi International Airport",
+ "country": "CN",
+ "city": "Xiamen",
+ "height": 120,
+ "level": 2,
+ "lat": "24.5440122014818",
+ "lng": "118.127253488794",
+ "radius": 24020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.225657889,
+ 24.7406475716,
+ 120.0
+ ],
+ [
+ 118.355231364,
+ 24.604679022700001,
+ 120.0
+ ],
+ [
+ 118.028648203,
+ 24.347524123300001,
+ 120.0
+ ],
+ [
+ 117.899340026,
+ 24.483492672600001,
+ 120.0
+ ],
+ [
+ 118.225657889,
+ 24.7406475716,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001386,
+ "name": "Xiamen Gaoqi International Airport",
+ "country": "CN",
+ "city": "Xiamen",
+ "height": 500,
+ "level": 2,
+ "lat": "24.540553",
+ "lng": "118.134533",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.134533,
+ 24.991941112018583,
+ 500.0
+ ],
+ [
+ 118.220528696483811,
+ 24.985059147345879,
+ 500.0
+ ],
+ [
+ 118.303883661504429,
+ 24.964624577967445,
+ 500.0
+ ],
+ [
+ 118.382040836636108,
+ 24.931264680163984,
+ 500.0
+ ],
+ [
+ 118.45260753008769,
+ 24.88600282825205,
+ 500.0
+ ],
+ [
+ 118.513430300927723,
+ 24.830226190676331,
+ 500.0
+ ],
+ [
+ 118.56266148959854,
+ 24.765642112188765,
+ 500.0
+ ],
+ [
+ 118.598815247207213,
+ 24.694224693548968,
+ 500.0
+ ],
+ [
+ 118.62081139144135,
+ 24.618153384427444,
+ 500.0
+ ],
+ [
+ 118.628005934753858,
+ 24.539745629347287,
+ 500.0
+ ],
+ [
+ 118.620207655672118,
+ 24.461385747156541,
+ 500.0
+ ],
+ [
+ 118.597680586522145,
+ 24.385452283534899,
+ 500.0
+ ],
+ [
+ 118.561132747660125,
+ 24.314246059357803,
+ 500.0
+ ],
+ [
+ 118.511691855000535,
+ 24.249921054031176,
+ 500.0
+ ],
+ [
+ 118.450869057835178,
+ 24.19442012216383,
+ 500.0
+ ],
+ [
+ 118.380512028039618,
+ 24.149417354330556,
+ 500.0
+ ],
+ [
+ 118.302748925018577,
+ 24.116268667716714,
+ 500.0
+ ],
+ [
+ 118.219924911239147,
+ 24.095971958547555,
+ 500.0
+ ],
+ [
+ 118.134533,
+ 24.089137872573453,
+ 500.0
+ ],
+ [
+ 118.049141088760862,
+ 24.095971958547555,
+ 500.0
+ ],
+ [
+ 117.966317074981433,
+ 24.116268667716714,
+ 500.0
+ ],
+ [
+ 117.888553971960391,
+ 24.149417354330556,
+ 500.0
+ ],
+ [
+ 117.818196942164832,
+ 24.19442012216383,
+ 500.0
+ ],
+ [
+ 117.757374144999474,
+ 24.249921054031176,
+ 500.0
+ ],
+ [
+ 117.707933252339885,
+ 24.314246059357803,
+ 500.0
+ ],
+ [
+ 117.671385413477864,
+ 24.385452283534899,
+ 500.0
+ ],
+ [
+ 117.648858344327891,
+ 24.461385747156541,
+ 500.0
+ ],
+ [
+ 117.641060065246151,
+ 24.539745629347287,
+ 500.0
+ ],
+ [
+ 117.648254608558659,
+ 24.618153384427444,
+ 500.0
+ ],
+ [
+ 117.670250752792796,
+ 24.694224693548968,
+ 500.0
+ ],
+ [
+ 117.70640451040147,
+ 24.765642112188765,
+ 500.0
+ ],
+ [
+ 117.755635699072286,
+ 24.830226190676331,
+ 500.0
+ ],
+ [
+ 117.81645846991232,
+ 24.88600282825205,
+ 500.0
+ ],
+ [
+ 117.887025163363901,
+ 24.931264680163984,
+ 500.0
+ ],
+ [
+ 117.96518233849558,
+ 24.964624577967445,
+ 500.0
+ ],
+ [
+ 118.048537303516198,
+ 24.985059147345879,
+ 500.0
+ ],
+ [
+ 118.134533,
+ 24.991941112018583,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32557,
+ "name": "Jinjiang Airport",
+ "country": "CN",
+ "city": "Jinjiang Shi",
+ "height": 0,
+ "level": 2,
+ "lat": "24.7571591339978",
+ "lng": "118.564803795719",
+ "radius": 13218,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.530305056,
+ 24.7431909176,
+ 0.0
+ ],
+ [
+ 118.468620055,
+ 24.676553198299999,
+ 0.0
+ ],
+ [
+ 118.535585032,
+ 24.642192084400001,
+ 0.0
+ ],
+ [
+ 118.56718942,
+ 24.722167256199999,
+ 0.0
+ ],
+ [
+ 118.600133705,
+ 24.7230347108,
+ 0.0
+ ],
+ [
+ 118.616983619,
+ 24.729457853300001,
+ 0.0
+ ],
+ [
+ 118.642492909,
+ 24.7528349183,
+ 0.0
+ ],
+ [
+ 118.667143206,
+ 24.8052494692,
+ 0.0
+ ],
+ [
+ 118.666481964,
+ 24.821836853299999,
+ 0.0
+ ],
+ [
+ 118.66111237299999,
+ 24.837703587099998,
+ 0.0
+ ],
+ [
+ 118.530305056,
+ 24.7431909176,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32557,
+ "name": "Jinjiang Airport",
+ "country": "CN",
+ "city": "Jinjiang Shi",
+ "height": 0,
+ "level": 2,
+ "lat": "24.83761400593",
+ "lng": "118.611027634821",
+ "radius": 13290,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.70804525699999,
+ 24.918481889100001,
+ 0.0
+ ],
+ [
+ 118.646117502,
+ 24.952823082399998,
+ 0.0
+ ],
+ [
+ 118.611119693,
+ 24.8694904589,
+ 0.0
+ ],
+ [
+ 118.578025813,
+ 24.870068139099999,
+ 0.0
+ ],
+ [
+ 118.56084214099999,
+ 24.8643726723,
+ 0.0
+ ],
+ [
+ 118.534132931,
+ 24.842104600799999,
+ 0.0
+ ],
+ [
+ 118.51472220799999,
+ 24.805178726899999,
+ 0.0
+ ],
+ [
+ 118.511660858,
+ 24.788814797299999,
+ 0.0
+ ],
+ [
+ 118.51336913599999,
+ 24.7722891807,
+ 0.0
+ ],
+ [
+ 118.530305056,
+ 24.7431909176,
+ 0.0
+ ],
+ [
+ 118.66111237299999,
+ 24.837703587099998,
+ 0.0
+ ],
+ [
+ 118.651398821,
+ 24.851767906300001,
+ 0.0
+ ],
+ [
+ 118.70804525699999,
+ 24.918481889100001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32557,
+ "name": "Jinjiang Airport",
+ "country": "CN",
+ "city": "Jinjiang Shi",
+ "height": 120,
+ "level": 2,
+ "lat": "24.7978723911478",
+ "lng": "118.588889945873",
+ "radius": 23622,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.595761386,
+ 25.0102197326,
+ 120.0
+ ],
+ [
+ 118.772913382,
+ 24.929220821400001,
+ 120.0
+ ],
+ [
+ 118.581715509,
+ 24.585533635899999,
+ 120.0
+ ],
+ [
+ 118.40505379699999,
+ 24.666532547599999,
+ 120.0
+ ],
+ [
+ 118.595761386,
+ 25.0102197326,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001397,
+ "name": "Kinmen Airport",
+ "country": "TW",
+ "city": "Shang-I",
+ "height": 500,
+ "level": 2,
+ "lat": "24.429798",
+ "lng": "118.359622",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.359622,
+ 24.881192774322184,
+ 500.0
+ ],
+ [
+ 118.445540893669232,
+ 24.874310832608359,
+ 500.0
+ ],
+ [
+ 118.528821555381271,
+ 24.853876320109038,
+ 500.0
+ ],
+ [
+ 118.606909329798853,
+ 24.820516478875668,
+ 500.0
+ ],
+ [
+ 118.677413740910481,
+ 24.775254631821561,
+ 500.0
+ ],
+ [
+ 118.738183295899375,
+ 24.719477886500908,
+ 500.0
+ ],
+ [
+ 118.787371949880622,
+ 24.654893526595078,
+ 500.0
+ ],
+ [
+ 118.823495086748167,
+ 24.583475601322576,
+ 500.0
+ ],
+ [
+ 118.845473345281476,
+ 24.507403527187172,
+ 500.0
+ ],
+ [
+ 118.852663136013518,
+ 24.428994740745321,
+ 500.0
+ ],
+ [
+ 118.844873218294723,
+ 24.350633581987729,
+ 500.0
+ ],
+ [
+ 118.822367208432397,
+ 24.274698647304319,
+ 500.0
+ ],
+ [
+ 118.785852345962155,
+ 24.203490834744038,
+ 500.0
+ ],
+ [
+ 118.736455241566148,
+ 24.139164220998722,
+ 500.0
+ ],
+ [
+ 118.675685660487218,
+ 24.083661769177308,
+ 500.0
+ ],
+ [
+ 118.605389659818115,
+ 24.038657679117254,
+ 500.0
+ ],
+ [
+ 118.527693601942246,
+ 24.005507967194063,
+ 500.0
+ ],
+ [
+ 118.44494071764926,
+ 23.985210608742737,
+ 500.0
+ ],
+ [
+ 118.359622,
+ 23.978376300477574,
+ 500.0
+ ],
+ [
+ 118.274303282350743,
+ 23.985210608742737,
+ 500.0
+ ],
+ [
+ 118.191550398057757,
+ 24.005507967194063,
+ 500.0
+ ],
+ [
+ 118.113854340181888,
+ 24.038657679117254,
+ 500.0
+ ],
+ [
+ 118.043558339512785,
+ 24.083661769177308,
+ 500.0
+ ],
+ [
+ 117.982788758433855,
+ 24.139164220998722,
+ 500.0
+ ],
+ [
+ 117.933391654037848,
+ 24.203490834744038,
+ 500.0
+ ],
+ [
+ 117.896876791567607,
+ 24.274698647304319,
+ 500.0
+ ],
+ [
+ 117.874370781705281,
+ 24.350633581987729,
+ 500.0
+ ],
+ [
+ 117.866580863986485,
+ 24.428994740745321,
+ 500.0
+ ],
+ [
+ 117.873770654718527,
+ 24.507403527187172,
+ 500.0
+ ],
+ [
+ 117.895748913251836,
+ 24.583475601322576,
+ 500.0
+ ],
+ [
+ 117.931872050119381,
+ 24.654893526595078,
+ 500.0
+ ],
+ [
+ 117.981060704100628,
+ 24.719477886500908,
+ 500.0
+ ],
+ [
+ 118.041830259089522,
+ 24.775254631821561,
+ 500.0
+ ],
+ [
+ 118.11233467020115,
+ 24.820516478875668,
+ 500.0
+ ],
+ [
+ 118.190422444618733,
+ 24.853876320109038,
+ 500.0
+ ],
+ [
+ 118.273703106330771,
+ 24.874310832608359,
+ 500.0
+ ],
+ [
+ 118.359622,
+ 24.881192774322184,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5002,
+ "name": "Kinmen Airport",
+ "country": "TW",
+ "city": "Shang-I",
+ "height": 0,
+ "level": 2,
+ "lat": "24.4288834387945",
+ "lng": "118.361009451653",
+ "radius": 5625,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.30566,
+ 24.42971,
+ 0.0
+ ],
+ [
+ 118.39337,
+ 24.47001,
+ 0.0
+ ],
+ [
+ 118.41636,
+ 24.42804,
+ 0.0
+ ],
+ [
+ 118.32867,
+ 24.38775,
+ 0.0
+ ],
+ [
+ 118.30566,
+ 24.42971,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5002,
+ "name": "Kinmen Airport",
+ "country": "TW",
+ "city": "Shang-I",
+ "height": 0,
+ "level": 2,
+ "lat": "24.4071860288023",
+ "lng": "118.313797325473",
+ "radius": 2875,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.30566,
+ 24.42971,
+ 0.0
+ ],
+ [
+ 118.32867,
+ 24.38775,
+ 0.0
+ ],
+ [
+ 118.326485,
+ 24.384047,
+ 0.0
+ ],
+ [
+ 118.322793,
+ 24.386065,
+ 0.0
+ ],
+ [
+ 118.319307,
+ 24.388371,
+ 0.0
+ ],
+ [
+ 118.316054,
+ 24.390946,
+ 0.0
+ ],
+ [
+ 118.313058,
+ 24.393771,
+ 0.0
+ ],
+ [
+ 118.310342,
+ 24.396825,
+ 0.0
+ ],
+ [
+ 118.307926,
+ 24.400083,
+ 0.0
+ ],
+ [
+ 118.30583,
+ 24.403522,
+ 0.0
+ ],
+ [
+ 118.30407,
+ 24.407115,
+ 0.0
+ ],
+ [
+ 118.302657,
+ 24.410835,
+ 0.0
+ ],
+ [
+ 118.301604,
+ 24.414653,
+ 0.0
+ ],
+ [
+ 118.300919,
+ 24.418541,
+ 0.0
+ ],
+ [
+ 118.300606,
+ 24.422468,
+ 0.0
+ ],
+ [
+ 118.300668,
+ 24.426406,
+ 0.0
+ ],
+ [
+ 118.301105,
+ 24.430324,
+ 0.0
+ ],
+ [
+ 118.30566,
+ 24.42971,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5002,
+ "name": "Kinmen Airport",
+ "country": "TW",
+ "city": "Shang-I",
+ "height": 0,
+ "level": 2,
+ "lat": "24.4505780284599",
+ "lng": "118.408245828664",
+ "radius": 2875,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.39337,
+ 24.47001,
+ 0.0
+ ],
+ [
+ 118.395566,
+ 24.473724,
+ 0.0
+ ],
+ [
+ 118.398536,
+ 24.472131,
+ 0.0
+ ],
+ [
+ 118.402746,
+ 24.469396,
+ 0.0
+ ],
+ [
+ 118.406621,
+ 24.466273,
+ 0.0
+ ],
+ [
+ 118.410117,
+ 24.462797,
+ 0.0
+ ],
+ [
+ 118.412219,
+ 24.460301,
+ 0.0
+ ],
+ [
+ 118.414125,
+ 24.457677,
+ 0.0
+ ],
+ [
+ 118.416598,
+ 24.45353,
+ 0.0
+ ],
+ [
+ 118.417977,
+ 24.450643,
+ 0.0
+ ],
+ [
+ 118.418584,
+ 24.449168,
+ 0.0
+ ],
+ [
+ 118.419626,
+ 24.446165,
+ 0.0
+ ],
+ [
+ 118.420436,
+ 24.443103,
+ 0.0
+ ],
+ [
+ 118.421012,
+ 24.439996,
+ 0.0
+ ],
+ [
+ 118.421349,
+ 24.43686,
+ 0.0
+ ],
+ [
+ 118.421428,
+ 24.435286,
+ 0.0
+ ],
+ [
+ 118.421304,
+ 24.430562,
+ 0.0
+ ],
+ [
+ 118.420921,
+ 24.427431,
+ 0.0
+ ],
+ [
+ 118.41636,
+ 24.42804,
+ 0.0
+ ],
+ [
+ 118.39337,
+ 24.47001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5002,
+ "name": "Kinmen Airport",
+ "country": "TW",
+ "city": "Shang-I",
+ "height": 60,
+ "level": 2,
+ "lat": "24.4288848235107",
+ "lng": "118.361009194524",
+ "radius": 17356,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.47791,
+ 24.54311,
+ 60.0
+ ],
+ [
+ 118.5309,
+ 24.44622,
+ 60.0
+ ],
+ [
+ 118.24432,
+ 24.31457,
+ 60.0
+ ],
+ [
+ 118.19117,
+ 24.41136,
+ 60.0
+ ],
+ [
+ 118.47791,
+ 24.54311,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001316,
+ "name": "Jinjiang Airport",
+ "country": "CN",
+ "city": "Jinjiang Shi",
+ "height": 500,
+ "level": 2,
+ "lat": "24.798709",
+ "lng": "118.590342",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.590342,
+ 25.250081497891319,
+ 500.0
+ ],
+ [
+ 118.67651849785058,
+ 25.243199480131423,
+ 500.0
+ ],
+ [
+ 118.760048381446637,
+ 25.222764779526646,
+ 500.0
+ ],
+ [
+ 118.838368936356517,
+ 25.189404752340138,
+ 500.0
+ ],
+ [
+ 118.909082255367977,
+ 25.144142892991677,
+ 500.0
+ ],
+ [
+ 118.970030311754726,
+ 25.088366512176762,
+ 500.0
+ ],
+ [
+ 119.019361644571021,
+ 25.023783097285623,
+ 500.0
+ ],
+ [
+ 119.055587501987645,
+ 24.952366869404731,
+ 500.0
+ ],
+ [
+ 119.077625767454265,
+ 24.876297355546203,
+ 500.0
+ ],
+ [
+ 119.084831514661516,
+ 24.797892018639097,
+ 500.0
+ ],
+ [
+ 119.07701356548759,
+ 24.71953512787298,
+ 500.0
+ ],
+ [
+ 119.054436929874385,
+ 24.643605110144797,
+ 500.0
+ ],
+ [
+ 119.017811464848506,
+ 24.572402605692012,
+ 500.0
+ ],
+ [
+ 118.968267487155856,
+ 24.508081366284365,
+ 500.0
+ ],
+ [
+ 118.907319403887158,
+ 24.452583992706156,
+ 500.0
+ ],
+ [
+ 118.836818688566467,
+ 24.407584319957394,
+ 500.0
+ ],
+ [
+ 118.758897731929864,
+ 24.374438033229982,
+ 500.0
+ ],
+ [
+ 118.675906245362341,
+ 24.354142843732365,
+ 500.0
+ ],
+ [
+ 118.590342,
+ 24.347309278028266,
+ 500.0
+ ],
+ [
+ 118.504777754637672,
+ 24.354142843732365,
+ 500.0
+ ],
+ [
+ 118.42178626807015,
+ 24.374438033229982,
+ 500.0
+ ],
+ [
+ 118.343865311433547,
+ 24.407584319957394,
+ 500.0
+ ],
+ [
+ 118.273364596112856,
+ 24.452583992706156,
+ 500.0
+ ],
+ [
+ 118.212416512844158,
+ 24.508081366284365,
+ 500.0
+ ],
+ [
+ 118.162872535151507,
+ 24.572402605692012,
+ 500.0
+ ],
+ [
+ 118.126247070125629,
+ 24.643605110144797,
+ 500.0
+ ],
+ [
+ 118.103670434512424,
+ 24.71953512787298,
+ 500.0
+ ],
+ [
+ 118.095852485338497,
+ 24.797892018639097,
+ 500.0
+ ],
+ [
+ 118.103058232545749,
+ 24.876297355546203,
+ 500.0
+ ],
+ [
+ 118.125096498012368,
+ 24.952366869404731,
+ 500.0
+ ],
+ [
+ 118.161322355428993,
+ 25.023783097285623,
+ 500.0
+ ],
+ [
+ 118.210653688245287,
+ 25.088366512176762,
+ 500.0
+ ],
+ [
+ 118.271601744632036,
+ 25.144142892991677,
+ 500.0
+ ],
+ [
+ 118.342315063643497,
+ 25.189404752340138,
+ 500.0
+ ],
+ [
+ 118.420635618553376,
+ 25.222764779526646,
+ 500.0
+ ],
+ [
+ 118.504165502149434,
+ 25.243199480131423,
+ 500.0
+ ],
+ [
+ 118.590342,
+ 25.250081497891319,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000297,
+ "name": "臺北市地政及災害應變中心聯合辦公大樓屋頂直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.028667",
+ "lng": "121.566444",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.566444,
+ 25.037694439591792,
+ 0.0
+ ],
+ [
+ 121.568164662314956,
+ 25.03755728262233,
+ 0.0
+ ],
+ [
+ 121.569833031986192,
+ 25.0371499800431,
+ 0.0
+ ],
+ [
+ 121.571398406605866,
+ 25.03648491008234,
+ 0.0
+ ],
+ [
+ 121.57281321575627,
+ 25.035582284453934,
+ 0.0
+ ],
+ [
+ 121.574034467293842,
+ 25.034469533764074,
+ 0.0
+ ],
+ [
+ 121.575025054111919,
+ 25.033180473469024,
+ 0.0
+ ],
+ [
+ 121.575754881620469,
+ 25.031754275795464,
+ 0.0
+ ],
+ [
+ 121.57620178168527,
+ 25.030234278935414,
+ 0.0
+ ],
+ [
+ 121.57635218531361,
+ 25.028666669767137,
+ 0.0
+ ],
+ [
+ 121.576201533754045,
+ 25.027099080183753,
+ 0.0
+ ],
+ [
+ 121.575754415662175,
+ 25.02557913971614,
+ 0.0
+ ],
+ [
+ 121.575024426328,
+ 25.024153028440818,
+ 0.0
+ ],
+ [
+ 121.574033753404322,
+ 25.022864074128886,
+ 0.0
+ ],
+ [
+ 121.572812501866736,
+ 25.021751436223919,
+ 0.0
+ ],
+ [
+ 121.571397778821947,
+ 25.020848916578625,
+ 0.0
+ ],
+ [
+ 121.569832566027898,
+ 25.020183933016099,
+ 0.0
+ ],
+ [
+ 121.568164414383716,
+ 25.019776686829321,
+ 0.0
+ ],
+ [
+ 121.566444,
+ 25.019639549444744,
+ 0.0
+ ],
+ [
+ 121.564723585616292,
+ 25.019776686829321,
+ 0.0
+ ],
+ [
+ 121.56305543397211,
+ 25.020183933016099,
+ 0.0
+ ],
+ [
+ 121.561490221178062,
+ 25.020848916578625,
+ 0.0
+ ],
+ [
+ 121.560075498133273,
+ 25.021751436223919,
+ 0.0
+ ],
+ [
+ 121.558854246595686,
+ 25.022864074128886,
+ 0.0
+ ],
+ [
+ 121.557863573672009,
+ 25.024153028440818,
+ 0.0
+ ],
+ [
+ 121.557133584337834,
+ 25.02557913971614,
+ 0.0
+ ],
+ [
+ 121.556686466245964,
+ 25.027099080183753,
+ 0.0
+ ],
+ [
+ 121.556535814686399,
+ 25.028666669767137,
+ 0.0
+ ],
+ [
+ 121.556686218314738,
+ 25.030234278935414,
+ 0.0
+ ],
+ [
+ 121.557133118379539,
+ 25.031754275795464,
+ 0.0
+ ],
+ [
+ 121.55786294588809,
+ 25.033180473469024,
+ 0.0
+ ],
+ [
+ 121.558853532706166,
+ 25.034469533764074,
+ 0.0
+ ],
+ [
+ 121.560074784243739,
+ 25.035582284453934,
+ 0.0
+ ],
+ [
+ 121.561489593394143,
+ 25.03648491008234,
+ 0.0
+ ],
+ [
+ 121.563054968013816,
+ 25.0371499800431,
+ 0.0
+ ],
+ [
+ 121.564723337685052,
+ 25.03755728262233,
+ 0.0
+ ],
+ [
+ 121.566444,
+ 25.037694439591792,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001343,
+ "name": "Taichung Airport",
+ "country": "TW",
+ "city": "Taichung City",
+ "height": 500,
+ "level": 2,
+ "lat": "24.263267",
+ "lng": "120.621972",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.621972,
+ 24.714671750167177,
+ 500.0
+ ],
+ [
+ 120.707776272427608,
+ 24.707789843190579,
+ 500.0
+ ],
+ [
+ 120.790946043814401,
+ 24.687355416896953,
+ 500.0
+ ],
+ [
+ 120.868930245751955,
+ 24.653995661964824,
+ 500.0
+ ],
+ [
+ 120.939341709440868,
+ 24.60873382415441,
+ 500.0
+ ],
+ [
+ 121.000031849574953,
+ 24.5529569196176,
+ 500.0
+ ],
+ [
+ 121.049157030880224,
+ 24.488372140346591,
+ 500.0
+ ],
+ [
+ 121.085234476665519,
+ 24.416953458151141,
+ 500.0
+ ],
+ [
+ 121.107186050477537,
+ 24.340880239678217,
+ 500.0
+ ],
+ [
+ 121.11436875614622,
+ 24.262469909423505,
+ 500.0
+ ],
+ [
+ 121.106591323527169,
+ 24.184106838982682,
+ 500.0
+ ],
+ [
+ 121.084116747212605,
+ 24.108169700709617,
+ 500.0
+ ],
+ [
+ 121.047651100723371,
+ 24.036959508324607,
+ 500.0
+ ],
+ [
+ 120.998319344798489,
+ 23.972630484375188,
+ 500.0
+ ],
+ [
+ 120.937629178924297,
+ 23.917125754664326,
+ 500.0
+ ],
+ [
+ 120.867424250418821,
+ 23.872119682883586,
+ 500.0
+ ],
+ [
+ 120.78982824024574,
+ 23.838968434167629,
+ 500.0
+ ],
+ [
+ 120.707181497101615,
+ 23.818670102500839,
+ 500.0
+ ],
+ [
+ 120.621972,
+ 23.811835461035773,
+ 500.0
+ ],
+ [
+ 120.536762502898384,
+ 23.818670102500839,
+ 500.0
+ ],
+ [
+ 120.454115759754259,
+ 23.838968434167629,
+ 500.0
+ ],
+ [
+ 120.376519749581178,
+ 23.872119682883586,
+ 500.0
+ ],
+ [
+ 120.306314821075702,
+ 23.917125754664326,
+ 500.0
+ ],
+ [
+ 120.24562465520151,
+ 23.972630484375188,
+ 500.0
+ ],
+ [
+ 120.196292899276628,
+ 24.036959508324607,
+ 500.0
+ ],
+ [
+ 120.159827252787395,
+ 24.108169700709617,
+ 500.0
+ ],
+ [
+ 120.13735267647283,
+ 24.184106838982682,
+ 500.0
+ ],
+ [
+ 120.129575243853779,
+ 24.262469909423505,
+ 500.0
+ ],
+ [
+ 120.136757949522462,
+ 24.340880239678217,
+ 500.0
+ ],
+ [
+ 120.15870952333448,
+ 24.416953458151141,
+ 500.0
+ ],
+ [
+ 120.194786969119775,
+ 24.488372140346591,
+ 500.0
+ ],
+ [
+ 120.243912150425047,
+ 24.5529569196176,
+ 500.0
+ ],
+ [
+ 120.304602290559131,
+ 24.60873382415441,
+ 500.0
+ ],
+ [
+ 120.375013754248045,
+ 24.653995661964824,
+ 500.0
+ ],
+ [
+ 120.452997956185598,
+ 24.687355416896953,
+ 500.0
+ ],
+ [
+ 120.536167727572391,
+ 24.707789843190579,
+ 500.0
+ ],
+ [
+ 120.621972,
+ 24.714671750167177,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7697,
+ "name": "Taichung Airport",
+ "country": "TW",
+ "city": "Taichung City",
+ "height": 0,
+ "level": 2,
+ "lat": "24.2650566185843",
+ "lng": "120.620711006533",
+ "radius": 6141,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.59183,
+ 24.31358,
+ 0.0
+ ],
+ [
+ 120.64297,
+ 24.31643,
+ 0.0
+ ],
+ [
+ 120.64957,
+ 24.21652,
+ 0.0
+ ],
+ [
+ 120.59847,
+ 24.21368,
+ 0.0
+ ],
+ [
+ 120.59183,
+ 24.31358,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7697,
+ "name": "Taichung Airport",
+ "country": "TW",
+ "city": "Taichung City",
+ "height": 0,
+ "level": 2,
+ "lat": "24.2116590777685",
+ "lng": "120.624256628263",
+ "radius": 2863,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.64957,
+ 24.21652,
+ 0.0
+ ],
+ [
+ 120.59847,
+ 24.21368,
+ 0.0
+ ],
+ [
+ 120.596075153,
+ 24.210086510699998,
+ 0.0
+ ],
+ [
+ 120.601990779,
+ 24.2072470578,
+ 0.0
+ ],
+ [
+ 120.60827073599999,
+ 24.205167731,
+ 0.0
+ ],
+ [
+ 120.614799579,
+ 24.203886752500001,
+ 0.0
+ ],
+ [
+ 120.621457301,
+ 24.203427669,
+ 0.0
+ ],
+ [
+ 120.62812153199999,
+ 24.203798920400001,
+ 0.0
+ ],
+ [
+ 120.634669784,
+ 24.2049936843,
+ 0.0
+ ],
+ [
+ 120.64098169099999,
+ 24.206990001800001,
+ 0.0
+ ],
+ [
+ 120.646941221,
+ 24.209751179,
+ 0.0
+ ],
+ [
+ 120.652438798,
+ 24.2132264601,
+ 0.0
+ ],
+ [
+ 120.64957,
+ 24.21652,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7697,
+ "name": "Taichung Airport",
+ "country": "TW",
+ "city": "Taichung City",
+ "height": 0,
+ "level": 2,
+ "lat": "24.3184627084515",
+ "lng": "120.61717658489",
+ "radius": 2863,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.59183,
+ 24.31358,
+ 0.0
+ ],
+ [
+ 120.64297,
+ 24.31643,
+ 0.0
+ ],
+ [
+ 120.645382191,
+ 24.320031658200001,
+ 0.0
+ ],
+ [
+ 120.63946224599999,
+ 24.322872705,
+ 0.0
+ ],
+ [
+ 120.633176964,
+ 24.3249532231,
+ 0.0
+ ],
+ [
+ 120.626642088,
+ 24.326234896399999,
+ 0.0
+ ],
+ [
+ 120.619977975,
+ 24.326694120599999,
+ 0.0
+ ],
+ [
+ 120.613307366,
+ 24.3263224393,
+ 0.0
+ ],
+ [
+ 120.606753126,
+ 24.3251266997,
+ 0.0
+ ],
+ [
+ 120.600435965,
+ 24.323128926300001,
+ 0.0
+ ],
+ [
+ 120.594472214,
+ 24.320365914100002,
+ 0.0
+ ],
+ [
+ 120.58897167799999,
+ 24.316888548200001,
+ 0.0
+ ],
+ [
+ 120.59183,
+ 24.31358,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7697,
+ "name": "Taichung Airport",
+ "country": "TW",
+ "city": "Taichung City",
+ "height": 60,
+ "level": 2,
+ "lat": "24.2650578275375",
+ "lng": "120.620710345798",
+ "radius": 17930,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.55159,
+ 24.41343,
+ 60.0
+ ],
+ [
+ 120.6697,
+ 24.42001,
+ 60.0
+ ],
+ [
+ 120.68967,
+ 24.11665,
+ 60.0
+ ],
+ [
+ 120.57184,
+ 24.11009,
+ 60.0
+ ],
+ [
+ 120.55159,
+ 24.41343,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000291,
+ "name": "沙鹿童綜合醫院直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "24.247222",
+ "lng": "120.543333",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.543333,
+ 24.256250377811316,
+ 0.0
+ ],
+ [
+ 120.545042987403349,
+ 24.256113206937076,
+ 0.0
+ ],
+ [
+ 120.54670100697696,
+ 24.255705863034692,
+ 0.0
+ ],
+ [
+ 120.548256671201855,
+ 24.255040725497818,
+ 0.0
+ ],
+ [
+ 120.549662705007364,
+ 24.254138007955465,
+ 0.0
+ ],
+ [
+ 120.55087638304478,
+ 24.253025143637132,
+ 0.0
+ ],
+ [
+ 120.551860828324237,
+ 24.251735951271343,
+ 0.0
+ ],
+ [
+ 120.552586132702658,
+ 24.25030960692828,
+ 0.0
+ ],
+ [
+ 120.553030265177071,
+ 24.248789453118345,
+ 0.0
+ ],
+ [
+ 120.553179740440243,
+ 24.247221681398557,
+ 0.0
+ ],
+ [
+ 120.553030027486528,
+ 24.245653928569844,
+ 0.0
+ ],
+ [
+ 120.552585685990536,
+ 24.244133829154535,
+ 0.0
+ ],
+ [
+ 120.551860226470623,
+ 24.24270756814887,
+ 0.0
+ ],
+ [
+ 120.550875698642102,
+ 24.24141847801155,
+ 0.0
+ ],
+ [
+ 120.549662020604686,
+ 24.240305722482507,
+ 0.0
+ ],
+ [
+ 120.548256069348241,
+ 24.239403107168606,
+ 0.0
+ ],
+ [
+ 120.546700560264824,
+ 24.238738052969147,
+ 0.0
+ ],
+ [
+ 120.545042749712792,
+ 24.238330763461406,
+ 0.0
+ ],
+ [
+ 120.543333,
+ 24.238193611478223,
+ 0.0
+ ],
+ [
+ 120.541623250287216,
+ 24.238330763461406,
+ 0.0
+ ],
+ [
+ 120.539965439735184,
+ 24.238738052969147,
+ 0.0
+ ],
+ [
+ 120.538409930651767,
+ 24.239403107168606,
+ 0.0
+ ],
+ [
+ 120.537003979395323,
+ 24.240305722482507,
+ 0.0
+ ],
+ [
+ 120.535790301357906,
+ 24.24141847801155,
+ 0.0
+ ],
+ [
+ 120.534805773529385,
+ 24.24270756814887,
+ 0.0
+ ],
+ [
+ 120.534080314009472,
+ 24.244133829154535,
+ 0.0
+ ],
+ [
+ 120.53363597251348,
+ 24.245653928569844,
+ 0.0
+ ],
+ [
+ 120.533486259559766,
+ 24.247221681398557,
+ 0.0
+ ],
+ [
+ 120.533635734822937,
+ 24.248789453118345,
+ 0.0
+ ],
+ [
+ 120.534079867297351,
+ 24.25030960692828,
+ 0.0
+ ],
+ [
+ 120.534805171675771,
+ 24.251735951271343,
+ 0.0
+ ],
+ [
+ 120.535789616955228,
+ 24.253025143637132,
+ 0.0
+ ],
+ [
+ 120.537003294992644,
+ 24.254138007955465,
+ 0.0
+ ],
+ [
+ 120.538409328798153,
+ 24.255040725497818,
+ 0.0
+ ],
+ [
+ 120.539964993023048,
+ 24.255705863034692,
+ 0.0
+ ],
+ [
+ 120.541623012596659,
+ 24.256113206937076,
+ 0.0
+ ],
+ [
+ 120.543333,
+ 24.256250377811316,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000304,
+ "name": "部立雙和醫院直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "24.992722",
+ "lng": "121.49225",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.49225,
+ 25.00174948322833,
+ 0.0
+ ],
+ [
+ 121.493970161345757,
+ 25.001612325612076,
+ 0.0
+ ],
+ [
+ 121.495638045291045,
+ 25.001205021110668,
+ 0.0
+ ],
+ [
+ 121.497202964205471,
+ 25.00053994800659,
+ 0.0
+ ],
+ [
+ 121.498617361531785,
+ 24.99963731810281,
+ 0.0
+ ],
+ [
+ 121.499838257646942,
+ 24.998524562127614,
+ 0.0
+ ],
+ [
+ 121.500828556243619,
+ 24.997235495689509,
+ 0.0
+ ],
+ [
+ 121.501558171481747,
+ 24.995809291193979,
+ 0.0
+ ],
+ [
+ 121.502004941662776,
+ 24.994289287033936,
+ 0.0
+ ],
+ [
+ 121.502155301721544,
+ 24.992721670305297,
+ 0.0
+ ],
+ [
+ 121.502004694208821,
+ 24.991154073129429,
+ 0.0
+ ],
+ [
+ 121.501557706420428,
+ 24.989634125269376,
+ 0.0
+ ],
+ [
+ 121.500827929668191,
+ 24.98820800703043,
+ 0.0
+ ],
+ [
+ 121.499837545131655,
+ 24.986919046401677,
+ 0.0
+ ],
+ [
+ 121.498616649016498,
+ 24.985806403026455,
+ 0.0
+ ],
+ [
+ 121.497202337630043,
+ 24.984903878932052,
+ 0.0
+ ],
+ [
+ 121.495637580229726,
+ 24.984238892084552,
+ 0.0
+ ],
+ [
+ 121.493969913891803,
+ 24.983831643883139,
+ 0.0
+ ],
+ [
+ 121.49225,
+ 24.983694505819656,
+ 0.0
+ ],
+ [
+ 121.490530086108194,
+ 24.983831643883139,
+ 0.0
+ ],
+ [
+ 121.488862419770271,
+ 24.984238892084552,
+ 0.0
+ ],
+ [
+ 121.487297662369954,
+ 24.984903878932052,
+ 0.0
+ ],
+ [
+ 121.485883350983499,
+ 24.985806403026455,
+ 0.0
+ ],
+ [
+ 121.484662454868342,
+ 24.986919046401677,
+ 0.0
+ ],
+ [
+ 121.483672070331806,
+ 24.98820800703043,
+ 0.0
+ ],
+ [
+ 121.482942293579569,
+ 24.989634125269376,
+ 0.0
+ ],
+ [
+ 121.482495305791176,
+ 24.991154073129429,
+ 0.0
+ ],
+ [
+ 121.482344698278453,
+ 24.992721670305297,
+ 0.0
+ ],
+ [
+ 121.482495058337221,
+ 24.994289287033936,
+ 0.0
+ ],
+ [
+ 121.48294182851825,
+ 24.995809291193979,
+ 0.0
+ ],
+ [
+ 121.483671443756378,
+ 24.997235495689509,
+ 0.0
+ ],
+ [
+ 121.484661742353055,
+ 24.998524562127614,
+ 0.0
+ ],
+ [
+ 121.485882638468212,
+ 24.99963731810281,
+ 0.0
+ ],
+ [
+ 121.487297035794526,
+ 25.00053994800659,
+ 0.0
+ ],
+ [
+ 121.488861954708952,
+ 25.001205021110668,
+ 0.0
+ ],
+ [
+ 121.49052983865424,
+ 25.001612325612076,
+ 0.0
+ ],
+ [
+ 121.49225,
+ 25.00174948322833,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000292,
+ "name": "中國醫藥大學附設醫院五權院區直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "24.154167",
+ "lng": "120.683472",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.683472,
+ 24.163195488060168,
+ 0.0
+ ],
+ [
+ 120.685180746126704,
+ 24.163058315552259,
+ 0.0
+ ],
+ [
+ 120.686837562193418,
+ 24.162650966794807,
+ 0.0
+ ],
+ [
+ 120.688392097296799,
+ 24.161985821318318,
+ 0.0
+ ],
+ [
+ 120.689797110709335,
+ 24.16108309297671,
+ 0.0
+ ],
+ [
+ 120.691009908105229,
+ 24.159970215307595,
+ 0.0
+ ],
+ [
+ 120.691993639252459,
+ 24.158681007423802,
+ 0.0
+ ],
+ [
+ 120.692718417687658,
+ 24.157254645847011,
+ 0.0
+ ],
+ [
+ 120.693162228353017,
+ 24.155734473594933,
+ 0.0
+ ],
+ [
+ 120.693311595671588,
+ 24.154166682774285,
+ 0.0
+ ],
+ [
+ 120.69316199186342,
+ 24.152598910762659,
+ 0.0
+ ],
+ [
+ 120.692717973232618,
+ 24.151078792668983,
+ 0.0
+ ],
+ [
+ 120.691993040439797,
+ 24.149652514067672,
+ 0.0
+ ],
+ [
+ 120.691009227160578,
+ 24.148363407968386,
+ 0.0
+ ],
+ [
+ 120.689796429764684,
+ 24.147250638616075,
+ 0.0
+ ],
+ [
+ 120.688391498484123,
+ 24.146348012058969,
+ 0.0
+ ],
+ [
+ 120.686837117738349,
+ 24.145682949557973,
+ 0.0
+ ],
+ [
+ 120.685180509637092,
+ 24.145275654958926,
+ 0.0
+ ],
+ [
+ 120.683472,
+ 24.145138501260035,
+ 0.0
+ ],
+ [
+ 120.681763490362897,
+ 24.145275654958926,
+ 0.0
+ ],
+ [
+ 120.68010688226164,
+ 24.145682949557973,
+ 0.0
+ ],
+ [
+ 120.678552501515867,
+ 24.146348012058969,
+ 0.0
+ ],
+ [
+ 120.677147570235306,
+ 24.147250638616075,
+ 0.0
+ ],
+ [
+ 120.675934772839412,
+ 24.148363407968386,
+ 0.0
+ ],
+ [
+ 120.674950959560192,
+ 24.149652514067672,
+ 0.0
+ ],
+ [
+ 120.674226026767371,
+ 24.151078792668983,
+ 0.0
+ ],
+ [
+ 120.67378200813657,
+ 24.152598910762659,
+ 0.0
+ ],
+ [
+ 120.673632404328401,
+ 24.154166682774285,
+ 0.0
+ ],
+ [
+ 120.673781771646972,
+ 24.155734473594933,
+ 0.0
+ ],
+ [
+ 120.674225582312332,
+ 24.157254645847011,
+ 0.0
+ ],
+ [
+ 120.67495036074753,
+ 24.158681007423802,
+ 0.0
+ ],
+ [
+ 120.67593409189476,
+ 24.159970215307595,
+ 0.0
+ ],
+ [
+ 120.677146889290654,
+ 24.16108309297671,
+ 0.0
+ ],
+ [
+ 120.678551902703191,
+ 24.161985821318318,
+ 0.0
+ ],
+ [
+ 120.680106437806572,
+ 24.162650966794807,
+ 0.0
+ ],
+ [
+ 120.681763253873285,
+ 24.163058315552259,
+ 0.0
+ ],
+ [
+ 120.683472,
+ 24.163195488060168,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 31501,
+ "name": "成功嶺",
+ "country": "TW",
+ "city": "Wuri District",
+ "height": 0,
+ "level": 2,
+ "lat": "24.128778",
+ "lng": "120.590959",
+ "radius": 915,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.590959,
+ 24.13703909446297,
+ 0.0
+ ],
+ [
+ 120.592522184637858,
+ 24.136913581941968,
+ 0.0
+ ],
+ [
+ 120.59403786377797,
+ 24.136540858723382,
+ 0.0
+ ],
+ [
+ 120.595459976429908,
+ 24.13593225185776,
+ 0.0
+ ],
+ [
+ 120.596745306597214,
+ 24.135106256688484,
+ 0.0
+ ],
+ [
+ 120.597854797076081,
+ 24.134087974502098,
+ 0.0
+ ],
+ [
+ 120.598754736562185,
+ 24.132908349374969,
+ 0.0
+ ],
+ [
+ 120.599417783950884,
+ 24.131603227460001,
+ 0.0
+ ],
+ [
+ 120.599823798708385,
+ 24.130212267356193,
+ 0.0
+ ],
+ [
+ 120.599960452128443,
+ 24.128777734724661,
+ 0.0
+ ],
+ [
+ 120.59982360098715,
+ 24.127343217821796,
+ 0.0
+ ],
+ [
+ 120.59941741235653,
+ 24.125952303006841,
+ 0.0
+ ],
+ [
+ 120.59875423591447,
+ 24.124647250478432,
+ 0.0
+ ],
+ [
+ 120.597854227760493,
+ 24.123467710466521,
+ 0.0
+ ],
+ [
+ 120.596744737281625,
+ 24.122449518857849,
+ 0.0
+ ],
+ [
+ 120.595459475782178,
+ 24.12162360880378,
+ 0.0
+ ],
+ [
+ 120.594037492183602,
+ 24.121015071324731,
+ 0.0
+ ],
+ [
+ 120.592521986916623,
+ 24.120642393394991,
+ 0.0
+ ],
+ [
+ 120.590959,
+ 24.120516896602652,
+ 0.0
+ ],
+ [
+ 120.589396013083373,
+ 24.120642393394991,
+ 0.0
+ ],
+ [
+ 120.587880507816394,
+ 24.121015071324731,
+ 0.0
+ ],
+ [
+ 120.586458524217818,
+ 24.12162360880378,
+ 0.0
+ ],
+ [
+ 120.585173262718371,
+ 24.122449518857849,
+ 0.0
+ ],
+ [
+ 120.584063772239503,
+ 24.123467710466521,
+ 0.0
+ ],
+ [
+ 120.583163764085526,
+ 24.124647250478432,
+ 0.0
+ ],
+ [
+ 120.582500587643466,
+ 24.125952303006841,
+ 0.0
+ ],
+ [
+ 120.582094399012846,
+ 24.127343217821796,
+ 0.0
+ ],
+ [
+ 120.581957547871554,
+ 24.128777734724661,
+ 0.0
+ ],
+ [
+ 120.582094201291611,
+ 24.130212267356193,
+ 0.0
+ ],
+ [
+ 120.582500216049112,
+ 24.131603227460001,
+ 0.0
+ ],
+ [
+ 120.583163263437811,
+ 24.132908349374969,
+ 0.0
+ ],
+ [
+ 120.584063202923915,
+ 24.134087974502098,
+ 0.0
+ ],
+ [
+ 120.585172693402782,
+ 24.135106256688484,
+ 0.0
+ ],
+ [
+ 120.586458023570088,
+ 24.13593225185776,
+ 0.0
+ ],
+ [
+ 120.587880136222026,
+ 24.136540858723382,
+ 0.0
+ ],
+ [
+ 120.589395815362138,
+ 24.136913581941968,
+ 0.0
+ ],
+ [
+ 120.590959,
+ 24.13703909446297,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283988,
+ "name": "Yonaguni Airport",
+ "country": "JP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "24.4674085338006",
+ "lng": "122.979752219796",
+ "radius": 4046,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.939985866,
+ 24.463652014299999,
+ 0.0
+ ],
+ [
+ 123.016555639,
+ 24.481629313500001,
+ 0.0
+ ],
+ [
+ 123.01951809,
+ 24.471179690700001,
+ 0.0
+ ],
+ [
+ 122.942946304,
+ 24.453202018,
+ 0.0
+ ],
+ [
+ 122.939985866,
+ 24.463652014299999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283988,
+ "name": "Yonaguni Airport",
+ "country": "JP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "24.4807395068564",
+ "lng": "123.036502249515",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.016555639,
+ 24.481629313500001,
+ 60.0
+ ],
+ [
+ 123.049676463,
+ 24.494399486599999,
+ 60.0
+ ],
+ [
+ 123.055290106,
+ 24.474579024600001,
+ 60.0
+ ],
+ [
+ 123.01951809,
+ 24.471179690700001,
+ 60.0
+ ],
+ [
+ 123.016555639,
+ 24.481629313500001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283988,
+ "name": "Yonaguni Airport",
+ "country": "JP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "24.4540920683167",
+ "lng": "122.923003888692",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.90421740399999,
+ 24.460248772700002,
+ 60.0
+ ],
+ [
+ 122.939985866,
+ 24.463652014299999,
+ 60.0
+ ],
+ [
+ 122.942946304,
+ 24.453202018,
+ 60.0
+ ],
+ [
+ 122.90983773,
+ 24.440428805900002,
+ 60.0
+ ],
+ [
+ 122.90421740399999,
+ 24.460248772700002,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283988,
+ "name": "Yonaguni Airport",
+ "country": "JP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "24.4945032261995",
+ "lng": "123.095202028236",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.049676463,
+ 24.494399486599999,
+ 150.0
+ ],
+ [
+ 123.126984543,
+ 24.524168449699999,
+ 150.0
+ ],
+ [
+ 123.13876564,
+ 24.482478049400001,
+ 150.0
+ ],
+ [
+ 123.055290106,
+ 24.474579024600001,
+ 150.0
+ ],
+ [
+ 123.049676463,
+ 24.494399486599999,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283988,
+ "name": "Yonaguni Airport",
+ "country": "JP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "24.4402987873119",
+ "lng": "122.864331129159",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.82076519,
+ 24.452275151799999,
+ 150.0
+ ],
+ [
+ 122.90421740399999,
+ 24.460248772700002,
+ 150.0
+ ],
+ [
+ 122.90983773,
+ 24.440428805900002,
+ 150.0
+ ],
+ [
+ 122.832610482,
+ 24.410596634800001,
+ 150.0
+ ],
+ [
+ 122.82076519,
+ 24.452275151799999,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283989,
+ "name": "Yonaguni Airport",
+ "country": "JP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "24.4674151391471",
+ "lng": "122.979750347121",
+ "radius": 4997,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.960295282,
+ 24.499999667,
+ 0.0
+ ],
+ [
+ 122.979453556,
+ 24.504497779299999,
+ 0.0
+ ],
+ [
+ 122.995877334,
+ 24.5051431429,
+ 0.0
+ ],
+ [
+ 123.003840274,
+ 24.503129322700001,
+ 0.0
+ ],
+ [
+ 123.017542128,
+ 24.494865241199999,
+ 0.0
+ ],
+ [
+ 123.02268197399999,
+ 24.488976408900001,
+ 0.0
+ ],
+ [
+ 123.028426472,
+ 24.4749614079,
+ 0.0
+ ],
+ [
+ 123.02878051099999,
+ 24.467447938799999,
+ 0.0
+ ],
+ [
+ 123.02741061,
+ 24.460031655800002,
+ 0.0
+ ],
+ [
+ 123.019812266,
+ 24.446768515500001,
+ 0.0
+ ],
+ [
+ 123.00694654599999,
+ 24.4374644667,
+ 0.0
+ ],
+ [
+ 122.971859712,
+ 24.429226835,
+ 0.0
+ ],
+ [
+ 122.955657615,
+ 24.4317063399,
+ 0.0
+ ],
+ [
+ 122.941962382,
+ 24.4399700785,
+ 0.0
+ ],
+ [
+ 122.93314117,
+ 24.452590114900001,
+ 0.0
+ ],
+ [
+ 122.931076576,
+ 24.4598718787,
+ 0.0
+ ],
+ [
+ 122.930720194,
+ 24.4673852552,
+ 0.0
+ ],
+ [
+ 122.932087901,
+ 24.4748018859,
+ 0.0
+ ],
+ [
+ 122.939684813,
+ 24.488066508399999,
+ 0.0
+ ],
+ [
+ 122.945582337,
+ 24.493334551,
+ 0.0
+ ],
+ [
+ 122.960295282,
+ 24.499999667,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008273,
+ "name": "Yonaguni Airport",
+ "country": "JP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "24.467614",
+ "lng": "122.97949",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.97949,
+ 24.919006502033387,
+ 500.0
+ ],
+ [
+ 123.065435065638184,
+ 24.912124552467809,
+ 500.0
+ ],
+ [
+ 123.148741047529057,
+ 24.891690020507628,
+ 500.0
+ ],
+ [
+ 123.226852471406872,
+ 24.85833015988581,
+ 500.0
+ ],
+ [
+ 123.297378106170967,
+ 24.813068311058462,
+ 500.0
+ ],
+ [
+ 123.358165795141204,
+ 24.757291602360901,
+ 500.0
+ ],
+ [
+ 123.407368943211736,
+ 24.692707338318105,
+ 500.0
+ ],
+ [
+ 123.443502514206074,
+ 24.621289585741316,
+ 500.0
+ ],
+ [
+ 123.465486867139518,
+ 24.545217772457825,
+ 500.0
+ ],
+ [
+ 123.47267827693976,
+ 24.466809337749076,
+ 500.0
+ ],
+ [
+ 123.464885509544246,
+ 24.388448614397845,
+ 500.0
+ ],
+ [
+ 123.442372323076654,
+ 24.312514181496589,
+ 500.0
+ ],
+ [
+ 123.405846223193933,
+ 24.241306910766156,
+ 500.0
+ ],
+ [
+ 123.356434197235274,
+ 24.176980845706542,
+ 500.0
+ ],
+ [
+ 123.295646482094895,
+ 24.121478912407309,
+ 500.0
+ ],
+ [
+ 123.225329685123938,
+ 24.076475273425356,
+ 500.0
+ ],
+ [
+ 123.147610781045742,
+ 24.043325911291795,
+ 500.0
+ ],
+ [
+ 123.064833658859129,
+ 24.023028774348472,
+ 500.0
+ ],
+ [
+ 122.97949,
+ 24.016194541920083,
+ 500.0
+ ],
+ [
+ 122.894146341140868,
+ 24.023028774348472,
+ 500.0
+ ],
+ [
+ 122.811369218954255,
+ 24.043325911291795,
+ 500.0
+ ],
+ [
+ 122.733650314876058,
+ 24.076475273425356,
+ 500.0
+ ],
+ [
+ 122.663333517905102,
+ 24.121478912407309,
+ 500.0
+ ],
+ [
+ 122.602545802764723,
+ 24.176980845706542,
+ 500.0
+ ],
+ [
+ 122.553133776806064,
+ 24.241306910766156,
+ 500.0
+ ],
+ [
+ 122.516607676923343,
+ 24.312514181496589,
+ 500.0
+ ],
+ [
+ 122.494094490455751,
+ 24.388448614397845,
+ 500.0
+ ],
+ [
+ 122.486301723060237,
+ 24.466809337749076,
+ 500.0
+ ],
+ [
+ 122.493493132860479,
+ 24.545217772457825,
+ 500.0
+ ],
+ [
+ 122.515477485793923,
+ 24.621289585741316,
+ 500.0
+ ],
+ [
+ 122.551611056788261,
+ 24.692707338318105,
+ 500.0
+ ],
+ [
+ 122.600814204858793,
+ 24.757291602360901,
+ 500.0
+ ],
+ [
+ 122.66160189382903,
+ 24.813068311058462,
+ 500.0
+ ],
+ [
+ 122.732127528593125,
+ 24.85833015988581,
+ 500.0
+ ],
+ [
+ 122.810238952470939,
+ 24.891690020507628,
+ 500.0
+ ],
+ [
+ 122.893544934361813,
+ 24.912124552467809,
+ 500.0
+ ],
+ [
+ 122.97949,
+ 24.919006502033387,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30293142,
+ "name": "TARAMA",
+ "country": "JP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "24.6538331439268",
+ "lng": "124.675405928004",
+ "radius": 4743,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.713778924,
+ 24.6649553506,
+ 0.0
+ ],
+ [
+ 124.715766896,
+ 24.6440932782,
+ 0.0
+ ],
+ [
+ 124.714201087,
+ 24.636708803200001,
+ 0.0
+ ],
+ [
+ 124.706246652,
+ 24.623614178099999,
+ 0.0
+ ],
+ [
+ 124.69312269,
+ 24.614591724299999,
+ 0.0
+ ],
+ [
+ 124.677097833,
+ 24.6112005158,
+ 0.0
+ ],
+ [
+ 124.660940895,
+ 24.614026469399999,
+ 0.0
+ ],
+ [
+ 124.647443455,
+ 24.622581333399999,
+ 0.0
+ ],
+ [
+ 124.638938559,
+ 24.635386859699999,
+ 0.0
+ ],
+ [
+ 124.635225292,
+ 24.656024231500002,
+ 0.0
+ ],
+ [
+ 124.635058414,
+ 24.663543078099998,
+ 0.0
+ ],
+ [
+ 124.636615445,
+ 24.670929144500001,
+ 0.0
+ ],
+ [
+ 124.639828623,
+ 24.677859572700001,
+ 0.0
+ ],
+ [
+ 124.644557729,
+ 24.6840313702,
+ 0.0
+ ],
+ [
+ 124.657680064,
+ 24.6930645435,
+ 0.0
+ ],
+ [
+ 124.673712867,
+ 24.6964657531,
+ 0.0
+ ],
+ [
+ 124.681960543,
+ 24.6958283182,
+ 0.0
+ ],
+ [
+ 124.697130434,
+ 24.690015559100001,
+ 0.0
+ ],
+ [
+ 124.708384698,
+ 24.679098404600001,
+ 0.0
+ ],
+ [
+ 124.71189858699999,
+ 24.672289536699999,
+ 0.0
+ ],
+ [
+ 124.713778924,
+ 24.6649553506,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30304719,
+ "name": "TARAMA",
+ "country": "JP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "24.653833165836",
+ "lng": "124.675417138072",
+ "radius": 3794,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.676711064,
+ 24.6879403505,
+ 0.0
+ ],
+ [
+ 124.685903373,
+ 24.6210642498,
+ 0.0
+ ],
+ [
+ 124.674123919,
+ 24.619725970099999,
+ 0.0
+ ],
+ [
+ 124.664925278,
+ 24.686602213699999,
+ 0.0
+ ],
+ [
+ 124.676711064,
+ 24.6879403505,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30304719,
+ "name": "TARAMA",
+ "country": "JP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "24.6031730526886",
+ "lng": "124.682380829424",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.685903373,
+ 24.6210642498,
+ 60.0
+ ],
+ [
+ 124.695598673,
+ 24.5895382842,
+ 60.0
+ ],
+ [
+ 124.673259134,
+ 24.587000269200001,
+ 60.0
+ ],
+ [
+ 124.674123919,
+ 24.619725970099999,
+ 60.0
+ ],
+ [
+ 124.685903373,
+ 24.6210642498,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30304719,
+ "name": "TARAMA",
+ "country": "JP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "24.7044928806121",
+ "lng": "124.668449349624",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.677577257,
+ 24.720666035899999,
+ 60.0
+ ],
+ [
+ 124.676711064,
+ 24.6879403505,
+ 60.0
+ ],
+ [
+ 124.664925278,
+ 24.686602213699999,
+ 60.0
+ ],
+ [
+ 124.65522045,
+ 24.718127674400002,
+ 60.0
+ ],
+ [
+ 124.677577257,
+ 24.720666035899999,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30304719,
+ "name": "TARAMA",
+ "country": "JP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "24.5484336952165",
+ "lng": "124.689900483682",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.695598673,
+ 24.5895382842,
+ 150.0
+ ],
+ [
+ 124.718202072,
+ 24.515975287,
+ 150.0
+ ],
+ [
+ 124.671243059,
+ 24.510640281200001,
+ 150.0
+ ],
+ [
+ 124.673259134,
+ 24.587000269200001,
+ 150.0
+ ],
+ [
+ 124.695598673,
+ 24.5895382842,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30304719,
+ "name": "TARAMA",
+ "country": "JP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "24.7592310167514",
+ "lng": "124.660915809434",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.67960014499999,
+ 24.7970259493,
+ 150.0
+ ],
+ [
+ 124.677577257,
+ 24.720666035899999,
+ 150.0
+ ],
+ [
+ 124.65522045,
+ 24.718127674400002,
+ 150.0
+ ],
+ [
+ 124.632556711,
+ 24.791684651200001,
+ 150.0
+ ],
+ [
+ 124.67960014499999,
+ 24.7970259493,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010649,
+ "name": "Ishigaki Airport",
+ "country": "JP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "24.397406",
+ "lng": "124.246187",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.246187,
+ 24.848802718647342,
+ 500.0
+ ],
+ [
+ 124.332083517932801,
+ 24.841920783669689,
+ 500.0
+ ],
+ [
+ 124.415342532177803,
+ 24.821486287873377,
+ 500.0
+ ],
+ [
+ 124.493410087567526,
+ 24.788126463308501,
+ 500.0
+ ],
+ [
+ 124.563896353672092,
+ 24.742864617868513,
+ 500.0
+ ],
+ [
+ 124.624650405251231,
+ 24.687087841314654,
+ 500.0
+ ],
+ [
+ 124.673826667824656,
+ 24.622503399481079,
+ 500.0
+ ],
+ [
+ 124.709940884405626,
+ 24.551085326521296,
+ 500.0
+ ],
+ [
+ 124.731913932926602,
+ 24.475013029240287,
+ 500.0
+ ],
+ [
+ 124.739102339816895,
+ 24.396603941856402,
+ 500.0
+ ],
+ [
+ 124.731314858752157,
+ 24.318242410525286,
+ 500.0
+ ],
+ [
+ 124.708814984752081,
+ 24.242307046439379,
+ 500.0
+ ],
+ [
+ 124.672309729796666,
+ 24.171098770181391,
+ 500.0
+ ],
+ [
+ 124.622925382521103,
+ 24.106771686853385,
+ 500.0
+ ],
+ [
+ 124.562171304920369,
+ 24.05126879125195,
+ 500.0
+ ],
+ [
+ 124.491893083650524,
+ 24.006264315126561,
+ 500.0
+ ],
+ [
+ 124.414216557598024,
+ 23.973114303823902,
+ 500.0
+ ],
+ [
+ 124.331484394853732,
+ 23.952816755785673,
+ 500.0
+ ],
+ [
+ 124.246187,
+ 23.945982382612158,
+ 500.0
+ ],
+ [
+ 124.160889605146281,
+ 23.952816755785673,
+ 500.0
+ ],
+ [
+ 124.078157442401988,
+ 23.973114303823902,
+ 500.0
+ ],
+ [
+ 124.000480916349488,
+ 24.006264315126561,
+ 500.0
+ ],
+ [
+ 123.930202695079643,
+ 24.05126879125195,
+ 500.0
+ ],
+ [
+ 123.869448617478909,
+ 24.106771686853385,
+ 500.0
+ ],
+ [
+ 123.820064270203346,
+ 24.171098770181391,
+ 500.0
+ ],
+ [
+ 123.783559015247931,
+ 24.242307046439379,
+ 500.0
+ ],
+ [
+ 123.761059141247856,
+ 24.318242410525286,
+ 500.0
+ ],
+ [
+ 123.753271660183117,
+ 24.396603941856402,
+ 500.0
+ ],
+ [
+ 123.76046006707341,
+ 24.475013029240287,
+ 500.0
+ ],
+ [
+ 123.782433115594387,
+ 24.551085326521296,
+ 500.0
+ ],
+ [
+ 123.818547332175356,
+ 24.622503399481079,
+ 500.0
+ ],
+ [
+ 123.867723594748782,
+ 24.687087841314654,
+ 500.0
+ ],
+ [
+ 123.92847764632792,
+ 24.742864617868513,
+ 500.0
+ ],
+ [
+ 123.998963912432487,
+ 24.788126463308501,
+ 500.0
+ ],
+ [
+ 124.077031467822209,
+ 24.821486287873377,
+ 500.0
+ ],
+ [
+ 124.160290482067211,
+ 24.841920783669689,
+ 500.0
+ ],
+ [
+ 124.246187,
+ 24.848802718647342,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010198,
+ "name": "TARAMA",
+ "country": "JP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "24.65388889",
+ "lng": "124.67541667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.67541667,
+ 25.105270161716721,
+ 500.0
+ ],
+ [
+ 124.76149143384653,
+ 25.098388173665402,
+ 500.0
+ ],
+ [
+ 124.844922893370324,
+ 25.077953546446924,
+ 500.0
+ ],
+ [
+ 124.923151516495523,
+ 25.044593591421457,
+ 500.0
+ ],
+ [
+ 124.993782330516694,
+ 24.999331735583166,
+ 500.0
+ ],
+ [
+ 125.054659889016079,
+ 24.943555209771585,
+ 500.0
+ ],
+ [
+ 125.103934870076799,
+ 24.878971421309146,
+ 500.0
+ ],
+ [
+ 125.140120155446937,
+ 24.80755452374791,
+ 500.0
+ ],
+ [
+ 125.162134717163028,
+ 24.731484000706544,
+ 500.0
+ ],
+ [
+ 125.169334157421531,
+ 24.653077304816399,
+ 500.0
+ ],
+ [
+ 125.161527274013153,
+ 24.574718733189187,
+ 500.0
+ ],
+ [
+ 125.138978527086138,
+ 24.498786779456921,
+ 500.0
+ ],
+ [
+ 125.102396740450587,
+ 24.427582185321569,
+ 500.0
+ ],
+ [
+ 125.052910767575909,
+ 24.363258830402909,
+ 500.0
+ ],
+ [
+ 124.992033182508251,
+ 24.307759458035036,
+ 500.0
+ ],
+ [
+ 124.921613319596062,
+ 24.26275804674497,
+ 500.0
+ ],
+ [
+ 124.843781188509183,
+ 24.229610412005176,
+ 500.0
+ ],
+ [
+ 124.760883940764614,
+ 24.20931436892208,
+ 500.0
+ ],
+ [
+ 124.67541667,
+ 24.202480510989048,
+ 500.0
+ ],
+ [
+ 124.589949399235394,
+ 24.20931436892208,
+ 500.0
+ ],
+ [
+ 124.507052151490825,
+ 24.229610412005176,
+ 500.0
+ ],
+ [
+ 124.429220020403946,
+ 24.26275804674497,
+ 500.0
+ ],
+ [
+ 124.358800157491757,
+ 24.307759458035036,
+ 500.0
+ ],
+ [
+ 124.297922572424099,
+ 24.363258830402909,
+ 500.0
+ ],
+ [
+ 124.248436599549422,
+ 24.427582185321569,
+ 500.0
+ ],
+ [
+ 124.21185481291387,
+ 24.498786779456921,
+ 500.0
+ ],
+ [
+ 124.189306065986855,
+ 24.574718733189187,
+ 500.0
+ ],
+ [
+ 124.181499182578477,
+ 24.653077304816399,
+ 500.0
+ ],
+ [
+ 124.188698622836981,
+ 24.731484000706544,
+ 500.0
+ ],
+ [
+ 124.210713184553072,
+ 24.80755452374791,
+ 500.0
+ ],
+ [
+ 124.24689846992321,
+ 24.878971421309146,
+ 500.0
+ ],
+ [
+ 124.296173450983929,
+ 24.943555209771585,
+ 500.0
+ ],
+ [
+ 124.357051009483314,
+ 24.999331735583166,
+ 500.0
+ ],
+ [
+ 124.427681823504486,
+ 25.044593591421457,
+ 500.0
+ ],
+ [
+ 124.505910446629684,
+ 25.077953546446924,
+ 500.0
+ ],
+ [
+ 124.589341906153479,
+ 25.098388173665402,
+ 500.0
+ ],
+ [
+ 124.67541667,
+ 25.105270161716721,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282518,
+ "name": "Ishigaki Airport",
+ "country": "JP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "24.3962371678223",
+ "lng": "124.244961192745",
+ "radius": 4966,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.207373586,
+ 24.410300979900001,
+ 0.0
+ ],
+ [
+ 124.21863341,
+ 24.4244254579,
+ 0.0
+ ],
+ [
+ 124.230835473,
+ 24.434441874200001,
+ 0.0
+ ],
+ [
+ 124.246458684,
+ 24.4390722051,
+ 0.0
+ ],
+ [
+ 124.254719186,
+ 24.439075757099999,
+ 0.0
+ ],
+ [
+ 124.270347195,
+ 24.434458864100002,
+ 0.0
+ ],
+ [
+ 124.282559647,
+ 24.424452946,
+ 0.0
+ ],
+ [
+ 124.289244663,
+ 24.410789131,
+ 0.0
+ ],
+ [
+ 124.290109465,
+ 24.403310102300001,
+ 0.0
+ ],
+ [
+ 124.28924784199999,
+ 24.3958307742,
+ 0.0
+ ],
+ [
+ 124.282565519,
+ 24.382157598599999,
+ 0.0
+ ],
+ [
+ 124.265758235,
+ 24.362427659400002,
+ 0.0
+ ],
+ [
+ 124.25153634,
+ 24.354951188,
+ 0.0
+ ],
+ [
+ 124.235206655,
+ 24.353389085700002,
+ 0.0
+ ],
+ [
+ 124.219590548,
+ 24.358011243100002,
+ 0.0
+ ],
+ [
+ 124.212911363,
+ 24.362431022599999,
+ 0.0
+ ],
+ [
+ 124.203257091,
+ 24.374531222400002,
+ 0.0
+ ],
+ [
+ 124.20070412299999,
+ 24.381683061699999,
+ 0.0
+ ],
+ [
+ 124.199839294,
+ 24.3891620737,
+ 0.0
+ ],
+ [
+ 124.200700697,
+ 24.396641418400002,
+ 0.0
+ ],
+ [
+ 124.207373586,
+ 24.410300979900001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282517,
+ "name": "Ishigaki Airport",
+ "country": "JP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "24.3962285171815",
+ "lng": "124.244976463282",
+ "radius": 4016,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.217138657,
+ 24.3705050226,
+ 0.0
+ ],
+ [
+ 124.263223263,
+ 24.4282985862,
+ 0.0
+ ],
+ [
+ 124.272813935,
+ 24.421957399699998,
+ 0.0
+ ],
+ [
+ 124.226724377,
+ 24.364163126699999,
+ 0.0
+ ],
+ [
+ 124.217138657,
+ 24.3705050226,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282517,
+ "name": "Ishigaki Airport",
+ "country": "JP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "24.4391710172861",
+ "lng": "124.279220284762",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.263223263,
+ 24.4282985862,
+ 60.0
+ ],
+ [
+ 124.279820971,
+ 24.4573377597,
+ 60.0
+ ],
+ [
+ 124.298011448,
+ 24.445309212400002,
+ 60.0
+ ],
+ [
+ 124.272813935,
+ 24.421957399699998,
+ 60.0
+ ],
+ [
+ 124.263223263,
+ 24.4282985862,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282517,
+ "name": "Ishigaki Airport",
+ "country": "JP",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "24.3532907597044",
+ "lng": "124.210736075246",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.191958632,
+ 24.347150908300002,
+ 60.0
+ ],
+ [
+ 124.217138657,
+ 24.3705050226,
+ 60.0
+ ],
+ [
+ 124.226724377,
+ 24.364163126699999,
+ 60.0
+ ],
+ [
+ 124.210140128,
+ 24.3351233737,
+ 60.0
+ ],
+ [
+ 124.191958632,
+ 24.347150908300002,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282517,
+ "name": "Ishigaki Airport",
+ "country": "JP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "24.4838008487138",
+ "lng": "124.314840884657",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.279820971,
+ 24.4573377597,
+ 150.0
+ ],
+ [
+ 124.318578745,
+ 24.5250887756,
+ 150.0
+ ],
+ [
+ 124.35684198,
+ 24.4997805241,
+ 150.0
+ ],
+ [
+ 124.298011448,
+ 24.445309212400002,
+ 150.0
+ ],
+ [
+ 124.279820971,
+ 24.4573377597,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282517,
+ "name": "Ishigaki Airport",
+ "country": "JP",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "24.3086495490604",
+ "lng": "124.175168388973",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.133241338,
+ 24.292641827499999,
+ 150.0
+ ],
+ [
+ 124.191958632,
+ 24.347150908300002,
+ 150.0
+ ],
+ [
+ 124.210140128,
+ 24.3351233737,
+ 150.0
+ ],
+ [
+ 124.171473086,
+ 24.2673569498,
+ 150.0
+ ],
+ [
+ 124.133241338,
+ 24.292641827499999,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32765,
+ "name": "临沧机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "23.7779646196892",
+ "lng": "99.9998028521888",
+ "radius": 13027,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.01235986899999,
+ 23.812752246900001,
+ 0.0
+ ],
+ [
+ 99.985709409600005,
+ 23.894412458400001,
+ 0.0
+ ],
+ [
+ 99.918655720100006,
+ 23.8686053586,
+ 0.0
+ ],
+ [
+ 99.96864632899999,
+ 23.7968927517,
+ 0.0
+ ],
+ [
+ 99.950835654200006,
+ 23.771489183100002,
+ 0.0
+ ],
+ [
+ 99.9472359703,
+ 23.7552211822,
+ 0.0
+ ],
+ [
+ 99.948359466699998,
+ 23.738654831,
+ 0.0
+ ],
+ [
+ 99.967447931699994,
+ 23.6996107756,
+ 0.0
+ ],
+ [
+ 99.985107335699993,
+ 23.6796680966,
+ 0.0
+ ],
+ [
+ 100.000507141,
+ 23.670916675499999,
+ 0.0
+ ],
+ [
+ 100.035966905,
+ 23.665580855399998,
+ 0.0
+ ],
+ [
+ 100.01235986899999,
+ 23.812752246900001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32765,
+ "name": "临沧机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "23.6990264145367",
+ "lng": "100.042826002512",
+ "radius": 13020,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.066040662,
+ 23.58387926,
+ 0.0
+ ],
+ [
+ 100.129686242,
+ 23.613113050300001,
+ 0.0
+ ],
+ [
+ 100.078026148,
+ 23.6848122309,
+ 0.0
+ ],
+ [
+ 100.094377827,
+ 23.706700120699999,
+ 0.0
+ ],
+ [
+ 100.099021816,
+ 23.722744538299999,
+ 0.0
+ ],
+ [
+ 100.094230798,
+ 23.755363510700001,
+ 0.0
+ ],
+ [
+ 100.080885536,
+ 23.778723321299999,
+ 0.0
+ ],
+ [
+ 100.063262241,
+ 23.798637288599998,
+ 0.0
+ ],
+ [
+ 100.030493062,
+ 23.812215117200001,
+ 0.0
+ ],
+ [
+ 100.01235986899999,
+ 23.812752246900001,
+ 0.0
+ ],
+ [
+ 100.035966905,
+ 23.665580855399998,
+ 0.0
+ ],
+ [
+ 100.066040662,
+ 23.58387926,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32765,
+ "name": "临沧机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "23.7391236302736",
+ "lng": "100.024034437568",
+ "radius": 23679,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.208735831,
+ 23.609761010100001,
+ 120.0
+ ],
+ [
+ 100.034849969,
+ 23.526401595700001,
+ 120.0
+ ],
+ [
+ 99.839158355099997,
+ 23.868496788200002,
+ 120.0
+ ],
+ [
+ 100.01350141099999,
+ 23.9518562021,
+ 120.0
+ ],
+ [
+ 100.208735831,
+ 23.609761010100001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001426,
+ "name": "临沧机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "23.739166666667",
+ "lng": "100.024444444444",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.024444444444001,
+ 24.190602482982378,
+ 500.0
+ ],
+ [
+ 100.109894657526922,
+ 24.183720687132176,
+ 500.0
+ ],
+ [
+ 100.192721899209047,
+ 24.16328653780397,
+ 500.0
+ ],
+ [
+ 100.270386185207656,
+ 24.129927064710731,
+ 500.0
+ ],
+ [
+ 100.340510565420118,
+ 24.084665271834034,
+ 500.0
+ ],
+ [
+ 100.400955436696776,
+ 24.028887888816818,
+ 500.0
+ ],
+ [
+ 100.449884605798445,
+ 23.964301820109217,
+ 500.0
+ ],
+ [
+ 100.48582097464147,
+ 23.892880794545544,
+ 500.0
+ ],
+ [
+ 100.507690184931292,
+ 23.816804021920163,
+ 500.0
+ ],
+ [
+ 100.514851066775464,
+ 23.738388888092338,
+ 500.0
+ ],
+ [
+ 100.507112251952577,
+ 23.660019862649303,
+ 500.0
+ ],
+ [
+ 100.484734807880685,
+ 23.584075854780171,
+ 500.0
+ ],
+ [
+ 100.448421200663418,
+ 23.512858239369805,
+ 500.0
+ ],
+ [
+ 100.399291290597759,
+ 23.448521694691959,
+ 500.0
+ ],
+ [
+ 100.338846394652464,
+ 23.393009855092821,
+ 500.0
+ ],
+ [
+ 100.268922717609485,
+ 23.347997596567488,
+ 500.0
+ ],
+ [
+ 100.191635661417806,
+ 23.31484154944118,
+ 500.0
+ ],
+ [
+ 100.109316678186374,
+ 23.29454017877551,
+ 500.0
+ ],
+ [
+ 100.024444444444001,
+ 23.287704496802117,
+ 500.0
+ ],
+ [
+ 99.939572210701627,
+ 23.29454017877551,
+ 500.0
+ ],
+ [
+ 99.857253227470196,
+ 23.31484154944118,
+ 500.0
+ ],
+ [
+ 99.779966171278517,
+ 23.347997596567488,
+ 500.0
+ ],
+ [
+ 99.710042494235537,
+ 23.393009855092821,
+ 500.0
+ ],
+ [
+ 99.649597598290242,
+ 23.448521694691959,
+ 500.0
+ ],
+ [
+ 99.600467688224583,
+ 23.512858239369805,
+ 500.0
+ ],
+ [
+ 99.564154081007317,
+ 23.584075854780171,
+ 500.0
+ ],
+ [
+ 99.541776636935424,
+ 23.660019862649303,
+ 500.0
+ ],
+ [
+ 99.534037822112538,
+ 23.738388888092338,
+ 500.0
+ ],
+ [
+ 99.541198703956709,
+ 23.816804021920163,
+ 500.0
+ ],
+ [
+ 99.563067914246531,
+ 23.892880794545544,
+ 500.0
+ ],
+ [
+ 99.599004283089556,
+ 23.964301820109217,
+ 500.0
+ ],
+ [
+ 99.647933452191225,
+ 24.028887888816818,
+ 500.0
+ ],
+ [
+ 99.708378323467883,
+ 24.084665271834034,
+ 500.0
+ ],
+ [
+ 99.778502703680346,
+ 24.129927064710731,
+ 500.0
+ ],
+ [
+ 99.856166989678954,
+ 24.16328653780397,
+ 500.0
+ ],
+ [
+ 99.938994231361079,
+ 24.183720687132176,
+ 500.0
+ ],
+ [
+ 100.024444444444001,
+ 24.190602482982378,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32775,
+ "name": "普者黑",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "23.59955593765",
+ "lng": "104.340885813836",
+ "radius": 13496,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.374183823,
+ 23.622048488499999,
+ 0.0
+ ],
+ [
+ 104.41802526,
+ 23.698248381799999,
+ 0.0
+ ],
+ [
+ 104.346662966,
+ 23.7208210175,
+ 0.0
+ ],
+ [
+ 104.329805929,
+ 23.636096948399999,
+ 0.0
+ ],
+ [
+ 104.31103788599999,
+ 23.6348960716,
+ 0.0
+ ],
+ [
+ 104.27897131899999,
+ 23.620059019,
+ 0.0
+ ],
+ [
+ 104.259306786,
+ 23.592517277399999,
+ 0.0
+ ],
+ [
+ 104.24607665,
+ 23.5509332727,
+ 0.0
+ ],
+ [
+ 104.247098924,
+ 23.534361512699999,
+ 0.0
+ ],
+ [
+ 104.252763779,
+ 23.518596860900001,
+ 0.0
+ ],
+ [
+ 104.27618218,
+ 23.493655889,
+ 0.0
+ ],
+ [
+ 104.374183823,
+ 23.622048488499999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32775,
+ "name": "普者黑",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "23.5161529113751",
+ "lng": "104.309469540075",
+ "radius": 13496,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.232440575,
+ 23.417463096199999,
+ 0.0
+ ],
+ [
+ 104.30366300599999,
+ 23.394893469599999,
+ 0.0
+ ],
+ [
+ 104.320483905,
+ 23.4796277825,
+ 0.0
+ ],
+ [
+ 104.339174286,
+ 23.480814974099999,
+ 0.0
+ ],
+ [
+ 104.371228744,
+ 23.4956122659,
+ 0.0
+ ],
+ [
+ 104.390930227,
+ 23.523123084600002,
+ 0.0
+ ],
+ [
+ 104.404225229,
+ 23.564735646799999,
+ 0.0
+ ],
+ [
+ 104.40322964,
+ 23.581308783899999,
+ 0.0
+ ],
+ [
+ 104.397586902,
+ 23.597080911599999,
+ 0.0
+ ],
+ [
+ 104.374183823,
+ 23.622048488499999,
+ 0.0
+ ],
+ [
+ 104.27618218,
+ 23.493655889,
+ 0.0
+ ],
+ [
+ 104.232440575,
+ 23.417463096199999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32775,
+ "name": "普者黑",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "23.5578354523479",
+ "lng": "104.325234918448",
+ "radius": 23672,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.349109776,
+ 23.346071614700001,
+ 120.0
+ ],
+ [
+ 104.163895176,
+ 23.404780486700002,
+ 120.0
+ ],
+ [
+ 104.301062716,
+ 23.7695731367,
+ 120.0
+ ],
+ [
+ 104.486792193,
+ 23.710864265200001,
+ 120.0
+ ],
+ [
+ 104.349109776,
+ 23.346071614700001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001510,
+ "name": "普者黑",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "23.558333333333",
+ "lng": "104.325555555556",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.325555555555994,
+ 24.009779751204412,
+ 500.0
+ ],
+ [
+ 104.410885931599054,
+ 24.002897994372265,
+ 500.0
+ ],
+ [
+ 104.493597240452232,
+ 23.982463942719761,
+ 500.0
+ ],
+ [
+ 104.571153250982476,
+ 23.949104570663149,
+ 500.0
+ ],
+ [
+ 104.641180472811698,
+ 23.903842799112091,
+ 500.0
+ ],
+ [
+ 104.701542343305732,
+ 23.84806525924083,
+ 500.0
+ ],
+ [
+ 104.750405187688571,
+ 23.783478756626813,
+ 500.0
+ ],
+ [
+ 104.786293828712019,
+ 23.712056936476579,
+ 500.0
+ ],
+ [
+ 104.808135185016553,
+ 23.635978954467234,
+ 500.0
+ ],
+ [
+ 104.815288702529344,
+ 23.557562182874534,
+ 500.0
+ ],
+ [
+ 104.807562977310653,
+ 23.479191124568153,
+ 500.0
+ ],
+ [
+ 104.785218422061789,
+ 23.40324476966228,
+ 500.0
+ ],
+ [
+ 104.748956279853459,
+ 23.332024616645469,
+ 500.0
+ ],
+ [
+ 104.699894683265725,
+ 23.267685499873462,
+ 500.0
+ ],
+ [
+ 104.639532788462617,
+ 23.212171227938963,
+ 500.0
+ ],
+ [
+ 104.569704281594611,
+ 23.167156852421062,
+ 500.0
+ ],
+ [
+ 104.492521763806792,
+ 23.133999163111636,
+ 500.0
+ ],
+ [
+ 104.410313678207032,
+ 23.113696752293112,
+ 500.0
+ ],
+ [
+ 104.325555555555994,
+ 23.10686071416988,
+ 500.0
+ ],
+ [
+ 104.240797432904955,
+ 23.113696752293112,
+ 500.0
+ ],
+ [
+ 104.158589347305195,
+ 23.133999163111636,
+ 500.0
+ ],
+ [
+ 104.081406829517377,
+ 23.167156852421062,
+ 500.0
+ ],
+ [
+ 104.01157832264937,
+ 23.212171227938963,
+ 500.0
+ ],
+ [
+ 103.951216427846262,
+ 23.267685499873462,
+ 500.0
+ ],
+ [
+ 103.902154831258528,
+ 23.332024616645469,
+ 500.0
+ ],
+ [
+ 103.865892689050199,
+ 23.40324476966228,
+ 500.0
+ ],
+ [
+ 103.843548133801335,
+ 23.479191124568153,
+ 500.0
+ ],
+ [
+ 103.835822408582644,
+ 23.557562182874534,
+ 500.0
+ ],
+ [
+ 103.842975926095434,
+ 23.635978954467234,
+ 500.0
+ ],
+ [
+ 103.864817282399969,
+ 23.712056936476579,
+ 500.0
+ ],
+ [
+ 103.900705923423416,
+ 23.783478756626813,
+ 500.0
+ ],
+ [
+ 103.949568767806255,
+ 23.84806525924083,
+ 500.0
+ ],
+ [
+ 104.00993063830029,
+ 23.903842799112091,
+ 500.0
+ ],
+ [
+ 104.079957860129511,
+ 23.949104570663149,
+ 500.0
+ ],
+ [
+ 104.157513870659756,
+ 23.982463942719761,
+ 500.0
+ ],
+ [
+ 104.240225179512933,
+ 24.002897994372265,
+ 500.0
+ ],
+ [
+ 104.325555555555994,
+ 24.009779751204412,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 887,
+ "name": "Baise Youjiang Airport",
+ "country": "CN",
+ "city": "Baise",
+ "height": 0,
+ "level": 2,
+ "lat": "23.7468834444214",
+ "lng": "106.920543149405",
+ "radius": 13244,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.908317564,
+ 23.779582575,
+ 0.0
+ ],
+ [
+ 106.836610024,
+ 23.837924650400002,
+ 0.0
+ ],
+ [
+ 106.79538747399999,
+ 23.779536402200002,
+ 0.0
+ ],
+ [
+ 106.88203590099999,
+ 23.744581898300002,
+ 0.0
+ ],
+ [
+ 106.87984786299999,
+ 23.715645203699999,
+ 0.0
+ ],
+ [
+ 106.88506466699999,
+ 23.699749100399998,
+ 0.0
+ ],
+ [
+ 106.89459523799999,
+ 23.685630453200002,
+ 0.0
+ ],
+ [
+ 106.93112444499999,
+ 23.6592502514,
+ 0.0
+ ],
+ [
+ 106.958222653,
+ 23.649432785399998,
+ 0.0
+ ],
+ [
+ 106.97633189299999,
+ 23.648861579399998,
+ 0.0
+ ],
+ [
+ 107.009984014,
+ 23.660397165,
+ 0.0
+ ],
+ [
+ 106.908317564,
+ 23.779582575,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 887,
+ "name": "Baise Youjiang Airport",
+ "country": "CN",
+ "city": "Baise",
+ "height": 0,
+ "level": 2,
+ "lat": "23.6908537692063",
+ "lng": "106.995093363936",
+ "radius": 13242,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.081751284,
+ 23.602076672900001,
+ 0.0
+ ],
+ [
+ 107.119603233,
+ 23.660481955200002,
+ 0.0
+ ],
+ [
+ 107.036289423,
+ 23.695437160600001,
+ 0.0
+ ],
+ [
+ 107.039265572,
+ 23.728113671799999,
+ 0.0
+ ],
+ [
+ 107.033759925,
+ 23.743928245,
+ 0.0
+ ],
+ [
+ 107.023968596,
+ 23.7578990415,
+ 0.0
+ ],
+ [
+ 107.01055811499999,
+ 23.769073245600001,
+ 0.0
+ ],
+ [
+ 106.960392492,
+ 23.7894526119,
+ 0.0
+ ],
+ [
+ 106.942283113,
+ 23.790409467100002,
+ 0.0
+ ],
+ [
+ 106.908317564,
+ 23.779582575,
+ 0.0
+ ],
+ [
+ 107.009984014,
+ 23.660397165,
+ 0.0
+ ],
+ [
+ 107.081751284,
+ 23.602076672900001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 887,
+ "name": "Baise Youjiang Airport",
+ "country": "CN",
+ "city": "Baise",
+ "height": 120,
+ "level": 2,
+ "lat": "23.7202257436037",
+ "lng": "106.959024244332",
+ "radius": 23599,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 107.18985732,
+ 23.700834069500001,
+ 120.0
+ ],
+ [
+ 107.090693909,
+ 23.545602586899999,
+ 120.0
+ ],
+ [
+ 106.728175972,
+ 23.739809058199999,
+ 120.0
+ ],
+ [
+ 106.827487182,
+ 23.8950405406,
+ 120.0
+ ],
+ [
+ 107.18985732,
+ 23.700834069500001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001506,
+ "name": "Baise Youjiang Airport",
+ "country": "CN",
+ "city": "Baise",
+ "height": 500,
+ "level": 2,
+ "lat": "23.719837",
+ "lng": "106.959768",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.959768,
+ 24.171273952433474,
+ 500.0
+ ],
+ [
+ 107.045205346837037,
+ 24.164392160736845,
+ 500.0
+ ],
+ [
+ 107.128020141401322,
+ 24.143958021795868,
+ 500.0
+ ],
+ [
+ 107.205672802326262,
+ 24.110598559406931,
+ 500.0
+ ],
+ [
+ 107.275786750934728,
+ 24.065336768663528,
+ 500.0
+ ],
+ [
+ 107.336222710511521,
+ 24.009559368673834,
+ 500.0
+ ],
+ [
+ 107.385144758221358,
+ 23.94497325331125,
+ 500.0
+ ],
+ [
+ 107.421076002239815,
+ 23.873552142466139,
+ 500.0
+ ],
+ [
+ 107.442942221416132,
+ 23.797475240148341,
+ 500.0
+ ],
+ [
+ 107.45010231203311,
+ 23.71905993077155,
+ 500.0
+ ],
+ [
+ 107.442364902097722,
+ 23.640690687493684,
+ 500.0
+ ],
+ [
+ 107.419990988795774,
+ 23.564746428173581,
+ 500.0
+ ],
+ [
+ 107.383682906971842,
+ 23.493528540933099,
+ 500.0
+ ],
+ [
+ 107.334560331462228,
+ 23.42919172075829,
+ 500.0
+ ],
+ [
+ 107.274124347255508,
+ 23.373679620650673,
+ 500.0
+ ],
+ [
+ 107.204210888711529,
+ 23.328667135402636,
+ 500.0
+ ],
+ [
+ 107.126935057038182,
+ 23.295510912410503,
+ 500.0
+ ],
+ [
+ 107.044627981229482,
+ 23.275209430354607,
+ 500.0
+ ],
+ [
+ 106.959768,
+ 23.268373710241473,
+ 500.0
+ ],
+ [
+ 106.874908018770512,
+ 23.275209430354607,
+ 500.0
+ ],
+ [
+ 106.792600942961812,
+ 23.295510912410503,
+ 500.0
+ ],
+ [
+ 106.715325111288465,
+ 23.328667135402636,
+ 500.0
+ ],
+ [
+ 106.645411652744485,
+ 23.373679620650673,
+ 500.0
+ ],
+ [
+ 106.584975668537766,
+ 23.42919172075829,
+ 500.0
+ ],
+ [
+ 106.535853093028152,
+ 23.493528540933099,
+ 500.0
+ ],
+ [
+ 106.499545011204219,
+ 23.564746428173581,
+ 500.0
+ ],
+ [
+ 106.477171097902271,
+ 23.640690687493684,
+ 500.0
+ ],
+ [
+ 106.469433687966884,
+ 23.71905993077155,
+ 500.0
+ ],
+ [
+ 106.476593778583862,
+ 23.797475240148341,
+ 500.0
+ ],
+ [
+ 106.498459997760179,
+ 23.873552142466139,
+ 500.0
+ ],
+ [
+ 106.534391241778636,
+ 23.94497325331125,
+ 500.0
+ ],
+ [
+ 106.583313289488473,
+ 24.009559368673834,
+ 500.0
+ ],
+ [
+ 106.643749249065266,
+ 24.065336768663528,
+ 500.0
+ ],
+ [
+ 106.713863197673732,
+ 24.110598559406931,
+ 500.0
+ ],
+ [
+ 106.791515858598672,
+ 24.143958021795868,
+ 500.0
+ ],
+ [
+ 106.874330653162957,
+ 24.164392160736845,
+ 500.0
+ ],
+ [
+ 106.959768,
+ 24.171273952433474,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32762,
+ "name": "潮汕",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "23.5847832937799",
+ "lng": "116.535757188374",
+ "radius": 13182,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.64137309,
+ 23.6532758341,
+ 0.0
+ ],
+ [
+ 116.5846521,
+ 23.694551413100001,
+ 0.0
+ ],
+ [
+ 116.536296737,
+ 23.621212571400001,
+ 0.0
+ ],
+ [
+ 116.504366137,
+ 23.625197329300001,
+ 0.0
+ ],
+ [
+ 116.486726877,
+ 23.6214130414,
+ 0.0
+ ],
+ [
+ 116.470759404,
+ 23.613573186099998,
+ 0.0
+ ],
+ [
+ 116.439259624,
+ 23.585590235,
+ 0.0
+ ],
+ [
+ 116.4249849,
+ 23.557836331600001,
+ 0.0
+ ],
+ [
+ 116.42379305,
+ 23.5412740915,
+ 0.0
+ ],
+ [
+ 116.435315861,
+ 23.5101034168,
+ 0.0
+ ],
+ [
+ 116.571384429,
+ 23.593209351799999,
+ 0.0
+ ],
+ [
+ 116.64137309,
+ 23.6532758341,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32762,
+ "name": "潮汕",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "23.5144758312909",
+ "lng": "116.475456410019",
+ "radius": 13124,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.435315861,
+ 23.5101034168,
+ 0.0
+ ],
+ [
+ 116.365300131,
+ 23.453449949,
+ 0.0
+ ],
+ [
+ 116.421999873,
+ 23.407111980100002,
+ 0.0
+ ],
+ [
+ 116.468678602,
+ 23.483781423899998,
+ 0.0
+ ],
+ [
+ 116.49938154,
+ 23.478670364199999,
+ 0.0
+ ],
+ [
+ 116.517191642,
+ 23.481612546099999,
+ 0.0
+ ],
+ [
+ 116.547390362,
+ 23.499393458299998,
+ 0.0
+ ],
+ [
+ 116.56743068599999,
+ 23.521102728599999,
+ 0.0
+ ],
+ [
+ 116.579885512,
+ 23.545173637200001,
+ 0.0
+ ],
+ [
+ 116.581711642,
+ 23.5616872467,
+ 0.0
+ ],
+ [
+ 116.571384429,
+ 23.593209351799999,
+ 0.0
+ ],
+ [
+ 116.435315861,
+ 23.5101034168,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32762,
+ "name": "潮汕",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "23.5519723197233",
+ "lng": "116.503077254528",
+ "radius": 23662,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.572825388,
+ 23.754957389099999,
+ 120.0
+ ],
+ [
+ 116.71761143499999,
+ 23.633411327600001,
+ 120.0
+ ],
+ [
+ 116.433106132,
+ 23.349082956699998,
+ 120.0
+ ],
+ [
+ 116.288632936,
+ 23.470629018699999,
+ 120.0
+ ],
+ [
+ 116.572825388,
+ 23.754957389099999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001321,
+ "name": "潮汕",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "23.551944444444",
+ "lng": "116.503333333333",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.503333333333003,
+ 24.003391235759587,
+ 500.0
+ ],
+ [
+ 116.588659497148768,
+ 23.996509480312604,
+ 500.0
+ ],
+ [
+ 116.671366731023753,
+ 23.976075432131729,
+ 500.0
+ ],
+ [
+ 116.748918935761637,
+ 23.942716063681779,
+ 500.0
+ ],
+ [
+ 116.818942742602431,
+ 23.897454292940633,
+ 500.0
+ ],
+ [
+ 116.879301695788428,
+ 23.841676747607103,
+ 500.0
+ ],
+ [
+ 116.928162209062677,
+ 23.777090229768504,
+ 500.0
+ ],
+ [
+ 116.964049172682238,
+ 23.705668381678556,
+ 500.0
+ ],
+ [
+ 116.98588955015363,
+ 23.629590357102298,
+ 500.0
+ ],
+ [
+ 116.993042809027543,
+ 23.551173527833118,
+ 500.0
+ ],
+ [
+ 116.985317544084495,
+ 23.472802397911529,
+ 500.0
+ ],
+ [
+ 116.962974144989317,
+ 23.396855960303363,
+ 500.0
+ ],
+ [
+ 116.926713811803836,
+ 23.325635717854652,
+ 500.0
+ ],
+ [
+ 116.877654616366215,
+ 23.261296510424685,
+ 500.0
+ ],
+ [
+ 116.817295638883763,
+ 23.205782152750995,
+ 500.0
+ ],
+ [
+ 116.747470476982002,
+ 23.160767702605053,
+ 500.0
+ ],
+ [
+ 116.670291633371932,
+ 23.127609955403077,
+ 500.0
+ ],
+ [
+ 116.58808744541723,
+ 23.10730750791463,
+ 500.0
+ ],
+ [
+ 116.503333333333003,
+ 23.100471457235397,
+ 500.0
+ ],
+ [
+ 116.418579221248777,
+ 23.10730750791463,
+ 500.0
+ ],
+ [
+ 116.336375033294075,
+ 23.127609955403077,
+ 500.0
+ ],
+ [
+ 116.259196189684005,
+ 23.160767702605053,
+ 500.0
+ ],
+ [
+ 116.189371027782244,
+ 23.205782152750995,
+ 500.0
+ ],
+ [
+ 116.129012050299792,
+ 23.261296510424685,
+ 500.0
+ ],
+ [
+ 116.079952854862171,
+ 23.325635717854652,
+ 500.0
+ ],
+ [
+ 116.043692521676689,
+ 23.396855960303363,
+ 500.0
+ ],
+ [
+ 116.021349122581512,
+ 23.472802397911529,
+ 500.0
+ ],
+ [
+ 116.013623857638464,
+ 23.551173527833118,
+ 500.0
+ ],
+ [
+ 116.020777116512377,
+ 23.629590357102298,
+ 500.0
+ ],
+ [
+ 116.042617493983769,
+ 23.705668381678556,
+ 500.0
+ ],
+ [
+ 116.07850445760333,
+ 23.777090229768504,
+ 500.0
+ ],
+ [
+ 116.127364970877579,
+ 23.841676747607103,
+ 500.0
+ ],
+ [
+ 116.187723924063576,
+ 23.897454292940633,
+ 500.0
+ ],
+ [
+ 116.25774773090437,
+ 23.942716063681779,
+ 500.0
+ ],
+ [
+ 116.335299935642254,
+ 23.976075432131729,
+ 500.0
+ ],
+ [
+ 116.418007169517239,
+ 23.996509480312604,
+ 500.0
+ ],
+ [
+ 116.503333333333003,
+ 24.003391235759587,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000302,
+ "name": "溪頭米堤直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "23.682472",
+ "lng": "120.796",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.796,
+ 23.691501041995547,
+ 0.0
+ ],
+ [
+ 120.797702550459334,
+ 23.691363861280347,
+ 0.0
+ ],
+ [
+ 120.799353359382991,
+ 23.690956488131715,
+ 0.0
+ ],
+ [
+ 120.800902258630899,
+ 23.690291302767463,
+ 0.0
+ ],
+ [
+ 120.802302178895715,
+ 23.689388520171047,
+ 0.0
+ ],
+ [
+ 120.803510580698813,
+ 23.688275575427479,
+ 0.0
+ ],
+ [
+ 120.804490747365961,
+ 23.686986289580037,
+ 0.0
+ ],
+ [
+ 120.80521290064415,
+ 23.685559841418172,
+ 0.0
+ ],
+ [
+ 120.805655105061987,
+ 23.684039576508074,
+ 0.0
+ ],
+ [
+ 120.805803933608303,
+ 23.68247168971806,
+ 0.0
+ ],
+ [
+ 120.80565487460143,
+ 23.680903821323046,
+ 0.0
+ ],
+ [
+ 120.805212467519979,
+ 23.679383609379219,
+ 0.0
+ ],
+ [
+ 120.804490163819338,
+ 23.677957242366407,
+ 0.0
+ ],
+ [
+ 120.80350991711407,
+ 23.676668056063004,
+ 0.0
+ ],
+ [
+ 120.802301515310972,
+ 23.675555217251993,
+ 0.0
+ ],
+ [
+ 120.800901675084262,
+ 23.67465253419962,
+ 0.0
+ ],
+ [
+ 120.799352926258805,
+ 23.673987429984422,
+ 0.0
+ ],
+ [
+ 120.797702319998763,
+ 23.673580109802071,
+ 0.0
+ ],
+ [
+ 120.796,
+ 23.673442947481863,
+ 0.0
+ ],
+ [
+ 120.79429768000125,
+ 23.673580109802071,
+ 0.0
+ ],
+ [
+ 120.792647073741207,
+ 23.673987429984422,
+ 0.0
+ ],
+ [
+ 120.791098324915751,
+ 23.67465253419962,
+ 0.0
+ ],
+ [
+ 120.78969848468904,
+ 23.675555217251993,
+ 0.0
+ ],
+ [
+ 120.788490082885943,
+ 23.676668056063004,
+ 0.0
+ ],
+ [
+ 120.787509836180675,
+ 23.677957242366407,
+ 0.0
+ ],
+ [
+ 120.786787532480034,
+ 23.679383609379219,
+ 0.0
+ ],
+ [
+ 120.786345125398583,
+ 23.680903821323046,
+ 0.0
+ ],
+ [
+ 120.78619606639171,
+ 23.68247168971806,
+ 0.0
+ ],
+ [
+ 120.786344894938026,
+ 23.684039576508074,
+ 0.0
+ ],
+ [
+ 120.786787099355863,
+ 23.685559841418172,
+ 0.0
+ ],
+ [
+ 120.787509252634052,
+ 23.686986289580037,
+ 0.0
+ ],
+ [
+ 120.7884894193012,
+ 23.688275575427479,
+ 0.0
+ ],
+ [
+ 120.789697821104298,
+ 23.689388520171047,
+ 0.0
+ ],
+ [
+ 120.791097741369114,
+ 23.690291302767463,
+ 0.0
+ ],
+ [
+ 120.792646640617022,
+ 23.690956488131715,
+ 0.0
+ ],
+ [
+ 120.794297449540679,
+ 23.691363861280347,
+ 0.0
+ ],
+ [
+ 120.796,
+ 23.691501041995547,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000298,
+ "name": "內政部消防署訓練中心直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "23.823361",
+ "lng": "120.725583",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.725583,
+ 23.83238987740711,
+ 0.0
+ ],
+ [
+ 120.72728738424675,
+ 23.832252699130347,
+ 0.0
+ ],
+ [
+ 120.728939971158326,
+ 23.831845333228472,
+ 0.0
+ ],
+ [
+ 120.730490538500305,
+ 23.831180159715167,
+ 0.0
+ ],
+ [
+ 120.731891966228417,
+ 23.830277393238337,
+ 0.0
+ ],
+ [
+ 120.733101669032479,
+ 23.829164468423343,
+ 0.0
+ ],
+ [
+ 120.734082890708038,
+ 23.827875205739979,
+ 0.0
+ ],
+ [
+ 120.734805820974245,
+ 23.826448783304009,
+ 0.0
+ ],
+ [
+ 120.735248500804104,
+ 23.824928545924468,
+ 0.0
+ ],
+ [
+ 120.735397488812339,
+ 23.823360687649206,
+ 0.0
+ ],
+ [
+ 120.735248268552894,
+ 23.821792847892286,
+ 0.0
+ ],
+ [
+ 120.734805384484758,
+ 23.820272663834174,
+ 0.0
+ ],
+ [
+ 120.734082302627343,
+ 23.818846323091361,
+ 0.0
+ ],
+ [
+ 120.733101000291796,
+ 23.817557160619504,
+ 0.0
+ ],
+ [
+ 120.731891297487735,
+ 23.816444342447362,
+ 0.0
+ ],
+ [
+ 120.73048995041961,
+ 23.81554167618204,
+ 0.0
+ ],
+ [
+ 120.728939534668839,
+ 23.814876584361901,
+ 0.0
+ ],
+ [
+ 120.72728715199554,
+ 23.814469271781459,
+ 0.0
+ ],
+ [
+ 120.725583,
+ 23.814332112023028,
+ 0.0
+ ],
+ [
+ 120.72387884800446,
+ 23.814469271781459,
+ 0.0
+ ],
+ [
+ 120.722226465331161,
+ 23.814876584361901,
+ 0.0
+ ],
+ [
+ 120.720676049580391,
+ 23.81554167618204,
+ 0.0
+ ],
+ [
+ 120.719274702512266,
+ 23.816444342447362,
+ 0.0
+ ],
+ [
+ 120.718064999708204,
+ 23.817557160619504,
+ 0.0
+ ],
+ [
+ 120.717083697372658,
+ 23.818846323091361,
+ 0.0
+ ],
+ [
+ 120.716360615515242,
+ 23.820272663834174,
+ 0.0
+ ],
+ [
+ 120.715917731447107,
+ 23.821792847892286,
+ 0.0
+ ],
+ [
+ 120.715768511187662,
+ 23.823360687649206,
+ 0.0
+ ],
+ [
+ 120.715917499195896,
+ 23.824928545924468,
+ 0.0
+ ],
+ [
+ 120.716360179025756,
+ 23.826448783304009,
+ 0.0
+ ],
+ [
+ 120.717083109291963,
+ 23.827875205739979,
+ 0.0
+ ],
+ [
+ 120.718064330967522,
+ 23.829164468423343,
+ 0.0
+ ],
+ [
+ 120.719274033771583,
+ 23.830277393238337,
+ 0.0
+ ],
+ [
+ 120.720675461499695,
+ 23.831180159715167,
+ 0.0
+ ],
+ [
+ 120.722226028841675,
+ 23.831845333228472,
+ 0.0
+ ],
+ [
+ 120.72387861575325,
+ 23.832252699130347,
+ 0.0
+ ],
+ [
+ 120.725583,
+ 23.83238987740711,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001537,
+ "name": "Chiayi Airport",
+ "country": "TW",
+ "city": "Chiayi City",
+ "height": 500,
+ "level": 2,
+ "lat": "23.463177",
+ "lng": "120.393469",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.393469,
+ 23.914628972084621,
+ 500.0
+ ],
+ [
+ 120.478736791359694,
+ 23.907747235930938,
+ 500.0
+ ],
+ [
+ 120.561387554882231,
+ 23.88731323613386,
+ 500.0
+ ],
+ [
+ 120.63888701983862,
+ 23.85395391806016,
+ 500.0
+ ],
+ [
+ 120.708863502906652,
+ 23.80869215897571,
+ 500.0
+ ],
+ [
+ 120.769182029432272,
+ 23.752914538316023,
+ 500.0
+ ],
+ [
+ 120.818010239814896,
+ 23.688327809697114,
+ 500.0
+ ],
+ [
+ 120.85387395970919,
+ 23.616905574358928,
+ 500.0
+ ],
+ [
+ 120.875700774242304,
+ 23.540826959498897,
+ 500.0
+ ],
+ [
+ 120.882850450462456,
+ 23.462409330190457,
+ 500.0
+ ],
+ [
+ 120.87513156524227,
+ 23.384037206706363,
+ 500.0
+ ],
+ [
+ 120.852804188843592,
+ 23.308089621580542,
+ 500.0
+ ],
+ [
+ 120.816568925177933,
+ 23.236868138134888,
+ 500.0
+ ],
+ [
+ 120.767543004234497,
+ 23.172527672618905,
+ 500.0
+ ],
+ [
+ 120.707224453586946,
+ 23.117012125065784,
+ 500.0
+ ],
+ [
+ 120.63744564412282,
+ 23.07199663920732,
+ 500.0
+ ],
+ [
+ 120.560317714560327,
+ 23.038838088535613,
+ 500.0
+ ],
+ [
+ 120.478167537025286,
+ 23.01853513211157,
+ 500.0
+ ],
+ [
+ 120.393469,
+ 23.011698907168597,
+ 500.0
+ ],
+ [
+ 120.308770462974707,
+ 23.01853513211157,
+ 500.0
+ ],
+ [
+ 120.226620285439665,
+ 23.038838088535613,
+ 500.0
+ ],
+ [
+ 120.149492355877172,
+ 23.07199663920732,
+ 500.0
+ ],
+ [
+ 120.079713546413046,
+ 23.117012125065784,
+ 500.0
+ ],
+ [
+ 120.019394995765495,
+ 23.172527672618905,
+ 500.0
+ ],
+ [
+ 119.970369074822059,
+ 23.236868138134888,
+ 500.0
+ ],
+ [
+ 119.9341338111564,
+ 23.308089621580542,
+ 500.0
+ ],
+ [
+ 119.911806434757722,
+ 23.384037206706363,
+ 500.0
+ ],
+ [
+ 119.904087549537536,
+ 23.462409330190457,
+ 500.0
+ ],
+ [
+ 119.911237225757688,
+ 23.540826959498897,
+ 500.0
+ ],
+ [
+ 119.933064040290802,
+ 23.616905574358928,
+ 500.0
+ ],
+ [
+ 119.968927760185096,
+ 23.688327809697114,
+ 500.0
+ ],
+ [
+ 120.01775597056772,
+ 23.752914538316023,
+ 500.0
+ ],
+ [
+ 120.07807449709334,
+ 23.80869215897571,
+ 500.0
+ ],
+ [
+ 120.148050980161372,
+ 23.85395391806016,
+ 500.0
+ ],
+ [
+ 120.225550445117761,
+ 23.88731323613386,
+ 500.0
+ ],
+ [
+ 120.308201208640298,
+ 23.907747235930938,
+ 500.0
+ ],
+ [
+ 120.393469,
+ 23.914628972084621,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2156,
+ "name": "Chiayi Airport",
+ "country": "TW",
+ "city": "Chiayi City",
+ "height": 0,
+ "level": 2,
+ "lat": "23.4636069722221",
+ "lng": "120.390546045974",
+ "radius": 5861,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.36452,
+ 23.51059,
+ 0.0
+ ],
+ [
+ 120.41543,
+ 23.51112,
+ 0.0
+ ],
+ [
+ 120.41656,
+ 23.41662,
+ 0.0
+ ],
+ [
+ 120.36568,
+ 23.41609,
+ 0.0
+ ],
+ [
+ 120.36452,
+ 23.51059,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2156,
+ "name": "Chiayi Airport",
+ "country": "TW",
+ "city": "Chiayi City",
+ "height": 0,
+ "level": 2,
+ "lat": "23.4129075052684",
+ "lng": "120.391170938505",
+ "radius": 2863,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.41656,
+ 23.41662,
+ 0.0
+ ],
+ [
+ 120.41923,
+ 23.413195,
+ 0.0
+ ],
+ [
+ 120.415656,
+ 23.411042,
+ 0.0
+ ],
+ [
+ 120.411892,
+ 23.409185,
+ 0.0
+ ],
+ [
+ 120.407968,
+ 23.407637,
+ 0.0
+ ],
+ [
+ 120.403912,
+ 23.406411,
+ 0.0
+ ],
+ [
+ 120.399756,
+ 23.405516,
+ 0.0
+ ],
+ [
+ 120.395531,
+ 23.404958,
+ 0.0
+ ],
+ [
+ 120.39127,
+ 23.404743,
+ 0.0
+ ],
+ [
+ 120.387005,
+ 23.40487,
+ 0.0
+ ],
+ [
+ 120.382767,
+ 23.405341,
+ 0.0
+ ],
+ [
+ 120.378591,
+ 23.40615,
+ 0.0
+ ],
+ [
+ 120.374506,
+ 23.407292,
+ 0.0
+ ],
+ [
+ 120.370545,
+ 23.408758,
+ 0.0
+ ],
+ [
+ 120.366737,
+ 23.410537,
+ 0.0
+ ],
+ [
+ 120.363112,
+ 23.412615,
+ 0.0
+ ],
+ [
+ 120.36568,
+ 23.41609,
+ 0.0
+ ],
+ [
+ 120.41656,
+ 23.41662,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2156,
+ "name": "Chiayi Airport",
+ "country": "TW",
+ "city": "Chiayi City",
+ "height": 0,
+ "level": 2,
+ "lat": "23.5143150174264",
+ "lng": "120.389939438052",
+ "radius": 2863,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.36452,
+ 23.51059,
+ 0.0
+ ],
+ [
+ 120.361859,
+ 23.514022,
+ 0.0
+ ],
+ [
+ 120.365435,
+ 23.516176,
+ 0.0
+ ],
+ [
+ 120.369201,
+ 23.518034,
+ 0.0
+ ],
+ [
+ 120.373128,
+ 23.519582,
+ 0.0
+ ],
+ [
+ 120.377187,
+ 23.520809,
+ 0.0
+ ],
+ [
+ 120.381347,
+ 23.521705,
+ 0.0
+ ],
+ [
+ 120.385575,
+ 23.522263,
+ 0.0
+ ],
+ [
+ 120.38984,
+ 23.522479,
+ 0.0
+ ],
+ [
+ 120.394109,
+ 23.522351,
+ 0.0
+ ],
+ [
+ 120.39835,
+ 23.521881,
+ 0.0
+ ],
+ [
+ 120.40253,
+ 23.521071,
+ 0.0
+ ],
+ [
+ 120.406618,
+ 23.519929,
+ 0.0
+ ],
+ [
+ 120.410582,
+ 23.518462,
+ 0.0
+ ],
+ [
+ 120.414392,
+ 23.516682,
+ 0.0
+ ],
+ [
+ 120.41802,
+ 23.514603,
+ 0.0
+ ],
+ [
+ 120.41543,
+ 23.51112,
+ 0.0
+ ],
+ [
+ 120.36452,
+ 23.51059,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2156,
+ "name": "Chiayi Airport",
+ "country": "TW",
+ "city": "Chiayi City",
+ "height": 60,
+ "level": 2,
+ "lat": "23.4636053248227",
+ "lng": "120.390550425299",
+ "radius": 17635,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.32994,
+ 23.61215,
+ 60.0
+ ],
+ [
+ 120.44753,
+ 23.61336,
+ 60.0
+ ],
+ [
+ 120.45102,
+ 23.31504,
+ 60.0
+ ],
+ [
+ 120.3337,
+ 23.31383,
+ 60.0
+ ],
+ [
+ 120.32994,
+ 23.61215,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6825,
+ "name": "Magong Airport",
+ "country": "TW",
+ "city": "Makung City",
+ "height": 0,
+ "level": 2,
+ "lat": "23.5686202161007",
+ "lng": "119.628233257562",
+ "radius": 5848,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.58808,
+ 23.53124,
+ 0.0
+ ],
+ [
+ 119.62001,
+ 23.62067,
+ 0.0
+ ],
+ [
+ 119.66841,
+ 23.60599,
+ 0.0
+ ],
+ [
+ 119.63645,
+ 23.51657,
+ 0.0
+ ],
+ [
+ 119.58808,
+ 23.53124,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6825,
+ "name": "Magong Airport",
+ "country": "TW",
+ "city": "Makung City",
+ "height": 0,
+ "level": 2,
+ "lat": "23.6166166051306",
+ "lng": "119.645384449023",
+ "radius": 2864,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.62001,
+ 23.62067,
+ 0.0
+ ],
+ [
+ 119.66841,
+ 23.60599,
+ 0.0
+ ],
+ [
+ 119.67207629399999,
+ 23.608514181099999,
+ 0.0
+ ],
+ [
+ 119.667746834,
+ 23.613160385,
+ 0.0
+ ],
+ [
+ 119.66277453399999,
+ 23.6172238005,
+ 0.0
+ ],
+ [
+ 119.657250891,
+ 23.6206296077,
+ 0.0
+ ],
+ [
+ 119.651277581,
+ 23.6233150891,
+ 0.0
+ ],
+ [
+ 119.644964583,
+ 23.625230787700001,
+ 0.0
+ ],
+ [
+ 119.638428149,
+ 23.626341420399999,
+ 0.0
+ ],
+ [
+ 119.631788661,
+ 23.626626529700001,
+ 0.0
+ ],
+ [
+ 119.625168402,
+ 23.6260808619,
+ 0.0
+ ],
+ [
+ 119.618689304,
+ 23.624714464299998,
+ 0.0
+ ],
+ [
+ 119.62001,
+ 23.62067,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6825,
+ "name": "Magong Airport",
+ "country": "TW",
+ "city": "Makung City",
+ "height": 0,
+ "level": 2,
+ "lat": "23.5206284116977",
+ "lng": "119.611105168705",
+ "radius": 2864,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.58808,
+ 23.53124,
+ 0.0
+ ],
+ [
+ 119.58442703,
+ 23.528720126,
+ 0.0
+ ],
+ [
+ 119.588756786,
+ 23.524076189399999,
+ 0.0
+ ],
+ [
+ 119.593727988,
+ 23.5200151192,
+ 0.0
+ ],
+ [
+ 119.599249183,
+ 23.51661158,
+ 0.0
+ ],
+ [
+ 119.605218831,
+ 23.513928141200001,
+ 0.0
+ ],
+ [
+ 119.61152716799999,
+ 23.512014130400001,
+ 0.0
+ ],
+ [
+ 119.61805822399999,
+ 23.510904728300002,
+ 0.0
+ ],
+ [
+ 119.624691949,
+ 23.5106203247,
+ 0.0
+ ],
+ [
+ 119.631306409,
+ 23.511166144499999,
+ 0.0
+ ],
+ [
+ 119.637780027,
+ 23.5125321525,
+ 0.0
+ ],
+ [
+ 119.63645,
+ 23.51657,
+ 0.0
+ ],
+ [
+ 119.58808,
+ 23.53124,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 6825,
+ "name": "Magong Airport",
+ "country": "TW",
+ "city": "Makung City",
+ "height": 60,
+ "level": 2,
+ "lat": "23.5686200895001",
+ "lng": "119.628236382289",
+ "radius": 17628,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.62294,
+ 23.72708,
+ 60.0
+ ],
+ [
+ 119.7347,
+ 23.69316,
+ 60.0
+ ],
+ [
+ 119.63352,
+ 23.41016,
+ 60.0
+ ],
+ [
+ 119.52197,
+ 23.444,
+ 60.0
+ ],
+ [
+ 119.62294,
+ 23.72708,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001405,
+ "name": "Magong Airport",
+ "country": "TW",
+ "city": "Makung City",
+ "height": 500,
+ "level": 2,
+ "lat": "23.569891",
+ "lng": "119.629731",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.629731,
+ 24.021336742107977,
+ 500.0
+ ],
+ [
+ 119.715068999818499,
+ 24.014454982771205,
+ 500.0
+ ],
+ [
+ 119.797787684040898,
+ 23.994020924842044,
+ 500.0
+ ],
+ [
+ 119.875350582742399,
+ 23.960661546267382,
+ 500.0
+ ],
+ [
+ 119.945383985428222,
+ 23.915399773261033,
+ 500.0
+ ],
+ [
+ 120.00575113602747,
+ 23.85962224328501,
+ 500.0
+ ],
+ [
+ 120.054618199551399,
+ 23.795035768231056,
+ 500.0
+ ],
+ [
+ 120.090509876571005,
+ 23.723613998647682,
+ 500.0
+ ],
+ [
+ 120.112353004519917,
+ 23.647536093670976,
+ 500.0
+ ],
+ [
+ 120.119506990184661,
+ 23.569119426448911,
+ 500.0
+ ],
+ [
+ 120.111780431937532,
+ 23.49074849773217,
+ 500.0
+ ],
+ [
+ 120.089433784169813,
+ 23.414802292474942,
+ 500.0
+ ],
+ [
+ 120.053168367791173,
+ 23.343582301281383,
+ 500.0
+ ],
+ [
+ 120.004102425317143,
+ 23.279243348549237,
+ 500.0
+ ],
+ [
+ 119.943735250385998,
+ 23.223729231753172,
+ 500.0
+ ],
+ [
+ 119.873900689371624,
+ 23.178714991268084,
+ 500.0
+ ],
+ [
+ 119.7967115215788,
+ 23.145557406709699,
+ 500.0
+ ],
+ [
+ 119.714496381507089,
+ 23.12525506224172,
+ 500.0
+ ],
+ [
+ 119.629731,
+ 23.118419046837278,
+ 500.0
+ ],
+ [
+ 119.544965618492924,
+ 23.12525506224172,
+ 500.0
+ ],
+ [
+ 119.462750478421214,
+ 23.145557406709699,
+ 500.0
+ ],
+ [
+ 119.38556131062839,
+ 23.178714991268084,
+ 500.0
+ ],
+ [
+ 119.315726749614015,
+ 23.223729231753172,
+ 500.0
+ ],
+ [
+ 119.255359574682871,
+ 23.279243348549237,
+ 500.0
+ ],
+ [
+ 119.20629363220884,
+ 23.343582301281383,
+ 500.0
+ ],
+ [
+ 119.1700282158302,
+ 23.414802292474942,
+ 500.0
+ ],
+ [
+ 119.147681568062481,
+ 23.49074849773217,
+ 500.0
+ ],
+ [
+ 119.139955009815353,
+ 23.569119426448911,
+ 500.0
+ ],
+ [
+ 119.147108995480096,
+ 23.647536093670976,
+ 500.0
+ ],
+ [
+ 119.168952123429008,
+ 23.723613998647682,
+ 500.0
+ ],
+ [
+ 119.204843800448614,
+ 23.795035768231056,
+ 500.0
+ ],
+ [
+ 119.253710863972543,
+ 23.85962224328501,
+ 500.0
+ ],
+ [
+ 119.314078014571791,
+ 23.915399773261033,
+ 500.0
+ ],
+ [
+ 119.384111417257614,
+ 23.960661546267382,
+ 500.0
+ ],
+ [
+ 119.461674315959115,
+ 23.994020924842044,
+ 500.0
+ ],
+ [
+ 119.544393000181515,
+ 24.014454982771205,
+ 500.0
+ ],
+ [
+ 119.629731,
+ 24.021336742107977,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000278,
+ "name": "員林基督教醫院直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "23.962686",
+ "lng": "120.5672",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.5672,
+ 23.971714713919678,
+ 0.0
+ ],
+ [
+ 120.568906211698902,
+ 23.971577538065173,
+ 0.0
+ ],
+ [
+ 120.570560570456109,
+ 23.971170179361998,
+ 0.0
+ ],
+ [
+ 120.572112800129972,
+ 23.970505017620987,
+ 0.0
+ ],
+ [
+ 120.573515730114721,
+ 23.969602267156688,
+ 0.0
+ ],
+ [
+ 120.574726729426956,
+ 23.96848936213777,
+ 0.0
+ ],
+ [
+ 120.575709002468543,
+ 23.967200122464323,
+ 0.0
+ ],
+ [
+ 120.576432707041278,
+ 23.965773725582789,
+ 0.0
+ ],
+ [
+ 120.576875860643696,
+ 23.964253515550087,
+ 0.0
+ ],
+ [
+ 120.577025007565794,
+ 23.962685685599013,
+ 0.0
+ ],
+ [
+ 120.576875626613273,
+ 23.961117874288519,
+ 0.0
+ ],
+ [
+ 120.576432267207949,
+ 23.959597717929221,
+ 0.0
+ ],
+ [
+ 120.575708409882694,
+ 23.958171403280115,
+ 0.0
+ ],
+ [
+ 120.574726055563218,
+ 23.956882264479663,
+ 0.0
+ ],
+ [
+ 120.573515056250955,
+ 23.95576946680757,
+ 0.0
+ ],
+ [
+ 120.572112207544123,
+ 23.954866817216267,
+ 0.0
+ ],
+ [
+ 120.570560130622766,
+ 23.954201737707681,
+ 0.0
+ ],
+ [
+ 120.568905977668464,
+ 23.953794432677913,
+ 0.0
+ ],
+ [
+ 120.5672,
+ 23.953657275463982,
+ 0.0
+ ],
+ [
+ 120.565494022331535,
+ 23.953794432677913,
+ 0.0
+ ],
+ [
+ 120.563839869377233,
+ 23.954201737707681,
+ 0.0
+ ],
+ [
+ 120.562287792455876,
+ 23.954866817216267,
+ 0.0
+ ],
+ [
+ 120.560884943749045,
+ 23.95576946680757,
+ 0.0
+ ],
+ [
+ 120.559673944436781,
+ 23.956882264479663,
+ 0.0
+ ],
+ [
+ 120.558691590117306,
+ 23.958171403280115,
+ 0.0
+ ],
+ [
+ 120.557967732792051,
+ 23.959597717929221,
+ 0.0
+ ],
+ [
+ 120.557524373386727,
+ 23.961117874288519,
+ 0.0
+ ],
+ [
+ 120.557374992434205,
+ 23.962685685599013,
+ 0.0
+ ],
+ [
+ 120.557524139356303,
+ 23.964253515550087,
+ 0.0
+ ],
+ [
+ 120.557967292958722,
+ 23.965773725582789,
+ 0.0
+ ],
+ [
+ 120.558690997531457,
+ 23.967200122464323,
+ 0.0
+ ],
+ [
+ 120.559673270573043,
+ 23.96848936213777,
+ 0.0
+ ],
+ [
+ 120.560884269885278,
+ 23.969602267156688,
+ 0.0
+ ],
+ [
+ 120.562287199870028,
+ 23.970505017620987,
+ 0.0
+ ],
+ [
+ 120.56383942954389,
+ 23.971170179361998,
+ 0.0
+ ],
+ [
+ 120.565493788301097,
+ 23.971577538065173,
+ 0.0
+ ],
+ [
+ 120.5672,
+ 23.971714713919678,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1597,
+ "name": "Hualien Airport",
+ "country": "TW",
+ "city": "Hualien City",
+ "height": 0,
+ "level": 2,
+ "lat": "24.023700001777",
+ "lng": "121.61693029699",
+ "radius": 5737,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.57186,
+ 23.99291,
+ 0.0
+ ],
+ [
+ 121.61619,
+ 24.07529,
+ 0.0
+ ],
+ [
+ 121.66202,
+ 24.05447,
+ 0.0
+ ],
+ [
+ 121.61767,
+ 23.97211,
+ 0.0
+ ],
+ [
+ 121.57186,
+ 23.99291,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1597,
+ "name": "Hualien Airport",
+ "country": "TW",
+ "city": "Hualien City",
+ "height": 0,
+ "level": 2,
+ "lat": "24.0679841046518",
+ "lng": "121.640776954883",
+ "radius": 2866,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.61619,
+ 24.07529,
+ 0.0
+ ],
+ [
+ 121.66202,
+ 24.05447,
+ 0.0
+ ],
+ [
+ 121.666052357,
+ 24.056500930599999,
+ 0.0
+ ],
+ [
+ 121.662463415,
+ 24.061662139199999,
+ 0.0
+ ],
+ [
+ 121.658146532,
+ 24.066329765100001,
+ 0.0
+ ],
+ [
+ 121.653181113,
+ 24.070417871299998,
+ 0.0
+ ],
+ [
+ 121.647658527,
+ 24.0738511821,
+ 0.0
+ ],
+ [
+ 121.641680432,
+ 24.0765664728,
+ 0.0
+ ],
+ [
+ 121.63535689299999,
+ 24.0785137365,
+ 0.0
+ ],
+ [
+ 121.62880436,
+ 24.079657108300001,
+ 0.0
+ ],
+ [
+ 121.622143511,
+ 24.079975527199998,
+ 0.0
+ ],
+ [
+ 121.61549702799999,
+ 24.079463126099999,
+ 0.0
+ ],
+ [
+ 121.61619,
+ 24.07529,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1597,
+ "name": "Hualien Airport",
+ "country": "TW",
+ "city": "Hualien City",
+ "height": 0,
+ "level": 2,
+ "lat": "23.9794207631596",
+ "lng": "121.593102243798",
+ "radius": 2866,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.57186,
+ 23.99291,
+ 0.0
+ ],
+ [
+ 121.567835031,
+ 23.990891793799999,
+ 0.0
+ ],
+ [
+ 121.571425907,
+ 23.9857327181,
+ 0.0
+ ],
+ [
+ 121.575743358,
+ 23.981067478100002,
+ 0.0
+ ],
+ [
+ 121.580707923,
+ 23.976981854200002,
+ 0.0
+ ],
+ [
+ 121.586228268,
+ 23.973550961200001,
+ 0.0
+ ],
+ [
+ 121.59220287,
+ 23.970837870800001,
+ 0.0
+ ],
+ [
+ 121.598521875,
+ 23.968892454500001,
+ 0.0
+ ],
+ [
+ 121.605069118,
+ 23.9677504701,
+ 0.0
+ ],
+ [
+ 121.611724253,
+ 23.967432905599999,
+ 0.0
+ ],
+ [
+ 121.61836495599999,
+ 23.9679455956,
+ 0.0
+ ],
+ [
+ 121.61767,
+ 23.97211,
+ 0.0
+ ],
+ [
+ 121.57186,
+ 23.99291,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1597,
+ "name": "Hualien Airport",
+ "country": "TW",
+ "city": "Hualien City",
+ "height": 60,
+ "level": 2,
+ "lat": "24.0237011075984",
+ "lng": "121.616932500006",
+ "radius": 17508,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.63543,
+ 24.18025,
+ 60.0
+ ],
+ [
+ 121.74125,
+ 24.13217,
+ 60.0
+ ],
+ [
+ 121.59848,
+ 23.86715,
+ 60.0
+ ],
+ [
+ 121.49281,
+ 23.91512,
+ 60.0
+ ],
+ [
+ 121.63543,
+ 24.18025,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001411,
+ "name": "Hualien Airport",
+ "country": "TW",
+ "city": "Hualien City",
+ "height": 500,
+ "level": 2,
+ "lat": "24.024594",
+ "lng": "121.61668",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.61668,
+ 24.476012959898654,
+ 500.0
+ ],
+ [
+ 121.702321785510819,
+ 24.469131103179116,
+ 500.0
+ ],
+ [
+ 121.785334360260705,
+ 24.44869680191907,
+ 500.0
+ ],
+ [
+ 121.863171741806525,
+ 24.415337173362019,
+ 500.0
+ ],
+ [
+ 121.933451450416015,
+ 24.370075352972023,
+ 500.0
+ ],
+ [
+ 121.99402902273269,
+ 24.314298226214166,
+ 500.0
+ ],
+ [
+ 122.043064239042096,
+ 24.24971285394831,
+ 500.0
+ ],
+ [
+ 122.079076929338825,
+ 24.178293097218031,
+ 500.0
+ ],
+ [
+ 122.100990692043425,
+ 24.102218251234156,
+ 500.0
+ ],
+ [
+ 122.108163370341643,
+ 24.023805723028708,
+ 500.0
+ ],
+ [
+ 122.10040365042083,
+ 23.94543992910199,
+ 500.0
+ ],
+ [
+ 122.077973643738531,
+ 23.86949965008343,
+ 500.0
+ ],
+ [
+ 122.041577769367649,
+ 23.798286064706506,
+ 500.0
+ ],
+ [
+ 121.992338648064006,
+ 23.733953603675548,
+ 500.0
+ ],
+ [
+ 121.931761050500683,
+ 23.678445625035351,
+ 500.0
+ ],
+ [
+ 121.861685208205316,
+ 23.633436726410789,
+ 500.0
+ ],
+ [
+ 121.784231001965594,
+ 23.600283285340808,
+ 500.0
+ ],
+ [
+ 121.701734696440042,
+ 23.579983565233825,
+ 500.0
+ ],
+ [
+ 121.61668,
+ 23.573148448396193,
+ 500.0
+ ],
+ [
+ 121.531625303559963,
+ 23.579983565233825,
+ 500.0
+ ],
+ [
+ 121.449128998034411,
+ 23.600283285340808,
+ 500.0
+ ],
+ [
+ 121.371674791794689,
+ 23.633436726410789,
+ 500.0
+ ],
+ [
+ 121.301598949499322,
+ 23.678445625035351,
+ 500.0
+ ],
+ [
+ 121.241021351935998,
+ 23.733953603675548,
+ 500.0
+ ],
+ [
+ 121.191782230632356,
+ 23.798286064706506,
+ 500.0
+ ],
+ [
+ 121.155386356261474,
+ 23.86949965008343,
+ 500.0
+ ],
+ [
+ 121.132956349579175,
+ 23.94543992910199,
+ 500.0
+ ],
+ [
+ 121.125196629658362,
+ 24.023805723028708,
+ 500.0
+ ],
+ [
+ 121.13236930795658,
+ 24.102218251234156,
+ 500.0
+ ],
+ [
+ 121.15428307066118,
+ 24.178293097218031,
+ 500.0
+ ],
+ [
+ 121.190295760957909,
+ 24.24971285394831,
+ 500.0
+ ],
+ [
+ 121.239330977267315,
+ 24.314298226214166,
+ 500.0
+ ],
+ [
+ 121.299908549583989,
+ 24.370075352972023,
+ 500.0
+ ],
+ [
+ 121.37018825819348,
+ 24.415337173362019,
+ 500.0
+ ],
+ [
+ 121.448025639739299,
+ 24.44869680191907,
+ 500.0
+ ],
+ [
+ 121.531038214489186,
+ 24.469131103179116,
+ 500.0
+ ],
+ [
+ 121.61668,
+ 24.476012959898654,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288820,
+ "name": "Hateruma Airport",
+ "country": "JP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "24.0599015844706",
+ "lng": "123.805315377888",
+ "radius": 7091,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.787255628,
+ 24.033603317699999,
+ 0.0
+ ],
+ [
+ 123.812422466,
+ 24.090257719,
+ 0.0
+ ],
+ [
+ 123.820844136,
+ 24.122077467800001,
+ 0.0
+ ],
+ [
+ 123.841622743,
+ 24.1143823327,
+ 0.0
+ ],
+ [
+ 123.823376778,
+ 24.086201063299999,
+ 0.0
+ ],
+ [
+ 123.79820501099999,
+ 24.029546451800002,
+ 0.0
+ ],
+ [
+ 123.789790766,
+ 23.997726404200002,
+ 0.0
+ ],
+ [
+ 123.7690245,
+ 24.005420237300001,
+ 0.0
+ ],
+ [
+ 123.787255628,
+ 24.033603317699999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009692,
+ "name": "Lashio Airport",
+ "country": "MM",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "22.977985",
+ "lng": "97.752419",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.752419,
+ 23.429465027913846,
+ 500.0
+ ],
+ [
+ 97.837372725145741,
+ 23.422583398847621,
+ 500.0
+ ],
+ [
+ 97.919719660652135,
+ 23.402149668584833,
+ 500.0
+ ],
+ [
+ 97.996935377180108,
+ 23.368790634871413,
+ 500.0
+ ],
+ [
+ 98.066657262085855,
+ 23.323528953157506,
+ 500.0
+ ],
+ [
+ 98.126758310440351,
+ 23.267750939855212,
+ 500.0
+ ],
+ [
+ 98.17541276157958,
+ 23.203163084310411,
+ 500.0
+ ],
+ [
+ 98.211151471261402,
+ 23.131738763966695,
+ 500.0
+ ],
+ [
+ 98.232905364966783,
+ 23.055656960746727,
+ 500.0
+ ],
+ [
+ 98.240035815883815,
+ 22.977235002390294,
+ 500.0
+ ],
+ [
+ 98.232351298789894,
+ 22.898857496705066,
+ 500.0
+ ],
+ [
+ 98.210110159898576,
+ 22.822903690754273,
+ 500.0
+ ],
+ [
+ 98.174009790955438,
+ 22.751675476206362,
+ 500.0
+ ],
+ [
+ 98.1251628893218,
+ 22.687328184333207,
+ 500.0
+ ],
+ [
+ 98.065061817778371,
+ 22.631806178747961,
+ 500.0
+ ],
+ [
+ 97.995532347839514,
+ 22.586785070487782,
+ 500.0
+ ],
+ [
+ 97.918678282519409,
+ 22.553622157557186,
+ 500.0
+ ],
+ [
+ 97.836818615387898,
+ 22.533316437742926,
+ 500.0
+ ],
+ [
+ 97.752419,
+ 22.526479266552862,
+ 500.0
+ ],
+ [
+ 97.668019384612109,
+ 22.533316437742926,
+ 500.0
+ ],
+ [
+ 97.586159717480598,
+ 22.553622157557186,
+ 500.0
+ ],
+ [
+ 97.509305652160492,
+ 22.586785070487782,
+ 500.0
+ ],
+ [
+ 97.439776182221635,
+ 22.631806178747961,
+ 500.0
+ ],
+ [
+ 97.379675110678207,
+ 22.687328184333207,
+ 500.0
+ ],
+ [
+ 97.330828209044569,
+ 22.751675476206362,
+ 500.0
+ ],
+ [
+ 97.29472784010143,
+ 22.822903690754273,
+ 500.0
+ ],
+ [
+ 97.272486701210113,
+ 22.898857496705066,
+ 500.0
+ ],
+ [
+ 97.264802184116192,
+ 22.977235002390294,
+ 500.0
+ ],
+ [
+ 97.271932635033224,
+ 23.055656960746727,
+ 500.0
+ ],
+ [
+ 97.293686528738604,
+ 23.131738763966695,
+ 500.0
+ ],
+ [
+ 97.329425238420427,
+ 23.203163084310411,
+ 500.0
+ ],
+ [
+ 97.378079689559655,
+ 23.267750939855212,
+ 500.0
+ ],
+ [
+ 97.438180737914152,
+ 23.323528953157506,
+ 500.0
+ ],
+ [
+ 97.507902622819898,
+ 23.368790634871413,
+ 500.0
+ ],
+ [
+ 97.585118339347872,
+ 23.402149668584833,
+ 500.0
+ ],
+ [
+ 97.667465274854266,
+ 23.422583398847621,
+ 500.0
+ ],
+ [
+ 97.752419,
+ 23.429465027913846,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268926,
+ "name": "Namtu Airport",
+ "country": "MM",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "23.076574",
+ "lng": "97.404594",
+ "radius": 317,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.404594,
+ 23.079436429110132,
+ 0.0
+ ],
+ [
+ 97.405131235417642,
+ 23.079392941474421,
+ 0.0
+ ],
+ [
+ 97.40565214619852,
+ 23.079263799998134,
+ 0.0
+ ],
+ [
+ 97.406140903843564,
+ 23.079052928812956,
+ 0.0
+ ],
+ [
+ 97.406582657039579,
+ 23.078766735490547,
+ 0.0
+ ],
+ [
+ 97.406963982988373,
+ 23.07841391630858,
+ 0.0
+ ],
+ [
+ 97.407273295294075,
+ 23.07800519196589,
+ 0.0
+ ],
+ [
+ 97.407501196009804,
+ 23.077552981783185,
+ 0.0
+ ],
+ [
+ 97.407640761147221,
+ 23.077071026295357,
+ 0.0
+ ],
+ [
+ 97.407687750978795,
+ 23.076573969709223,
+ 0.0
+ ],
+ [
+ 97.407640738752647,
+ 23.076076914918591,
+ 0.0
+ ],
+ [
+ 97.4075011539218,
+ 23.07559496460069,
+ 0.0
+ ],
+ [
+ 97.407273238589056,
+ 23.075142762338768,
+ 0.0
+ ],
+ [
+ 97.406963918505809,
+ 23.074734047712372,
+ 0.0
+ ],
+ [
+ 97.406582592557001,
+ 23.074381238870266,
+ 0.0
+ ],
+ [
+ 97.406140847138531,
+ 23.074095055264138,
+ 0.0
+ ],
+ [
+ 97.405652104110501,
+ 23.073884191999745,
+ 0.0
+ ],
+ [
+ 97.405131213023083,
+ 23.07375505569339,
+ 0.0
+ ],
+ [
+ 97.404594,
+ 23.073711569853184,
+ 0.0
+ ],
+ [
+ 97.404056786976923,
+ 23.07375505569339,
+ 0.0
+ ],
+ [
+ 97.403535895889505,
+ 23.073884191999745,
+ 0.0
+ ],
+ [
+ 97.403047152861475,
+ 23.074095055264138,
+ 0.0
+ ],
+ [
+ 97.402605407443005,
+ 23.074381238870266,
+ 0.0
+ ],
+ [
+ 97.402224081494197,
+ 23.074734047712372,
+ 0.0
+ ],
+ [
+ 97.40191476141095,
+ 23.075142762338768,
+ 0.0
+ ],
+ [
+ 97.401686846078206,
+ 23.07559496460069,
+ 0.0
+ ],
+ [
+ 97.401547261247359,
+ 23.076076914918591,
+ 0.0
+ ],
+ [
+ 97.401500249021211,
+ 23.076573969709223,
+ 0.0
+ ],
+ [
+ 97.401547238852785,
+ 23.077071026295357,
+ 0.0
+ ],
+ [
+ 97.401686803990202,
+ 23.077552981783185,
+ 0.0
+ ],
+ [
+ 97.401914704705931,
+ 23.07800519196589,
+ 0.0
+ ],
+ [
+ 97.402224017011633,
+ 23.07841391630858,
+ 0.0
+ ],
+ [
+ 97.402605342960427,
+ 23.078766735490547,
+ 0.0
+ ],
+ [
+ 97.403047096156442,
+ 23.079052928812956,
+ 0.0
+ ],
+ [
+ 97.403535853801486,
+ 23.079263799998134,
+ 0.0
+ ],
+ [
+ 97.404056764582364,
+ 23.079392941474421,
+ 0.0
+ ],
+ [
+ 97.404594,
+ 23.079436429110132,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283563,
+ "name": "Lashio Airport",
+ "country": "MM",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "22.9776684586376",
+ "lng": "97.752406135343",
+ "radius": 4758,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.712881588299993,
+ 22.973647230800001,
+ 0.0
+ ],
+ [
+ 97.715527089700004,
+ 22.994699407100001,
+ 0.0
+ ],
+ [
+ 97.718648809,
+ 23.001649119100001,
+ 0.0
+ ],
+ [
+ 97.729195901,
+ 23.013029137899998,
+ 0.0
+ ],
+ [
+ 97.743861397700002,
+ 23.019475493600002,
+ 0.0
+ ],
+ [
+ 97.760108199800001,
+ 23.019872811199999,
+ 0.0
+ ],
+ [
+ 97.775125018500006,
+ 23.01415234,
+ 0.0
+ ],
+ [
+ 97.786313844199995,
+ 23.0033038756,
+ 0.0
+ ],
+ [
+ 97.789832071,
+ 22.996516544199999,
+ 0.0
+ ],
+ [
+ 97.791740136399994,
+ 22.989204168,
+ 0.0
+ ],
+ [
+ 97.790782637600003,
+ 22.9680004077,
+ 0.0
+ ],
+ [
+ 97.789290814599994,
+ 22.960606538899999,
+ 0.0
+ ],
+ [
+ 97.7861622864,
+ 22.953659784500001,
+ 0.0
+ ],
+ [
+ 97.775608279300002,
+ 22.942288845899999,
+ 0.0
+ ],
+ [
+ 97.760945820200007,
+ 22.9358527911,
+ 0.0
+ ],
+ [
+ 97.744708880600001,
+ 22.935463734199999,
+ 0.0
+ ],
+ [
+ 97.729702913500006,
+ 22.941188897300002,
+ 0.0
+ ],
+ [
+ 97.718521126799999,
+ 22.952039019699999,
+ 0.0
+ ],
+ [
+ 97.715004506300005,
+ 22.958826548200001,
+ 0.0
+ ],
+ [
+ 97.713097059299997,
+ 22.966138966199999,
+ 0.0
+ ],
+ [
+ 97.712881588299993,
+ 22.973647230800001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283562,
+ "name": "Lashio Airport",
+ "country": "MM",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.9776668114105",
+ "lng": "97.7524164157413",
+ "radius": 3809,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.743696232800005,
+ 22.944359308399999,
+ 0.0
+ ],
+ [
+ 97.749452100699997,
+ 23.0118193482,
+ 0.0
+ ],
+ [
+ 97.761140898600004,
+ 23.010973837200002,
+ 0.0
+ ],
+ [
+ 97.755379189500005,
+ 22.9435137119,
+ 0.0
+ ],
+ [
+ 97.743696232800005,
+ 22.944359308399999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283562,
+ "name": "Lashio Airport",
+ "country": "MM",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "23.0286988061665",
+ "lng": "97.7567740110794",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.749452100699997,
+ 23.0118193482,
+ 60.0
+ ],
+ [
+ 97.746966604899995,
+ 23.0444744761,
+ 60.0
+ ],
+ [
+ 97.7691392949,
+ 23.042870608800001,
+ 60.0
+ ],
+ [
+ 97.761140898600004,
+ 23.010973837200002,
+ 60.0
+ ],
+ [
+ 97.749452100699997,
+ 23.0118193482,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283562,
+ "name": "Lashio Airport",
+ "country": "MM",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "22.9266338738042",
+ "lng": "97.7480611483165",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.735705276700003,
+ 22.9124621944,
+ 60.0
+ ],
+ [
+ 97.743696232800005,
+ 22.944359308399999,
+ 60.0
+ ],
+ [
+ 97.755379189500005,
+ 22.9435137119,
+ 60.0
+ ],
+ [
+ 97.757861946899993,
+ 22.910858527199998,
+ 60.0
+ ],
+ [
+ 97.735705276700003,
+ 22.9124621944,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283562,
+ "name": "Lashio Airport",
+ "country": "MM",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "23.083693305033",
+ "lng": "97.7614727309002",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.746966604899995,
+ 23.0444744761,
+ 150.0
+ ],
+ [
+ 97.741162422499997,
+ 23.1206696231,
+ 150.0
+ ],
+ [
+ 97.787816967099999,
+ 23.117294842900002,
+ 150.0
+ ],
+ [
+ 97.7691392949,
+ 23.042870608800001,
+ 150.0
+ ],
+ [
+ 97.746966604899995,
+ 23.0444744761,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283562,
+ "name": "Lashio Airport",
+ "country": "MM",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "22.8716385296359",
+ "lng": "97.7433704675794",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 97.717074320799995,
+ 22.838034043099999,
+ 150.0
+ ],
+ [
+ 97.735705276700003,
+ 22.9124621944,
+ 150.0
+ ],
+ [
+ 97.757861946899993,
+ 22.910858527199998,
+ 150.0
+ ],
+ [
+ 97.763650401500001,
+ 22.8346629463,
+ 150.0
+ ],
+ [
+ 97.717074320799995,
+ 22.838034043099999,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32335,
+ "name": "Pu'er Simao Airport",
+ "country": "CN",
+ "city": "Simao",
+ "height": 0,
+ "level": 2,
+ "lat": "22.8380578295359",
+ "lng": "100.950661867505",
+ "radius": 13058,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.976046614,
+ 22.8691498303,
+ 0.0
+ ],
+ [
+ 100.979375068,
+ 22.952482156799999,
+ 0.0
+ ],
+ [
+ 100.90884037799999,
+ 22.949000355399999,
+ 0.0
+ ],
+ [
+ 100.930515689,
+ 22.865678582299999,
+ 0.0
+ ],
+ [
+ 100.902325202,
+ 22.846568838,
+ 0.0
+ ],
+ [
+ 100.892924925,
+ 22.8324108176,
+ 0.0
+ ],
+ [
+ 100.887822473,
+ 22.8164927742,
+ 0.0
+ ],
+ [
+ 100.88736417,
+ 22.799899912299999,
+ 0.0
+ ],
+ [
+ 100.90078285,
+ 22.7509232301,
+ 0.0
+ ],
+ [
+ 100.911580902,
+ 22.737644224,
+ 0.0
+ ],
+ [
+ 100.94228245399999,
+ 22.720870378499999,
+ 0.0
+ ],
+ [
+ 100.976046614,
+ 22.8691498303,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32335,
+ "name": "Pu'er Simao Airport",
+ "country": "CN",
+ "city": "Simao",
+ "height": 0,
+ "level": 2,
+ "lat": "22.7506944313686",
+ "lng": "100.957556014437",
+ "radius": 13307,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.937327119,
+ 22.632483229,
+ 0.0
+ ],
+ [
+ 101.009515971,
+ 22.641039094500002,
+ 0.0
+ ],
+ [
+ 100.987847194,
+ 22.724367910600002,
+ 0.0
+ ],
+ [
+ 101.013379449,
+ 22.740840654599999,
+ 0.0
+ ],
+ [
+ 101.023566538,
+ 22.754524261699999,
+ 0.0
+ ],
+ [
+ 101.02956779599999,
+ 22.770172835899999,
+ 0.0
+ ],
+ [
+ 101.030972957,
+ 22.786720435100001,
+ 0.0
+ ],
+ [
+ 101.017369876,
+ 22.838849469199999,
+ 0.0
+ ],
+ [
+ 100.992565727,
+ 22.862529948500001,
+ 0.0
+ ],
+ [
+ 100.976046614,
+ 22.8691498303,
+ 0.0
+ ],
+ [
+ 100.94228245399999,
+ 22.720870378499999,
+ 0.0
+ ],
+ [
+ 100.937327119,
+ 22.632483229,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 32335,
+ "name": "Pu'er Simao Airport",
+ "country": "CN",
+ "city": "Simao",
+ "height": 120,
+ "level": 2,
+ "lat": "22.7929234376063",
+ "lng": "100.959113734192",
+ "radius": 23592,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.093863849,
+ 22.6209830299,
+ 120.0
+ ],
+ [
+ 100.902482181,
+ 22.5872890236,
+ 120.0
+ ],
+ [
+ 100.824121064,
+ 22.964815503499999,
+ 120.0
+ ],
+ [
+ 101.016033373,
+ 22.998509509600002,
+ 120.0
+ ],
+ [
+ 101.093863849,
+ 22.6209830299,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001350,
+ "name": "Pu'er Simao Airport",
+ "country": "CN",
+ "city": "Simao",
+ "height": 500,
+ "level": 2,
+ "lat": "22.796322",
+ "lng": "100.957848",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.957848,
+ 23.247812417541184,
+ 500.0
+ ],
+ [
+ 101.042686286550918,
+ 23.240930829312706,
+ 500.0
+ ],
+ [
+ 101.124921548475356,
+ 23.220497202269559,
+ 500.0
+ ],
+ [
+ 101.202032975321274,
+ 23.187138279093908,
+ 500.0
+ ],
+ [
+ 101.271661289532531,
+ 23.141876632482948,
+ 500.0
+ ],
+ [
+ 101.331682415906428,
+ 23.086098480693451,
+ 500.0
+ ],
+ [
+ 101.380273018871051,
+ 23.021510214399999,
+ 500.0
+ ],
+ [
+ 101.415965801855506,
+ 22.950085127403867,
+ 500.0
+ ],
+ [
+ 101.437692916254292,
+ 22.874002147195444,
+ 500.0
+ ],
+ [
+ 101.444816323264902,
+ 22.795578587263076,
+ 500.0
+ ],
+ [
+ 101.437144457583472,
+ 22.717199087664742,
+ 500.0
+ ],
+ [
+ 101.414935029267866,
+ 22.641242975024024,
+ 500.0
+ ],
+ [
+ 101.378884247329594,
+ 22.57001226298738,
+ 500.0
+ ],
+ [
+ 101.330103141708776,
+ 22.505662437125491,
+ 500.0
+ ],
+ [
+ 101.270081992486325,
+ 22.450138033481586,
+ 500.0
+ ],
+ [
+ 101.20064414592521,
+ 22.40511483695915,
+ 500.0
+ ],
+ [
+ 101.123890710097896,
+ 22.371950303538316,
+ 500.0
+ ],
+ [
+ 101.042137784938831,
+ 22.351643557073686,
+ 500.0
+ ],
+ [
+ 100.957848,
+ 22.344806034317596,
+ 500.0
+ ],
+ [
+ 100.873558215061166,
+ 22.351643557073686,
+ 500.0
+ ],
+ [
+ 100.791805289902101,
+ 22.371950303538316,
+ 500.0
+ ],
+ [
+ 100.715051854074787,
+ 22.40511483695915,
+ 500.0
+ ],
+ [
+ 100.645614007513672,
+ 22.450138033481586,
+ 500.0
+ ],
+ [
+ 100.585592858291221,
+ 22.505662437125491,
+ 500.0
+ ],
+ [
+ 100.536811752670403,
+ 22.57001226298738,
+ 500.0
+ ],
+ [
+ 100.500760970732131,
+ 22.641242975024024,
+ 500.0
+ ],
+ [
+ 100.478551542416525,
+ 22.717199087664742,
+ 500.0
+ ],
+ [
+ 100.470879676735095,
+ 22.795578587263076,
+ 500.0
+ ],
+ [
+ 100.478003083745705,
+ 22.874002147195444,
+ 500.0
+ ],
+ [
+ 100.499730198144491,
+ 22.950085127403867,
+ 500.0
+ ],
+ [
+ 100.535422981128946,
+ 23.021510214399999,
+ 500.0
+ ],
+ [
+ 100.584013584093569,
+ 23.086098480693451,
+ 500.0
+ ],
+ [
+ 100.644034710467466,
+ 23.141876632482948,
+ 500.0
+ ],
+ [
+ 100.713663024678723,
+ 23.187138279093908,
+ 500.0
+ ],
+ [
+ 100.790774451524641,
+ 23.220497202269559,
+ 500.0
+ ],
+ [
+ 100.873009713449079,
+ 23.240930829312706,
+ 500.0
+ ],
+ [
+ 100.957848,
+ 23.247812417541184,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001427,
+ "name": "Wuzhou Xijiang Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "23.401225",
+ "lng": "111.097615",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.097615,
+ 23.85268057908808,
+ 500.0
+ ],
+ [
+ 111.182842220571985,
+ 23.845798856452788,
+ 500.0
+ ],
+ [
+ 111.265453735470302,
+ 23.825364890589444,
+ 500.0
+ ],
+ [
+ 111.342916544929267,
+ 23.792005607969603,
+ 500.0
+ ],
+ [
+ 111.412860137141053,
+ 23.746743857470008,
+ 500.0
+ ],
+ [
+ 111.473150566895029,
+ 23.690966184869254,
+ 500.0
+ ],
+ [
+ 111.521956327125835,
+ 23.626379309977647,
+ 500.0
+ ],
+ [
+ 111.557803893530433,
+ 23.554956805424432,
+ 500.0
+ ],
+ [
+ 111.579621283142558,
+ 23.478877779863744,
+ 500.0
+ ],
+ [
+ 111.58676847099504,
+ 23.400459593659338,
+ 500.0
+ ],
+ [
+ 111.579054021322065,
+ 23.322086778373095,
+ 500.0
+ ],
+ [
+ 111.556737782204834,
+ 23.246138394095723,
+ 500.0
+ ],
+ [
+ 111.520519943055376,
+ 23.174916046281979,
+ 500.0
+ ],
+ [
+ 111.471517148644395,
+ 23.110574704410585,
+ 500.0
+ ],
+ [
+ 111.411226694889606,
+ 23.055058327955141,
+ 500.0
+ ],
+ [
+ 111.341480100086613,
+ 23.010042120554733,
+ 500.0
+ ],
+ [
+ 111.264387555037104,
+ 22.976883010116254,
+ 500.0
+ ],
+ [
+ 111.182274913644704,
+ 22.956579699115601,
+ 500.0
+ ],
+ [
+ 111.097615,
+ 22.949743352761381,
+ 500.0
+ ],
+ [
+ 111.012955086355305,
+ 22.956579699115601,
+ 500.0
+ ],
+ [
+ 110.930842444962906,
+ 22.976883010116254,
+ 500.0
+ ],
+ [
+ 110.853749899913396,
+ 23.010042120554733,
+ 500.0
+ ],
+ [
+ 110.784003305110403,
+ 23.055058327955141,
+ 500.0
+ ],
+ [
+ 110.723712851355614,
+ 23.110574704410585,
+ 500.0
+ ],
+ [
+ 110.674710056944633,
+ 23.174916046281979,
+ 500.0
+ ],
+ [
+ 110.638492217795175,
+ 23.246138394095723,
+ 500.0
+ ],
+ [
+ 110.616175978677944,
+ 23.322086778373095,
+ 500.0
+ ],
+ [
+ 110.60846152900497,
+ 23.400459593659338,
+ 500.0
+ ],
+ [
+ 110.615608716857452,
+ 23.478877779863744,
+ 500.0
+ ],
+ [
+ 110.637426106469576,
+ 23.554956805424432,
+ 500.0
+ ],
+ [
+ 110.673273672874174,
+ 23.626379309977647,
+ 500.0
+ ],
+ [
+ 110.72207943310498,
+ 23.690966184869254,
+ 500.0
+ ],
+ [
+ 110.782369862858957,
+ 23.746743857470008,
+ 500.0
+ ],
+ [
+ 110.852313455070743,
+ 23.792005607969603,
+ 500.0
+ ],
+ [
+ 110.929776264529707,
+ 23.825364890589444,
+ 500.0
+ ],
+ [
+ 111.012387779428025,
+ 23.845798856452788,
+ 500.0
+ ],
+ [
+ 111.097615,
+ 23.85268057908808,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286024,
+ "name": "Wuzhou Xijiang Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "23.436445829416",
+ "lng": "111.130876426102",
+ "radius": 13389,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.169247408,
+ 23.4459880243,
+ 0.0
+ ],
+ [
+ 111.24080878,
+ 23.5022624721,
+ 0.0
+ ],
+ [
+ 111.18641286899999,
+ 23.5455599332,
+ 0.0
+ ],
+ [
+ 111.135716593,
+ 23.472692823199999,
+ 0.0
+ ],
+ [
+ 111.117002539,
+ 23.478462514499999,
+ 0.0
+ ],
+ [
+ 111.081236179,
+ 23.475812135799998,
+ 0.0
+ ],
+ [
+ 111.051713402,
+ 23.457107907400001,
+ 0.0
+ ],
+ [
+ 111.023435276,
+ 23.4235111397,
+ 0.0
+ ],
+ [
+ 111.01796780399999,
+ 23.407689345,
+ 0.0
+ ],
+ [
+ 111.017149606,
+ 23.3911081002,
+ 0.0
+ ],
+ [
+ 111.029356844,
+ 23.3601618199,
+ 0.0
+ ],
+ [
+ 111.169247408,
+ 23.4459880243,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286024,
+ "name": "Wuzhou Xijiang Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "23.3696757282207",
+ "lng": "111.067753531557",
+ "radius": 13389,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.957922632,
+ 23.3038812526,
+ 0.0
+ ],
+ [
+ 111.012240756,
+ 23.260589184200001,
+ 0.0
+ ],
+ [
+ 111.062828659,
+ 23.333498380599998,
+ 0.0
+ ],
+ [
+ 111.081491539,
+ 23.327736293,
+ 0.0
+ ],
+ [
+ 111.117219945,
+ 23.330363482199999,
+ 0.0
+ ],
+ [
+ 111.146738063,
+ 23.3490363023,
+ 0.0
+ ],
+ [
+ 111.175062907,
+ 23.382630351500001,
+ 0.0
+ ],
+ [
+ 111.180557428,
+ 23.398443949099999,
+ 0.0
+ ],
+ [
+ 111.181405905,
+ 23.415023914100001,
+ 0.0
+ ],
+ [
+ 111.169247408,
+ 23.4459880243,
+ 0.0
+ ],
+ [
+ 111.029356844,
+ 23.3601618199,
+ 0.0
+ ],
+ [
+ 110.957922632,
+ 23.3038812526,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286024,
+ "name": "Wuzhou Xijiang Airport",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "23.4029884845524",
+ "lng": "111.099404679489",
+ "radius": 23584,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 111.03612794199999,
+ 23.199002546599999,
+ 120.0
+ ],
+ [
+ 110.888259358,
+ 23.3168810789,
+ 120.0
+ ],
+ [
+ 111.16245469899999,
+ 23.607056346099998,
+ 120.0
+ ],
+ [
+ 111.310647758,
+ 23.4891778143,
+ 120.0
+ ],
+ [
+ 111.03612794199999,
+ 23.199002546599999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8652,
+ "name": "Foshan Shadi Airport",
+ "country": "CN",
+ "city": "Foshan",
+ "height": 0,
+ "level": 2,
+ "lat": "23.0401778755374",
+ "lng": "113.061018107684",
+ "radius": 13685,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.029077843,
+ 23.012974401800001,
+ 0.0
+ ],
+ [
+ 112.995017712,
+ 22.933140205499999,
+ 0.0
+ ],
+ [
+ 113.072184225,
+ 22.9175274746,
+ 0.0
+ ],
+ [
+ 113.077610801,
+ 23.003163899800001,
+ 0.0
+ ],
+ [
+ 113.110955121,
+ 23.013678895,
+ 0.0
+ ],
+ [
+ 113.124527778,
+ 23.024608368,
+ 0.0
+ ],
+ [
+ 113.134566604,
+ 23.03839783,
+ 0.0
+ ],
+ [
+ 113.14727145099999,
+ 23.0828664555,
+ 0.0
+ ],
+ [
+ 113.146505702,
+ 23.115318202200001,
+ 0.0
+ ],
+ [
+ 113.139299279,
+ 23.130535886200001,
+ 0.0
+ ],
+ [
+ 113.113534828,
+ 23.1533822024,
+ 0.0
+ ],
+ [
+ 113.029077843,
+ 23.012974401800001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8652,
+ "name": "Foshan Shadi Airport",
+ "country": "CN",
+ "city": "Foshan",
+ "height": 0,
+ "level": 2,
+ "lat": "23.1261884969783",
+ "lng": "113.081569280393",
+ "radius": 13686,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.147673237,
+ 23.233225863099999,
+ 0.0
+ ],
+ [
+ 113.070356649,
+ 23.248840352799998,
+ 0.0
+ ],
+ [
+ 113.064925683,
+ 23.1632077308,
+ 0.0
+ ],
+ [
+ 113.031496451,
+ 23.152649434400001,
+ 0.0
+ ],
+ [
+ 113.017929849,
+ 23.141700039900002,
+ 0.0
+ ],
+ [
+ 113.002118134,
+ 23.112173958700001,
+ 0.0
+ ],
+ [
+ 112.995277059,
+ 23.083473617900001,
+ 0.0
+ ],
+ [
+ 112.996085591,
+ 23.0510042957,
+ 0.0
+ ],
+ [
+ 113.003309251,
+ 23.035795243100001,
+ 0.0
+ ],
+ [
+ 113.029077843,
+ 23.012974401800001,
+ 0.0
+ ],
+ [
+ 113.113534828,
+ 23.1533822024,
+ 0.0
+ ],
+ [
+ 113.147673237,
+ 23.233225863099999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8652,
+ "name": "Foshan Shadi Airport",
+ "country": "CN",
+ "city": "Foshan",
+ "height": 120,
+ "level": 2,
+ "lat": "23.0831737104249",
+ "lng": "113.071333501907",
+ "radius": 23834,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.021104436,
+ 23.29249196,
+ 120.0
+ ],
+ [
+ 113.21233639,
+ 23.2538831108,
+ 120.0
+ ],
+ [
+ 113.121265284,
+ 22.8738110625,
+ 120.0
+ ],
+ [
+ 112.930573206,
+ 22.912419912,
+ 120.0
+ ],
+ [
+ 113.021104436,
+ 23.29249196,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001409,
+ "name": "Foshan Shadi Airport",
+ "country": "CN",
+ "city": "Foshan",
+ "height": 500,
+ "level": 2,
+ "lat": "23.084044",
+ "lng": "113.070033",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.070033,
+ 23.535517933137328,
+ 500.0
+ ],
+ [
+ 113.155054660689217,
+ 23.528636280420244,
+ 500.0
+ ],
+ [
+ 113.237467316506894,
+ 23.508202490487253,
+ 500.0
+ ],
+ [
+ 113.314744408806007,
+ 23.474843393283184,
+ 500.0
+ ],
+ [
+ 113.384521362517731,
+ 23.429581692644938,
+ 500.0
+ ],
+ [
+ 113.444669448664371,
+ 23.373803762369892,
+ 500.0
+ ],
+ [
+ 113.493361479307964,
+ 23.309216149477937,
+ 500.0
+ ],
+ [
+ 113.529127222543835,
+ 23.23779228028091,
+ 500.0
+ ],
+ [
+ 113.550896881921773,
+ 23.161711168468734,
+ 500.0
+ ],
+ [
+ 113.558031483982873,
+ 23.083290150031306,
+ 500.0
+ ],
+ [
+ 113.550339526434712,
+ 23.004913813814984,
+ 500.0
+ ],
+ [
+ 113.528079729234463,
+ 22.928961360241303,
+ 500.0
+ ],
+ [
+ 113.491950179634401,
+ 22.857734609523444,
+ 500.0
+ ],
+ [
+ 113.443064555911462,
+ 22.793388802575585,
+ 500.0
+ ],
+ [
+ 113.382916446374921,
+ 22.73786820205553,
+ 500.0
+ ],
+ [
+ 113.313333049907158,
+ 22.69284831721712,
+ 500.0
+ ],
+ [
+ 113.236419755848999,
+ 22.659686353592136,
+ 500.0
+ ],
+ [
+ 113.154497261243534,
+ 22.639381235176291,
+ 500.0
+ ],
+ [
+ 113.070033,
+ 22.632544269924438,
+ 500.0
+ ],
+ [
+ 112.985568738756456,
+ 22.639381235176291,
+ 500.0
+ ],
+ [
+ 112.903646244150991,
+ 22.659686353592136,
+ 500.0
+ ],
+ [
+ 112.826732950092833,
+ 22.69284831721712,
+ 500.0
+ ],
+ [
+ 112.757149553625069,
+ 22.73786820205553,
+ 500.0
+ ],
+ [
+ 112.697001444088528,
+ 22.793388802575585,
+ 500.0
+ ],
+ [
+ 112.648115820365589,
+ 22.857734609523444,
+ 500.0
+ ],
+ [
+ 112.611986270765527,
+ 22.928961360241303,
+ 500.0
+ ],
+ [
+ 112.589726473565278,
+ 23.004913813814984,
+ 500.0
+ ],
+ [
+ 112.582034516017117,
+ 23.083290150031306,
+ 500.0
+ ],
+ [
+ 112.589169118078217,
+ 23.161711168468734,
+ 500.0
+ ],
+ [
+ 112.610938777456155,
+ 23.23779228028091,
+ 500.0
+ ],
+ [
+ 112.646704520692026,
+ 23.309216149477937,
+ 500.0
+ ],
+ [
+ 112.69539655133562,
+ 23.373803762369892,
+ 500.0
+ ],
+ [
+ 112.755544637482259,
+ 23.429581692644938,
+ 500.0
+ ],
+ [
+ 112.825321591193983,
+ 23.474843393283184,
+ 500.0
+ ],
+ [
+ 112.902598683493096,
+ 23.508202490487253,
+ 500.0
+ ],
+ [
+ 112.985011339310773,
+ 23.528636280420244,
+ 500.0
+ ],
+ [
+ 113.070033,
+ 23.535517933137328,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001440,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Huizhou",
+ "height": 500,
+ "level": 2,
+ "lat": "23.049952",
+ "lng": "114.600282",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.600282,
+ 23.501427894595416,
+ 500.0
+ ],
+ [
+ 114.685281779705392,
+ 23.494546249465611,
+ 500.0
+ ],
+ [
+ 114.767673267993288,
+ 23.474112478666285,
+ 500.0
+ ],
+ [
+ 114.844930592001475,
+ 23.440753401787969,
+ 500.0
+ ],
+ [
+ 114.914689808706115,
+ 23.39549170710794,
+ 500.0
+ ],
+ [
+ 114.97482274441137,
+ 23.339713749970919,
+ 500.0
+ ],
+ [
+ 115.023502670890693,
+ 23.275126058852319,
+ 500.0
+ ],
+ [
+ 115.059259706583234,
+ 23.203702044352582,
+ 500.0
+ ],
+ [
+ 115.081024287599917,
+ 23.127620709951103,
+ 500.0
+ ],
+ [
+ 115.088157552179553,
+ 23.049199388991404,
+ 500.0
+ ],
+ [
+ 115.080467990696562,
+ 22.970822676425449,
+ 500.0
+ ],
+ [
+ 115.058214202781585,
+ 22.894869787682936,
+ 500.0
+ ],
+ [
+ 115.022094051717275,
+ 22.823642565965322,
+ 500.0
+ ],
+ [
+ 114.973220899871635,
+ 22.759296281253786,
+ 500.0
+ ],
+ [
+ 114.913087940841265,
+ 22.703775228680694,
+ 500.0
+ ],
+ [
+ 114.843521913766807,
+ 22.65875495023975,
+ 500.0
+ ],
+ [
+ 114.766627697029648,
+ 22.625592681207099,
+ 500.0
+ ],
+ [
+ 114.684725438965174,
+ 22.605287369313395,
+ 500.0
+ ],
+ [
+ 114.600282,
+ 22.598450337808853,
+ 500.0
+ ],
+ [
+ 114.51583856103484,
+ 22.605287369313395,
+ 500.0
+ ],
+ [
+ 114.433936302970366,
+ 22.625592681207099,
+ 500.0
+ ],
+ [
+ 114.357042086233207,
+ 22.65875495023975,
+ 500.0
+ ],
+ [
+ 114.287476059158749,
+ 22.703775228680694,
+ 500.0
+ ],
+ [
+ 114.22734310012838,
+ 22.759296281253786,
+ 500.0
+ ],
+ [
+ 114.178469948282739,
+ 22.823642565965322,
+ 500.0
+ ],
+ [
+ 114.142349797218429,
+ 22.894869787682936,
+ 500.0
+ ],
+ [
+ 114.120096009303452,
+ 22.970822676425449,
+ 500.0
+ ],
+ [
+ 114.112406447820462,
+ 23.049199388991404,
+ 500.0
+ ],
+ [
+ 114.119539712400098,
+ 23.127620709951103,
+ 500.0
+ ],
+ [
+ 114.141304293416781,
+ 23.203702044352582,
+ 500.0
+ ],
+ [
+ 114.177061329109321,
+ 23.275126058852319,
+ 500.0
+ ],
+ [
+ 114.225741255588645,
+ 23.339713749970919,
+ 500.0
+ ],
+ [
+ 114.2858741912939,
+ 23.39549170710794,
+ 500.0
+ ],
+ [
+ 114.355633407998539,
+ 23.440753401787969,
+ 500.0
+ ],
+ [
+ 114.432890732006726,
+ 23.474112478666285,
+ 500.0
+ ],
+ [
+ 114.515282220294623,
+ 23.494546249465611,
+ 500.0
+ ],
+ [
+ 114.600282,
+ 23.501427894595416,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1604,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Huizhou",
+ "height": 0,
+ "level": 2,
+ "lat": "23.0505264732887",
+ "lng": "114.648718110168",
+ "radius": 13673,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.685678811,
+ 23.030607594900001,
+ 0.0
+ ],
+ [
+ 114.778740857,
+ 23.022163992300001,
+ 0.0
+ ],
+ [
+ 114.774535109,
+ 23.092030916399999,
+ 0.0
+ ],
+ [
+ 114.68305690299999,
+ 23.074199030300001,
+ 0.0
+ ],
+ [
+ 114.67487088599999,
+ 23.089384870300002,
+ 0.0
+ ],
+ [
+ 114.647848287,
+ 23.1109583191,
+ 0.0
+ ],
+ [
+ 114.612713955,
+ 23.117206636799999,
+ 0.0
+ ],
+ [
+ 114.562616034,
+ 23.112624091,
+ 0.0
+ ],
+ [
+ 114.532496947,
+ 23.094854673299999,
+ 0.0
+ ],
+ [
+ 114.52219534,
+ 23.0812275746,
+ 0.0
+ ],
+ [
+ 114.516080415,
+ 23.065611798799999,
+ 0.0
+ ],
+ [
+ 114.685678811,
+ 23.030607594900001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1604,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Huizhou",
+ "height": 0,
+ "level": 2,
+ "lat": "23.0456032840858",
+ "lng": "114.553057065149",
+ "radius": 13672,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.423032928,
+ 23.074015431,
+ 0.0
+ ],
+ [
+ 114.427272622,
+ 23.0041490061,
+ 0.0
+ ],
+ [
+ 114.518722497,
+ 23.0220778228,
+ 0.0
+ ],
+ [
+ 114.526928795,
+ 23.006877577800001,
+ 0.0
+ ],
+ [
+ 114.553948038,
+ 22.985322723199999,
+ 0.0
+ ],
+ [
+ 114.589050171,
+ 22.979084850900001,
+ 0.0
+ ],
+ [
+ 114.639104195,
+ 22.983651801499999,
+ 0.0
+ ],
+ [
+ 114.669221685,
+ 23.0013877807,
+ 0.0
+ ],
+ [
+ 114.679539127,
+ 23.0150008126,
+ 0.0
+ ],
+ [
+ 114.685678811,
+ 23.030607594900001,
+ 0.0
+ ],
+ [
+ 114.516080415,
+ 23.065611798799999,
+ 0.0
+ ],
+ [
+ 114.423032928,
+ 23.074015431,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1604,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Huizhou",
+ "height": 120,
+ "level": 2,
+ "lat": "23.0478878059976",
+ "lng": "114.600902885199",
+ "radius": 23834,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.395226117,
+ 22.947392426299999,
+ 120.0
+ ],
+ [
+ 114.384333998,
+ 23.1269772361,
+ 120.0
+ ],
+ [
+ 114.806570027,
+ 23.1486597912,
+ 120.0
+ ],
+ [
+ 114.8174639,
+ 22.9690749813,
+ 120.0
+ ],
+ [
+ 114.395226117,
+ 22.947392426299999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1648,
+ "name": "Guangzhou Baiyun International Airport",
+ "country": "CN",
+ "city": "Guangzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "23.3475917742201",
+ "lng": "113.287243982926",
+ "radius": 14234,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.356271254,
+ 23.4588317718,
+ 0.0
+ ],
+ [
+ 113.243753686,
+ 23.3211643438,
+ 0.0
+ ],
+ [
+ 113.207050157,
+ 23.2428916416,
+ 0.0
+ ],
+ [
+ 113.233104568549479,
+ 23.236833961948566,
+ 0.0
+ ],
+ [
+ 113.232065964,
+ 23.234521503,
+ 0.0
+ ],
+ [
+ 113.305919349,
+ 23.2207331792,
+ 0.0
+ ],
+ [
+ 113.312536472,
+ 23.3040268307,
+ 0.0
+ ],
+ [
+ 113.344697756,
+ 23.314388896600001,
+ 0.0
+ ],
+ [
+ 113.358323893,
+ 23.325294223,
+ 0.0
+ ],
+ [
+ 113.36841431,
+ 23.339065803800001,
+ 0.0
+ ],
+ [
+ 113.38595174,
+ 23.386452925699999,
+ 0.0
+ ],
+ [
+ 113.387128429,
+ 23.4192510522,
+ 0.0
+ ],
+ [
+ 113.380772635,
+ 23.434791028300001,
+ 0.0
+ ],
+ [
+ 113.356271254,
+ 23.4588317718,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1648,
+ "name": "Guangzhou Baiyun International Airport",
+ "country": "CN",
+ "city": "Guangzhou",
+ "height": 0,
+ "level": 2,
+ "lat": "23.4316851305394",
+ "lng": "113.3157786673",
+ "radius": 14320,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.385405230385416,
+ 23.536555850170934,
+ 0.0
+ ],
+ [
+ 113.387924157,
+ 23.5421728271,
+ 0.0
+ ],
+ [
+ 113.317446248,
+ 23.5559612313,
+ 0.0
+ ],
+ [
+ 113.317163063700917,
+ 23.553070853379502,
+ 0.0
+ ],
+ [
+ 113.292397665,
+ 23.557588389599999,
+ 0.0
+ ],
+ [
+ 113.28748504799999,
+ 23.474323178700001,
+ 0.0
+ ],
+ [
+ 113.253262354,
+ 23.464769949699999,
+ 0.0
+ ],
+ [
+ 113.239278532,
+ 23.454236886,
+ 0.0
+ ],
+ [
+ 113.222379651,
+ 23.425205080200001,
+ 0.0
+ ],
+ [
+ 113.21498073,
+ 23.362032732900001,
+ 0.0
+ ],
+ [
+ 113.220532778,
+ 23.3462365215,
+ 0.0
+ ],
+ [
+ 113.243753686,
+ 23.3211643438,
+ 0.0
+ ],
+ [
+ 113.356271254,
+ 23.4588317718,
+ 0.0
+ ],
+ [
+ 113.389625571,
+ 23.535426136200002,
+ 0.0
+ ],
+ [
+ 113.385405230385416,
+ 23.536555850170934,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1648,
+ "name": "Guangzhou Baiyun International Airport",
+ "country": "CN",
+ "city": "Guangzhou",
+ "height": 120,
+ "level": 2,
+ "lat": "23.3895356960261",
+ "lng": "113.30195437374",
+ "radius": 24690,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.393940138730571,
+ 23.574154059339847,
+ 120.0
+ ],
+ [
+ 113.421921663,
+ 23.569576342400001,
+ 120.0
+ ],
+ [
+ 113.421504842761905,
+ 23.567441262384381,
+ 120.0
+ ],
+ [
+ 113.459391689,
+ 23.558214727399999,
+ 120.0
+ ],
+ [
+ 113.457233889300909,
+ 23.550779820291613,
+ 120.0
+ ],
+ [
+ 113.469570656,
+ 23.547319762600001,
+ 120.0
+ ],
+ [
+ 113.367970706109645,
+ 23.24321490798479,
+ 120.0
+ ],
+ [
+ 113.349300638,
+ 23.178885386499999,
+ 120.0
+ ],
+ [
+ 113.346691425441648,
+ 23.179522627025619,
+ 120.0
+ ],
+ [
+ 113.343789301,
+ 23.170836105700001,
+ 120.0
+ ],
+ [
+ 113.214726430934661,
+ 23.207137002799602,
+ 120.0
+ ],
+ [
+ 113.154284803,
+ 23.217053843,
+ 120.0
+ ],
+ [
+ 113.228716975,
+ 23.601184212100002,
+ 120.0
+ ],
+ [
+ 113.266982606507071,
+ 23.594924037426271,
+ 120.0
+ ],
+ [
+ 113.269720685,
+ 23.6044050633,
+ 120.0
+ ],
+ [
+ 113.393940138730571,
+ 23.574154059339847,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33374,
+ "name": "观澜镇牛栏窝导航台禁飞区",
+ "country": "CN",
+ "city": "深圳",
+ "height": 0,
+ "level": 2,
+ "lat": "22.71",
+ "lng": "114.033333",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.033333,
+ 22.719030157593149,
+ 0.0
+ ],
+ [
+ 114.035023276324594,
+ 22.718892960354175,
+ 0.0
+ ],
+ [
+ 114.036662184604424,
+ 22.718485538098157,
+ 0.0
+ ],
+ [
+ 114.038199918775902,
+ 22.717820272425339,
+ 0.0
+ ],
+ [
+ 114.039589749134208,
+ 22.716917380591255,
+ 0.0
+ ],
+ [
+ 114.040789442967409,
+ 22.715804300793881,
+ 0.0
+ ],
+ [
+ 114.04176254818843,
+ 22.714514857960694,
+ 0.0
+ ],
+ [
+ 114.042479500912407,
+ 22.713088235444999,
+ 0.0
+ ],
+ [
+ 114.042918523326762,
+ 22.711567783942634,
+ 0.0
+ ],
+ [
+ 114.043066284622412,
+ 22.709999703881795,
+ 0.0
+ ],
+ [
+ 114.042918304998167,
+ 22.708431641371838,
+ 0.0
+ ],
+ [
+ 114.042479090588856,
+ 22.706911240405155,
+ 0.0
+ ],
+ [
+ 114.041761995361,
+ 22.705484695314645,
+ 0.0
+ ],
+ [
+ 114.040788814315249,
+ 22.704195347457514,
+ 0.0
+ ],
+ [
+ 114.039589120482034,
+ 22.70308236873155,
+ 0.0
+ ],
+ [
+ 114.038199365948472,
+ 22.702179571873497,
+ 0.0
+ ],
+ [
+ 114.036661774280859,
+ 22.701514383625867,
+ 0.0
+ ],
+ [
+ 114.035023057995986,
+ 22.701107011905567,
+ 0.0
+ ],
+ [
+ 114.033333,
+ 22.700969832217446,
+ 0.0
+ ],
+ [
+ 114.031642942004012,
+ 22.701107011905567,
+ 0.0
+ ],
+ [
+ 114.030004225719139,
+ 22.701514383625867,
+ 0.0
+ ],
+ [
+ 114.028466634051526,
+ 22.702179571873497,
+ 0.0
+ ],
+ [
+ 114.027076879517963,
+ 22.70308236873155,
+ 0.0
+ ],
+ [
+ 114.025877185684749,
+ 22.704195347457514,
+ 0.0
+ ],
+ [
+ 114.024904004638998,
+ 22.705484695314645,
+ 0.0
+ ],
+ [
+ 114.024186909411142,
+ 22.706911240405155,
+ 0.0
+ ],
+ [
+ 114.02374769500183,
+ 22.708431641371838,
+ 0.0
+ ],
+ [
+ 114.023599715377586,
+ 22.709999703881795,
+ 0.0
+ ],
+ [
+ 114.023747476673236,
+ 22.711567783942634,
+ 0.0
+ ],
+ [
+ 114.024186499087591,
+ 22.713088235444999,
+ 0.0
+ ],
+ [
+ 114.024903451811568,
+ 22.714514857960694,
+ 0.0
+ ],
+ [
+ 114.025876557032589,
+ 22.715804300793881,
+ 0.0
+ ],
+ [
+ 114.02707625086579,
+ 22.716917380591255,
+ 0.0
+ ],
+ [
+ 114.028466081224096,
+ 22.717820272425339,
+ 0.0
+ ],
+ [
+ 114.030003815395574,
+ 22.718485538098157,
+ 0.0
+ ],
+ [
+ 114.031642723675404,
+ 22.718892960354175,
+ 0.0
+ ],
+ [
+ 114.033333,
+ 22.719030157593149,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001500,
+ "name": "Guangzhou Baiyun International Airport",
+ "country": "CN",
+ "city": "Guangzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "23.398271",
+ "lng": "113.305038",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.305038,
+ 23.849726750897982,
+ 500.0
+ ],
+ [
+ 113.390263289519027,
+ 23.842845028908378,
+ 500.0
+ ],
+ [
+ 113.472872936298458,
+ 23.822411064666511,
+ 500.0
+ ],
+ [
+ 113.550334001069217,
+ 23.789051783743297,
+ 500.0
+ ],
+ [
+ 113.620276027785835,
+ 23.743790033662343,
+ 500.0
+ ],
+ [
+ 113.680565120236807,
+ 23.688012358597934,
+ 500.0
+ ],
+ [
+ 113.729369811934319,
+ 23.623425476748949,
+ 500.0
+ ],
+ [
+ 113.765216609513672,
+ 23.552002959380655,
+ 500.0
+ ],
+ [
+ 113.787033550563166,
+ 23.475923914262985,
+ 500.0
+ ],
+ [
+ 113.794180620011502,
+ 23.397505701534712,
+ 500.0
+ ],
+ [
+ 113.786466381487344,
+ 23.319132853295194,
+ 500.0
+ ],
+ [
+ 113.764150672492875,
+ 23.243184430947906,
+ 500.0
+ ],
+ [
+ 113.727933662707983,
+ 23.171962041955059,
+ 500.0
+ ],
+ [
+ 113.678931969046459,
+ 23.10762065833174,
+ 500.0
+ ],
+ [
+ 113.618642852600431,
+ 23.052104242383955,
+ 500.0
+ ],
+ [
+ 113.548897791085267,
+ 23.007088000605549,
+ 500.0
+ ],
+ [
+ 113.471806930186659,
+ 22.973928863496461,
+ 500.0
+ ],
+ [
+ 113.389696075347231,
+ 22.953625535601525,
+ 500.0
+ ],
+ [
+ 113.305038,
+ 22.946789183462471,
+ 500.0
+ ],
+ [
+ 113.220379924652761,
+ 22.953625535601525,
+ 500.0
+ ],
+ [
+ 113.138269069813333,
+ 22.973928863496461,
+ 500.0
+ ],
+ [
+ 113.061178208914725,
+ 23.007088000605549,
+ 500.0
+ ],
+ [
+ 112.991433147399562,
+ 23.052104242383955,
+ 500.0
+ ],
+ [
+ 112.931144030953533,
+ 23.10762065833174,
+ 500.0
+ ],
+ [
+ 112.882142337292009,
+ 23.171962041955059,
+ 500.0
+ ],
+ [
+ 112.845925327507118,
+ 23.243184430947906,
+ 500.0
+ ],
+ [
+ 112.823609618512648,
+ 23.319132853295194,
+ 500.0
+ ],
+ [
+ 112.81589537998849,
+ 23.397505701534712,
+ 500.0
+ ],
+ [
+ 112.823042449436826,
+ 23.475923914262985,
+ 500.0
+ ],
+ [
+ 112.84485939048632,
+ 23.552002959380655,
+ 500.0
+ ],
+ [
+ 112.880706188065673,
+ 23.623425476748949,
+ 500.0
+ ],
+ [
+ 112.929510879763185,
+ 23.688012358597934,
+ 500.0
+ ],
+ [
+ 112.989799972214158,
+ 23.743790033662343,
+ 500.0
+ ],
+ [
+ 113.059741998930775,
+ 23.789051783743297,
+ 500.0
+ ],
+ [
+ 113.137203063701534,
+ 23.822411064666511,
+ 500.0
+ ],
+ [
+ 113.219812710480966,
+ 23.842845028908378,
+ 500.0
+ ],
+ [
+ 113.305038,
+ 23.849726750897982,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1913,
+ "name": "Chi Mei Airport",
+ "country": "TW",
+ "city": "Chi Mei",
+ "height": 0,
+ "level": 2,
+ "lat": "23.2130903793784",
+ "lng": "119.417548500602",
+ "radius": 4877,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.38048,
+ 23.18568,
+ 0.0
+ ],
+ [
+ 119.40659,
+ 23.25578,
+ 0.0
+ ],
+ [
+ 119.45463,
+ 23.24048,
+ 0.0
+ ],
+ [
+ 119.4285,
+ 23.1704,
+ 0.0
+ ],
+ [
+ 119.38048,
+ 23.18568,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1913,
+ "name": "Chi Mei Airport",
+ "country": "TW",
+ "city": "Chi Mei",
+ "height": 0,
+ "level": 2,
+ "lat": "23.1747797146799",
+ "lng": "119.403278168457",
+ "radius": 2865,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.38048,
+ 23.18568,
+ 0.0
+ ],
+ [
+ 119.4285,
+ 23.1704,
+ 0.0
+ ],
+ [
+ 119.429762,
+ 23.166346,
+ 0.0
+ ],
+ [
+ 119.425619,
+ 23.165427,
+ 0.0
+ ],
+ [
+ 119.421406,
+ 23.164845,
+ 0.0
+ ],
+ [
+ 119.417153,
+ 23.164605,
+ 0.0
+ ],
+ [
+ 119.412895,
+ 23.164709,
+ 0.0
+ ],
+ [
+ 119.408662,
+ 23.165155,
+ 0.0
+ ],
+ [
+ 119.404487,
+ 23.16594,
+ 0.0
+ ],
+ [
+ 119.400403,
+ 23.167059,
+ 0.0
+ ],
+ [
+ 119.396439,
+ 23.168502,
+ 0.0
+ ],
+ [
+ 119.392626,
+ 23.17026,
+ 0.0
+ ],
+ [
+ 119.388993,
+ 23.172318,
+ 0.0
+ ],
+ [
+ 119.385568,
+ 23.17466,
+ 0.0
+ ],
+ [
+ 119.382377,
+ 23.17727,
+ 0.0
+ ],
+ [
+ 119.379444,
+ 23.180127,
+ 0.0
+ ],
+ [
+ 119.376791,
+ 23.183209,
+ 0.0
+ ],
+ [
+ 119.38048,
+ 23.18568,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1913,
+ "name": "Chi Mei Airport",
+ "country": "TW",
+ "city": "Chi Mei",
+ "height": 0,
+ "level": 2,
+ "lat": "23.2514047225031",
+ "lng": "119.431833176443",
+ "radius": 2865,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.40659,
+ 23.25578,
+ 0.0
+ ],
+ [
+ 119.405333,
+ 23.259839,
+ 0.0
+ ],
+ [
+ 119.409478,
+ 23.260759,
+ 0.0
+ ],
+ [
+ 119.413695,
+ 23.261341,
+ 0.0
+ ],
+ [
+ 119.41795,
+ 23.261581,
+ 0.0
+ ],
+ [
+ 119.422212,
+ 23.261477,
+ 0.0
+ ],
+ [
+ 119.426447,
+ 23.261031,
+ 0.0
+ ],
+ [
+ 119.430625,
+ 23.260245,
+ 0.0
+ ],
+ [
+ 119.434712,
+ 23.259125,
+ 0.0
+ ],
+ [
+ 119.438678,
+ 23.25768,
+ 0.0
+ ],
+ [
+ 119.442493,
+ 23.255922,
+ 0.0
+ ],
+ [
+ 119.446127,
+ 23.253863,
+ 0.0
+ ],
+ [
+ 119.449553,
+ 23.251519,
+ 0.0
+ ],
+ [
+ 119.452745,
+ 23.248908,
+ 0.0
+ ],
+ [
+ 119.455678,
+ 23.24605,
+ 0.0
+ ],
+ [
+ 119.45833,
+ 23.242966,
+ 0.0
+ ],
+ [
+ 119.45463,
+ 23.24048,
+ 0.0
+ ],
+ [
+ 119.40659,
+ 23.25578,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1913,
+ "name": "Chi Mei Airport",
+ "country": "TW",
+ "city": "Chi Mei",
+ "height": 60,
+ "level": 2,
+ "lat": "23.2130901315124",
+ "lng": "119.417547196575",
+ "radius": 16587,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.41109,
+ 23.36215,
+ 60.0
+ ],
+ [
+ 119.52203,
+ 23.32682,
+ 60.0
+ ],
+ [
+ 119.42399,
+ 23.06403,
+ 60.0
+ ],
+ [
+ 119.31324,
+ 23.09928,
+ 60.0
+ ],
+ [
+ 119.41109,
+ 23.36215,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001454,
+ "name": "Wang-an Airport",
+ "country": "TW",
+ "city": "Wang-an",
+ "height": 500,
+ "level": 2,
+ "lat": "23.369223",
+ "lng": "119.503422",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.503422,
+ 23.820680439509996,
+ 500.0
+ ],
+ [
+ 119.588628317305748,
+ 23.813798723875149,
+ 500.0
+ ],
+ [
+ 119.671219610200367,
+ 23.7933647755947,
+ 500.0
+ ],
+ [
+ 119.748663533794144,
+ 23.760005511385035,
+ 500.0
+ ],
+ [
+ 119.818590179903708,
+ 23.714743765465965,
+ 500.0
+ ],
+ [
+ 119.878866133726902,
+ 23.658966066238705,
+ 500.0
+ ],
+ [
+ 119.92766032743944,
+ 23.594379116058199,
+ 500.0
+ ],
+ [
+ 119.963499571630109,
+ 23.522956472778741,
+ 500.0
+ ],
+ [
+ 119.985312105818196,
+ 23.446877235475174,
+ 500.0
+ ],
+ [
+ 119.992458012139281,
+ 23.368458762071977,
+ 500.0
+ ],
+ [
+ 119.984745848253766,
+ 23.29008558994979,
+ 500.0
+ ],
+ [
+ 119.962435347708876,
+ 23.214136793415253,
+ 500.0
+ ],
+ [
+ 119.926226486303989,
+ 23.142913999663531,
+ 500.0
+ ],
+ [
+ 119.877235607253823,
+ 23.07857220564226,
+ 500.0
+ ],
+ [
+ 119.816959629492132,
+ 23.023055401501161,
+ 500.0
+ ],
+ [
+ 119.747229632044309,
+ 22.978038821797576,
+ 500.0
+ ],
+ [
+ 119.670155317351004,
+ 22.944879422522721,
+ 500.0
+ ],
+ [
+ 119.588062014751685,
+ 22.924575928560078,
+ 500.0
+ ],
+ [
+ 119.503422,
+ 22.917739519557067,
+ 500.0
+ ],
+ [
+ 119.418781985248316,
+ 22.924575928560078,
+ 500.0
+ ],
+ [
+ 119.336688682648997,
+ 22.944879422522721,
+ 500.0
+ ],
+ [
+ 119.259614367955692,
+ 22.978038821797576,
+ 500.0
+ ],
+ [
+ 119.189884370507869,
+ 23.023055401501161,
+ 500.0
+ ],
+ [
+ 119.129608392746178,
+ 23.07857220564226,
+ 500.0
+ ],
+ [
+ 119.080617513696012,
+ 23.142913999663531,
+ 500.0
+ ],
+ [
+ 119.044408652291125,
+ 23.214136793415253,
+ 500.0
+ ],
+ [
+ 119.022098151746235,
+ 23.29008558994979,
+ 500.0
+ ],
+ [
+ 119.01438598786072,
+ 23.368458762071977,
+ 500.0
+ ],
+ [
+ 119.021531894181805,
+ 23.446877235475174,
+ 500.0
+ ],
+ [
+ 119.043344428369892,
+ 23.522956472778741,
+ 500.0
+ ],
+ [
+ 119.079183672560561,
+ 23.594379116058199,
+ 500.0
+ ],
+ [
+ 119.127977866273099,
+ 23.658966066238705,
+ 500.0
+ ],
+ [
+ 119.188253820096293,
+ 23.714743765465965,
+ 500.0
+ ],
+ [
+ 119.258180466205857,
+ 23.760005511385035,
+ 500.0
+ ],
+ [
+ 119.335624389799634,
+ 23.7933647755947,
+ 500.0
+ ],
+ [
+ 119.418215682694253,
+ 23.813798723875149,
+ 500.0
+ ],
+ [
+ 119.503422,
+ 23.820680439509996,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8022,
+ "name": "Wang-an Airport",
+ "country": "TW",
+ "city": "Wang-an",
+ "height": 0,
+ "level": 2,
+ "lat": "23.3691902739371",
+ "lng": "119.503588023616",
+ "radius": 4894,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.4943,
+ 23.41237,
+ 0.0
+ ],
+ [
+ 119.5418,
+ 23.39554,
+ 0.0
+ ],
+ [
+ 119.51287,
+ 23.32601,
+ 0.0
+ ],
+ [
+ 119.46539,
+ 23.34284,
+ 0.0
+ ],
+ [
+ 119.4943,
+ 23.41237,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8022,
+ "name": "Wang-an Airport",
+ "country": "TW",
+ "city": "Wang-an",
+ "height": 0,
+ "level": 2,
+ "lat": "23.3312066753721",
+ "lng": "119.487794329097",
+ "radius": 2865,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.51287,
+ 23.32601,
+ 0.0
+ ],
+ [
+ 119.513974,
+ 23.321924,
+ 0.0
+ ],
+ [
+ 119.509794,
+ 23.321139,
+ 0.0
+ ],
+ [
+ 119.505557,
+ 23.320694,
+ 0.0
+ ],
+ [
+ 119.501293,
+ 23.320591,
+ 0.0
+ ],
+ [
+ 119.497036,
+ 23.320832,
+ 0.0
+ ],
+ [
+ 119.492818,
+ 23.321414,
+ 0.0
+ ],
+ [
+ 119.488671,
+ 23.322334,
+ 0.0
+ ],
+ [
+ 119.484626,
+ 23.323584,
+ 0.0
+ ],
+ [
+ 119.480714,
+ 23.325154,
+ 0.0
+ ],
+ [
+ 119.476966,
+ 23.327033,
+ 0.0
+ ],
+ [
+ 119.473409,
+ 23.329207,
+ 0.0
+ ],
+ [
+ 119.47007,
+ 23.331659,
+ 0.0
+ ],
+ [
+ 119.466976,
+ 23.33437,
+ 0.0
+ ],
+ [
+ 119.464149,
+ 23.337319,
+ 0.0
+ ],
+ [
+ 119.461611,
+ 23.340485,
+ 0.0
+ ],
+ [
+ 119.46539,
+ 23.34284,
+ 0.0
+ ],
+ [
+ 119.51287,
+ 23.32601,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8022,
+ "name": "Wang-an Airport",
+ "country": "TW",
+ "city": "Wang-an",
+ "height": 0,
+ "level": 2,
+ "lat": "23.4071871828915",
+ "lng": "119.519397837735",
+ "radius": 2865,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.4943,
+ 23.41237,
+ 0.0
+ ],
+ [
+ 119.493202,
+ 23.416471,
+ 0.0
+ ],
+ [
+ 119.497385,
+ 23.417256,
+ 0.0
+ ],
+ [
+ 119.501626,
+ 23.417702,
+ 0.0
+ ],
+ [
+ 119.505892,
+ 23.417804,
+ 0.0
+ ],
+ [
+ 119.510153,
+ 23.417563,
+ 0.0
+ ],
+ [
+ 119.514374,
+ 23.41698,
+ 0.0
+ ],
+ [
+ 119.518524,
+ 23.41606,
+ 0.0
+ ],
+ [
+ 119.522571,
+ 23.41481,
+ 0.0
+ ],
+ [
+ 119.526484,
+ 23.413238,
+ 0.0
+ ],
+ [
+ 119.530235,
+ 23.411358,
+ 0.0
+ ],
+ [
+ 119.533793,
+ 23.409183,
+ 0.0
+ ],
+ [
+ 119.537132,
+ 23.40673,
+ 0.0
+ ],
+ [
+ 119.540227,
+ 23.404017,
+ 0.0
+ ],
+ [
+ 119.543053,
+ 23.401066,
+ 0.0
+ ],
+ [
+ 119.54559,
+ 23.397899,
+ 0.0
+ ],
+ [
+ 119.5418,
+ 23.39554,
+ 0.0
+ ],
+ [
+ 119.4943,
+ 23.41237,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8022,
+ "name": "Wang-an Airport",
+ "country": "TW",
+ "city": "Wang-an",
+ "height": 60,
+ "level": 2,
+ "lat": "23.3691950017873",
+ "lng": "119.503590844668",
+ "radius": 16605,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.50284,
+ 23.51853,
+ 60.0
+ ],
+ [
+ 119.6125,
+ 23.47964,
+ 60.0
+ ],
+ [
+ 119.50434,
+ 23.21986,
+ 60.0
+ ],
+ [
+ 119.39485,
+ 23.25866,
+ 60.0
+ ],
+ [
+ 119.50284,
+ 23.51853,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001490,
+ "name": "Chi Mei Airport",
+ "country": "TW",
+ "city": "Chi Mei",
+ "height": 500,
+ "level": 2,
+ "lat": "23.213236",
+ "lng": "119.417316",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.417316,
+ 23.664702480192233,
+ 500.0
+ ],
+ [
+ 119.502420954173388,
+ 23.65782079885161,
+ 500.0
+ ],
+ [
+ 119.58491418792174,
+ 23.637386936809886,
+ 500.0
+ ],
+ [
+ 119.662266532323713,
+ 23.604027763285991,
+ 500.0
+ ],
+ [
+ 119.73211100651514,
+ 23.558766041132344,
+ 500.0
+ ],
+ [
+ 119.792316767812437,
+ 23.502988214129793,
+ 500.0
+ ],
+ [
+ 119.841054878238126,
+ 23.438400899620977,
+ 500.0
+ ],
+ [
+ 119.876853772037009,
+ 23.366977583482775,
+ 500.0
+ ],
+ [
+ 119.898642767149013,
+ 23.29089731809152,
+ 500.0
+ ],
+ [
+ 119.905782464508675,
+ 23.21247744941839,
+ 500.0
+ ],
+ [
+ 119.898081389289899,
+ 23.134102543081184,
+ 500.0
+ ],
+ [
+ 119.875798719060342,
+ 23.05815174249534,
+ 500.0
+ ],
+ [
+ 119.839633393286007,
+ 22.98692678059253,
+ 500.0
+ ],
+ [
+ 119.790700292555982,
+ 22.922582787946972,
+ 500.0
+ ],
+ [
+ 119.730494507621799,
+ 22.867063903954964,
+ 500.0
+ ],
+ [
+ 119.660844987520846,
+ 22.822045513610725,
+ 500.0
+ ],
+ [
+ 119.58385906688531,
+ 22.788884709560641,
+ 500.0
+ ],
+ [
+ 119.501859531891427,
+ 22.768580325724741,
+ 500.0
+ ],
+ [
+ 119.417316,
+ 22.761743612012292,
+ 500.0
+ ],
+ [
+ 119.332772468108573,
+ 22.768580325724741,
+ 500.0
+ ],
+ [
+ 119.250772933114689,
+ 22.788884709560641,
+ 500.0
+ ],
+ [
+ 119.173787012479153,
+ 22.822045513610725,
+ 500.0
+ ],
+ [
+ 119.1041374923782,
+ 22.867063903954964,
+ 500.0
+ ],
+ [
+ 119.043931707444017,
+ 22.922582787946972,
+ 500.0
+ ],
+ [
+ 118.994998606713992,
+ 22.98692678059253,
+ 500.0
+ ],
+ [
+ 118.958833280939658,
+ 23.05815174249534,
+ 500.0
+ ],
+ [
+ 118.9365506107101,
+ 23.134102543081184,
+ 500.0
+ ],
+ [
+ 118.928849535491324,
+ 23.21247744941839,
+ 500.0
+ ],
+ [
+ 118.935989232850986,
+ 23.29089731809152,
+ 500.0
+ ],
+ [
+ 118.95777822796299,
+ 23.366977583482775,
+ 500.0
+ ],
+ [
+ 118.993577121761874,
+ 23.438400899620977,
+ 500.0
+ ],
+ [
+ 119.042315232187562,
+ 23.502988214129793,
+ 500.0
+ ],
+ [
+ 119.102520993484859,
+ 23.558766041132344,
+ 500.0
+ ],
+ [
+ 119.172365467676286,
+ 23.604027763285991,
+ 500.0
+ ],
+ [
+ 119.249717812078259,
+ 23.637386936809886,
+ 500.0
+ ],
+ [
+ 119.332211045826611,
+ 23.65782079885161,
+ 500.0
+ ],
+ [
+ 119.417316,
+ 23.664702480192233,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7526,
+ "name": "Tainan Airport",
+ "country": "TW",
+ "city": "Tainan City",
+ "height": 0,
+ "level": 2,
+ "lat": "22.95041683508",
+ "lng": "120.20755144809",
+ "radius": 5865,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.18105,
+ 22.99718,
+ 0.0
+ ],
+ [
+ 120.23176,
+ 22.99823,
+ 0.0
+ ],
+ [
+ 120.23403,
+ 22.90365,
+ 0.0
+ ],
+ [
+ 120.18336,
+ 22.9026,
+ 0.0
+ ],
+ [
+ 120.18105,
+ 22.99718,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7526,
+ "name": "Tainan Airport",
+ "country": "TW",
+ "city": "Tainan City",
+ "height": 0,
+ "level": 2,
+ "lat": "22.8996784429633",
+ "lng": "120.208783880502",
+ "radius": 2863,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.23403,
+ 22.90365,
+ 0.0
+ ],
+ [
+ 120.23673,
+ 22.900256,
+ 0.0
+ ],
+ [
+ 120.233196,
+ 22.898066,
+ 0.0
+ ],
+ [
+ 120.229469,
+ 22.89617,
+ 0.0
+ ],
+ [
+ 120.225578,
+ 22.894582,
+ 0.0
+ ],
+ [
+ 120.221553,
+ 22.893314,
+ 0.0
+ ],
+ [
+ 120.217424,
+ 22.892376,
+ 0.0
+ ],
+ [
+ 120.213223,
+ 22.891775,
+ 0.0
+ ],
+ [
+ 120.208981,
+ 22.891515,
+ 0.0
+ ],
+ [
+ 120.20473,
+ 22.891598,
+ 0.0
+ ],
+ [
+ 120.200504,
+ 22.892025,
+ 0.0
+ ],
+ [
+ 120.196334,
+ 22.892791,
+ 0.0
+ ],
+ [
+ 120.192252,
+ 22.89389,
+ 0.0
+ ],
+ [
+ 120.188288,
+ 22.895315,
+ 0.0
+ ],
+ [
+ 120.184474,
+ 22.897055,
+ 0.0
+ ],
+ [
+ 120.180838,
+ 22.899096,
+ 0.0
+ ],
+ [
+ 120.18336,
+ 22.9026,
+ 0.0
+ ],
+ [
+ 120.23403,
+ 22.90365,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7526,
+ "name": "Tainan Airport",
+ "country": "TW",
+ "city": "Tainan City",
+ "height": 0,
+ "level": 2,
+ "lat": "23.0011664550498",
+ "lng": "120.206326879614",
+ "radius": 2863,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.18105,
+ 22.99718,
+ 0.0
+ ],
+ [
+ 120.17836,
+ 23.000583,
+ 0.0
+ ],
+ [
+ 120.181896,
+ 23.002774,
+ 0.0
+ ],
+ [
+ 120.185624,
+ 23.004671,
+ 0.0
+ ],
+ [
+ 120.189518,
+ 23.00626,
+ 0.0
+ ],
+ [
+ 120.193546,
+ 23.007529,
+ 0.0
+ ],
+ [
+ 120.197678,
+ 23.008468,
+ 0.0
+ ],
+ [
+ 120.201883,
+ 23.00907,
+ 0.0
+ ],
+ [
+ 120.206129,
+ 23.00933,
+ 0.0
+ ],
+ [
+ 120.210383,
+ 23.009246,
+ 0.0
+ ],
+ [
+ 120.214613,
+ 23.00882,
+ 0.0
+ ],
+ [
+ 120.218786,
+ 23.008053,
+ 0.0
+ ],
+ [
+ 120.222872,
+ 23.006953,
+ 0.0
+ ],
+ [
+ 120.226838,
+ 23.005527,
+ 0.0
+ ],
+ [
+ 120.230655,
+ 23.003787,
+ 0.0
+ ],
+ [
+ 120.234294,
+ 23.001745,
+ 0.0
+ ],
+ [
+ 120.23176,
+ 22.99823,
+ 0.0
+ ],
+ [
+ 120.18105,
+ 22.99718,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7526,
+ "name": "Tainan Airport",
+ "country": "TW",
+ "city": "Tainan City",
+ "height": 60,
+ "level": 2,
+ "lat": "22.9504194373929",
+ "lng": "120.207548997672",
+ "radius": 17642,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.14538,
+ 23.09837,
+ 60.0
+ ],
+ [
+ 120.26249,
+ 23.10081,
+ 60.0
+ ],
+ [
+ 120.26958,
+ 22.80243,
+ 60.0
+ ],
+ [
+ 120.15273,
+ 22.80001,
+ 60.0
+ ],
+ [
+ 120.14538,
+ 23.09837,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001370,
+ "name": "Tainan Airport",
+ "country": "TW",
+ "city": "Tainan City",
+ "height": 500,
+ "level": 2,
+ "lat": "22.949633",
+ "lng": "120.205181",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.205181,
+ 23.401114653563059,
+ 500.0
+ ],
+ [
+ 120.290116631953651,
+ 23.394233030842923,
+ 500.0
+ ],
+ [
+ 120.372446064306942,
+ 23.373799316604646,
+ 500.0
+ ],
+ [
+ 120.449645434866937,
+ 23.340440299993134,
+ 500.0
+ ],
+ [
+ 120.519352653673778,
+ 23.295178623532934,
+ 500.0
+ ],
+ [
+ 120.579441174973866,
+ 23.239400588305781,
+ 500.0
+ ],
+ [
+ 120.628085618213902,
+ 23.174812668248538,
+ 500.0
+ ],
+ [
+ 120.663817128789347,
+ 23.103388227745736,
+ 500.0
+ ],
+ [
+ 120.685566824392637,
+ 23.027306240226601,
+ 500.0
+ ],
+ [
+ 120.692696170459271,
+ 22.948884031216753,
+ 500.0
+ ],
+ [
+ 120.685013635578258,
+ 22.870506213576117,
+ 500.0
+ ],
+ [
+ 120.662777466346085,
+ 22.794552046812303,
+ 500.0
+ ],
+ [
+ 120.626684869209058,
+ 22.723323441665187,
+ 500.0
+ ],
+ [
+ 120.577848280237802,
+ 22.658975753527017,
+ 500.0
+ ],
+ [
+ 120.517759735802215,
+ 22.60345337296279,
+ 500.0
+ ],
+ [
+ 120.448244627280957,
+ 22.558431938184121,
+ 500.0
+ ],
+ [
+ 120.371406335247642,
+ 22.525268771885255,
+ 500.0
+ ],
+ [
+ 120.289563399658732,
+ 22.50496289155523,
+ 500.0
+ ],
+ [
+ 120.205181,
+ 22.498125665398824,
+ 500.0
+ ],
+ [
+ 120.12079860034126,
+ 22.50496289155523,
+ 500.0
+ ],
+ [
+ 120.038955664752351,
+ 22.525268771885255,
+ 500.0
+ ],
+ [
+ 119.962117372719035,
+ 22.558431938184121,
+ 500.0
+ ],
+ [
+ 119.892602264197777,
+ 22.60345337296279,
+ 500.0
+ ],
+ [
+ 119.83251371976219,
+ 22.658975753527017,
+ 500.0
+ ],
+ [
+ 119.783677130790934,
+ 22.723323441665187,
+ 500.0
+ ],
+ [
+ 119.747584533653907,
+ 22.794552046812303,
+ 500.0
+ ],
+ [
+ 119.725348364421734,
+ 22.870506213576117,
+ 500.0
+ ],
+ [
+ 119.717665829540721,
+ 22.948884031216753,
+ 500.0
+ ],
+ [
+ 119.724795175607355,
+ 23.027306240226601,
+ 500.0
+ ],
+ [
+ 119.746544871210645,
+ 23.103388227745736,
+ 500.0
+ ],
+ [
+ 119.78227638178609,
+ 23.174812668248538,
+ 500.0
+ ],
+ [
+ 119.830920825026126,
+ 23.239400588305781,
+ 500.0
+ ],
+ [
+ 119.891009346326214,
+ 23.295178623532934,
+ 500.0
+ ],
+ [
+ 119.960716565133055,
+ 23.340440299993134,
+ 500.0
+ ],
+ [
+ 120.03791593569305,
+ 23.373799316604646,
+ 500.0
+ ],
+ [
+ 120.120245368046341,
+ 23.394233030842923,
+ 500.0
+ ],
+ [
+ 120.205181,
+ 23.401114653563059,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001412,
+ "name": "Lyudao Airport",
+ "country": "TW",
+ "city": "Lyudao",
+ "height": 500,
+ "level": 2,
+ "lat": "22.673352",
+ "lng": "121.466157",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.466157,
+ 23.12484941454041,
+ 500.0
+ ],
+ [
+ 121.550917804381626,
+ 23.11796785419552,
+ 500.0
+ ],
+ [
+ 121.633078111792329,
+ 23.09753429776525,
+ 500.0
+ ],
+ [
+ 121.710119541269108,
+ 23.06417545072026,
+ 500.0
+ ],
+ [
+ 121.779685054095552,
+ 23.018913829829824,
+ 500.0
+ ],
+ [
+ 121.83965254161086,
+ 22.963135587004011,
+ 500.0
+ ],
+ [
+ 121.88820029582628,
+ 22.898547046205795,
+ 500.0
+ ],
+ [
+ 121.923862259943462,
+ 22.827121444659603,
+ 500.0
+ ],
+ [
+ 121.945571407594159,
+ 22.751037672993434,
+ 500.0
+ ],
+ [
+ 121.95269009390276,
+ 22.672613034960836,
+ 500.0
+ ],
+ [
+ 121.945026725853069,
+ 22.594232192286032,
+ 500.0
+ ],
+ [
+ 121.922838585736173,
+ 22.518274525211165,
+ 500.0
+ ],
+ [
+ 121.886821088060174,
+ 22.447042129654449,
+ 500.0
+ ],
+ [
+ 121.838084143151235,
+ 22.382690595296928,
+ 500.0
+ ],
+ [
+ 121.778116633015088,
+ 22.327164574550821,
+ 500.0
+ ],
+ [
+ 121.708740276224987,
+ 22.282139969674102,
+ 500.0
+ ],
+ [
+ 121.632054372450881,
+ 22.248974343285365,
+ 500.0
+ ],
+ [
+ 121.550373080127244,
+ 22.228666904344141,
+ 500.0
+ ],
+ [
+ 121.466157,
+ 22.221829144450751,
+ 500.0
+ ],
+ [
+ 121.381940919872747,
+ 22.228666904344141,
+ 500.0
+ ],
+ [
+ 121.30025962754911,
+ 22.248974343285365,
+ 500.0
+ ],
+ [
+ 121.223573723775004,
+ 22.282139969674102,
+ 500.0
+ ],
+ [
+ 121.154197366984903,
+ 22.327164574550821,
+ 500.0
+ ],
+ [
+ 121.094229856848756,
+ 22.382690595296928,
+ 500.0
+ ],
+ [
+ 121.045492911939817,
+ 22.447042129654449,
+ 500.0
+ ],
+ [
+ 121.009475414263818,
+ 22.518274525211165,
+ 500.0
+ ],
+ [
+ 120.987287274146922,
+ 22.594232192286032,
+ 500.0
+ ],
+ [
+ 120.979623906097231,
+ 22.672613034960836,
+ 500.0
+ ],
+ [
+ 120.986742592405832,
+ 22.751037672993434,
+ 500.0
+ ],
+ [
+ 121.008451740056529,
+ 22.827121444659603,
+ 500.0
+ ],
+ [
+ 121.044113704173711,
+ 22.898547046205795,
+ 500.0
+ ],
+ [
+ 121.092661458389131,
+ 22.963135587004011,
+ 500.0
+ ],
+ [
+ 121.152628945904439,
+ 23.018913829829824,
+ 500.0
+ ],
+ [
+ 121.222194458730883,
+ 23.06417545072026,
+ 500.0
+ ],
+ [
+ 121.299235888207662,
+ 23.09753429776525,
+ 500.0
+ ],
+ [
+ 121.381396195618365,
+ 23.11796785419552,
+ 500.0
+ ],
+ [
+ 121.466157,
+ 23.12484941454041,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2398,
+ "name": "Lyudao Airport",
+ "country": "TW",
+ "city": "Lyudao",
+ "height": 0,
+ "level": 2,
+ "lat": "22.6732255594241",
+ "lng": "121.466190829585",
+ "radius": 4933,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.43087,
+ 22.70317,
+ 0.0
+ ],
+ [
+ 121.47962,
+ 22.71583,
+ 0.0
+ ],
+ [
+ 121.50149,
+ 22.64327,
+ 0.0
+ ],
+ [
+ 121.45277,
+ 22.63062,
+ 0.0
+ ],
+ [
+ 121.43087,
+ 22.70317,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2398,
+ "name": "Lyudao Airport",
+ "country": "TW",
+ "city": "Lyudao",
+ "height": 0,
+ "level": 2,
+ "lat": "22.6336221298187",
+ "lng": "121.47813789882",
+ "radius": 2864,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.50149,
+ 22.64327,
+ 0.0
+ ],
+ [
+ 121.45277,
+ 22.63062,
+ 0.0
+ ],
+ [
+ 121.45127106299999,
+ 22.626640260799999,
+ 0.0
+ ],
+ [
+ 121.457629833,
+ 22.625006732700001,
+ 0.0
+ ],
+ [
+ 121.464168137,
+ 22.624186842899999,
+ 0.0
+ ],
+ [
+ 121.470765787,
+ 22.624195660400002,
+ 0.0
+ ],
+ [
+ 121.477301512,
+ 22.6250330212,
+ 0.0
+ ],
+ [
+ 121.483655171,
+ 22.626683531200001,
+ 0.0
+ ],
+ [
+ 121.489709966,
+ 22.629116848300001,
+ 0.0
+ ],
+ [
+ 121.49535457499999,
+ 22.632288239299999,
+ 0.0
+ ],
+ [
+ 121.500485198,
+ 22.636139399699999,
+ 0.0
+ ],
+ [
+ 121.505007464,
+ 22.640599523500001,
+ 0.0
+ ],
+ [
+ 121.50149,
+ 22.64327,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2398,
+ "name": "Lyudao Airport",
+ "country": "TW",
+ "city": "Lyudao",
+ "height": 0,
+ "level": 2,
+ "lat": "22.7128351656427",
+ "lng": "121.454244304545",
+ "radius": 2864,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.43087,
+ 22.70317,
+ 0.0
+ ],
+ [
+ 121.47962,
+ 22.71583,
+ 0.0
+ ],
+ [
+ 121.481128258,
+ 22.719816252899999,
+ 0.0
+ ],
+ [
+ 121.474765434,
+ 22.721450763499998,
+ 0.0
+ ],
+ [
+ 121.46822260099999,
+ 22.722271152400001,
+ 0.0
+ ],
+ [
+ 121.461620255,
+ 22.722262308800001,
+ 0.0
+ ],
+ [
+ 121.455079993,
+ 22.7214243936,
+ 0.0
+ ],
+ [
+ 121.448722266,
+ 22.719772836600001,
+ 0.0
+ ],
+ [
+ 121.442664152,
+ 22.717338051500001,
+ 0.0
+ ],
+ [
+ 121.4370172,
+ 22.7141648747,
+ 0.0
+ ],
+ [
+ 121.431885364,
+ 22.7103117371,
+ 0.0
+ ],
+ [
+ 121.427363094,
+ 22.705849586,
+ 0.0
+ ],
+ [
+ 121.43087,
+ 22.70317,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2398,
+ "name": "Lyudao Airport",
+ "country": "TW",
+ "city": "Lyudao",
+ "height": 60,
+ "level": 2,
+ "lat": "22.6732207626533",
+ "lng": "121.466187966041",
+ "radius": 16650,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.36933,
+ 22.79303,
+ 60.0
+ ],
+ [
+ 121.48188,
+ 22.82226,
+ 60.0
+ ],
+ [
+ 121.56288,
+ 22.55337,
+ 60.0
+ ],
+ [
+ 121.45053,
+ 22.52418,
+ 60.0
+ ],
+ [
+ 121.36933,
+ 22.79303,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001487,
+ "name": "Taitung Airport",
+ "country": "TW",
+ "city": "Taitung City",
+ "height": 500,
+ "level": 2,
+ "lat": "22.755025",
+ "lng": "121.101331",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.101331,
+ 23.206517770581119,
+ 500.0
+ ],
+ [
+ 121.186143206475222,
+ 23.199636191694907,
+ 500.0
+ ],
+ [
+ 121.268353239065718,
+ 23.179202588298093,
+ 500.0
+ ],
+ [
+ 121.345441105026865,
+ 23.145843690570572,
+ 500.0
+ ],
+ [
+ 121.415048280353261,
+ 23.100582052419394,
+ 500.0
+ ],
+ [
+ 121.475051351759035,
+ 23.044803869811602,
+ 500.0
+ ],
+ [
+ 121.523627531520091,
+ 22.98021551101094,
+ 500.0
+ ],
+ [
+ 121.559309940400894,
+ 22.908790250814828,
+ 500.0
+ ],
+ [
+ 121.581031006610516,
+ 22.832707004335766,
+ 500.0
+ ],
+ [
+ 121.588152824007764,
+ 22.754283081800864,
+ 500.0
+ ],
+ [
+ 121.580483818034622,
+ 22.675903130559131,
+ 500.0
+ ],
+ [
+ 121.558281554835986,
+ 22.59994649526222,
+ 500.0
+ ],
+ [
+ 121.522241976057316,
+ 22.528715217212611,
+ 500.0
+ ],
+ [
+ 121.473475734823211,
+ 22.464364816974598,
+ 500.0
+ ],
+ [
+ 121.413472640645594,
+ 22.408839869703211,
+ 500.0
+ ],
+ [
+ 121.344055491903731,
+ 22.363816199743415,
+ 500.0
+ ],
+ [
+ 121.267324787931869,
+ 22.330651298914436,
+ 500.0
+ ],
+ [
+ 121.185595975102245,
+ 22.310344319672502,
+ 500.0
+ ],
+ [
+ 121.101331,
+ 22.303506717202783,
+ 500.0
+ ],
+ [
+ 121.017066024897758,
+ 22.310344319672502,
+ 500.0
+ ],
+ [
+ 120.935337212068134,
+ 22.330651298914436,
+ 500.0
+ ],
+ [
+ 120.858606508096273,
+ 22.363816199743415,
+ 500.0
+ ],
+ [
+ 120.78918935935441,
+ 22.408839869703211,
+ 500.0
+ ],
+ [
+ 120.729186265176793,
+ 22.464364816974598,
+ 500.0
+ ],
+ [
+ 120.680420023942688,
+ 22.528715217212611,
+ 500.0
+ ],
+ [
+ 120.644380445164018,
+ 22.59994649526222,
+ 500.0
+ ],
+ [
+ 120.622178181965381,
+ 22.675903130559131,
+ 500.0
+ ],
+ [
+ 120.614509175992239,
+ 22.754283081800864,
+ 500.0
+ ],
+ [
+ 120.621630993389488,
+ 22.832707004335766,
+ 500.0
+ ],
+ [
+ 120.64335205959911,
+ 22.908790250814828,
+ 500.0
+ ],
+ [
+ 120.679034468479912,
+ 22.98021551101094,
+ 500.0
+ ],
+ [
+ 120.727610648240969,
+ 23.044803869811602,
+ 500.0
+ ],
+ [
+ 120.787613719646743,
+ 23.100582052419394,
+ 500.0
+ ],
+ [
+ 120.857220894973139,
+ 23.145843690570572,
+ 500.0
+ ],
+ [
+ 120.934308760934286,
+ 23.179202588298093,
+ 500.0
+ ],
+ [
+ 121.016518793524781,
+ 23.199636191694907,
+ 500.0
+ ],
+ [
+ 121.101331,
+ 23.206517770581119,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7648,
+ "name": "Taitung Airport",
+ "country": "TW",
+ "city": "Taitung City",
+ "height": 0,
+ "level": 2,
+ "lat": "22.7548653273431",
+ "lng": "121.10164128807",
+ "radius": 5597,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.05187,
+ 22.73476,
+ 0.0
+ ],
+ [
+ 121.1119,
+ 22.80431,
+ 0.0
+ ],
+ [
+ 121.15143,
+ 22.77496,
+ 0.0
+ ],
+ [
+ 121.09139,
+ 22.70542,
+ 0.0
+ ],
+ [
+ 121.05187,
+ 22.73476,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7648,
+ "name": "Taitung Airport",
+ "country": "TW",
+ "city": "Taitung City",
+ "height": 0,
+ "level": 2,
+ "lat": "22.7173987459516",
+ "lng": "121.069312218082",
+ "radius": 2869,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.05187,
+ 22.73476,
+ 0.0
+ ],
+ [
+ 121.047512281,
+ 22.733580439699999,
+ 0.0
+ ],
+ [
+ 121.049795176,
+ 22.727833150399999,
+ 0.0
+ ],
+ [
+ 121.052895316,
+ 22.7224252635,
+ 0.0
+ ],
+ [
+ 121.056755595,
+ 22.7174562352,
+ 0.0
+ ],
+ [
+ 121.061304948,
+ 22.7130174405,
+ 0.0
+ ],
+ [
+ 121.066459666,
+ 22.7091904957,
+ 0.0
+ ],
+ [
+ 121.07212493199999,
+ 22.7060457609,
+ 0.0
+ ],
+ [
+ 121.078196564,
+ 22.7036410489,
+ 0.0
+ ],
+ [
+ 121.08456293099999,
+ 22.702020565400002,
+ 0.0
+ ],
+ [
+ 121.091107,
+ 22.701214098200001,
+ 0.0
+ ],
+ [
+ 121.09139,
+ 22.70542,
+ 0.0
+ ],
+ [
+ 121.05187,
+ 22.73476,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7648,
+ "name": "Taitung Airport",
+ "country": "TW",
+ "city": "Taitung City",
+ "height": 0,
+ "level": 2,
+ "lat": "22.7923380414718",
+ "lng": "121.134005628939",
+ "radius": 2869,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.1119,
+ 22.80431,
+ 0.0
+ ],
+ [
+ 121.15143,
+ 22.77496,
+ 0.0
+ ],
+ [
+ 121.155804593,
+ 22.776144695799999,
+ 0.0
+ ],
+ [
+ 121.153525346,
+ 22.781893451199998,
+ 0.0
+ ],
+ [
+ 121.150427845,
+ 22.787303240699998,
+ 0.0
+ ],
+ [
+ 121.146569013,
+ 22.792274483900002,
+ 0.0
+ ],
+ [
+ 121.142019811,
+ 22.796715662699999,
+ 0.0
+ ],
+ [
+ 121.13686393499999,
+ 22.800545008699999,
+ 0.0
+ ],
+ [
+ 121.131196273,
+ 22.803692011900001,
+ 0.0
+ ],
+ [
+ 121.125121162,
+ 22.806098721800002,
+ 0.0
+ ],
+ [
+ 121.118750461,
+ 22.807720817100002,
+ 0.0
+ ],
+ [
+ 121.11220148699999,
+ 22.808528424399999,
+ 0.0
+ ],
+ [
+ 121.1119,
+ 22.80431,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 7648,
+ "name": "Taitung Airport",
+ "country": "TW",
+ "city": "Taitung City",
+ "height": 60,
+ "level": 2,
+ "lat": "22.7548687781351",
+ "lng": "121.101647382345",
+ "radius": 17356,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.15481,
+ 22.90307,
+ 60.0
+ ],
+ [
+ 121.24605,
+ 22.83528,
+ 60.0
+ ],
+ [
+ 121.0486,
+ 22.60665,
+ 60.0
+ ],
+ [
+ 120.95741,
+ 22.67433,
+ 60.0
+ ],
+ [
+ 121.15481,
+ 22.90307,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001459,
+ "name": "Lancang Jingmai Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "22.417504",
+ "lng": "99.78332",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.78332,
+ 22.869015878865735,
+ 500.0
+ ],
+ [
+ 99.86792129326021,
+ 22.862134377174478,
+ 500.0
+ ],
+ [
+ 99.949927294723935,
+ 22.84170096963469,
+ 500.0
+ ],
+ [
+ 100.026824626280316,
+ 22.80834228445169,
+ 500.0
+ ],
+ [
+ 100.096260859149538,
+ 22.76308072225541,
+ 500.0
+ ],
+ [
+ 100.156117933455647,
+ 22.707302297156829,
+ 500.0
+ ],
+ [
+ 100.204577491533385,
+ 22.642713194519359,
+ 500.0
+ ],
+ [
+ 100.240176027882185,
+ 22.571286533954268,
+ 500.0
+ ],
+ [
+ 100.261848207301924,
+ 22.495201129344363,
+ 500.0
+ ],
+ [
+ 100.268957193937496,
+ 22.416774263955659,
+ 500.0
+ ],
+ [
+ 100.261311335599075,
+ 22.338390644161212,
+ 500.0
+ ],
+ [
+ 100.239167031897836,
+ 22.262429761145629,
+ 500.0
+ ],
+ [
+ 100.203218059998065,
+ 22.191193881232021,
+ 500.0
+ ],
+ [
+ 100.154572024134666,
+ 22.126838809841839,
+ 500.0
+ ],
+ [
+ 100.09471492767463,
+ 22.071309440596451,
+ 500.0
+ ],
+ [
+ 100.025465138649281,
+ 22.026281919047882,
+ 500.0
+ ],
+ [
+ 99.9489182349499,
+ 21.993114028918647,
+ 500.0
+ ],
+ [
+ 99.867384379921603,
+ 21.972805155638341,
+ 500.0
+ ],
+ [
+ 99.78332,
+ 21.965966904543198,
+ 500.0
+ ],
+ [
+ 99.699255620078404,
+ 21.972805155638341,
+ 500.0
+ ],
+ [
+ 99.617721765050106,
+ 21.993114028918647,
+ 500.0
+ ],
+ [
+ 99.541174861350726,
+ 22.026281919047882,
+ 500.0
+ ],
+ [
+ 99.471925072325377,
+ 22.071309440596451,
+ 500.0
+ ],
+ [
+ 99.412067975865341,
+ 22.126838809841839,
+ 500.0
+ ],
+ [
+ 99.363421940001942,
+ 22.191193881232021,
+ 500.0
+ ],
+ [
+ 99.327472968102171,
+ 22.262429761145629,
+ 500.0
+ ],
+ [
+ 99.305328664400932,
+ 22.338390644161212,
+ 500.0
+ ],
+ [
+ 99.297682806062511,
+ 22.416774263955659,
+ 500.0
+ ],
+ [
+ 99.304791792698083,
+ 22.495201129344363,
+ 500.0
+ ],
+ [
+ 99.326463972117821,
+ 22.571286533954268,
+ 500.0
+ ],
+ [
+ 99.362062508466622,
+ 22.642713194519359,
+ 500.0
+ ],
+ [
+ 99.41052206654436,
+ 22.707302297156829,
+ 500.0
+ ],
+ [
+ 99.470379140850469,
+ 22.76308072225541,
+ 500.0
+ ],
+ [
+ 99.539815373719691,
+ 22.80834228445169,
+ 500.0
+ ],
+ [
+ 99.616712705276072,
+ 22.84170096963469,
+ 500.0
+ ],
+ [
+ 99.698718706739797,
+ 22.862134377174478,
+ 500.0
+ ],
+ [
+ 99.78332,
+ 22.869015878865735,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33364,
+ "name": "Lancang Jingmai Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4349974973636",
+ "lng": "99.7397436647187",
+ "radius": 13124,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.726509876400002,
+ 22.4712384382,
+ 0.0
+ ],
+ [
+ 99.656579250899995,
+ 22.5245894384,
+ 0.0
+ ],
+ [
+ 99.617075874500003,
+ 22.4678475517,
+ 0.0
+ ],
+ [
+ 99.703771292400006,
+ 22.4344565259,
+ 0.0
+ ],
+ [
+ 99.705038175,
+ 22.403906267,
+ 0.0
+ ],
+ [
+ 99.712226833200006,
+ 22.388696841800002,
+ 0.0
+ ],
+ [
+ 99.723426189500003,
+ 22.375725251199999,
+ 0.0
+ ],
+ [
+ 99.759526373100002,
+ 22.354214565900001,
+ 0.0
+ ],
+ [
+ 99.790561694800004,
+ 22.345724930300001,
+ 0.0
+ ],
+ [
+ 99.808449102200001,
+ 22.347064424300001,
+ 0.0
+ ],
+ [
+ 99.840123526699998,
+ 22.362067466900001,
+ 0.0
+ ],
+ [
+ 99.726509876400002,
+ 22.4712384382,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33364,
+ "name": "Lancang Jingmai Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.3947383690953",
+ "lng": "99.8256403405152",
+ "radius": 13272,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.915154496400007,
+ 22.308749089100001,
+ 0.0
+ ],
+ [
+ 99.9512426398,
+ 22.367181451,
+ 0.0
+ ],
+ [
+ 99.862886599700005,
+ 22.4022271923,
+ 0.0
+ ],
+ [
+ 99.861421833199998,
+ 22.430898235400001,
+ 0.0
+ ],
+ [
+ 99.854332911200004,
+ 22.446148481200002,
+ 0.0
+ ],
+ [
+ 99.843213186100002,
+ 22.459182627,
+ 0.0
+ ],
+ [
+ 99.807140647,
+ 22.480785644699999,
+ 0.0
+ ],
+ [
+ 99.775672536900004,
+ 22.488689389800001,
+ 0.0
+ ],
+ [
+ 99.757807002600003,
+ 22.486951949600002,
+ 0.0
+ ],
+ [
+ 99.726509876400002,
+ 22.4712384382,
+ 0.0
+ ],
+ [
+ 99.840123526699998,
+ 22.362067466900001,
+ 0.0
+ ],
+ [
+ 99.915154496400007,
+ 22.308749089100001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33364,
+ "name": "Lancang Jingmai Airport",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "22.417319913732",
+ "lng": "99.7832024182393",
+ "radius": 23520,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.011118943,
+ 22.398739497,
+ 120.0
+ ],
+ [
+ 99.913241904200007,
+ 22.243326755199998,
+ 120.0
+ ],
+ [
+ 99.555272422300007,
+ 22.436079425599999,
+ 120.0
+ ],
+ [
+ 99.653285390700006,
+ 22.5914921673,
+ 120.0
+ ],
+ [
+ 100.011118943,
+ 22.398739497,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2639,
+ "name": "Xishuangbanna Gasa Airport",
+ "country": "CN",
+ "city": "Jinghong",
+ "height": 0,
+ "level": 2,
+ "lat": "22.018229355973",
+ "lng": "100.753796885873",
+ "radius": 13152,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.75910624799999,
+ 22.0510360213,
+ 0.0
+ ],
+ [
+ 100.74242775099999,
+ 22.136043167699999,
+ 0.0
+ ],
+ [
+ 100.67368223699999,
+ 22.110307758699999,
+ 0.0
+ ],
+ [
+ 100.717043829,
+ 22.037062235200001,
+ 0.0
+ ],
+ [
+ 100.696374123,
+ 22.0133028236,
+ 0.0
+ ],
+ [
+ 100.690993166,
+ 21.997472095700001,
+ 0.0
+ ],
+ [
+ 100.690215247,
+ 21.9808895378,
+ 0.0
+ ],
+ [
+ 100.699083496,
+ 21.941373273100002,
+ 0.0
+ ],
+ [
+ 100.717893075,
+ 21.91630075,
+ 0.0
+ ],
+ [
+ 100.732764794,
+ 21.9070739621,
+ 0.0
+ ],
+ [
+ 100.767552653,
+ 21.900635431600001,
+ 0.0
+ ],
+ [
+ 100.75910624799999,
+ 22.0510360213,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2639,
+ "name": "Xishuangbanna Gasa Airport",
+ "country": "CN",
+ "city": "Jinghong",
+ "height": 0,
+ "level": 2,
+ "lat": "21.935158091451",
+ "lng": "100.782222721063",
+ "radius": 13103,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.78253607,
+ 21.817314816300001,
+ 0.0
+ ],
+ [
+ 100.851284682,
+ 21.836262763200001,
+ 0.0
+ ],
+ [
+ 100.807977153,
+ 21.9146727953,
+ 0.0
+ ],
+ [
+ 100.826259518,
+ 21.935130724,
+ 0.0
+ ],
+ [
+ 100.832409707,
+ 21.950717851,
+ 0.0
+ ],
+ [
+ 100.830925272,
+ 21.983601525099999,
+ 0.0
+ ],
+ [
+ 100.822584738,
+ 22.005290266300001,
+ 0.0
+ ],
+ [
+ 100.806888841,
+ 22.030874166899999,
+ 0.0
+ ],
+ [
+ 100.77677023699999,
+ 22.0483050108,
+ 0.0
+ ],
+ [
+ 100.75910624799999,
+ 22.0510360213,
+ 0.0
+ ],
+ [
+ 100.767552653,
+ 21.900635431600001,
+ 0.0
+ ],
+ [
+ 100.78253607,
+ 21.817314816300001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 2639,
+ "name": "Xishuangbanna Gasa Airport",
+ "country": "CN",
+ "city": "Jinghong",
+ "height": 120,
+ "level": 2,
+ "lat": "21.973746560541",
+ "lng": "100.761590898716",
+ "radius": 23528,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.90971180299999,
+ 21.8128656562,
+ 120.0
+ ],
+ [
+ 100.72292938699999,
+ 21.765216845600001,
+ 120.0
+ ],
+ [
+ 100.613257019,
+ 22.134591760599999,
+ 120.0
+ ],
+ [
+ 100.800525936,
+ 22.182240570899999,
+ 120.0
+ ],
+ [
+ 100.90971180299999,
+ 21.8128656562,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001441,
+ "name": "Xishuangbanna Gasa Airport",
+ "country": "CN",
+ "city": "Jinghong",
+ "height": 500,
+ "level": 2,
+ "lat": "21.975052",
+ "lng": "100.762265",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.762265,
+ 22.426588592035259,
+ 500.0
+ ],
+ [
+ 100.846595800257361,
+ 22.419707193903641,
+ 500.0
+ ],
+ [
+ 100.928340140441435,
+ 22.399274050399725,
+ 500.0
+ ],
+ [
+ 101.004993130331798,
+ 22.365915656587259,
+ 500.0
+ ],
+ [
+ 101.074210161354245,
+ 22.320654212930236,
+ 500.0
+ ],
+ [
+ 101.133880040385321,
+ 22.264875495963764,
+ 500.0
+ ],
+ [
+ 101.182190089968458,
+ 22.200285451956276,
+ 500.0
+ ],
+ [
+ 101.217681127755625,
+ 22.128856997399726,
+ 500.0
+ ],
+ [
+ 101.239290681317343,
+ 22.052768813260702,
+ 500.0
+ ],
+ [
+ 101.246383280382886,
+ 21.974338146601838,
+ 500.0
+ ],
+ [
+ 101.238767165537737,
+ 21.895949779621684,
+ 500.0
+ ],
+ [
+ 101.216697232952853,
+ 21.819983393394722,
+ 500.0
+ ],
+ [
+ 101.180864477693206,
+ 21.748741546488535,
+ 500.0
+ ],
+ [
+ 101.132372589646749,
+ 21.684380414656129,
+ 500.0
+ ],
+ [
+ 101.07270268924799,
+ 21.628845305784409,
+ 500.0
+ ],
+ [
+ 101.0036674639517,
+ 21.583812783410472,
+ 500.0
+ ],
+ [
+ 100.927356184112895,
+ 21.550641011202714,
+ 500.0
+ ],
+ [
+ 100.846072244319657,
+ 21.530329677882076,
+ 500.0
+ ],
+ [
+ 100.762265,
+ 21.523490584275443,
+ 500.0
+ ],
+ [
+ 100.678457755680341,
+ 21.530329677882076,
+ 500.0
+ ],
+ [
+ 100.597173815887103,
+ 21.550641011202714,
+ 500.0
+ ],
+ [
+ 100.520862536048298,
+ 21.583812783410472,
+ 500.0
+ ],
+ [
+ 100.451827310752009,
+ 21.628845305784409,
+ 500.0
+ ],
+ [
+ 100.392157410353249,
+ 21.684380414656129,
+ 500.0
+ ],
+ [
+ 100.343665522306793,
+ 21.748741546488535,
+ 500.0
+ ],
+ [
+ 100.307832767047145,
+ 21.819983393394722,
+ 500.0
+ ],
+ [
+ 100.285762834462261,
+ 21.895949779621684,
+ 500.0
+ ],
+ [
+ 100.278146719617112,
+ 21.974338146601838,
+ 500.0
+ ],
+ [
+ 100.285239318682656,
+ 22.052768813260702,
+ 500.0
+ ],
+ [
+ 100.306848872244373,
+ 22.128856997399726,
+ 500.0
+ ],
+ [
+ 100.342339910031541,
+ 22.200285451956276,
+ 500.0
+ ],
+ [
+ 100.390649959614677,
+ 22.264875495963764,
+ 500.0
+ ],
+ [
+ 100.450319838645754,
+ 22.320654212930236,
+ 500.0
+ ],
+ [
+ 100.519536869668201,
+ 22.365915656587259,
+ 500.0
+ ],
+ [
+ 100.596189859558564,
+ 22.399274050399725,
+ 500.0
+ ],
+ [
+ 100.677934199742637,
+ 22.419707193903641,
+ 500.0
+ ],
+ [
+ 100.762265,
+ 22.426588592035259,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 12485,
+ "name": "Nanning Wuxu Airport",
+ "country": "CN",
+ "city": "Nanning",
+ "height": 0,
+ "level": 2,
+ "lat": "22.5795516251097",
+ "lng": "108.140958846937",
+ "radius": 13495,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.10200941,
+ 22.573560236500001,
+ 0.0
+ ],
+ [
+ 108.025325377,
+ 22.521890495099999,
+ 0.0
+ ],
+ [
+ 108.073480704,
+ 22.475415002399998,
+ 0.0
+ ],
+ [
+ 108.130139163,
+ 22.540414194299998,
+ 0.0
+ ],
+ [
+ 108.162201469,
+ 22.533499321400001,
+ 0.0
+ ],
+ [
+ 108.196509371,
+ 22.542394434199998,
+ 0.0
+ ],
+ [
+ 108.235673256,
+ 22.572683490900001,
+ 0.0
+ ],
+ [
+ 108.252316806,
+ 22.594374899,
+ 0.0
+ ],
+ [
+ 108.257198084,
+ 22.610349697499998,
+ 0.0
+ ],
+ [
+ 108.257434815,
+ 22.626946498100001,
+ 0.0
+ ],
+ [
+ 108.25300922,
+ 22.643034277600002,
+ 0.0
+ ],
+ [
+ 108.10200941,
+ 22.573560236500001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 12485,
+ "name": "Nanning Wuxu Airport",
+ "country": "CN",
+ "city": "Nanning",
+ "height": 0,
+ "level": 2,
+ "lat": "22.6409419977991",
+ "lng": "108.210717918057",
+ "radius": 13441,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.32800879,
+ 22.6947718487,
+ 0.0
+ ],
+ [
+ 108.278151179,
+ 22.744581126100002,
+ 0.0
+ ],
+ [
+ 108.21812593,
+ 22.6745777543,
+ 0.0
+ ],
+ [
+ 108.187502187,
+ 22.683170945899999,
+ 0.0
+ ],
+ [
+ 108.169556879,
+ 22.682006372,
+ 0.0
+ ],
+ [
+ 108.137644245,
+ 22.667303975500001,
+ 0.0
+ ],
+ [
+ 108.117678998,
+ 22.647333079199999,
+ 0.0
+ ],
+ [
+ 108.09957142499999,
+ 22.6221717321,
+ 0.0
+ ],
+ [
+ 108.09572635,
+ 22.6059574497,
+ 0.0
+ ],
+ [
+ 108.10200941,
+ 22.573560236500001,
+ 0.0
+ ],
+ [
+ 108.25300922,
+ 22.643034277600002,
+ 0.0
+ ],
+ [
+ 108.32800879,
+ 22.6947718487,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 12485,
+ "name": "Nanning Wuxu Airport",
+ "country": "CN",
+ "city": "Nanning",
+ "height": 120,
+ "level": 2,
+ "lat": "22.6098751889484",
+ "lng": "108.175570169455",
+ "radius": 23805,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.25951806099999,
+ 22.809466020599999,
+ 120.0
+ ],
+ [
+ 108.394783753,
+ 22.6798922242,
+ 120.0
+ ],
+ [
+ 108.091427075,
+ 22.4103981799,
+ 120.0
+ ],
+ [
+ 107.956426091,
+ 22.539971976699999,
+ 120.0
+ ],
+ [
+ 108.25951806099999,
+ 22.809466020599999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001313,
+ "name": "Nanning Wuxu Airport",
+ "country": "CN",
+ "city": "Nanning",
+ "height": 500,
+ "level": 2,
+ "lat": "22.610034",
+ "lng": "108.176002",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.176002,
+ 23.061535005992305,
+ 500.0
+ ],
+ [
+ 108.260723115208449,
+ 23.054653460081926,
+ 500.0
+ ],
+ [
+ 108.342845028389362,
+ 23.034219940248757,
+ 500.0
+ ],
+ [
+ 108.41985060321089,
+ 23.00086113282218,
+ 500.0
+ ],
+ [
+ 108.489383947878139,
+ 22.955599525801215,
+ 500.0
+ ],
+ [
+ 108.549323961100868,
+ 22.899821236963163,
+ 500.0
+ ],
+ [
+ 108.597849768554653,
+ 22.835232555945357,
+ 500.0
+ ],
+ [
+ 108.633495948376122,
+ 22.763806690852856,
+ 500.0
+ ],
+ [
+ 108.655195895187575,
+ 22.68772251332722,
+ 500.0
+ ],
+ [
+ 108.662312165660182,
+ 22.6092973220813,
+ 500.0
+ ],
+ [
+ 108.654653152324471,
+ 22.530915789943329,
+ 500.0
+ ],
+ [
+ 108.632475918105484,
+ 22.454957324689232,
+ 500.0
+ ],
+ [
+ 108.596475470329523,
+ 22.383724064506048,
+ 500.0
+ ],
+ [
+ 108.547761145674656,
+ 22.319371652576027,
+ 500.0
+ ],
+ [
+ 108.487821109947461,
+ 22.263844801120282,
+ 500.0
+ ],
+ [
+ 108.418476248002506,
+ 22.218819472717186,
+ 500.0
+ ],
+ [
+ 108.341824933319756,
+ 22.185653284800836,
+ 500.0
+ ],
+ [
+ 108.260180330050829,
+ 22.165345490079066,
+ 500.0
+ ],
+ [
+ 108.176002,
+ 22.158507608347485,
+ 500.0
+ ],
+ [
+ 108.091823669949164,
+ 22.165345490079066,
+ 500.0
+ ],
+ [
+ 108.010179066680237,
+ 22.185653284800836,
+ 500.0
+ ],
+ [
+ 107.933527751997488,
+ 22.218819472717186,
+ 500.0
+ ],
+ [
+ 107.864182890052533,
+ 22.263844801120282,
+ 500.0
+ ],
+ [
+ 107.804242854325338,
+ 22.319371652576027,
+ 500.0
+ ],
+ [
+ 107.755528529670471,
+ 22.383724064506048,
+ 500.0
+ ],
+ [
+ 107.719528081894509,
+ 22.454957324689232,
+ 500.0
+ ],
+ [
+ 107.697350847675523,
+ 22.530915789943329,
+ 500.0
+ ],
+ [
+ 107.689691834339811,
+ 22.6092973220813,
+ 500.0
+ ],
+ [
+ 107.696808104812419,
+ 22.68772251332722,
+ 500.0
+ ],
+ [
+ 107.718508051623871,
+ 22.763806690852856,
+ 500.0
+ ],
+ [
+ 107.754154231445341,
+ 22.835232555945357,
+ 500.0
+ ],
+ [
+ 107.802680038899126,
+ 22.899821236963163,
+ 500.0
+ ],
+ [
+ 107.862620052121855,
+ 22.955599525801215,
+ 500.0
+ ],
+ [
+ 107.932153396789104,
+ 23.00086113282218,
+ 500.0
+ ],
+ [
+ 108.009158971610631,
+ 23.034219940248757,
+ 500.0
+ ],
+ [
+ 108.091280884791544,
+ 23.054653460081926,
+ 500.0
+ ],
+ [
+ 108.176002,
+ 23.061535005992305,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001279,
+ "name": "玉林福绵机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "22.43566393",
+ "lng": "110.12176037",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.12176037,
+ 22.887174786376356,
+ 500.0
+ ],
+ [
+ 110.206372910021202,
+ 22.880293280492868,
+ 500.0
+ ],
+ [
+ 110.288389791171738,
+ 22.859859862295394,
+ 500.0
+ ],
+ [
+ 110.365297282542144,
+ 22.826501165466652,
+ 500.0
+ ],
+ [
+ 110.434742630277,
+ 22.781239598870364,
+ 500.0
+ ],
+ [
+ 110.494607489016289,
+ 22.725461186387925,
+ 500.0
+ ],
+ [
+ 110.543073264887084,
+ 22.660872123211853,
+ 500.0
+ ],
+ [
+ 110.578676272547852,
+ 22.589445537297372,
+ 500.0
+ ],
+ [
+ 110.60035105762833,
+ 22.513360247977083,
+ 500.0
+ ],
+ [
+ 110.607460727319292,
+ 22.434933539981742,
+ 500.0
+ ],
+ [
+ 110.599813633698886,
+ 22.356550116534532,
+ 500.0
+ ],
+ [
+ 110.577666238706257,
+ 22.280589460972859,
+ 500.0
+ ],
+ [
+ 110.541712435028387,
+ 22.209353827558775,
+ 500.0
+ ],
+ [
+ 110.493059989549764,
+ 22.144999006439253,
+ 500.0
+ ],
+ [
+ 110.433195108623721,
+ 22.089469874154997,
+ 500.0
+ ],
+ [
+ 110.36393639650457,
+ 22.044442559027832,
+ 500.0
+ ],
+ [
+ 110.287379693445899,
+ 22.011274829120424,
+ 500.0
+ ],
+ [
+ 110.205835444394268,
+ 21.990966057363121,
+ 500.0
+ ],
+ [
+ 110.12176037,
+ 21.984127841036081,
+ 500.0
+ ],
+ [
+ 110.037685295605741,
+ 21.990966057363121,
+ 500.0
+ ],
+ [
+ 109.956141046554109,
+ 22.011274829120424,
+ 500.0
+ ],
+ [
+ 109.879584343495438,
+ 22.044442559027832,
+ 500.0
+ ],
+ [
+ 109.810325631376287,
+ 22.089469874154997,
+ 500.0
+ ],
+ [
+ 109.750460750450245,
+ 22.144999006439253,
+ 500.0
+ ],
+ [
+ 109.701808304971621,
+ 22.209353827558775,
+ 500.0
+ ],
+ [
+ 109.665854501293751,
+ 22.280589460972859,
+ 500.0
+ ],
+ [
+ 109.643707106301122,
+ 22.356550116534532,
+ 500.0
+ ],
+ [
+ 109.636060012680716,
+ 22.434933539981742,
+ 500.0
+ ],
+ [
+ 109.643169682371678,
+ 22.513360247977083,
+ 500.0
+ ],
+ [
+ 109.664844467452156,
+ 22.589445537297372,
+ 500.0
+ ],
+ [
+ 109.700447475112924,
+ 22.660872123211853,
+ 500.0
+ ],
+ [
+ 109.748913250983719,
+ 22.725461186387925,
+ 500.0
+ ],
+ [
+ 109.808778109723008,
+ 22.781239598870364,
+ 500.0
+ ],
+ [
+ 109.878223457457864,
+ 22.826501165466652,
+ 500.0
+ ],
+ [
+ 109.95513094882827,
+ 22.859859862295394,
+ 500.0
+ ],
+ [
+ 110.037147829978807,
+ 22.880293280492868,
+ 500.0
+ ],
+ [
+ 110.12176037,
+ 22.887174786376356,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000116,
+ "name": "玉林福绵机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4697049566963",
+ "lng": "110.147407517434",
+ "radius": 13369,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.183966149,
+ 22.4830458761,
+ 0.0
+ ],
+ [
+ 110.247595887,
+ 22.546447738099999,
+ 0.0
+ ],
+ [
+ 110.188583681,
+ 22.583764385199999,
+ 0.0
+ ],
+ [
+ 110.14759288499999,
+ 22.506060467299999,
+ 0.0
+ ],
+ [
+ 110.128417171,
+ 22.509831567799999,
+ 0.0
+ ],
+ [
+ 110.093467493,
+ 22.503449330399999,
+ 0.0
+ ],
+ [
+ 110.066661942,
+ 22.481773178899999,
+ 0.0
+ ],
+ [
+ 110.043152398,
+ 22.445744140799999,
+ 0.0
+ ],
+ [
+ 110.03971376299999,
+ 22.429453043500001,
+ 0.0
+ ],
+ [
+ 110.040954072,
+ 22.4128944514,
+ 0.0
+ ],
+ [
+ 110.056814307,
+ 22.383429102600001,
+ 0.0
+ ],
+ [
+ 110.183966149,
+ 22.4830458761,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000116,
+ "name": "玉林福绵机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.3967538008765",
+ "lng": "110.093389737014",
+ "radius": 13368,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.993302967,
+ 22.320025642699999,
+ 0.0
+ ],
+ [
+ 110.052222198,
+ 22.282713855800001,
+ 0.0
+ ],
+ [
+ 110.093124788,
+ 22.360447487799998,
+ 0.0
+ ],
+ [
+ 110.112242628,
+ 22.3566794149,
+ 0.0
+ ],
+ [
+ 110.147161322,
+ 22.3630336963,
+ 0.0
+ ],
+ [
+ 110.17397385699999,
+ 22.384678203499998,
+ 0.0
+ ],
+ [
+ 110.197535736,
+ 22.4207129226,
+ 0.0
+ ],
+ [
+ 110.201001242,
+ 22.436999115100001,
+ 0.0
+ ],
+ [
+ 110.199788524,
+ 22.4535594667,
+ 0.0
+ ],
+ [
+ 110.183966149,
+ 22.4830458761,
+ 0.0
+ ],
+ [
+ 110.056814307,
+ 22.383429102600001,
+ 0.0
+ ],
+ [
+ 109.993302967,
+ 22.320025642699999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000116,
+ "name": "玉林福绵机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "22.4331783202094",
+ "lng": "110.120478040805",
+ "radius": 23565,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.083374429,
+ 22.224042707,
+ 120.0
+ ],
+ [
+ 109.922981425,
+ 22.325637675199999,
+ 120.0
+ ],
+ [
+ 110.157341164,
+ 22.642356535200001,
+ 120.0
+ ],
+ [
+ 110.318100626,
+ 22.540761567400001,
+ 120.0
+ ],
+ [
+ 110.083374429,
+ 22.224042707,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002458,
+ "name": "(Cap. 448G RFZ) Kowloon East Barracks",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.3370712193412",
+ "lng": "114.180380626541",
+ "radius": 250,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.17909740696301,
+ 22.335159464283088,
+ 0.0
+ ],
+ [
+ 114.181315680053984,
+ 22.335050717024799,
+ 0.0
+ ],
+ [
+ 114.18166388130399,
+ 22.338982964296004,
+ 0.0
+ ],
+ [
+ 114.179473035971,
+ 22.33901337380269,
+ 0.0
+ ],
+ [
+ 114.179360688982996,
+ 22.338947227553085,
+ 0.0
+ ],
+ [
+ 114.17909740696301,
+ 22.335159464283088,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33378,
+ "name": "ShenZhen NanTou Heliport",
+ "country": "CN",
+ "city": "ShenZhen",
+ "height": 0,
+ "level": 2,
+ "lat": "22.5667404170624",
+ "lng": "113.923904238507",
+ "radius": 1689,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.93118402011153,
+ 22.553116407736105,
+ 0.0
+ ],
+ [
+ 113.909908834397214,
+ 22.558751310308999,
+ 0.0
+ ],
+ [
+ 113.919174295093995,
+ 22.579687658881475,
+ 0.0
+ ],
+ [
+ 113.937901264565028,
+ 22.574728312205437,
+ 0.0
+ ],
+ [
+ 113.93118402011153,
+ 22.553116407736105,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33378,
+ "name": "ShenZhen NanTou Heliport",
+ "country": "CN",
+ "city": "ShenZhen",
+ "height": 60,
+ "level": 2,
+ "lat": "22.5836936696",
+ "lng": "113.930549873495",
+ "radius": 1249,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.919174295093995,
+ 22.579687658881475,
+ 60.0
+ ],
+ [
+ 113.934222725526553,
+ 22.575671920595518,
+ 60.0
+ ],
+ [
+ 113.934233373454418,
+ 22.583074894223635,
+ 60.0
+ ],
+ [
+ 113.940527108053033,
+ 22.58314766743392,
+ 60.0
+ ],
+ [
+ 113.941928168120739,
+ 22.587693900276985,
+ 60.0
+ ],
+ [
+ 113.923199138756246,
+ 22.592655203776673,
+ 60.0
+ ],
+ [
+ 113.919174295093995,
+ 22.579687658881475,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33378,
+ "name": "ShenZhen NanTou Heliport",
+ "country": "CN",
+ "city": "ShenZhen",
+ "height": 120,
+ "level": 2,
+ "lat": "22.6269161985848",
+ "lng": "113.943984541552",
+ "radius": 4366,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.941928168120739,
+ 22.587693900276985,
+ 120.0
+ ],
+ [
+ 113.923199138756246,
+ 22.592655203776673,
+ 120.0
+ ],
+ [
+ 113.94603549545451,
+ 22.666134253685279,
+ 120.0
+ ],
+ [
+ 113.964772366293488,
+ 22.661178619520449,
+ 120.0
+ ],
+ [
+ 113.941928168120739,
+ 22.587693900276985,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002477,
+ "name": "(Cap. 448G RFZ) Shek Kong Village",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4287163314717",
+ "lng": "114.105078739184",
+ "radius": 223,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.103849136842015,
+ 22.428741526643307,
+ 0.0
+ ],
+ [
+ 114.10388182053002,
+ 22.428578830445897,
+ 0.0
+ ],
+ [
+ 114.104792770620975,
+ 22.42736454199639,
+ 0.0
+ ],
+ [
+ 114.105249446363004,
+ 22.426857331989076,
+ 0.0
+ ],
+ [
+ 114.105502549586006,
+ 22.426741835886709,
+ 0.0
+ ],
+ [
+ 114.106514862205032,
+ 22.429478918083305,
+ 0.0
+ ],
+ [
+ 114.104814133644993,
+ 22.430690942182515,
+ 0.0
+ ],
+ [
+ 114.104654916726005,
+ 22.430690825951093,
+ 0.0
+ ],
+ [
+ 114.103849136842015,
+ 22.428741526643307,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002448,
+ "name": "(Cap. 448G RFZ) OCMFA of the PRC in the HKSAR (2)",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2756574604874",
+ "lng": "114.163095391197",
+ "radius": 38,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.162833488556018,
+ 22.275902378748295,
+ 0.0
+ ],
+ [
+ 114.162856893195979,
+ 22.275549443381799,
+ 0.0
+ ],
+ [
+ 114.163247798004008,
+ 22.275343085709814,
+ 0.0
+ ],
+ [
+ 114.163433343139019,
+ 22.275588057308479,
+ 0.0
+ ],
+ [
+ 114.163103707377005,
+ 22.27600193483978,
+ 0.0
+ ],
+ [
+ 114.162833488556018,
+ 22.275902378748295,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002442,
+ "name": "(Cap. 448G RFZ) OSNS of the CPG of the PRC in the HKSAR (the Causeway Bay Office Accommodation)",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2812897999131",
+ "lng": "114.192201870589",
+ "radius": 22,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.192059502420079,
+ 22.281439008930519,
+ 0.0
+ ],
+ [
+ 114.192098201920516,
+ 22.281114029711027,
+ 0.0
+ ],
+ [
+ 114.192311077288323,
+ 22.281192989692368,
+ 0.0
+ ],
+ [
+ 114.192305539518685,
+ 22.281465570049356,
+ 0.0
+ ],
+ [
+ 114.192059502420079,
+ 22.281439008930519,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002436,
+ "name": "(Cap. 448G RFZ) Central Government Complex and Legislative Council Complex",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2811411295761",
+ "lng": "114.165886661437",
+ "radius": 143,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.164630460547031,
+ 22.280765074362193,
+ 0.0
+ ],
+ [
+ 114.164732064017002,
+ 22.280536931943789,
+ 0.0
+ ],
+ [
+ 114.165450246180967,
+ 22.280016647543988,
+ 0.0
+ ],
+ [
+ 114.165848790111994,
+ 22.279861510557584,
+ 0.0
+ ],
+ [
+ 114.166161951372004,
+ 22.279875176724101,
+ 0.0
+ ],
+ [
+ 114.166250833646004,
+ 22.279996129873698,
+ 0.0
+ ],
+ [
+ 114.166816819570997,
+ 22.282103789965699,
+ 0.0
+ ],
+ [
+ 114.165543724873999,
+ 22.282223443674489,
+ 0.0
+ ],
+ [
+ 114.165073471713001,
+ 22.282190565889476,
+ 0.0
+ ],
+ [
+ 114.164630460547031,
+ 22.280765074362193,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002435,
+ "name": "(Cap. 448G RFZ) Government House",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2786063335293",
+ "lng": "114.157334517217",
+ "radius": 107,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.156434700402997,
+ 22.278890060354996,
+ 0.0
+ ],
+ [
+ 114.156519437754014,
+ 22.278617548865206,
+ 0.0
+ ],
+ [
+ 114.157508087756995,
+ 22.27776447452932,
+ 0.0
+ ],
+ [
+ 114.157753505643981,
+ 22.277725218450875,
+ 0.0
+ ],
+ [
+ 114.158005499965995,
+ 22.277897601234493,
+ 0.0
+ ],
+ [
+ 114.158258046520018,
+ 22.278529392191704,
+ 0.0
+ ],
+ [
+ 114.157939402940002,
+ 22.279389523792513,
+ 0.0
+ ],
+ [
+ 114.156644859540009,
+ 22.27930853480111,
+ 0.0
+ ],
+ [
+ 114.156437678798014,
+ 22.279094154068389,
+ 0.0
+ ],
+ [
+ 114.156434700402997,
+ 22.278890060354996,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002445,
+ "name": "(Cap. 448G RFZ) OSNS of the CPG of the PRC in the HKSAR (the Office under Construction)",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.3224635561407",
+ "lng": "114.154682396096",
+ "radius": 76,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.154160070930018,
+ 22.322296501127795,
+ 0.0
+ ],
+ [
+ 114.154463990478021,
+ 22.321803186804896,
+ 0.0
+ ],
+ [
+ 114.154969823532014,
+ 22.322072445977401,
+ 0.0
+ ],
+ [
+ 114.154900803781004,
+ 22.323123925183999,
+ 0.0
+ ],
+ [
+ 114.154160070930018,
+ 22.322296501127795,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002455,
+ "name": "(Cap. 448G RFZ) Ching Yi To Barracks",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2768804669731",
+ "lng": "114.166573946005",
+ "radius": 125,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.16547856239302,
+ 22.276382440051488,
+ 0.0
+ ],
+ [
+ 114.16565740438098,
+ 22.276184229857325,
+ 0.0
+ ],
+ [
+ 114.165973890429996,
+ 22.276009002672897,
+ 0.0
+ ],
+ [
+ 114.166176865495984,
+ 22.276027565050988,
+ 0.0
+ ],
+ [
+ 114.166924324071005,
+ 22.276307065576312,
+ 0.0
+ ],
+ [
+ 114.167669337416996,
+ 22.277378486548599,
+ 0.0
+ ],
+ [
+ 114.167387402226993,
+ 22.277710689615517,
+ 0.0
+ ],
+ [
+ 114.167210831301006,
+ 22.277766389276316,
+ 0.0
+ ],
+ [
+ 114.16547856239302,
+ 22.276382440051488,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002473,
+ "name": "(Cap. 448G RFZ) Shek Kong Village",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4278803204623",
+ "lng": "114.106736688733",
+ "radius": 179,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.105502549586006,
+ 22.426741835886709,
+ 0.0
+ ],
+ [
+ 114.106517354469972,
+ 22.42659444302199,
+ 0.0
+ ],
+ [
+ 114.108087608580007,
+ 22.426936284708397,
+ 0.0
+ ],
+ [
+ 114.108265049366977,
+ 22.427104648357194,
+ 0.0
+ ],
+ [
+ 114.108234057724005,
+ 22.427314105973494,
+ 0.0
+ ],
+ [
+ 114.106514862205032,
+ 22.429478918083305,
+ 0.0
+ ],
+ [
+ 114.105502549586006,
+ 22.426741835886709,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002496,
+ "name": "GFS HKCEC Heliport",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2847600002316",
+ "lng": "114.174385000728",
+ "radius": 49,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.17411,
+ 22.28513,
+ 0.0
+ ],
+ [
+ 114.17435,
+ 22.28435,
+ 0.0
+ ],
+ [
+ 114.17466,
+ 22.28439,
+ 0.0
+ ],
+ [
+ 114.1744,
+ 22.28518,
+ 0.0
+ ],
+ [
+ 114.17411,
+ 22.28513,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002478,
+ "name": "(Cap. 448G RFZ) Shek Kong Village",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4221675278032",
+ "lng": "114.112992761138",
+ "radius": 171,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.111540738911017,
+ 22.421415525117162,
+ 0.0
+ ],
+ [
+ 114.112871478956009,
+ 22.420662057763785,
+ 0.0
+ ],
+ [
+ 114.113040112202981,
+ 22.420629597561085,
+ 0.0
+ ],
+ [
+ 114.113220886258986,
+ 22.420695973316899,
+ 0.0
+ ],
+ [
+ 114.113404490197979,
+ 22.422476671284194,
+ 0.0
+ ],
+ [
+ 114.113287364985993,
+ 22.423681787295607,
+ 0.0
+ ],
+ [
+ 114.111540738911017,
+ 22.421415525117162,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002479,
+ "name": "(Cap. 448G RFZ) Shek Kong Village",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.418013147173",
+ "lng": "114.115956754754",
+ "radius": 31,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.115650728313994,
+ 22.418057831831121,
+ 0.0
+ ],
+ [
+ 114.116204446297999,
+ 22.417877376753591,
+ 0.0
+ ],
+ [
+ 114.116254588208008,
+ 22.417934251470214,
+ 0.0
+ ],
+ [
+ 114.116141081739997,
+ 22.418164025583387,
+ 0.0
+ ],
+ [
+ 114.115679150719018,
+ 22.418140317972803,
+ 0.0
+ ],
+ [
+ 114.115650728313994,
+ 22.418057831831121,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002434,
+ "name": "(Cap. 448G RFZ) Ngong Shuen Chau Barracks",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.3203376520344",
+ "lng": "114.14132453295",
+ "radius": 716,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.137121420057994,
+ 22.3254761713441,
+ 0.0
+ ],
+ [
+ 114.142583335234988,
+ 22.314000003389186,
+ 0.0
+ ],
+ [
+ 114.14819194947998,
+ 22.320833332472308,
+ 0.0
+ ],
+ [
+ 114.148041674550996,
+ 22.32204361279317,
+ 0.0
+ ],
+ [
+ 114.147171945899018,
+ 22.323601946162398,
+ 0.0
+ ],
+ [
+ 114.145888896215013,
+ 22.324388893713586,
+ 0.0
+ ],
+ [
+ 114.137121420057994,
+ 22.3254761713441,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002460,
+ "name": "(Cap. 448G RFZ) San Tin Barracks",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4848734026447",
+ "lng": "114.076957921657",
+ "radius": 46,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.076506521108001,
+ 22.484868028209281,
+ 0.0
+ ],
+ [
+ 114.076614381446987,
+ 22.484602791177,
+ 0.0
+ ],
+ [
+ 114.076694926776995,
+ 22.484592745246484,
+ 0.0
+ ],
+ [
+ 114.077219715884993,
+ 22.484797762492008,
+ 0.0
+ ],
+ [
+ 114.077369445249005,
+ 22.484956889330409,
+ 0.0
+ ],
+ [
+ 114.077366177735982,
+ 22.485051430184878,
+ 0.0
+ ],
+ [
+ 114.077165353989017,
+ 22.485140540936776,
+ 0.0
+ ],
+ [
+ 114.076506521108001,
+ 22.484868028209281,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045144,
+ "name": "中國人民解放軍駐澳門部隊總部大樓",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.193611",
+ "lng": "113.550722",
+ "radius": 107,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.550722,
+ 22.194577289140735,
+ 0.0
+ ],
+ [
+ 113.550902180654219,
+ 22.194562608938647,
+ 0.0
+ ],
+ [
+ 113.551076886500923,
+ 22.194519014391712,
+ 0.0
+ ],
+ [
+ 113.55124080909502,
+ 22.194447830123636,
+ 0.0
+ ],
+ [
+ 113.551388967659946,
+ 22.194351219071379,
+ 0.0
+ ],
+ [
+ 113.551516860434674,
+ 22.194232116760674,
+ 0.0
+ ],
+ [
+ 113.551620601461963,
+ 22.194094142105872,
+ 0.0
+ ],
+ [
+ 113.551697038661175,
+ 22.193941487444832,
+ 0.0
+ ],
+ [
+ 113.551743849598253,
+ 22.193778791151193,
+ 0.0
+ ],
+ [
+ 113.551759612042844,
+ 22.193610996694936,
+ 0.0
+ ],
+ [
+ 113.551743847170584,
+ 22.193443202434544,
+ 0.0
+ ],
+ [
+ 113.551697034098652,
+ 22.193280506704866,
+ 0.0
+ ],
+ [
+ 113.551620595314859,
+ 22.193127852907892,
+ 0.0
+ ],
+ [
+ 113.551516853444497,
+ 22.192989879312996,
+ 0.0
+ ],
+ [
+ 113.551388960669769,
+ 22.192870778130239,
+ 0.0
+ ],
+ [
+ 113.551240802947945,
+ 22.192774168137891,
+ 0.0
+ ],
+ [
+ 113.5510768819384,
+ 22.192702984733874,
+ 0.0
+ ],
+ [
+ 113.550902178226551,
+ 22.192659390750915,
+ 0.0
+ ],
+ [
+ 113.550722,
+ 22.192644710744688,
+ 0.0
+ ],
+ [
+ 113.550541821773436,
+ 22.192659390750915,
+ 0.0
+ ],
+ [
+ 113.550367118061587,
+ 22.192702984733874,
+ 0.0
+ ],
+ [
+ 113.550203197052042,
+ 22.192774168137891,
+ 0.0
+ ],
+ [
+ 113.550055039330218,
+ 22.192870778130239,
+ 0.0
+ ],
+ [
+ 113.54992714655549,
+ 22.192989879312996,
+ 0.0
+ ],
+ [
+ 113.549823404685128,
+ 22.193127852907892,
+ 0.0
+ ],
+ [
+ 113.549746965901335,
+ 22.193280506704866,
+ 0.0
+ ],
+ [
+ 113.549700152829402,
+ 22.193443202434544,
+ 0.0
+ ],
+ [
+ 113.549684387957143,
+ 22.193610996694936,
+ 0.0
+ ],
+ [
+ 113.549700150401733,
+ 22.193778791151193,
+ 0.0
+ ],
+ [
+ 113.549746961338812,
+ 22.193941487444832,
+ 0.0
+ ],
+ [
+ 113.549823398538024,
+ 22.194094142105872,
+ 0.0
+ ],
+ [
+ 113.549927139565312,
+ 22.194232116760674,
+ 0.0
+ ],
+ [
+ 113.55005503234004,
+ 22.194351219071379,
+ 0.0
+ ],
+ [
+ 113.550203190904966,
+ 22.194447830123636,
+ 0.0
+ ],
+ [
+ 113.550367113499064,
+ 22.194519014391712,
+ 0.0
+ ],
+ [
+ 113.550541819345767,
+ 22.194562608938647,
+ 0.0
+ ],
+ [
+ 113.550722,
+ 22.194577289140735,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002480,
+ "name": "(Cap. 448G RFZ) Shek Kong Village",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4211193945196",
+ "lng": "114.11263714405",
+ "radius": 306,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.109657225676003,
+ 22.4211926302808,
+ 0.0
+ ],
+ [
+ 114.111113913834998,
+ 22.420167150453192,
+ 0.0
+ ],
+ [
+ 114.11380587993898,
+ 22.418742256222487,
+ 0.0
+ ],
+ [
+ 114.114225581149014,
+ 22.418787580830891,
+ 0.0
+ ],
+ [
+ 114.114122896943002,
+ 22.420344774871097,
+ 0.0
+ ],
+ [
+ 114.112275473018997,
+ 22.423854663714515,
+ 0.0
+ ],
+ [
+ 114.109657225676003,
+ 22.4211926302808,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002459,
+ "name": "(Cap. 448G RFZ) Military Transportation Centre, Chek Lap Kok",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2997876429113",
+ "lng": "113.931490704112",
+ "radius": 29,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.931233829316014,
+ 22.29989604540717,
+ 0.0
+ ],
+ [
+ 113.931360778869006,
+ 22.299554774132968,
+ 0.0
+ ],
+ [
+ 113.931747734485981,
+ 22.299678842898093,
+ 0.0
+ ],
+ [
+ 113.931620629788981,
+ 22.300020511586204,
+ 0.0
+ ],
+ [
+ 113.931233829316014,
+ 22.29989604540717,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002441,
+ "name": "(Cap. 448G RFZ) Liaison Office of the Central People’s Government in the HKSAR (LOCPG)",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2881007375842",
+ "lng": "114.1397863295",
+ "radius": 34,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.139537445568294,
+ 22.288302921959616,
+ 0.0
+ ],
+ [
+ 114.139689217465602,
+ 22.287802267147558,
+ 0.0
+ ],
+ [
+ 114.140040116781421,
+ 22.287895738193559,
+ 0.0
+ ],
+ [
+ 114.13988344194911,
+ 22.288399207963106,
+ 0.0
+ ],
+ [
+ 114.139537445568294,
+ 22.288302921959616,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002475,
+ "name": "(Cap. 448G RFZ) Shek Kong Village",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4266994174141",
+ "lng": "114.108441065906",
+ "radius": 61,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.107867268806004,
+ 22.426840951829998,
+ 0.0
+ ],
+ [
+ 114.108994704826017,
+ 22.426501432068683,
+ 0.0
+ ],
+ [
+ 114.108898402139985,
+ 22.426761405930016,
+ 0.0
+ ],
+ [
+ 114.108482460002975,
+ 22.427115188758499,
+ 0.0
+ ],
+ [
+ 114.107887425406986,
+ 22.426897400872889,
+ 0.0
+ ],
+ [
+ 114.107867268806004,
+ 22.426840951829998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002498,
+ "name": "GFS Kai Tak Division",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "22.30337",
+ "lng": "114.21573",
+ "radius": 250,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.21573,
+ 22.305627654260793,
+ 0.0
+ ],
+ [
+ 114.21615131480695,
+ 22.305593354877313,
+ 0.0
+ ],
+ [
+ 114.216559827574997,
+ 22.305491498944768,
+ 0.0
+ ],
+ [
+ 114.216943125321265,
+ 22.305325181443827,
+ 0.0
+ ],
+ [
+ 114.217289561345012,
+ 22.30509945606158,
+ 0.0
+ ],
+ [
+ 114.217588609154006,
+ 22.304821181612052,
+ 0.0
+ ],
+ [
+ 114.217831182331949,
+ 22.304498813602901,
+ 0.0
+ ],
+ [
+ 114.218009910624588,
+ 22.304142147285447,
+ 0.0
+ ],
+ [
+ 114.218119363855948,
+ 22.30376201999923,
+ 0.0
+ ],
+ [
+ 114.218156216874092,
+ 22.30336998185912,
+ 0.0
+ ],
+ [
+ 114.218119350520368,
+ 22.302977944794105,
+ 0.0
+ ],
+ [
+ 114.218009885561884,
+ 22.302597820603502,
+ 0.0
+ ],
+ [
+ 114.217831148565054,
+ 22.302241159028803,
+ 0.0
+ ],
+ [
+ 114.217588570755709,
+ 22.301918796837501,
+ 0.0
+ ],
+ [
+ 114.217289522946714,
+ 22.301640528579192,
+ 0.0
+ ],
+ [
+ 114.21694309155437,
+ 22.301414809014801,
+ 0.0
+ ],
+ [
+ 114.216559802512293,
+ 22.301248496256612,
+ 0.0
+ ],
+ [
+ 114.216151301471356,
+ 22.301146643419692,
+ 0.0
+ ],
+ [
+ 114.21573,
+ 22.301112345111303,
+ 0.0
+ ],
+ [
+ 114.215308698528631,
+ 22.301146643419692,
+ 0.0
+ ],
+ [
+ 114.214900197487694,
+ 22.301248496256612,
+ 0.0
+ ],
+ [
+ 114.214516908445617,
+ 22.301414809014801,
+ 0.0
+ ],
+ [
+ 114.214170477053273,
+ 22.301640528579192,
+ 0.0
+ ],
+ [
+ 114.213871429244278,
+ 22.301918796837501,
+ 0.0
+ ],
+ [
+ 114.213628851434933,
+ 22.302241159028803,
+ 0.0
+ ],
+ [
+ 114.213450114438103,
+ 22.302597820603502,
+ 0.0
+ ],
+ [
+ 114.213340649479619,
+ 22.302977944794105,
+ 0.0
+ ],
+ [
+ 114.213303783125895,
+ 22.30336998185912,
+ 0.0
+ ],
+ [
+ 114.213340636144039,
+ 22.30376201999923,
+ 0.0
+ ],
+ [
+ 114.213450089375399,
+ 22.304142147285447,
+ 0.0
+ ],
+ [
+ 114.213628817668038,
+ 22.304498813602901,
+ 0.0
+ ],
+ [
+ 114.213871390845981,
+ 22.304821181612052,
+ 0.0
+ ],
+ [
+ 114.214170438654975,
+ 22.30509945606158,
+ 0.0
+ ],
+ [
+ 114.214516874678722,
+ 22.305325181443827,
+ 0.0
+ ],
+ [
+ 114.21490017242499,
+ 22.305491498944768,
+ 0.0
+ ],
+ [
+ 114.215308685193037,
+ 22.305593354877313,
+ 0.0
+ ],
+ [
+ 114.21573,
+ 22.305627654260793,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002461,
+ "name": "(Cap. 448G RFZ) San Tin Barracks",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4852704946991",
+ "lng": "114.076187269294",
+ "radius": 99,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.075217290180987,
+ 22.485289807212105,
+ 0.0
+ ],
+ [
+ 114.075537601697974,
+ 22.484643522501791,
+ 0.0
+ ],
+ [
+ 114.077157248136004,
+ 22.485251176383411,
+ 0.0
+ ],
+ [
+ 114.076886709275016,
+ 22.485635983823492,
+ 0.0
+ ],
+ [
+ 114.076348243504015,
+ 22.485722452851199,
+ 0.0
+ ],
+ [
+ 114.075351627784983,
+ 22.485405489985286,
+ 0.0
+ ],
+ [
+ 114.075217290180987,
+ 22.485289807212105,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000885,
+ "name": "珠海九州直升机场",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2520500887099",
+ "lng": "113.590230406549",
+ "radius": 1369,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.581974744116465,
+ 22.261705840721042,
+ 0.0
+ ],
+ [
+ 113.591270260274797,
+ 22.264325383342673,
+ 0.0
+ ],
+ [
+ 113.598484930540707,
+ 22.242393919844091,
+ 0.0
+ ],
+ [
+ 113.589190704299767,
+ 22.239774711907543,
+ 0.0
+ ],
+ [
+ 113.581974744116465,
+ 22.261705840721042,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000885,
+ "name": "珠海九州直升机场",
+ "country": "CN",
+ "city": "",
+ "height": 30,
+ "level": 2,
+ "lat": "22.2705427491595",
+ "lng": "113.584146811736",
+ "radius": 1007,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.581974744116465,
+ 22.261705840721042,
+ 30.0
+ ],
+ [
+ 113.574496657619576,
+ 22.268999902990707,
+ 30.0
+ ],
+ [
+ 113.593088786968252,
+ 22.274238497313839,
+ 30.0
+ ],
+ [
+ 113.591270260274797,
+ 22.264325383342673,
+ 30.0
+ ],
+ [
+ 113.581974745382482,
+ 22.261725779962866,
+ 30.0
+ ],
+ [
+ 113.581974744116465,
+ 22.261705840721042,
+ 30.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000885,
+ "name": "珠海九州直升机场",
+ "country": "CN",
+ "city": "",
+ "height": 30,
+ "level": 2,
+ "lat": "22.2335559651749",
+ "lng": "113.596314215416",
+ "radius": 1007,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.598484930540707,
+ 22.242393919844091,
+ 30.0
+ ],
+ [
+ 113.605962303613722,
+ 22.23510168152653,
+ 30.0
+ ],
+ [
+ 113.587372585340475,
+ 22.229862845549881,
+ 30.0
+ ],
+ [
+ 113.589190704299767,
+ 22.239774711907543,
+ 30.0
+ ],
+ [
+ 113.598484930517799,
+ 22.242393558638881,
+ 30.0
+ ],
+ [
+ 113.598484930540707,
+ 22.242393919844091,
+ 30.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000885,
+ "name": "珠海九州直升机场",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "22.2759172965555",
+ "lng": "113.582377272308",
+ "radius": 1118,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.574496657619576,
+ 22.268999902990707,
+ 60.0
+ ],
+ [
+ 113.571665447568876,
+ 22.277602115887568,
+ 60.0
+ ],
+ [
+ 113.59025866787006,
+ 22.282842058906262,
+ 60.0
+ ],
+ [
+ 113.593088786968252,
+ 22.274238497313839,
+ 60.0
+ ],
+ [
+ 113.574496657126971,
+ 22.268992153952375,
+ 60.0
+ ],
+ [
+ 113.574496657619576,
+ 22.268999902990707,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000885,
+ "name": "珠海九州直升机场",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "22.2281804767178",
+ "lng": "113.59808220198",
+ "radius": 1118,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.605962303613722,
+ 22.23510168152653,
+ 60.0
+ ],
+ [
+ 113.608791561545729,
+ 22.226497406898993,
+ 60.0
+ ],
+ [
+ 113.590203616268013,
+ 22.221259370057687,
+ 60.0
+ ],
+ [
+ 113.587372585340475,
+ 22.229862845549881,
+ 60.0
+ ],
+ [
+ 113.605962303621851,
+ 22.23510180985091,
+ 60.0
+ ],
+ [
+ 113.605962303613722,
+ 22.23510168152653,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000885,
+ "name": "珠海九州直升机场",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "22.2845236694249",
+ "lng": "113.579546098735",
+ "radius": 1117,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.571665447568876,
+ 22.277602115887568,
+ 90.0
+ ],
+ [
+ 113.568835040377479,
+ 22.286206592673764,
+ 90.0
+ ],
+ [
+ 113.587427530216274,
+ 22.291444842590437,
+ 90.0
+ ],
+ [
+ 113.59025866787006,
+ 22.282842058906262,
+ 90.0
+ ],
+ [
+ 113.571665447774166,
+ 22.277605342618685,
+ 90.0
+ ],
+ [
+ 113.571665447568876,
+ 22.277602115887568,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000885,
+ "name": "珠海九州直升机场",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "22.2195771067531",
+ "lng": "113.600912735286",
+ "radius": 1118,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.608791561545729,
+ 22.226497406898993,
+ 90.0
+ ],
+ [
+ 113.611621597369449,
+ 22.217894142741606,
+ 90.0
+ ],
+ [
+ 113.593033018498289,
+ 22.212655715615689,
+ 90.0
+ ],
+ [
+ 113.590203616268013,
+ 22.221259370057687,
+ 90.0
+ ],
+ [
+ 113.608791561545729,
+ 22.226497406898993,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000885,
+ "name": "珠海九州直升机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "22.2931278276346",
+ "lng": "113.576715122811",
+ "radius": 1117,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.568835040377479,
+ 22.286206592673764,
+ 120.0
+ ],
+ [
+ 113.566004820261611,
+ 22.294809057260835,
+ 120.0
+ ],
+ [
+ 113.58459598580049,
+ 22.30004868216249,
+ 120.0
+ ],
+ [
+ 113.587427530216274,
+ 22.291444842590437,
+ 120.0
+ ],
+ [
+ 113.568835040377479,
+ 22.286206592673764,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000885,
+ "name": "珠海九州直升机场",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "22.2109737075778",
+ "lng": "113.603741153097",
+ "radius": 1118,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.611621597369449,
+ 22.217894142741606,
+ 120.0
+ ],
+ [
+ 113.614449960720734,
+ 22.209291878945983,
+ 120.0
+ ],
+ [
+ 113.595861486105434,
+ 22.204052893129795,
+ 120.0
+ ],
+ [
+ 113.593033018498289,
+ 22.212655715615689,
+ 120.0
+ ],
+ [
+ 113.611621597369449,
+ 22.217894142741606,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002453,
+ "name": "(Cap. 448G RFZ) Chek Chue Barracks",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2021714384083",
+ "lng": "114.216027184965",
+ "radius": 555,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.210945282089028,
+ 22.200480794720498,
+ 0.0
+ ],
+ [
+ 114.22110921024003,
+ 22.20386192439549,
+ 0.0
+ ],
+ [
+ 114.219544272397002,
+ 22.205367980316385,
+ 0.0
+ ],
+ [
+ 114.219057475813003,
+ 22.205529802358502,
+ 0.0
+ ],
+ [
+ 114.216458881614003,
+ 22.2060038731539,
+ 0.0
+ ],
+ [
+ 114.216030189793983,
+ 22.206022842135983,
+ 0.0
+ ],
+ [
+ 114.211887469022003,
+ 22.20415059910399,
+ 0.0
+ ],
+ [
+ 114.210945282089028,
+ 22.200480794720498,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002457,
+ "name": "(Cap. 448G RFZ) Gun Club Hill Barracks",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.3050227158992",
+ "lng": "114.174691921627",
+ "radius": 191,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.17353752950801,
+ 22.306368814687303,
+ 0.0
+ ],
+ [
+ 114.173860219958982,
+ 22.30559547565419,
+ 0.0
+ ],
+ [
+ 114.175551706619018,
+ 22.303499601363498,
+ 0.0
+ ],
+ [
+ 114.174979105993017,
+ 22.3067203720395,
+ 0.0
+ ],
+ [
+ 114.174375100125019,
+ 22.306705219695502,
+ 0.0
+ ],
+ [
+ 114.173962422491002,
+ 22.3065944254211,
+ 0.0
+ ],
+ [
+ 114.17353752950801,
+ 22.306368814687303,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042572,
+ "name": "(Cap. 448G RFZ) Police Driving and Traffic Training Centre",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4997522836985",
+ "lng": "114.137960363739",
+ "radius": 69,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.138072,
+ 22.500336,
+ 0.0
+ ],
+ [
+ 114.138203,
+ 22.499873,
+ 0.0
+ ],
+ [
+ 114.138162,
+ 22.499811,
+ 0.0
+ ],
+ [
+ 114.138204,
+ 22.499767,
+ 0.0
+ ],
+ [
+ 114.138319,
+ 22.499393,
+ 0.0
+ ],
+ [
+ 114.138249,
+ 22.499346,
+ 0.0
+ ],
+ [
+ 114.138271,
+ 22.499293,
+ 0.0
+ ],
+ [
+ 114.138327,
+ 22.499315,
+ 0.0
+ ],
+ [
+ 114.138343,
+ 22.49925,
+ 0.0
+ ],
+ [
+ 114.138066,
+ 22.499136,
+ 0.0
+ ],
+ [
+ 114.137959,
+ 22.499268,
+ 0.0
+ ],
+ [
+ 114.137714,
+ 22.499754,
+ 0.0
+ ],
+ [
+ 114.137615,
+ 22.500004,
+ 0.0
+ ],
+ [
+ 114.137585,
+ 22.500271,
+ 0.0
+ ],
+ [
+ 114.137762,
+ 22.500307,
+ 0.0
+ ],
+ [
+ 114.137791,
+ 22.500167,
+ 0.0
+ ],
+ [
+ 114.137957,
+ 22.500204,
+ 0.0
+ ],
+ [
+ 114.137939,
+ 22.500344,
+ 0.0
+ ],
+ [
+ 114.138063,
+ 22.500369,
+ 0.0
+ ],
+ [
+ 114.138072,
+ 22.500336,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045092,
+ "name": "澳門特區政府總部",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.19",
+ "lng": "113.537917",
+ "radius": 98,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.537917,
+ 22.190885012880582,
+ 0.0
+ ],
+ [
+ 113.538082020960175,
+ 22.19087156746345,
+ 0.0
+ ],
+ [
+ 113.53824202775013,
+ 22.190831639751643,
+ 0.0
+ ],
+ [
+ 113.538392158563738,
+ 22.19076644294984,
+ 0.0
+ ],
+ [
+ 113.538527851692223,
+ 22.190677958062548,
+ 0.0
+ ],
+ [
+ 113.538644984136667,
+ 22.190568873698414,
+ 0.0
+ ],
+ [
+ 113.538739996886989,
+ 22.190442504373319,
+ 0.0
+ ],
+ [
+ 113.538810003060775,
+ 22.190302689795356,
+ 0.0
+ ],
+ [
+ 113.538852875615802,
+ 22.190153678192434,
+ 0.0
+ ],
+ [
+ 113.538867311971984,
+ 22.189999997228039,
+ 0.0
+ ],
+ [
+ 113.538852873579785,
+ 22.189846316427918,
+ 0.0
+ ],
+ [
+ 113.538809999234275,
+ 22.18969730529799,
+ 0.0
+ ],
+ [
+ 113.538739991731575,
+ 22.189557491444717,
+ 0.0
+ ],
+ [
+ 113.538644978274149,
+ 22.189431123008568,
+ 0.0
+ ],
+ [
+ 113.538527845829705,
+ 22.189322039590436,
+ 0.0
+ ],
+ [
+ 113.538392153408324,
+ 22.1892335555921,
+ 0.0
+ ],
+ [
+ 113.538242023923644,
+ 22.189168359514966,
+ 0.0
+ ],
+ [
+ 113.538082018924143,
+ 22.189128432276167,
+ 0.0
+ ],
+ [
+ 113.537917,
+ 22.189114987023306,
+ 0.0
+ ],
+ [
+ 113.537751981075843,
+ 22.189128432276167,
+ 0.0
+ ],
+ [
+ 113.537591976076342,
+ 22.189168359514966,
+ 0.0
+ ],
+ [
+ 113.537441846591662,
+ 22.1892335555921,
+ 0.0
+ ],
+ [
+ 113.537306154170281,
+ 22.189322039590436,
+ 0.0
+ ],
+ [
+ 113.537189021725837,
+ 22.189431123008568,
+ 0.0
+ ],
+ [
+ 113.537094008268411,
+ 22.189557491444717,
+ 0.0
+ ],
+ [
+ 113.537024000765712,
+ 22.18969730529799,
+ 0.0
+ ],
+ [
+ 113.536981126420201,
+ 22.189846316427918,
+ 0.0
+ ],
+ [
+ 113.536966688028002,
+ 22.189999997228039,
+ 0.0
+ ],
+ [
+ 113.536981124384184,
+ 22.190153678192434,
+ 0.0
+ ],
+ [
+ 113.537023996939212,
+ 22.190302689795356,
+ 0.0
+ ],
+ [
+ 113.537094003112998,
+ 22.190442504373319,
+ 0.0
+ ],
+ [
+ 113.537189015863319,
+ 22.190568873698414,
+ 0.0
+ ],
+ [
+ 113.537306148307763,
+ 22.190677958062548,
+ 0.0
+ ],
+ [
+ 113.537441841436248,
+ 22.19076644294984,
+ 0.0
+ ],
+ [
+ 113.537591972249857,
+ 22.190831639751643,
+ 0.0
+ ],
+ [
+ 113.537751979039811,
+ 22.19087156746345,
+ 0.0
+ ],
+ [
+ 113.537917,
+ 22.190885012880582,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002438,
+ "name": "(Cap. 448G RFZ) Hong Kong Court of Final Appeal",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2808781889273",
+ "lng": "114.160439431989",
+ "radius": 49,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.160037133919019,
+ 22.280666022687978,
+ 0.0
+ ],
+ [
+ 114.160656584498994,
+ 22.280479404231883,
+ 0.0
+ ],
+ [
+ 114.160753600283002,
+ 22.281137684083095,
+ 0.0
+ ],
+ [
+ 114.160222278240994,
+ 22.281276973333998,
+ 0.0
+ ],
+ [
+ 114.160037133919019,
+ 22.280666022687978,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002443,
+ "name": "(Cap. 448G RFZ) OSNS of the CPG of the PRC in the HKSAR (the North Point Office Accommodation)",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2902764157861",
+ "lng": "114.194185574503",
+ "radius": 32,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.193927063827005,
+ 22.290295563565724,
+ 0.0
+ ],
+ [
+ 114.19401791198402,
+ 22.29003127900198,
+ 0.0
+ ],
+ [
+ 114.194147940310984,
+ 22.289995052365587,
+ 0.0
+ ],
+ [
+ 114.194483044699012,
+ 22.290368071447691,
+ 0.0
+ ],
+ [
+ 114.194294190164001,
+ 22.290548552691899,
+ 0.0
+ ],
+ [
+ 114.194077625893001,
+ 22.290464136786994,
+ 0.0
+ ],
+ [
+ 114.193927063827005,
+ 22.290295563565724,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40032530,
+ "name": "(Cap. 448G RFZ) Police Tactical Unit Headquarters",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4894186495968",
+ "lng": "114.132067970022",
+ "radius": 237,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.133094,
+ 22.490659,
+ 0.0
+ ],
+ [
+ 114.133101,
+ 22.490811,
+ 0.0
+ ],
+ [
+ 114.132896,
+ 22.490577,
+ 0.0
+ ],
+ [
+ 114.132315,
+ 22.490371,
+ 0.0
+ ],
+ [
+ 114.131047,
+ 22.490282,
+ 0.0
+ ],
+ [
+ 114.130644,
+ 22.49008,
+ 0.0
+ ],
+ [
+ 114.130129,
+ 22.489126,
+ 0.0
+ ],
+ [
+ 114.129969,
+ 22.48908,
+ 0.0
+ ],
+ [
+ 114.129943,
+ 22.488575,
+ 0.0
+ ],
+ [
+ 114.130443,
+ 22.487898,
+ 0.0
+ ],
+ [
+ 114.130836,
+ 22.487656,
+ 0.0
+ ],
+ [
+ 114.131487,
+ 22.488231,
+ 0.0
+ ],
+ [
+ 114.132698,
+ 22.488452,
+ 0.0
+ ],
+ [
+ 114.133592,
+ 22.489107,
+ 0.0
+ ],
+ [
+ 114.133785,
+ 22.489419,
+ 0.0
+ ],
+ [
+ 114.133731,
+ 22.489781,
+ 0.0
+ ],
+ [
+ 114.134082,
+ 22.490026,
+ 0.0
+ ],
+ [
+ 114.134172,
+ 22.490306,
+ 0.0
+ ],
+ [
+ 114.133694,
+ 22.490711,
+ 0.0
+ ],
+ [
+ 114.133094,
+ 22.490659,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002439,
+ "name": "(Cap. 448G RFZ) Justice Place",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2794478008127",
+ "lng": "114.15966800186",
+ "radius": 27,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.159475384830003,
+ 22.279613984648392,
+ 0.0
+ ],
+ [
+ 114.159482690414009,
+ 22.279377706001302,
+ 0.0
+ ],
+ [
+ 114.159715006737997,
+ 22.279208022375609,
+ 0.0
+ ],
+ [
+ 114.159924773843983,
+ 22.279501934737695,
+ 0.0
+ ],
+ [
+ 114.159700684439983,
+ 22.279689287968697,
+ 0.0
+ ],
+ [
+ 114.159475384830003,
+ 22.279613984648392,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042585,
+ "name": "(Cap. 448G RFZ) Police Sports &amp; Recreation Club",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.3274705050245",
+ "lng": "114.169117006427",
+ "radius": 152,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.169496,
+ 22.328319,
+ 0.0
+ ],
+ [
+ 114.169017,
+ 22.328324,
+ 0.0
+ ],
+ [
+ 114.168169,
+ 22.328284,
+ 0.0
+ ],
+ [
+ 114.168065,
+ 22.328263,
+ 0.0
+ ],
+ [
+ 114.167837,
+ 22.328171,
+ 0.0
+ ],
+ [
+ 114.168557,
+ 22.326701,
+ 0.0
+ ],
+ [
+ 114.168598,
+ 22.326686,
+ 0.0
+ ],
+ [
+ 114.169586,
+ 22.326729,
+ 0.0
+ ],
+ [
+ 114.169726,
+ 22.32676,
+ 0.0
+ ],
+ [
+ 114.170046,
+ 22.326774,
+ 0.0
+ ],
+ [
+ 114.170233,
+ 22.326757,
+ 0.0
+ ],
+ [
+ 114.170397,
+ 22.32677,
+ 0.0
+ ],
+ [
+ 114.170358,
+ 22.327656,
+ 0.0
+ ],
+ [
+ 114.170178,
+ 22.32765,
+ 0.0
+ ],
+ [
+ 114.170151,
+ 22.328262,
+ 0.0
+ ],
+ [
+ 114.170105,
+ 22.32826,
+ 0.0
+ ],
+ [
+ 114.170104,
+ 22.328296,
+ 0.0
+ ],
+ [
+ 114.169994,
+ 22.328291,
+ 0.0
+ ],
+ [
+ 114.169993,
+ 22.32834,
+ 0.0
+ ],
+ [
+ 114.169496,
+ 22.328319,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045115,
+ "name": "氹仔碼頭直昇機場",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.166063",
+ "lng": "113.577222",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.577222,
+ 22.175093765681961,
+ 0.0
+ ],
+ [
+ 113.57890569773339,
+ 22.174956559439639,
+ 0.0
+ ],
+ [
+ 113.580538227607889,
+ 22.174549110426128,
+ 0.0
+ ],
+ [
+ 113.582069977627242,
+ 22.173883800993977,
+ 0.0
+ ],
+ [
+ 113.583454400106973,
+ 22.172980849635394,
+ 0.0
+ ],
+ [
+ 113.58464942675451,
+ 22.171867696242987,
+ 0.0
+ ],
+ [
+ 113.585618747292784,
+ 22.170578167859073,
+ 0.0
+ ],
+ [
+ 113.586332912728778,
+ 22.169151450322371,
+ 0.0
+ ],
+ [
+ 113.586770229745227,
+ 22.167630897122979,
+ 0.0
+ ],
+ [
+ 113.58691741908801,
+ 22.166062711718524,
+ 0.0
+ ],
+ [
+ 113.586770018035807,
+ 22.164494543398092,
+ 0.0
+ ],
+ [
+ 113.586332514845211,
+ 22.162974039390203,
+ 0.0
+ ],
+ [
+ 113.585618211225707,
+ 22.161547397219248,
+ 0.0
+ ],
+ [
+ 113.584648817161536,
+ 22.160257961285108,
+ 0.0
+ ],
+ [
+ 113.583453790513985,
+ 22.159144906275714,
+ 0.0
+ ],
+ [
+ 113.582069441560165,
+ 22.158242047366898,
+ 0.0
+ ],
+ [
+ 113.580537829724321,
+ 22.157576813300505,
+ 0.0
+ ],
+ [
+ 113.578905486023956,
+ 22.157169413478496,
+ 0.0
+ ],
+ [
+ 113.577222,
+ 22.157032224320208,
+ 0.0
+ ],
+ [
+ 113.575538513976056,
+ 22.157169413478496,
+ 0.0
+ ],
+ [
+ 113.573906170275691,
+ 22.157576813300505,
+ 0.0
+ ],
+ [
+ 113.572374558439847,
+ 22.158242047366898,
+ 0.0
+ ],
+ [
+ 113.570990209486027,
+ 22.159144906275714,
+ 0.0
+ ],
+ [
+ 113.569795182838476,
+ 22.160257961285108,
+ 0.0
+ ],
+ [
+ 113.568825788774305,
+ 22.161547397219248,
+ 0.0
+ ],
+ [
+ 113.568111485154802,
+ 22.162974039390203,
+ 0.0
+ ],
+ [
+ 113.567673981964205,
+ 22.164494543398092,
+ 0.0
+ ],
+ [
+ 113.567526580912002,
+ 22.166062711718524,
+ 0.0
+ ],
+ [
+ 113.567673770254785,
+ 22.167630897122979,
+ 0.0
+ ],
+ [
+ 113.568111087271234,
+ 22.169151450322371,
+ 0.0
+ ],
+ [
+ 113.568825252707228,
+ 22.170578167859073,
+ 0.0
+ ],
+ [
+ 113.569794573245503,
+ 22.171867696242987,
+ 0.0
+ ],
+ [
+ 113.570989599893039,
+ 22.172980849635394,
+ 0.0
+ ],
+ [
+ 113.57237402237277,
+ 22.173883800993977,
+ 0.0
+ ],
+ [
+ 113.573905772392123,
+ 22.174549110426128,
+ 0.0
+ ],
+ [
+ 113.575538302266622,
+ 22.174956559439639,
+ 0.0
+ ],
+ [
+ 113.577222,
+ 22.175093765681961,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002499,
+ "name": "GFS HKCEC Heliport",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "22.28507",
+ "lng": "114.17429",
+ "radius": 250,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.17429,
+ 22.287327659349021,
+ 0.0
+ ],
+ [
+ 114.174711259947316,
+ 22.287293359888729,
+ 0.0
+ ],
+ [
+ 114.175119719523209,
+ 22.287191503728049,
+ 0.0
+ ],
+ [
+ 114.175502967361638,
+ 22.287025185854453,
+ 0.0
+ ],
+ [
+ 114.175849358278612,
+ 22.286799459966151,
+ 0.0
+ ],
+ [
+ 114.17614836715272,
+ 22.286521184892308,
+ 0.0
+ ],
+ [
+ 114.176390908750662,
+ 22.286198816159299,
+ 0.0
+ ],
+ [
+ 114.176569613777502,
+ 22.285842149040199,
+ 0.0
+ ],
+ [
+ 114.176679052763802,
+ 22.285462020898709,
+ 0.0
+ ],
+ [
+ 114.176715900989876,
+ 22.285069981875562,
+ 0.0
+ ],
+ [
+ 114.176679039442064,
+ 22.284677943926532,
+ 0.0
+ ],
+ [
+ 114.176569588740847,
+ 22.284297818877835,
+ 0.0
+ ],
+ [
+ 114.176390875018853,
+ 22.283941156497164,
+ 0.0
+ ],
+ [
+ 114.176148328794312,
+ 22.283618793576714,
+ 0.0
+ ],
+ [
+ 114.175849319920204,
+ 22.283340524688452,
+ 0.0
+ ],
+ [
+ 114.175502933629815,
+ 22.283114804612701,
+ 0.0
+ ],
+ [
+ 114.17511969448654,
+ 22.28294849147753,
+ 0.0
+ ],
+ [
+ 114.174711246625577,
+ 22.282846638409652,
+ 0.0
+ ],
+ [
+ 114.17429,
+ 22.282812340023472,
+ 0.0
+ ],
+ [
+ 114.173868753374421,
+ 22.282846638409652,
+ 0.0
+ ],
+ [
+ 114.173460305513458,
+ 22.28294849147753,
+ 0.0
+ ],
+ [
+ 114.173077066370183,
+ 22.283114804612701,
+ 0.0
+ ],
+ [
+ 114.172730680079795,
+ 22.283340524688452,
+ 0.0
+ ],
+ [
+ 114.172431671205686,
+ 22.283618793576714,
+ 0.0
+ ],
+ [
+ 114.172189124981145,
+ 22.283941156497164,
+ 0.0
+ ],
+ [
+ 114.172010411259151,
+ 22.284297818877835,
+ 0.0
+ ],
+ [
+ 114.171900960557934,
+ 22.284677943926532,
+ 0.0
+ ],
+ [
+ 114.171864099010122,
+ 22.285069981875562,
+ 0.0
+ ],
+ [
+ 114.171900947236196,
+ 22.285462020898709,
+ 0.0
+ ],
+ [
+ 114.172010386222496,
+ 22.285842149040199,
+ 0.0
+ ],
+ [
+ 114.172189091249336,
+ 22.286198816159299,
+ 0.0
+ ],
+ [
+ 114.172431632847278,
+ 22.286521184892308,
+ 0.0
+ ],
+ [
+ 114.172730641721387,
+ 22.286799459966151,
+ 0.0
+ ],
+ [
+ 114.173077032638361,
+ 22.287025185854453,
+ 0.0
+ ],
+ [
+ 114.173460280476789,
+ 22.287191503728049,
+ 0.0
+ ],
+ [
+ 114.173868740052683,
+ 22.287293359888729,
+ 0.0
+ ],
+ [
+ 114.17429,
+ 22.287327659349021,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002472,
+ "name": "(Cap. 448G RFZ) Headquarters House",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2707792423613",
+ "lng": "114.160643869453",
+ "radius": 60,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.16005180885702,
+ 22.270791007560497,
+ 0.0
+ ],
+ [
+ 114.160423795171013,
+ 22.270309856489703,
+ 0.0
+ ],
+ [
+ 114.161225090753007,
+ 22.270674222758906,
+ 0.0
+ ],
+ [
+ 114.161184128542999,
+ 22.271003674919186,
+ 0.0
+ ],
+ [
+ 114.160954696044996,
+ 22.271040804745809,
+ 0.0
+ ],
+ [
+ 114.16005180885702,
+ 22.270791007560497,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042616,
+ "name": "New Territories South Regional Police Headquarters",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.3711758444124",
+ "lng": "114.122755615336",
+ "radius": 66,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.123324568096606,
+ 22.370894038377102,
+ 0.0
+ ],
+ [
+ 114.123308431582998,
+ 22.371222294760798,
+ 0.0
+ ],
+ [
+ 114.123255491535502,
+ 22.371561418936835,
+ 0.0
+ ],
+ [
+ 114.123000667859401,
+ 22.371399001507228,
+ 0.0
+ ],
+ [
+ 114.122958329775685,
+ 22.371359903269635,
+ 0.0
+ ],
+ [
+ 114.122890675843294,
+ 22.371353911552276,
+ 0.0
+ ],
+ [
+ 114.122758225138497,
+ 22.371435927812016,
+ 0.0
+ ],
+ [
+ 114.122720544883308,
+ 22.371479487542501,
+ 0.0
+ ],
+ [
+ 114.122768430452396,
+ 22.371509914770556,
+ 0.0
+ ],
+ [
+ 114.122718610198021,
+ 22.371573823460594,
+ 0.0
+ ],
+ [
+ 114.122502079100599,
+ 22.371430504981916,
+ 0.0
+ ],
+ [
+ 114.122390743003592,
+ 22.371346528758636,
+ 0.0
+ ],
+ [
+ 114.122272860343401,
+ 22.371243938321356,
+ 0.0
+ ],
+ [
+ 114.122114049287418,
+ 22.3710740384264,
+ 0.0
+ ],
+ [
+ 114.122267736171992,
+ 22.371013378033595,
+ 0.0
+ ],
+ [
+ 114.122503969474593,
+ 22.370937799690424,
+ 0.0
+ ],
+ [
+ 114.122719077814807,
+ 22.370886526846789,
+ 0.0
+ ],
+ [
+ 114.1229101420398,
+ 22.370853563243429,
+ 0.0
+ ],
+ [
+ 114.123283356771992,
+ 22.370823452927738,
+ 0.0
+ ],
+ [
+ 114.123324568096606,
+ 22.370894038377102,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8724,
+ "name": "Shenzhen Bao'an International Airport",
+ "country": "CN",
+ "city": "Shenzhen",
+ "height": 0,
+ "level": 2,
+ "lat": "22.6806823534183",
+ "lng": "113.77939954383",
+ "radius": 13970,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.812731634,
+ 22.558867344199999,
+ 0.0
+ ],
+ [
+ 113.792250521,
+ 22.719468856199999,
+ 0.0
+ ],
+ [
+ 113.765641211,
+ 22.797778324500001,
+ 0.0
+ ],
+ [
+ 113.751033447772926,
+ 22.790857888716168,
+ 0.0
+ ],
+ [
+ 113.747295287,
+ 22.802784430300001,
+ 0.0
+ ],
+ [
+ 113.681979261,
+ 22.768495532100001,
+ 0.0
+ ],
+ [
+ 113.733653336,
+ 22.701871160700001,
+ 0.0
+ ],
+ [
+ 113.71710569,
+ 22.674453029799999,
+ 0.0
+ ],
+ [
+ 113.714814119,
+ 22.657990038400001,
+ 0.0
+ ],
+ [
+ 113.717217905,
+ 22.6415407145,
+ 0.0
+ ],
+ [
+ 113.74080462,
+ 22.5929145998,
+ 0.0
+ ],
+ [
+ 113.76153482399999,
+ 22.5703988916,
+ 0.0
+ ],
+ [
+ 113.777300942,
+ 22.562427860900002,
+ 0.0
+ ],
+ [
+ 113.812731634,
+ 22.558867344199999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8724,
+ "name": "Shenzhen Bao'an International Airport",
+ "country": "CN",
+ "city": "Shenzhen",
+ "height": 0,
+ "level": 2,
+ "lat": "22.5995813356733",
+ "lng": "113.826764764607",
+ "radius": 13793,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.855281624646523,
+ 22.485162935017019,
+ 0.0
+ ],
+ [
+ 113.85772100299999,
+ 22.478875244800001,
+ 0.0
+ ],
+ [
+ 113.92135190499999,
+ 22.511507058399999,
+ 0.0
+ ],
+ [
+ 113.869675309,
+ 22.579776788499998,
+ 0.0
+ ],
+ [
+ 113.885225768,
+ 22.605364375299999,
+ 0.0
+ ],
+ [
+ 113.887871122,
+ 22.621781996700001,
+ 0.0
+ ],
+ [
+ 113.88582305,
+ 22.638272235399999,
+ 0.0
+ ],
+ [
+ 113.864195541,
+ 22.683752779300001,
+ 0.0
+ ],
+ [
+ 113.843340508,
+ 22.7073399692,
+ 0.0
+ ],
+ [
+ 113.827670454,
+ 22.715498035500001,
+ 0.0
+ ],
+ [
+ 113.792250521,
+ 22.719468856199999,
+ 0.0
+ ],
+ [
+ 113.812731634,
+ 22.558867344199999,
+ 0.0
+ ],
+ [
+ 113.8393715,
+ 22.477216223199999,
+ 0.0
+ ],
+ [
+ 113.855281624646523,
+ 22.485162935017019,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8724,
+ "name": "Shenzhen Bao'an International Airport",
+ "country": "CN",
+ "city": "Shenzhen",
+ "height": 120,
+ "level": 2,
+ "lat": "22.6426651668349",
+ "lng": "113.803135307911",
+ "radius": 24735,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.813788004664758,
+ 22.429543872051003,
+ 120.0
+ ],
+ [
+ 113.794857101,
+ 22.421471562099999,
+ 120.0
+ ],
+ [
+ 113.614664389,
+ 22.7814397452,
+ 120.0
+ ],
+ [
+ 113.79184978399999,
+ 22.856795502400001,
+ 120.0
+ ],
+ [
+ 113.794970976579449,
+ 22.850544259024556,
+ 120.0
+ ],
+ [
+ 113.805348224,
+ 22.8552176538,
+ 120.0
+ ],
+ [
+ 113.99122547499999,
+ 22.5036707545,
+ 120.0
+ ],
+ [
+ 113.816348417,
+ 22.424713047699999,
+ 120.0
+ ],
+ [
+ 113.813788004664758,
+ 22.429543872051003,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045108,
+ "name": "立法會大樓",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.183472",
+ "lng": "113.54",
+ "radius": 50,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.54,
+ 22.1839235375576,
+ 0.0
+ ],
+ [
+ 113.540084190223425,
+ 22.183916677665941,
+ 0.0
+ ],
+ [
+ 113.5401658223456,
+ 22.183896306427215,
+ 0.0
+ ],
+ [
+ 113.540242415994783,
+ 22.183863042816764,
+ 0.0
+ ],
+ [
+ 113.540311643896132,
+ 22.183817897541068,
+ 0.0
+ ],
+ [
+ 113.540371402586558,
+ 22.183762242326914,
+ 0.0
+ ],
+ [
+ 113.540419876328514,
+ 22.183697768240933,
+ 0.0
+ ],
+ [
+ 113.540455592280168,
+ 22.183626434306028,
+ 0.0
+ ],
+ [
+ 113.540477465245999,
+ 22.183550407976242,
+ 0.0
+ ],
+ [
+ 113.540484830648055,
+ 22.18347199927867,
+ 0.0
+ ],
+ [
+ 113.540477464716204,
+ 22.183393590623851,
+ 0.0
+ ],
+ [
+ 113.540455591284456,
+ 22.183317564417141,
+ 0.0
+ ],
+ [
+ 113.540419874986995,
+ 22.183246230670829,
+ 0.0
+ ],
+ [
+ 113.540371401061066,
+ 22.183181756816168,
+ 0.0
+ ],
+ [
+ 113.540311642370625,
+ 22.183126101848195,
+ 0.0
+ ],
+ [
+ 113.540242414653292,
+ 22.183080956803813,
+ 0.0
+ ],
+ [
+ 113.540165821349902,
+ 22.18304769338194,
+ 0.0
+ ],
+ [
+ 113.540084189693616,
+ 22.183027322266302,
+ 0.0
+ ],
+ [
+ 113.54,
+ 22.183020462417385,
+ 0.0
+ ],
+ [
+ 113.539915810306397,
+ 22.183027322266302,
+ 0.0
+ ],
+ [
+ 113.539834178650111,
+ 22.18304769338194,
+ 0.0
+ ],
+ [
+ 113.53975758534672,
+ 22.183080956803813,
+ 0.0
+ ],
+ [
+ 113.539688357629387,
+ 22.183126101848195,
+ 0.0
+ ],
+ [
+ 113.539628598938947,
+ 22.183181756816168,
+ 0.0
+ ],
+ [
+ 113.539580125013018,
+ 22.183246230670829,
+ 0.0
+ ],
+ [
+ 113.539544408715557,
+ 22.183317564417141,
+ 0.0
+ ],
+ [
+ 113.539522535283808,
+ 22.183393590623851,
+ 0.0
+ ],
+ [
+ 113.539515169351958,
+ 22.18347199927867,
+ 0.0
+ ],
+ [
+ 113.539522534754013,
+ 22.183550407976242,
+ 0.0
+ ],
+ [
+ 113.539544407719845,
+ 22.183626434306028,
+ 0.0
+ ],
+ [
+ 113.539580123671499,
+ 22.183697768240933,
+ 0.0
+ ],
+ [
+ 113.539628597413454,
+ 22.183762242326914,
+ 0.0
+ ],
+ [
+ 113.539688356103881,
+ 22.183817897541068,
+ 0.0
+ ],
+ [
+ 113.53975758400523,
+ 22.183863042816764,
+ 0.0
+ ],
+ [
+ 113.539834177654413,
+ 22.183896306427215,
+ 0.0
+ ],
+ [
+ 113.539915809776588,
+ 22.183916677665941,
+ 0.0
+ ],
+ [
+ 113.54,
+ 22.1839235375576,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045121,
+ "name": "終審法院",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.183083",
+ "lng": "113.540472",
+ "radius": 50,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.540472,
+ 22.183534537579153,
+ 0.0
+ ],
+ [
+ 113.540556189991676,
+ 22.183527677687159,
+ 0.0
+ ],
+ [
+ 113.540637821889149,
+ 22.183507306447463,
+ 0.0
+ ],
+ [
+ 113.540714415327528,
+ 22.183474042835432,
+ 0.0
+ ],
+ [
+ 113.54078364303831,
+ 22.18342889755758,
+ 0.0
+ ],
+ [
+ 113.54084340156426,
+ 22.183373242340771,
+ 0.0
+ ],
+ [
+ 113.54089187517279,
+ 22.183308768251717,
+ 0.0
+ ],
+ [
+ 113.540927591026147,
+ 22.183237434313412,
+ 0.0
+ ],
+ [
+ 113.540949463931781,
+ 22.183161407979995,
+ 0.0
+ ],
+ [
+ 113.540956829313572,
+ 22.183082999278689,
+ 0.0
+ ],
+ [
+ 113.540949463402001,
+ 22.183004590620122,
+ 0.0
+ ],
+ [
+ 113.540927590030464,
+ 22.182928564409789,
+ 0.0
+ ],
+ [
+ 113.540891873831328,
+ 22.182857230660066,
+ 0.0
+ ],
+ [
+ 113.540843400038796,
+ 22.182792756802328,
+ 0.0
+ ],
+ [
+ 113.540783641512846,
+ 22.182737101831691,
+ 0.0
+ ],
+ [
+ 113.540714413986052,
+ 22.182691956785156,
+ 0.0
+ ],
+ [
+ 113.54063782089348,
+ 22.182658693361692,
+ 0.0
+ ],
+ [
+ 113.540556189461881,
+ 22.182638322245086,
+ 0.0
+ ],
+ [
+ 113.540472,
+ 22.18263146239584,
+ 0.0
+ ],
+ [
+ 113.540387810538107,
+ 22.182638322245086,
+ 0.0
+ ],
+ [
+ 113.540306179106508,
+ 22.182658693361692,
+ 0.0
+ ],
+ [
+ 113.540229586013936,
+ 22.182691956785156,
+ 0.0
+ ],
+ [
+ 113.540160358487142,
+ 22.182737101831691,
+ 0.0
+ ],
+ [
+ 113.540100599961193,
+ 22.182792756802328,
+ 0.0
+ ],
+ [
+ 113.540052126168661,
+ 22.182857230660066,
+ 0.0
+ ],
+ [
+ 113.540016409969525,
+ 22.182928564409789,
+ 0.0
+ ],
+ [
+ 113.539994536597987,
+ 22.183004590620122,
+ 0.0
+ ],
+ [
+ 113.539987170686416,
+ 22.183082999278689,
+ 0.0
+ ],
+ [
+ 113.539994536068207,
+ 22.183161407979995,
+ 0.0
+ ],
+ [
+ 113.540016408973841,
+ 22.183237434313412,
+ 0.0
+ ],
+ [
+ 113.540052124827199,
+ 22.183308768251717,
+ 0.0
+ ],
+ [
+ 113.540100598435728,
+ 22.183373242340771,
+ 0.0
+ ],
+ [
+ 113.540160356961678,
+ 22.18342889755758,
+ 0.0
+ ],
+ [
+ 113.54022958467246,
+ 22.183474042835432,
+ 0.0
+ ],
+ [
+ 113.540306178110839,
+ 22.183507306447463,
+ 0.0
+ ],
+ [
+ 113.540387810008312,
+ 22.183527677687159,
+ 0.0
+ ],
+ [
+ 113.540472,
+ 22.183534537579153,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33332,
+ "name": "Pik Uk Correctional Institution",
+ "country": "HK",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "22.339408",
+ "lng": "114.245705",
+ "radius": 200,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.245705,
+ 22.341214115435072,
+ 0.0
+ ],
+ [
+ 114.246042137337781,
+ 22.341186676135575,
+ 0.0
+ ],
+ [
+ 114.246369030542297,
+ 22.341105191997425,
+ 0.0
+ ],
+ [
+ 114.246675746789606,
+ 22.34097213896446,
+ 0.0
+ ],
+ [
+ 114.246952966409893,
+ 22.340791559922977,
+ 0.0
+ ],
+ [
+ 114.247192266091304,
+ 22.340568941844065,
+ 0.0
+ ],
+ [
+ 114.247386374834107,
+ 22.340311049044491,
+ 0.0
+ ],
+ [
+ 114.247529394876423,
+ 22.340025717634763,
+ 0.0
+ ],
+ [
+ 114.247616980878519,
+ 22.339721617402567,
+ 0.0
+ ],
+ [
+ 114.247646471923332,
+ 22.3394079883691,
+ 0.0
+ ],
+ [
+ 114.247616972326256,
+ 22.339094360024934,
+ 0.0
+ ],
+ [
+ 114.247529378803449,
+ 22.338790261777479,
+ 0.0
+ ],
+ [
+ 114.247386353179053,
+ 22.338504933408561,
+ 0.0
+ ],
+ [
+ 114.247192241466067,
+ 22.338247044339106,
+ 0.0
+ ],
+ [
+ 114.24695294178467,
+ 22.338024430229687,
+ 0.0
+ ],
+ [
+ 114.246675725134537,
+ 22.337843854918312,
+ 0.0
+ ],
+ [
+ 114.246369014469309,
+ 22.337710804926168,
+ 0.0
+ ],
+ [
+ 114.246042128785533,
+ 22.337629322772756,
+ 0.0
+ ],
+ [
+ 114.245705,
+ 22.337601884162556,
+ 0.0
+ ],
+ [
+ 114.245367871214469,
+ 22.337629322772756,
+ 0.0
+ ],
+ [
+ 114.245040985530693,
+ 22.337710804926168,
+ 0.0
+ ],
+ [
+ 114.244734274865465,
+ 22.337843854918312,
+ 0.0
+ ],
+ [
+ 114.244457058215332,
+ 22.338024430229687,
+ 0.0
+ ],
+ [
+ 114.244217758533935,
+ 22.338247044339106,
+ 0.0
+ ],
+ [
+ 114.244023646820949,
+ 22.338504933408561,
+ 0.0
+ ],
+ [
+ 114.243880621196553,
+ 22.338790261777479,
+ 0.0
+ ],
+ [
+ 114.243793027673746,
+ 22.339094360024934,
+ 0.0
+ ],
+ [
+ 114.24376352807667,
+ 22.3394079883691,
+ 0.0
+ ],
+ [
+ 114.243793019121483,
+ 22.339721617402567,
+ 0.0
+ ],
+ [
+ 114.243880605123579,
+ 22.340025717634763,
+ 0.0
+ ],
+ [
+ 114.244023625165894,
+ 22.340311049044491,
+ 0.0
+ ],
+ [
+ 114.244217733908698,
+ 22.340568941844065,
+ 0.0
+ ],
+ [
+ 114.244457033590109,
+ 22.340791559922977,
+ 0.0
+ ],
+ [
+ 114.244734253210396,
+ 22.34097213896446,
+ 0.0
+ ],
+ [
+ 114.245040969457705,
+ 22.341105191997425,
+ 0.0
+ ],
+ [
+ 114.245367862662221,
+ 22.341186676135575,
+ 0.0
+ ],
+ [
+ 114.245705,
+ 22.341214115435072,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 10690,
+ "name": "Shek Pik prison",
+ "country": "HK",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "22.224292",
+ "lng": "113.894824",
+ "radius": 161,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.894824,
+ 22.225745943560302,
+ 0.0
+ ],
+ [
+ 113.895095172811196,
+ 22.22572385466659,
+ 0.0
+ ],
+ [
+ 113.895358105925339,
+ 22.225658259165332,
+ 0.0
+ ],
+ [
+ 113.895604810034328,
+ 22.225551150200349,
+ 0.0
+ ],
+ [
+ 113.895827788996527,
+ 22.225405782311743,
+ 0.0
+ ],
+ [
+ 113.896020267622745,
+ 22.225226572537689,
+ 0.0
+ ],
+ [
+ 113.896176397547322,
+ 22.225018966191868,
+ 0.0
+ ],
+ [
+ 113.89629143492779,
+ 22.224789271396475,
+ 0.0
+ ],
+ [
+ 113.896361884573707,
+ 22.22454446740003,
+ 0.0
+ ],
+ [
+ 113.896385606126699,
+ 22.22429199250578,
+ 0.0
+ ],
+ [
+ 113.896361879067769,
+ 22.224039518055655,
+ 0.0
+ ],
+ [
+ 113.896291424579999,
+ 22.223794715338027,
+ 0.0
+ ],
+ [
+ 113.896176383605777,
+ 22.223565022501884,
+ 0.0
+ ],
+ [
+ 113.896020251769002,
+ 22.223357418559441,
+ 0.0
+ ],
+ [
+ 113.895827773142798,
+ 22.223178211342997,
+ 0.0
+ ],
+ [
+ 113.895604796092783,
+ 22.223032845857762,
+ 0.0
+ ],
+ [
+ 113.895358095577549,
+ 22.222925738852037,
+ 0.0
+ ],
+ [
+ 113.895095167305257,
+ 22.222860144629596,
+ 0.0
+ ],
+ [
+ 113.894824,
+ 22.222838056179999,
+ 0.0
+ ],
+ [
+ 113.894552832694743,
+ 22.222860144629596,
+ 0.0
+ ],
+ [
+ 113.89428990442245,
+ 22.222925738852037,
+ 0.0
+ ],
+ [
+ 113.894043203907216,
+ 22.223032845857762,
+ 0.0
+ ],
+ [
+ 113.893820226857201,
+ 22.223178211342997,
+ 0.0
+ ],
+ [
+ 113.893627748230998,
+ 22.223357418559441,
+ 0.0
+ ],
+ [
+ 113.893471616394223,
+ 22.223565022501884,
+ 0.0
+ ],
+ [
+ 113.89335657542,
+ 22.223794715338027,
+ 0.0
+ ],
+ [
+ 113.893286120932231,
+ 22.224039518055655,
+ 0.0
+ ],
+ [
+ 113.8932623938733,
+ 22.22429199250578,
+ 0.0
+ ],
+ [
+ 113.893286115426292,
+ 22.22454446740003,
+ 0.0
+ ],
+ [
+ 113.89335656507221,
+ 22.224789271396475,
+ 0.0
+ ],
+ [
+ 113.893471602452678,
+ 22.225018966191868,
+ 0.0
+ ],
+ [
+ 113.893627732377254,
+ 22.225226572537689,
+ 0.0
+ ],
+ [
+ 113.893820211003472,
+ 22.225405782311743,
+ 0.0
+ ],
+ [
+ 113.894043189965672,
+ 22.225551150200349,
+ 0.0
+ ],
+ [
+ 113.89428989407466,
+ 22.225658259165332,
+ 0.0
+ ],
+ [
+ 113.894552827188804,
+ 22.22572385466659,
+ 0.0
+ ],
+ [
+ 113.894824,
+ 22.225745943560302,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002451,
+ "name": "(Cap. 448G RFZ) Central Military Dock",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2837786353669",
+ "lng": "114.164449882276",
+ "radius": 76,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.163732003800007,
+ 22.283943714579948,
+ 0.0
+ ],
+ [
+ 114.165092652996222,
+ 22.283439466762964,
+ 0.0
+ ],
+ [
+ 114.165167759057681,
+ 22.283613552997977,
+ 0.0
+ ],
+ [
+ 114.163814166717117,
+ 22.284118635526351,
+ 0.0
+ ],
+ [
+ 114.163732003800007,
+ 22.283943714579948,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002446,
+ "name": "(Cap. 448G RFZ) OSNS of the CPG of the PRC in the HKSAR (the Sai Ying Pun Office Accommodation)",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2882424849167",
+ "lng": "114.142497659795",
+ "radius": 26,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.142397521299003,
+ 22.288024478803091,
+ 0.0
+ ],
+ [
+ 114.142551715802981,
+ 22.288019869693205,
+ 0.0
+ ],
+ [
+ 114.142597798603006,
+ 22.288460490968795,
+ 0.0
+ ],
+ [
+ 114.142414462802009,
+ 22.288465971722989,
+ 0.0
+ ],
+ [
+ 114.142397521299003,
+ 22.288024478803091,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001363,
+ "name": "Zhuhai Airport",
+ "country": "CN",
+ "city": "Zhuhai",
+ "height": 500,
+ "level": 2,
+ "lat": "22.007436",
+ "lng": "113.373279",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.373279,
+ 22.458970796254889,
+ 500.0
+ ],
+ [
+ 113.457629369578839,
+ 22.452089390449103,
+ 500.0
+ ],
+ [
+ 113.539392639917352,
+ 22.431656227329455,
+ 500.0
+ ],
+ [
+ 113.61606330653602,
+ 22.398297811684746,
+ 500.0
+ ],
+ [
+ 113.685296194967876,
+ 22.353036358601337,
+ 500.0
+ ],
+ [
+ 113.744979615258544,
+ 22.297257661973042,
+ 500.0
+ ],
+ [
+ 113.793300479056697,
+ 22.232667685544076,
+ 500.0
+ ],
+ [
+ 113.828799291390695,
+ 22.161239360662691,
+ 500.0
+ ],
+ [
+ 113.850413372941077,
+ 22.085151378033576,
+ 500.0
+ ],
+ [
+ 113.857507154919787,
+ 22.006720987403401,
+ 500.0
+ ],
+ [
+ 113.849888885972732,
+ 21.928332965481207,
+ 500.0
+ ],
+ [
+ 113.827813571331703,
+ 21.852366979527982,
+ 500.0
+ ],
+ [
+ 113.791972407582193,
+ 21.781125566826457,
+ 500.0
+ ],
+ [
+ 113.74346936796853,
+ 21.716764876142587,
+ 500.0
+ ],
+ [
+ 113.68378592625352,
+ 21.661230185165195,
+ 500.0
+ ],
+ [
+ 113.614735180813227,
+ 21.616198026956045,
+ 500.0
+ ],
+ [
+ 113.538406858169452,
+ 21.583026537477924,
+ 500.0
+ ],
+ [
+ 113.457104842345927,
+ 21.562715383333881,
+ 500.0
+ ],
+ [
+ 113.373279,
+ 21.555876351093609,
+ 500.0
+ ],
+ [
+ 113.289453157654066,
+ 21.562715383333881,
+ 500.0
+ ],
+ [
+ 113.208151141830541,
+ 21.583026537477924,
+ 500.0
+ ],
+ [
+ 113.131822819186766,
+ 21.616198026956045,
+ 500.0
+ ],
+ [
+ 113.062772073746473,
+ 21.661230185165195,
+ 500.0
+ ],
+ [
+ 113.003088632031464,
+ 21.716764876142587,
+ 500.0
+ ],
+ [
+ 112.9545855924178,
+ 21.781125566826457,
+ 500.0
+ ],
+ [
+ 112.91874442866829,
+ 21.852366979527982,
+ 500.0
+ ],
+ [
+ 112.896669114027262,
+ 21.928332965481207,
+ 500.0
+ ],
+ [
+ 112.889050845080206,
+ 22.006720987403401,
+ 500.0
+ ],
+ [
+ 112.896144627058916,
+ 22.085151378033576,
+ 500.0
+ ],
+ [
+ 112.917758708609298,
+ 22.161239360662691,
+ 500.0
+ ],
+ [
+ 112.953257520943296,
+ 22.232667685544076,
+ 500.0
+ ],
+ [
+ 113.00157838474145,
+ 22.297257661973042,
+ 500.0
+ ],
+ [
+ 113.061261805032117,
+ 22.353036358601337,
+ 500.0
+ ],
+ [
+ 113.130494693463973,
+ 22.398297811684746,
+ 500.0
+ ],
+ [
+ 113.207165360082641,
+ 22.431656227329455,
+ 500.0
+ ],
+ [
+ 113.288928630421154,
+ 22.452089390449103,
+ 500.0
+ ],
+ [
+ 113.373279,
+ 22.458970796254889,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045113,
+ "name": "澳門外港直昇機場",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.196972",
+ "lng": "113.559167",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.559167,
+ 22.206002731438705,
+ 0.0
+ ],
+ [
+ 113.560851066135442,
+ 22.205865525703327,
+ 0.0
+ ],
+ [
+ 113.562483953201479,
+ 22.205458078196397,
+ 0.0
+ ],
+ [
+ 113.564016038333918,
+ 22.204792771228149,
+ 0.0
+ ],
+ [
+ 113.565400763655063,
+ 22.203889823221175,
+ 0.0
+ ],
+ [
+ 113.566596051664845,
+ 22.202776673972714,
+ 0.0
+ ],
+ [
+ 113.567565584144816,
+ 22.201487150406013,
+ 0.0
+ ],
+ [
+ 113.568279905668049,
+ 22.200060438219889,
+ 0.0
+ ],
+ [
+ 113.568717318185691,
+ 22.198539890747142,
+ 0.0
+ ],
+ [
+ 113.568864539556628,
+ 22.196971711274802,
+ 0.0
+ ],
+ [
+ 113.568717106103222,
+ 22.195403548912921,
+ 0.0
+ ],
+ [
+ 113.568279507083403,
+ 22.193883050707761,
+ 0.0
+ ],
+ [
+ 113.567565047133144,
+ 22.192456414003988,
+ 0.0
+ ],
+ [
+ 113.56659544099773,
+ 22.191166983030083,
+ 0.0
+ ],
+ [
+ 113.565400152987948,
+ 22.190053932316815,
+ 0.0
+ ],
+ [
+ 113.564015501322245,
+ 22.189151076902633,
+ 0.0
+ ],
+ [
+ 113.562483554616819,
+ 22.188485845416729,
+ 0.0
+ ],
+ [
+ 113.560850854052973,
+ 22.188078447177404,
+ 0.0
+ ],
+ [
+ 113.559167,
+ 22.187941258552474,
+ 0.0
+ ],
+ [
+ 113.557483145947032,
+ 22.188078447177404,
+ 0.0
+ ],
+ [
+ 113.555850445383186,
+ 22.188485845416729,
+ 0.0
+ ],
+ [
+ 113.554318498677759,
+ 22.189151076902633,
+ 0.0
+ ],
+ [
+ 113.552933847012056,
+ 22.190053932316815,
+ 0.0
+ ],
+ [
+ 113.551738559002274,
+ 22.191166983030083,
+ 0.0
+ ],
+ [
+ 113.550768952866861,
+ 22.192456414003988,
+ 0.0
+ ],
+ [
+ 113.550054492916601,
+ 22.193883050707761,
+ 0.0
+ ],
+ [
+ 113.549616893896783,
+ 22.195403548912921,
+ 0.0
+ ],
+ [
+ 113.549469460443376,
+ 22.196971711274802,
+ 0.0
+ ],
+ [
+ 113.549616681814314,
+ 22.198539890747142,
+ 0.0
+ ],
+ [
+ 113.550054094331955,
+ 22.200060438219889,
+ 0.0
+ ],
+ [
+ 113.550768415855188,
+ 22.201487150406013,
+ 0.0
+ ],
+ [
+ 113.551737948335159,
+ 22.202776673972714,
+ 0.0
+ ],
+ [
+ 113.552933236344941,
+ 22.203889823221175,
+ 0.0
+ ],
+ [
+ 113.554317961666086,
+ 22.204792771228149,
+ 0.0
+ ],
+ [
+ 113.555850046798525,
+ 22.205458078196397,
+ 0.0
+ ],
+ [
+ 113.557482933864563,
+ 22.205865525703327,
+ 0.0
+ ],
+ [
+ 113.559167,
+ 22.206002731438705,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33333,
+ "name": "Siu Lam Psychiatric Centre",
+ "country": "HK",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "22.365361",
+ "lng": "114.017218",
+ "radius": 150,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.017218,
+ 22.366715582275532,
+ 0.0
+ ],
+ [
+ 114.017470899034905,
+ 22.366695002931191,
+ 0.0
+ ],
+ [
+ 114.017716113643232,
+ 22.366633890208661,
+ 0.0
+ ],
+ [
+ 114.017946192912063,
+ 22.366534101037526,
+ 0.0
+ ],
+ [
+ 114.018154145857352,
+ 22.36639866753853,
+ 0.0
+ ],
+ [
+ 114.018333653858619,
+ 22.36623170488479,
+ 0.0
+ ],
+ [
+ 114.018479262656086,
+ 22.366038286252923,
+ 0.0
+ ],
+ [
+ 114.018586548075632,
+ 22.365824288664964,
+ 0.0
+ ],
+ [
+ 114.018652250445925,
+ 22.365596214406619,
+ 0.0
+ ],
+ [
+ 114.018674373624862,
+ 22.365360993449215,
+ 0.0
+ ],
+ [
+ 114.018652245628203,
+ 22.365125772880049,
+ 0.0
+ ],
+ [
+ 114.018586539021257,
+ 22.364897699739551,
+ 0.0
+ ],
+ [
+ 114.018479250457176,
+ 22.364683703864259,
+ 0.0
+ ],
+ [
+ 114.018333639986537,
+ 22.36449028733329,
+ 0.0
+ ],
+ [
+ 114.01815413198527,
+ 22.364323326915276,
+ 0.0
+ ],
+ [
+ 114.017946180713139,
+ 22.364187895517173,
+ 0.0
+ ],
+ [
+ 114.017716104588871,
+ 22.364088108058695,
+ 0.0
+ ],
+ [
+ 114.017470894217169,
+ 22.364026996454037,
+ 0.0
+ ],
+ [
+ 114.017218,
+ 22.364006417497926,
+ 0.0
+ ],
+ [
+ 114.01696510578283,
+ 22.364026996454037,
+ 0.0
+ ],
+ [
+ 114.016719895411129,
+ 22.364088108058695,
+ 0.0
+ ],
+ [
+ 114.016489819286861,
+ 22.364187895517173,
+ 0.0
+ ],
+ [
+ 114.01628186801473,
+ 22.364323326915276,
+ 0.0
+ ],
+ [
+ 114.016102360013463,
+ 22.36449028733329,
+ 0.0
+ ],
+ [
+ 114.015956749542823,
+ 22.364683703864259,
+ 0.0
+ ],
+ [
+ 114.015849460978743,
+ 22.364897699739551,
+ 0.0
+ ],
+ [
+ 114.015783754371796,
+ 22.365125772880049,
+ 0.0
+ ],
+ [
+ 114.015761626375138,
+ 22.365360993449215,
+ 0.0
+ ],
+ [
+ 114.015783749554075,
+ 22.365596214406619,
+ 0.0
+ ],
+ [
+ 114.015849451924367,
+ 22.365824288664964,
+ 0.0
+ ],
+ [
+ 114.015956737343913,
+ 22.366038286252923,
+ 0.0
+ ],
+ [
+ 114.016102346141381,
+ 22.36623170488479,
+ 0.0
+ ],
+ [
+ 114.016281854142647,
+ 22.36639866753853,
+ 0.0
+ ],
+ [
+ 114.016489807087936,
+ 22.366534101037526,
+ 0.0
+ ],
+ [
+ 114.016719886356768,
+ 22.366633890208661,
+ 0.0
+ ],
+ [
+ 114.016965100965095,
+ 22.366695002931191,
+ 0.0
+ ],
+ [
+ 114.017218,
+ 22.366715582275532,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042612,
+ "name": "(Cap. 448G RFZ) Hong Kong Police College",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2463245116157",
+ "lng": "114.171645027209",
+ "radius": 295,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.170366,
+ 22.248365,
+ 0.0
+ ],
+ [
+ 114.169696,
+ 22.24828,
+ 0.0
+ ],
+ [
+ 114.169428,
+ 22.24789,
+ 0.0
+ ],
+ [
+ 114.16929,
+ 22.247607,
+ 0.0
+ ],
+ [
+ 114.169218,
+ 22.247363,
+ 0.0
+ ],
+ [
+ 114.169117,
+ 22.246574,
+ 0.0
+ ],
+ [
+ 114.16907,
+ 22.246578,
+ 0.0
+ ],
+ [
+ 114.169131,
+ 22.246168,
+ 0.0
+ ],
+ [
+ 114.169077,
+ 22.245915,
+ 0.0
+ ],
+ [
+ 114.169142,
+ 22.245242,
+ 0.0
+ ],
+ [
+ 114.170058,
+ 22.244681,
+ 0.0
+ ],
+ [
+ 114.171984,
+ 22.244694,
+ 0.0
+ ],
+ [
+ 114.173199,
+ 22.244864,
+ 0.0
+ ],
+ [
+ 114.173594,
+ 22.244369,
+ 0.0
+ ],
+ [
+ 114.173848,
+ 22.245643,
+ 0.0
+ ],
+ [
+ 114.173702,
+ 22.245887,
+ 0.0
+ ],
+ [
+ 114.173634,
+ 22.247888,
+ 0.0
+ ],
+ [
+ 114.172238,
+ 22.248281,
+ 0.0
+ ],
+ [
+ 114.170939,
+ 22.248385,
+ 0.0
+ ],
+ [
+ 114.170366,
+ 22.248365,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002447,
+ "name": "(Cap. 448G RFZ) OCMFA of the PRC in the HKSAR (1)",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2757399695131",
+ "lng": "114.161387853929",
+ "radius": 45,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.161008244523913,
+ 22.275531072280067,
+ 0.0
+ ],
+ [
+ 114.161290295369199,
+ 22.275390546583747,
+ 0.0
+ ],
+ [
+ 114.161425843925301,
+ 22.275403012752029,
+ 0.0
+ ],
+ [
+ 114.161811175345306,
+ 22.27568547316168,
+ 0.0
+ ],
+ [
+ 114.161767464468511,
+ 22.275948865863835,
+ 0.0
+ ],
+ [
+ 114.161664357941717,
+ 22.275974765182323,
+ 0.0
+ ],
+ [
+ 114.161043912860009,
+ 22.275787546001848,
+ 0.0
+ ],
+ [
+ 114.161008244523913,
+ 22.275531072280067,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002465,
+ "name": "(Cap. 448G RFZ) Shek Kong Barracks",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4368445024503",
+ "lng": "114.07989441722",
+ "radius": 1010,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.070595699523992,
+ 22.439808195713912,
+ 0.0
+ ],
+ [
+ 114.075395807407006,
+ 22.434524079078606,
+ 0.0
+ ],
+ [
+ 114.078169482317008,
+ 22.432869945818403,
+ 0.0
+ ],
+ [
+ 114.088290409614984,
+ 22.432763581548993,
+ 0.0
+ ],
+ [
+ 114.088920105018005,
+ 22.433231414438417,
+ 0.0
+ ],
+ [
+ 114.089200502374013,
+ 22.4339011663942,
+ 0.0
+ ],
+ [
+ 114.088601115656004,
+ 22.435668064558502,
+ 0.0
+ ],
+ [
+ 114.082912666169989,
+ 22.441459842245902,
+ 0.0
+ ],
+ [
+ 114.070595699523992,
+ 22.439808195713912,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001398,
+ "name": "Shenzhen Bao'an International Airport",
+ "country": "CN",
+ "city": "Shenzhen",
+ "height": 500,
+ "level": 2,
+ "lat": "22.639019",
+ "lng": "113.811048",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.811048,
+ 23.090518362896951,
+ 500.0
+ ],
+ [
+ 113.895787266248362,
+ 23.083636810372351,
+ 500.0
+ ],
+ [
+ 113.977926738237201,
+ 23.063203273765932,
+ 500.0
+ ],
+ [
+ 114.054948710414308,
+ 23.02984444816774,
+ 500.0
+ ],
+ [
+ 114.124496766454385,
+ 22.984582834744646,
+ 500.0
+ ],
+ [
+ 114.184449344363543,
+ 22.928804566896382,
+ 500.0
+ ],
+ [
+ 114.2329851885615,
+ 22.864215949971442,
+ 500.0
+ ],
+ [
+ 114.268638586820515,
+ 22.792790205403801,
+ 500.0
+ ],
+ [
+ 114.290342741247471,
+ 22.71670621352693,
+ 500.0
+ ],
+ [
+ 114.297460116360313,
+ 22.638281275363532,
+ 500.0
+ ],
+ [
+ 114.289799111321358,
+ 22.559900058663199,
+ 500.0
+ ],
+ [
+ 114.267616889399378,
+ 22.483941958604049,
+ 500.0
+ ],
+ [
+ 114.231608644154718,
+ 22.412709094031666,
+ 500.0
+ ],
+ [
+ 114.182883974623792,
+ 22.348357083646036,
+ 500.0
+ ],
+ [
+ 114.122931374156963,
+ 22.292830612298918,
+ 500.0
+ ],
+ [
+ 114.053572108889526,
+ 22.247805614964847,
+ 500.0
+ ],
+ [
+ 113.97690497586386,
+ 22.214639683992949,
+ 500.0
+ ],
+ [
+ 113.895243593927717,
+ 22.194332052070582,
+ 500.0
+ ],
+ [
+ 113.811048,
+ 22.18749422609034,
+ 500.0
+ ],
+ [
+ 113.726852406072283,
+ 22.194332052070582,
+ 500.0
+ ],
+ [
+ 113.645191024136139,
+ 22.214639683992949,
+ 500.0
+ ],
+ [
+ 113.568523891110473,
+ 22.247805614964847,
+ 500.0
+ ],
+ [
+ 113.499164625843036,
+ 22.292830612298918,
+ 500.0
+ ],
+ [
+ 113.439212025376207,
+ 22.348357083646036,
+ 500.0
+ ],
+ [
+ 113.390487355845281,
+ 22.412709094031666,
+ 500.0
+ ],
+ [
+ 113.354479110600622,
+ 22.483941958604049,
+ 500.0
+ ],
+ [
+ 113.332296888678641,
+ 22.559900058663199,
+ 500.0
+ ],
+ [
+ 113.324635883639687,
+ 22.638281275363532,
+ 500.0
+ ],
+ [
+ 113.331753258752528,
+ 22.71670621352693,
+ 500.0
+ ],
+ [
+ 113.353457413179484,
+ 22.792790205403801,
+ 500.0
+ ],
+ [
+ 113.389110811438499,
+ 22.864215949971442,
+ 500.0
+ ],
+ [
+ 113.437646655636456,
+ 22.928804566896382,
+ 500.0
+ ],
+ [
+ 113.497599233545614,
+ 22.984582834744646,
+ 500.0
+ ],
+ [
+ 113.567147289585691,
+ 23.02984444816774,
+ 500.0
+ ],
+ [
+ 113.644169261762798,
+ 23.063203273765932,
+ 500.0
+ ],
+ [
+ 113.726308733751637,
+ 23.083636810372351,
+ 500.0
+ ],
+ [
+ 113.811048,
+ 23.090518362896951,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 10688,
+ "name": "Lai Chi Kok Reception Centre",
+ "country": "HK",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "22.337989",
+ "lng": "114.143261",
+ "radius": 165,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.143261,
+ 22.339479045523781,
+ 0.0
+ ],
+ [
+ 114.143539134871716,
+ 22.339456408147516,
+ 0.0
+ ],
+ [
+ 114.143808818493497,
+ 22.339389183865105,
+ 0.0
+ ],
+ [
+ 114.144061856434021,
+ 22.339279415313296,
+ 0.0
+ ],
+ [
+ 114.144290560092116,
+ 22.339130437847363,
+ 0.0
+ ],
+ [
+ 114.144487980331675,
+ 22.338946778186767,
+ 0.0
+ ],
+ [
+ 114.144648118638628,
+ 22.338734016859238,
+ 0.0
+ ],
+ [
+ 114.144766109382758,
+ 22.338498618624584,
+ 0.0
+ ],
+ [
+ 114.144838367646429,
+ 22.338247736032411,
+ 0.0
+ ],
+ [
+ 114.144862698129799,
+ 22.337988992084274,
+ 0.0
+ ],
+ [
+ 114.144838361826018,
+ 22.337730248605244,
+ 0.0
+ ],
+ [
+ 114.144766098443966,
+ 22.337479367363855,
+ 0.0
+ ],
+ [
+ 114.144648103900835,
+ 22.33724397119871,
+ 0.0
+ ],
+ [
+ 114.144487963572473,
+ 22.337031212409805,
+ 0.0
+ ],
+ [
+ 114.144290543332914,
+ 22.336847555450753,
+ 0.0
+ ],
+ [
+ 114.144061841696228,
+ 22.33669858052345,
+ 0.0
+ ],
+ [
+ 114.143808807554706,
+ 22.336588814041146,
+ 0.0
+ ],
+ [
+ 114.143539129051305,
+ 22.336521591109509,
+ 0.0
+ ],
+ [
+ 114.143261,
+ 22.336498954202355,
+ 0.0
+ ],
+ [
+ 114.142982870948686,
+ 22.336521591109509,
+ 0.0
+ ],
+ [
+ 114.142713192445285,
+ 22.336588814041146,
+ 0.0
+ ],
+ [
+ 114.142460158303763,
+ 22.33669858052345,
+ 0.0
+ ],
+ [
+ 114.142231456667076,
+ 22.336847555450753,
+ 0.0
+ ],
+ [
+ 114.142034036427518,
+ 22.337031212409805,
+ 0.0
+ ],
+ [
+ 114.141873896099156,
+ 22.33724397119871,
+ 0.0
+ ],
+ [
+ 114.141755901556024,
+ 22.337479367363855,
+ 0.0
+ ],
+ [
+ 114.141683638173973,
+ 22.337730248605244,
+ 0.0
+ ],
+ [
+ 114.141659301870192,
+ 22.337988992084274,
+ 0.0
+ ],
+ [
+ 114.141683632353562,
+ 22.338247736032411,
+ 0.0
+ ],
+ [
+ 114.141755890617233,
+ 22.338498618624584,
+ 0.0
+ ],
+ [
+ 114.141873881361363,
+ 22.338734016859238,
+ 0.0
+ ],
+ [
+ 114.142034019668316,
+ 22.338946778186767,
+ 0.0
+ ],
+ [
+ 114.142231439907874,
+ 22.339130437847363,
+ 0.0
+ ],
+ [
+ 114.14246014356597,
+ 22.339279415313296,
+ 0.0
+ ],
+ [
+ 114.142713181506494,
+ 22.339389183865105,
+ 0.0
+ ],
+ [
+ 114.142982865128275,
+ 22.339456408147516,
+ 0.0
+ ],
+ [
+ 114.143261,
+ 22.339479045523781,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002462,
+ "name": "(Cap. 448G RFZ) San Tin Barracks",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4859239662113",
+ "lng": "114.079734436548",
+ "radius": 386,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.078418081644998,
+ 22.4887969061169,
+ 0.0
+ ],
+ [
+ 114.078684611041979,
+ 22.483185984919619,
+ 0.0
+ ],
+ [
+ 114.078699457902005,
+ 22.483105018339906,
+ 0.0
+ ],
+ [
+ 114.079373257730992,
+ 22.482466372588402,
+ 0.0
+ ],
+ [
+ 114.080558343362995,
+ 22.482741329018292,
+ 0.0
+ ],
+ [
+ 114.082501659819016,
+ 22.486152890378701,
+ 0.0
+ ],
+ [
+ 114.082747721996014,
+ 22.488001150467394,
+ 0.0
+ ],
+ [
+ 114.07850077279501,
+ 22.489205283998889,
+ 0.0
+ ],
+ [
+ 114.078418081644998,
+ 22.4887969061169,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025611,
+ "name": "Kowloon East Regional Police Headquarters and Ngau Tau Kok Police Station",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.3339926571331",
+ "lng": "114.200764925006",
+ "radius": 55,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.200968420031089,
+ 22.334384899693902,
+ 0.0
+ ],
+ [
+ 114.200957301810405,
+ 22.334459324143211,
+ 0.0
+ ],
+ [
+ 114.200442768895513,
+ 22.334261958091432,
+ 0.0
+ ],
+ [
+ 114.200368942182791,
+ 22.334214785869435,
+ 0.0
+ ],
+ [
+ 114.200326303511915,
+ 22.334175820599157,
+ 0.0
+ ],
+ [
+ 114.200274286973098,
+ 22.33410799223887,
+ 0.0
+ ],
+ [
+ 114.200249344447116,
+ 22.334058930910217,
+ 0.0
+ ],
+ [
+ 114.200230063203193,
+ 22.333981701484873,
+ 0.0
+ ],
+ [
+ 114.200229414682795,
+ 22.333928766137234,
+ 0.0
+ ],
+ [
+ 114.200246798563001,
+ 22.333851148518278,
+ 0.0
+ ],
+ [
+ 114.200285060321193,
+ 22.333780303519333,
+ 0.0
+ ],
+ [
+ 114.200341625474721,
+ 22.333721000547584,
+ 0.0
+ ],
+ [
+ 114.200500825085584,
+ 22.333592422578562,
+ 0.0
+ ],
+ [
+ 114.200560738262496,
+ 22.333551897224567,
+ 0.0
+ ],
+ [
+ 114.20060479541101,
+ 22.333530324843622,
+ 0.0
+ ],
+ [
+ 114.200719218444206,
+ 22.333498869865764,
+ 0.0
+ ],
+ [
+ 114.200839841638981,
+ 22.33349804561044,
+ 0.0
+ ],
+ [
+ 114.200955590493393,
+ 22.333528278149828,
+ 0.0
+ ],
+ [
+ 114.201085867937294,
+ 22.333598678250794,
+ 0.0
+ ],
+ [
+ 114.200968420031089,
+ 22.334384899693902,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045070,
+ "name": "中華人民共和國外交部駐澳門特別行政區特派員公署",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.195889",
+ "lng": "113.553111",
+ "radius": 102,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.553111,
+ 22.196810135187615,
+ 0.0
+ ],
+ [
+ 113.553282763713682,
+ 22.196796140984542,
+ 0.0
+ ],
+ [
+ 113.553449308374297,
+ 22.196754583590121,
+ 0.0
+ ],
+ [
+ 113.553605573519064,
+ 22.19668672572789,
+ 0.0
+ ],
+ [
+ 113.55374681104567,
+ 22.196594629260076,
+ 0.0
+ ],
+ [
+ 113.553868729488755,
+ 22.196481092534714,
+ 0.0
+ ],
+ [
+ 113.553967624418149,
+ 22.196349565354009,
+ 0.0
+ ],
+ [
+ 113.554040490996016,
+ 22.196204044148224,
+ 0.0
+ ],
+ [
+ 113.554085115273239,
+ 22.196048950541016,
+ 0.0
+ ],
+ [
+ 113.5541001414513,
+ 22.195888996996263,
+ 0.0
+ ],
+ [
+ 113.55408511306689,
+ 22.195729043629527,
+ 0.0
+ ],
+ [
+ 113.554040486849402,
+ 22.195573950534868,
+ 0.0
+ ],
+ [
+ 113.553967618831422,
+ 22.195428430114365,
+ 0.0
+ ],
+ [
+ 113.553868723135778,
+ 22.195296903896935,
+ 0.0
+ ],
+ [
+ 113.553746804692679,
+ 22.195183368196677,
+ 0.0
+ ],
+ [
+ 113.553605567932337,
+ 22.195091272692153,
+ 0.0
+ ],
+ [
+ 113.553449304227669,
+ 22.195023415615186,
+ 0.0
+ ],
+ [
+ 113.553282761507319,
+ 22.194981858733328,
+ 0.0
+ ],
+ [
+ 113.553111,
+ 22.194967864708261,
+ 0.0
+ ],
+ [
+ 113.552939238492684,
+ 22.194981858733328,
+ 0.0
+ ],
+ [
+ 113.552772695772333,
+ 22.195023415615186,
+ 0.0
+ ],
+ [
+ 113.552616432067666,
+ 22.195091272692153,
+ 0.0
+ ],
+ [
+ 113.552475195307323,
+ 22.195183368196677,
+ 0.0
+ ],
+ [
+ 113.552353276864224,
+ 22.195296903896935,
+ 0.0
+ ],
+ [
+ 113.552254381168581,
+ 22.195428430114365,
+ 0.0
+ ],
+ [
+ 113.5521815131506,
+ 22.195573950534868,
+ 0.0
+ ],
+ [
+ 113.552136886933113,
+ 22.195729043629527,
+ 0.0
+ ],
+ [
+ 113.552121858548702,
+ 22.195888996996263,
+ 0.0
+ ],
+ [
+ 113.552136884726764,
+ 22.196048950541016,
+ 0.0
+ ],
+ [
+ 113.552181509003987,
+ 22.196204044148224,
+ 0.0
+ ],
+ [
+ 113.552254375581853,
+ 22.196349565354009,
+ 0.0
+ ],
+ [
+ 113.552353270511247,
+ 22.196481092534714,
+ 0.0
+ ],
+ [
+ 113.552475188954332,
+ 22.196594629260076,
+ 0.0
+ ],
+ [
+ 113.552616426480938,
+ 22.19668672572789,
+ 0.0
+ ],
+ [
+ 113.552772691625705,
+ 22.196754583590121,
+ 0.0
+ ],
+ [
+ 113.552939236286321,
+ 22.196796140984542,
+ 0.0
+ ],
+ [
+ 113.553111,
+ 22.196810135187615,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045077,
+ "name": "少年感化院",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.118694",
+ "lng": "113.554472",
+ "radius": 65,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.554472,
+ 22.119281003479024,
+ 0.0
+ ],
+ [
+ 113.554581397319126,
+ 22.119272085540871,
+ 0.0
+ ],
+ [
+ 113.554687470615832,
+ 22.119245602696669,
+ 0.0
+ ],
+ [
+ 113.554786996871258,
+ 22.11920235962361,
+ 0.0
+ ],
+ [
+ 113.554876952004236,
+ 22.119143670254914,
+ 0.0
+ ],
+ [
+ 113.554954602759608,
+ 22.119071317854939,
+ 0.0
+ ],
+ [
+ 113.55501758975845,
+ 22.118987500833445,
+ 0.0
+ ],
+ [
+ 113.555063999186657,
+ 22.118894765945797,
+ 0.0
+ ],
+ [
+ 113.555092420943524,
+ 22.118795930908966,
+ 0.0
+ ],
+ [
+ 113.55510199148371,
+ 22.118693998784892,
+ 0.0
+ ],
+ [
+ 113.555092420051452,
+ 22.118592066732816,
+ 0.0
+ ],
+ [
+ 113.555063997510146,
+ 22.118493231903326,
+ 0.0
+ ],
+ [
+ 113.555017587499677,
+ 22.118400497333351,
+ 0.0
+ ],
+ [
+ 113.554954600191024,
+ 22.118316680701525,
+ 0.0
+ ],
+ [
+ 113.554876949435666,
+ 22.11824432871623,
+ 0.0
+ ],
+ [
+ 113.554786994612485,
+ 22.118185639737206,
+ 0.0
+ ],
+ [
+ 113.554687468939306,
+ 22.118142396981817,
+ 0.0
+ ],
+ [
+ 113.554581396427068,
+ 22.118115914344962,
+ 0.0
+ ],
+ [
+ 113.554472,
+ 22.118106996478815,
+ 0.0
+ ],
+ [
+ 113.55436260357294,
+ 22.118115914344962,
+ 0.0
+ ],
+ [
+ 113.554256531060702,
+ 22.118142396981817,
+ 0.0
+ ],
+ [
+ 113.554157005387523,
+ 22.118185639737206,
+ 0.0
+ ],
+ [
+ 113.554067050564342,
+ 22.11824432871623,
+ 0.0
+ ],
+ [
+ 113.553989399808984,
+ 22.118316680701525,
+ 0.0
+ ],
+ [
+ 113.553926412500331,
+ 22.118400497333351,
+ 0.0
+ ],
+ [
+ 113.553880002489862,
+ 22.118493231903326,
+ 0.0
+ ],
+ [
+ 113.553851579948557,
+ 22.118592066732816,
+ 0.0
+ ],
+ [
+ 113.553842008516298,
+ 22.118693998784892,
+ 0.0
+ ],
+ [
+ 113.553851579056484,
+ 22.118795930908966,
+ 0.0
+ ],
+ [
+ 113.553880000813351,
+ 22.118894765945797,
+ 0.0
+ ],
+ [
+ 113.553926410241559,
+ 22.118987500833445,
+ 0.0
+ ],
+ [
+ 113.5539893972404,
+ 22.119071317854939,
+ 0.0
+ ],
+ [
+ 113.554067047995773,
+ 22.119143670254914,
+ 0.0
+ ],
+ [
+ 113.554157003128751,
+ 22.11920235962361,
+ 0.0
+ ],
+ [
+ 113.554256529384176,
+ 22.119245602696669,
+ 0.0
+ ],
+ [
+ 113.554362602680882,
+ 22.119272085540871,
+ 0.0
+ ],
+ [
+ 113.554472,
+ 22.119281003479024,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001230,
+ "name": "Happy Valley Racecourse",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "22.2730134096077",
+ "lng": "114.182828701464",
+ "radius": 377,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.180339574813857,
+ 22.2719213114054,
+ 0.0
+ ],
+ [
+ 114.18201327323915,
+ 22.270660396724175,
+ 0.0
+ ],
+ [
+ 114.183611869812026,
+ 22.269806542533978,
+ 0.0
+ ],
+ [
+ 114.184534549713149,
+ 22.270005113740893,
+ 0.0
+ ],
+ [
+ 114.184856414794936,
+ 22.270710039249366,
+ 0.0
+ ],
+ [
+ 114.184727668762207,
+ 22.271822027197018,
+ 0.0
+ ],
+ [
+ 114.182823300361633,
+ 22.275272112117346,
+ 0.0
+ ],
+ [
+ 114.181653857231154,
+ 22.275217507119478,
+ 0.0
+ ],
+ [
+ 114.181122779846206,
+ 22.276021687660521,
+ 0.0
+ ],
+ [
+ 114.179631471633925,
+ 22.274393465472592,
+ 0.0
+ ],
+ [
+ 114.180339574813857,
+ 22.2719213114054,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045098,
+ "name": "澳門中聯辦接待處",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.186778",
+ "lng": "113.536056",
+ "radius": 70,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.536056,
+ 22.187410152317259,
+ 0.0
+ ],
+ [
+ 113.536173869218672,
+ 22.18740054846085,
+ 0.0
+ ],
+ [
+ 113.536288156993919,
+ 22.187372028703724,
+ 0.0
+ ],
+ [
+ 113.536395390708321,
+ 22.187325459615138,
+ 0.0
+ ],
+ [
+ 113.536492312089138,
+ 22.187262256189982,
+ 0.0
+ ],
+ [
+ 113.536575976213001,
+ 22.187184338852802,
+ 0.0
+ ],
+ [
+ 113.536643840987836,
+ 22.187094075104223,
+ 0.0
+ ],
+ [
+ 113.536693844393056,
+ 22.186994207583037,
+ 0.0
+ ],
+ [
+ 113.536724467131108,
+ 22.186887770730017,
+ 0.0
+ ],
+ [
+ 113.53673477878678,
+ 22.186777998585963,
+ 0.0
+ ],
+ [
+ 113.536724466092508,
+ 22.186668226525708,
+ 0.0
+ ],
+ [
+ 113.536693842441139,
+ 22.186561789913974,
+ 0.0
+ ],
+ [
+ 113.536643838358003,
+ 22.186461922762462,
+ 0.0
+ ],
+ [
+ 113.536575973222483,
+ 22.186371659467362,
+ 0.0
+ ],
+ [
+ 113.53649230909862,
+ 22.186293742612751,
+ 0.0
+ ],
+ [
+ 113.536395388078503,
+ 22.18623053964107,
+ 0.0
+ ],
+ [
+ 113.536288155041987,
+ 22.186183970922166,
+ 0.0
+ ],
+ [
+ 113.536173868180072,
+ 22.186155451406322,
+ 0.0
+ ],
+ [
+ 113.536056,
+ 22.186145847633707,
+ 0.0
+ ],
+ [
+ 113.535938131819933,
+ 22.186155451406322,
+ 0.0
+ ],
+ [
+ 113.535823844958017,
+ 22.186183970922166,
+ 0.0
+ ],
+ [
+ 113.535716611921501,
+ 22.18623053964107,
+ 0.0
+ ],
+ [
+ 113.535619690901385,
+ 22.186293742612751,
+ 0.0
+ ],
+ [
+ 113.535536026777521,
+ 22.186371659467362,
+ 0.0
+ ],
+ [
+ 113.535468161642001,
+ 22.186461922762462,
+ 0.0
+ ],
+ [
+ 113.535418157558865,
+ 22.186561789913974,
+ 0.0
+ ],
+ [
+ 113.535387533907496,
+ 22.186668226525708,
+ 0.0
+ ],
+ [
+ 113.535377221213224,
+ 22.186777998585963,
+ 0.0
+ ],
+ [
+ 113.535387532868896,
+ 22.186887770730017,
+ 0.0
+ ],
+ [
+ 113.535418155606948,
+ 22.186994207583037,
+ 0.0
+ ],
+ [
+ 113.535468159012169,
+ 22.187094075104223,
+ 0.0
+ ],
+ [
+ 113.535536023787003,
+ 22.187184338852802,
+ 0.0
+ ],
+ [
+ 113.535619687910867,
+ 22.187262256189982,
+ 0.0
+ ],
+ [
+ 113.535716609291683,
+ 22.187325459615138,
+ 0.0
+ ],
+ [
+ 113.535823843006085,
+ 22.187372028703724,
+ 0.0
+ ],
+ [
+ 113.535938130781332,
+ 22.18740054846085,
+ 0.0
+ ],
+ [
+ 113.536056,
+ 22.187410152317259,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002469,
+ "name": "(Cap. 448G RFZ) Tam Mei Barracks",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.479234130508",
+ "lng": "114.067989010337",
+ "radius": 405,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.064575939544994,
+ 22.478045206174198,
+ 0.0
+ ],
+ [
+ 114.06462262632202,
+ 22.477337805731704,
+ 0.0
+ ],
+ [
+ 114.064933592203005,
+ 22.477172169405389,
+ 0.0
+ ],
+ [
+ 114.065148820912015,
+ 22.477139411830599,
+ 0.0
+ ],
+ [
+ 114.069038309202995,
+ 22.476930081069387,
+ 0.0
+ ],
+ [
+ 114.071693086172999,
+ 22.480482208584501,
+ 0.0
+ ],
+ [
+ 114.067263166055994,
+ 22.482679525140718,
+ 0.0
+ ],
+ [
+ 114.066730390125983,
+ 22.482686594158096,
+ 0.0
+ ],
+ [
+ 114.065112160984015,
+ 22.480273767604594,
+ 0.0
+ ],
+ [
+ 114.064575939544994,
+ 22.478045206174198,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002444,
+ "name": "(Cap. 448G RFZ) OSNS of the CPG of the PRC in the HKSAR (the Office under Construction)",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.3230084098193",
+ "lng": "114.155865974364",
+ "radius": 64,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.155350624318999,
+ 22.32334548499928,
+ 0.0
+ ],
+ [
+ 114.155916363369002,
+ 22.322426416479118,
+ 0.0
+ ],
+ [
+ 114.156385125631004,
+ 22.322676365351899,
+ 0.0
+ ],
+ [
+ 114.156334202943015,
+ 22.32283660313378,
+ 0.0
+ ],
+ [
+ 114.155769783444015,
+ 22.323572173471309,
+ 0.0
+ ],
+ [
+ 114.155350624318999,
+ 22.32334548499928,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002463,
+ "name": "(Cap. 448G RFZ) San Tin Barracks",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4899381424822",
+ "lng": "114.081067612191",
+ "radius": 276,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.07850077279501,
+ 22.489205283998889,
+ 0.0
+ ],
+ [
+ 114.082747721996014,
+ 22.488001150467394,
+ 0.0
+ ],
+ [
+ 114.082520338620995,
+ 22.492016985261589,
+ 0.0
+ ],
+ [
+ 114.081395541209986,
+ 22.492401860323596,
+ 0.0
+ ],
+ [
+ 114.081016209370986,
+ 22.492416237368904,
+ 0.0
+ ],
+ [
+ 114.080343336338998,
+ 22.492065853986702,
+ 0.0
+ ],
+ [
+ 114.07850077279501,
+ 22.489205283998889,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33376,
+ "name": "招商街道桃花园导航台禁飞区",
+ "country": "CN",
+ "city": "深圳市",
+ "height": 0,
+ "level": 2,
+ "lat": "22.498333",
+ "lng": "113.901667",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.901667,
+ 22.507363395599313,
+ 0.0
+ ],
+ [
+ 113.903354692205454,
+ 22.507226194836111,
+ 0.0
+ ],
+ [
+ 113.904991095000156,
+ 22.506818762106299,
+ 0.0
+ ],
+ [
+ 113.9065264785512,
+ 22.506153479304675,
+ 0.0
+ ],
+ [
+ 113.907914184652412,
+ 22.505250564170975,
+ 0.0
+ ],
+ [
+ 113.909112045176954,
+ 22.504137455566674,
+ 0.0
+ ],
+ [
+ 113.91008366374183,
+ 22.502847979247179,
+ 0.0
+ ],
+ [
+ 113.910799521592892,
+ 22.501421319538803,
+ 0.0
+ ],
+ [
+ 113.911237874108409,
+ 22.499900828231223,
+ 0.0
+ ],
+ [
+ 113.911385410731043,
+ 22.498332706938481,
+ 0.0
+ ],
+ [
+ 113.911237658369387,
+ 22.496764603014491,
+ 0.0
+ ],
+ [
+ 113.910799116136161,
+ 22.495244161718261,
+ 0.0
+ ],
+ [
+ 113.910083117471459,
+ 22.493817578631717,
+ 0.0
+ ],
+ [
+ 113.909111423981187,
+ 22.492528196302818,
+ 0.0
+ ],
+ [
+ 113.90791356345666,
+ 22.491415187721199,
+ 0.0
+ ],
+ [
+ 113.9065259322808,
+ 22.490512366578077,
+ 0.0
+ ],
+ [
+ 113.904990689543411,
+ 22.489847160398288,
+ 0.0
+ ],
+ [
+ 113.903354476466419,
+ 22.489439777679834,
+ 0.0
+ ],
+ [
+ 113.901667,
+ 22.489302594285391,
+ 0.0
+ ],
+ [
+ 113.899979523533588,
+ 22.489439777679834,
+ 0.0
+ ],
+ [
+ 113.898343310456596,
+ 22.489847160398288,
+ 0.0
+ ],
+ [
+ 113.896808067719206,
+ 22.490512366578077,
+ 0.0
+ ],
+ [
+ 113.895420436543347,
+ 22.491415187721199,
+ 0.0
+ ],
+ [
+ 113.894222576018819,
+ 22.492528196302818,
+ 0.0
+ ],
+ [
+ 113.893250882528548,
+ 22.493817578631717,
+ 0.0
+ ],
+ [
+ 113.892534883863846,
+ 22.495244161718261,
+ 0.0
+ ],
+ [
+ 113.892096341630619,
+ 22.496764603014491,
+ 0.0
+ ],
+ [
+ 113.891948589268964,
+ 22.498332706938481,
+ 0.0
+ ],
+ [
+ 113.892096125891598,
+ 22.499900828231223,
+ 0.0
+ ],
+ [
+ 113.892534478407114,
+ 22.501421319538803,
+ 0.0
+ ],
+ [
+ 113.893250336258177,
+ 22.502847979247179,
+ 0.0
+ ],
+ [
+ 113.894221954823053,
+ 22.504137455566674,
+ 0.0
+ ],
+ [
+ 113.895419815347594,
+ 22.505250564170975,
+ 0.0
+ ],
+ [
+ 113.896807521448807,
+ 22.506153479304675,
+ 0.0
+ ],
+ [
+ 113.898342904999851,
+ 22.506818762106299,
+ 0.0
+ ],
+ [
+ 113.899979307794553,
+ 22.507226194836111,
+ 0.0
+ ],
+ [
+ 113.901667,
+ 22.507363395599313,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045139,
+ "name": "中央人民政府駐澳軍營",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.151722",
+ "lng": "113.557194",
+ "radius": 189,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.557194,
+ 22.153428818480236,
+ 0.0
+ ],
+ [
+ 113.557512170391959,
+ 22.153402887764688,
+ 0.0
+ ],
+ [
+ 113.557820672996641,
+ 22.153325883537235,
+ 0.0
+ ],
+ [
+ 113.558110133818701,
+ 22.153200145611574,
+ 0.0
+ ],
+ [
+ 113.558371757515019,
+ 22.153029494592346,
+ 0.0
+ ],
+ [
+ 113.558597594663567,
+ 22.152819115773298,
+ 0.0
+ ],
+ [
+ 113.558780783316905,
+ 22.152575401566835,
+ 0.0
+ ],
+ [
+ 113.558915757498909,
+ 22.152305757254688,
+ 0.0
+ ],
+ [
+ 113.558998416309905,
+ 22.15201837596419,
+ 0.0
+ ],
+ [
+ 113.559026248503528,
+ 22.151721989709646,
+ 0.0
+ ],
+ [
+ 113.55899840875361,
+ 22.151425604064926,
+ 0.0
+ ],
+ [
+ 113.558915743297717,
+ 22.151138224530339,
+ 0.0
+ ],
+ [
+ 113.558780764183695,
+ 22.150868582908402,
+ 0.0
+ ],
+ [
+ 113.558597572906081,
+ 22.150624872001977,
+ 0.0
+ ],
+ [
+ 113.558371735757532,
+ 22.150414496694744,
+ 0.0
+ ],
+ [
+ 113.558110114685505,
+ 22.150243848975538,
+ 0.0
+ ],
+ [
+ 113.557820658795464,
+ 22.150118113740085,
+ 0.0
+ ],
+ [
+ 113.557512162835678,
+ 22.150041111268546,
+ 0.0
+ ],
+ [
+ 113.557194,
+ 22.150015181162811,
+ 0.0
+ ],
+ [
+ 113.556875837164313,
+ 22.150041111268546,
+ 0.0
+ ],
+ [
+ 113.556567341204527,
+ 22.150118113740085,
+ 0.0
+ ],
+ [
+ 113.556277885314486,
+ 22.150243848975538,
+ 0.0
+ ],
+ [
+ 113.556016264242459,
+ 22.150414496694744,
+ 0.0
+ ],
+ [
+ 113.55579042709391,
+ 22.150624872001977,
+ 0.0
+ ],
+ [
+ 113.555607235816296,
+ 22.150868582908402,
+ 0.0
+ ],
+ [
+ 113.555472256702274,
+ 22.151138224530339,
+ 0.0
+ ],
+ [
+ 113.555389591246382,
+ 22.151425604064926,
+ 0.0
+ ],
+ [
+ 113.555361751496463,
+ 22.151721989709646,
+ 0.0
+ ],
+ [
+ 113.555389583690086,
+ 22.15201837596419,
+ 0.0
+ ],
+ [
+ 113.555472242501082,
+ 22.152305757254688,
+ 0.0
+ ],
+ [
+ 113.555607216683086,
+ 22.152575401566835,
+ 0.0
+ ],
+ [
+ 113.555790405336424,
+ 22.152819115773298,
+ 0.0
+ ],
+ [
+ 113.556016242484972,
+ 22.153029494592346,
+ 0.0
+ ],
+ [
+ 113.55627786618129,
+ 22.153200145611574,
+ 0.0
+ ],
+ [
+ 113.55656732700335,
+ 22.153325883537235,
+ 0.0
+ ],
+ [
+ 113.556875829608032,
+ 22.153402887764688,
+ 0.0
+ ],
+ [
+ 113.557194,
+ 22.153428818480236,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002467,
+ "name": "(Cap. 448G RFZ) Tam Mei Barracks",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4787061502591",
+ "lng": "114.070365680662",
+ "radius": 240,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.069038309202995,
+ 22.476930081069387,
+ 0.0
+ ],
+ [
+ 114.070941497180002,
+ 22.477194170406296,
+ 0.0
+ ],
+ [
+ 114.071485761665016,
+ 22.477370726435797,
+ 0.0
+ ],
+ [
+ 114.072050897978983,
+ 22.477954831048486,
+ 0.0
+ ],
+ [
+ 114.072142575491995,
+ 22.478203199696591,
+ 0.0
+ ],
+ [
+ 114.071693086172999,
+ 22.480482208584501,
+ 0.0
+ ],
+ [
+ 114.069038309202995,
+ 22.476930081069387,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33375,
+ "name": "中山市南朗镇导航台禁飞区",
+ "country": "CN",
+ "city": "中山市",
+ "height": 0,
+ "level": 2,
+ "lat": "22.53",
+ "lng": "113.563333",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.563333,
+ 22.539030360102757,
+ 0.0
+ ],
+ [
+ 113.56502107684571,
+ 22.53889315986514,
+ 0.0
+ ],
+ [
+ 113.566657852576157,
+ 22.538485728697335,
+ 0.0
+ ],
+ [
+ 113.568193586011603,
+ 22.537820448450219,
+ 0.0
+ ],
+ [
+ 113.569581608303452,
+ 22.536917536791311,
+ 0.0
+ ],
+ [
+ 113.570779741711533,
+ 22.535804432483161,
+ 0.0
+ ],
+ [
+ 113.571751581561401,
+ 22.534514961157729,
+ 0.0
+ ],
+ [
+ 113.572467602381366,
+ 22.533088306996202,
+ 0.0
+ ],
+ [
+ 113.572906054609319,
+ 22.531567821625149,
+ 0.0
+ ],
+ [
+ 113.573053624673577,
+ 22.52999970648176,
+ 0.0
+ ],
+ [
+ 113.572905838484004,
+ 22.528431608734341,
+ 0.0
+ ],
+ [
+ 113.572467196198645,
+ 22.526911173452973,
+ 0.0
+ ],
+ [
+ 113.571751034312896,
+ 22.525484596033316,
+ 0.0
+ ],
+ [
+ 113.570779119403483,
+ 22.524195218845701,
+ 0.0
+ ],
+ [
+ 113.569580985995415,
+ 22.523082214716929,
+ 0.0
+ ],
+ [
+ 113.568193038763084,
+ 22.522179397195849,
+ 0.0
+ ],
+ [
+ 113.566657446393421,
+ 22.521514193690589,
+ 0.0
+ ],
+ [
+ 113.565020860720395,
+ 22.52110681261248,
+ 0.0
+ ],
+ [
+ 113.563333,
+ 22.520969629770825,
+ 0.0
+ ],
+ [
+ 113.561645139279605,
+ 22.52110681261248,
+ 0.0
+ ],
+ [
+ 113.560008553606579,
+ 22.521514193690589,
+ 0.0
+ ],
+ [
+ 113.558472961236916,
+ 22.522179397195849,
+ 0.0
+ ],
+ [
+ 113.557085014004585,
+ 22.523082214716929,
+ 0.0
+ ],
+ [
+ 113.555886880596518,
+ 22.524195218845701,
+ 0.0
+ ],
+ [
+ 113.554914965687104,
+ 22.525484596033316,
+ 0.0
+ ],
+ [
+ 113.554198803801356,
+ 22.526911173452973,
+ 0.0
+ ],
+ [
+ 113.553760161515996,
+ 22.528431608734341,
+ 0.0
+ ],
+ [
+ 113.553612375326423,
+ 22.52999970648176,
+ 0.0
+ ],
+ [
+ 113.553759945390681,
+ 22.531567821625149,
+ 0.0
+ ],
+ [
+ 113.554198397618634,
+ 22.533088306996202,
+ 0.0
+ ],
+ [
+ 113.554914418438599,
+ 22.534514961157729,
+ 0.0
+ ],
+ [
+ 113.555886258288467,
+ 22.535804432483161,
+ 0.0
+ ],
+ [
+ 113.557084391696549,
+ 22.536917536791311,
+ 0.0
+ ],
+ [
+ 113.558472413988397,
+ 22.537820448450219,
+ 0.0
+ ],
+ [
+ 113.560008147423844,
+ 22.538485728697335,
+ 0.0
+ ],
+ [
+ 113.56164492315429,
+ 22.53889315986514,
+ 0.0
+ ],
+ [
+ 113.563333,
+ 22.539030360102757,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045116,
+ "name": "禮賓府",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.184917",
+ "lng": "113.534111",
+ "radius": 74,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.534111,
+ 22.18558527545791,
+ 0.0
+ ],
+ [
+ 113.534235602992922,
+ 22.18557512280486,
+ 0.0
+ ],
+ [
+ 113.53435641993461,
+ 22.185544973333162,
+ 0.0
+ ],
+ [
+ 113.534469779817357,
+ 22.185495743131423,
+ 0.0
+ ],
+ [
+ 113.534572238224328,
+ 22.185428928053042,
+ 0.0
+ ],
+ [
+ 113.534660681990474,
+ 22.185346558263234,
+ 0.0
+ ],
+ [
+ 113.53473242379674,
+ 22.185251136550711,
+ 0.0
+ ],
+ [
+ 113.534785283822828,
+ 22.185145562278777,
+ 0.0
+ ],
+ [
+ 113.534817655977747,
+ 22.185033043286904,
+ 0.0
+ ],
+ [
+ 113.534828556696013,
+ 22.184916998419887,
+ 0.0
+ ],
+ [
+ 113.534817654817175,
+ 22.184800953646512,
+ 0.0
+ ],
+ [
+ 113.534785281641661,
+ 22.184688434924265,
+ 0.0
+ ],
+ [
+ 113.534732420858077,
+ 22.184582861065426,
+ 0.0
+ ],
+ [
+ 113.534660678648763,
+ 22.184487439859634,
+ 0.0
+ ],
+ [
+ 113.534572234882603,
+ 22.184405070609081,
+ 0.0
+ ],
+ [
+ 113.534469776878694,
+ 22.184338256037428,
+ 0.0
+ ],
+ [
+ 113.534356417753457,
+ 22.184289026248784,
+ 0.0
+ ],
+ [
+ 113.534235601832364,
+ 22.184258877046716,
+ 0.0
+ ],
+ [
+ 113.534111,
+ 22.184248724487297,
+ 0.0
+ ],
+ [
+ 113.533986398167627,
+ 22.184258877046716,
+ 0.0
+ ],
+ [
+ 113.533865582246534,
+ 22.184289026248784,
+ 0.0
+ ],
+ [
+ 113.533752223121297,
+ 22.184338256037428,
+ 0.0
+ ],
+ [
+ 113.533649765117389,
+ 22.184405070609081,
+ 0.0
+ ],
+ [
+ 113.533561321351229,
+ 22.184487439859634,
+ 0.0
+ ],
+ [
+ 113.533489579141914,
+ 22.184582861065426,
+ 0.0
+ ],
+ [
+ 113.533436718358331,
+ 22.184688434924265,
+ 0.0
+ ],
+ [
+ 113.533404345182817,
+ 22.184800953646512,
+ 0.0
+ ],
+ [
+ 113.533393443303979,
+ 22.184916998419887,
+ 0.0
+ ],
+ [
+ 113.533404344022244,
+ 22.185033043286904,
+ 0.0
+ ],
+ [
+ 113.533436716177164,
+ 22.185145562278777,
+ 0.0
+ ],
+ [
+ 113.533489576203252,
+ 22.185251136550711,
+ 0.0
+ ],
+ [
+ 113.533561318009518,
+ 22.185346558263234,
+ 0.0
+ ],
+ [
+ 113.533649761775663,
+ 22.185428928053042,
+ 0.0
+ ],
+ [
+ 113.533752220182635,
+ 22.185495743131423,
+ 0.0
+ ],
+ [
+ 113.533865580065381,
+ 22.185544973333162,
+ 0.0
+ ],
+ [
+ 113.53398639700707,
+ 22.18557512280486,
+ 0.0
+ ],
+ [
+ 113.534111,
+ 22.18558527545791,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009608,
+ "name": "Hong Kong International Airport",
+ "country": "HK",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "22.304158",
+ "lng": "113.923856",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.923856,
+ 22.755676246282537,
+ 500.0
+ ],
+ [
+ 114.008387354869257,
+ 22.748794770859401,
+ 500.0
+ ],
+ [
+ 114.090325700847984,
+ 22.728361430154795,
+ 500.0
+ ],
+ [
+ 114.167159853921873,
+ 22.695002818209591,
+ 500.0
+ ],
+ [
+ 114.236539406943919,
+ 22.649741284295338,
+ 500.0
+ ],
+ [
+ 114.296348075378347,
+ 22.593962781575705,
+ 500.0
+ ],
+ [
+ 114.344768970370339,
+ 22.529373434094126,
+ 500.0
+ ],
+ [
+ 114.380339704609653,
+ 22.457946309396267,
+ 500.0
+ ],
+ [
+ 114.401995683714716,
+ 22.38186018734056,
+ 500.0
+ ],
+ [
+ 114.409100425695058,
+ 22.303432342013433,
+ 500.0
+ ],
+ [
+ 114.401462251486322,
+ 22.225047499381333,
+ 500.0
+ ],
+ [
+ 114.379337172789405,
+ 22.149085199512506,
+ 500.0
+ ],
+ [
+ 114.343418248117118,
+ 22.077847783891642,
+ 500.0
+ ],
+ [
+ 114.294812070079217,
+ 22.013491153143388,
+ 500.0
+ ],
+ [
+ 114.235003379694803,
+ 21.957960307360164,
+ 500.0
+ ],
+ [
+ 114.165809076089374,
+ 21.912931499504023,
+ 500.0
+ ],
+ [
+ 114.089323105825287,
+ 21.879762610922217,
+ 500.0
+ ],
+ [
+ 114.007853881388414,
+ 21.859453104967749,
+ 500.0
+ ],
+ [
+ 113.923856,
+ 21.852614637201249,
+ 500.0
+ ],
+ [
+ 113.839858118611588,
+ 21.859453104967749,
+ 500.0
+ ],
+ [
+ 113.758388894174715,
+ 21.879762610922217,
+ 500.0
+ ],
+ [
+ 113.681902923910627,
+ 21.912931499504023,
+ 500.0
+ ],
+ [
+ 113.612708620305199,
+ 21.957960307360164,
+ 500.0
+ ],
+ [
+ 113.552899929920784,
+ 22.013491153143388,
+ 500.0
+ ],
+ [
+ 113.504293751882884,
+ 22.077847783891642,
+ 500.0
+ ],
+ [
+ 113.468374827210596,
+ 22.149085199512506,
+ 500.0
+ ],
+ [
+ 113.446249748513679,
+ 22.225047499381333,
+ 500.0
+ ],
+ [
+ 113.438611574304943,
+ 22.303432342013433,
+ 500.0
+ ],
+ [
+ 113.445716316285285,
+ 22.38186018734056,
+ 500.0
+ ],
+ [
+ 113.467372295390348,
+ 22.457946309396267,
+ 500.0
+ ],
+ [
+ 113.502943029629662,
+ 22.529373434094126,
+ 500.0
+ ],
+ [
+ 113.551363924621654,
+ 22.593962781575705,
+ 500.0
+ ],
+ [
+ 113.611172593056082,
+ 22.649741284295338,
+ 500.0
+ ],
+ [
+ 113.680552146078128,
+ 22.695002818209591,
+ 500.0
+ ],
+ [
+ 113.757386299152017,
+ 22.728361430154795,
+ 500.0
+ ],
+ [
+ 113.839324645130745,
+ 22.748794770859401,
+ 500.0
+ ],
+ [
+ 113.923856,
+ 22.755676246282537,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002464,
+ "name": "(Cap. 448G RFZ) San Wai Barracks",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.5117058832607",
+ "lng": "114.152220085711",
+ "radius": 271,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.149596552512989,
+ 22.511600874534388,
+ 0.0
+ ],
+ [
+ 114.150537166810011,
+ 22.509819508384094,
+ 0.0
+ ],
+ [
+ 114.152655552604998,
+ 22.509667994567611,
+ 0.0
+ ],
+ [
+ 114.153331519614994,
+ 22.509858716991893,
+ 0.0
+ ],
+ [
+ 114.154865414268997,
+ 22.511646506522702,
+ 0.0
+ ],
+ [
+ 114.154456701615004,
+ 22.512340976714579,
+ 0.0
+ ],
+ [
+ 114.153335670223996,
+ 22.513707095154778,
+ 0.0
+ ],
+ [
+ 114.149679479317015,
+ 22.512389276768591,
+ 0.0
+ ],
+ [
+ 114.149596552512989,
+ 22.511600874534388,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002466,
+ "name": "(Cap. 448G RFZ) Tai O Barracks",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2559376935838",
+ "lng": "113.853060723402",
+ "radius": 48,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.852591527605981,
+ 22.255980443596691,
+ 0.0
+ ],
+ [
+ 113.853222845463989,
+ 22.255586190533702,
+ 0.0
+ ],
+ [
+ 113.853339690335986,
+ 22.255585935514397,
+ 0.0
+ ],
+ [
+ 113.853469357625997,
+ 22.255768601868382,
+ 0.0
+ ],
+ [
+ 113.853496283517984,
+ 22.256104709683402,
+ 0.0
+ ],
+ [
+ 113.853378811116031,
+ 22.256238588757693,
+ 0.0
+ ],
+ [
+ 113.852637835563996,
+ 22.256076142519188,
+ 0.0
+ ],
+ [
+ 113.852591527605981,
+ 22.255980443596691,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002494,
+ "name": "GFS Kai Tak Division",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.3036962053396",
+ "lng": "114.215769286803",
+ "radius": 63,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.21516,
+ 22.30363,
+ 0.0
+ ],
+ [
+ 114.21553,
+ 22.30329,
+ 0.0
+ ],
+ [
+ 114.2159,
+ 22.303275,
+ 0.0
+ ],
+ [
+ 114.21638,
+ 22.30375,
+ 0.0
+ ],
+ [
+ 114.21584,
+ 22.30426,
+ 0.0
+ ],
+ [
+ 114.21516,
+ 22.30363,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33334,
+ "name": "Tai Lam Centre for Women",
+ "country": "HK",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "22.371691",
+ "lng": "114.024817",
+ "radius": 150,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.024817,
+ 22.373045581216765,
+ 0.0
+ ],
+ [
+ 114.025069910468162,
+ 22.373025001888443,
+ 0.0
+ ],
+ [
+ 114.025315136162277,
+ 22.372963889213509,
+ 0.0
+ ],
+ [
+ 114.025545225832516,
+ 22.372864100120101,
+ 0.0
+ ],
+ [
+ 114.025753188178754,
+ 22.372728666726623,
+ 0.0
+ ],
+ [
+ 114.025932704294831,
+ 22.372561704203033,
+ 0.0
+ ],
+ [
+ 114.026078319674397,
+ 22.372368285722004,
+ 0.0
+ ],
+ [
+ 114.026185609943354,
+ 22.372154288301044,
+ 0.0
+ ],
+ [
+ 114.026251315283133,
+ 22.371926214220778,
+ 0.0
+ ],
+ [
+ 114.026273439461406,
+ 22.371690993447167,
+ 0.0
+ ],
+ [
+ 114.026251310463678,
+ 22.371455773061911,
+ 0.0
+ ],
+ [
+ 114.026185600885754,
+ 22.371227700099851,
+ 0.0
+ ],
+ [
+ 114.026078307471096,
+ 22.371013704392094,
+ 0.0
+ ],
+ [
+ 114.025932690417761,
+ 22.370820288012634,
+ 0.0
+ ],
+ [
+ 114.025753174301684,
+ 22.370653327725464,
+ 0.0
+ ],
+ [
+ 114.025545213629229,
+ 22.370517896433544,
+ 0.0
+ ],
+ [
+ 114.025315127104662,
+ 22.370418109053336,
+ 0.0
+ ],
+ [
+ 114.025069905648706,
+ 22.370356997496614,
+ 0.0
+ ],
+ [
+ 114.024817,
+ 22.370336418556651,
+ 0.0
+ ],
+ [
+ 114.024564094351291,
+ 22.370356997496614,
+ 0.0
+ ],
+ [
+ 114.024318872895336,
+ 22.370418109053336,
+ 0.0
+ ],
+ [
+ 114.024088786370768,
+ 22.370517896433544,
+ 0.0
+ ],
+ [
+ 114.023880825698313,
+ 22.370653327725464,
+ 0.0
+ ],
+ [
+ 114.023701309582236,
+ 22.370820288012634,
+ 0.0
+ ],
+ [
+ 114.023555692528902,
+ 22.371013704392094,
+ 0.0
+ ],
+ [
+ 114.023448399114244,
+ 22.371227700099851,
+ 0.0
+ ],
+ [
+ 114.023382689536319,
+ 22.371455773061911,
+ 0.0
+ ],
+ [
+ 114.023360560538592,
+ 22.371690993447167,
+ 0.0
+ ],
+ [
+ 114.023382684716864,
+ 22.371926214220778,
+ 0.0
+ ],
+ [
+ 114.023448390056643,
+ 22.372154288301044,
+ 0.0
+ ],
+ [
+ 114.0235556803256,
+ 22.372368285722004,
+ 0.0
+ ],
+ [
+ 114.023701295705166,
+ 22.372561704203033,
+ 0.0
+ ],
+ [
+ 114.023880811821243,
+ 22.372728666726623,
+ 0.0
+ ],
+ [
+ 114.024088774167481,
+ 22.372864100120101,
+ 0.0
+ ],
+ [
+ 114.024318863837721,
+ 22.372963889213509,
+ 0.0
+ ],
+ [
+ 114.024564089531836,
+ 22.373025001888443,
+ 0.0
+ ],
+ [
+ 114.024817,
+ 22.373045581216765,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002452,
+ "name": "(Cap. 448G RFZ) Chek Chue Barracks",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.1993086164337",
+ "lng": "114.219906558005",
+ "radius": 521,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.218703983771007,
+ 22.194755299641574,
+ 0.0
+ ],
+ [
+ 114.221726694421989,
+ 22.195331503733303,
+ 0.0
+ ],
+ [
+ 114.222998018161988,
+ 22.195811998455891,
+ 0.0
+ ],
+ [
+ 114.223197807036996,
+ 22.195995256457497,
+ 0.0
+ ],
+ [
+ 114.223905047702019,
+ 22.197085459798689,
+ 0.0
+ ],
+ [
+ 114.224097107635998,
+ 22.197926101661086,
+ 0.0
+ ],
+ [
+ 114.224086937692988,
+ 22.198398149726895,
+ 0.0
+ ],
+ [
+ 114.223264034513008,
+ 22.200605838920577,
+ 0.0
+ ],
+ [
+ 114.22110921024003,
+ 22.20386192439549,
+ 0.0
+ ],
+ [
+ 114.218703983771007,
+ 22.194755299641574,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002456,
+ "name": "(Cap. 448G RFZ) Central Barracks",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2817724370547",
+ "lng": "114.163492528296",
+ "radius": 128,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.162436107926993,
+ 22.281901268437796,
+ 0.0
+ ],
+ [
+ 114.162780893177001,
+ 22.281561688924405,
+ 0.0
+ ],
+ [
+ 114.164209390751992,
+ 22.280829296070884,
+ 0.0
+ ],
+ [
+ 114.16431289750102,
+ 22.280909450081978,
+ 0.0
+ ],
+ [
+ 114.164678995428019,
+ 22.2821248660698,
+ 0.0
+ ],
+ [
+ 114.164367047888007,
+ 22.282266343456207,
+ 0.0
+ ],
+ [
+ 114.162731440325018,
+ 22.282681646900603,
+ 0.0
+ ],
+ [
+ 114.162651695625982,
+ 22.282623422162992,
+ 0.0
+ ],
+ [
+ 114.162436107926993,
+ 22.281901268437796,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002470,
+ "name": "(Cap. 448G RFZ) Western Barracks",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2838195089671",
+ "lng": "114.140364729367",
+ "radius": 28,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.140122226070019,
+ 22.283700475740194,
+ 0.0
+ ],
+ [
+ 114.140540602296014,
+ 22.283625019519214,
+ 0.0
+ ],
+ [
+ 114.140477691374997,
+ 22.283862447867282,
+ 0.0
+ ],
+ [
+ 114.140353974420009,
+ 22.284001175785601,
+ 0.0
+ ],
+ [
+ 114.140188855948011,
+ 22.2840139982255,
+ 0.0
+ ],
+ [
+ 114.140122226070019,
+ 22.283700475740194,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002433,
+ "name": "(Cap. 448G RFZ) Ngong Shuen Chau Barracks",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.3187546993547",
+ "lng": "114.137438038847",
+ "radius": 748,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.130567981102999,
+ 22.320962327425992,
+ 0.0
+ ],
+ [
+ 114.130888887578024,
+ 22.317361117733888,
+ 0.0
+ ],
+ [
+ 114.133200282461004,
+ 22.313391390980485,
+ 0.0
+ ],
+ [
+ 114.13441694746399,
+ 22.312696113731899,
+ 0.0
+ ],
+ [
+ 114.142583335234988,
+ 22.314000003389186,
+ 0.0
+ ],
+ [
+ 114.137121420057994,
+ 22.3254761713441,
+ 0.0
+ ],
+ [
+ 114.136540202088995,
+ 22.325406817520083,
+ 0.0
+ ],
+ [
+ 114.132528678496996,
+ 22.322522972613683,
+ 0.0
+ ],
+ [
+ 114.130567981102999,
+ 22.320962327425992,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002468,
+ "name": "(Cap. 448G RFZ) Tam Mei Barracks",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4813609362175",
+ "lng": "114.070401967712",
+ "radius": 12,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.070284208006996,
+ 22.481394934655896,
+ 0.0
+ ],
+ [
+ 114.070344391285033,
+ 22.481261875314882,
+ 0.0
+ ],
+ [
+ 114.070519727358999,
+ 22.481326937693691,
+ 0.0
+ ],
+ [
+ 114.070458570498005,
+ 22.481462615273983,
+ 0.0
+ ],
+ [
+ 114.070284208006996,
+ 22.481394934655896,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042430,
+ "name": "香港迪士尼乐园",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.315434823",
+ "lng": "114.045560083",
+ "radius": 2500,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.045560083,
+ 22.338011303768081,
+ 0.0
+ ],
+ [
+ 114.049774193885284,
+ 22.337668262006375,
+ 0.0
+ ],
+ [
+ 114.053860200876898,
+ 22.336649564731683,
+ 0.0
+ ],
+ [
+ 114.057693899731376,
+ 22.334986178538188,
+ 0.0
+ ],
+ [
+ 114.06115876613643,
+ 22.33272866600905,
+ 0.0
+ ],
+ [
+ 114.064149500987313,
+ 22.32994564680871,
+ 0.0
+ ],
+ [
+ 114.066575232364301,
+ 22.326721709534553,
+ 0.0
+ ],
+ [
+ 114.06836227661789,
+ 22.323154838159184,
+ 0.0
+ ],
+ [
+ 114.069456374670608,
+ 22.319353431667427,
+ 0.0
+ ],
+ [
+ 114.06982433589539,
+ 22.315433007827515,
+ 0.0
+ ],
+ [
+ 114.069455040198093,
+ 22.311512691561713,
+ 0.0
+ ],
+ [
+ 114.06835976862989,
+ 22.307711594817231,
+ 0.0
+ ],
+ [
+ 114.066571853361111,
+ 22.304145198002239,
+ 0.0
+ ],
+ [
+ 114.064145658526527,
+ 22.3009218428626,
+ 0.0
+ ],
+ [
+ 114.061154923675517,
+ 22.298139443156888,
+ 0.0
+ ],
+ [
+ 114.057690520727846,
+ 22.295882512762311,
+ 0.0
+ ],
+ [
+ 114.053857692888499,
+ 22.294219601129278,
+ 0.0
+ ],
+ [
+ 114.049772859412499,
+ 22.293201213601947,
+ 0.0
+ ],
+ [
+ 114.045560083,
+ 22.292858279414382,
+ 0.0
+ ],
+ [
+ 114.041347306587497,
+ 22.293201213601947,
+ 0.0
+ ],
+ [
+ 114.037262473111497,
+ 22.294219601129278,
+ 0.0
+ ],
+ [
+ 114.03342964527215,
+ 22.295882512762311,
+ 0.0
+ ],
+ [
+ 114.029965242324479,
+ 22.298139443156888,
+ 0.0
+ ],
+ [
+ 114.026974507473469,
+ 22.3009218428626,
+ 0.0
+ ],
+ [
+ 114.024548312638885,
+ 22.304145198002239,
+ 0.0
+ ],
+ [
+ 114.022760397370106,
+ 22.307711594817231,
+ 0.0
+ ],
+ [
+ 114.021665125801903,
+ 22.311512691561713,
+ 0.0
+ ],
+ [
+ 114.021295830104606,
+ 22.315433007827515,
+ 0.0
+ ],
+ [
+ 114.021663791329388,
+ 22.319353431667427,
+ 0.0
+ ],
+ [
+ 114.022757889382106,
+ 22.323154838159184,
+ 0.0
+ ],
+ [
+ 114.024544933635696,
+ 22.326721709534553,
+ 0.0
+ ],
+ [
+ 114.026970665012684,
+ 22.32994564680871,
+ 0.0
+ ],
+ [
+ 114.029961399863566,
+ 22.33272866600905,
+ 0.0
+ ],
+ [
+ 114.03342626626862,
+ 22.334986178538188,
+ 0.0
+ ],
+ [
+ 114.037259965123098,
+ 22.336649564731683,
+ 0.0
+ ],
+ [
+ 114.041345972114712,
+ 22.337668262006375,
+ 0.0
+ ],
+ [
+ 114.045560083,
+ 22.338011303768081,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002200,
+ "name": "Hong Kong International Airport NFZ",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.3020733361014",
+ "lng": "113.916170139936",
+ "radius": 4854,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.870056675,
+ 22.2928166178,
+ 0.0
+ ],
+ [
+ 113.95841418099999,
+ 22.321532933299999,
+ 0.0
+ ],
+ [
+ 113.962281652,
+ 22.3113514022,
+ 0.0
+ ],
+ [
+ 113.873920921,
+ 22.282634297,
+ 0.0
+ ],
+ [
+ 113.870056675,
+ 22.2928166178,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002200,
+ "name": "Hong Kong International Airport NFZ",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.3160730409337",
+ "lng": "113.913836563637",
+ "radius": 4761,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.868538,
+ 22.307253,
+ 0.0
+ ],
+ [
+ 113.955307,
+ 22.33511,
+ 0.0
+ ],
+ [
+ 113.959133,
+ 22.324915,
+ 0.0
+ ],
+ [
+ 113.872361,
+ 22.297057,
+ 0.0
+ ],
+ [
+ 113.868538,
+ 22.307253,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042594,
+ "name": "New Territories North Regional Police Headquarters",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4518622281374",
+ "lng": "114.173484861113",
+ "radius": 69,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.173602033832196,
+ 22.452067444108351,
+ 0.0
+ ],
+ [
+ 114.173602034515596,
+ 22.45203800485146,
+ 0.0
+ ],
+ [
+ 114.172834535672109,
+ 22.4520379876314,
+ 0.0
+ ],
+ [
+ 114.172826180316207,
+ 22.451947319027227,
+ 0.0
+ ],
+ [
+ 114.172825478886807,
+ 22.451879614136033,
+ 0.0
+ ],
+ [
+ 114.172831648168,
+ 22.451806717810996,
+ 0.0
+ ],
+ [
+ 114.172844959028794,
+ 22.451734651560059,
+ 0.0
+ ],
+ [
+ 114.172865300688315,
+ 22.451664016806561,
+ 0.0
+ ],
+ [
+ 114.172892502133394,
+ 22.451595406844092,
+ 0.0
+ ],
+ [
+ 114.172923607858806,
+ 22.451534182974214,
+ 0.0
+ ],
+ [
+ 114.172973867555612,
+ 22.451451011958,
+ 0.0
+ ],
+ [
+ 114.173207030779693,
+ 22.451451017373927,
+ 0.0
+ ],
+ [
+ 114.173245889688218,
+ 22.451514231376535,
+ 0.0
+ ],
+ [
+ 114.173545990324101,
+ 22.451514237779222,
+ 0.0
+ ],
+ [
+ 114.173556774553205,
+ 22.451496177103905,
+ 0.0
+ ],
+ [
+ 114.17388708922789,
+ 22.451496183484025,
+ 0.0
+ ],
+ [
+ 114.174027857929119,
+ 22.451676794946152,
+ 0.0
+ ],
+ [
+ 114.174125009429901,
+ 22.451676796609291,
+ 0.0
+ ],
+ [
+ 114.174125001825985,
+ 22.452067453751198,
+ 0.0
+ ],
+ [
+ 114.173602033832196,
+ 22.452067444108351,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042599,
+ "name": "(Cap. 448G RFZ) Police Officers' Club",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2828100007716",
+ "lng": "114.182631997332",
+ "radius": 97,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.182884,
+ 22.282184,
+ 0.0
+ ],
+ [
+ 114.183069,
+ 22.282235,
+ 0.0
+ ],
+ [
+ 114.182945,
+ 22.282525,
+ 0.0
+ ],
+ [
+ 114.183134,
+ 22.283553,
+ 0.0
+ ],
+ [
+ 114.183022,
+ 22.283586,
+ 0.0
+ ],
+ [
+ 114.182864,
+ 22.283341,
+ 0.0
+ ],
+ [
+ 114.182676,
+ 22.283114,
+ 0.0
+ ],
+ [
+ 114.182423,
+ 22.28287,
+ 0.0
+ ],
+ [
+ 114.182418,
+ 22.282833,
+ 0.0
+ ],
+ [
+ 114.182309,
+ 22.282772,
+ 0.0
+ ],
+ [
+ 114.18206,
+ 22.282537,
+ 0.0
+ ],
+ [
+ 114.181991,
+ 22.282426,
+ 0.0
+ ],
+ [
+ 114.181973,
+ 22.282343,
+ 0.0
+ ],
+ [
+ 114.181988,
+ 22.282216,
+ 0.0
+ ],
+ [
+ 114.182062,
+ 22.282117,
+ 0.0
+ ],
+ [
+ 114.18213,
+ 22.282067,
+ 0.0
+ ],
+ [
+ 114.18215,
+ 22.282135,
+ 0.0
+ ],
+ [
+ 114.182359,
+ 22.282082,
+ 0.0
+ ],
+ [
+ 114.182445,
+ 22.282075,
+ 0.0
+ ],
+ [
+ 114.182884,
+ 22.282184,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042629,
+ "name": "(Cap. 448G RFZ) Explosive Ordnance Disposal Depot",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2709139118971",
+ "lng": "114.203159119997",
+ "radius": 469,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.2068,
+ 22.272093,
+ 0.0
+ ],
+ [
+ 114.20627,
+ 22.273997,
+ 0.0
+ ],
+ [
+ 114.203436,
+ 22.274633,
+ 0.0
+ ],
+ [
+ 114.200151,
+ 22.273427,
+ 0.0
+ ],
+ [
+ 114.200125,
+ 22.271406,
+ 0.0
+ ],
+ [
+ 114.201149,
+ 22.270699,
+ 0.0
+ ],
+ [
+ 114.201161,
+ 22.269914,
+ 0.0
+ ],
+ [
+ 114.200623,
+ 22.269489,
+ 0.0
+ ],
+ [
+ 114.199474,
+ 22.270057,
+ 0.0
+ ],
+ [
+ 114.198806,
+ 22.269663,
+ 0.0
+ ],
+ [
+ 114.200206,
+ 22.268637,
+ 0.0
+ ],
+ [
+ 114.200041,
+ 22.268375,
+ 0.0
+ ],
+ [
+ 114.202821,
+ 22.267241,
+ 0.0
+ ],
+ [
+ 114.204789,
+ 22.267608,
+ 0.0
+ ],
+ [
+ 114.205492,
+ 22.268802,
+ 0.0
+ ],
+ [
+ 114.206921,
+ 22.268532,
+ 0.0
+ ],
+ [
+ 114.207304,
+ 22.270281,
+ 0.0
+ ],
+ [
+ 114.206791,
+ 22.270338,
+ 0.0
+ ],
+ [
+ 114.207238,
+ 22.270519,
+ 0.0
+ ],
+ [
+ 114.2068,
+ 22.272093,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 10685,
+ "name": "Stanley Prison",
+ "country": "HK",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "22.211643",
+ "lng": "114.218953",
+ "radius": 238,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.218953,
+ 22.213792311119089,
+ 0.0
+ ],
+ [
+ 114.219353830159875,
+ 22.21375965776442,
+ 0.0
+ ],
+ [
+ 114.219742480755698,
+ 22.213662689899859,
+ 0.0
+ ],
+ [
+ 114.220107142358728,
+ 22.213504353970887,
+ 0.0
+ ],
+ [
+ 114.220436734556614,
+ 22.213289461127673,
+ 0.0
+ ],
+ [
+ 114.220721242668859,
+ 22.213024541017305,
+ 0.0
+ ],
+ [
+ 114.220952022060459,
+ 22.212717643355301,
+ 0.0
+ ],
+ [
+ 114.221122060804831,
+ 22.212378093308637,
+ 0.0
+ ],
+ [
+ 114.221226192714866,
+ 22.21201620812667,
+ 0.0
+ ],
+ [
+ 114.221261254272207,
+ 22.211642983633514,
+ 0.0
+ ],
+ [
+ 114.22122618069163,
+ 22.21126976011028,
+ 0.0
+ ],
+ [
+ 114.221122038208549,
+ 22.210907877721073,
+ 0.0
+ ],
+ [
+ 114.220951991616559,
+ 22.210568331953162,
+ 0.0
+ ],
+ [
+ 114.220721208049341,
+ 22.210261439539831,
+ 0.0
+ ],
+ [
+ 114.220436699937096,
+ 22.209996525014994,
+ 0.0
+ ],
+ [
+ 114.220107111914828,
+ 22.209781637420438,
+ 0.0
+ ],
+ [
+ 114.219742458159402,
+ 22.20962330577024,
+ 0.0
+ ],
+ [
+ 114.219353818136639,
+ 22.209526340698428,
+ 0.0
+ ],
+ [
+ 114.218953,
+ 22.209493688313678,
+ 0.0
+ ],
+ [
+ 114.218552181863359,
+ 22.209526340698428,
+ 0.0
+ ],
+ [
+ 114.218163541840596,
+ 22.20962330577024,
+ 0.0
+ ],
+ [
+ 114.21779888808517,
+ 22.209781637420438,
+ 0.0
+ ],
+ [
+ 114.217469300062902,
+ 22.209996525014994,
+ 0.0
+ ],
+ [
+ 114.217184791950658,
+ 22.210261439539831,
+ 0.0
+ ],
+ [
+ 114.216954008383439,
+ 22.210568331953162,
+ 0.0
+ ],
+ [
+ 114.21678396179145,
+ 22.210907877721073,
+ 0.0
+ ],
+ [
+ 114.216679819308368,
+ 22.21126976011028,
+ 0.0
+ ],
+ [
+ 114.216644745727791,
+ 22.211642983633514,
+ 0.0
+ ],
+ [
+ 114.216679807285132,
+ 22.21201620812667,
+ 0.0
+ ],
+ [
+ 114.216783939195167,
+ 22.212378093308637,
+ 0.0
+ ],
+ [
+ 114.216953977939539,
+ 22.212717643355301,
+ 0.0
+ ],
+ [
+ 114.21718475733114,
+ 22.213024541017305,
+ 0.0
+ ],
+ [
+ 114.217469265443384,
+ 22.213289461127673,
+ 0.0
+ ],
+ [
+ 114.21779885764127,
+ 22.213504353970887,
+ 0.0
+ ],
+ [
+ 114.2181635192443,
+ 22.213662689899859,
+ 0.0
+ ],
+ [
+ 114.218552169840123,
+ 22.21375965776442,
+ 0.0
+ ],
+ [
+ 114.218953,
+ 22.213792311119089,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002450,
+ "name": "(Cap. 448G RFZ) Central Military Dock",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2846836311435",
+ "lng": "114.164939651463",
+ "radius": 179,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.163233335262021,
+ 22.284333337577404,
+ 0.0
+ ],
+ [
+ 114.165866672977998,
+ 22.283350001379308,
+ 0.0
+ ],
+ [
+ 114.165950003871998,
+ 22.283383339054897,
+ 0.0
+ ],
+ [
+ 114.166650001492997,
+ 22.285016673824909,
+ 0.0
+ ],
+ [
+ 114.163950001460009,
+ 22.286016669726713,
+ 0.0
+ ],
+ [
+ 114.163233335262021,
+ 22.284333337577404,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045086,
+ "name": "澳門自來水廠",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.211361",
+ "lng": "113.540472",
+ "radius": 109,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.540472,
+ 22.212345348474159,
+ 0.0
+ ],
+ [
+ 113.540655571617364,
+ 22.212330393906392,
+ 0.0
+ ],
+ [
+ 113.540833565390258,
+ 22.212285984599252,
+ 0.0
+ ],
+ [
+ 113.541000572967889,
+ 22.212213469933484,
+ 0.0
+ ],
+ [
+ 113.541151519835282,
+ 22.212115053271013,
+ 0.0
+ ],
+ [
+ 113.541281819508725,
+ 22.211993725001982,
+ 0.0
+ ],
+ [
+ 113.541387512898581,
+ 22.211853171677326,
+ 0.0
+ ],
+ [
+ 113.541465388604209,
+ 22.211697663988346,
+ 0.0
+ ],
+ [
+ 113.541513080485956,
+ 22.211531926997967,
+ 0.0
+ ],
+ [
+ 113.541529139550192,
+ 22.211360996567205,
+ 0.0
+ ],
+ [
+ 113.54151307796414,
+ 22.211190066339878,
+ 0.0
+ ],
+ [
+ 113.541465383864747,
+ 22.211024329935267,
+ 0.0
+ ],
+ [
+ 113.541387506513118,
+ 22.210868823143738,
+ 0.0
+ ],
+ [
+ 113.541281812247448,
+ 22.210728270919958,
+ 0.0
+ ],
+ [
+ 113.54115151257399,
+ 22.210606943822476,
+ 0.0
+ ],
+ [
+ 113.541000566582426,
+ 22.210508528260888,
+ 0.0
+ ],
+ [
+ 113.540833560650782,
+ 22.210436014492576,
+ 0.0
+ ],
+ [
+ 113.540655569095549,
+ 22.210391605771203,
+ 0.0
+ ],
+ [
+ 113.540472,
+ 22.210376651406868,
+ 0.0
+ ],
+ [
+ 113.54028843090444,
+ 22.210391605771203,
+ 0.0
+ ],
+ [
+ 113.540110439349206,
+ 22.210436014492576,
+ 0.0
+ ],
+ [
+ 113.539943433417562,
+ 22.210508528260888,
+ 0.0
+ ],
+ [
+ 113.539792487425999,
+ 22.210606943822476,
+ 0.0
+ ],
+ [
+ 113.53966218775254,
+ 22.210728270919958,
+ 0.0
+ ],
+ [
+ 113.53955649348687,
+ 22.210868823143738,
+ 0.0
+ ],
+ [
+ 113.539478616135241,
+ 22.211024329935267,
+ 0.0
+ ],
+ [
+ 113.539430922035848,
+ 22.211190066339878,
+ 0.0
+ ],
+ [
+ 113.539414860449796,
+ 22.211360996567205,
+ 0.0
+ ],
+ [
+ 113.539430919514032,
+ 22.211531926997967,
+ 0.0
+ ],
+ [
+ 113.539478611395779,
+ 22.211697663988346,
+ 0.0
+ ],
+ [
+ 113.539556487101407,
+ 22.211853171677326,
+ 0.0
+ ],
+ [
+ 113.539662180491263,
+ 22.211993725001982,
+ 0.0
+ ],
+ [
+ 113.539792480164706,
+ 22.212115053271013,
+ 0.0
+ ],
+ [
+ 113.5399434270321,
+ 22.212213469933484,
+ 0.0
+ ],
+ [
+ 113.54011043460973,
+ 22.212285984599252,
+ 0.0
+ ],
+ [
+ 113.540288428382624,
+ 22.212330393906392,
+ 0.0
+ ],
+ [
+ 113.540472,
+ 22.212345348474159,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042630,
+ "name": "(Cap. 448G RFZ) Police Driving and Traffic Training Centre",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4990335743979",
+ "lng": "114.139424625896",
+ "radius": 265,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.139314,
+ 22.501416,
+ 0.0
+ ],
+ [
+ 114.139663,
+ 22.501408,
+ 0.0
+ ],
+ [
+ 114.138461,
+ 22.501014,
+ 0.0
+ ],
+ [
+ 114.138894,
+ 22.500812,
+ 0.0
+ ],
+ [
+ 114.139031,
+ 22.500217,
+ 0.0
+ ],
+ [
+ 114.139894,
+ 22.500384,
+ 0.0
+ ],
+ [
+ 114.140184,
+ 22.499812,
+ 0.0
+ ],
+ [
+ 114.13921,
+ 22.499372,
+ 0.0
+ ],
+ [
+ 114.139287,
+ 22.498549,
+ 0.0
+ ],
+ [
+ 114.139815,
+ 22.497951,
+ 0.0
+ ],
+ [
+ 114.139497,
+ 22.497566,
+ 0.0
+ ],
+ [
+ 114.139707,
+ 22.496986,
+ 0.0
+ ],
+ [
+ 114.139241,
+ 22.496655,
+ 0.0
+ ],
+ [
+ 114.13787,
+ 22.498458,
+ 0.0
+ ],
+ [
+ 114.138711,
+ 22.499184,
+ 0.0
+ ],
+ [
+ 114.138571,
+ 22.500089,
+ 0.0
+ ],
+ [
+ 114.138191,
+ 22.500054,
+ 0.0
+ ],
+ [
+ 114.138049,
+ 22.500881,
+ 0.0
+ ],
+ [
+ 114.139314,
+ 22.501416,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002449,
+ "name": "(Cap. 448G RFZ) OCMFA of the PRC in the HKSAR (2)",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2758001810023",
+ "lng": "114.162412853201",
+ "radius": 51,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.161931514595011,
+ 22.275929501523407,
+ 0.0
+ ],
+ [
+ 114.161963743666007,
+ 22.275785429606579,
+ 0.0
+ ],
+ [
+ 114.162551800909,
+ 22.275499933441875,
+ 0.0
+ ],
+ [
+ 114.162894190916006,
+ 22.275670859062785,
+ 0.0
+ ],
+ [
+ 114.162779875772983,
+ 22.276106649958191,
+ 0.0
+ ],
+ [
+ 114.16243630577398,
+ 22.276174403875306,
+ 0.0
+ ],
+ [
+ 114.161931514595011,
+ 22.275929501523407,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002482,
+ "name": "(Cap. 448G RFZ) Shek Kong Village",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4239763795088",
+ "lng": "114.109237802739",
+ "radius": 312,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.106925926255983,
+ 22.4246796908688,
+ 0.0
+ ],
+ [
+ 114.107473117897996,
+ 22.423360421100284,
+ 0.0
+ ],
+ [
+ 114.107612221365983,
+ 22.423181839928706,
+ 0.0
+ ],
+ [
+ 114.108643831090973,
+ 22.422039860386811,
+ 0.0
+ ],
+ [
+ 114.109657225676003,
+ 22.4211926302808,
+ 0.0
+ ],
+ [
+ 114.112275473018997,
+ 22.423854663714515,
+ 0.0
+ ],
+ [
+ 114.10898407040898,
+ 22.426397902286197,
+ 0.0
+ ],
+ [
+ 114.108182231954018,
+ 22.426612190674195,
+ 0.0
+ ],
+ [
+ 114.106925926255983,
+ 22.4246796908688,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33377,
+ "name": "大亚湾核电站",
+ "country": "CN",
+ "city": "深圳市",
+ "height": 0,
+ "level": 2,
+ "lat": "22.598333",
+ "lng": "114.5416667",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.5416667,
+ 22.607363283372877,
+ 0.0
+ ],
+ [
+ 114.543355609197363,
+ 22.607226084271396,
+ 0.0
+ ],
+ [
+ 114.544993191951207,
+ 22.606818656480126,
+ 0.0
+ ],
+ [
+ 114.546529682527648,
+ 22.606153381754993,
+ 0.0
+ ],
+ [
+ 114.547918389048192,
+ 22.605250477607427,
+ 0.0
+ ],
+ [
+ 114.549117112969569,
+ 22.604137382586103,
+ 0.0
+ ],
+ [
+ 114.550089431674991,
+ 22.602847922056046,
+ 0.0
+ ],
+ [
+ 114.550805805156003,
+ 22.601421279884825,
+ 0.0
+ ],
+ [
+ 114.551244473159699,
+ 22.599900807346341,
+ 0.0
+ ],
+ [
+ 114.551392115591284,
+ 22.598332705495519,
+ 0.0
+ ],
+ [
+ 114.551244256199467,
+ 22.596764621099414,
+ 0.0
+ ],
+ [
+ 114.550805397404147,
+ 22.595244198819795,
+ 0.0
+ ],
+ [
+ 114.550088882312409,
+ 22.593817633649618,
+ 0.0
+ ],
+ [
+ 114.549116488257482,
+ 22.592528267575361,
+ 0.0
+ ],
+ [
+ 114.547917764336091,
+ 22.591415273071764,
+ 0.0
+ ],
+ [
+ 114.546529133165052,
+ 22.590512463379977,
+ 0.0
+ ],
+ [
+ 114.544992784199337,
+ 22.589847265655894,
+ 0.0
+ ],
+ [
+ 114.543355392237132,
+ 22.589439888123501,
+ 0.0
+ ],
+ [
+ 114.5416667,
+ 22.589302706476737,
+ 0.0
+ ],
+ [
+ 114.539978007762855,
+ 22.589439888123501,
+ 0.0
+ ],
+ [
+ 114.538340615800649,
+ 22.589847265655894,
+ 0.0
+ ],
+ [
+ 114.536804266834935,
+ 22.590512463379977,
+ 0.0
+ ],
+ [
+ 114.535415635663895,
+ 22.591415273071764,
+ 0.0
+ ],
+ [
+ 114.534216911742504,
+ 22.592528267575361,
+ 0.0
+ ],
+ [
+ 114.533244517687578,
+ 22.593817633649618,
+ 0.0
+ ],
+ [
+ 114.532528002595839,
+ 22.595244198819795,
+ 0.0
+ ],
+ [
+ 114.532089143800519,
+ 22.596764621099414,
+ 0.0
+ ],
+ [
+ 114.531941284408703,
+ 22.598332705495519,
+ 0.0
+ ],
+ [
+ 114.532088926840288,
+ 22.599900807346341,
+ 0.0
+ ],
+ [
+ 114.532527594843984,
+ 22.601421279884825,
+ 0.0
+ ],
+ [
+ 114.533243968324996,
+ 22.602847922056046,
+ 0.0
+ ],
+ [
+ 114.534216287030418,
+ 22.604137382586103,
+ 0.0
+ ],
+ [
+ 114.535415010951795,
+ 22.605250477607427,
+ 0.0
+ ],
+ [
+ 114.536803717472338,
+ 22.606153381754993,
+ 0.0
+ ],
+ [
+ 114.53834020804878,
+ 22.606818656480126,
+ 0.0
+ ],
+ [
+ 114.539977790802624,
+ 22.607226084271396,
+ 0.0
+ ],
+ [
+ 114.5416667,
+ 22.607363283372877,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045114,
+ "name": "國際金融中心直昇機坪",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.167244",
+ "lng": "113.529791",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.529791,
+ 22.176274764374259,
+ 0.0
+ ],
+ [
+ 113.531474711797699,
+ 22.176137558151297,
+ 0.0
+ ],
+ [
+ 113.533107255308536,
+ 22.175730109195317,
+ 0.0
+ ],
+ [
+ 113.534639018121339,
+ 22.17506479985726,
+ 0.0
+ ],
+ [
+ 113.53602345216251,
+ 22.174161848626671,
+ 0.0
+ ],
+ [
+ 113.537218488787943,
+ 22.17304869539252,
+ 0.0
+ ],
+ [
+ 113.538187817417409,
+ 22.171759167192565,
+ 0.0
+ ],
+ [
+ 113.53890198881227,
+ 22.170332449860197,
+ 0.0
+ ],
+ [
+ 113.539339309474613,
+ 22.168811896879493,
+ 0.0
+ ],
+ [
+ 113.539486500040127,
+ 22.16724371170158,
+ 0.0
+ ],
+ [
+ 113.539339097750954,
+ 22.165675543608696,
+ 0.0
+ ],
+ [
+ 113.538901590901929,
+ 22.164155039822408,
+ 0.0
+ ],
+ [
+ 113.538187281314251,
+ 22.162728397860235,
+ 0.0
+ ],
+ [
+ 113.537217879153943,
+ 22.161438962115522,
+ 0.0
+ ],
+ [
+ 113.536022842528496,
+ 22.160325907270188,
+ 0.0
+ ],
+ [
+ 113.534638482018181,
+ 22.159423048494837,
+ 0.0
+ ],
+ [
+ 113.533106857398195,
+ 22.158757814526982,
+ 0.0
+ ],
+ [
+ 113.531474500074026,
+ 22.158350414765408,
+ 0.0
+ ],
+ [
+ 113.529791,
+ 22.158213225627492,
+ 0.0
+ ],
+ [
+ 113.52810749992598,
+ 22.158350414765408,
+ 0.0
+ ],
+ [
+ 113.526475142601811,
+ 22.158757814526982,
+ 0.0
+ ],
+ [
+ 113.524943517981825,
+ 22.159423048494837,
+ 0.0
+ ],
+ [
+ 113.52355915747151,
+ 22.160325907270188,
+ 0.0
+ ],
+ [
+ 113.522364120846063,
+ 22.161438962115522,
+ 0.0
+ ],
+ [
+ 113.521394718685755,
+ 22.162728397860235,
+ 0.0
+ ],
+ [
+ 113.520680409098077,
+ 22.164155039822408,
+ 0.0
+ ],
+ [
+ 113.520242902249052,
+ 22.165675543608696,
+ 0.0
+ ],
+ [
+ 113.520095499959879,
+ 22.16724371170158,
+ 0.0
+ ],
+ [
+ 113.520242690525393,
+ 22.168811896879493,
+ 0.0
+ ],
+ [
+ 113.520680011187736,
+ 22.170332449860197,
+ 0.0
+ ],
+ [
+ 113.521394182582597,
+ 22.171759167192565,
+ 0.0
+ ],
+ [
+ 113.522363511212063,
+ 22.17304869539252,
+ 0.0
+ ],
+ [
+ 113.523558547837496,
+ 22.174161848626671,
+ 0.0
+ ],
+ [
+ 113.524942981878667,
+ 22.17506479985726,
+ 0.0
+ ],
+ [
+ 113.52647474469147,
+ 22.175730109195317,
+ 0.0
+ ],
+ [
+ 113.528107288202307,
+ 22.176137558151297,
+ 0.0
+ ],
+ [
+ 113.529791,
+ 22.176274764374259,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002454,
+ "name": "(Cap. 448G RFZ) Chek Chue Barracks",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.1994194123116",
+ "lng": "114.216851688042",
+ "radius": 660,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.210945282089028,
+ 22.200480794720498,
+ 0.0
+ ],
+ [
+ 114.211155189132995,
+ 22.197205080177671,
+ 0.0
+ ],
+ [
+ 114.211323130341,
+ 22.196407423592987,
+ 0.0
+ ],
+ [
+ 114.213093152607982,
+ 22.194734764447716,
+ 0.0
+ ],
+ [
+ 114.21391510107,
+ 22.194139119964301,
+ 0.0
+ ],
+ [
+ 114.214158317742999,
+ 22.194093992005293,
+ 0.0
+ ],
+ [
+ 114.218703983771007,
+ 22.194755299641574,
+ 0.0
+ ],
+ [
+ 114.22110921024003,
+ 22.20386192439549,
+ 0.0
+ ],
+ [
+ 114.210945282089028,
+ 22.200480794720498,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002474,
+ "name": "(Cap. 448G RFZ) Shek Kong Village",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4264303456723",
+ "lng": "114.108095294827",
+ "radius": 660,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.104555500084018,
+ 22.431276115460204,
+ 0.0
+ ],
+ [
+ 114.104707852115013,
+ 22.430980899111702,
+ 0.0
+ ],
+ [
+ 114.111540738911017,
+ 22.421415525117162,
+ 0.0
+ ],
+ [
+ 114.113287364985993,
+ 22.423681787295607,
+ 0.0
+ ],
+ [
+ 114.110069275183989,
+ 22.428111877121871,
+ 0.0
+ ],
+ [
+ 114.105824245728996,
+ 22.430966352690202,
+ 0.0
+ ],
+ [
+ 114.104796135103015,
+ 22.431442025015794,
+ 0.0
+ ],
+ [
+ 114.104649601819006,
+ 22.431445093157983,
+ 0.0
+ ],
+ [
+ 114.104555500084018,
+ 22.431276115460204,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045106,
+ "name": "橫琴梧桐樹直昇機坪",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.147611",
+ "lng": "113.5445",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.5445,
+ 22.156641786106448,
+ 0.0
+ ],
+ [
+ 113.546183478115012,
+ 22.15650457956178,
+ 0.0
+ ],
+ [
+ 113.547815795054191,
+ 22.156097129649666,
+ 0.0
+ ],
+ [
+ 113.549347345300006,
+ 22.155431818747942,
+ 0.0
+ ],
+ [
+ 113.550731587244584,
+ 22.154528865390301,
+ 0.0
+ ],
+ [
+ 113.551926458084282,
+ 22.153415709526257,
+ 0.0
+ ],
+ [
+ 113.552895652276177,
+ 22.152126178269121,
+ 0.0
+ ],
+ [
+ 113.553609724662735,
+ 22.150699457541062,
+ 0.0
+ ],
+ [
+ 113.554046984747416,
+ 22.149178900926021,
+ 0.0
+ ],
+ [
+ 113.554194154997077,
+ 22.147610711983337,
+ 0.0
+ ],
+ [
+ 113.554046773260509,
+ 22.146042540108908,
+ 0.0
+ ],
+ [
+ 113.553609327197393,
+ 22.144522032639944,
+ 0.0
+ ],
+ [
+ 113.552895116772547,
+ 22.143095387208064,
+ 0.0
+ ],
+ [
+ 113.551925849132033,
+ 22.141805948315358,
+ 0.0
+ ],
+ [
+ 113.550730978292322,
+ 22.140692890743491,
+ 0.0
+ ],
+ [
+ 113.549346809796376,
+ 22.13979002975028,
+ 0.0
+ ],
+ [
+ 113.547815397588835,
+ 22.13912479414472,
+ 0.0
+ ],
+ [
+ 113.546183266628105,
+ 22.138717393378705,
+ 0.0
+ ],
+ [
+ 113.5445,
+ 22.13858020390229,
+ 0.0
+ ],
+ [
+ 113.542816733371893,
+ 22.138717393378705,
+ 0.0
+ ],
+ [
+ 113.541184602411164,
+ 22.13912479414472,
+ 0.0
+ ],
+ [
+ 113.539653190203623,
+ 22.13979002975028,
+ 0.0
+ ],
+ [
+ 113.538269021707677,
+ 22.140692890743491,
+ 0.0
+ ],
+ [
+ 113.537074150867966,
+ 22.141805948315358,
+ 0.0
+ ],
+ [
+ 113.536104883227452,
+ 22.143095387208064,
+ 0.0
+ ],
+ [
+ 113.535390672802606,
+ 22.144522032639944,
+ 0.0
+ ],
+ [
+ 113.534953226739489,
+ 22.146042540108908,
+ 0.0
+ ],
+ [
+ 113.534805845002921,
+ 22.147610711983337,
+ 0.0
+ ],
+ [
+ 113.534953015252583,
+ 22.149178900926021,
+ 0.0
+ ],
+ [
+ 113.535390275337264,
+ 22.150699457541062,
+ 0.0
+ ],
+ [
+ 113.536104347723821,
+ 22.152126178269121,
+ 0.0
+ ],
+ [
+ 113.537073541915717,
+ 22.153415709526257,
+ 0.0
+ ],
+ [
+ 113.538268412755414,
+ 22.154528865390301,
+ 0.0
+ ],
+ [
+ 113.539652654699992,
+ 22.155431818747942,
+ 0.0
+ ],
+ [
+ 113.541184204945807,
+ 22.156097129649666,
+ 0.0
+ ],
+ [
+ 113.542816521884987,
+ 22.15650457956178,
+ 0.0
+ ],
+ [
+ 113.5445,
+ 22.156641786106448,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045085,
+ "name": "路環監獄",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.119444",
+ "lng": "113.554972",
+ "radius": 102,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.554972,
+ 22.120365143817544,
+ 0.0
+ ],
+ [
+ 113.555143670945824,
+ 22.120351149483707,
+ 0.0
+ ],
+ [
+ 113.555310125657698,
+ 22.120309591700931,
+ 0.0
+ ],
+ [
+ 113.555466306406302,
+ 22.120241733204463,
+ 0.0
+ ],
+ [
+ 113.555607467653928,
+ 22.120149635875677,
+ 0.0
+ ],
+ [
+ 113.555729320253079,
+ 22.120036098088594,
+ 0.0
+ ],
+ [
+ 113.555828161774173,
+ 22.119904569677487,
+ 0.0
+ ],
+ [
+ 113.555900989002055,
+ 22.119759047109877,
+ 0.0
+ ],
+ [
+ 113.55594558918294,
+ 22.119603952050639,
+ 0.0
+ ],
+ [
+ 113.555960607250057,
+ 22.119443997007679,
+ 0.0
+ ],
+ [
+ 113.555945586986155,
+ 22.119284042142056,
+ 0.0
+ ],
+ [
+ 113.55590098487346,
+ 22.119128947593399,
+ 0.0
+ ],
+ [
+ 113.555828156211732,
+ 22.118983425808064,
+ 0.0
+ ],
+ [
+ 113.555729313927699,
+ 22.118851898356574,
+ 0.0
+ ],
+ [
+ 113.555607461328563,
+ 22.11873836159068,
+ 0.0
+ ],
+ [
+ 113.555466300843861,
+ 22.118646265221496,
+ 0.0
+ ],
+ [
+ 113.555310121529104,
+ 22.118578407507304,
+ 0.0
+ ],
+ [
+ 113.555143668749039,
+ 22.118536850235134,
+ 0.0
+ ],
+ [
+ 113.554972,
+ 22.118522856078616,
+ 0.0
+ ],
+ [
+ 113.554800331250973,
+ 22.118536850235134,
+ 0.0
+ ],
+ [
+ 113.554633878470909,
+ 22.118578407507304,
+ 0.0
+ ],
+ [
+ 113.554477699156152,
+ 22.118646265221496,
+ 0.0
+ ],
+ [
+ 113.55433653867145,
+ 22.11873836159068,
+ 0.0
+ ],
+ [
+ 113.554214686072314,
+ 22.118851898356574,
+ 0.0
+ ],
+ [
+ 113.554115843788281,
+ 22.118983425808064,
+ 0.0
+ ],
+ [
+ 113.554043015126553,
+ 22.119128947593399,
+ 0.0
+ ],
+ [
+ 113.553998413013858,
+ 22.119284042142056,
+ 0.0
+ ],
+ [
+ 113.553983392749956,
+ 22.119443997007679,
+ 0.0
+ ],
+ [
+ 113.553998410817073,
+ 22.119603952050639,
+ 0.0
+ ],
+ [
+ 113.554043010997958,
+ 22.119759047109877,
+ 0.0
+ ],
+ [
+ 113.55411583822584,
+ 22.119904569677487,
+ 0.0
+ ],
+ [
+ 113.554214679746934,
+ 22.120036098088594,
+ 0.0
+ ],
+ [
+ 113.554336532346085,
+ 22.120149635875677,
+ 0.0
+ ],
+ [
+ 113.554477693593711,
+ 22.120241733204463,
+ 0.0
+ ],
+ [
+ 113.554633874342315,
+ 22.120309591700931,
+ 0.0
+ ],
+ [
+ 113.554800329054189,
+ 22.120351149483707,
+ 0.0
+ ],
+ [
+ 113.554972,
+ 22.120365143817544,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042619,
+ "name": "(Cap. 448G RFZ) Marine Police Regional Headquarters and Marine Police Harbour Divisional Headquarters",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2856535992337",
+ "lng": "114.224994989803",
+ "radius": 105,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.225011,
+ 22.28614,
+ 0.0
+ ],
+ [
+ 114.225239,
+ 22.286355,
+ 0.0
+ ],
+ [
+ 114.225091,
+ 22.286509,
+ 0.0
+ ],
+ [
+ 114.224526,
+ 22.286048,
+ 0.0
+ ],
+ [
+ 114.224259,
+ 22.286298,
+ 0.0
+ ],
+ [
+ 114.224199,
+ 22.286247,
+ 0.0
+ ],
+ [
+ 114.224631,
+ 22.285713,
+ 0.0
+ ],
+ [
+ 114.22531,
+ 22.285074,
+ 0.0
+ ],
+ [
+ 114.225433,
+ 22.284799,
+ 0.0
+ ],
+ [
+ 114.225765,
+ 22.285106,
+ 0.0
+ ],
+ [
+ 114.225523,
+ 22.285112,
+ 0.0
+ ],
+ [
+ 114.226017,
+ 22.285636,
+ 0.0
+ ],
+ [
+ 114.225848,
+ 22.285766,
+ 0.0
+ ],
+ [
+ 114.225306,
+ 22.285317,
+ 0.0
+ ],
+ [
+ 114.225056,
+ 22.285606,
+ 0.0
+ ],
+ [
+ 114.225401,
+ 22.285906,
+ 0.0
+ ],
+ [
+ 114.225332,
+ 22.285964,
+ 0.0
+ ],
+ [
+ 114.225025,
+ 22.285626,
+ 0.0
+ ],
+ [
+ 114.224748,
+ 22.28584,
+ 0.0
+ ],
+ [
+ 114.225011,
+ 22.28614,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042636,
+ "name": "(Cap. 448G RFZ) Kowloon West Regional Headquarters",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.3232720002966",
+ "lng": "114.183374998645",
+ "radius": 74,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.182835,
+ 22.323507,
+ 0.0
+ ],
+ [
+ 114.182927,
+ 22.323335,
+ 0.0
+ ],
+ [
+ 114.182848,
+ 22.323299,
+ 0.0
+ ],
+ [
+ 114.18292,
+ 22.323164,
+ 0.0
+ ],
+ [
+ 114.182823,
+ 22.323119,
+ 0.0
+ ],
+ [
+ 114.183064,
+ 22.322664,
+ 0.0
+ ],
+ [
+ 114.183279,
+ 22.322763,
+ 0.0
+ ],
+ [
+ 114.183293,
+ 22.322799,
+ 0.0
+ ],
+ [
+ 114.183363,
+ 22.322833,
+ 0.0
+ ],
+ [
+ 114.184067,
+ 22.323164,
+ 0.0
+ ],
+ [
+ 114.18409,
+ 22.32319,
+ 0.0
+ ],
+ [
+ 114.184087,
+ 22.323224,
+ 0.0
+ ],
+ [
+ 114.184008,
+ 22.323369,
+ 0.0
+ ],
+ [
+ 114.183967,
+ 22.323434,
+ 0.0
+ ],
+ [
+ 114.183705,
+ 22.323862,
+ 0.0
+ ],
+ [
+ 114.183686,
+ 22.32388,
+ 0.0
+ ],
+ [
+ 114.18366,
+ 22.323887,
+ 0.0
+ ],
+ [
+ 114.183633,
+ 22.323882,
+ 0.0
+ ],
+ [
+ 114.182835,
+ 22.323507,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002471,
+ "name": "(Cap. 448G RFZ) 1A, Cornwall Street",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.3398864994742",
+ "lng": "114.176922913777",
+ "radius": 26,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.176680198450015,
+ 22.339968685309,
+ 0.0
+ ],
+ [
+ 114.176769477456006,
+ 22.339693975374196,
+ 0.0
+ ],
+ [
+ 114.177165628816994,
+ 22.339804313277995,
+ 0.0
+ ],
+ [
+ 114.177164861296006,
+ 22.339944353967674,
+ 0.0
+ ],
+ [
+ 114.176680198450015,
+ 22.339968685309,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045074,
+ "name": "路環發電廠",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.137775",
+ "lng": "113.578611",
+ "radius": 160,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.578611,
+ 22.139219928189409,
+ 0.0
+ ],
+ [
+ 113.578880323575333,
+ 22.139197976263162,
+ 0.0
+ ],
+ [
+ 113.579141463645982,
+ 22.139132787502287,
+ 0.0
+ ],
+ [
+ 113.579386485388355,
+ 22.139026342691047,
+ 0.0
+ ],
+ [
+ 113.579607943781454,
+ 22.138881876188101,
+ 0.0
+ ],
+ [
+ 113.579799109839286,
+ 22.138703777641638,
+ 0.0
+ ],
+ [
+ 113.579954175077944,
+ 22.138497458599364,
+ 0.0
+ ],
+ [
+ 113.580068428003386,
+ 22.1382691880676,
+ 0.0
+ ],
+ [
+ 113.58013839725767,
+ 22.138025902017866,
+ 0.0
+ ],
+ [
+ 113.580161957075106,
+ 22.137774992630384,
+ 0.0
+ ],
+ [
+ 113.580138391846646,
+ 22.13752408367964,
+ 0.0
+ ],
+ [
+ 113.580068417833985,
+ 22.137280798887417,
+ 0.0
+ ],
+ [
+ 113.579954161376719,
+ 22.13705253028229,
+ 0.0
+ ],
+ [
+ 113.579799094258846,
+ 22.136846213603388,
+ 0.0
+ ],
+ [
+ 113.579607928201014,
+ 22.136668117571972,
+ 0.0
+ ],
+ [
+ 113.579386471687144,
+ 22.136523653432377,
+ 0.0
+ ],
+ [
+ 113.579141453476566,
+ 22.136417210547769,
+ 0.0
+ ],
+ [
+ 113.578880318164309,
+ 22.136352023044424,
+ 0.0
+ ],
+ [
+ 113.578611,
+ 22.136330071554902,
+ 0.0
+ ],
+ [
+ 113.578341681835681,
+ 22.136352023044424,
+ 0.0
+ ],
+ [
+ 113.578080546523424,
+ 22.136417210547769,
+ 0.0
+ ],
+ [
+ 113.577835528312846,
+ 22.136523653432377,
+ 0.0
+ ],
+ [
+ 113.577614071798976,
+ 22.136668117571972,
+ 0.0
+ ],
+ [
+ 113.577422905741145,
+ 22.136846213603388,
+ 0.0
+ ],
+ [
+ 113.577267838623271,
+ 22.13705253028229,
+ 0.0
+ ],
+ [
+ 113.577153582166005,
+ 22.137280798887417,
+ 0.0
+ ],
+ [
+ 113.577083608153345,
+ 22.13752408367964,
+ 0.0
+ ],
+ [
+ 113.577060042924884,
+ 22.137774992630384,
+ 0.0
+ ],
+ [
+ 113.57708360274232,
+ 22.138025902017866,
+ 0.0
+ ],
+ [
+ 113.577153571996604,
+ 22.1382691880676,
+ 0.0
+ ],
+ [
+ 113.577267824922046,
+ 22.138497458599364,
+ 0.0
+ ],
+ [
+ 113.577422890160705,
+ 22.138703777641638,
+ 0.0
+ ],
+ [
+ 113.577614056218536,
+ 22.138881876188101,
+ 0.0
+ ],
+ [
+ 113.577835514611635,
+ 22.139026342691047,
+ 0.0
+ ],
+ [
+ 113.578080536354008,
+ 22.139132787502287,
+ 0.0
+ ],
+ [
+ 113.578341676424657,
+ 22.139197976263162,
+ 0.0
+ ],
+ [
+ 113.578611,
+ 22.139219928189409,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002440,
+ "name": "(Cap. 448G RFZ) Justice Place",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2790886826733",
+ "lng": "114.158613159227",
+ "radius": 139,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.157525827317002,
+ 22.279833514343185,
+ 0.0
+ ],
+ [
+ 114.158836313247008,
+ 22.278612823638497,
+ 0.0
+ ],
+ [
+ 114.159549682462995,
+ 22.278215286567001,
+ 0.0
+ ],
+ [
+ 114.159700479554999,
+ 22.278343843764404,
+ 0.0
+ ],
+ [
+ 114.159447110805999,
+ 22.2795810432746,
+ 0.0
+ ],
+ [
+ 114.158663244688967,
+ 22.279914470680076,
+ 0.0
+ ],
+ [
+ 114.157913224759,
+ 22.280110332724217,
+ 0.0
+ ],
+ [
+ 114.157525827317002,
+ 22.279833514343185,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002476,
+ "name": "(Cap. 448G RFZ) Shek Kong Village",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4287163314717",
+ "lng": "114.105078739184",
+ "radius": 223,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.103849136842015,
+ 22.428741526643307,
+ 0.0
+ ],
+ [
+ 114.10388182053002,
+ 22.428578830445897,
+ 0.0
+ ],
+ [
+ 114.104792770620975,
+ 22.42736454199639,
+ 0.0
+ ],
+ [
+ 114.105249446363004,
+ 22.426857331989076,
+ 0.0
+ ],
+ [
+ 114.105502549586006,
+ 22.426741835886709,
+ 0.0
+ ],
+ [
+ 114.106514862205032,
+ 22.429478918083305,
+ 0.0
+ ],
+ [
+ 114.104814133644993,
+ 22.430690942182515,
+ 0.0
+ ],
+ [
+ 114.104654916726005,
+ 22.430690825951093,
+ 0.0
+ ],
+ [
+ 114.103849136842015,
+ 22.428741526643307,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8841,
+ "name": "Zhuhai Airport",
+ "country": "CN",
+ "city": "Zhuhai",
+ "height": 0,
+ "level": 2,
+ "lat": "21.9758033437682",
+ "lng": "113.342967915171",
+ "radius": 13877,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.298671363,
+ 21.966841334600002,
+ 0.0
+ ],
+ [
+ 113.225331428,
+ 21.915225171900001,
+ 0.0
+ ],
+ [
+ 113.276895014,
+ 21.8670922455,
+ 0.0
+ ],
+ [
+ 113.33525517299999,
+ 21.9337633998,
+ 0.0
+ ],
+ [
+ 113.366669371,
+ 21.928393386300002,
+ 0.0
+ ],
+ [
+ 113.400409348,
+ 21.938575628500001,
+ 0.0
+ ],
+ [
+ 113.450603861,
+ 21.986232297800001,
+ 0.0
+ ],
+ [
+ 113.460169535,
+ 22.01792728,
+ 0.0
+ ],
+ [
+ 113.45802911299999,
+ 22.034406494100001,
+ 0.0
+ ],
+ [
+ 113.45135945,
+ 22.0498104668,
+ 0.0
+ ],
+ [
+ 113.298671363,
+ 21.966841334600002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8841,
+ "name": "Zhuhai Airport",
+ "country": "CN",
+ "city": "Zhuhai",
+ "height": 0,
+ "level": 2,
+ "lat": "22.0369271890554",
+ "lng": "113.410581172372",
+ "radius": 13922,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.526345678,
+ 22.101491424199999,
+ 0.0
+ ],
+ [
+ 113.476471617,
+ 22.1462460214,
+ 0.0
+ ],
+ [
+ 113.41978298799999,
+ 22.07957622,
+ 0.0
+ ],
+ [
+ 113.39024874499999,
+ 22.084494278699999,
+ 0.0
+ ],
+ [
+ 113.372605985,
+ 22.0816257209,
+ 0.0
+ ],
+ [
+ 113.356367009,
+ 22.074621937700002,
+ 0.0
+ ],
+ [
+ 113.312637358,
+ 22.040626584200002,
+ 0.0
+ ],
+ [
+ 113.295336585,
+ 22.015406572100002,
+ 0.0
+ ],
+ [
+ 113.291811585,
+ 21.999133259600001,
+ 0.0
+ ],
+ [
+ 113.292949553,
+ 21.9825685938,
+ 0.0
+ ],
+ [
+ 113.298671363,
+ 21.966841334600002,
+ 0.0
+ ],
+ [
+ 113.45135945,
+ 22.0498104668,
+ 0.0
+ ],
+ [
+ 113.526345678,
+ 22.101491424199999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8841,
+ "name": "Zhuhai Airport",
+ "country": "CN",
+ "city": "Zhuhai",
+ "height": 120,
+ "level": 2,
+ "lat": "22.0065379103475",
+ "lng": "113.377232730512",
+ "radius": 24094,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.46853743299999,
+ 22.2060323822,
+ 120.0
+ ],
+ [
+ 113.59962069,
+ 22.073334212,
+ 120.0
+ ],
+ [
+ 113.285745547,
+ 21.807165972899998,
+ 120.0
+ ],
+ [
+ 113.154908173,
+ 21.939864143400001,
+ 120.0
+ ],
+ [
+ 113.46853743299999,
+ 22.2060323822,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045134,
+ "name": "小潭山導航台",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.161556",
+ "lng": "113.548611",
+ "radius": 107,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.548611,
+ 22.162522292939535,
+ 0.0
+ ],
+ [
+ 113.548791139801338,
+ 22.162507612679885,
+ 0.0
+ ],
+ [
+ 113.548965806036648,
+ 22.16246401796203,
+ 0.0
+ ],
+ [
+ 113.5491296914646,
+ 22.16239283341481,
+ 0.0
+ ],
+ [
+ 113.549277816438035,
+ 22.162296221983596,
+ 0.0
+ ],
+ [
+ 113.549405680216637,
+ 22.162177119205573,
+ 0.0
+ ],
+ [
+ 113.549509397724194,
+ 22.162039144009203,
+ 0.0
+ ],
+ [
+ 113.549585817594689,
+ 22.161886488748738,
+ 0.0
+ ],
+ [
+ 113.549632617920381,
+ 22.161723791815948,
+ 0.0
+ ],
+ [
+ 113.549648376793215,
+ 22.161555996700201,
+ 0.0
+ ],
+ [
+ 113.549632615497146,
+ 22.161388201780017,
+ 0.0
+ ],
+ [
+ 113.54958581304048,
+ 22.16122550541029,
+ 0.0
+ ],
+ [
+ 113.54950939158833,
+ 22.161072851012495,
+ 0.0
+ ],
+ [
+ 113.549405673239193,
+ 22.160934876874343,
+ 0.0
+ ],
+ [
+ 113.549277809460591,
+ 22.160815775222456,
+ 0.0
+ ],
+ [
+ 113.549129685328737,
+ 22.160719164849457,
+ 0.0
+ ],
+ [
+ 113.548965801482439,
+ 22.160647981164907,
+ 0.0
+ ],
+ [
+ 113.548791137378103,
+ 22.16060438701011,
+ 0.0
+ ],
+ [
+ 113.548611,
+ 22.160589706946013,
+ 0.0
+ ],
+ [
+ 113.548430862621885,
+ 22.16060438701011,
+ 0.0
+ ],
+ [
+ 113.548256198517549,
+ 22.160647981164907,
+ 0.0
+ ],
+ [
+ 113.548092314671251,
+ 22.160719164849457,
+ 0.0
+ ],
+ [
+ 113.547944190539397,
+ 22.160815775222456,
+ 0.0
+ ],
+ [
+ 113.547816326760795,
+ 22.160934876874343,
+ 0.0
+ ],
+ [
+ 113.547712608411658,
+ 22.161072851012495,
+ 0.0
+ ],
+ [
+ 113.547636186959508,
+ 22.16122550541029,
+ 0.0
+ ],
+ [
+ 113.547589384502842,
+ 22.161388201780017,
+ 0.0
+ ],
+ [
+ 113.547573623206773,
+ 22.161555996700201,
+ 0.0
+ ],
+ [
+ 113.547589382079607,
+ 22.161723791815948,
+ 0.0
+ ],
+ [
+ 113.547636182405299,
+ 22.161886488748738,
+ 0.0
+ ],
+ [
+ 113.547712602275794,
+ 22.162039144009203,
+ 0.0
+ ],
+ [
+ 113.547816319783351,
+ 22.162177119205573,
+ 0.0
+ ],
+ [
+ 113.547944183561953,
+ 22.162296221983596,
+ 0.0
+ ],
+ [
+ 113.548092308535388,
+ 22.16239283341481,
+ 0.0
+ ],
+ [
+ 113.54825619396334,
+ 22.16246401796203,
+ 0.0
+ ],
+ [
+ 113.54843086019865,
+ 22.162507612679885,
+ 0.0
+ ],
+ [
+ 113.548611,
+ 22.162522292939535,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001221,
+ "name": "Sha Tin Racecourse",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "22.3988989520024",
+ "lng": "114.205618877645",
+ "radius": 879,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.203202724456801,
+ 22.395237347454508,
+ 0.0
+ ],
+ [
+ 114.20249462127687,
+ 22.395812685537123,
+ 0.0
+ ],
+ [
+ 114.20003674244073,
+ 22.392961221746589,
+ 0.0
+ ],
+ [
+ 114.199147224426284,
+ 22.393729553598526,
+ 0.0
+ ],
+ [
+ 114.204039573669448,
+ 22.401784157448269,
+ 0.0
+ ],
+ [
+ 114.209446907043471,
+ 22.405969986480681,
+ 0.0
+ ],
+ [
+ 114.212772846221938,
+ 22.403232349527947,
+ 0.0
+ ],
+ [
+ 114.205573797225966,
+ 22.395673811045498,
+ 0.0
+ ],
+ [
+ 114.203374385833754,
+ 22.393352602579867,
+ 0.0
+ ],
+ [
+ 114.203202724456801,
+ 22.395237347454508,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045099,
+ "name": "九澳油庫",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.211361",
+ "lng": "113.540472",
+ "radius": 375,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.540472,
+ 22.214747519480429,
+ 0.0
+ ],
+ [
+ 113.541103564316728,
+ 22.214696069425322,
+ 0.0
+ ],
+ [
+ 113.541715937524444,
+ 22.214543282652564,
+ 0.0
+ ],
+ [
+ 113.542290511788778,
+ 22.214293801823768,
+ 0.0
+ ],
+ [
+ 113.54280982808244,
+ 22.213955207767004,
+ 0.0
+ ],
+ [
+ 113.543258106774999,
+ 22.213537789079286,
+ 0.0
+ ],
+ [
+ 113.543621727145407,
+ 22.213054229441877,
+ 0.0
+ ],
+ [
+ 113.543889641240568,
+ 22.212519222157542,
+ 0.0
+ ],
+ [
+ 113.544053709505448,
+ 22.211949023631099,
+ 0.0
+ ],
+ [
+ 113.544108947993152,
+ 22.211360959368967,
+ 0.0
+ ],
+ [
+ 113.544053679656912,
+ 22.210772897514719,
+ 0.0
+ ],
+ [
+ 113.54388958514366,
+ 22.21020270592151,
+ 0.0
+ ],
+ [
+ 113.543621651566255,
+ 22.209667709259516,
+ 0.0
+ ],
+ [
+ 113.543258020829569,
+ 22.209184162652328,
+ 0.0
+ ],
+ [
+ 113.542809742136996,
+ 22.208766757831096,
+ 0.0
+ ],
+ [
+ 113.542290436209626,
+ 22.208428176804556,
+ 0.0
+ ],
+ [
+ 113.54171588142755,
+ 22.208178706598108,
+ 0.0
+ ],
+ [
+ 113.541103534468192,
+ 22.208025926758584,
+ 0.0
+ ],
+ [
+ 113.540472,
+ 22.207974479111368,
+ 0.0
+ ],
+ [
+ 113.539840465531796,
+ 22.208025926758584,
+ 0.0
+ ],
+ [
+ 113.539228118572439,
+ 22.208178706598108,
+ 0.0
+ ],
+ [
+ 113.538653563790362,
+ 22.208428176804556,
+ 0.0
+ ],
+ [
+ 113.538134257862993,
+ 22.208766757831096,
+ 0.0
+ ],
+ [
+ 113.537685979170419,
+ 22.209184162652328,
+ 0.0
+ ],
+ [
+ 113.537322348433733,
+ 22.209667709259516,
+ 0.0
+ ],
+ [
+ 113.537054414856328,
+ 22.21020270592151,
+ 0.0
+ ],
+ [
+ 113.536890320343076,
+ 22.210772897514719,
+ 0.0
+ ],
+ [
+ 113.536835052006836,
+ 22.211360959368967,
+ 0.0
+ ],
+ [
+ 113.53689029049454,
+ 22.211949023631099,
+ 0.0
+ ],
+ [
+ 113.53705435875942,
+ 22.212519222157542,
+ 0.0
+ ],
+ [
+ 113.537322272854581,
+ 22.213054229441877,
+ 0.0
+ ],
+ [
+ 113.537685893224989,
+ 22.213537789079286,
+ 0.0
+ ],
+ [
+ 113.538134171917548,
+ 22.213955207767004,
+ 0.0
+ ],
+ [
+ 113.53865348821121,
+ 22.214293801823768,
+ 0.0
+ ],
+ [
+ 113.539228062475544,
+ 22.214543282652564,
+ 0.0
+ ],
+ [
+ 113.53984043568326,
+ 22.214696069425322,
+ 0.0
+ ],
+ [
+ 113.540472,
+ 22.214747519480429,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002437,
+ "name": "(Cap. 448G RFZ) Police Headquarters",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.2787399248637",
+ "lng": "114.168063823891",
+ "radius": 113,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.167203783931114,
+ 22.278106951175239,
+ 0.0
+ ],
+ [
+ 114.168365669319599,
+ 22.278022573070249,
+ 0.0
+ ],
+ [
+ 114.168958681482692,
+ 22.279310642102384,
+ 0.0
+ ],
+ [
+ 114.168923871636295,
+ 22.279372894023322,
+ 0.0
+ ],
+ [
+ 114.168063315150121,
+ 22.279523615464743,
+ 0.0
+ ],
+ [
+ 114.167225811544284,
+ 22.27852506117215,
+ 0.0
+ ],
+ [
+ 114.167203783931114,
+ 22.278106951175239,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 10706,
+ "name": "Shek Kong Barracks",
+ "country": "HK",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "22.43727",
+ "lng": "114.0804",
+ "radius": 989,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.0804,
+ 22.446201128887811,
+ 0.0
+ ],
+ [
+ 114.082068394807436,
+ 22.446065436426554,
+ 0.0
+ ],
+ [
+ 114.083686086791715,
+ 22.445662482754116,
+ 0.0
+ ],
+ [
+ 114.08520391485466,
+ 22.445004513615309,
+ 0.0
+ ],
+ [
+ 114.086575754365185,
+ 22.444111524442061,
+ 0.0
+ ],
+ [
+ 114.087759919380076,
+ 22.443010652395188,
+ 0.0
+ ],
+ [
+ 114.088720429647367,
+ 22.441735351316417,
+ 0.0
+ ],
+ [
+ 114.089428103847453,
+ 22.440324374719221,
+ 0.0
+ ],
+ [
+ 114.089861445854069,
+ 22.438820597784062,
+ 0.0
+ ],
+ [
+ 114.0900072971355,
+ 22.437269714211237,
+ 0.0
+ ],
+ [
+ 114.089861235562694,
+ 22.435718847575885,
+ 0.0
+ ],
+ [
+ 114.089427708628932,
+ 22.434215119410201,
+ 0.0
+ ],
+ [
+ 114.088719897170932,
+ 22.43280421753219,
+ 0.0
+ ],
+ [
+ 114.087759313870194,
+ 22.431529008110072,
+ 0.0
+ ],
+ [
+ 114.086575148855303,
+ 22.430428233602171,
+ 0.0
+ ],
+ [
+ 114.085203382378211,
+ 22.429535336085568,
+ 0.0
+ ],
+ [
+ 114.083685691573208,
+ 22.428877441665975,
+ 0.0
+ ],
+ [
+ 114.082068184516061,
+ 22.428474536763012,
+ 0.0
+ ],
+ [
+ 114.0804,
+ 22.428338861239222,
+ 0.0
+ ],
+ [
+ 114.078731815483934,
+ 22.428474536763012,
+ 0.0
+ ],
+ [
+ 114.077114308426786,
+ 22.428877441665975,
+ 0.0
+ ],
+ [
+ 114.075596617621784,
+ 22.429535336085568,
+ 0.0
+ ],
+ [
+ 114.074224851144692,
+ 22.430428233602171,
+ 0.0
+ ],
+ [
+ 114.073040686129801,
+ 22.431529008110072,
+ 0.0
+ ],
+ [
+ 114.072080102829062,
+ 22.43280421753219,
+ 0.0
+ ],
+ [
+ 114.071372291371063,
+ 22.434215119410201,
+ 0.0
+ ],
+ [
+ 114.070938764437301,
+ 22.435718847575885,
+ 0.0
+ ],
+ [
+ 114.070792702864495,
+ 22.437269714211237,
+ 0.0
+ ],
+ [
+ 114.070938554145926,
+ 22.438820597784062,
+ 0.0
+ ],
+ [
+ 114.071371896152542,
+ 22.440324374719221,
+ 0.0
+ ],
+ [
+ 114.072079570352628,
+ 22.441735351316417,
+ 0.0
+ ],
+ [
+ 114.073040080619919,
+ 22.443010652395188,
+ 0.0
+ ],
+ [
+ 114.074224245634809,
+ 22.444111524442061,
+ 0.0
+ ],
+ [
+ 114.075596085145335,
+ 22.445004513615309,
+ 0.0
+ ],
+ [
+ 114.077113913208279,
+ 22.445662482754116,
+ 0.0
+ ],
+ [
+ 114.078731605192559,
+ 22.446065436426554,
+ 0.0
+ ],
+ [
+ 114.0804,
+ 22.446201128887811,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045081,
+ "name": "澳門國際機場",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.1493527964634",
+ "lng": "113.591496275854",
+ "radius": 4805,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.569435495452467,
+ 22.187438387481663,
+ 0.0
+ ],
+ [
+ 113.582600952684402,
+ 22.191266505206443,
+ 0.0
+ ],
+ [
+ 113.613545120537424,
+ 22.111264240902059,
+ 0.0
+ ],
+ [
+ 113.599577962873298,
+ 22.107211017726115,
+ 0.0
+ ],
+ [
+ 113.569435495452467,
+ 22.187438387481663,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045125,
+ "name": "中央人民政府駐澳門特別行政區聯絡辦公室",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.194472",
+ "lng": "113.549528",
+ "radius": 82,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.549528,
+ 22.195212520581926,
+ 0.0
+ ],
+ [
+ 113.549666082994889,
+ 22.195201270352317,
+ 0.0
+ ],
+ [
+ 113.549799970343514,
+ 22.195167861501215,
+ 0.0
+ ],
+ [
+ 113.549925593889995,
+ 22.195113309154586,
+ 0.0
+ ],
+ [
+ 113.550039136584417,
+ 22.195039270880788,
+ 0.0
+ ],
+ [
+ 113.550137148467158,
+ 22.194947996323389,
+ 0.0
+ ],
+ [
+ 113.550216651496726,
+ 22.194842258843501,
+ 0.0
+ ],
+ [
+ 113.550275230036178,
+ 22.194725271249052,
+ 0.0
+ ],
+ [
+ 113.550311104248195,
+ 22.194600588171781,
+ 0.0
+ ],
+ [
+ 113.550323184169571,
+ 22.194471998058855,
+ 0.0
+ ],
+ [
+ 113.550311102822349,
+ 22.194343408060952,
+ 0.0
+ ],
+ [
+ 113.550275227356465,
+ 22.194218725314922,
+ 0.0
+ ],
+ [
+ 113.550216647886373,
+ 22.194101738227953,
+ 0.0
+ ],
+ [
+ 113.550137144361614,
+ 22.193996001370596,
+ 0.0
+ ],
+ [
+ 113.550039132478872,
+ 22.193904727475658,
+ 0.0
+ ],
+ [
+ 113.549925590279628,
+ 22.193830689824377,
+ 0.0
+ ],
+ [
+ 113.549799967663816,
+ 22.193776137985232,
+ 0.0
+ ],
+ [
+ 113.549666081569043,
+ 22.193742729465356,
+ 0.0
+ ],
+ [
+ 113.549528,
+ 22.193731479350784,
+ 0.0
+ ],
+ [
+ 113.549389918430947,
+ 22.193742729465356,
+ 0.0
+ ],
+ [
+ 113.549256032336174,
+ 22.193776137985232,
+ 0.0
+ ],
+ [
+ 113.549130409720362,
+ 22.193830689824377,
+ 0.0
+ ],
+ [
+ 113.549016867521118,
+ 22.193904727475658,
+ 0.0
+ ],
+ [
+ 113.548918855638377,
+ 22.193996001370596,
+ 0.0
+ ],
+ [
+ 113.548839352113617,
+ 22.194101738227953,
+ 0.0
+ ],
+ [
+ 113.548780772643525,
+ 22.194218725314922,
+ 0.0
+ ],
+ [
+ 113.548744897177642,
+ 22.194343408060952,
+ 0.0
+ ],
+ [
+ 113.548732815830419,
+ 22.194471998058855,
+ 0.0
+ ],
+ [
+ 113.548744895751796,
+ 22.194600588171781,
+ 0.0
+ ],
+ [
+ 113.548780769963813,
+ 22.194725271249052,
+ 0.0
+ ],
+ [
+ 113.548839348503265,
+ 22.194842258843501,
+ 0.0
+ ],
+ [
+ 113.548918851532832,
+ 22.194947996323389,
+ 0.0
+ ],
+ [
+ 113.549016863415574,
+ 22.195039270880788,
+ 0.0
+ ],
+ [
+ 113.549130406109995,
+ 22.195113309154586,
+ 0.0
+ ],
+ [
+ 113.549256029656476,
+ 22.195167861501215,
+ 0.0
+ ],
+ [
+ 113.549389917005101,
+ 22.195201270352317,
+ 0.0
+ ],
+ [
+ 113.549528,
+ 22.195212520581926,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001392,
+ "name": "ShenZhen NanTou Heliport",
+ "country": "CN",
+ "city": "ShenZhen",
+ "height": 500,
+ "level": 2,
+ "lat": "22.566573",
+ "lng": "113.924541",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.924541,
+ 23.018076466661881,
+ 500.0
+ ],
+ [
+ 114.009234954038888,
+ 23.011194930689939,
+ 500.0
+ ],
+ [
+ 114.091330592314918,
+ 22.990761436071502,
+ 500.0
+ ],
+ [
+ 114.168311630318868,
+ 22.95740265600497,
+ 500.0
+ ],
+ [
+ 114.23782296119056,
+ 22.912141058752329,
+ 500.0
+ ],
+ [
+ 114.297744173045345,
+ 22.856362738673873,
+ 500.0
+ ],
+ [
+ 114.346254962057529,
+ 22.791773961855551,
+ 500.0
+ ],
+ [
+ 114.381890340831561,
+ 22.72034791641984,
+ 500.0
+ ],
+ [
+ 114.403583992018454,
+ 22.644263460973697,
+ 500.0
+ ],
+ [
+ 114.410698610123447,
+ 22.565837890758885,
+ 500.0
+ ],
+ [
+ 114.403042577683848,
+ 22.487455886204774,
+ 500.0
+ ],
+ [
+ 114.380872807403691,
+ 22.411496873956818,
+ 500.0
+ ],
+ [
+ 114.344884027873164,
+ 22.340263021178298,
+ 500.0
+ ],
+ [
+ 114.296185183139912,
+ 22.275910007732751,
+ 500.0
+ ],
+ [
+ 114.23626394886027,
+ 22.220382586850281,
+ 500.0
+ ],
+ [
+ 114.166940639352759,
+ 22.175356762471104,
+ 500.0
+ ],
+ [
+ 114.090312994317216,
+ 22.142190189617647,
+ 500.0
+ ],
+ [
+ 114.008693497559307,
+ 22.121882150997635,
+ 500.0
+ ],
+ [
+ 113.924541,
+ 22.115044185741599,
+ 500.0
+ ],
+ [
+ 113.840388502440703,
+ 22.121882150997635,
+ 500.0
+ ],
+ [
+ 113.758769005682794,
+ 22.142190189617647,
+ 500.0
+ ],
+ [
+ 113.68214136064725,
+ 22.175356762471104,
+ 500.0
+ ],
+ [
+ 113.61281805113974,
+ 22.220382586850281,
+ 500.0
+ ],
+ [
+ 113.552896816860098,
+ 22.275910007732751,
+ 500.0
+ ],
+ [
+ 113.504197972126846,
+ 22.340263021178298,
+ 500.0
+ ],
+ [
+ 113.468209192596319,
+ 22.411496873956818,
+ 500.0
+ ],
+ [
+ 113.446039422316161,
+ 22.487455886204774,
+ 500.0
+ ],
+ [
+ 113.438383389876563,
+ 22.565837890758885,
+ 500.0
+ ],
+ [
+ 113.445498007981556,
+ 22.644263460973697,
+ 500.0
+ ],
+ [
+ 113.467191659168449,
+ 22.72034791641984,
+ 500.0
+ ],
+ [
+ 113.502827037942481,
+ 22.791773961855551,
+ 500.0
+ ],
+ [
+ 113.551337826954665,
+ 22.856362738673873,
+ 500.0
+ ],
+ [
+ 113.61125903880945,
+ 22.912141058752329,
+ 500.0
+ ],
+ [
+ 113.680770369681142,
+ 22.95740265600497,
+ 500.0
+ ],
+ [
+ 113.757751407685092,
+ 22.990761436071502,
+ 500.0
+ ],
+ [
+ 113.839847045961122,
+ 23.011194930689939,
+ 500.0
+ ],
+ [
+ 113.924541,
+ 23.018076466661881,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002481,
+ "name": "(Cap. 448G RFZ) Shek Kong Village",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.4278803204623",
+ "lng": "114.106736688733",
+ "radius": 179,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.105502549586006,
+ 22.426741835886709,
+ 0.0
+ ],
+ [
+ 114.106517354469972,
+ 22.42659444302199,
+ 0.0
+ ],
+ [
+ 114.108087608580007,
+ 22.426936284708397,
+ 0.0
+ ],
+ [
+ 114.108265049366977,
+ 22.427104648357194,
+ 0.0
+ ],
+ [
+ 114.108234057724005,
+ 22.427314105973494,
+ 0.0
+ ],
+ [
+ 114.106514862205032,
+ 22.429478918083305,
+ 0.0
+ ],
+ [
+ 114.105502549586006,
+ 22.426741835886709,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000065,
+ "name": "岭澳核电站",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.60684",
+ "lng": "114.551182",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.551182,
+ 22.615870273807793,
+ 0.0
+ ],
+ [
+ 114.552871013044751,
+ 22.615733074847942,
+ 0.0
+ ],
+ [
+ 114.554508696485925,
+ 22.615325647477601,
+ 0.0
+ ],
+ [
+ 114.55604528152621,
+ 22.614660373440849,
+ 0.0
+ ],
+ [
+ 114.557434073413745,
+ 22.613757470229658,
+ 0.0
+ ],
+ [
+ 114.558632871009877,
+ 22.612644376366031,
+ 0.0
+ ],
+ [
+ 114.559605249459196,
+ 22.611354917181743,
+ 0.0
+ ],
+ [
+ 114.560321666939601,
+ 22.609928276505226,
+ 0.0
+ ],
+ [
+ 114.560760361864354,
+ 22.608407805566458,
+ 0.0
+ ],
+ [
+ 114.56090801332482,
+ 22.606839705372671,
+ 0.0
+ ],
+ [
+ 114.560760144800057,
+ 22.605271622640938,
+ 0.0
+ ],
+ [
+ 114.560321258992147,
+ 22.603751201982099,
+ 0.0
+ ],
+ [
+ 114.559604699833088,
+ 22.602324638338917,
+ 0.0
+ ],
+ [
+ 114.558632245998126,
+ 22.601035273650023,
+ 0.0
+ ],
+ [
+ 114.557433448401994,
+ 22.599922280346277,
+ 0.0
+ ],
+ [
+ 114.556044731900087,
+ 22.59901947163047,
+ 0.0
+ ],
+ [
+ 114.554508288538472,
+ 22.598354274627052,
+ 0.0
+ ],
+ [
+ 114.552870795980454,
+ 22.597946897536659,
+ 0.0
+ ],
+ [
+ 114.551182,
+ 22.597809716038846,
+ 0.0
+ ],
+ [
+ 114.549493204019541,
+ 22.597946897536659,
+ 0.0
+ ],
+ [
+ 114.547855711461523,
+ 22.598354274627052,
+ 0.0
+ ],
+ [
+ 114.546319268099907,
+ 22.59901947163047,
+ 0.0
+ ],
+ [
+ 114.544930551598,
+ 22.599922280346277,
+ 0.0
+ ],
+ [
+ 114.543731754001868,
+ 22.601035273650023,
+ 0.0
+ ],
+ [
+ 114.542759300166907,
+ 22.602324638338917,
+ 0.0
+ ],
+ [
+ 114.542042741007847,
+ 22.603751201982099,
+ 0.0
+ ],
+ [
+ 114.541603855199938,
+ 22.605271622640938,
+ 0.0
+ ],
+ [
+ 114.541455986675174,
+ 22.606839705372671,
+ 0.0
+ ],
+ [
+ 114.541603638135641,
+ 22.608407805566458,
+ 0.0
+ ],
+ [
+ 114.542042333060394,
+ 22.609928276505226,
+ 0.0
+ ],
+ [
+ 114.542758750540798,
+ 22.611354917181743,
+ 0.0
+ ],
+ [
+ 114.543731128990117,
+ 22.612644376366031,
+ 0.0
+ ],
+ [
+ 114.544929926586249,
+ 22.613757470229658,
+ 0.0
+ ],
+ [
+ 114.546318718473785,
+ 22.614660373440849,
+ 0.0
+ ],
+ [
+ 114.547855303514069,
+ 22.615325647477601,
+ 0.0
+ ],
+ [
+ 114.549492986955244,
+ 22.615733074847942,
+ 0.0
+ ],
+ [
+ 114.551182,
+ 22.615870273807793,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000310,
+ "name": "高雄市應變中心直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "22.593583",
+ "lng": "120.307278",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.307278,
+ 22.602613288712451,
+ 0.0
+ ],
+ [
+ 120.308966851234473,
+ 22.602476089531901,
+ 0.0
+ ],
+ [
+ 120.310604377789204,
+ 22.602068661505665,
+ 0.0
+ ],
+ [
+ 120.31214081564022,
+ 22.60140338639625,
+ 0.0
+ ],
+ [
+ 120.313529474512762,
+ 22.600500481725966,
+ 0.0
+ ],
+ [
+ 120.314728157312246,
+ 22.599387386058364,
+ 0.0
+ ],
+ [
+ 120.315700442671343,
+ 22.598097924777072,
+ 0.0
+ ],
+ [
+ 120.31641679159388,
+ 22.596671281771442,
+ 0.0
+ ],
+ [
+ 120.316855444571459,
+ 22.595150808339952,
+ 0.0
+ ],
+ [
+ 120.317003081963549,
+ 22.59358270556411,
+ 0.0
+ ],
+ [
+ 120.316855227669336,
+ 22.592014620238903,
+ 0.0
+ ],
+ [
+ 120.316416383951221,
+ 22.590494197054504,
+ 0.0
+ ],
+ [
+ 120.315699893455857,
+ 22.589067631031895,
+ 0.0
+ ],
+ [
+ 120.314727532767449,
+ 22.587778264184266,
+ 0.0
+ ],
+ [
+ 120.313528849967952,
+ 22.586665269010879,
+ 0.0
+ ],
+ [
+ 120.312140266424734,
+ 22.585762458774266,
+ 0.0
+ ],
+ [
+ 120.310603970146516,
+ 22.585097260647888,
+ 0.0
+ ],
+ [
+ 120.308966634332336,
+ 22.584689882868751,
+ 0.0
+ ],
+ [
+ 120.307278,
+ 22.584552701138833,
+ 0.0
+ ],
+ [
+ 120.305589365667657,
+ 22.584689882868751,
+ 0.0
+ ],
+ [
+ 120.303952029853477,
+ 22.585097260647888,
+ 0.0
+ ],
+ [
+ 120.302415733575259,
+ 22.585762458774266,
+ 0.0
+ ],
+ [
+ 120.301027150032041,
+ 22.586665269010879,
+ 0.0
+ ],
+ [
+ 120.299828467232544,
+ 22.587778264184266,
+ 0.0
+ ],
+ [
+ 120.298856106544136,
+ 22.589067631031895,
+ 0.0
+ ],
+ [
+ 120.298139616048772,
+ 22.590494197054504,
+ 0.0
+ ],
+ [
+ 120.297700772330657,
+ 22.592014620238903,
+ 0.0
+ ],
+ [
+ 120.297552918036445,
+ 22.59358270556411,
+ 0.0
+ ],
+ [
+ 120.297700555428534,
+ 22.595150808339952,
+ 0.0
+ ],
+ [
+ 120.298139208406113,
+ 22.596671281771442,
+ 0.0
+ ],
+ [
+ 120.29885555732865,
+ 22.598097924777072,
+ 0.0
+ ],
+ [
+ 120.299827842687748,
+ 22.599387386058364,
+ 0.0
+ ],
+ [
+ 120.301026525487231,
+ 22.600500481725966,
+ 0.0
+ ],
+ [
+ 120.302415184359774,
+ 22.60140338639625,
+ 0.0
+ ],
+ [
+ 120.303951622210789,
+ 22.602068661505665,
+ 0.0
+ ],
+ [
+ 120.30558914876552,
+ 22.602476089531901,
+ 0.0
+ ],
+ [
+ 120.307278,
+ 22.602613288712451,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001402,
+ "name": "Kaohsiung International Airport",
+ "country": "TW",
+ "city": "Kaohsiung City",
+ "height": 500,
+ "level": 2,
+ "lat": "22.577094",
+ "lng": "120.350183",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.350183,
+ 23.028596871319841,
+ 500.0
+ ],
+ [
+ 120.434883523134516,
+ 23.021715332939706,
+ 500.0
+ ],
+ [
+ 120.516985516152062,
+ 23.001281832210196,
+ 500.0
+ ],
+ [
+ 120.593972488520208,
+ 22.967923045507902,
+ 500.0
+ ],
+ [
+ 120.663489143534278,
+ 22.922661445871938,
+ 500.0
+ ],
+ [
+ 120.723414902571577,
+ 22.866883133330507,
+ 500.0
+ ],
+ [
+ 120.771929323829056,
+ 22.802294379670151,
+ 500.0
+ ],
+ [
+ 120.807567314836092,
+ 22.730868377850388,
+ 500.0
+ ],
+ [
+ 120.829262488587759,
+ 22.654783989633742,
+ 500.0
+ ],
+ [
+ 120.836377506260348,
+ 22.576358511103109,
+ 500.0
+ ],
+ [
+ 120.828720752815727,
+ 22.497976620849315,
+ 500.0
+ ],
+ [
+ 120.8065491772972,
+ 22.422017740952096,
+ 500.0
+ ],
+ [
+ 120.770557575715159,
+ 22.350784031562938,
+ 500.0
+ ],
+ [
+ 120.721854987081556,
+ 22.286431163668706,
+ 500.0
+ ],
+ [
+ 120.661929205600146,
+ 22.230903880575319,
+ 500.0
+ ],
+ [
+ 120.592600683575853,
+ 22.185878176213254,
+ 500.0
+ ],
+ [
+ 120.515967313987957,
+ 22.152711696508341,
+ 500.0
+ ],
+ [
+ 120.434341745181356,
+ 22.132403716908083,
+ 500.0
+ ],
+ [
+ 120.350183,
+ 22.125565771863776,
+ 500.0
+ ],
+ [
+ 120.266024254818646,
+ 22.132403716908083,
+ 500.0
+ ],
+ [
+ 120.184398686012045,
+ 22.152711696508341,
+ 500.0
+ ],
+ [
+ 120.10776531642415,
+ 22.185878176213254,
+ 500.0
+ ],
+ [
+ 120.038436794399857,
+ 22.230903880575319,
+ 500.0
+ ],
+ [
+ 119.978511012918446,
+ 22.286431163668706,
+ 500.0
+ ],
+ [
+ 119.929808424284843,
+ 22.350784031562938,
+ 500.0
+ ],
+ [
+ 119.893816822702803,
+ 22.422017740952096,
+ 500.0
+ ],
+ [
+ 119.871645247184276,
+ 22.497976620849315,
+ 500.0
+ ],
+ [
+ 119.863988493739654,
+ 22.576358511103109,
+ 500.0
+ ],
+ [
+ 119.871103511412244,
+ 22.654783989633742,
+ 500.0
+ ],
+ [
+ 119.89279868516391,
+ 22.730868377850388,
+ 500.0
+ ],
+ [
+ 119.928436676170946,
+ 22.802294379670151,
+ 500.0
+ ],
+ [
+ 119.976951097428426,
+ 22.866883133330507,
+ 500.0
+ ],
+ [
+ 120.036876856465724,
+ 22.922661445871938,
+ 500.0
+ ],
+ [
+ 120.106393511479794,
+ 22.967923045507902,
+ 500.0
+ ],
+ [
+ 120.183380483847941,
+ 23.001281832210196,
+ 500.0
+ ],
+ [
+ 120.265482476865486,
+ 23.021715332939706,
+ 500.0
+ ],
+ [
+ 120.350183,
+ 23.028596871319841,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 10059,
+ "name": "Pingtung Airport",
+ "country": "TW",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "22.691635",
+ "lng": "120.466101",
+ "radius": 3282,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.466101,
+ 22.721272007071605,
+ 0.0
+ ],
+ [
+ 120.471648564428037,
+ 22.720821659008944,
+ 0.0
+ ],
+ [
+ 120.477027462786282,
+ 22.719484306955955,
+ 0.0
+ ],
+ [
+ 120.482074166660212,
+ 22.717300610256988,
+ 0.0
+ ],
+ [
+ 120.486635265288697,
+ 22.714336957081255,
+ 0.0
+ ],
+ [
+ 120.490572135226543,
+ 22.710683442702141,
+ 0.0
+ ],
+ [
+ 120.493765156777314,
+ 22.70645112642034,
+ 0.0
+ ],
+ [
+ 120.496117348549291,
+ 22.701768651152907,
+ 0.0
+ ],
+ [
+ 120.497557309707858,
+ 22.696778329117215,
+ 0.0
+ ],
+ [
+ 120.498041381071502,
+ 22.691631813216379,
+ 0.0
+ ],
+ [
+ 120.497554960404116,
+ 22.686485486194616,
+ 0.0
+ ],
+ [
+ 120.496112933302385,
+ 22.681495708014548,
+ 0.0
+ ],
+ [
+ 120.493759208130967,
+ 22.676814065982317,
+ 0.0
+ ],
+ [
+ 120.4905653706751,
+ 22.672582771814898,
+ 0.0
+ ],
+ [
+ 120.486628500736828,
+ 22.668930345147274,
+ 0.0
+ ],
+ [
+ 120.482068218012799,
+ 22.665967714086086,
+ 0.0
+ ],
+ [
+ 120.477023047538154,
+ 22.663784850622591,
+ 0.0
+ ],
+ [
+ 120.471646215123499,
+ 22.662448042425467,
+ 0.0
+ ],
+ [
+ 120.466101,
+ 22.66199788324197,
+ 0.0
+ ],
+ [
+ 120.46055578487649,
+ 22.662448042425467,
+ 0.0
+ ],
+ [
+ 120.455178952461836,
+ 22.663784850622591,
+ 0.0
+ ],
+ [
+ 120.450133781987191,
+ 22.665967714086086,
+ 0.0
+ ],
+ [
+ 120.445573499263162,
+ 22.668930345147274,
+ 0.0
+ ],
+ [
+ 120.44163662932489,
+ 22.672582771814898,
+ 0.0
+ ],
+ [
+ 120.438442791869022,
+ 22.676814065982317,
+ 0.0
+ ],
+ [
+ 120.436089066697605,
+ 22.681495708014548,
+ 0.0
+ ],
+ [
+ 120.434647039595873,
+ 22.686485486194616,
+ 0.0
+ ],
+ [
+ 120.434160618928487,
+ 22.691631813216379,
+ 0.0
+ ],
+ [
+ 120.434644690292131,
+ 22.696778329117215,
+ 0.0
+ ],
+ [
+ 120.436084651450699,
+ 22.701768651152907,
+ 0.0
+ ],
+ [
+ 120.438436843222675,
+ 22.70645112642034,
+ 0.0
+ ],
+ [
+ 120.441629864773446,
+ 22.710683442702141,
+ 0.0
+ ],
+ [
+ 120.445566734711292,
+ 22.714336957081255,
+ 0.0
+ ],
+ [
+ 120.450127833339778,
+ 22.717300610256988,
+ 0.0
+ ],
+ [
+ 120.455174537213708,
+ 22.719484306955955,
+ 0.0
+ ],
+ [
+ 120.460553435571953,
+ 22.720821659008944,
+ 0.0
+ ],
+ [
+ 120.466101,
+ 22.721272007071605,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4880,
+ "name": "Kaohsiung International Airport",
+ "country": "TW",
+ "city": "Kaohsiung City",
+ "height": 0,
+ "level": 2,
+ "lat": "22.5771070167842",
+ "lng": "120.34878362645",
+ "radius": 5622,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.30115,
+ 22.60206,
+ 0.0
+ ],
+ [
+ 120.39809,
+ 22.59907,
+ 0.0
+ ],
+ [
+ 120.3964,
+ 22.55214,
+ 0.0
+ ],
+ [
+ 120.29949,
+ 22.55513,
+ 0.0
+ ],
+ [
+ 120.30115,
+ 22.60206,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4880,
+ "name": "Kaohsiung International Airport",
+ "country": "TW",
+ "city": "Kaohsiung City",
+ "height": 0,
+ "level": 2,
+ "lat": "22.575490873262",
+ "lng": "120.400967343634",
+ "radius": 2879,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.39809,
+ 22.59907,
+ 0.0
+ ],
+ [
+ 120.3964,
+ 22.55214,
+ 0.0
+ ],
+ [
+ 120.400031208,
+ 22.549606218299999,
+ 0.0
+ ],
+ [
+ 120.403626058,
+ 22.554740886499999,
+ 0.0
+ ],
+ [
+ 120.406439951,
+ 22.5602801396,
+ 0.0
+ ],
+ [
+ 120.408421037,
+ 22.566122099499999,
+ 0.0
+ ],
+ [
+ 120.409532768,
+ 22.572159307500002,
+ 0.0
+ ],
+ [
+ 120.409754577,
+ 22.578280699299999,
+ 0.0
+ ],
+ [
+ 120.409082266,
+ 22.584373647300001,
+ 0.0
+ ],
+ [
+ 120.40752809,
+ 22.5903260328,
+ 0.0
+ ],
+ [
+ 120.40512054,
+ 22.596028309800001,
+ 0.0
+ ],
+ [
+ 120.401903831,
+ 22.601375522800002,
+ 0.0
+ ],
+ [
+ 120.39809,
+ 22.59907,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4880,
+ "name": "Kaohsiung International Airport",
+ "country": "TW",
+ "city": "Kaohsiung City",
+ "height": 0,
+ "level": 2,
+ "lat": "22.5787125129504",
+ "lng": "120.29660959227",
+ "radius": 2879,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.30115,
+ 22.60206,
+ 0.0
+ ],
+ [
+ 120.297526571,
+ 22.6045972951,
+ 0.0
+ ],
+ [
+ 120.293934476,
+ 22.599460347899999,
+ 0.0
+ ],
+ [
+ 120.291124383,
+ 22.5939192401,
+ 0.0
+ ],
+ [
+ 120.289147916,
+ 22.588075963,
+ 0.0
+ ],
+ [
+ 120.288041345,
+ 22.5820380565,
+ 0.0
+ ],
+ [
+ 120.287824915,
+ 22.575916628200002,
+ 0.0
+ ],
+ [
+ 120.288502492,
+ 22.569824307899999,
+ 0.0
+ ],
+ [
+ 120.290061494,
+ 22.563873175499999,
+ 0.0
+ ],
+ [
+ 120.29247313499999,
+ 22.558172699499998,
+ 0.0
+ ],
+ [
+ 120.295692958,
+ 22.5528277256,
+ 0.0
+ ],
+ [
+ 120.29949,
+ 22.55513,
+ 0.0
+ ],
+ [
+ 120.30115,
+ 22.60206,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 4880,
+ "name": "Kaohsiung International Airport",
+ "country": "TW",
+ "city": "Kaohsiung City",
+ "height": 60,
+ "level": 2,
+ "lat": "22.5771004990032",
+ "lng": "120.34878692652",
+ "radius": 17330,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.1925,
+ 22.63606,
+ 60.0
+ ],
+ [
+ 120.50894,
+ 22.6263,
+ 60.0
+ ],
+ [
+ 120.50494,
+ 22.51799,
+ 60.0
+ ],
+ [
+ 120.18875,
+ 22.52776,
+ 60.0
+ ],
+ [
+ 120.1925,
+ 22.63606,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000077,
+ "name": "RCR2(考潭)",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "22.6958336498073",
+ "lng": "120.370555288798",
+ "radius": 849,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.363333,
+ 22.694444,
+ 0.0
+ ],
+ [
+ 120.363611,
+ 22.691667,
+ 0.0
+ ],
+ [
+ 120.378056,
+ 22.697222,
+ 0.0
+ ],
+ [
+ 120.3775,
+ 22.7,
+ 0.0
+ ],
+ [
+ 120.363333,
+ 22.694444,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000305,
+ "name": "國軍高雄總醫院屋頂直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "22.625972",
+ "lng": "120.339806",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.339806,
+ 22.635002252285915,
+ 0.0
+ ],
+ [
+ 120.341495246776901,
+ 22.634865053644745,
+ 0.0
+ ],
+ [
+ 120.343133156837837,
+ 22.634457627221515,
+ 0.0
+ ],
+ [
+ 120.344669954490442,
+ 22.63379235473365,
+ 0.0
+ ],
+ [
+ 120.346058938515881,
+ 22.632889453629357,
+ 0.0
+ ],
+ [
+ 120.347257901933801,
+ 22.63177636237063,
+ 0.0
+ ],
+ [
+ 120.348230414850363,
+ 22.630486906214376,
+ 0.0
+ ],
+ [
+ 120.348946931361468,
+ 22.629060268901046,
+ 0.0
+ ],
+ [
+ 120.34938568687825,
+ 22.627539801561692,
+ 0.0
+ ],
+ [
+ 120.34953335866031,
+ 22.625971705096344,
+ 0.0
+ ],
+ [
+ 120.349385469579801,
+ 22.624403626109494,
+ 0.0
+ ],
+ [
+ 120.348946522973961,
+ 22.622883209097477,
+ 0.0
+ ],
+ [
+ 120.348229864631364,
+ 22.621456648890117,
+ 0.0
+ ],
+ [
+ 120.347257276247831,
+ 22.620167287318338,
+ 0.0
+ ],
+ [
+ 120.346058312829911,
+ 22.619054296714307,
+ 0.0
+ ],
+ [
+ 120.344669404271414,
+ 22.618151490194482,
+ 0.0
+ ],
+ [
+ 120.343132748450316,
+ 22.617486294812583,
+ 0.0
+ ],
+ [
+ 120.341495029478452,
+ 22.6170789187167,
+ 0.0
+ ],
+ [
+ 120.339806,
+ 22.616941737554029,
+ 0.0
+ ],
+ [
+ 120.33811697052154,
+ 22.6170789187167,
+ 0.0
+ ],
+ [
+ 120.336479251549676,
+ 22.617486294812583,
+ 0.0
+ ],
+ [
+ 120.334942595728577,
+ 22.618151490194482,
+ 0.0
+ ],
+ [
+ 120.333553687170081,
+ 22.619054296714307,
+ 0.0
+ ],
+ [
+ 120.332354723752161,
+ 22.620167287318338,
+ 0.0
+ ],
+ [
+ 120.331382135368628,
+ 22.621456648890117,
+ 0.0
+ ],
+ [
+ 120.330665477026031,
+ 22.622883209097477,
+ 0.0
+ ],
+ [
+ 120.330226530420191,
+ 22.624403626109494,
+ 0.0
+ ],
+ [
+ 120.330078641339682,
+ 22.625971705096344,
+ 0.0
+ ],
+ [
+ 120.330226313121742,
+ 22.627539801561692,
+ 0.0
+ ],
+ [
+ 120.330665068638524,
+ 22.629060268901046,
+ 0.0
+ ],
+ [
+ 120.331381585149629,
+ 22.630486906214376,
+ 0.0
+ ],
+ [
+ 120.33235409806619,
+ 22.63177636237063,
+ 0.0
+ ],
+ [
+ 120.33355306148411,
+ 22.632889453629357,
+ 0.0
+ ],
+ [
+ 120.33494204550955,
+ 22.63379235473365,
+ 0.0
+ ],
+ [
+ 120.336478843162155,
+ 22.634457627221515,
+ 0.0
+ ],
+ [
+ 120.33811675322309,
+ 22.634865053644745,
+ 0.0
+ ],
+ [
+ 120.339806,
+ 22.635002252285915,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5209,
+ "name": "Lanyu Airport",
+ "country": "TW",
+ "city": "Orchid Island",
+ "height": 0,
+ "level": 2,
+ "lat": "22.0286007228537",
+ "lng": "121.533839672733",
+ "radius": 5025,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.5184,
+ 22.07147,
+ 0.0
+ ],
+ [
+ 121.58176,
+ 22.02162,
+ 0.0
+ ],
+ [
+ 121.54927,
+ 21.98573,
+ 0.0
+ ],
+ [
+ 121.48592,
+ 22.03557,
+ 0.0
+ ],
+ [
+ 121.5184,
+ 22.07147,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5209,
+ "name": "Lanyu Airport",
+ "country": "TW",
+ "city": "Orchid Island",
+ "height": 0,
+ "level": 2,
+ "lat": "22.0014523770574",
+ "lng": "121.568351428825",
+ "radius": 2873,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.58176,
+ 22.02162,
+ 0.0
+ ],
+ [
+ 121.54927,
+ 21.98573,
+ 0.0
+ ],
+ [
+ 121.55043746299999,
+ 21.981659562299999,
+ 0.0
+ ],
+ [
+ 121.556657397,
+ 21.983625867499999,
+ 0.0
+ ],
+ [
+ 121.562535006,
+ 21.986358939,
+ 0.0
+ ],
+ [
+ 121.567962217,
+ 21.989808530800001,
+ 0.0
+ ],
+ [
+ 121.572839219,
+ 21.993911220699999,
+ 0.0
+ ],
+ [
+ 121.577076292,
+ 21.998591573900001,
+ 0.0
+ ],
+ [
+ 121.580595461,
+ 22.0037635276,
+ 0.0
+ ],
+ [
+ 121.583331931,
+ 22.0093319701,
+ 0.0
+ ],
+ [
+ 121.585235281,
+ 22.015194487700001,
+ 0.0
+ ],
+ [
+ 121.586270396,
+ 22.021243245800001,
+ 0.0
+ ],
+ [
+ 121.58176,
+ 22.02162,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5209,
+ "name": "Lanyu Airport",
+ "country": "TW",
+ "city": "Orchid Island",
+ "height": 0,
+ "level": 2,
+ "lat": "22.0557516175525",
+ "lng": "121.499332773391",
+ "radius": 2873,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.5184,
+ 22.07147,
+ 0.0
+ ],
+ [
+ 121.517249333,
+ 22.0755499568,
+ 0.0
+ ],
+ [
+ 121.511025864,
+ 22.073582246499999,
+ 0.0
+ ],
+ [
+ 121.505145562,
+ 22.070847407700001,
+ 0.0
+ ],
+ [
+ 121.499716691,
+ 22.0673958,
+ 0.0
+ ],
+ [
+ 121.494839181,
+ 22.0632909781,
+ 0.0
+ ],
+ [
+ 121.49060278899999,
+ 22.058608519300002,
+ 0.0
+ ],
+ [
+ 121.487085443,
+ 22.053434629200002,
+ 0.0
+ ],
+ [
+ 121.484351813,
+ 22.0478645514,
+ 0.0
+ ],
+ [
+ 121.482452122,
+ 22.042000811699999,
+ 0.0
+ ],
+ [
+ 121.48142123,
+ 22.035951329,
+ 0.0
+ ],
+ [
+ 121.48592,
+ 22.03557,
+ 0.0
+ ],
+ [
+ 121.5184,
+ 22.07147,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 5209,
+ "name": "Lanyu Airport",
+ "country": "TW",
+ "city": "Orchid Island",
+ "height": 60,
+ "level": 2,
+ "lat": "22.0286033439767",
+ "lng": "121.533847520435",
+ "radius": 16730,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.38107,
+ 22.07778,
+ 60.0
+ ],
+ [
+ 121.45602,
+ 22.16066,
+ 60.0
+ ],
+ [
+ 121.68651,
+ 21.97929,
+ 60.0
+ ],
+ [
+ 121.61153,
+ 21.89651,
+ 60.0
+ ],
+ [
+ 121.38107,
+ 22.07778,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001362,
+ "name": "Lanyu Airport",
+ "country": "TW",
+ "city": "Orchid Island",
+ "height": 500,
+ "level": 2,
+ "lat": "22.029094",
+ "lng": "121.534192",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.534192,
+ 22.480627594106728,
+ 500.0
+ ],
+ [
+ 121.618555477354192,
+ 22.473746183177035,
+ 500.0
+ ],
+ [
+ 121.700331427365626,
+ 22.453313006964681,
+ 500.0
+ ],
+ [
+ 121.777013934133109,
+ 22.419954576764184,
+ 500.0
+ ],
+ [
+ 121.846257444158837,
+ 22.374693117443581,
+ 500.0
+ ],
+ [
+ 121.905949934708801,
+ 22.318914434508525,
+ 500.0
+ ],
+ [
+ 121.954278042204635,
+ 22.254324503392887,
+ 500.0
+ ],
+ [
+ 121.98978206226279,
+ 22.182896265381437,
+ 500.0
+ ],
+ [
+ 122.011399176966336,
+ 22.106808417690704,
+ 500.0
+ ],
+ [
+ 122.018493751514285,
+ 22.028378211859291,
+ 500.0
+ ],
+ [
+ 122.01087403992436,
+ 21.949990420919615,
+ 500.0
+ ],
+ [
+ 121.988795120452593,
+ 21.874024702886864,
+ 500.0
+ ],
+ [
+ 121.952948324643657,
+ 21.802783580799442,
+ 500.0
+ ],
+ [
+ 121.904437815522613,
+ 21.73842318536434,
+ 500.0
+ ],
+ [
+ 121.844745303510365,
+ 21.682888774063471,
+ 500.0
+ ],
+ [
+ 121.775684162227691,
+ 21.637856859566735,
+ 500.0
+ ],
+ [
+ 121.699344423757211,
+ 21.604685559298677,
+ 500.0
+ ],
+ [
+ 121.618030299976283,
+ 21.584374525063108,
+ 500.0
+ ],
+ [
+ 121.534192,
+ 21.57753553389021,
+ 500.0
+ ],
+ [
+ 121.450353700023726,
+ 21.584374525063108,
+ 500.0
+ ],
+ [
+ 121.369039576242798,
+ 21.604685559298677,
+ 500.0
+ ],
+ [
+ 121.292699837772318,
+ 21.637856859566735,
+ 500.0
+ ],
+ [
+ 121.223638696489644,
+ 21.682888774063471,
+ 500.0
+ ],
+ [
+ 121.163946184477396,
+ 21.73842318536434,
+ 500.0
+ ],
+ [
+ 121.115435675356352,
+ 21.802783580799442,
+ 500.0
+ ],
+ [
+ 121.079588879547416,
+ 21.874024702886864,
+ 500.0
+ ],
+ [
+ 121.057509960075649,
+ 21.949990420919615,
+ 500.0
+ ],
+ [
+ 121.049890248485724,
+ 22.028378211859291,
+ 500.0
+ ],
+ [
+ 121.056984823033673,
+ 22.106808417690704,
+ 500.0
+ ],
+ [
+ 121.078601937737218,
+ 22.182896265381437,
+ 500.0
+ ],
+ [
+ 121.114105957795374,
+ 22.254324503392887,
+ 500.0
+ ],
+ [
+ 121.162434065291208,
+ 22.318914434508525,
+ 500.0
+ ],
+ [
+ 121.222126555841172,
+ 22.374693117443581,
+ 500.0
+ ],
+ [
+ 121.2913700658669,
+ 22.419954576764184,
+ 500.0
+ ],
+ [
+ 121.368052572634383,
+ 22.453313006964681,
+ 500.0
+ ],
+ [
+ 121.449828522645817,
+ 22.473746183177035,
+ 500.0
+ ],
+ [
+ 121.534192,
+ 22.480627594106728,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009854,
+ "name": "Kengtung Airport",
+ "country": "MM",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "21.301628",
+ "lng": "99.635835",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.635835,
+ 21.753201462902993,
+ 500.0
+ ],
+ [
+ 99.719766942504563,
+ 21.746320227912786,
+ 500.0
+ ],
+ [
+ 99.801125460317166,
+ 21.72588750323116,
+ 500.0
+ ],
+ [
+ 99.877418189734797,
+ 21.692529582361047,
+ 500.0
+ ],
+ [
+ 99.946312060664368,
+ 21.647268362642979,
+ 500.0
+ ],
+ [
+ 100.005706007844054,
+ 21.591489260635974,
+ 500.0
+ ],
+ [
+ 100.053795726737661,
+ 21.526897859977876,
+ 500.0
+ ],
+ [
+ 100.089128401602693,
+ 21.455466768516573,
+ 500.0
+ ],
+ [
+ 100.110645768675013,
+ 21.379374464294411,
+ 500.0
+ ],
+ [
+ 100.117714355478057,
+ 21.300938137276312,
+ 500.0
+ ],
+ [
+ 100.110142227258976,
+ 21.22254268161559,
+ 500.0
+ ],
+ [
+ 100.088182046698435,
+ 21.146568062578321,
+ 500.0
+ ],
+ [
+ 100.052520692603693,
+ 21.075317277589253,
+ 500.0
+ ],
+ [
+ 100.004256073523678,
+ 21.010947059377639,
+ 500.0
+ ],
+ [
+ 99.944862106123665,
+ 20.955403339430877,
+ 500.0
+ ],
+ [
+ 99.876143104401123,
+ 20.910363310836651,
+ 500.0
+ ],
+ [
+ 99.800179047190753,
+ 20.87718570973329,
+ 500.0
+ ],
+ [
+ 99.719263363086711,
+ 20.856870681927564,
+ 500.0
+ ],
+ [
+ 99.635835,
+ 20.850030322911863,
+ 500.0
+ ],
+ [
+ 99.55240663691329,
+ 20.856870681927564,
+ 500.0
+ ],
+ [
+ 99.471490952809248,
+ 20.87718570973329,
+ 500.0
+ ],
+ [
+ 99.395526895598877,
+ 20.910363310836651,
+ 500.0
+ ],
+ [
+ 99.326807893876335,
+ 20.955403339430877,
+ 500.0
+ ],
+ [
+ 99.267413926476323,
+ 21.010947059377639,
+ 500.0
+ ],
+ [
+ 99.219149307396307,
+ 21.075317277589253,
+ 500.0
+ ],
+ [
+ 99.183487953301565,
+ 21.146568062578321,
+ 500.0
+ ],
+ [
+ 99.161527772741024,
+ 21.22254268161559,
+ 500.0
+ ],
+ [
+ 99.153955644521943,
+ 21.300938137276312,
+ 500.0
+ ],
+ [
+ 99.161024231324987,
+ 21.379374464294411,
+ 500.0
+ ],
+ [
+ 99.182541598397307,
+ 21.455466768516573,
+ 500.0
+ ],
+ [
+ 99.217874273262339,
+ 21.526897859977876,
+ 500.0
+ ],
+ [
+ 99.265963992155946,
+ 21.591489260635974,
+ 500.0
+ ],
+ [
+ 99.325357939335632,
+ 21.647268362642979,
+ 500.0
+ ],
+ [
+ 99.394251810265203,
+ 21.692529582361047,
+ 500.0
+ ],
+ [
+ 99.470544539682834,
+ 21.72588750323116,
+ 500.0
+ ],
+ [
+ 99.551903057495437,
+ 21.746320227912786,
+ 500.0
+ ],
+ [
+ 99.635835,
+ 21.753201462902993,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284252,
+ "name": "Kengtung Airport",
+ "country": "MM",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "21.3016670077119",
+ "lng": "99.6357504218968",
+ "radius": 5214,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.645616360899993,
+ 21.338133966600001,
+ 0.0
+ ],
+ [
+ 99.665781441500002,
+ 21.3268006592,
+ 0.0
+ ],
+ [
+ 99.677503852800001,
+ 21.316577898,
+ 0.0
+ ],
+ [
+ 99.681403424699994,
+ 21.309993194400001,
+ 0.0
+ ],
+ [
+ 99.683747975599999,
+ 21.3027970234,
+ 0.0
+ ],
+ [
+ 99.684435248499994,
+ 21.295303957800002,
+ 0.0
+ ],
+ [
+ 99.683435456699996,
+ 21.287841500599999,
+ 0.0
+ ],
+ [
+ 99.676622210800005,
+ 21.274297240599999,
+ 0.0
+ ],
+ [
+ 99.664487509699995,
+ 21.264505496200002,
+ 0.0
+ ],
+ [
+ 99.649129283700006,
+ 21.2601584837,
+ 0.0
+ ],
+ [
+ 99.633201550300001,
+ 21.2620073553,
+ 0.0
+ ],
+ [
+ 99.599291367299998,
+ 21.281062898199998,
+ 0.0
+ ],
+ [
+ 99.590102487500005,
+ 21.2933285232,
+ 0.0
+ ],
+ [
+ 99.58775352399999,
+ 21.3005234022,
+ 0.0
+ ],
+ [
+ 99.587061319300005,
+ 21.308016075699999,
+ 0.0
+ ],
+ [
+ 99.590695452299997,
+ 21.322586270799999,
+ 0.0
+ ],
+ [
+ 99.594863407299997,
+ 21.329026903100001,
+ 0.0
+ ],
+ [
+ 99.6069988263,
+ 21.3388236063,
+ 0.0
+ ],
+ [
+ 99.622364042699999,
+ 21.343174400900001,
+ 0.0
+ ],
+ [
+ 99.630436686400003,
+ 21.343030713499999,
+ 0.0
+ ],
+ [
+ 99.645616360899993,
+ 21.338133966600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284251,
+ "name": "Kengtung Airport",
+ "country": "MM",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "21.3016606536893",
+ "lng": "99.635746300831",
+ "radius": 4262,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.603860202299998,
+ 21.325888357699998,
+ 0.0
+ ],
+ [
+ 99.673618071199996,
+ 21.2866851438,
+ 0.0
+ ],
+ [
+ 99.667636715,
+ 21.277443888200001,
+ 0.0
+ ],
+ [
+ 99.5978759817,
+ 21.316647814900001,
+ 0.0
+ ],
+ [
+ 99.603860202299998,
+ 21.325888357699998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284251,
+ "name": "Kengtung Airport",
+ "country": "MM",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "21.2731003190557",
+ "lng": "99.68657621542",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.673618071199996,
+ 21.2866851438,
+ 60.0
+ ],
+ [
+ 99.706050834699994,
+ 21.274105012700002,
+ 60.0
+ ],
+ [
+ 99.694703027599999,
+ 21.256578011199998,
+ 60.0
+ ],
+ [
+ 99.667636715,
+ 21.277443888200001,
+ 60.0
+ ],
+ [
+ 99.673618071199996,
+ 21.2866851438,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284251,
+ "name": "Kengtung Airport",
+ "country": "MM",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "21.3302325767283",
+ "lng": "99.5849143883967",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.576780139199997,
+ 21.3467531302,
+ 60.0
+ ],
+ [
+ 99.603860202299998,
+ 21.325888357699998,
+ 60.0
+ ],
+ [
+ 99.5978759817,
+ 21.316647814900001,
+ 60.0
+ ],
+ [
+ 99.565432776500003,
+ 21.3292255946,
+ 60.0
+ ],
+ [
+ 99.576780139199997,
+ 21.3467531302,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284251,
+ "name": "Kengtung Airport",
+ "country": "MM",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "21.2445981743293",
+ "lng": "99.7372558773629",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.706050834699994,
+ 21.274105012700002,
+ 150.0
+ ],
+ [
+ 99.781705717199998,
+ 21.2447272472,
+ 150.0
+ ],
+ [
+ 99.757827949900005,
+ 21.207874179,
+ 150.0
+ ],
+ [
+ 99.694703027599999,
+ 21.256578011199998,
+ 150.0
+ ],
+ [
+ 99.706050834699994,
+ 21.274105012700002,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284251,
+ "name": "Kengtung Airport",
+ "country": "MM",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "21.358715860341",
+ "lng": "99.5341933638919",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.513563332499999,
+ 21.3954207092,
+ 150.0
+ ],
+ [
+ 99.576780139199997,
+ 21.3467531302,
+ 150.0
+ ],
+ [
+ 99.565432776500003,
+ 21.3292255946,
+ 150.0
+ ],
+ [
+ 99.489710335300003,
+ 21.358549528899999,
+ 150.0
+ ],
+ [
+ 99.513563332499999,
+ 21.3954207092,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268615,
+ "name": "Dien Bien Phu Airport",
+ "country": "VN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "21.3976567880583",
+ "lng": "103.005763667728",
+ "radius": 3962,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.995766359,
+ 21.432053529800001,
+ 0.0
+ ],
+ [
+ 103.026363316,
+ 21.367626459499999,
+ 0.0
+ ],
+ [
+ 103.015765161,
+ 21.3632616937,
+ 0.0
+ ],
+ [
+ 102.98516331899999,
+ 21.427689214099999,
+ 0.0
+ ],
+ [
+ 102.995766359,
+ 21.432053529800001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268615,
+ "name": "Dien Bien Phu Airport",
+ "country": "VN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "21.3495708402437",
+ "lng": "103.028601015903",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 103.026363316,
+ 21.367626459499999,
+ 60.0
+ ],
+ [
+ 103.045172364,
+ 21.3399729538,
+ 60.0
+ ],
+ [
+ 103.025071905,
+ 21.331695067199998,
+ 60.0
+ ],
+ [
+ 103.015765161,
+ 21.3632616937,
+ 60.0
+ ],
+ [
+ 103.026363316,
+ 21.367626459499999,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268615,
+ "name": "Dien Bien Phu Airport",
+ "country": "VN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "21.4457442647364",
+ "lng": "102.982923956806",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.986452761,
+ 21.4636200377,
+ 60.0
+ ],
+ [
+ 102.995766359,
+ 21.432053529800001,
+ 60.0
+ ],
+ [
+ 102.98516331899999,
+ 21.427689214099999,
+ 60.0
+ ],
+ [
+ 102.96634078,
+ 21.455341419700002,
+ 60.0
+ ],
+ [
+ 102.986452761,
+ 21.4636200377,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268615,
+ "name": "Dien Bien Phu Airport",
+ "country": "VN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "21.299116559756",
+ "lng": "103.052545467189",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 103.045172364,
+ 21.3399729538,
+ 150.0
+ ],
+ [
+ 103.089032581,
+ 21.2754399777,
+ 150.0
+ ],
+ [
+ 103.046772085,
+ 21.258037616,
+ 150.0
+ ],
+ [
+ 103.025071905,
+ 21.331695067199998,
+ 150.0
+ ],
+ [
+ 103.045172364,
+ 21.3399729538,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268615,
+ "name": "Dien Bien Phu Airport",
+ "country": "VN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "21.4961935076544",
+ "lng": "102.958944720236",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.964705323,
+ 21.537273215100001,
+ 150.0
+ ],
+ [
+ 102.986452761,
+ 21.4636200377,
+ 150.0
+ ],
+ [
+ 102.96634078,
+ 21.455341419700002,
+ 150.0
+ ],
+ [
+ 102.92239373,
+ 21.519855036799999,
+ 150.0
+ ],
+ [
+ 102.964705323,
+ 21.537273215100001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008750,
+ "name": "Dien Bien Phu Airport",
+ "country": "VN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "21.397634",
+ "lng": "103.005681",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 103.005681,
+ 21.849202261909728,
+ 500.0
+ ],
+ [
+ 103.089668868349207,
+ 21.842321003235298,
+ 500.0
+ ],
+ [
+ 103.171081483292639,
+ 21.821888217538987,
+ 500.0
+ ],
+ [
+ 103.247424723906704,
+ 21.788530226983227,
+ 500.0
+ ],
+ [
+ 103.316363901683573,
+ 21.743268972016295,
+ 500.0
+ ],
+ [
+ 103.375796531097038,
+ 21.687489920405334,
+ 500.0
+ ],
+ [
+ 103.423917133823096,
+ 21.622898707400736,
+ 500.0
+ ],
+ [
+ 103.459272002049872,
+ 21.551467984823105,
+ 500.0
+ ],
+ [
+ 103.480802282865881,
+ 21.475376259698159,
+ 500.0
+ ],
+ [
+ 103.487874224888117,
+ 21.3969407302843,
+ 500.0
+ ],
+ [
+ 103.480295919269153,
+ 21.318546275033093,
+ 500.0
+ ],
+ [
+ 103.458320343128662,
+ 21.242572819053166,
+ 500.0
+ ],
+ [
+ 103.422634953498616,
+ 21.171323297642626,
+ 500.0
+ ],
+ [
+ 103.374338470278261,
+ 21.106954364616783,
+ 500.0
+ ],
+ [
+ 103.314905820484427,
+ 21.051411863067617,
+ 500.0
+ ],
+ [
+ 103.246142491977267,
+ 21.006372896817155,
+ 500.0
+ ],
+ [
+ 103.170129765688444,
+ 20.973196120815498,
+ 500.0
+ ],
+ [
+ 103.089162466449892,
+ 20.952881616036539,
+ 500.0
+ ],
+ [
+ 103.005681,
+ 20.946041436174017,
+ 500.0
+ ],
+ [
+ 102.922199533550099,
+ 20.952881616036539,
+ 500.0
+ ],
+ [
+ 102.841232234311548,
+ 20.973196120815498,
+ 500.0
+ ],
+ [
+ 102.765219508022724,
+ 21.006372896817155,
+ 500.0
+ ],
+ [
+ 102.696456179515565,
+ 21.051411863067617,
+ 500.0
+ ],
+ [
+ 102.637023529721731,
+ 21.106954364616783,
+ 500.0
+ ],
+ [
+ 102.588727046501376,
+ 21.171323297642626,
+ 500.0
+ ],
+ [
+ 102.553041656871329,
+ 21.242572819053166,
+ 500.0
+ ],
+ [
+ 102.531066080730838,
+ 21.318546275033093,
+ 500.0
+ ],
+ [
+ 102.523487775111874,
+ 21.3969407302843,
+ 500.0
+ ],
+ [
+ 102.530559717134111,
+ 21.475376259698159,
+ 500.0
+ ],
+ [
+ 102.552089997950119,
+ 21.551467984823105,
+ 500.0
+ ],
+ [
+ 102.587444866176895,
+ 21.622898707400736,
+ 500.0
+ ],
+ [
+ 102.635565468902954,
+ 21.687489920405334,
+ 500.0
+ ],
+ [
+ 102.694998098316418,
+ 21.743268972016295,
+ 500.0
+ ],
+ [
+ 102.763937276093287,
+ 21.788530226983227,
+ 500.0
+ ],
+ [
+ 102.840280516707352,
+ 21.821888217538987,
+ 500.0
+ ],
+ [
+ 102.921693131650784,
+ 21.842321003235298,
+ 500.0
+ ],
+ [
+ 103.005681,
+ 21.849202261909728,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268616,
+ "name": "Dien Bien Phu Airport",
+ "country": "VN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "21.3976560250894",
+ "lng": "103.005760024425",
+ "radius": 4912,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 103.037526899,
+ 21.4197408687,
+ 0.0
+ ],
+ [
+ 103.044687161,
+ 21.404657193199998,
+ 0.0
+ ],
+ [
+ 103.047160441,
+ 21.397498043799999,
+ 0.0
+ ],
+ [
+ 103.047980846,
+ 21.3900165634,
+ 0.0
+ ],
+ [
+ 103.044594402,
+ 21.375394358099999,
+ 0.0
+ ],
+ [
+ 103.035115096,
+ 21.363318526400001,
+ 0.0
+ ],
+ [
+ 103.021182556,
+ 21.355876251600002,
+ 0.0
+ ],
+ [
+ 103.00520489199999,
+ 21.354353612800001,
+ 0.0
+ ],
+ [
+ 102.989942941,
+ 21.359013710300001,
+ 0.0
+ ],
+ [
+ 102.978034111,
+ 21.369051290600002,
+ 0.0
+ ],
+ [
+ 102.966855421,
+ 21.3906380313,
+ 0.0
+ ],
+ [
+ 102.964375567,
+ 21.397795174199999,
+ 0.0
+ ],
+ [
+ 102.963547957,
+ 21.405275970800002,
+ 0.0
+ ],
+ [
+ 102.96440901299999,
+ 21.412753498899999,
+ 0.0
+ ],
+ [
+ 102.96692135,
+ 21.419900929400001,
+ 0.0
+ ],
+ [
+ 102.976394035,
+ 21.431983758200001,
+ 0.0
+ ],
+ [
+ 102.99032867699999,
+ 21.439434387599999,
+ 0.0
+ ],
+ [
+ 102.998235397,
+ 21.440981244500001,
+ 0.0
+ ],
+ [
+ 103.014213809,
+ 21.439382742399999,
+ 0.0
+ ],
+ [
+ 103.028111107,
+ 21.431871933899998,
+ 0.0
+ ],
+ [
+ 103.037526899,
+ 21.4197408687,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287914,
+ "name": "Na-San Airport",
+ "country": "VN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "21.2155313220663",
+ "lng": "104.032144388676",
+ "radius": 7881,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 104.00069471099999,
+ 21.239940178600001,
+ 0.0
+ ],
+ [
+ 104.06966955,
+ 21.200321243400001,
+ 0.0
+ ],
+ [
+ 104.101954391,
+ 21.1874562032,
+ 0.0
+ ],
+ [
+ 104.090436208,
+ 21.170029853399999,
+ 0.0
+ ],
+ [
+ 104.06359832699999,
+ 21.1911330519,
+ 0.0
+ ],
+ [
+ 103.99462063199999,
+ 21.230752691300001,
+ 0.0
+ ],
+ [
+ 103.962325222,
+ 21.243615337400001,
+ 0.0
+ ],
+ [
+ 103.973843094,
+ 21.261042247300001,
+ 0.0
+ ],
+ [
+ 104.00069471099999,
+ 21.239940178600001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3229,
+ "name": "Beihai Airport",
+ "country": "CN",
+ "city": "Beihai",
+ "height": 0,
+ "level": 2,
+ "lat": "21.5808624916922",
+ "lng": "109.308716353361",
+ "radius": 13659,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.36456446699999,
+ 21.6921925806,
+ 0.0
+ ],
+ [
+ 109.290706646,
+ 21.702555256,
+ 0.0
+ ],
+ [
+ 109.285744652,
+ 21.6192555543,
+ 0.0
+ ],
+ [
+ 109.25638908,
+ 21.609008561300001,
+ 0.0
+ ],
+ [
+ 109.242985507,
+ 21.598045007100001,
+ 0.0
+ ],
+ [
+ 109.233092572,
+ 21.5842289311,
+ 0.0
+ ],
+ [
+ 109.227383861,
+ 21.568502541499999,
+ 0.0
+ ],
+ [
+ 109.224929308,
+ 21.506138425900001,
+ 0.0
+ ],
+ [
+ 109.23189940499999,
+ 21.490859546900001,
+ 0.0
+ ],
+ [
+ 109.257123243,
+ 21.4677880331,
+ 0.0
+ ],
+ [
+ 109.33292959,
+ 21.608810808200001,
+ 0.0
+ ],
+ [
+ 109.36456446699999,
+ 21.6921925806,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3229,
+ "name": "Beihai Airport",
+ "country": "CN",
+ "city": "Beihai",
+ "height": 0,
+ "level": 2,
+ "lat": "21.4950017328921",
+ "lng": "109.287970452386",
+ "radius": 13482,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.257123243,
+ 21.4677880331,
+ 0.0
+ ],
+ [
+ 109.223754254,
+ 21.389510362199999,
+ 0.0
+ ],
+ [
+ 109.29759569399999,
+ 21.3740852526,
+ 0.0
+ ],
+ [
+ 109.302610197,
+ 21.462431033200001,
+ 0.0
+ ],
+ [
+ 109.32771426399999,
+ 21.471529783099999,
+ 0.0
+ ],
+ [
+ 109.341349374,
+ 21.482230579,
+ 0.0
+ ],
+ [
+ 109.351545625,
+ 21.495850019599999,
+ 0.0
+ ],
+ [
+ 109.365943775,
+ 21.539804721,
+ 0.0
+ ],
+ [
+ 109.365093994,
+ 21.570422475499999,
+ 0.0
+ ],
+ [
+ 109.358143563,
+ 21.585710607,
+ 0.0
+ ],
+ [
+ 109.33292959,
+ 21.608810808200001,
+ 0.0
+ ],
+ [
+ 109.257123243,
+ 21.4677880331,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 3229,
+ "name": "Beihai Airport",
+ "country": "CN",
+ "city": "Beihai",
+ "height": 120,
+ "level": 2,
+ "lat": "21.5391731435537",
+ "lng": "109.293801836339",
+ "radius": 23888,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.2358661,
+ 21.747151667499999,
+ 120.0
+ ],
+ [
+ 109.42639825099999,
+ 21.715132061,
+ 120.0
+ ],
+ [
+ 109.351464992,
+ 21.3311489968,
+ 120.0
+ ],
+ [
+ 109.161436171,
+ 21.3631686035,
+ 120.0
+ ],
+ [
+ 109.2358661,
+ 21.747151667499999,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001444,
+ "name": "Beihai Airport",
+ "country": "CN",
+ "city": "Beihai",
+ "height": 500,
+ "level": 2,
+ "lat": "21.539608",
+ "lng": "109.293216",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.293216,
+ 21.991168536695149,
+ 500.0
+ ],
+ [
+ 109.377287140062052,
+ 21.984287243260997,
+ 500.0
+ ],
+ [
+ 109.458780304419705,
+ 21.963854368145984,
+ 500.0
+ ],
+ [
+ 109.535198756213063,
+ 21.930496275939447,
+ 500.0
+ ],
+ [
+ 109.604205397508366,
+ 21.88523497090091,
+ 500.0
+ ],
+ [
+ 109.663695628168767,
+ 21.829455996590159,
+ 500.0
+ ],
+ [
+ 109.711862222001812,
+ 21.764865064632254,
+ 500.0
+ ],
+ [
+ 109.747250142546079,
+ 21.693434891890092,
+ 500.0
+ ],
+ [
+ 109.768799659066062,
+ 21.61734402821536,
+ 500.0
+ ],
+ [
+ 109.775876604141871,
+ 21.538909684035797,
+ 500.0
+ ],
+ [
+ 109.768289106678068,
+ 21.460516714424259,
+ 500.0
+ ],
+ [
+ 109.746290611194482,
+ 21.384544984885643,
+ 500.0
+ ],
+ [
+ 109.710569435019707,
+ 21.313297338577733,
+ 500.0
+ ],
+ [
+ 109.662225505679601,
+ 21.248930312318933,
+ 500.0
+ ],
+ [
+ 109.602735254400017,
+ 21.193389618173285,
+ 500.0
+ ],
+ [
+ 109.533905917021357,
+ 21.14835222766148,
+ 500.0
+ ],
+ [
+ 109.457820713697544,
+ 21.115176675413917,
+ 500.0
+ ],
+ [
+ 109.376776548922692,
+ 21.094862946328455,
+ 500.0
+ ],
+ [
+ 109.293216,
+ 21.088023032159416,
+ 500.0
+ ],
+ [
+ 109.20965545107731,
+ 21.094862946328455,
+ 500.0
+ ],
+ [
+ 109.128611286302458,
+ 21.115176675413917,
+ 500.0
+ ],
+ [
+ 109.052526082978645,
+ 21.14835222766148,
+ 500.0
+ ],
+ [
+ 108.983696745599985,
+ 21.193389618173285,
+ 500.0
+ ],
+ [
+ 108.924206494320401,
+ 21.248930312318933,
+ 500.0
+ ],
+ [
+ 108.875862564980295,
+ 21.313297338577733,
+ 500.0
+ ],
+ [
+ 108.84014138880552,
+ 21.384544984885643,
+ 500.0
+ ],
+ [
+ 108.818142893321934,
+ 21.460516714424259,
+ 500.0
+ ],
+ [
+ 108.810555395858131,
+ 21.538909684035797,
+ 500.0
+ ],
+ [
+ 108.81763234093394,
+ 21.61734402821536,
+ 500.0
+ ],
+ [
+ 108.839181857453923,
+ 21.693434891890092,
+ 500.0
+ ],
+ [
+ 108.87456977799819,
+ 21.764865064632254,
+ 500.0
+ ],
+ [
+ 108.922736371831235,
+ 21.829455996590159,
+ 500.0
+ ],
+ [
+ 108.982226602491636,
+ 21.88523497090091,
+ 500.0
+ ],
+ [
+ 109.051233243786939,
+ 21.930496275939447,
+ 500.0
+ ],
+ [
+ 109.127651695580298,
+ 21.963854368145984,
+ 500.0
+ ],
+ [
+ 109.20914485993795,
+ 21.984287243260997,
+ 500.0
+ ],
+ [
+ 109.293216,
+ 21.991168536695149,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002172,
+ "name": "Zhanjiang Wuchuan Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "21.5219310710014",
+ "lng": "110.570015390375",
+ "radius": 13736,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.570973022,
+ 21.561160680099999,
+ 0.0
+ ],
+ [
+ 110.536802566,
+ 21.6415467906,
+ 0.0
+ ],
+ [
+ 110.475273218,
+ 21.608524153699999,
+ 0.0
+ ],
+ [
+ 110.533073235,
+ 21.540810799700001,
+ 0.0
+ ],
+ [
+ 110.521179819,
+ 21.5264467531,
+ 0.0
+ ],
+ [
+ 110.51452408,
+ 21.5110466577,
+ 0.0
+ ],
+ [
+ 110.512380338,
+ 21.494568691600001,
+ 0.0
+ ],
+ [
+ 110.521889888,
+ 21.462868158100001,
+ 0.0
+ ],
+ [
+ 110.550341993,
+ 21.421824653600002,
+ 0.0
+ ],
+ [
+ 110.581205966,
+ 21.405773961,
+ 0.0
+ ],
+ [
+ 110.616553603,
+ 21.406233387,
+ 0.0
+ ],
+ [
+ 110.570973022,
+ 21.561160680099999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002172,
+ "name": "Zhanjiang Wuchuan Airport",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "21.4454356190854",
+ "lng": "110.617450654465",
+ "radius": 13737,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.650668811,
+ 21.325830069799999,
+ 0.0
+ ],
+ [
+ 110.712095942,
+ 21.358848662900002,
+ 0.0
+ ],
+ [
+ 110.654434533,
+ 21.426587198299998,
+ 0.0
+ ],
+ [
+ 110.666296446,
+ 21.4408896379,
+ 0.0
+ ],
+ [
+ 110.672977746,
+ 21.456278940800001,
+ 0.0
+ ],
+ [
+ 110.675152716,
+ 21.472753298699999,
+ 0.0
+ ],
+ [
+ 110.665702117,
+ 21.504469260099999,
+ 0.0
+ ],
+ [
+ 110.637246268,
+ 21.545562912800001,
+ 0.0
+ ],
+ [
+ 110.606358364,
+ 21.561623130400001,
+ 0.0
+ ],
+ [
+ 110.570973022,
+ 21.561160680099999,
+ 0.0
+ ],
+ [
+ 110.616553603,
+ 21.406233387,
+ 0.0
+ ],
+ [
+ 110.650668811,
+ 21.325830069799999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002172,
+ "name": "Zhanjiang Wuchuan Airport",
+ "country": "CN",
+ "city": "",
+ "height": 120,
+ "level": 2,
+ "lat": "21.483641525661",
+ "lng": "110.593662962972",
+ "radius": 23908,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.782205359,
+ 21.359450150400001,
+ 120.0
+ ],
+ [
+ 110.614982412,
+ 21.26954861,
+ 120.0
+ ],
+ [
+ 110.404975754,
+ 21.607854083700001,
+ 120.0
+ ],
+ [
+ 110.572587768,
+ 21.697755623700001,
+ 120.0
+ ],
+ [
+ 110.782205359,
+ 21.359450150400001,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002173,
+ "name": "Zhanjiang Wuchuan Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "21.48541468",
+ "lng": "110.59282232",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.59282232,
+ 21.936978170282835,
+ 500.0
+ ],
+ [
+ 110.676861593985066,
+ 21.930096890079959,
+ 500.0
+ ],
+ [
+ 110.758323933940673,
+ 21.90966404898402,
+ 500.0
+ ],
+ [
+ 110.834713603991943,
+ 21.876305995383031,
+ 500.0
+ ],
+ [
+ 110.903694428186924,
+ 21.83104470916992,
+ 500.0
+ ],
+ [
+ 110.96316261558313,
+ 21.775265704964035,
+ 500.0
+ ],
+ [
+ 111.011311608874465,
+ 21.710674665230087,
+ 500.0
+ ],
+ [
+ 111.04668688009582,
+ 21.639244282001187,
+ 500.0
+ ],
+ [
+ 111.068229034518055,
+ 21.563153088786571,
+ 500.0
+ ],
+ [
+ 111.075304064033958,
+ 21.484718291382077,
+ 500.0
+ ],
+ [
+ 111.067720083215903,
+ 21.406324753806828,
+ 500.0
+ ],
+ [
+ 111.045730357831118,
+ 21.330352364348002,
+ 500.0
+ ],
+ [
+ 111.010022876085785,
+ 21.259104001372194,
+ 500.0
+ ],
+ [
+ 110.961697103438553,
+ 21.194736246399103,
+ 500.0
+ ],
+ [
+ 110.902228895514611,
+ 21.139194861551331,
+ 500.0
+ ],
+ [
+ 110.833424819225215,
+ 21.094156868892298,
+ 500.0
+ ],
+ [
+ 110.757367352568721,
+ 21.060980849016417,
+ 500.0
+ ],
+ [
+ 110.676352604103386,
+ 21.040666823523367,
+ 500.0
+ ],
+ [
+ 110.59282232,
+ 21.033826807828515,
+ 500.0
+ ],
+ [
+ 110.509292035896607,
+ 21.040666823523367,
+ 500.0
+ ],
+ [
+ 110.428277287431271,
+ 21.060980849016417,
+ 500.0
+ ],
+ [
+ 110.352219820774778,
+ 21.094156868892298,
+ 500.0
+ ],
+ [
+ 110.283415744485382,
+ 21.139194861551331,
+ 500.0
+ ],
+ [
+ 110.22394753656144,
+ 21.194736246399103,
+ 500.0
+ ],
+ [
+ 110.175621763914208,
+ 21.259104001372194,
+ 500.0
+ ],
+ [
+ 110.139914282168874,
+ 21.330352364348002,
+ 500.0
+ ],
+ [
+ 110.117924556784089,
+ 21.406324753806828,
+ 500.0
+ ],
+ [
+ 110.110340575966035,
+ 21.484718291382077,
+ 500.0
+ ],
+ [
+ 110.117415605481938,
+ 21.563153088786571,
+ 500.0
+ ],
+ [
+ 110.138957759904173,
+ 21.639244282001187,
+ 500.0
+ ],
+ [
+ 110.174333031125528,
+ 21.710674665230087,
+ 500.0
+ ],
+ [
+ 110.222482024416863,
+ 21.775265704964035,
+ 500.0
+ ],
+ [
+ 110.281950211813069,
+ 21.83104470916992,
+ 500.0
+ ],
+ [
+ 110.350931036008049,
+ 21.876305995383031,
+ 500.0
+ ],
+ [
+ 110.427320706059319,
+ 21.90966404898402,
+ 500.0
+ ],
+ [
+ 110.508783046014926,
+ 21.930096890079959,
+ 500.0
+ ],
+ [
+ 110.59282232,
+ 21.936978170282835,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045007,
+ "name": "RCR45-2(第三核能發電廠)",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "21.960231",
+ "lng": "120.750786",
+ "radius": 770,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.750786,
+ 21.967184865298989,
+ 0.0
+ ],
+ [
+ 120.75208055241319,
+ 21.967079215401938,
+ 0.0
+ ],
+ [
+ 120.753335764907845,
+ 21.966765476281921,
+ 0.0
+ ],
+ [
+ 120.754513493564446,
+ 21.96625318204616,
+ 0.0
+ ],
+ [
+ 120.755577950040234,
+ 21.965557900491721,
+ 0.0
+ ],
+ [
+ 120.756496789420567,
+ 21.964700759845019,
+ 0.0
+ ],
+ [
+ 120.757242093237124,
+ 21.963707806495975,
+ 0.0
+ ],
+ [
+ 120.757791217756122,
+ 21.962609213277322,
+ 0.0
+ ],
+ [
+ 120.758127481761704,
+ 21.961438362383113,
+ 0.0
+ ],
+ [
+ 120.758240672965258,
+ 21.960230830827019,
+ 0.0
+ ],
+ [
+ 120.758127357706556,
+ 21.95902330929588,
+ 0.0
+ ],
+ [
+ 120.757790984608704,
+ 21.957852487267353,
+ 0.0
+ ],
+ [
+ 120.757241779118459,
+ 21.956753938273515,
+ 0.0
+ ],
+ [
+ 120.756496432217972,
+ 21.955761039174231,
+ 0.0
+ ],
+ [
+ 120.755577592837639,
+ 21.954903956258917,
+ 0.0
+ ],
+ [
+ 120.754513179445766,
+ 21.954208728954228,
+ 0.0
+ ],
+ [
+ 120.753335531760413,
+ 21.953696478943264,
+ 0.0
+ ],
+ [
+ 120.752080428358042,
+ 21.953382768688943,
+ 0.0
+ ],
+ [
+ 120.750786,
+ 21.953277128816843,
+ 0.0
+ ],
+ [
+ 120.749491571641968,
+ 21.953382768688943,
+ 0.0
+ ],
+ [
+ 120.748236468239597,
+ 21.953696478943264,
+ 0.0
+ ],
+ [
+ 120.747058820554244,
+ 21.954208728954228,
+ 0.0
+ ],
+ [
+ 120.745994407162371,
+ 21.954903956258917,
+ 0.0
+ ],
+ [
+ 120.745075567782038,
+ 21.955761039174231,
+ 0.0
+ ],
+ [
+ 120.744330220881551,
+ 21.956753938273515,
+ 0.0
+ ],
+ [
+ 120.743781015391306,
+ 21.957852487267353,
+ 0.0
+ ],
+ [
+ 120.743444642293454,
+ 21.95902330929588,
+ 0.0
+ ],
+ [
+ 120.743331327034753,
+ 21.960230830827019,
+ 0.0
+ ],
+ [
+ 120.743444518238306,
+ 21.961438362383113,
+ 0.0
+ ],
+ [
+ 120.743780782243888,
+ 21.962609213277322,
+ 0.0
+ ],
+ [
+ 120.744329906762886,
+ 21.963707806495975,
+ 0.0
+ ],
+ [
+ 120.745075210579444,
+ 21.964700759845019,
+ 0.0
+ ],
+ [
+ 120.745994049959776,
+ 21.965557900491721,
+ 0.0
+ ],
+ [
+ 120.747058506435565,
+ 21.96625318204616,
+ 0.0
+ ],
+ [
+ 120.748236235092165,
+ 21.966765476281921,
+ 0.0
+ ],
+ [
+ 120.74949144758682,
+ 21.967079215401938,
+ 0.0
+ ],
+ [
+ 120.750786,
+ 21.967184865298989,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000109,
+ "name": "RCR45(第三核能發電廠)",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "21.95",
+ "lng": "120.75",
+ "radius": 3704,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.75,
+ 21.983450789095169,
+ 0.0
+ ],
+ [
+ 120.756227992902012,
+ 21.982942479401274,
+ 0.0
+ ],
+ [
+ 120.762266621760702,
+ 21.981433005534644,
+ 0.0
+ ],
+ [
+ 120.76793229192792,
+ 21.978968262273966,
+ 0.0
+ ],
+ [
+ 120.773052770348585,
+ 21.975623185823029,
+ 0.0
+ ],
+ [
+ 120.777472428978726,
+ 21.971499471324353,
+ 0.0
+ ],
+ [
+ 120.781056978872371,
+ 21.966722476054333,
+ 0.0
+ ],
+ [
+ 120.783697550444373,
+ 21.961437403224135,
+ 0.0
+ ],
+ [
+ 120.785313995942744,
+ 21.95580488322031,
+ 0.0
+ ],
+ [
+ 120.785857314454759,
+ 21.949996087371915,
+ 0.0
+ ],
+ [
+ 120.785311127007702,
+ 21.944187523379622,
+ 0.0
+ ],
+ [
+ 120.783692158609995,
+ 21.938555670978864,
+ 0.0
+ ],
+ [
+ 120.781049714473099,
+ 21.933271620975979,
+ 0.0
+ ],
+ [
+ 120.77746416820807,
+ 21.928495880389519,
+ 0.0
+ ],
+ [
+ 120.773044509577289,
+ 21.924373501097357,
+ 0.0
+ ],
+ [
+ 120.767925027527028,
+ 21.92102967933025,
+ 0.0
+ ],
+ [
+ 120.762261229924462,
+ 21.9185659588973,
+ 0.0
+ ],
+ [
+ 120.756225123965763,
+ 21.917057152634104,
+ 0.0
+ ],
+ [
+ 120.75,
+ 21.916549074796464,
+ 0.0
+ ],
+ [
+ 120.743774876034237,
+ 21.917057152634104,
+ 0.0
+ ],
+ [
+ 120.737738770075538,
+ 21.9185659588973,
+ 0.0
+ ],
+ [
+ 120.732074972472972,
+ 21.92102967933025,
+ 0.0
+ ],
+ [
+ 120.726955490422711,
+ 21.924373501097357,
+ 0.0
+ ],
+ [
+ 120.72253583179193,
+ 21.928495880389519,
+ 0.0
+ ],
+ [
+ 120.718950285526901,
+ 21.933271620975979,
+ 0.0
+ ],
+ [
+ 120.716307841390005,
+ 21.938555670978864,
+ 0.0
+ ],
+ [
+ 120.714688872992298,
+ 21.944187523379622,
+ 0.0
+ ],
+ [
+ 120.714142685545241,
+ 21.949996087371915,
+ 0.0
+ ],
+ [
+ 120.714686004057256,
+ 21.95580488322031,
+ 0.0
+ ],
+ [
+ 120.716302449555627,
+ 21.961437403224135,
+ 0.0
+ ],
+ [
+ 120.718943021127629,
+ 21.966722476054333,
+ 0.0
+ ],
+ [
+ 120.722527571021274,
+ 21.971499471324353,
+ 0.0
+ ],
+ [
+ 120.726947229651415,
+ 21.975623185823029,
+ 0.0
+ ],
+ [
+ 120.73206770807208,
+ 21.978968262273966,
+ 0.0
+ ],
+ [
+ 120.737733378239298,
+ 21.981433005534644,
+ 0.0
+ ],
+ [
+ 120.743772007097988,
+ 21.982942479401274,
+ 0.0
+ ],
+ [
+ 120.75,
+ 21.983450789095169,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1368,
+ "name": "Hengchun Airport",
+ "country": "TW",
+ "city": "Hengchung",
+ "height": 0,
+ "level": 2,
+ "lat": "22.0408953186057",
+ "lng": "120.730188363696",
+ "radius": 5273,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.71994,
+ 22.08736,
+ 0.0
+ ],
+ [
+ 120.77828,
+ 22.02542,
+ 0.0
+ ],
+ [
+ 120.74043,
+ 21.99443,
+ 0.0
+ ],
+ [
+ 120.68209,
+ 22.05636,
+ 0.0
+ ],
+ [
+ 120.71994,
+ 22.08736,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1368,
+ "name": "Hengchun Airport",
+ "country": "TW",
+ "city": "Hengchung",
+ "height": 0,
+ "level": 2,
+ "lat": "22.0073336740032",
+ "lng": "120.761803729227",
+ "radius": 2870,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.77828,
+ 22.02542,
+ 0.0
+ ],
+ [
+ 120.74043,
+ 21.99443,
+ 0.0
+ ],
+ [
+ 120.74093133,
+ 21.990244558299999,
+ 0.0
+ ],
+ [
+ 120.747396174,
+ 21.991326452500001,
+ 0.0
+ ],
+ [
+ 120.753644704,
+ 21.993214095399999,
+ 0.0
+ ],
+ [
+ 120.759562041,
+ 21.9958727872,
+ 0.0
+ ],
+ [
+ 120.765039383,
+ 21.9992536516,
+ 0.0
+ ],
+ [
+ 120.769975994,
+ 22.003294531600002,
+ 0.0
+ ],
+ [
+ 120.774281058,
+ 22.00792113,
+ 0.0
+ ],
+ [
+ 120.77787534799999,
+ 22.013048372699998,
+ 0.0
+ ],
+ [
+ 120.780692685,
+ 22.0185819698,
+ 0.0
+ ],
+ [
+ 120.782681161,
+ 22.024420147400001,
+ 0.0
+ ],
+ [
+ 120.77828,
+ 22.02542,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1368,
+ "name": "Hengchun Airport",
+ "country": "TW",
+ "city": "Hengchung",
+ "height": 0,
+ "level": 2,
+ "lat": "22.0744608998157",
+ "lng": "120.698570783314",
+ "radius": 2870,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.71994,
+ 22.08736,
+ 0.0
+ ],
+ [
+ 120.71945029,
+ 22.091555313200001,
+ 0.0
+ ],
+ [
+ 120.712981126,
+ 22.090472284699999,
+ 0.0
+ ],
+ [
+ 120.70672889799999,
+ 22.088583074399999,
+ 0.0
+ ],
+ [
+ 120.700808735,
+ 22.085922474099998,
+ 0.0
+ ],
+ [
+ 120.695329633,
+ 22.082539478499999,
+ 0.0
+ ],
+ [
+ 120.690392446,
+ 22.078496381,
+ 0.0
+ ],
+ [
+ 120.686088027,
+ 22.073867623200002,
+ 0.0
+ ],
+ [
+ 120.682495558,
+ 22.068738422500001,
+ 0.0
+ ],
+ [
+ 120.679681088,
+ 22.0632031994,
+ 0.0
+ ],
+ [
+ 120.677696329,
+ 22.0573638372,
+ 0.0
+ ],
+ [
+ 120.68209,
+ 22.05636,
+ 0.0
+ ],
+ [
+ 120.71994,
+ 22.08736,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1368,
+ "name": "Hengchun Airport",
+ "country": "TW",
+ "city": "Hengchung",
+ "height": 60,
+ "level": 2,
+ "lat": "22.04089508853",
+ "lng": "120.730188384938",
+ "radius": 17008,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.58512,
+ 22.11264,
+ 60.0
+ ],
+ [
+ 120.67248,
+ 22.18421,
+ 60.0
+ ],
+ [
+ 120.87511,
+ 21.96903,
+ 60.0
+ ],
+ [
+ 120.78778,
+ 21.89756,
+ 60.0
+ ],
+ [
+ 120.58512,
+ 22.11264,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001509,
+ "name": "Hengchun Airport",
+ "country": "TW",
+ "city": "Hengchung",
+ "height": 500,
+ "level": 2,
+ "lat": "22.040106",
+ "lng": "120.730377",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.730377,
+ 22.491638982520769,
+ 500.0
+ ],
+ [
+ 120.814747148168678,
+ 22.484757568988421,
+ 500.0
+ ],
+ [
+ 120.896529551130556,
+ 22.464324386127068,
+ 500.0
+ ],
+ [
+ 120.973218083608671,
+ 22.430965948539576,
+ 500.0
+ ],
+ [
+ 121.042466999212152,
+ 22.385704486068228,
+ 500.0
+ ],
+ [
+ 121.102164105849752,
+ 22.32992581012353,
+ 500.0
+ ],
+ [
+ 121.150495899873107,
+ 22.265335902083539,
+ 500.0
+ ],
+ [
+ 121.186002570320738,
+ 22.19390770828555,
+ 500.0
+ ],
+ [
+ 121.207621228734567,
+ 22.117819929256715,
+ 500.0
+ ],
+ [
+ 121.214716206710577,
+ 22.039389817445841,
+ 500.0
+ ],
+ [
+ 121.207095760992019,
+ 21.961002144014305,
+ 500.0
+ ],
+ [
+ 121.185015006990483,
+ 21.885036562273978,
+ 500.0
+ ],
+ [
+ 121.149165344927411,
+ 21.813795588017882,
+ 500.0
+ ],
+ [
+ 121.100651034406624,
+ 21.749435342767747,
+ 500.0
+ ],
+ [
+ 121.040953906287413,
+ 21.693901073727957,
+ 500.0
+ ],
+ [
+ 120.971887474269593,
+ 21.648869283196998,
+ 500.0
+ ],
+ [
+ 120.895541925946432,
+ 21.615698079170865,
+ 500.0
+ ],
+ [
+ 120.814221640053887,
+ 21.595387105926523,
+ 500.0
+ ],
+ [
+ 120.730377,
+ 21.588548135642412,
+ 500.0
+ ],
+ [
+ 120.646532359946121,
+ 21.595387105926523,
+ 500.0
+ ],
+ [
+ 120.565212074053576,
+ 21.615698079170865,
+ 500.0
+ ],
+ [
+ 120.488866525730415,
+ 21.648869283196998,
+ 500.0
+ ],
+ [
+ 120.419800093712595,
+ 21.693901073727957,
+ 500.0
+ ],
+ [
+ 120.360102965593384,
+ 21.749435342767747,
+ 500.0
+ ],
+ [
+ 120.311588655072597,
+ 21.813795588017882,
+ 500.0
+ ],
+ [
+ 120.275738993009526,
+ 21.885036562273978,
+ 500.0
+ ],
+ [
+ 120.25365823900799,
+ 21.961002144014305,
+ 500.0
+ ],
+ [
+ 120.246037793289432,
+ 22.039389817445841,
+ 500.0
+ ],
+ [
+ 120.253132771265442,
+ 22.117819929256715,
+ 500.0
+ ],
+ [
+ 120.27475142967927,
+ 22.19390770828555,
+ 500.0
+ ],
+ [
+ 120.310258100126902,
+ 22.265335902083539,
+ 500.0
+ ],
+ [
+ 120.358589894150256,
+ 22.32992581012353,
+ 500.0
+ ],
+ [
+ 120.418287000787856,
+ 22.385704486068228,
+ 500.0
+ ],
+ [
+ 120.487535916391337,
+ 22.430965948539576,
+ 500.0
+ ],
+ [
+ 120.564224448869453,
+ 22.464324386127068,
+ 500.0
+ ],
+ [
+ 120.646006851831331,
+ 22.484757568988421,
+ 500.0
+ ],
+ [
+ 120.730377,
+ 22.491638982520769,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009831,
+ "name": "Mong Hsat Airport",
+ "country": "MM",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "20.51816",
+ "lng": "99.258483",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.258483,
+ 20.969775205749777,
+ 500.0
+ ],
+ [
+ 99.341970021656152,
+ 20.962894169662174,
+ 500.0
+ ],
+ [
+ 99.422898179261793,
+ 20.942461960086849,
+ 500.0
+ ],
+ [
+ 99.498789099161399,
+ 20.909104637517039,
+ 500.0
+ ],
+ [
+ 99.567322593607983,
+ 20.863843748721969,
+ 500.0
+ ],
+ [
+ 99.626408898690386,
+ 20.808064293616546,
+ 500.0
+ ],
+ [
+ 99.674253045167788,
+ 20.743471435557346,
+ 500.0
+ ],
+ [
+ 99.70940930622902,
+ 20.672037423754702,
+ 500.0
+ ],
+ [
+ 99.730824092716048,
+ 20.595940498925717,
+ 500.0
+ ],
+ [
+ 99.737866135521131,
+ 20.517497781340481,
+ 500.0
+ ],
+ [
+ 99.730343276969919,
+ 20.439094289995932,
+ 500.0
+ ],
+ [
+ 99.708505662025956,
+ 20.363110313382784,
+ 500.0
+ ],
+ [
+ 99.673035555857552,
+ 20.291849350466929,
+ 500.0
+ ],
+ [
+ 99.625024403117223,
+ 20.227468771896497,
+ 500.0
+ ],
+ [
+ 99.565938079078862,
+ 20.171915224266023,
+ 500.0
+ ],
+ [
+ 99.497571561852965,
+ 20.126866623156722,
+ 500.0
+ ],
+ [
+ 99.421994480477196,
+ 20.093682362032233,
+ 500.0
+ ],
+ [
+ 99.341489170284447,
+ 20.073363111716528,
+ 500.0
+ ],
+ [
+ 99.258483,
+ 20.066521306231152,
+ 500.0
+ ],
+ [
+ 99.175476829715549,
+ 20.073363111716528,
+ 500.0
+ ],
+ [
+ 99.094971519522801,
+ 20.093682362032233,
+ 500.0
+ ],
+ [
+ 99.019394438147032,
+ 20.126866623156722,
+ 500.0
+ ],
+ [
+ 98.951027920921135,
+ 20.171915224266023,
+ 500.0
+ ],
+ [
+ 98.891941596882774,
+ 20.227468771896497,
+ 500.0
+ ],
+ [
+ 98.843930444142444,
+ 20.291849350466929,
+ 500.0
+ ],
+ [
+ 98.80846033797404,
+ 20.363110313382784,
+ 500.0
+ ],
+ [
+ 98.786622723030078,
+ 20.439094289995932,
+ 500.0
+ ],
+ [
+ 98.779099864478866,
+ 20.517497781340481,
+ 500.0
+ ],
+ [
+ 98.786141907283948,
+ 20.595940498925717,
+ 500.0
+ ],
+ [
+ 98.807556693770977,
+ 20.672037423754702,
+ 500.0
+ ],
+ [
+ 98.842712954832209,
+ 20.743471435557346,
+ 500.0
+ ],
+ [
+ 98.890557101309611,
+ 20.808064293616546,
+ 500.0
+ ],
+ [
+ 98.949643406392013,
+ 20.863843748721969,
+ 500.0
+ ],
+ [
+ 99.018176900838597,
+ 20.909104637517039,
+ 500.0
+ ],
+ [
+ 99.094067820738204,
+ 20.942461960086849,
+ 500.0
+ ],
+ [
+ 99.174995978343844,
+ 20.962894169662174,
+ 500.0
+ ],
+ [
+ 99.258483,
+ 20.969775205749777,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285962,
+ "name": "Mong Hsat Airport",
+ "country": "MM",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "20.5180819162582",
+ "lng": "99.2584154821047",
+ "radius": 4754,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.273456368,
+ 20.5518795473,
+ 0.0
+ ],
+ [
+ 99.291832589500004,
+ 20.539608459,
+ 0.0
+ ],
+ [
+ 99.296846272600007,
+ 20.533733722099999,
+ 0.0
+ ],
+ [
+ 99.300445738899995,
+ 20.527011117200001,
+ 0.0
+ ],
+ [
+ 99.302473819499994,
+ 20.519734545399999,
+ 0.0
+ ],
+ [
+ 99.302842089400002,
+ 20.512222083099999,
+ 0.0
+ ],
+ [
+ 99.301534694899999,
+ 20.504802071299999,
+ 0.0
+ ],
+ [
+ 99.294193063199998,
+ 20.4915181607,
+ 0.0
+ ],
+ [
+ 99.281719392699998,
+ 20.4821790367,
+ 0.0
+ ],
+ [
+ 99.266270098299998,
+ 20.478398700100001,
+ 0.0
+ ],
+ [
+ 99.250514940499997,
+ 20.480830395400002,
+ 0.0
+ ],
+ [
+ 99.231222731700001,
+ 20.4917820109,
+ 0.0
+ ],
+ [
+ 99.219997486500006,
+ 20.5024213805,
+ 0.0
+ ],
+ [
+ 99.214361398799994,
+ 20.5164173183,
+ 0.0
+ ],
+ [
+ 99.213987898499994,
+ 20.523929554599999,
+ 0.0
+ ],
+ [
+ 99.215290345100001,
+ 20.531350354800001,
+ 0.0
+ ],
+ [
+ 99.222625485099996,
+ 20.5446383355,
+ 0.0
+ ],
+ [
+ 99.228337872799997,
+ 20.5499245862,
+ 0.0
+ ],
+ [
+ 99.242614888,
+ 20.556635989299998,
+ 0.0
+ ],
+ [
+ 99.258573392299994,
+ 20.55732843,
+ 0.0
+ ],
+ [
+ 99.273456368,
+ 20.5518795473,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285961,
+ "name": "Mong Hsat Airport",
+ "country": "MM",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "20.518078857025",
+ "lng": "99.2584135947055",
+ "radius": 3806,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.231436565699994,
+ 20.5411727593,
+ 0.0
+ ],
+ [
+ 99.291727444299994,
+ 20.5040066784,
+ 0.0
+ ],
+ [
+ 99.285393418500007,
+ 20.494991989,
+ 0.0
+ ],
+ [
+ 99.225100285600007,
+ 20.5321585115,
+ 0.0
+ ],
+ [
+ 99.231436565699994,
+ 20.5411727593,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285961,
+ "name": "Mong Hsat Airport",
+ "country": "MM",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "20.4899570900883",
+ "lng": "99.3040373252301",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.291727444299994,
+ 20.5040066784,
+ 60.0
+ ],
+ [
+ 99.323437815700004,
+ 20.490246787299998,
+ 60.0
+ ],
+ [
+ 99.311421472099994,
+ 20.473149511799999,
+ 60.0
+ ],
+ [
+ 99.285393418500007,
+ 20.494991989,
+ 60.0
+ ],
+ [
+ 99.291727444299994,
+ 20.5040066784,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285961,
+ "name": "Mong Hsat Airport",
+ "country": "MM",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "20.5462074724026",
+ "lng": "99.2127866924415",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.205394966200004,
+ 20.563013167800001,
+ 60.0
+ ],
+ [
+ 99.231436565699994,
+ 20.5411727593,
+ 60.0
+ ],
+ [
+ 99.225100285600007,
+ 20.5321585115,
+ 60.0
+ ],
+ [
+ 99.193379475399993,
+ 20.545914850300001,
+ 60.0
+ ],
+ [
+ 99.205394966200004,
+ 20.563013167800001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285961,
+ "name": "Mong Hsat Airport",
+ "country": "MM",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "20.4596185236249",
+ "lng": "99.3532170965152",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.323437815700004,
+ 20.490246787299998,
+ 150.0
+ ],
+ [
+ 99.397406550499994,
+ 20.458118008500001,
+ 150.0
+ ],
+ [
+ 99.372124801599995,
+ 20.422168678599999,
+ 150.0
+ ],
+ [
+ 99.311421472099994,
+ 20.473149511799999,
+ 150.0
+ ],
+ [
+ 99.323437815700004,
+ 20.490246787299998,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285961,
+ "name": "Mong Hsat Airport",
+ "country": "MM",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "20.5765266971678",
+ "lng": "99.1635659130706",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.144602252400006,
+ 20.613958969799999,
+ 150.0
+ ],
+ [
+ 99.205394966200004,
+ 20.563013167800001,
+ 150.0
+ ],
+ [
+ 99.193379475399993,
+ 20.545914850300001,
+ 150.0
+ ],
+ [
+ 99.11934204799999,
+ 20.577990517,
+ 150.0
+ ],
+ [
+ 99.144602252400006,
+ 20.613958969799999,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283652,
+ "name": "Luang Namtha Airport",
+ "country": "LA",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "20.9608539709703",
+ "lng": "101.402691893474",
+ "radius": 3849,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.408616231,
+ 20.995032811800002,
+ 0.0
+ ],
+ [
+ 101.40832415,
+ 20.9266322798,
+ 0.0
+ ],
+ [
+ 101.39677026299999,
+ 20.9266749256,
+ 0.0
+ ],
+ [
+ 101.397057058,
+ 20.9950754535,
+ 0.0
+ ],
+ [
+ 101.408616231,
+ 20.995032811800002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283652,
+ "name": "Luang Namtha Airport",
+ "country": "LA",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "20.9092977677243",
+ "lng": "101.402473787138",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.40832415,
+ 20.9266322798,
+ 60.0
+ ],
+ [
+ 101.41336630799999,
+ 20.894237760399999,
+ 60.0
+ ],
+ [
+ 101.391454217,
+ 20.8943186387,
+ 60.0
+ ],
+ [
+ 101.39677026299999,
+ 20.9266749256,
+ 60.0
+ ],
+ [
+ 101.40832415,
+ 20.9266322798,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283652,
+ "name": "Luang Namtha Airport",
+ "country": "LA",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "21.0124095858434",
+ "lng": "101.402910107214",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.413936996,
+ 21.027388935699999,
+ 60.0
+ ],
+ [
+ 101.408616231,
+ 20.995032811800002,
+ 60.0
+ ],
+ [
+ 101.397057058,
+ 20.9950754535,
+ 60.0
+ ],
+ [
+ 101.392010394,
+ 21.027469822699999,
+ 60.0
+ ],
+ [
+ 101.413936996,
+ 21.027388935699999,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283652,
+ "name": "Luang Namtha Airport",
+ "country": "LA",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "20.8541333937817",
+ "lng": "101.402240539391",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.41336630799999,
+ 20.894237760399999,
+ 150.0
+ ],
+ [
+ 101.425122888,
+ 20.818649974300001,
+ 150.0
+ ],
+ [
+ 101.379059013,
+ 20.818819997599999,
+ 150.0
+ ],
+ [
+ 101.391454217,
+ 20.8943186387,
+ 150.0
+ ],
+ [
+ 101.41336630799999,
+ 20.894237760399999,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283652,
+ "name": "Luang Namtha Airport",
+ "country": "LA",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "21.0675733643322",
+ "lng": "101.403143717002",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.426361107,
+ 21.1028859137,
+ 150.0
+ ],
+ [
+ 101.413936996,
+ 21.027388935699999,
+ 150.0
+ ],
+ [
+ 101.392010394,
+ 21.027469822699999,
+ 150.0
+ ],
+ [
+ 101.380226303,
+ 21.103056104499998,
+ 150.0
+ ],
+ [
+ 101.426361107,
+ 21.1028859137,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283653,
+ "name": "Luang Namtha Airport",
+ "country": "LA",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "20.9608549048838",
+ "lng": "101.402682679567",
+ "radius": 4799,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.441246042,
+ 20.967928326199999,
+ 0.0
+ ],
+ [
+ 101.44030396799999,
+ 20.946002389,
+ 0.0
+ ],
+ [
+ 101.437781849,
+ 20.9388604259,
+ 0.0
+ ],
+ [
+ 101.428311568,
+ 20.926797501700001,
+ 0.0
+ ],
+ [
+ 101.414408378,
+ 20.919374208899999,
+ 0.0
+ ],
+ [
+ 101.398475334,
+ 20.917873362600002,
+ 0.0
+ ],
+ [
+ 101.383265601,
+ 20.922554301400002,
+ 0.0
+ ],
+ [
+ 101.37140760299999,
+ 20.932608158600001,
+ 0.0
+ ],
+ [
+ 101.367409441,
+ 20.939135926399999,
+ 0.0
+ ],
+ [
+ 101.364951515,
+ 20.946297385800001,
+ 0.0
+ ],
+ [
+ 101.364198773,
+ 20.968203948700001,
+ 0.0
+ ],
+ [
+ 101.365068446,
+ 20.975680352200001,
+ 0.0
+ ],
+ [
+ 101.367584027,
+ 20.982824516499999,
+ 0.0
+ ],
+ [
+ 101.377046729,
+ 20.994895051699999,
+ 0.0
+ ],
+ [
+ 101.39095125199999,
+ 21.0023276286,
+ 0.0
+ ],
+ [
+ 101.40689244399999,
+ 21.003836343900002,
+ 0.0
+ ],
+ [
+ 101.414765632,
+ 21.002245112200001,
+ 0.0
+ ],
+ [
+ 101.42861066499999,
+ 20.994716383699998,
+ 0.0
+ ],
+ [
+ 101.437977135,
+ 20.982580605700001,
+ 0.0
+ ],
+ [
+ 101.440435855,
+ 20.9754192057,
+ 0.0
+ ],
+ [
+ 101.441246042,
+ 20.967928326199999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008410,
+ "name": "Luang Namtha Airport",
+ "country": "LA",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "20.96155",
+ "lng": "101.403045",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.403045,
+ 21.413141736119798,
+ 500.0
+ ],
+ [
+ 101.486781318473575,
+ 21.406260586214568,
+ 500.0
+ ],
+ [
+ 101.567950611568762,
+ 21.38582808130009,
+ 500.0
+ ],
+ [
+ 101.644066664426703,
+ 21.352470413551803,
+ 500.0
+ ],
+ [
+ 101.712802069532358,
+ 21.307209327880145,
+ 500.0
+ ],
+ [
+ 101.772060730100904,
+ 21.251430059728957,
+ 500.0
+ ],
+ [
+ 101.820042446802688,
+ 21.186838010116663,
+ 500.0
+ ],
+ [
+ 101.855297522570552,
+ 21.115405631182835,
+ 500.0
+ ],
+ [
+ 101.876769751771619,
+ 21.039311298139186,
+ 500.0
+ ],
+ [
+ 101.883826634197362,
+ 20.960872171146331,
+ 500.0
+ ],
+ [
+ 101.876276140866992,
+ 20.882473199273349,
+ 500.0
+ ],
+ [
+ 101.854369831104918,
+ 20.806494489071405,
+ 500.0
+ ],
+ [
+ 101.818792558227315,
+ 20.735239256860567,
+ 500.0
+ ],
+ [
+ 101.770639390778896,
+ 20.670864513595653,
+ 500.0
+ ],
+ [
+ 101.711380710547829,
+ 20.615316502533858,
+ 500.0
+ ],
+ [
+ 101.642816726064083,
+ 20.570272731675793,
+ 500.0
+ ],
+ [
+ 101.567022863487168,
+ 20.537092223621475,
+ 500.0
+ ],
+ [
+ 101.486287670615511,
+ 20.516775352955221,
+ 500.0
+ ],
+ [
+ 101.403045,
+ 20.509934362674635,
+ 500.0
+ ],
+ [
+ 101.319802329384501,
+ 20.516775352955221,
+ 500.0
+ ],
+ [
+ 101.239067136512844,
+ 20.537092223621475,
+ 500.0
+ ],
+ [
+ 101.163273273935928,
+ 20.570272731675793,
+ 500.0
+ ],
+ [
+ 101.094709289452183,
+ 20.615316502533858,
+ 500.0
+ ],
+ [
+ 101.035450609221115,
+ 20.670864513595653,
+ 500.0
+ ],
+ [
+ 100.987297441772697,
+ 20.735239256860567,
+ 500.0
+ ],
+ [
+ 100.951720168895093,
+ 20.806494489071405,
+ 500.0
+ ],
+ [
+ 100.92981385913302,
+ 20.882473199273349,
+ 500.0
+ ],
+ [
+ 100.92226336580265,
+ 20.960872171146331,
+ 500.0
+ ],
+ [
+ 100.929320248228393,
+ 21.039311298139186,
+ 500.0
+ ],
+ [
+ 100.950792477429459,
+ 21.115405631182835,
+ 500.0
+ ],
+ [
+ 100.986047553197324,
+ 21.186838010116663,
+ 500.0
+ ],
+ [
+ 101.034029269899108,
+ 21.251430059728957,
+ 500.0
+ ],
+ [
+ 101.093287930467653,
+ 21.307209327880145,
+ 500.0
+ ],
+ [
+ 101.162023335573309,
+ 21.352470413551803,
+ 500.0
+ ],
+ [
+ 101.23813938843125,
+ 21.38582808130009,
+ 500.0
+ ],
+ [
+ 101.319308681526437,
+ 21.406260586214568,
+ 500.0
+ ],
+ [
+ 101.403045,
+ 21.413141736119798,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010804,
+ "name": "Oudomsay Airport",
+ "country": "LA",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "20.682032",
+ "lng": "101.99318",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.99318,
+ 21.133638578726135,
+ 500.0
+ ],
+ [
+ 102.076758404888736,
+ 21.126757500183313,
+ 500.0
+ ],
+ [
+ 102.157774953231524,
+ 21.106325180265735,
+ 500.0
+ ],
+ [
+ 102.233748396350151,
+ 21.072967728080556,
+ 500.0
+ ],
+ [
+ 102.3023558995082,
+ 21.027706763552391,
+ 500.0
+ ],
+ [
+ 102.361505377227516,
+ 20.971927373568843,
+ 500.0
+ ],
+ [
+ 102.409399943301793,
+ 20.907334809270509,
+ 500.0
+ ],
+ [
+ 102.444592416119747,
+ 20.835901394861576,
+ 500.0
+ ],
+ [
+ 102.46602824827626,
+ 20.759805420826666,
+ 500.0
+ ],
+ [
+ 102.473075720459249,
+ 20.681364022318046,
+ 500.0
+ ],
+ [
+ 102.465542723334366,
+ 20.60296219271045,
+ 500.0
+ ],
+ [
+ 102.443679921439326,
+ 20.526980153551566,
+ 500.0
+ ],
+ [
+ 102.408170529601577,
+ 20.455721299706802,
+ 500.0
+ ],
+ [
+ 102.360107321495533,
+ 20.391342869287456,
+ 500.0
+ ],
+ [
+ 102.300957824561792,
+ 20.335791360232232,
+ 500.0
+ ],
+ [
+ 102.232518933997326,
+ 20.290744537878744,
+ 500.0
+ ],
+ [
+ 102.156862403225389,
+ 20.2575616589675,
+ 500.0
+ ],
+ [
+ 102.076272843835525,
+ 20.237243285102732,
+ 500.0
+ ],
+ [
+ 101.99318,
+ 20.230401779874985,
+ 500.0
+ ],
+ [
+ 101.910087156164465,
+ 20.237243285102732,
+ 500.0
+ ],
+ [
+ 101.829497596774601,
+ 20.2575616589675,
+ 500.0
+ ],
+ [
+ 101.753841066002664,
+ 20.290744537878744,
+ 500.0
+ ],
+ [
+ 101.685402175438199,
+ 20.335791360232232,
+ 500.0
+ ],
+ [
+ 101.626252678504457,
+ 20.391342869287456,
+ 500.0
+ ],
+ [
+ 101.578189470398414,
+ 20.455721299706802,
+ 500.0
+ ],
+ [
+ 101.542680078560664,
+ 20.526980153551566,
+ 500.0
+ ],
+ [
+ 101.520817276665625,
+ 20.60296219271045,
+ 500.0
+ ],
+ [
+ 101.513284279540741,
+ 20.681364022318046,
+ 500.0
+ ],
+ [
+ 101.520331751723731,
+ 20.759805420826666,
+ 500.0
+ ],
+ [
+ 101.541767583880244,
+ 20.835901394861576,
+ 500.0
+ ],
+ [
+ 101.576960056698198,
+ 20.907334809270509,
+ 500.0
+ ],
+ [
+ 101.624854622772474,
+ 20.971927373568843,
+ 500.0
+ ],
+ [
+ 101.684004100491791,
+ 21.027706763552391,
+ 500.0
+ ],
+ [
+ 101.752611603649839,
+ 21.072967728080556,
+ 500.0
+ ],
+ [
+ 101.828585046768467,
+ 21.106325180265735,
+ 500.0
+ ],
+ [
+ 101.909601595111255,
+ 21.126757500183313,
+ 500.0
+ ],
+ [
+ 101.99318,
+ 21.133638578726135,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283973,
+ "name": "Oudomsay Airport",
+ "country": "LA",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "20.6822369695865",
+ "lng": "101.993427840618",
+ "radius": 4823,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.03117512599999,
+ 20.672091829599999,
+ 0.0
+ ],
+ [
+ 102.01930419599999,
+ 20.6526491101,
+ 0.0
+ ],
+ [
+ 102.01354909699999,
+ 20.647399909200001,
+ 0.0
+ ],
+ [
+ 101.999215277,
+ 20.6407792959,
+ 0.0
+ ],
+ [
+ 101.983243497,
+ 20.640185400699998,
+ 0.0
+ ],
+ [
+ 101.96839362,
+ 20.6457208466,
+ 0.0
+ ],
+ [
+ 101.95723201,
+ 20.656429086199999,
+ 0.0
+ ],
+ [
+ 101.95168865399999,
+ 20.6704594138,
+ 0.0
+ ],
+ [
+ 101.951367555,
+ 20.677973786799999,
+ 0.0
+ ],
+ [
+ 101.952723424,
+ 20.6853864098,
+ 0.0
+ ],
+ [
+ 101.963085956,
+ 20.705539011399999,
+ 0.0
+ ],
+ [
+ 101.973298271,
+ 20.7170501061,
+ 0.0
+ ],
+ [
+ 101.987634545,
+ 20.723679713700001,
+ 0.0
+ ],
+ [
+ 102.003614805,
+ 20.72428084,
+ 0.0
+ ],
+ [
+ 102.01847411,
+ 20.718749476599999,
+ 0.0
+ ],
+ [
+ 102.024659721,
+ 20.713945094,
+ 0.0
+ ],
+ [
+ 102.03320275599999,
+ 20.701300162399999,
+ 0.0
+ ],
+ [
+ 102.035187015,
+ 20.69401246,
+ 0.0
+ ],
+ [
+ 102.03550810199999,
+ 20.686498085299998,
+ 0.0
+ ],
+ [
+ 102.034152228,
+ 20.679085461500001,
+ 0.0
+ ],
+ [
+ 102.03117512599999,
+ 20.672091829599999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283972,
+ "name": "Oudomsay Airport",
+ "country": "LA",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "20.6822303906462",
+ "lng": "101.993439021729",
+ "radius": 3874,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.015655381,
+ 20.710198019,
+ 0.0
+ ],
+ [
+ 101.981433263,
+ 20.649246727,
+ 0.0
+ ],
+ [
+ 101.971223187,
+ 20.654265243899999,
+ 0.0
+ ],
+ [
+ 102.00544096,
+ 20.7152161,
+ 0.0
+ ],
+ [
+ 102.015655381,
+ 20.710198019,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283972,
+ "name": "Oudomsay Airport",
+ "country": "LA",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "20.6363906223352",
+ "lng": "101.967703890417",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.981433263,
+ 20.649246727,
+ 60.0
+ ],
+ [
+ 101.969924073,
+ 20.6183343101,
+ 60.0
+ ],
+ [
+ 101.950559281,
+ 20.627852113,
+ 60.0
+ ],
+ [
+ 101.971223187,
+ 20.654265243899999,
+ 60.0
+ ],
+ [
+ 101.981433263,
+ 20.649246727,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283972,
+ "name": "Oudomsay Airport",
+ "country": "LA",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "20.7280720668639",
+ "lng": "102.019176885887",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.036332812,
+ 20.7366095679,
+ 60.0
+ ],
+ [
+ 102.015655381,
+ 20.710198019,
+ 60.0
+ ],
+ [
+ 102.00544096,
+ 20.7152161,
+ 60.0
+ ],
+ [
+ 102.016958336,
+ 20.746128243800001,
+ 60.0
+ ],
+ [
+ 102.036332812,
+ 20.7366095679,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283972,
+ "name": "Oudomsay Airport",
+ "country": "LA",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "20.5875499556358",
+ "lng": "101.940303418527",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.969924073,
+ 20.6183343101,
+ 150.0
+ ],
+ [
+ 101.943087449,
+ 20.546202378099998,
+ 150.0
+ ],
+ [
+ 101.902371366,
+ 20.566211929400001,
+ 150.0
+ ],
+ [
+ 101.950559281,
+ 20.627852113,
+ 150.0
+ ],
+ [
+ 101.969924073,
+ 20.6183343101,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283972,
+ "name": "Oudomsay Airport",
+ "country": "LA",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "20.7769063802951",
+ "lng": "102.046614479539",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.084608242,
+ 20.798226895,
+ 150.0
+ ],
+ [
+ 102.036332812,
+ 20.7366095679,
+ 150.0
+ ],
+ [
+ 102.016958336,
+ 20.746128243800001,
+ 150.0
+ ],
+ [
+ 102.043850542,
+ 20.8182535929,
+ 150.0
+ ],
+ [
+ 102.084608242,
+ 20.798226895,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 31513,
+ "name": "Vietnam government and Hoan Kiam Lake",
+ "country": "VN",
+ "city": "Ba Đình",
+ "height": 0,
+ "level": 2,
+ "lat": "21.033675",
+ "lng": "105.836924",
+ "radius": 2185,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.836924,
+ 21.053409894211793,
+ 0.0
+ ],
+ [
+ 105.840574612907389,
+ 21.053110037971493,
+ 0.0
+ ],
+ [
+ 105.844114261040517,
+ 21.052219583707959,
+ 0.0
+ ],
+ [
+ 105.847435356395465,
+ 21.050765597435149,
+ 0.0
+ ],
+ [
+ 105.850436961283449,
+ 21.048792273127095,
+ 0.0
+ ],
+ [
+ 105.853027858636452,
+ 21.046359588054113,
+ 0.0
+ ],
+ [
+ 105.855129325378002,
+ 21.043541478132632,
+ 0.0
+ ],
+ [
+ 105.856677524376366,
+ 21.040423589004401,
+ 0.0
+ ],
+ [
+ 105.857625442303927,
+ 21.037100671469013,
+ 0.0
+ ],
+ [
+ 105.857944314740664,
+ 21.033673700682094,
+ 0.0
+ ],
+ [
+ 105.857624495628741,
+ 21.030246806873429,
+ 0.0
+ ],
+ [
+ 105.856675745208946,
+ 21.026924110988077,
+ 0.0
+ ],
+ [
+ 105.855126928312188,
+ 21.023806561447419,
+ 0.0
+ ],
+ [
+ 105.853025132793718,
+ 21.020988868091777,
+ 0.0
+ ],
+ [
+ 105.850434235440645,
+ 21.018556626318908,
+ 0.0
+ ],
+ [
+ 105.847432959329467,
+ 21.016583718576715,
+ 0.0
+ ],
+ [
+ 105.844112481872898,
+ 21.015130071891527,
+ 0.0
+ ],
+ [
+ 105.840573666232061,
+ 21.014239839278076,
+ 0.0
+ ],
+ [
+ 105.836924,
+ 21.013940060016033,
+ 0.0
+ ],
+ [
+ 105.833274333767932,
+ 21.014239839278076,
+ 0.0
+ ],
+ [
+ 105.829735518127094,
+ 21.015130071891527,
+ 0.0
+ ],
+ [
+ 105.826415040670526,
+ 21.016583718576715,
+ 0.0
+ ],
+ [
+ 105.823413764559348,
+ 21.018556626318908,
+ 0.0
+ ],
+ [
+ 105.820822867206275,
+ 21.020988868091777,
+ 0.0
+ ],
+ [
+ 105.818721071687804,
+ 21.023806561447419,
+ 0.0
+ ],
+ [
+ 105.817172254791046,
+ 21.026924110988077,
+ 0.0
+ ],
+ [
+ 105.816223504371251,
+ 21.030246806873429,
+ 0.0
+ ],
+ [
+ 105.815903685259329,
+ 21.033673700682094,
+ 0.0
+ ],
+ [
+ 105.816222557696065,
+ 21.037100671469013,
+ 0.0
+ ],
+ [
+ 105.817170475623627,
+ 21.040423589004401,
+ 0.0
+ ],
+ [
+ 105.818718674621991,
+ 21.043541478132632,
+ 0.0
+ ],
+ [
+ 105.820820141363541,
+ 21.046359588054113,
+ 0.0
+ ],
+ [
+ 105.823411038716543,
+ 21.048792273127095,
+ 0.0
+ ],
+ [
+ 105.826412643604527,
+ 21.050765597435149,
+ 0.0
+ ],
+ [
+ 105.829733738959476,
+ 21.052219583707959,
+ 0.0
+ ],
+ [
+ 105.833273387092603,
+ 21.053110037971493,
+ 0.0
+ ],
+ [
+ 105.836924,
+ 21.053409894211793,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281076,
+ "name": "Noi Bai International Airport",
+ "country": "VN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "21.2206146950214",
+ "lng": "105.804145330855",
+ "radius": 4948,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.760357517,
+ 21.237732237500001,
+ 0.0
+ ],
+ [
+ 105.76580118320031,
+ 21.236176899345089,
+ 0.0
+ ],
+ [
+ 105.766557186,
+ 21.2384559636,
+ 0.0
+ ],
+ [
+ 105.851358715,
+ 21.214021545400001,
+ 0.0
+ ],
+ [
+ 105.850665451309951,
+ 21.211929888356043,
+ 0.0
+ ],
+ [
+ 105.850698756,
+ 21.2119203727,
+ 0.0
+ ],
+ [
+ 105.847307824,
+ 21.201601923599998,
+ 0.0
+ ],
+ [
+ 105.756963544,
+ 21.227414487499999,
+ 0.0
+ ],
+ [
+ 105.760357517,
+ 21.237732237500001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281076,
+ "name": "Noi Bai International Airport",
+ "country": "VN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "21.2026400106726",
+ "lng": "105.867256088336",
+ "radius": 2077,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.885400736941165,
+ 21.207062345687373,
+ 60.0
+ ],
+ [
+ 105.885423038,
+ 21.2070592237,
+ 60.0
+ ],
+ [
+ 105.878987232,
+ 21.187488755699999,
+ 60.0
+ ],
+ [
+ 105.847307824,
+ 21.201601923599998,
+ 60.0
+ ],
+ [
+ 105.850698756,
+ 21.2119203727,
+ 60.0
+ ],
+ [
+ 105.850665451309951,
+ 21.211929888356043,
+ 60.0
+ ],
+ [
+ 105.851358715,
+ 21.214021545400001,
+ 60.0
+ ],
+ [
+ 105.886070906,
+ 21.209082953900001,
+ 60.0
+ ],
+ [
+ 105.885400736941165,
+ 21.207062345687373,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281076,
+ "name": "Noi Bai International Airport",
+ "country": "VN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "21.2367112805285",
+ "lng": "105.74417966319",
+ "radius": 2327,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.728667637,
+ 21.251846023900001,
+ 60.0
+ ],
+ [
+ 105.733871651447629,
+ 21.249528301386178,
+ 60.0
+ ],
+ [
+ 105.73490294,
+ 21.252639359900002,
+ 60.0
+ ],
+ [
+ 105.766557186,
+ 21.2384559636,
+ 60.0
+ ],
+ [
+ 105.76580118320031,
+ 21.236176899345089,
+ 60.0
+ ],
+ [
+ 105.760357517,
+ 21.237732237500001,
+ 60.0
+ ],
+ [
+ 105.757469235934678,
+ 21.22895180172112,
+ 60.0
+ ],
+ [
+ 105.756963544,
+ 21.227414487499999,
+ 60.0
+ ],
+ [
+ 105.72223448,
+ 21.2322756925,
+ 60.0
+ ],
+ [
+ 105.728667637,
+ 21.251846023900001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281076,
+ "name": "Noi Bai International Airport",
+ "country": "VN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "21.1863994999156",
+ "lng": "105.923790551965",
+ "radius": 4653,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.965586008998244,
+ 21.193103909722691,
+ 150.0
+ ],
+ [
+ 105.95288233,
+ 21.154535089700001,
+ 150.0
+ ],
+ [
+ 105.878987232,
+ 21.187488755699999,
+ 150.0
+ ],
+ [
+ 105.885423038,
+ 21.2070592237,
+ 150.0
+ ],
+ [
+ 105.885400736941165,
+ 21.207062345687373,
+ 150.0
+ ],
+ [
+ 105.886070906,
+ 21.209082953900001,
+ 150.0
+ ],
+ [
+ 105.967056978,
+ 21.197531996399999,
+ 150.0
+ ],
+ [
+ 105.965586008998244,
+ 21.193103909722691,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281076,
+ "name": "Noi Bai International Airport",
+ "country": "VN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "21.2528889901869",
+ "lng": "105.687515643089",
+ "radius": 4910,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.654700968,
+ 21.284755152,
+ 150.0
+ ],
+ [
+ 105.659932611842692,
+ 21.282427497669737,
+ 150.0
+ ],
+ [
+ 105.661019325,
+ 21.285710962,
+ 150.0
+ ],
+ [
+ 105.73490294,
+ 21.252639359900002,
+ 150.0
+ ],
+ [
+ 105.733871651447629,
+ 21.249528301386178,
+ 150.0
+ ],
+ [
+ 105.728667637,
+ 21.251846023900001,
+ 150.0
+ ],
+ [
+ 105.722763720471178,
+ 21.233885696952129,
+ 150.0
+ ],
+ [
+ 105.72223448,
+ 21.2322756925,
+ 150.0
+ ],
+ [
+ 105.641191107,
+ 21.2435908639,
+ 150.0
+ ],
+ [
+ 105.654700968,
+ 21.284755152,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008224,
+ "name": "Noi Bai International Airport",
+ "country": "VN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "21.218796",
+ "lng": "105.803474",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.803474,
+ 21.670373935267513,
+ 500.0
+ ],
+ [
+ 105.887357939197273,
+ 21.663492720829126,
+ 500.0
+ ],
+ [
+ 105.968670023619623,
+ 21.643060049149408,
+ 500.0
+ ],
+ [
+ 106.044919398076544,
+ 21.60970218902391,
+ 500.0
+ ],
+ [
+ 106.11377438177189,
+ 21.564441000627955,
+ 500.0
+ ],
+ [
+ 106.173135128562151,
+ 21.508661856367457,
+ 500.0
+ ],
+ [
+ 106.221198341357962,
+ 21.444070295371116,
+ 500.0
+ ],
+ [
+ 106.256511969943773,
+ 21.372638887554089,
+ 500.0
+ ],
+ [
+ 106.278018255978267,
+ 21.296546085936583,
+ 500.0
+ ],
+ [
+ 106.285083966049555,
+ 21.218109073285881,
+ 500.0
+ ],
+ [
+ 106.277517142808819,
+ 21.139712757232388,
+ 500.0
+ ],
+ [
+ 106.255570178695081,
+ 21.063737137593172,
+ 500.0
+ ],
+ [
+ 106.219929455912876,
+ 20.992485265277342,
+ 500.0
+ ],
+ [
+ 106.1716921864017,
+ 20.928113940968718,
+ 500.0
+ ],
+ [
+ 106.112331419528275,
+ 20.872569172285441,
+ 500.0
+ ],
+ [
+ 106.043650461779094,
+ 20.827528229202752,
+ 500.0
+ ],
+ [
+ 105.967728174543737,
+ 20.794349917793586,
+ 500.0
+ ],
+ [
+ 105.886856788283794,
+ 20.774034439713358,
+ 500.0
+ ],
+ [
+ 105.803474,
+ 20.767193926461744,
+ 500.0
+ ],
+ [
+ 105.720091211716195,
+ 20.774034439713358,
+ 500.0
+ ],
+ [
+ 105.639219825456252,
+ 20.794349917793586,
+ 500.0
+ ],
+ [
+ 105.563297538220894,
+ 20.827528229202752,
+ 500.0
+ ],
+ [
+ 105.494616580471714,
+ 20.872569172285441,
+ 500.0
+ ],
+ [
+ 105.435255813598289,
+ 20.928113940968718,
+ 500.0
+ ],
+ [
+ 105.387018544087113,
+ 20.992485265277342,
+ 500.0
+ ],
+ [
+ 105.351377821304908,
+ 21.063737137593172,
+ 500.0
+ ],
+ [
+ 105.32943085719117,
+ 21.139712757232388,
+ 500.0
+ ],
+ [
+ 105.321864033950433,
+ 21.218109073285881,
+ 500.0
+ ],
+ [
+ 105.328929744021721,
+ 21.296546085936583,
+ 500.0
+ ],
+ [
+ 105.350436030056215,
+ 21.372638887554089,
+ 500.0
+ ],
+ [
+ 105.385749658642027,
+ 21.444070295371116,
+ 500.0
+ ],
+ [
+ 105.433812871437837,
+ 21.508661856367457,
+ 500.0
+ ],
+ [
+ 105.493173618228099,
+ 21.564441000627955,
+ 500.0
+ ],
+ [
+ 105.562028601923444,
+ 21.60970218902391,
+ 500.0
+ ],
+ [
+ 105.638277976380365,
+ 21.643060049149408,
+ 500.0
+ ],
+ [
+ 105.719590060802716,
+ 21.663492720829126,
+ 500.0
+ ],
+ [
+ 105.803474,
+ 21.670373935267513,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281077,
+ "name": "Noi Bai International Airport",
+ "country": "VN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "21.2200941729684",
+ "lng": "105.8038748259",
+ "radius": 5883,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 105.859285551106865,
+ 21.208617825799209,
+ 0.0
+ ],
+ [
+ 105.85292368499999,
+ 21.194011112799998,
+ 0.0
+ ],
+ [
+ 105.84118161799999,
+ 21.183818532099998,
+ 0.0
+ ],
+ [
+ 105.833869378,
+ 21.180645476399999,
+ 0.0
+ ],
+ [
+ 105.81794564499999,
+ 21.1788327318,
+ 0.0
+ ],
+ [
+ 105.775025965,
+ 21.190273037600001,
+ 0.0
+ ],
+ [
+ 105.760998842,
+ 21.1975331298,
+ 0.0
+ ],
+ [
+ 105.751350007,
+ 21.209484329799999,
+ 0.0
+ ],
+ [
+ 105.74774834599999,
+ 21.224061003799999,
+ 0.0
+ ],
+ [
+ 105.748455488,
+ 21.231552436299999,
+ 0.0
+ ],
+ [
+ 105.75473373,
+ 21.245318646200001,
+ 0.0
+ ],
+ [
+ 105.76003078399999,
+ 21.250991608300001,
+ 0.0
+ ],
+ [
+ 105.773793512,
+ 21.258687845699999,
+ 0.0
+ ],
+ [
+ 105.787914441,
+ 21.261051397399999,
+ 0.0
+ ],
+ [
+ 105.803902314,
+ 21.259700488899998,
+ 0.0
+ ],
+ [
+ 105.840815021,
+ 21.248241479699999,
+ 0.0
+ ],
+ [
+ 105.847409778,
+ 21.243908324100001,
+ 0.0
+ ],
+ [
+ 105.857026254,
+ 21.231932911200001,
+ 0.0
+ ],
+ [
+ 105.859627827,
+ 21.224814258,
+ 0.0
+ ],
+ [
+ 105.859285551106865,
+ 21.208617825799209,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009268,
+ "name": "Cat Bi International Airport",
+ "country": "VN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "20.820612",
+ "lng": "106.725592",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.725592,
+ 21.272211240043955,
+ 500.0
+ ],
+ [
+ 106.809248373064648,
+ 21.265330125956741,
+ 500.0
+ ],
+ [
+ 106.890340337167899,
+ 21.244897713819896,
+ 500.0
+ ],
+ [
+ 106.966384191326924,
+ 21.211540153900749,
+ 500.0
+ ],
+ [
+ 107.035054842839386,
+ 21.166279128056843,
+ 500.0
+ ],
+ [
+ 107.094258225617182,
+ 21.110499796794002,
+ 500.0
+ ],
+ [
+ 107.142195817717379,
+ 21.045907485536024,
+ 500.0
+ ],
+ [
+ 107.177419195782818,
+ 20.974474581911501,
+ 500.0
+ ],
+ [
+ 107.198872994039462,
+ 20.898379418435926,
+ 500.0
+ ],
+ [
+ 107.205925108070261,
+ 20.819939142718983,
+ 500.0
+ ],
+ [
+ 107.198383468708471,
+ 20.741538726263798,
+ 500.0
+ ],
+ [
+ 107.176499182758093,
+ 20.66555833373252,
+ 500.0
+ ],
+ [
+ 107.140956274430394,
+ 20.594301271625429,
+ 500.0
+ ],
+ [
+ 107.092848650736471,
+ 20.529924665605265,
+ 500.0
+ ],
+ [
+ 107.033645248523257,
+ 20.474374887520678,
+ 500.0
+ ],
+ [
+ 106.965144598827735,
+ 20.429329575294471,
+ 500.0
+ ],
+ [
+ 106.889420268181098,
+ 20.396147869731518,
+ 500.0
+ ],
+ [
+ 106.808758811207014,
+ 20.37583023982917,
+ 500.0
+ ],
+ [
+ 106.725592,
+ 20.368988989462579,
+ 500.0
+ ],
+ [
+ 106.642425188792998,
+ 20.37583023982917,
+ 500.0
+ ],
+ [
+ 106.561763731818914,
+ 20.396147869731518,
+ 500.0
+ ],
+ [
+ 106.486039401172278,
+ 20.429329575294471,
+ 500.0
+ ],
+ [
+ 106.417538751476755,
+ 20.474374887520678,
+ 500.0
+ ],
+ [
+ 106.358335349263541,
+ 20.529924665605265,
+ 500.0
+ ],
+ [
+ 106.310227725569618,
+ 20.594301271625429,
+ 500.0
+ ],
+ [
+ 106.274684817241919,
+ 20.66555833373252,
+ 500.0
+ ],
+ [
+ 106.252800531291541,
+ 20.741538726263798,
+ 500.0
+ ],
+ [
+ 106.245258891929751,
+ 20.819939142718983,
+ 500.0
+ ],
+ [
+ 106.25231100596055,
+ 20.898379418435926,
+ 500.0
+ ],
+ [
+ 106.273764804217194,
+ 20.974474581911501,
+ 500.0
+ ],
+ [
+ 106.308988182282633,
+ 21.045907485536024,
+ 500.0
+ ],
+ [
+ 106.35692577438283,
+ 21.110499796794002,
+ 500.0
+ ],
+ [
+ 106.416129157160626,
+ 21.166279128056843,
+ 500.0
+ ],
+ [
+ 106.484799808673088,
+ 21.211540153900749,
+ 500.0
+ ],
+ [
+ 106.560843662832113,
+ 21.244897713819896,
+ 500.0
+ ],
+ [
+ 106.641935626935364,
+ 21.265330125956741,
+ 500.0
+ ],
+ [
+ 106.725592,
+ 21.272211240043955,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281233,
+ "name": "Cat Bi International Airport",
+ "country": "VN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "20.8193315235643",
+ "lng": "106.725000506183",
+ "radius": 5196,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.702131191,
+ 20.8502198202,
+ 0.0
+ ],
+ [
+ 106.724122968,
+ 20.856884154,
+ 0.0
+ ],
+ [
+ 106.740043443,
+ 20.858440496499998,
+ 0.0
+ ],
+ [
+ 106.747914405,
+ 20.8568728035,
+ 0.0
+ ],
+ [
+ 106.76177173799999,
+ 20.8493854988,
+ 0.0
+ ],
+ [
+ 106.767152237,
+ 20.843793314,
+ 0.0
+ ],
+ [
+ 106.773651532,
+ 20.830123774,
+ 0.0
+ ],
+ [
+ 106.774486602,
+ 20.822644010600001,
+ 0.0
+ ],
+ [
+ 106.773639625,
+ 20.815165421,
+ 0.0
+ ],
+ [
+ 106.767120403,
+ 20.801504688200001,
+ 0.0
+ ],
+ [
+ 106.755222317,
+ 20.791503004799999,
+ 0.0
+ ],
+ [
+ 106.71799142499999,
+ 20.7802211779,
+ 0.0
+ ],
+ [
+ 106.70208114899999,
+ 20.781796200100001,
+ 0.0
+ ],
+ [
+ 106.68823043099999,
+ 20.789284151499999,
+ 0.0
+ ],
+ [
+ 106.678833273,
+ 20.801391036,
+ 0.0
+ ],
+ [
+ 106.67635159699999,
+ 20.808544658300001,
+ 0.0
+ ],
+ [
+ 106.675515096,
+ 20.8160242744,
+ 0.0
+ ],
+ [
+ 106.676360569,
+ 20.823503013100002,
+ 0.0
+ ],
+ [
+ 106.682878656,
+ 20.837164616100001,
+ 0.0
+ ],
+ [
+ 106.68826672,
+ 20.842750235,
+ 0.0
+ ],
+ [
+ 106.702131191,
+ 20.8502198202,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281232,
+ "name": "Cat Bi International Airport",
+ "country": "VN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "20.8193261601935",
+ "lng": "106.725002366655",
+ "radius": 4244,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.684764223,
+ 20.812812163099998,
+ 0.0
+ ],
+ [
+ 106.761678026,
+ 20.836119457900001,
+ 0.0
+ ],
+ [
+ 106.765239713,
+ 20.825853843499999,
+ 0.0
+ ],
+ [
+ 106.68832386,
+ 20.802546094499998,
+ 0.0
+ ],
+ [
+ 106.684764223,
+ 20.812812163099998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281232,
+ "name": "Cat Bi International Airport",
+ "country": "VN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "20.836339315193",
+ "lng": "106.781123566577",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.761678026,
+ 20.836119457900001,
+ 60.0
+ ],
+ [
+ 106.793035958,
+ 20.8507058394,
+ 60.0
+ ],
+ [
+ 106.79978738,
+ 20.831234378600001,
+ 60.0
+ ],
+ [
+ 106.765239713,
+ 20.825853843499999,
+ 60.0
+ ],
+ [
+ 106.761678026,
+ 20.836119457900001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281232,
+ "name": "Cat Bi International Airport",
+ "country": "VN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "20.8023268724319",
+ "lng": "106.668882491751",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.650221228,
+ 20.8074291151,
+ 60.0
+ ],
+ [
+ 106.684764223,
+ 20.812812163099998,
+ 60.0
+ ],
+ [
+ 106.68832386,
+ 20.802546094499998,
+ 60.0
+ ],
+ [
+ 106.656976855,
+ 20.787958012800001,
+ 60.0
+ ],
+ [
+ 106.650221228,
+ 20.8074291151,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281232,
+ "name": "Cat Bi International Airport",
+ "country": "VN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "20.8533405037156",
+ "lng": "106.8372782925",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.793035958,
+ 20.8507058394,
+ 150.0
+ ],
+ [
+ 106.866228117,
+ 20.884718515900001,
+ 150.0
+ ],
+ [
+ 106.88040819299999,
+ 20.843762029,
+ 150.0
+ ],
+ [
+ 106.79978738,
+ 20.831234378600001,
+ 150.0
+ ],
+ [
+ 106.793035958,
+ 20.8507058394,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281232,
+ "name": "Cat Bi International Airport",
+ "country": "VN",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "20.7853030144177",
+ "lng": "106.612754435037",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 106.569630509,
+ 20.794841782900001,
+ 150.0
+ ],
+ [
+ 106.650221228,
+ 20.8074291151,
+ 150.0
+ ],
+ [
+ 106.656976855,
+ 20.787958012800001,
+ 150.0
+ ],
+ [
+ 106.583857405,
+ 20.7538970393,
+ 150.0
+ ],
+ [
+ 106.569630509,
+ 20.794841782900001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286939,
+ "name": "Tachileik Airport",
+ "country": "MM",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "20.4848319080492",
+ "lng": "99.9347518364187",
+ "radius": 5068,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.897978509799998,
+ 20.498998067399999,
+ 0.0
+ ],
+ [
+ 99.910469326799998,
+ 20.514323878900001,
+ 0.0
+ ],
+ [
+ 99.922586425899993,
+ 20.524069027199999,
+ 0.0
+ ],
+ [
+ 99.937889254699996,
+ 20.528354681500002,
+ 0.0
+ ],
+ [
+ 99.945917314400006,
+ 20.528176818799999,
+ 0.0
+ ],
+ [
+ 99.953730315900003,
+ 20.526439351800001,
+ 0.0
+ ],
+ [
+ 99.967368810300002,
+ 20.518654429400002,
+ 0.0
+ ],
+ [
+ 99.976445697299994,
+ 20.506346745199998,
+ 0.0
+ ],
+ [
+ 99.978743815300007,
+ 20.499141011,
+ 0.0
+ ],
+ [
+ 99.979392136800001,
+ 20.491645194699998,
+ 0.0
+ ],
+ [
+ 99.975700333600003,
+ 20.477092113299999,
+ 0.0
+ ],
+ [
+ 99.953494647,
+ 20.449859630700001,
+ 0.0
+ ],
+ [
+ 99.939480189899996,
+ 20.442696189599999,
+ 0.0
+ ],
+ [
+ 99.923568362599994,
+ 20.4414917812,
+ 0.0
+ ],
+ [
+ 99.908508700400006,
+ 20.4464545242,
+ 0.0
+ ],
+ [
+ 99.902130279299996,
+ 20.451019354100001,
+ 0.0
+ ],
+ [
+ 99.893057607100005,
+ 20.4633276472,
+ 0.0
+ ],
+ [
+ 99.890760042099998,
+ 20.470533386,
+ 0.0
+ ],
+ [
+ 99.890111683200004,
+ 20.478029192699999,
+ 0.0
+ ],
+ [
+ 99.891141105299994,
+ 20.4854874828,
+ 0.0
+ ],
+ [
+ 99.897978509799998,
+ 20.498998067399999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286938,
+ "name": "Tachileik Airport",
+ "country": "MM",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "20.4848306276372",
+ "lng": "99.9347536270412",
+ "radius": 4116,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.906445325099995,
+ 20.458999229300002,
+ 0.0
+ ],
+ [
+ 99.953903497300004,
+ 20.5172167116,
+ 0.0
+ ],
+ [
+ 99.963061371799995,
+ 20.510667146799999,
+ 0.0
+ ],
+ [
+ 99.915599190199998,
+ 20.4524490097,
+ 0.0
+ ],
+ [
+ 99.906445325099995,
+ 20.458999229300002,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286938,
+ "name": "Tachileik Airport",
+ "country": "MM",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "20.5277354624011",
+ "lng": "99.9697297666325",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.953903497300004,
+ 20.5172167116,
+ 60.0
+ ],
+ [
+ 99.970780098500001,
+ 20.545883849500001,
+ 60.0
+ ],
+ [
+ 99.988149570399997,
+ 20.533460263799999,
+ 60.0
+ ],
+ [
+ 99.963061371799995,
+ 20.510667146799999,
+ 60.0
+ ],
+ [
+ 99.953903497300004,
+ 20.5172167116,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286938,
+ "name": "Tachileik Airport",
+ "country": "MM",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "20.4419304317996",
+ "lng": "99.8997799985005",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.8813711735,
+ 20.436204306899999,
+ 60.0
+ ],
+ [
+ 99.906445325099995,
+ 20.458999229300002,
+ 60.0
+ ],
+ [
+ 99.915599190199998,
+ 20.4524490097,
+ 60.0
+ ],
+ [
+ 99.898733684299998,
+ 20.4237814498,
+ 60.0
+ ],
+ [
+ 99.8813711735,
+ 20.436204306899999,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286938,
+ "name": "Tachileik Airport",
+ "country": "MM",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "20.5715729131044",
+ "lng": "100.005492342722",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.970780098500001,
+ 20.545883849500001,
+ 150.0
+ ],
+ [
+ 100.010183474,
+ 20.612767477,
+ 150.0
+ ],
+ [
+ 100.046717795,
+ 20.5866301571,
+ 150.0
+ ],
+ [
+ 99.988149570399997,
+ 20.533460263799999,
+ 150.0
+ ],
+ [
+ 99.970780098500001,
+ 20.545883849500001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30286938,
+ "name": "Tachileik Airport",
+ "country": "MM",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "20.3980832627467",
+ "lng": "99.8640604096853",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.822893711099994,
+ 20.383002205899999,
+ 150.0
+ ],
+ [
+ 99.8813711735,
+ 20.436204306899999,
+ 150.0
+ ],
+ [
+ 99.898733684299998,
+ 20.4237814498,
+ 150.0
+ ],
+ [
+ 99.859405252900004,
+ 20.356884171,
+ 150.0
+ ],
+ [
+ 99.822893711099994,
+ 20.383002205899999,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010793,
+ "name": "Tachileik Airport",
+ "country": "MM",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "20.4853",
+ "lng": "99.934983",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 99.934983,
+ 20.936916928981855,
+ 500.0
+ ],
+ [
+ 100.01845180318459,
+ 20.930035901463427,
+ 500.0
+ ],
+ [
+ 100.099362339033519,
+ 20.909603714184737,
+ 500.0
+ ],
+ [
+ 100.175236807168275,
+ 20.876246417898329,
+ 500.0
+ ],
+ [
+ 100.243755547623493,
+ 20.83098554471443,
+ 500.0
+ ],
+ [
+ 100.302829259346808,
+ 20.775206077118305,
+ 500.0
+ ],
+ [
+ 100.350663355242091,
+ 20.710613160870917,
+ 500.0
+ ],
+ [
+ 100.385812398453183,
+ 20.639179030145126,
+ 500.0
+ ],
+ [
+ 100.407222990738973,
+ 20.563081915669688,
+ 500.0
+ ],
+ [
+ 100.414263952592933,
+ 20.484638934710514,
+ 500.0
+ ],
+ [
+ 100.4067431165372,
+ 20.406235111370794,
+ 500.0
+ ],
+ [
+ 100.384910523791504,
+ 20.330250747522374,
+ 500.0
+ ],
+ [
+ 100.349448250063162,
+ 20.258989362954509,
+ 500.0
+ ],
+ [
+ 100.301447474956078,
+ 20.194608354835321,
+ 500.0
+ ],
+ [
+ 100.242373744328233,
+ 20.139054399510012,
+ 500.0
+ ],
+ [
+ 100.174021654121418,
+ 20.094005442631623,
+ 500.0
+ ],
+ [
+ 100.09846040993844,
+ 20.06082090503153,
+ 500.0
+ ],
+ [
+ 100.017971893453947,
+ 20.040501479397143,
+ 500.0
+ ],
+ [
+ 99.934983,
+ 20.033659613849224,
+ 500.0
+ ],
+ [
+ 99.851994106546059,
+ 20.040501479397143,
+ 500.0
+ ],
+ [
+ 99.771505590061565,
+ 20.06082090503153,
+ 500.0
+ ],
+ [
+ 99.695944345878587,
+ 20.094005442631623,
+ 500.0
+ ],
+ [
+ 99.627592255671772,
+ 20.139054399510012,
+ 500.0
+ ],
+ [
+ 99.568518525043928,
+ 20.194608354835321,
+ 500.0
+ ],
+ [
+ 99.520517749936843,
+ 20.258989362954509,
+ 500.0
+ ],
+ [
+ 99.485055476208501,
+ 20.330250747522374,
+ 500.0
+ ],
+ [
+ 99.463222883462805,
+ 20.406235111370794,
+ 500.0
+ ],
+ [
+ 99.455702047407073,
+ 20.484638934710514,
+ 500.0
+ ],
+ [
+ 99.462743009261033,
+ 20.563081915669688,
+ 500.0
+ ],
+ [
+ 99.484153601546822,
+ 20.639179030145126,
+ 500.0
+ ],
+ [
+ 99.519302644757914,
+ 20.710613160870917,
+ 500.0
+ ],
+ [
+ 99.567136740653197,
+ 20.775206077118305,
+ 500.0
+ ],
+ [
+ 99.626210452376512,
+ 20.83098554471443,
+ 500.0
+ ],
+ [
+ 99.69472919283173,
+ 20.876246417898329,
+ 500.0
+ ],
+ [
+ 99.770603660966486,
+ 20.909603714184737,
+ 500.0
+ ],
+ [
+ 99.851514196815415,
+ 20.930035901463427,
+ 500.0
+ ],
+ [
+ 99.934983,
+ 20.936916928981855,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283537,
+ "name": "Luang Phabang International Airport",
+ "country": "LA",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "19.9062455898116",
+ "lng": "102.169253861294",
+ "radius": 4299,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.134741789,
+ 19.885217474099999,
+ 0.0
+ ],
+ [
+ 102.196237233,
+ 19.935430320199998,
+ 0.0
+ ],
+ [
+ 102.20376452399999,
+ 19.9272824052,
+ 0.0
+ ],
+ [
+ 102.142265756,
+ 19.877068795300001,
+ 0.0
+ ],
+ [
+ 102.134741789,
+ 19.885217474099999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283537,
+ "name": "Luang Phabang International Airport",
+ "country": "LA",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "19.9427362429724",
+ "lng": "102.213940447488",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.196237233,
+ 19.935430320199998,
+ 60.0
+ ],
+ [
+ 102.218867669,
+ 19.960311286900001,
+ 60.0
+ ],
+ [
+ 102.233143089,
+ 19.9448561066,
+ 60.0
+ ],
+ [
+ 102.20376452399999,
+ 19.9272824052,
+ 60.0
+ ],
+ [
+ 102.196237233,
+ 19.935430320199998,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283537,
+ "name": "Luang Phabang International Airport",
+ "country": "LA",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "19.8697634284568",
+ "lng": "102.124569231568",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.10537554,
+ 19.867641933600002,
+ 60.0
+ ],
+ [
+ 102.134741789,
+ 19.885217474099999,
+ 60.0
+ ],
+ [
+ 102.142265756,
+ 19.877068795300001,
+ 60.0
+ ],
+ [
+ 102.119647923,
+ 19.8521872651,
+ 60.0
+ ],
+ [
+ 102.10537554,
+ 19.867641933600002,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283537,
+ "name": "Luang Phabang International Airport",
+ "country": "LA",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "19.9788995434804",
+ "lng": "102.258260041175",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.218867669,
+ 19.960311286900001,
+ 150.0
+ ],
+ [
+ 102.271699803,
+ 20.018355710600002,
+ 150.0
+ ],
+ [
+ 102.301718515,
+ 19.985842611300001,
+ 150.0
+ ],
+ [
+ 102.233143089,
+ 19.9448561066,
+ 150.0
+ ],
+ [
+ 102.218867669,
+ 19.960311286900001,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283537,
+ "name": "Luang Phabang International Airport",
+ "country": "LA",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "19.8335865191031",
+ "lng": "102.080292243786",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.036879601,
+ 19.826613644799998,
+ 150.0
+ ],
+ [
+ 102.10537554,
+ 19.867641933600002,
+ 150.0
+ ],
+ [
+ 102.119647923,
+ 19.8521872651,
+ 150.0
+ ],
+ [
+ 102.06690054,
+ 19.794119282400001,
+ 150.0
+ ],
+ [
+ 102.036879601,
+ 19.826613644799998,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008332,
+ "name": "Luang Phabang International Airport",
+ "country": "LA",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "19.905082",
+ "lng": "102.167272",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.167272,
+ 20.356728986100936,
+ 500.0
+ ],
+ [
+ 102.250424896870712,
+ 20.349848113056382,
+ 500.0
+ ],
+ [
+ 102.331029880089744,
+ 20.329416329115027,
+ 500.0
+ ],
+ [
+ 102.406619095548649,
+ 20.296059513425845,
+ 500.0
+ ],
+ [
+ 102.474882038782454,
+ 20.250798939798742,
+ 500.0
+ ],
+ [
+ 102.533737435954549,
+ 20.195019283490442,
+ 500.0
+ ],
+ [
+ 102.581397324752459,
+ 20.130425379918179,
+ 500.0
+ ],
+ [
+ 102.616421291723043,
+ 20.0589891977198,
+ 500.0
+ ],
+ [
+ 102.637759242296553,
+ 19.982888790734201,
+ 500.0
+ ],
+ [
+ 102.64478154213684,
+ 19.904441222055279,
+ 500.0
+ ],
+ [
+ 102.637295844537036,
+ 19.826031604190174,
+ 500.0
+ ],
+ [
+ 102.615550382933748,
+ 19.750040472941734,
+ 500.0
+ ],
+ [
+ 102.580223940379085,
+ 19.678771712970271,
+ 500.0
+ ],
+ [
+ 102.532403095548347,
+ 19.61438318660781,
+ 500.0
+ ],
+ [
+ 102.473547680360312,
+ 19.558822092330363,
+ 500.0
+ ],
+ [
+ 102.405445665557309,
+ 19.513766903748763,
+ 500.0
+ ],
+ [
+ 102.330158919425614,
+ 19.480577522291501,
+ 500.0
+ ],
+ [
+ 102.249961465252312,
+ 19.460255024644333,
+ 500.0
+ ],
+ [
+ 102.167272,
+ 19.453412106582896,
+ 500.0
+ ],
+ [
+ 102.084582534747682,
+ 19.460255024644333,
+ 500.0
+ ],
+ [
+ 102.00438508057438,
+ 19.480577522291501,
+ 500.0
+ ],
+ [
+ 101.929098334442685,
+ 19.513766903748763,
+ 500.0
+ ],
+ [
+ 101.860996319639682,
+ 19.558822092330363,
+ 500.0
+ ],
+ [
+ 101.802140904451647,
+ 19.61438318660781,
+ 500.0
+ ],
+ [
+ 101.754320059620909,
+ 19.678771712970271,
+ 500.0
+ ],
+ [
+ 101.718993617066246,
+ 19.750040472941734,
+ 500.0
+ ],
+ [
+ 101.697248155462958,
+ 19.826031604190174,
+ 500.0
+ ],
+ [
+ 101.689762457863154,
+ 19.904441222055279,
+ 500.0
+ ],
+ [
+ 101.696784757703441,
+ 19.982888790734201,
+ 500.0
+ ],
+ [
+ 101.718122708276951,
+ 20.0589891977198,
+ 500.0
+ ],
+ [
+ 101.753146675247535,
+ 20.130425379918179,
+ 500.0
+ ],
+ [
+ 101.800806564045445,
+ 20.195019283490442,
+ 500.0
+ ],
+ [
+ 101.85966196121754,
+ 20.250798939798742,
+ 500.0
+ ],
+ [
+ 101.927924904451345,
+ 20.296059513425845,
+ 500.0
+ ],
+ [
+ 102.00351411991025,
+ 20.329416329115027,
+ 500.0
+ ],
+ [
+ 102.084119103129282,
+ 20.349848113056382,
+ 500.0
+ ],
+ [
+ 102.167272,
+ 20.356728986100936,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283538,
+ "name": "Luang Phabang International Airport",
+ "country": "LA",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "19.9062480346766",
+ "lng": "102.169251602296",
+ "radius": 5252,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.135079668,
+ 19.925993838099998,
+ 0.0
+ ],
+ [
+ 102.153236548,
+ 19.940821101499999,
+ 0.0
+ ],
+ [
+ 102.167155646,
+ 19.9480705151,
+ 0.0
+ ],
+ [
+ 102.183008656,
+ 19.949370007199999,
+ 0.0
+ ],
+ [
+ 102.190803374,
+ 19.947675702800002,
+ 0.0
+ ],
+ [
+ 102.198052745,
+ 19.944494742700002,
+ 0.0
+ ],
+ [
+ 102.209685287,
+ 19.934288201200001,
+ 0.0
+ ],
+ [
+ 102.215894793,
+ 19.920515999,
+ 0.0
+ ],
+ [
+ 102.21658773,
+ 19.913023895599999,
+ 0.0
+ ],
+ [
+ 102.21560878699999,
+ 19.905560059100001,
+ 0.0
+ ],
+ [
+ 102.20887845199999,
+ 19.892006369400001,
+ 0.0
+ ],
+ [
+ 102.178686642,
+ 19.867357455299999,
+ 0.0
+ ],
+ [
+ 102.163473241,
+ 19.862995114499999,
+ 0.0
+ ],
+ [
+ 102.147688469,
+ 19.864828190800001,
+ 0.0
+ ],
+ [
+ 102.134059982,
+ 19.8725399259,
+ 0.0
+ ],
+ [
+ 102.128816918,
+ 19.878218277799999,
+ 0.0
+ ],
+ [
+ 102.122609022,
+ 19.891990460199999,
+ 0.0
+ ],
+ [
+ 102.12191582299999,
+ 19.899482534600001,
+ 0.0
+ ],
+ [
+ 102.122894389,
+ 19.9069464104,
+ 0.0
+ ],
+ [
+ 102.12550217899999,
+ 19.914055853899999,
+ 0.0
+ ],
+ [
+ 102.135079668,
+ 19.925993838099998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000171,
+ "name": "无人机管控空域",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "19.9868771616498",
+ "lng": "110.3137205",
+ "radius": 1468,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.302734,
+ 19.978638,
+ 0.0
+ ],
+ [
+ 110.302734,
+ 19.995117,
+ 0.0
+ ],
+ [
+ 110.324707,
+ 19.995117,
+ 0.0
+ ],
+ [
+ 110.324707,
+ 19.978638,
+ 0.0
+ ],
+ [
+ 110.302734,
+ 19.978638,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288142,
+ "name": "Sayaboury Airport",
+ "country": "LA",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "19.2433497748712",
+ "lng": "101.708803928325",
+ "radius": 3500,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.714488835,
+ 19.2123323261,
+ 0.0
+ ],
+ [
+ 101.692357167,
+ 19.270732648500001,
+ 0.0
+ ],
+ [
+ 101.703121603,
+ 19.2743678207,
+ 0.0
+ ],
+ [
+ 101.725249378,
+ 19.215967666600001,
+ 0.0
+ ],
+ [
+ 101.714488835,
+ 19.2123323261,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288142,
+ "name": "Sayaboury Airport",
+ "country": "LA",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "19.2888914925258",
+ "lng": "101.691545531185",
+ "radius": 2020,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.692357167,
+ 19.270732648500001,
+ 60.0
+ ],
+ [
+ 101.675975242,
+ 19.2995856434,
+ 60.0
+ ],
+ [
+ 101.696393523,
+ 19.306481103100001,
+ 60.0
+ ],
+ [
+ 101.703121603,
+ 19.2743678207,
+ 60.0
+ ],
+ [
+ 101.692357167,
+ 19.270732648500001,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288142,
+ "name": "Sayaboury Airport",
+ "country": "LA",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "19.1978083184217",
+ "lng": "101.726059867324",
+ "radius": 2021,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.721212304,
+ 19.1802189032,
+ 60.0
+ ],
+ [
+ 101.714488835,
+ 19.2123323261,
+ 60.0
+ ],
+ [
+ 101.725249378,
+ 19.215967666600001,
+ 60.0
+ ],
+ [
+ 101.741620586,
+ 19.187113471,
+ 60.0
+ ],
+ [
+ 101.721212304,
+ 19.1802189032,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288142,
+ "name": "Sayaboury Airport",
+ "country": "LA",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "19.3408302535969",
+ "lng": "101.671850448013",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.675975242,
+ 19.2995856434,
+ 150.0
+ ],
+ [
+ 101.637728259,
+ 19.366903609400001,
+ 150.0
+ ],
+ [
+ 101.680684382,
+ 19.3814111354,
+ 150.0
+ ],
+ [
+ 101.696393523,
+ 19.306481103100001,
+ 150.0
+ ],
+ [
+ 101.675975242,
+ 19.2995856434,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288142,
+ "name": "Sayaboury Airport",
+ "country": "LA",
+ "city": "",
+ "height": 150,
+ "level": 2,
+ "lat": "19.1458659569379",
+ "lng": "101.745728744817",
+ "radius": 4606,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.736890216,
+ 19.1052866321,
+ 150.0
+ ],
+ [
+ 101.721212304,
+ 19.1802189032,
+ 150.0
+ ],
+ [
+ 101.741620586,
+ 19.187113471,
+ 150.0
+ ],
+ [
+ 101.779797781,
+ 19.119781375199999,
+ 150.0
+ ],
+ [
+ 101.736890216,
+ 19.1052866321,
+ 150.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009273,
+ "name": "Sayaboury Airport",
+ "country": "LA",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "19.24351",
+ "lng": "101.709457",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.709457,
+ 19.695190391045351,
+ 500.0
+ ],
+ [
+ 101.792262882552208,
+ 19.688309701769633,
+ 500.0
+ ],
+ [
+ 101.872532240578906,
+ 19.66787840092984,
+ 500.0
+ ],
+ [
+ 101.947808159185271,
+ 19.634522172841738,
+ 500.0
+ ],
+ [
+ 102.015790200017477,
+ 19.589261997928087,
+ 500.0
+ ],
+ [
+ 102.074405909969784,
+ 19.533482202228537,
+ 500.0
+ ],
+ [
+ 102.121874600162684,
+ 19.468887267951978,
+ 500.0
+ ],
+ [
+ 102.156761364824675,
+ 19.397448860787012,
+ 500.0
+ ],
+ [
+ 102.178019722262249,
+ 19.32134483153866,
+ 500.0
+ ],
+ [
+ 102.185021715339005,
+ 19.242892178823897,
+ 500.0
+ ],
+ [
+ 102.177574778616716,
+ 19.164476111816001,
+ 500.0
+ ],
+ [
+ 102.155925138741011,
+ 19.088477427601202,
+ 500.0
+ ],
+ [
+ 102.120747944324862,
+ 19.01720042037573,
+ 500.0
+ ],
+ [
+ 102.073124708204091,
+ 18.952803475714362,
+ 500.0
+ ],
+ [
+ 102.01450898120477,
+ 18.897234380131483,
+ 500.0
+ ],
+ [
+ 101.946681460182916,
+ 18.852172202292426,
+ 500.0
+ ],
+ [
+ 101.871695965410353,
+ 18.818977385572275,
+ 500.0
+ ],
+ [
+ 101.791817906868786,
+ 18.798651439816048,
+ 500.0
+ ],
+ [
+ 101.709457,
+ 18.791807340216248,
+ 500.0
+ ],
+ [
+ 101.627096093131215,
+ 18.798651439816048,
+ 500.0
+ ],
+ [
+ 101.547218034589648,
+ 18.818977385572275,
+ 500.0
+ ],
+ [
+ 101.472232539817085,
+ 18.852172202292426,
+ 500.0
+ ],
+ [
+ 101.404405018795231,
+ 18.897234380131483,
+ 500.0
+ ],
+ [
+ 101.34578929179591,
+ 18.952803475714362,
+ 500.0
+ ],
+ [
+ 101.298166055675139,
+ 19.01720042037573,
+ 500.0
+ ],
+ [
+ 101.262988861258989,
+ 19.088477427601202,
+ 500.0
+ ],
+ [
+ 101.241339221383285,
+ 19.164476111816001,
+ 500.0
+ ],
+ [
+ 101.233892284660996,
+ 19.242892178823897,
+ 500.0
+ ],
+ [
+ 101.240894277737752,
+ 19.32134483153866,
+ 500.0
+ ],
+ [
+ 101.262152635175326,
+ 19.397448860787012,
+ 500.0
+ ],
+ [
+ 101.297039399837317,
+ 19.468887267951978,
+ 500.0
+ ],
+ [
+ 101.344508090030217,
+ 19.533482202228537,
+ 500.0
+ ],
+ [
+ 101.403123799982524,
+ 19.589261997928087,
+ 500.0
+ ],
+ [
+ 101.47110584081473,
+ 19.634522172841738,
+ 500.0
+ ],
+ [
+ 101.546381759421095,
+ 19.66787840092984,
+ 500.0
+ ],
+ [
+ 101.626651117447793,
+ 19.688309701769633,
+ 500.0
+ ],
+ [
+ 101.709457,
+ 19.695190391045351,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288140,
+ "name": "Sayaboury Airport",
+ "country": "LA",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "19.2433487607175",
+ "lng": "101.708798682353",
+ "radius": 4446,
+ "color": "#1088F2",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.67437319,
+ 19.227431852300001,
+ 0.0
+ ],
+ [
+ 101.66960855799999,
+ 19.242326016500002,
+ 0.0
+ ],
+ [
+ 101.669370997,
+ 19.249843047199999,
+ 0.0
+ ],
+ [
+ 101.670794115,
+ 19.257242439500001,
+ 0.0
+ ],
+ [
+ 101.678304518,
+ 19.270413843699998,
+ 0.0
+ ],
+ [
+ 101.68406380499999,
+ 19.275610029100001,
+ 0.0
+ ],
+ [
+ 101.69834296,
+ 19.282097293900001,
+ 0.0
+ ],
+ [
+ 101.714183358,
+ 19.282540240900001,
+ 0.0
+ ],
+ [
+ 101.728844389,
+ 19.276862233900001,
+ 0.0
+ ],
+ [
+ 101.739789844,
+ 19.266045603599999,
+ 0.0
+ ],
+ [
+ 101.746123884,
+ 19.251660461699998,
+ 0.0
+ ],
+ [
+ 101.74800528,
+ 19.244352857900001,
+ 0.0
+ ],
+ [
+ 101.748236209,
+ 19.236835643199999,
+ 0.0
+ ],
+ [
+ 101.74680680199999,
+ 19.229437361900001,
+ 0.0
+ ],
+ [
+ 101.743779742,
+ 19.222481317,
+ 0.0
+ ],
+ [
+ 101.733526444,
+ 19.211079053199999,
+ 0.0
+ ],
+ [
+ 101.719249469,
+ 19.204599634099999,
+ 0.0
+ ],
+ [
+ 101.703416401,
+ 19.204162799100001,
+ 0.0
+ ],
+ [
+ 101.688763266,
+ 19.209844035500002,
+ 0.0
+ ],
+ [
+ 101.682691065,
+ 19.2147099494,
+ 0.0
+ ],
+ [
+ 101.67437319,
+ 19.227431852300001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000217,
+ "name": "无人机管控空域",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "19.4677742446861",
+ "lng": "108.890993175473",
+ "radius": 2518,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 108.885498,
+ 19.451294,
+ 0.0
+ ],
+ [
+ 108.885498,
+ 19.46228,
+ 0.0
+ ],
+ [
+ 108.874512,
+ 19.46228,
+ 0.0
+ ],
+ [
+ 108.874512,
+ 19.484253,
+ 0.0
+ ],
+ [
+ 108.907471,
+ 19.484253,
+ 0.0
+ ],
+ [
+ 108.907471,
+ 19.451294,
+ 0.0
+ ],
+ [
+ 108.885498,
+ 19.451294,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000221,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "19.7369385837116",
+ "lng": "109.769897688974",
+ "radius": 838,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.764404,
+ 19.736938,
+ 90.0
+ ],
+ [
+ 109.764404,
+ 19.742432,
+ 90.0
+ ],
+ [
+ 109.775391,
+ 19.742432,
+ 90.0
+ ],
+ [
+ 109.775391,
+ 19.731445,
+ 90.0
+ ],
+ [
+ 109.764404,
+ 19.731445,
+ 90.0
+ ],
+ [
+ 109.764404,
+ 19.736938,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000195,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 30,
+ "level": 2,
+ "lat": "19.7232061327321",
+ "lng": "109.741066836735",
+ "radius": 3171,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.725957,
+ 19.747925,
+ 30.0
+ ],
+ [
+ 109.742432,
+ 19.747925,
+ 30.0
+ ],
+ [
+ 109.742432,
+ 19.742432,
+ 30.0
+ ],
+ [
+ 109.753418,
+ 19.742432,
+ 30.0
+ ],
+ [
+ 109.753418,
+ 19.731445,
+ 30.0
+ ],
+ [
+ 109.756172,
+ 19.731445,
+ 30.0
+ ],
+ [
+ 109.756172,
+ 19.698486,
+ 30.0
+ ],
+ [
+ 109.753418,
+ 19.698486,
+ 30.0
+ ],
+ [
+ 109.753418,
+ 19.709473,
+ 30.0
+ ],
+ [
+ 109.742432,
+ 19.709473,
+ 30.0
+ ],
+ [
+ 109.742432,
+ 19.720459,
+ 30.0
+ ],
+ [
+ 109.731445,
+ 19.720459,
+ 30.0
+ ],
+ [
+ 109.731445,
+ 19.731445,
+ 30.0
+ ],
+ [
+ 109.725957,
+ 19.731445,
+ 30.0
+ ],
+ [
+ 109.725957,
+ 19.747925,
+ 30.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000266,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "19.7479250837354",
+ "lng": "109.758911189054",
+ "radius": 838,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.753418,
+ 19.747925,
+ 90.0
+ ],
+ [
+ 109.753418,
+ 19.753418,
+ 90.0
+ ],
+ [
+ 109.764404,
+ 19.753418,
+ 90.0
+ ],
+ [
+ 109.764404,
+ 19.742432,
+ 90.0
+ ],
+ [
+ 109.753418,
+ 19.742432,
+ 90.0
+ ],
+ [
+ 109.753418,
+ 19.747925,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000265,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "19.6875000835209",
+ "lng": "109.791869811573",
+ "radius": 838,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.786377,
+ 19.682007,
+ 60.0
+ ],
+ [
+ 109.786377,
+ 19.692993,
+ 60.0
+ ],
+ [
+ 109.797363,
+ 19.692993,
+ 60.0
+ ],
+ [
+ 109.797363,
+ 19.682007,
+ 60.0
+ ],
+ [
+ 109.786377,
+ 19.682007,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000259,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 30,
+ "level": 2,
+ "lat": "19.6696515862089",
+ "lng": "109.758909029019",
+ "radius": 4085,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.73145,
+ 19.665527,
+ 30.0
+ ],
+ [
+ 109.742432,
+ 19.665527,
+ 30.0
+ ],
+ [
+ 109.742432,
+ 19.660034,
+ 30.0
+ ],
+ [
+ 109.764404,
+ 19.660034,
+ 30.0
+ ],
+ [
+ 109.764404,
+ 19.695744,
+ 30.0
+ ],
+ [
+ 109.786377,
+ 19.695744,
+ 30.0
+ ],
+ [
+ 109.786377,
+ 19.671021,
+ 30.0
+ ],
+ [
+ 109.775391,
+ 19.671021,
+ 30.0
+ ],
+ [
+ 109.775391,
+ 19.654541,
+ 30.0
+ ],
+ [
+ 109.764404,
+ 19.654541,
+ 30.0
+ ],
+ [
+ 109.764404,
+ 19.649048,
+ 30.0
+ ],
+ [
+ 109.742432,
+ 19.649048,
+ 30.0
+ ],
+ [
+ 109.742432,
+ 19.643555,
+ 30.0
+ ],
+ [
+ 109.73145,
+ 19.643555,
+ 30.0
+ ],
+ [
+ 109.73145,
+ 19.665527,
+ 30.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000268,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 30,
+ "level": 2,
+ "lat": "19.6696515868926",
+ "lng": "109.703986471714",
+ "radius": 4085,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.731445,
+ 19.649048,
+ 30.0
+ ],
+ [
+ 109.709473,
+ 19.649048,
+ 30.0
+ ],
+ [
+ 109.709473,
+ 19.654541,
+ 30.0
+ ],
+ [
+ 109.698486,
+ 19.654541,
+ 30.0
+ ],
+ [
+ 109.698486,
+ 19.665527,
+ 30.0
+ ],
+ [
+ 109.6875,
+ 19.665527,
+ 30.0
+ ],
+ [
+ 109.6875,
+ 19.676514,
+ 30.0
+ ],
+ [
+ 109.676514,
+ 19.676514,
+ 30.0
+ ],
+ [
+ 109.676514,
+ 19.695744,
+ 30.0
+ ],
+ [
+ 109.698486,
+ 19.695744,
+ 30.0
+ ],
+ [
+ 109.698486,
+ 19.6875,
+ 30.0
+ ],
+ [
+ 109.709473,
+ 19.6875,
+ 30.0
+ ],
+ [
+ 109.709473,
+ 19.676514,
+ 30.0
+ ],
+ [
+ 109.720459,
+ 19.676514,
+ 30.0
+ ],
+ [
+ 109.720459,
+ 19.665527,
+ 30.0
+ ],
+ [
+ 109.73145,
+ 19.665527,
+ 30.0
+ ],
+ [
+ 109.73145,
+ 19.643555,
+ 30.0
+ ],
+ [
+ 109.731445,
+ 19.643555,
+ 30.0
+ ],
+ [
+ 109.731445,
+ 19.649048,
+ 30.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001452,
+ "name": "Haikou Meilan International Airport",
+ "country": "CN",
+ "city": "Haikou",
+ "height": 500,
+ "level": 2,
+ "lat": "19.938354",
+ "lng": "110.461881",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.461881,
+ 20.389999281570237,
+ 500.0
+ ],
+ [
+ 110.54505171809646,
+ 20.383118399502287,
+ 500.0
+ ],
+ [
+ 110.625673938107965,
+ 20.362686591929208,
+ 500.0
+ ],
+ [
+ 110.70127924452882,
+ 20.329329747821109,
+ 500.0
+ ],
+ [
+ 110.769556616204923,
+ 20.284069155773508,
+ 500.0
+ ],
+ [
+ 110.828424326392721,
+ 20.228289508635051,
+ 500.0
+ ],
+ [
+ 110.876094039137499,
+ 20.163695659603082,
+ 500.0
+ ],
+ [
+ 110.911125057830063,
+ 20.092259592544565,
+ 500.0
+ ],
+ [
+ 110.932467101886274,
+ 20.016159371470049,
+ 500.0
+ ],
+ [
+ 110.939490450246652,
+ 19.937712062638585,
+ 500.0
+ ],
+ [
+ 110.932002766797666,
+ 19.859302773578598,
+ 500.0
+ ],
+ [
+ 110.910252387421977,
+ 19.78331202679863,
+ 500.0
+ ],
+ [
+ 110.874918281307899,
+ 19.712043686179726,
+ 500.0
+ ],
+ [
+ 110.827087286944746,
+ 19.647655587538178,
+ 500.0
+ ],
+ [
+ 110.768219558691058,
+ 19.592094899571343,
+ 500.0
+ ],
+ [
+ 110.700103440954777,
+ 19.547040065769146,
+ 500.0
+ ],
+ [
+ 110.624801215681217,
+ 19.513850960135233,
+ 500.0
+ ],
+ [
+ 110.544587349055064,
+ 19.493528637439709,
+ 500.0
+ ],
+ [
+ 110.461881,
+ 19.486685779322791,
+ 500.0
+ ],
+ [
+ 110.379174650944947,
+ 19.493528637439709,
+ 500.0
+ ],
+ [
+ 110.298960784318794,
+ 19.513850960135233,
+ 500.0
+ ],
+ [
+ 110.223658559045234,
+ 19.547040065769146,
+ 500.0
+ ],
+ [
+ 110.155542441308953,
+ 19.592094899571343,
+ 500.0
+ ],
+ [
+ 110.096674713055265,
+ 19.647655587538178,
+ 500.0
+ ],
+ [
+ 110.048843718692112,
+ 19.712043686179726,
+ 500.0
+ ],
+ [
+ 110.013509612578034,
+ 19.78331202679863,
+ 500.0
+ ],
+ [
+ 109.991759233202345,
+ 19.859302773578598,
+ 500.0
+ ],
+ [
+ 109.984271549753359,
+ 19.937712062638585,
+ 500.0
+ ],
+ [
+ 109.991294898113736,
+ 20.016159371470049,
+ 500.0
+ ],
+ [
+ 110.012636942169948,
+ 20.092259592544565,
+ 500.0
+ ],
+ [
+ 110.047667960862512,
+ 20.163695659603082,
+ 500.0
+ ],
+ [
+ 110.09533767360729,
+ 20.228289508635051,
+ 500.0
+ ],
+ [
+ 110.154205383795087,
+ 20.284069155773508,
+ 500.0
+ ],
+ [
+ 110.222482755471191,
+ 20.329329747821109,
+ 500.0
+ ],
+ [
+ 110.298088061892045,
+ 20.362686591929208,
+ 500.0
+ ],
+ [
+ 110.378710281903551,
+ 20.383118399502287,
+ 500.0
+ ],
+ [
+ 110.461881,
+ 20.389999281570237,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000246,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "19.6600340834233",
+ "lng": "109.682007188143",
+ "radius": 838,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.676514,
+ 19.660034,
+ 90.0
+ ],
+ [
+ 109.676514,
+ 19.665527,
+ 90.0
+ ],
+ [
+ 109.6875,
+ 19.665527,
+ 90.0
+ ],
+ [
+ 109.6875,
+ 19.654541,
+ 90.0
+ ],
+ [
+ 109.676514,
+ 19.654541,
+ 90.0
+ ],
+ [
+ 109.676514,
+ 19.660034,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000223,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "19.7259520836727",
+ "lng": "109.769897311157",
+ "radius": 838,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.764404,
+ 19.720459,
+ 60.0
+ ],
+ [
+ 109.764404,
+ 19.731445,
+ 60.0
+ ],
+ [
+ 109.775391,
+ 19.731445,
+ 60.0
+ ],
+ [
+ 109.775391,
+ 19.720459,
+ 60.0
+ ],
+ [
+ 109.764404,
+ 19.720459,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000214,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "19.7369385836964",
+ "lng": "109.758910811043",
+ "radius": 838,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.753418,
+ 19.731445,
+ 60.0
+ ],
+ [
+ 109.753418,
+ 19.742432,
+ 60.0
+ ],
+ [
+ 109.764404,
+ 19.742432,
+ 60.0
+ ],
+ [
+ 109.764404,
+ 19.731445,
+ 60.0
+ ],
+ [
+ 109.753418,
+ 19.731445,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000183,
+ "name": "无人机管控空域",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "19.6957405230637",
+ "lng": "109.745186787893",
+ "radius": 4451,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.742432,
+ 19.660034,
+ 0.0
+ ],
+ [
+ 109.742432,
+ 19.665527,
+ 0.0
+ ],
+ [
+ 109.725961,
+ 19.665527,
+ 0.0
+ ],
+ [
+ 109.725961,
+ 19.731445,
+ 0.0
+ ],
+ [
+ 109.731445,
+ 19.731445,
+ 0.0
+ ],
+ [
+ 109.731445,
+ 19.720459,
+ 0.0
+ ],
+ [
+ 109.742432,
+ 19.720459,
+ 0.0
+ ],
+ [
+ 109.742432,
+ 19.709473,
+ 0.0
+ ],
+ [
+ 109.753418,
+ 19.709473,
+ 0.0
+ ],
+ [
+ 109.753418,
+ 19.698486,
+ 0.0
+ ],
+ [
+ 109.764404,
+ 19.698486,
+ 0.0
+ ],
+ [
+ 109.764404,
+ 19.660034,
+ 0.0
+ ],
+ [
+ 109.742432,
+ 19.660034,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000224,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "19.6710205834623",
+ "lng": "109.682007188274",
+ "radius": 839,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.676514,
+ 19.671021,
+ 60.0
+ ],
+ [
+ 109.676514,
+ 19.676514,
+ 60.0
+ ],
+ [
+ 109.6875,
+ 19.676514,
+ 60.0
+ ],
+ [
+ 109.6875,
+ 19.665527,
+ 60.0
+ ],
+ [
+ 109.676514,
+ 19.665527,
+ 60.0
+ ],
+ [
+ 109.676514,
+ 19.671021,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000216,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "19.7067260835892",
+ "lng": "109.791870471584",
+ "radius": 1631,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.786377,
+ 19.709473,
+ 90.0
+ ],
+ [
+ 109.786377,
+ 19.720459,
+ 90.0
+ ],
+ [
+ 109.797363,
+ 19.720459,
+ 90.0
+ ],
+ [
+ 109.797363,
+ 19.692993,
+ 90.0
+ ],
+ [
+ 109.786377,
+ 19.692993,
+ 90.0
+ ],
+ [
+ 109.786377,
+ 19.709473,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000179,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "19.6408085833701",
+ "lng": "109.70397940602",
+ "radius": 651,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.698486,
+ 19.638062,
+ 90.0
+ ],
+ [
+ 109.698486,
+ 19.643555,
+ 90.0
+ ],
+ [
+ 109.709473,
+ 19.643555,
+ 90.0
+ ],
+ [
+ 109.709473,
+ 19.638062,
+ 90.0
+ ],
+ [
+ 109.698486,
+ 19.638062,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000227,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "19.7369438569364",
+ "lng": "109.709467965146",
+ "radius": 4951,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.731445,
+ 19.758911,
+ 60.0
+ ],
+ [
+ 109.742432,
+ 19.758911,
+ 60.0
+ ],
+ [
+ 109.742432,
+ 19.753418,
+ 60.0
+ ],
+ [
+ 109.753418,
+ 19.753418,
+ 60.0
+ ],
+ [
+ 109.753418,
+ 19.742432,
+ 60.0
+ ],
+ [
+ 109.742432,
+ 19.742432,
+ 60.0
+ ],
+ [
+ 109.742432,
+ 19.747925,
+ 60.0
+ ],
+ [
+ 109.6875,
+ 19.747925,
+ 60.0
+ ],
+ [
+ 109.6875,
+ 19.742432,
+ 60.0
+ ],
+ [
+ 109.676514,
+ 19.742432,
+ 60.0
+ ],
+ [
+ 109.676514,
+ 19.720459,
+ 60.0
+ ],
+ [
+ 109.665527,
+ 19.720459,
+ 60.0
+ ],
+ [
+ 109.665527,
+ 19.753418,
+ 60.0
+ ],
+ [
+ 109.676514,
+ 19.753418,
+ 60.0
+ ],
+ [
+ 109.676514,
+ 19.758911,
+ 60.0
+ ],
+ [
+ 109.6875,
+ 19.758911,
+ 60.0
+ ],
+ [
+ 109.6875,
+ 19.753418,
+ 60.0
+ ],
+ [
+ 109.698486,
+ 19.753418,
+ 60.0
+ ],
+ [
+ 109.698486,
+ 19.758911,
+ 60.0
+ ],
+ [
+ 109.731445,
+ 19.758911,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000245,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "19.6572928387094",
+ "lng": "109.753411227462",
+ "radius": 5360,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.786377,
+ 19.665527,
+ 90.0
+ ],
+ [
+ 109.786377,
+ 19.682007,
+ 90.0
+ ],
+ [
+ 109.797363,
+ 19.682007,
+ 90.0
+ ],
+ [
+ 109.797363,
+ 19.638062,
+ 90.0
+ ],
+ [
+ 109.786377,
+ 19.638062,
+ 90.0
+ ],
+ [
+ 109.786377,
+ 19.627075,
+ 90.0
+ ],
+ [
+ 109.764404,
+ 19.627075,
+ 90.0
+ ],
+ [
+ 109.764404,
+ 19.632568,
+ 90.0
+ ],
+ [
+ 109.709473,
+ 19.632568,
+ 90.0
+ ],
+ [
+ 109.709473,
+ 19.638062,
+ 90.0
+ ],
+ [
+ 109.775391,
+ 19.638062,
+ 90.0
+ ],
+ [
+ 109.775391,
+ 19.643555,
+ 90.0
+ ],
+ [
+ 109.786377,
+ 19.643555,
+ 90.0
+ ],
+ [
+ 109.786377,
+ 19.665527,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000231,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "19.7067260835892",
+ "lng": "109.660035037464",
+ "radius": 3408,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.654541,
+ 19.714966,
+ 90.0
+ ],
+ [
+ 109.654541,
+ 19.736938,
+ 90.0
+ ],
+ [
+ 109.665527,
+ 19.736938,
+ 90.0
+ ],
+ [
+ 109.665527,
+ 19.676514,
+ 90.0
+ ],
+ [
+ 109.654541,
+ 19.676514,
+ 90.0
+ ],
+ [
+ 109.654541,
+ 19.714966,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000249,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "19.7561645837646",
+ "lng": "109.74792490543",
+ "radius": 650,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.742432,
+ 19.753418,
+ 90.0
+ ],
+ [
+ 109.742432,
+ 19.758911,
+ 90.0
+ ],
+ [
+ 109.753418,
+ 19.758911,
+ 90.0
+ ],
+ [
+ 109.753418,
+ 19.753418,
+ 90.0
+ ],
+ [
+ 109.742432,
+ 19.753418,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000207,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "19.7534233606773",
+ "lng": "109.69848347412",
+ "radius": 4758,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.731445,
+ 19.764404,
+ 90.0
+ ],
+ [
+ 109.742432,
+ 19.764404,
+ 90.0
+ ],
+ [
+ 109.742432,
+ 19.758911,
+ 90.0
+ ],
+ [
+ 109.698486,
+ 19.758911,
+ 90.0
+ ],
+ [
+ 109.698486,
+ 19.753418,
+ 90.0
+ ],
+ [
+ 109.6875,
+ 19.753418,
+ 90.0
+ ],
+ [
+ 109.6875,
+ 19.758911,
+ 90.0
+ ],
+ [
+ 109.676514,
+ 19.758911,
+ 90.0
+ ],
+ [
+ 109.676514,
+ 19.753418,
+ 90.0
+ ],
+ [
+ 109.665527,
+ 19.753418,
+ 90.0
+ ],
+ [
+ 109.665527,
+ 19.742432,
+ 90.0
+ ],
+ [
+ 109.654541,
+ 19.742432,
+ 90.0
+ ],
+ [
+ 109.654541,
+ 19.758911,
+ 90.0
+ ],
+ [
+ 109.665527,
+ 19.758911,
+ 90.0
+ ],
+ [
+ 109.665527,
+ 19.769897,
+ 90.0
+ ],
+ [
+ 109.6875,
+ 19.769897,
+ 90.0
+ ],
+ [
+ 109.6875,
+ 19.764404,
+ 90.0
+ ],
+ [
+ 109.731445,
+ 19.764404,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000189,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "19.6710205834775",
+ "lng": "109.671020311709",
+ "radius": 839,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.665527,
+ 19.665527,
+ 90.0
+ ],
+ [
+ 109.665527,
+ 19.676514,
+ 90.0
+ ],
+ [
+ 109.676514,
+ 19.676514,
+ 90.0
+ ],
+ [
+ 109.676514,
+ 19.665527,
+ 90.0
+ ],
+ [
+ 109.665527,
+ 19.665527,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000205,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "19.6572826611701",
+ "lng": "109.7424315",
+ "radius": 4848,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.698486,
+ 19.649048,
+ 60.0
+ ],
+ [
+ 109.698486,
+ 19.654541,
+ 60.0
+ ],
+ [
+ 109.709473,
+ 19.654541,
+ 60.0
+ ],
+ [
+ 109.709473,
+ 19.649048,
+ 60.0
+ ],
+ [
+ 109.731445,
+ 19.649048,
+ 60.0
+ ],
+ [
+ 109.731445,
+ 19.643555,
+ 60.0
+ ],
+ [
+ 109.742432,
+ 19.643555,
+ 60.0
+ ],
+ [
+ 109.742432,
+ 19.649048,
+ 60.0
+ ],
+ [
+ 109.764404,
+ 19.649048,
+ 60.0
+ ],
+ [
+ 109.764404,
+ 19.654541,
+ 60.0
+ ],
+ [
+ 109.775391,
+ 19.654541,
+ 60.0
+ ],
+ [
+ 109.775391,
+ 19.671021,
+ 60.0
+ ],
+ [
+ 109.786377,
+ 19.671021,
+ 60.0
+ ],
+ [
+ 109.786377,
+ 19.643555,
+ 60.0
+ ],
+ [
+ 109.775391,
+ 19.643555,
+ 60.0
+ ],
+ [
+ 109.775391,
+ 19.638062,
+ 60.0
+ ],
+ [
+ 109.709473,
+ 19.638062,
+ 60.0
+ ],
+ [
+ 109.709473,
+ 19.643555,
+ 60.0
+ ],
+ [
+ 109.698486,
+ 19.643555,
+ 60.0
+ ],
+ [
+ 109.698486,
+ 19.649048,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000169,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "19.7122190836087",
+ "lng": "109.780884283043",
+ "radius": 1081,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.775391,
+ 19.714966,
+ 60.0
+ ],
+ [
+ 109.775391,
+ 19.720459,
+ 60.0
+ ],
+ [
+ 109.786377,
+ 19.720459,
+ 60.0
+ ],
+ [
+ 109.786377,
+ 19.703979,
+ 60.0
+ ],
+ [
+ 109.775391,
+ 19.703979,
+ 60.0
+ ],
+ [
+ 109.775391,
+ 19.714966,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000256,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "19.6875000835361",
+ "lng": "109.671020876889",
+ "radius": 1350,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.665527,
+ 19.692993,
+ 60.0
+ ],
+ [
+ 109.665527,
+ 19.698486,
+ 60.0
+ ],
+ [
+ 109.676514,
+ 19.698486,
+ 60.0
+ ],
+ [
+ 109.676514,
+ 19.676514,
+ 60.0
+ ],
+ [
+ 109.665527,
+ 19.676514,
+ 60.0
+ ],
+ [
+ 109.665527,
+ 19.692993,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000258,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 30,
+ "level": 2,
+ "lat": "19.7232080309287",
+ "lng": "109.695737326529",
+ "radius": 4190,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.676514,
+ 19.695744,
+ 30.0
+ ],
+ [
+ 109.676514,
+ 19.698486,
+ 30.0
+ ],
+ [
+ 109.665527,
+ 19.698486,
+ 30.0
+ ],
+ [
+ 109.665527,
+ 19.720459,
+ 30.0
+ ],
+ [
+ 109.676514,
+ 19.720459,
+ 30.0
+ ],
+ [
+ 109.676514,
+ 19.742432,
+ 30.0
+ ],
+ [
+ 109.6875,
+ 19.742432,
+ 30.0
+ ],
+ [
+ 109.6875,
+ 19.747925,
+ 30.0
+ ],
+ [
+ 109.725957,
+ 19.747925,
+ 30.0
+ ],
+ [
+ 109.725957,
+ 19.731445,
+ 30.0
+ ],
+ [
+ 109.709473,
+ 19.731445,
+ 30.0
+ ],
+ [
+ 109.709473,
+ 19.736938,
+ 30.0
+ ],
+ [
+ 109.698486,
+ 19.736938,
+ 30.0
+ ],
+ [
+ 109.698486,
+ 19.731445,
+ 30.0
+ ],
+ [
+ 109.6875,
+ 19.731445,
+ 30.0
+ ],
+ [
+ 109.6875,
+ 19.698486,
+ 30.0
+ ],
+ [
+ 109.698486,
+ 19.698486,
+ 30.0
+ ],
+ [
+ 109.698486,
+ 19.695744,
+ 30.0
+ ],
+ [
+ 109.676514,
+ 19.695744,
+ 30.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000244,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 30,
+ "level": 2,
+ "lat": "19.7135951320555",
+ "lng": "109.771276185959",
+ "radius": 2537,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.756172,
+ 19.731445,
+ 30.0
+ ],
+ [
+ 109.764404,
+ 19.731445,
+ 30.0
+ ],
+ [
+ 109.764404,
+ 19.720459,
+ 30.0
+ ],
+ [
+ 109.775391,
+ 19.720459,
+ 30.0
+ ],
+ [
+ 109.775391,
+ 19.703979,
+ 30.0
+ ],
+ [
+ 109.786377,
+ 19.703979,
+ 30.0
+ ],
+ [
+ 109.786377,
+ 19.695744,
+ 30.0
+ ],
+ [
+ 109.764404,
+ 19.695744,
+ 30.0
+ ],
+ [
+ 109.764404,
+ 19.698486,
+ 30.0
+ ],
+ [
+ 109.756172,
+ 19.698486,
+ 30.0
+ ],
+ [
+ 109.756172,
+ 19.731445,
+ 30.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000188,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "19.6490480833842",
+ "lng": "109.692992811971",
+ "radius": 839,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.6875,
+ 19.643555,
+ 90.0
+ ],
+ [
+ 109.6875,
+ 19.654541,
+ 90.0
+ ],
+ [
+ 109.698486,
+ 19.654541,
+ 90.0
+ ],
+ [
+ 109.698486,
+ 19.643555,
+ 90.0
+ ],
+ [
+ 109.6875,
+ 19.643555,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000208,
+ "name": "无人机管控空域",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "19.7010505117261",
+ "lng": "109.71169137632",
+ "radius": 4223,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.725961,
+ 19.665527,
+ 0.0
+ ],
+ [
+ 109.720459,
+ 19.665527,
+ 0.0
+ ],
+ [
+ 109.720459,
+ 19.676514,
+ 0.0
+ ],
+ [
+ 109.709473,
+ 19.676514,
+ 0.0
+ ],
+ [
+ 109.709473,
+ 19.6875,
+ 0.0
+ ],
+ [
+ 109.698486,
+ 19.6875,
+ 0.0
+ ],
+ [
+ 109.698486,
+ 19.698486,
+ 0.0
+ ],
+ [
+ 109.6875,
+ 19.698486,
+ 0.0
+ ],
+ [
+ 109.6875,
+ 19.731445,
+ 0.0
+ ],
+ [
+ 109.698486,
+ 19.731445,
+ 0.0
+ ],
+ [
+ 109.698486,
+ 19.736938,
+ 0.0
+ ],
+ [
+ 109.709473,
+ 19.736938,
+ 0.0
+ ],
+ [
+ 109.709473,
+ 19.731445,
+ 0.0
+ ],
+ [
+ 109.725961,
+ 19.731445,
+ 0.0
+ ],
+ [
+ 109.725961,
+ 19.665527,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000243,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "19.7259520836574",
+ "lng": "109.780883811174",
+ "radius": 838,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.775391,
+ 19.720459,
+ 90.0
+ ],
+ [
+ 109.775391,
+ 19.731445,
+ 90.0
+ ],
+ [
+ 109.786377,
+ 19.731445,
+ 90.0
+ ],
+ [
+ 109.786377,
+ 19.720459,
+ 90.0
+ ],
+ [
+ 109.775391,
+ 19.720459,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1336,
+ "name": "Haikou Meilan International Airport",
+ "country": "CN",
+ "city": "Haikou",
+ "height": 0,
+ "level": 2,
+ "lat": "19.9341134063289",
+ "lng": "110.412209068418",
+ "radius": 13770,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.375854696,
+ 19.954315895699999,
+ 0.0
+ ],
+ [
+ 110.28590900099999,
+ 19.969371650399999,
+ 0.0
+ ],
+ [
+ 110.285902061,
+ 19.898966406700001,
+ 0.0
+ ],
+ [
+ 110.375908274,
+ 19.9122956593,
+ 0.0
+ ],
+ [
+ 110.394620242,
+ 19.885460383600002,
+ 0.0
+ ],
+ [
+ 110.40914203,
+ 19.876026066400001,
+ 0.0
+ ],
+ [
+ 110.443355038,
+ 19.869100876699999,
+ 0.0
+ ],
+ [
+ 110.494220917,
+ 19.8710868428,
+ 0.0
+ ],
+ [
+ 110.52468648,
+ 19.887285572700002,
+ 0.0
+ ],
+ [
+ 110.542464686,
+ 19.915636771500001,
+ 0.0
+ ],
+ [
+ 110.375854696,
+ 19.954315895699999,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1336,
+ "name": "Haikou Meilan International Airport",
+ "country": "CN",
+ "city": "Haikou",
+ "height": 0,
+ "level": 2,
+ "lat": "19.9349756994475",
+ "lng": "110.505691685534",
+ "radius": 13740,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.632452895,
+ 19.902314172,
+ 0.0
+ ],
+ [
+ 110.632467906,
+ 19.967675668599998,
+ 0.0
+ ],
+ [
+ 110.542451437,
+ 19.957687005,
+ 0.0
+ ],
+ [
+ 110.523761353,
+ 19.984519452299999,
+ 0.0
+ ],
+ [
+ 110.509236083,
+ 19.993962598,
+ 0.0
+ ],
+ [
+ 110.492603661,
+ 19.999549588499999,
+ 0.0
+ ],
+ [
+ 110.439976947,
+ 20.0008990607,
+ 0.0
+ ],
+ [
+ 110.407728044,
+ 19.9926665194,
+ 0.0
+ ],
+ [
+ 110.393623043,
+ 19.9826767331,
+ 0.0
+ ],
+ [
+ 110.382751755,
+ 19.969595830300001,
+ 0.0
+ ],
+ [
+ 110.375854696,
+ 19.954315895699999,
+ 0.0
+ ],
+ [
+ 110.542464686,
+ 19.915636771500001,
+ 0.0
+ ],
+ [
+ 110.632452895,
+ 19.902314172,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1336,
+ "name": "Haikou Meilan International Airport",
+ "country": "CN",
+ "city": "Haikou",
+ "height": 120,
+ "level": 2,
+ "lat": "19.9347781581182",
+ "lng": "110.458332904126",
+ "radius": 23931,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.666338147,
+ 20.0248118823,
+ 120.0
+ ],
+ [
+ 110.666319121,
+ 19.844947562,
+ 120.0
+ ],
+ [
+ 110.250329192,
+ 19.844983341100001,
+ 120.0
+ ],
+ [
+ 110.250348217,
+ 20.024847661399999,
+ 120.0
+ ],
+ [
+ 110.666338147,
+ 20.0248118823,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000178,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "19.6600340834233",
+ "lng": "109.692992811857",
+ "radius": 838,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.6875,
+ 19.654541,
+ 60.0
+ ],
+ [
+ 109.6875,
+ 19.665527,
+ 60.0
+ ],
+ [
+ 109.698486,
+ 19.665527,
+ 60.0
+ ],
+ [
+ 109.698486,
+ 19.654541,
+ 60.0
+ ],
+ [
+ 109.6875,
+ 19.654541,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000225,
+ "name": "无人机管控空域",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "19.6317501318928",
+ "lng": "110.946408399745",
+ "radius": 3637,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.939941,
+ 19.599609,
+ 0.0
+ ],
+ [
+ 110.939941,
+ 19.643555,
+ 0.0
+ ],
+ [
+ 110.928955,
+ 19.643555,
+ 0.0
+ ],
+ [
+ 110.928955,
+ 19.660034,
+ 0.0
+ ],
+ [
+ 110.950928,
+ 19.660034,
+ 0.0
+ ],
+ [
+ 110.950928,
+ 19.649048,
+ 0.0
+ ],
+ [
+ 110.961914,
+ 19.649048,
+ 0.0
+ ],
+ [
+ 110.961914,
+ 19.627075,
+ 0.0
+ ],
+ [
+ 110.9729,
+ 19.627075,
+ 0.0
+ ],
+ [
+ 110.9729,
+ 19.610596,
+ 0.0
+ ],
+ [
+ 110.961914,
+ 19.610596,
+ 0.0
+ ],
+ [
+ 110.961914,
+ 19.605103,
+ 0.0
+ ],
+ [
+ 110.950928,
+ 19.605103,
+ 0.0
+ ],
+ [
+ 110.950928,
+ 19.599609,
+ 0.0
+ ],
+ [
+ 110.939941,
+ 19.599609,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045151,
+ "name": "发射场空域2",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "19.6219449356733",
+ "lng": "110.920139044322",
+ "radius": 716,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.924448703264574,
+ 19.626945287965174,
+ 0.0
+ ],
+ [
+ 110.923612814755586,
+ 19.623611202588378,
+ 0.0
+ ],
+ [
+ 110.92361158447315,
+ 19.618890088514355,
+ 0.0
+ ],
+ [
+ 110.923053324769924,
+ 19.616391359627464,
+ 0.0
+ ],
+ [
+ 110.919998513392386,
+ 19.616387094018584,
+ 0.0
+ ],
+ [
+ 110.919725182889067,
+ 19.618885094765943,
+ 0.0
+ ],
+ [
+ 110.915829653554823,
+ 19.616944480851338,
+ 0.0
+ ],
+ [
+ 110.914718027066641,
+ 19.622499412732452,
+ 0.0
+ ],
+ [
+ 110.919439913309674,
+ 19.622503224668968,
+ 0.0
+ ],
+ [
+ 110.921115886396251,
+ 19.627501983763658,
+ 0.0
+ ],
+ [
+ 110.924448703264574,
+ 19.626945287965174,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045189,
+ "name": "发射场空域1",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "19.5991814659998",
+ "lng": "110.930647660387",
+ "radius": 1017,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.926667465232725,
+ 19.60194660905487,
+ 0.0
+ ],
+ [
+ 110.9213893228507,
+ 19.601945228659226,
+ 0.0
+ ],
+ [
+ 110.921946573358312,
+ 19.603053466789639,
+ 0.0
+ ],
+ [
+ 110.939445047180243,
+ 19.603057683331308,
+ 0.0
+ ],
+ [
+ 110.939446219024703,
+ 19.596942628471247,
+ 0.0
+ ],
+ [
+ 110.926670048640631,
+ 19.590834776574081,
+ 0.0
+ ],
+ [
+ 110.926667465232725,
+ 19.60194660905487,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000252,
+ "name": "无人机管控空域",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "18.4927372125868",
+ "lng": "110.000617434007",
+ "radius": 4333,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.995117,
+ 18.457031,
+ 0.0
+ ],
+ [
+ 109.995117,
+ 18.462524,
+ 0.0
+ ],
+ [
+ 109.984138,
+ 18.462524,
+ 0.0
+ ],
+ [
+ 109.984138,
+ 18.528442,
+ 0.0
+ ],
+ [
+ 109.995117,
+ 18.528442,
+ 0.0
+ ],
+ [
+ 109.995117,
+ 18.522949,
+ 0.0
+ ],
+ [
+ 110.006104,
+ 18.522949,
+ 0.0
+ ],
+ [
+ 110.006104,
+ 18.50647,
+ 0.0
+ ],
+ [
+ 110.01709,
+ 18.50647,
+ 0.0
+ ],
+ [
+ 110.01709,
+ 18.457031,
+ 0.0
+ ],
+ [
+ 109.995117,
+ 18.457031,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000242,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.5586499150498",
+ "lng": "109.9731445",
+ "radius": 4722,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.006104,
+ 18.550415,
+ 90.0
+ ],
+ [
+ 110.006104,
+ 18.555908,
+ 90.0
+ ],
+ [
+ 109.962158,
+ 18.555908,
+ 90.0
+ ],
+ [
+ 109.962158,
+ 18.561401,
+ 90.0
+ ],
+ [
+ 109.951172,
+ 18.561401,
+ 90.0
+ ],
+ [
+ 109.951172,
+ 18.555908,
+ 90.0
+ ],
+ [
+ 109.940186,
+ 18.555908,
+ 90.0
+ ],
+ [
+ 109.940186,
+ 18.550415,
+ 90.0
+ ],
+ [
+ 109.929199,
+ 18.550415,
+ 90.0
+ ],
+ [
+ 109.929199,
+ 18.566895,
+ 90.0
+ ],
+ [
+ 109.940186,
+ 18.566895,
+ 90.0
+ ],
+ [
+ 109.940186,
+ 18.572388,
+ 90.0
+ ],
+ [
+ 109.962158,
+ 18.572388,
+ 90.0
+ ],
+ [
+ 109.962158,
+ 18.566895,
+ 90.0
+ ],
+ [
+ 109.995117,
+ 18.566895,
+ 90.0
+ ],
+ [
+ 109.995117,
+ 18.561401,
+ 90.0
+ ],
+ [
+ 110.01709,
+ 18.561401,
+ 90.0
+ ],
+ [
+ 110.01709,
+ 18.550415,
+ 90.0
+ ],
+ [
+ 110.006104,
+ 18.550415,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000270,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 30,
+ "level": 2,
+ "lat": "18.5229524830451",
+ "lng": "109.956660588948",
+ "radius": 4208,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.929199,
+ 18.495486,
+ 30.0
+ ],
+ [
+ 109.929199,
+ 18.522949,
+ 30.0
+ ],
+ [
+ 109.940186,
+ 18.522949,
+ 30.0
+ ],
+ [
+ 109.940186,
+ 18.539429,
+ 30.0
+ ],
+ [
+ 109.951172,
+ 18.539429,
+ 30.0
+ ],
+ [
+ 109.951172,
+ 18.550415,
+ 30.0
+ ],
+ [
+ 109.984131,
+ 18.550415,
+ 30.0
+ ],
+ [
+ 109.984131,
+ 18.528442,
+ 30.0
+ ],
+ [
+ 109.973145,
+ 18.528442,
+ 30.0
+ ],
+ [
+ 109.973145,
+ 18.533936,
+ 30.0
+ ],
+ [
+ 109.951172,
+ 18.533936,
+ 30.0
+ ],
+ [
+ 109.951172,
+ 18.522949,
+ 30.0
+ ],
+ [
+ 109.962158,
+ 18.522949,
+ 30.0
+ ],
+ [
+ 109.962158,
+ 18.517456,
+ 30.0
+ ],
+ [
+ 109.951172,
+ 18.517456,
+ 30.0
+ ],
+ [
+ 109.951172,
+ 18.500977,
+ 30.0
+ ],
+ [
+ 109.962158,
+ 18.500977,
+ 30.0
+ ],
+ [
+ 109.962158,
+ 18.495486,
+ 30.0
+ ],
+ [
+ 109.929199,
+ 18.495486,
+ 30.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000251,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.674011079869",
+ "lng": "109.220581266993",
+ "radius": 1083,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.215088,
+ 18.671265,
+ 90.0
+ ],
+ [
+ 109.215088,
+ 18.682251,
+ 90.0
+ ],
+ [
+ 109.226074,
+ 18.682251,
+ 90.0
+ ],
+ [
+ 109.226074,
+ 18.665771,
+ 90.0
+ ],
+ [
+ 109.215088,
+ 18.665771,
+ 90.0
+ ],
+ [
+ 109.215088,
+ 18.671265,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000236,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.5339355793563",
+ "lng": "110.033569176567",
+ "radius": 841,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.028076,
+ 18.533936,
+ 90.0
+ ],
+ [
+ 110.028076,
+ 18.539429,
+ 90.0
+ ],
+ [
+ 110.039062,
+ 18.539429,
+ 90.0
+ ],
+ [
+ 110.039062,
+ 18.528442,
+ 90.0
+ ],
+ [
+ 110.028076,
+ 18.528442,
+ 90.0
+ ],
+ [
+ 110.028076,
+ 18.533936,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000222,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.3224485785786",
+ "lng": "109.429320912804",
+ "radius": 655,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.423828,
+ 18.319702,
+ 90.0
+ ],
+ [
+ 109.423828,
+ 18.325195,
+ 90.0
+ ],
+ [
+ 109.434814,
+ 18.325195,
+ 90.0
+ ],
+ [
+ 109.434814,
+ 18.319702,
+ 90.0
+ ],
+ [
+ 109.423828,
+ 18.319702,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000240,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.4487927649877",
+ "lng": "109.973148257011",
+ "radius": 2775,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.995121,
+ 18.435059,
+ 60.0
+ ],
+ [
+ 109.973145,
+ 18.435059,
+ 60.0
+ ],
+ [
+ 109.973145,
+ 18.440552,
+ 60.0
+ ],
+ [
+ 109.962158,
+ 18.440552,
+ 60.0
+ ],
+ [
+ 109.962158,
+ 18.446045,
+ 60.0
+ ],
+ [
+ 109.951172,
+ 18.446045,
+ 60.0
+ ],
+ [
+ 109.951172,
+ 18.462524,
+ 60.0
+ ],
+ [
+ 109.962158,
+ 18.462524,
+ 60.0
+ ],
+ [
+ 109.962158,
+ 18.451538,
+ 60.0
+ ],
+ [
+ 109.973145,
+ 18.451538,
+ 60.0
+ ],
+ [
+ 109.973145,
+ 18.446045,
+ 60.0
+ ],
+ [
+ 109.984131,
+ 18.446045,
+ 60.0
+ ],
+ [
+ 109.984131,
+ 18.440552,
+ 60.0
+ ],
+ [
+ 109.995121,
+ 18.440552,
+ 60.0
+ ],
+ [
+ 109.995121,
+ 18.435059,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33222,
+ "name": "博鳌",
+ "country": "CN",
+ "city": "琼海",
+ "height": 0,
+ "level": 2,
+ "lat": "19.1820463849243",
+ "lng": "110.433704482358",
+ "radius": 13469,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.433873236,
+ 19.2194819071,
+ 0.0
+ ],
+ [
+ 110.402218905,
+ 19.2994794359,
+ 0.0
+ ],
+ [
+ 110.3386694,
+ 19.263419437900001,
+ 0.0
+ ],
+ [
+ 110.395339861,
+ 19.1951228589,
+ 0.0
+ ],
+ [
+ 110.381693492,
+ 19.171227700399999,
+ 0.0
+ ],
+ [
+ 110.379092729,
+ 19.154812268299999,
+ 0.0
+ ],
+ [
+ 110.387513512,
+ 19.122875709399999,
+ 0.0
+ ],
+ [
+ 110.40250799099999,
+ 19.097885547800001,
+ 0.0
+ ],
+ [
+ 110.42388017099999,
+ 19.076381819600002,
+ 0.0
+ ],
+ [
+ 110.439680373,
+ 19.0691353152,
+ 0.0
+ ],
+ [
+ 110.47444249,
+ 19.067186651899998,
+ 0.0
+ ],
+ [
+ 110.433873236,
+ 19.2194819071,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33222,
+ "name": "博鳌",
+ "country": "CN",
+ "city": "琼海",
+ "height": 0,
+ "level": 2,
+ "lat": "19.1031005738867",
+ "lng": "110.474486271098",
+ "radius": 13625,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.50441374899999,
+ 18.983869562500001,
+ 0.0
+ ],
+ [
+ 110.569659751,
+ 19.019887372300001,
+ 0.0
+ ],
+ [
+ 110.51298784,
+ 19.0848377752,
+ 0.0
+ ],
+ [
+ 110.529453326,
+ 19.1141194705,
+ 0.0
+ ],
+ [
+ 110.528159727,
+ 19.147009249300002,
+ 0.0
+ ],
+ [
+ 110.520837026,
+ 19.162097409699999,
+ 0.0
+ ],
+ [
+ 110.505830811,
+ 19.185439401899998,
+ 0.0
+ ],
+ [
+ 110.48420513,
+ 19.209031053699999,
+ 0.0
+ ],
+ [
+ 110.451433079,
+ 19.2202360398,
+ 0.0
+ ],
+ [
+ 110.433873236,
+ 19.2194819071,
+ 0.0
+ ],
+ [
+ 110.47444249,
+ 19.067186651899998,
+ 0.0
+ ],
+ [
+ 110.50441374899999,
+ 18.983869562500001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33222,
+ "name": "博鳌",
+ "country": "CN",
+ "city": "琼海",
+ "height": 120,
+ "level": 2,
+ "lat": "19.1420399400016",
+ "lng": "110.454058534273",
+ "radius": 23764,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.639915555,
+ 19.0202904008,
+ 120.0
+ ],
+ [
+ 110.475837599,
+ 18.929318621099998,
+ 120.0
+ ],
+ [
+ 110.268078779,
+ 19.263809109099999,
+ 120.0
+ ],
+ [
+ 110.432489557,
+ 19.354780888400001,
+ 120.0
+ ],
+ [
+ 110.639915555,
+ 19.0202904008,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000186,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.6465455797831",
+ "lng": "109.198608766579",
+ "radius": 1083,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.193115,
+ 18.643799,
+ 90.0
+ ],
+ [
+ 109.193115,
+ 18.654785,
+ 90.0
+ ],
+ [
+ 109.204102,
+ 18.654785,
+ 90.0
+ ],
+ [
+ 109.204102,
+ 18.638306,
+ 90.0
+ ],
+ [
+ 109.193115,
+ 18.638306,
+ 90.0
+ ],
+ [
+ 109.193115,
+ 18.643799,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000187,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.7234495800495",
+ "lng": "109.110717732264",
+ "radius": 1083,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.105225,
+ 18.71521,
+ 90.0
+ ],
+ [
+ 109.105225,
+ 18.731689,
+ 90.0
+ ],
+ [
+ 109.116211,
+ 18.731689,
+ 90.0
+ ],
+ [
+ 109.116211,
+ 18.71521,
+ 90.0
+ ],
+ [
+ 109.105225,
+ 18.71521,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000190,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.3142090785483",
+ "lng": "109.418335174308",
+ "radius": 842,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.412842,
+ 18.314209,
+ 90.0
+ ],
+ [
+ 109.412842,
+ 18.319702,
+ 90.0
+ ],
+ [
+ 109.423828,
+ 18.319702,
+ 90.0
+ ],
+ [
+ 109.423828,
+ 18.308716,
+ 90.0
+ ],
+ [
+ 109.412842,
+ 18.308716,
+ 90.0
+ ],
+ [
+ 109.412842,
+ 18.314209,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000230,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 30,
+ "level": 2,
+ "lat": "18.4680194944289",
+ "lng": "109.970407198549",
+ "radius": 3380,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.956673,
+ 18.495486,
+ 30.0
+ ],
+ [
+ 109.962158,
+ 18.495486,
+ 30.0
+ ],
+ [
+ 109.962158,
+ 18.484497,
+ 30.0
+ ],
+ [
+ 109.973145,
+ 18.484497,
+ 30.0
+ ],
+ [
+ 109.973145,
+ 18.468018,
+ 30.0
+ ],
+ [
+ 109.984131,
+ 18.468018,
+ 30.0
+ ],
+ [
+ 109.984131,
+ 18.462524,
+ 30.0
+ ],
+ [
+ 109.984137,
+ 18.462524,
+ 30.0
+ ],
+ [
+ 109.984137,
+ 18.440552,
+ 30.0
+ ],
+ [
+ 109.984131,
+ 18.440552,
+ 30.0
+ ],
+ [
+ 109.984131,
+ 18.446045,
+ 30.0
+ ],
+ [
+ 109.973145,
+ 18.446045,
+ 30.0
+ ],
+ [
+ 109.973145,
+ 18.451538,
+ 30.0
+ ],
+ [
+ 109.962158,
+ 18.451538,
+ 30.0
+ ],
+ [
+ 109.962158,
+ 18.462524,
+ 30.0
+ ],
+ [
+ 109.956673,
+ 18.462524,
+ 30.0
+ ],
+ [
+ 109.956673,
+ 18.495486,
+ 30.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000206,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.674011079869",
+ "lng": "109.209595266993",
+ "radius": 1083,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.204102,
+ 18.671265,
+ 60.0
+ ],
+ [
+ 109.204102,
+ 18.682251,
+ 60.0
+ ],
+ [
+ 109.215088,
+ 18.682251,
+ 60.0
+ ],
+ [
+ 109.215088,
+ 18.665771,
+ 60.0
+ ],
+ [
+ 109.204102,
+ 18.665771,
+ 60.0
+ ],
+ [
+ 109.204102,
+ 18.671265,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001318,
+ "name": "博鳌",
+ "country": "CN",
+ "city": "琼海",
+ "height": 500,
+ "level": 2,
+ "lat": "19.1416666666667",
+ "lng": "110.454166666667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.454166666666666,
+ 19.593352117025066,
+ 500.0
+ ],
+ [
+ 110.536920360931248,
+ 19.586471456793525,
+ 500.0
+ ],
+ [
+ 110.617139245078008,
+ 19.566040232613041,
+ 500.0
+ ],
+ [
+ 110.692368050721043,
+ 19.532684098878118,
+ 500.0
+ ],
+ [
+ 110.760307854266131,
+ 19.487423990943132,
+ 500.0
+ ],
+ [
+ 110.81888752947917,
+ 19.431644181178228,
+ 500.0
+ ],
+ [
+ 110.866327480981809,
+ 19.367049097465461,
+ 500.0
+ ],
+ [
+ 110.901193630288432,
+ 19.295610358824952,
+ 500.0
+ ],
+ [
+ 110.922440037461541,
+ 19.219505784666254,
+ 500.0
+ ],
+ [
+ 110.929438995613921,
+ 19.141052363413685,
+ 500.0
+ ],
+ [
+ 110.921997904253288,
+ 19.062635318723128,
+ 500.0
+ ],
+ [
+ 110.900362686146536,
+ 18.986635487384131,
+ 500.0
+ ],
+ [
+ 110.865207941582639,
+ 18.915357226022905,
+ 500.0
+ ],
+ [
+ 110.817614420365288,
+ 18.850959000090086,
+ 500.0
+ ],
+ [
+ 110.759034728250413,
+ 18.795388685937745,
+ 500.0
+ ],
+ [
+ 110.691248468524876,
+ 18.750325443185371,
+ 500.0
+ ],
+ [
+ 110.616308252269164,
+ 18.717129798071255,
+ 500.0
+ ],
+ [
+ 110.536478195957926,
+ 18.696803326684066,
+ 500.0
+ ],
+ [
+ 110.454166666666666,
+ 18.689959046953422,
+ 500.0
+ ],
+ [
+ 110.371855137375405,
+ 18.696803326684066,
+ 500.0
+ ],
+ [
+ 110.292025081064168,
+ 18.717129798071255,
+ 500.0
+ ],
+ [
+ 110.217084864808456,
+ 18.750325443185371,
+ 500.0
+ ],
+ [
+ 110.149298605082919,
+ 18.795388685937745,
+ 500.0
+ ],
+ [
+ 110.090718912968043,
+ 18.850959000090086,
+ 500.0
+ ],
+ [
+ 110.043125391750692,
+ 18.915357226022905,
+ 500.0
+ ],
+ [
+ 110.007970647186795,
+ 18.986635487384131,
+ 500.0
+ ],
+ [
+ 109.986335429080043,
+ 19.062635318723128,
+ 500.0
+ ],
+ [
+ 109.97889433771941,
+ 19.141052363413685,
+ 500.0
+ ],
+ [
+ 109.98589329587179,
+ 19.219505784666254,
+ 500.0
+ ],
+ [
+ 110.007139703044899,
+ 19.295610358824952,
+ 500.0
+ ],
+ [
+ 110.042005852351522,
+ 19.367049097465461,
+ 500.0
+ ],
+ [
+ 110.089445803854161,
+ 19.431644181178228,
+ 500.0
+ ],
+ [
+ 110.148025479067201,
+ 19.487423990943132,
+ 500.0
+ ],
+ [
+ 110.215965282612288,
+ 19.532684098878118,
+ 500.0
+ ],
+ [
+ 110.291194088255324,
+ 19.566040232613041,
+ 500.0
+ ],
+ [
+ 110.371412972402084,
+ 19.586471456793525,
+ 500.0
+ ],
+ [
+ 110.454166666666666,
+ 19.593352117025066,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000172,
+ "name": "无人机管控空域",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "18.690493377626",
+ "lng": "109.160149051614",
+ "radius": 5273,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.127197,
+ 18.654785,
+ 0.0
+ ],
+ [
+ 109.127197,
+ 18.69873,
+ 0.0
+ ],
+ [
+ 109.138184,
+ 18.69873,
+ 0.0
+ ],
+ [
+ 109.138184,
+ 18.709717,
+ 0.0
+ ],
+ [
+ 109.14917,
+ 18.709717,
+ 0.0
+ ],
+ [
+ 109.14917,
+ 18.720703,
+ 0.0
+ ],
+ [
+ 109.171143,
+ 18.720703,
+ 0.0
+ ],
+ [
+ 109.171143,
+ 18.726196,
+ 0.0
+ ],
+ [
+ 109.193115,
+ 18.726196,
+ 0.0
+ ],
+ [
+ 109.193115,
+ 18.687744,
+ 0.0
+ ],
+ [
+ 109.182129,
+ 18.687744,
+ 0.0
+ ],
+ [
+ 109.182129,
+ 18.671265,
+ 0.0
+ ],
+ [
+ 109.171143,
+ 18.671265,
+ 0.0
+ ],
+ [
+ 109.171143,
+ 18.660278,
+ 0.0
+ ],
+ [
+ 109.14917,
+ 18.660278,
+ 0.0
+ ],
+ [
+ 109.14917,
+ 18.654785,
+ 0.0
+ ],
+ [
+ 109.127197,
+ 18.654785,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000262,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.7371825800996",
+ "lng": "109.121703821352",
+ "radius": 841,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.116211,
+ 18.731689,
+ 90.0
+ ],
+ [
+ 109.116211,
+ 18.742676,
+ 90.0
+ ],
+ [
+ 109.127197,
+ 18.742676,
+ 90.0
+ ],
+ [
+ 109.127197,
+ 18.731689,
+ 90.0
+ ],
+ [
+ 109.116211,
+ 18.731689,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000196,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.6795040799036",
+ "lng": "109.099732123216",
+ "radius": 2214,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.094238,
+ 18.676758,
+ 60.0
+ ],
+ [
+ 109.094238,
+ 18.69873,
+ 60.0
+ ],
+ [
+ 109.105225,
+ 18.69873,
+ 60.0
+ ],
+ [
+ 109.105225,
+ 18.660278,
+ 60.0
+ ],
+ [
+ 109.094238,
+ 18.660278,
+ 60.0
+ ],
+ [
+ 109.094238,
+ 18.676758,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000193,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.5449220793966",
+ "lng": "110.022582823336",
+ "radius": 841,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.01709,
+ 18.539429,
+ 90.0
+ ],
+ [
+ 110.01709,
+ 18.550415,
+ 90.0
+ ],
+ [
+ 110.028076,
+ 18.550415,
+ 90.0
+ ],
+ [
+ 110.028076,
+ 18.539429,
+ 90.0
+ ],
+ [
+ 110.01709,
+ 18.539429,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000255,
+ "name": "无人机管控空域",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "18.498230713374",
+ "lng": "109.967658436609",
+ "radius": 4334,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.984138,
+ 18.462524,
+ 0.0
+ ],
+ [
+ 109.984131,
+ 18.462524,
+ 0.0
+ ],
+ [
+ 109.984131,
+ 18.468018,
+ 0.0
+ ],
+ [
+ 109.973145,
+ 18.468018,
+ 0.0
+ ],
+ [
+ 109.973145,
+ 18.484497,
+ 0.0
+ ],
+ [
+ 109.962158,
+ 18.484497,
+ 0.0
+ ],
+ [
+ 109.962158,
+ 18.500977,
+ 0.0
+ ],
+ [
+ 109.951172,
+ 18.500977,
+ 0.0
+ ],
+ [
+ 109.951172,
+ 18.517456,
+ 0.0
+ ],
+ [
+ 109.962158,
+ 18.517456,
+ 0.0
+ ],
+ [
+ 109.962158,
+ 18.522949,
+ 0.0
+ ],
+ [
+ 109.951172,
+ 18.522949,
+ 0.0
+ ],
+ [
+ 109.951172,
+ 18.533936,
+ 0.0
+ ],
+ [
+ 109.973145,
+ 18.533936,
+ 0.0
+ ],
+ [
+ 109.973145,
+ 18.528442,
+ 0.0
+ ],
+ [
+ 109.984138,
+ 18.528442,
+ 0.0
+ ],
+ [
+ 109.984138,
+ 18.462524,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000170,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.6355590797285",
+ "lng": "109.187621911188",
+ "radius": 654,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.182129,
+ 18.632812,
+ 90.0
+ ],
+ [
+ 109.182129,
+ 18.638306,
+ 90.0
+ ],
+ [
+ 109.193115,
+ 18.638306,
+ 90.0
+ ],
+ [
+ 109.193115,
+ 18.632812,
+ 90.0
+ ],
+ [
+ 109.182129,
+ 18.632812,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000174,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.4707640791389",
+ "lng": "109.934692763898",
+ "radius": 1084,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.929199,
+ 18.473511,
+ 90.0
+ ],
+ [
+ 109.929199,
+ 18.479004,
+ 90.0
+ ],
+ [
+ 109.940186,
+ 18.479004,
+ 90.0
+ ],
+ [
+ 109.940186,
+ 18.462524,
+ 90.0
+ ],
+ [
+ 109.929199,
+ 18.462524,
+ 90.0
+ ],
+ [
+ 109.929199,
+ 18.473511,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000253,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.4680175791144",
+ "lng": "109.945679175893",
+ "radius": 841,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.940186,
+ 18.468018,
+ 60.0
+ ],
+ [
+ 109.940186,
+ 18.473511,
+ 60.0
+ ],
+ [
+ 109.951172,
+ 18.473511,
+ 60.0
+ ],
+ [
+ 109.951172,
+ 18.462524,
+ 60.0
+ ],
+ [
+ 109.940186,
+ 18.462524,
+ 60.0
+ ],
+ [
+ 109.940186,
+ 18.468018,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000232,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.5174560793103",
+ "lng": "110.044555676399",
+ "radius": 841,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.039062,
+ 18.517456,
+ 90.0
+ ],
+ [
+ 110.039062,
+ 18.522949,
+ 90.0
+ ],
+ [
+ 110.050049,
+ 18.522949,
+ 90.0
+ ],
+ [
+ 110.050049,
+ 18.511963,
+ 90.0
+ ],
+ [
+ 110.039062,
+ 18.511963,
+ 90.0
+ ],
+ [
+ 110.039062,
+ 18.517456,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000241,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.4844970791749",
+ "lng": "110.055542704215",
+ "radius": 2511,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.050049,
+ 18.484497,
+ 90.0
+ ],
+ [
+ 110.050049,
+ 18.50647,
+ 90.0
+ ],
+ [
+ 110.061035,
+ 18.50647,
+ 90.0
+ ],
+ [
+ 110.061035,
+ 18.462524,
+ 90.0
+ ],
+ [
+ 110.050049,
+ 18.462524,
+ 90.0
+ ],
+ [
+ 110.050049,
+ 18.484497,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000200,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.6602780798334",
+ "lng": "109.19860867786",
+ "radius": 841,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.193115,
+ 18.660278,
+ 60.0
+ ],
+ [
+ 109.193115,
+ 18.665771,
+ 60.0
+ ],
+ [
+ 109.204102,
+ 18.665771,
+ 60.0
+ ],
+ [
+ 109.204102,
+ 18.654785,
+ 60.0
+ ],
+ [
+ 109.193115,
+ 18.654785,
+ 60.0
+ ],
+ [
+ 109.193115,
+ 18.660278,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000192,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.646540070749",
+ "lng": "109.148405136711",
+ "radius": 4798,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.105225,
+ 18.654785,
+ 60.0
+ ],
+ [
+ 109.105225,
+ 18.660278,
+ 60.0
+ ],
+ [
+ 109.116211,
+ 18.660278,
+ 60.0
+ ],
+ [
+ 109.116211,
+ 18.643799,
+ 60.0
+ ],
+ [
+ 109.127197,
+ 18.643799,
+ 60.0
+ ],
+ [
+ 109.127197,
+ 18.638306,
+ 60.0
+ ],
+ [
+ 109.171143,
+ 18.638306,
+ 60.0
+ ],
+ [
+ 109.171143,
+ 18.643799,
+ 60.0
+ ],
+ [
+ 109.182129,
+ 18.643799,
+ 60.0
+ ],
+ [
+ 109.182129,
+ 18.654785,
+ 60.0
+ ],
+ [
+ 109.193115,
+ 18.654785,
+ 60.0
+ ],
+ [
+ 109.193115,
+ 18.638306,
+ 60.0
+ ],
+ [
+ 109.182129,
+ 18.638306,
+ 60.0
+ ],
+ [
+ 109.182129,
+ 18.632812,
+ 60.0
+ ],
+ [
+ 109.127197,
+ 18.632812,
+ 60.0
+ ],
+ [
+ 109.127197,
+ 18.627319,
+ 60.0
+ ],
+ [
+ 109.116211,
+ 18.627319,
+ 60.0
+ ],
+ [
+ 109.116211,
+ 18.632812,
+ 60.0
+ ],
+ [
+ 109.105225,
+ 18.632812,
+ 60.0
+ ],
+ [
+ 109.105225,
+ 18.654785,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000215,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.5476697705066",
+ "lng": "109.99511906015",
+ "radius": 2490,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.973146,
+ 18.555908,
+ 60.0
+ ],
+ [
+ 110.006104,
+ 18.555908,
+ 60.0
+ ],
+ [
+ 110.006104,
+ 18.550415,
+ 60.0
+ ],
+ [
+ 110.01709,
+ 18.550415,
+ 60.0
+ ],
+ [
+ 110.01709,
+ 18.539429,
+ 60.0
+ ],
+ [
+ 110.006104,
+ 18.539429,
+ 60.0
+ ],
+ [
+ 110.006104,
+ 18.544922,
+ 60.0
+ ],
+ [
+ 109.995117,
+ 18.544922,
+ 60.0
+ ],
+ [
+ 109.995117,
+ 18.550415,
+ 60.0
+ ],
+ [
+ 109.973146,
+ 18.550415,
+ 60.0
+ ],
+ [
+ 109.973146,
+ 18.555908,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000180,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.7069700800039",
+ "lng": "109.099731767524",
+ "radius": 1083,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.094238,
+ 18.709717,
+ 90.0
+ ],
+ [
+ 109.094238,
+ 18.71521,
+ 90.0
+ ],
+ [
+ 109.105225,
+ 18.71521,
+ 90.0
+ ],
+ [
+ 109.105225,
+ 18.69873,
+ 90.0
+ ],
+ [
+ 109.094238,
+ 18.69873,
+ 90.0
+ ],
+ [
+ 109.094238,
+ 18.709717,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000229,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 30,
+ "level": 2,
+ "lat": "18.5229524829729",
+ "lng": "110.011600910972",
+ "radius": 4208,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.984131,
+ 18.550415,
+ 30.0
+ ],
+ [
+ 109.995117,
+ 18.550415,
+ 30.0
+ ],
+ [
+ 109.995117,
+ 18.544922,
+ 30.0
+ ],
+ [
+ 110.006104,
+ 18.544922,
+ 30.0
+ ],
+ [
+ 110.006104,
+ 18.539429,
+ 30.0
+ ],
+ [
+ 110.01709,
+ 18.539429,
+ 30.0
+ ],
+ [
+ 110.01709,
+ 18.528442,
+ 30.0
+ ],
+ [
+ 110.028076,
+ 18.528442,
+ 30.0
+ ],
+ [
+ 110.028076,
+ 18.511963,
+ 30.0
+ ],
+ [
+ 110.039062,
+ 18.511963,
+ 30.0
+ ],
+ [
+ 110.039062,
+ 18.495486,
+ 30.0
+ ],
+ [
+ 110.01709,
+ 18.495486,
+ 30.0
+ ],
+ [
+ 110.01709,
+ 18.50647,
+ 30.0
+ ],
+ [
+ 110.006104,
+ 18.50647,
+ 30.0
+ ],
+ [
+ 110.006104,
+ 18.522949,
+ 30.0
+ ],
+ [
+ 109.995117,
+ 18.522949,
+ 30.0
+ ],
+ [
+ 109.995117,
+ 18.528442,
+ 30.0
+ ],
+ [
+ 109.984131,
+ 18.528442,
+ 30.0
+ ],
+ [
+ 109.984131,
+ 18.550415,
+ 30.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000247,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.4872435791994",
+ "lng": "109.934692764135",
+ "radius": 1083,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.929199,
+ 18.484497,
+ 60.0
+ ],
+ [
+ 109.929199,
+ 18.495483,
+ 60.0
+ ],
+ [
+ 109.940186,
+ 18.495483,
+ 60.0
+ ],
+ [
+ 109.940186,
+ 18.479004,
+ 60.0
+ ],
+ [
+ 109.929199,
+ 18.479004,
+ 60.0
+ ],
+ [
+ 109.929199,
+ 18.484497,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000276,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.6987305799593",
+ "lng": "109.220581534729",
+ "radius": 1921,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.215088,
+ 18.709717,
+ 60.0
+ ],
+ [
+ 109.215088,
+ 18.71521,
+ 60.0
+ ],
+ [
+ 109.226074,
+ 18.71521,
+ 60.0
+ ],
+ [
+ 109.226074,
+ 18.682251,
+ 60.0
+ ],
+ [
+ 109.215088,
+ 18.682251,
+ 60.0
+ ],
+ [
+ 109.215088,
+ 18.709717,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000173,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.3279415785989",
+ "lng": "109.495238912776",
+ "radius": 655,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.489746,
+ 18.325195,
+ 90.0
+ ],
+ [
+ 109.489746,
+ 18.330688,
+ 90.0
+ ],
+ [
+ 109.500732,
+ 18.330688,
+ 90.0
+ ],
+ [
+ 109.500732,
+ 18.325195,
+ 90.0
+ ],
+ [
+ 109.489746,
+ 18.325195,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000197,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.6795040798891",
+ "lng": "109.088745445118",
+ "radius": 1632,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.083252,
+ 18.676758,
+ 90.0
+ ],
+ [
+ 109.083252,
+ 18.693237,
+ 90.0
+ ],
+ [
+ 109.094238,
+ 18.693237,
+ 90.0
+ ],
+ [
+ 109.094238,
+ 18.665771,
+ 90.0
+ ],
+ [
+ 109.083252,
+ 18.665771,
+ 90.0
+ ],
+ [
+ 109.083252,
+ 18.676758,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000238,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 30,
+ "level": 2,
+ "lat": "18.4790054950414",
+ "lng": "109.942937320516",
+ "radius": 2336,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.940186,
+ 18.484497,
+ 30.0
+ ],
+ [
+ 109.940186,
+ 18.495483,
+ 30.0
+ ],
+ [
+ 109.929199,
+ 18.495483,
+ 30.0
+ ],
+ [
+ 109.929199,
+ 18.495486,
+ 30.0
+ ],
+ [
+ 109.956673,
+ 18.495486,
+ 30.0
+ ],
+ [
+ 109.956673,
+ 18.462524,
+ 30.0
+ ],
+ [
+ 109.951172,
+ 18.462524,
+ 30.0
+ ],
+ [
+ 109.951172,
+ 18.473511,
+ 30.0
+ ],
+ [
+ 109.940186,
+ 18.473511,
+ 30.0
+ ],
+ [
+ 109.940186,
+ 18.484497,
+ 30.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000239,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.7234495800495",
+ "lng": "109.121703732264",
+ "radius": 1083,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.116211,
+ 18.71521,
+ 60.0
+ ],
+ [
+ 109.116211,
+ 18.731689,
+ 60.0
+ ],
+ [
+ 109.127197,
+ 18.731689,
+ 60.0
+ ],
+ [
+ 109.127197,
+ 18.71521,
+ 60.0
+ ],
+ [
+ 109.116211,
+ 18.71521,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000248,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.6437933951021",
+ "lng": "109.1381835",
+ "radius": 4979,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.094238,
+ 18.643799,
+ 90.0
+ ],
+ [
+ 109.094238,
+ 18.660278,
+ 90.0
+ ],
+ [
+ 109.105225,
+ 18.660278,
+ 90.0
+ ],
+ [
+ 109.105225,
+ 18.632812,
+ 90.0
+ ],
+ [
+ 109.116211,
+ 18.632812,
+ 90.0
+ ],
+ [
+ 109.116211,
+ 18.627319,
+ 90.0
+ ],
+ [
+ 109.127197,
+ 18.627319,
+ 90.0
+ ],
+ [
+ 109.127197,
+ 18.632812,
+ 90.0
+ ],
+ [
+ 109.182129,
+ 18.632812,
+ 90.0
+ ],
+ [
+ 109.182129,
+ 18.627319,
+ 90.0
+ ],
+ [
+ 109.171143,
+ 18.627319,
+ 90.0
+ ],
+ [
+ 109.171143,
+ 18.621826,
+ 90.0
+ ],
+ [
+ 109.127197,
+ 18.621826,
+ 90.0
+ ],
+ [
+ 109.127197,
+ 18.616333,
+ 90.0
+ ],
+ [
+ 109.105225,
+ 18.616333,
+ 90.0
+ ],
+ [
+ 109.105225,
+ 18.627319,
+ 90.0
+ ],
+ [
+ 109.094238,
+ 18.627319,
+ 90.0
+ ],
+ [
+ 109.094238,
+ 18.643799,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000233,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 30,
+ "level": 2,
+ "lat": "18.7165870006844",
+ "lng": "109.132686262554",
+ "radius": 4096,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.105225,
+ 18.690494,
+ 30.0
+ ],
+ [
+ 109.105225,
+ 18.704224,
+ 30.0
+ ],
+ [
+ 109.116211,
+ 18.704224,
+ 30.0
+ ],
+ [
+ 109.116211,
+ 18.71521,
+ 30.0
+ ],
+ [
+ 109.127197,
+ 18.71521,
+ 30.0
+ ],
+ [
+ 109.127197,
+ 18.731689,
+ 30.0
+ ],
+ [
+ 109.138184,
+ 18.731689,
+ 30.0
+ ],
+ [
+ 109.138184,
+ 18.737183,
+ 30.0
+ ],
+ [
+ 109.14917,
+ 18.737183,
+ 30.0
+ ],
+ [
+ 109.14917,
+ 18.742676,
+ 30.0
+ ],
+ [
+ 109.160156,
+ 18.742676,
+ 30.0
+ ],
+ [
+ 109.160156,
+ 18.720703,
+ 30.0
+ ],
+ [
+ 109.14917,
+ 18.720703,
+ 30.0
+ ],
+ [
+ 109.14917,
+ 18.709717,
+ 30.0
+ ],
+ [
+ 109.138184,
+ 18.709717,
+ 30.0
+ ],
+ [
+ 109.138184,
+ 18.69873,
+ 30.0
+ ],
+ [
+ 109.127197,
+ 18.69873,
+ 30.0
+ ],
+ [
+ 109.127197,
+ 18.690494,
+ 30.0
+ ],
+ [
+ 109.105225,
+ 18.690494,
+ 30.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000176,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.3142104642786",
+ "lng": "109.495238615073",
+ "radius": 3430,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.467767,
+ 18.330688,
+ 60.0
+ ],
+ [
+ 109.489746,
+ 18.330688,
+ 60.0
+ ],
+ [
+ 109.489746,
+ 18.325195,
+ 60.0
+ ],
+ [
+ 109.500732,
+ 18.325195,
+ 60.0
+ ],
+ [
+ 109.500732,
+ 18.319702,
+ 60.0
+ ],
+ [
+ 109.522705,
+ 18.319702,
+ 60.0
+ ],
+ [
+ 109.522705,
+ 18.297729,
+ 60.0
+ ],
+ [
+ 109.511719,
+ 18.297729,
+ 60.0
+ ],
+ [
+ 109.511719,
+ 18.308716,
+ 60.0
+ ],
+ [
+ 109.500732,
+ 18.308716,
+ 60.0
+ ],
+ [
+ 109.500732,
+ 18.314209,
+ 60.0
+ ],
+ [
+ 109.489746,
+ 18.314209,
+ 60.0
+ ],
+ [
+ 109.489746,
+ 18.308716,
+ 60.0
+ ],
+ [
+ 109.47876,
+ 18.308716,
+ 60.0
+ ],
+ [
+ 109.47876,
+ 18.314209,
+ 60.0
+ ],
+ [
+ 109.467773,
+ 18.314209,
+ 60.0
+ ],
+ [
+ 109.467773,
+ 18.308716,
+ 60.0
+ ],
+ [
+ 109.467767,
+ 18.308716,
+ 60.0
+ ],
+ [
+ 109.467767,
+ 18.330688,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000250,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.3306904653688",
+ "lng": "109.462279127511",
+ "radius": 2962,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.456787,
+ 18.336182,
+ 90.0
+ ],
+ [
+ 109.489746,
+ 18.336182,
+ 90.0
+ ],
+ [
+ 109.489746,
+ 18.330688,
+ 90.0
+ ],
+ [
+ 109.456787,
+ 18.330688,
+ 90.0
+ ],
+ [
+ 109.456787,
+ 18.325195,
+ 90.0
+ ],
+ [
+ 109.434814,
+ 18.325195,
+ 90.0
+ ],
+ [
+ 109.434814,
+ 18.330688,
+ 90.0
+ ],
+ [
+ 109.445801,
+ 18.330688,
+ 90.0
+ ],
+ [
+ 109.445801,
+ 18.336182,
+ 90.0
+ ],
+ [
+ 109.456787,
+ 18.336182,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000264,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.542175579401",
+ "lng": "109.934692411674",
+ "radius": 654,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.929199,
+ 18.539429,
+ 90.0
+ ],
+ [
+ 109.929199,
+ 18.544922,
+ 90.0
+ ],
+ [
+ 109.940186,
+ 18.544922,
+ 90.0
+ ],
+ [
+ 109.940186,
+ 18.539429,
+ 90.0
+ ],
+ [
+ 109.929199,
+ 18.539429,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000202,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.5092165792656",
+ "lng": "109.923706969674",
+ "radius": 3409,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.918213,
+ 18.533936,
+ 90.0
+ ],
+ [
+ 109.918213,
+ 18.539429,
+ 90.0
+ ],
+ [
+ 109.929199,
+ 18.539429,
+ 90.0
+ ],
+ [
+ 109.929199,
+ 18.479004,
+ 90.0
+ ],
+ [
+ 109.918213,
+ 18.479004,
+ 90.0
+ ],
+ [
+ 109.918213,
+ 18.533936,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000228,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.5202025793059",
+ "lng": "110.033569264616",
+ "radius": 1083,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.028076,
+ 18.522949,
+ 60.0
+ ],
+ [
+ 110.028076,
+ 18.528442,
+ 60.0
+ ],
+ [
+ 110.039062,
+ 18.528442,
+ 60.0
+ ],
+ [
+ 110.039062,
+ 18.511963,
+ 60.0
+ ],
+ [
+ 110.028076,
+ 18.511963,
+ 60.0
+ ],
+ [
+ 110.028076,
+ 18.522949,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000237,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.5311890793607",
+ "lng": "109.934692235175",
+ "radius": 1083,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.929199,
+ 18.522949,
+ 60.0
+ ],
+ [
+ 109.929199,
+ 18.539429,
+ 60.0
+ ],
+ [
+ 109.940186,
+ 18.539429,
+ 60.0
+ ],
+ [
+ 109.940186,
+ 18.522949,
+ 60.0
+ ],
+ [
+ 109.929199,
+ 18.522949,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000201,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.5339355793563",
+ "lng": "110.022583176567",
+ "radius": 841,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.01709,
+ 18.533936,
+ 60.0
+ ],
+ [
+ 110.01709,
+ 18.539429,
+ 60.0
+ ],
+ [
+ 110.028076,
+ 18.539429,
+ 60.0
+ ],
+ [
+ 110.028076,
+ 18.528442,
+ 60.0
+ ],
+ [
+ 110.01709,
+ 18.528442,
+ 60.0
+ ],
+ [
+ 110.01709,
+ 18.533936,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000182,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.6602780798188",
+ "lng": "109.209595177844",
+ "radius": 841,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.204102,
+ 18.660278,
+ 90.0
+ ],
+ [
+ 109.204102,
+ 18.665771,
+ 90.0
+ ],
+ [
+ 109.215088,
+ 18.665771,
+ 90.0
+ ],
+ [
+ 109.215088,
+ 18.654785,
+ 90.0
+ ],
+ [
+ 109.204102,
+ 18.654785,
+ 90.0
+ ],
+ [
+ 109.204102,
+ 18.660278,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000209,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.5504162708412",
+ "lng": "109.951171793073",
+ "radius": 2395,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.940186,
+ 18.539429,
+ 60.0
+ ],
+ [
+ 109.940186,
+ 18.544922,
+ 60.0
+ ],
+ [
+ 109.929199,
+ 18.544922,
+ 60.0
+ ],
+ [
+ 109.929199,
+ 18.550415,
+ 60.0
+ ],
+ [
+ 109.940186,
+ 18.550415,
+ 60.0
+ ],
+ [
+ 109.940186,
+ 18.555908,
+ 60.0
+ ],
+ [
+ 109.951172,
+ 18.555908,
+ 60.0
+ ],
+ [
+ 109.951172,
+ 18.561401,
+ 60.0
+ ],
+ [
+ 109.962158,
+ 18.561401,
+ 60.0
+ ],
+ [
+ 109.962158,
+ 18.555908,
+ 60.0
+ ],
+ [
+ 109.973146,
+ 18.555908,
+ 60.0
+ ],
+ [
+ 109.973146,
+ 18.550415,
+ 60.0
+ ],
+ [
+ 109.951172,
+ 18.550415,
+ 60.0
+ ],
+ [
+ 109.951172,
+ 18.539429,
+ 60.0
+ ],
+ [
+ 109.940186,
+ 18.539429,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000184,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 30,
+ "level": 2,
+ "lat": "18.6644019955567",
+ "lng": "109.132692224852",
+ "radius": 4097,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.105225,
+ 18.660278,
+ 30.0
+ ],
+ [
+ 109.105225,
+ 18.690494,
+ 30.0
+ ],
+ [
+ 109.127197,
+ 18.690494,
+ 30.0
+ ],
+ [
+ 109.127197,
+ 18.654785,
+ 30.0
+ ],
+ [
+ 109.14917,
+ 18.654785,
+ 30.0
+ ],
+ [
+ 109.14917,
+ 18.660278,
+ 30.0
+ ],
+ [
+ 109.160151,
+ 18.660278,
+ 30.0
+ ],
+ [
+ 109.160151,
+ 18.638306,
+ 30.0
+ ],
+ [
+ 109.127197,
+ 18.638306,
+ 30.0
+ ],
+ [
+ 109.127197,
+ 18.643799,
+ 30.0
+ ],
+ [
+ 109.116211,
+ 18.643799,
+ 30.0
+ ],
+ [
+ 109.116211,
+ 18.660278,
+ 30.0
+ ],
+ [
+ 109.105225,
+ 18.660278,
+ 30.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000234,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.7344310509811",
+ "lng": "109.171908149018",
+ "radius": 4796,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.204102,
+ 18.726196,
+ 60.0
+ ],
+ [
+ 109.204102,
+ 18.737183,
+ 60.0
+ ],
+ [
+ 109.193115,
+ 18.737183,
+ 60.0
+ ],
+ [
+ 109.193115,
+ 18.742676,
+ 60.0
+ ],
+ [
+ 109.14917,
+ 18.742676,
+ 60.0
+ ],
+ [
+ 109.14917,
+ 18.737183,
+ 60.0
+ ],
+ [
+ 109.138184,
+ 18.737183,
+ 60.0
+ ],
+ [
+ 109.138184,
+ 18.731689,
+ 60.0
+ ],
+ [
+ 109.127197,
+ 18.731689,
+ 60.0
+ ],
+ [
+ 109.127197,
+ 18.742676,
+ 60.0
+ ],
+ [
+ 109.138184,
+ 18.742676,
+ 60.0
+ ],
+ [
+ 109.138184,
+ 18.748169,
+ 60.0
+ ],
+ [
+ 109.182129,
+ 18.748169,
+ 60.0
+ ],
+ [
+ 109.182129,
+ 18.753662,
+ 60.0
+ ],
+ [
+ 109.204102,
+ 18.753662,
+ 60.0
+ ],
+ [
+ 109.204102,
+ 18.748169,
+ 60.0
+ ],
+ [
+ 109.215088,
+ 18.748169,
+ 60.0
+ ],
+ [
+ 109.215088,
+ 18.720703,
+ 60.0
+ ],
+ [
+ 109.204102,
+ 18.720703,
+ 60.0
+ ],
+ [
+ 109.204102,
+ 18.726196,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000181,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.4378078442938",
+ "lng": "109.984132580264",
+ "radius": 3595,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.962158,
+ 18.440552,
+ 90.0
+ ],
+ [
+ 109.973145,
+ 18.440552,
+ 90.0
+ ],
+ [
+ 109.973145,
+ 18.435059,
+ 90.0
+ ],
+ [
+ 110.01709,
+ 18.435059,
+ 90.0
+ ],
+ [
+ 110.01709,
+ 18.429565,
+ 90.0
+ ],
+ [
+ 110.006104,
+ 18.429565,
+ 90.0
+ ],
+ [
+ 110.006104,
+ 18.424072,
+ 90.0
+ ],
+ [
+ 109.984131,
+ 18.424072,
+ 90.0
+ ],
+ [
+ 109.984131,
+ 18.429565,
+ 90.0
+ ],
+ [
+ 109.962158,
+ 18.429565,
+ 90.0
+ ],
+ [
+ 109.962158,
+ 18.435059,
+ 90.0
+ ],
+ [
+ 109.951172,
+ 18.435059,
+ 90.0
+ ],
+ [
+ 109.951172,
+ 18.446045,
+ 90.0
+ ],
+ [
+ 109.962158,
+ 18.446045,
+ 90.0
+ ],
+ [
+ 109.962158,
+ 18.440552,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000271,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 30,
+ "level": 2,
+ "lat": "18.7165870007572",
+ "lng": "109.187626237523",
+ "radius": 4096,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.160156,
+ 18.742676,
+ 30.0
+ ],
+ [
+ 109.193115,
+ 18.742676,
+ 30.0
+ ],
+ [
+ 109.193115,
+ 18.737183,
+ 30.0
+ ],
+ [
+ 109.204102,
+ 18.737183,
+ 30.0
+ ],
+ [
+ 109.204102,
+ 18.720703,
+ 30.0
+ ],
+ [
+ 109.215088,
+ 18.720703,
+ 30.0
+ ],
+ [
+ 109.215088,
+ 18.690494,
+ 30.0
+ ],
+ [
+ 109.193115,
+ 18.690494,
+ 30.0
+ ],
+ [
+ 109.193115,
+ 18.726196,
+ 30.0
+ ],
+ [
+ 109.171143,
+ 18.726196,
+ 30.0
+ ],
+ [
+ 109.171143,
+ 18.720703,
+ 30.0
+ ],
+ [
+ 109.160156,
+ 18.720703,
+ 30.0
+ ],
+ [
+ 109.160156,
+ 18.742676,
+ 30.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000185,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 30,
+ "level": 2,
+ "lat": "18.6644019963561",
+ "lng": "109.187615274302",
+ "radius": 4097,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.160151,
+ 18.660278,
+ 30.0
+ ],
+ [
+ 109.171143,
+ 18.660278,
+ 30.0
+ ],
+ [
+ 109.171143,
+ 18.671265,
+ 30.0
+ ],
+ [
+ 109.182129,
+ 18.671265,
+ 30.0
+ ],
+ [
+ 109.182129,
+ 18.687744,
+ 30.0
+ ],
+ [
+ 109.193115,
+ 18.687744,
+ 30.0
+ ],
+ [
+ 109.193115,
+ 18.690494,
+ 30.0
+ ],
+ [
+ 109.215088,
+ 18.690494,
+ 30.0
+ ],
+ [
+ 109.215088,
+ 18.682251,
+ 30.0
+ ],
+ [
+ 109.204102,
+ 18.682251,
+ 30.0
+ ],
+ [
+ 109.204102,
+ 18.665771,
+ 30.0
+ ],
+ [
+ 109.193115,
+ 18.665771,
+ 30.0
+ ],
+ [
+ 109.193115,
+ 18.654785,
+ 30.0
+ ],
+ [
+ 109.182129,
+ 18.654785,
+ 30.0
+ ],
+ [
+ 109.182129,
+ 18.643799,
+ 30.0
+ ],
+ [
+ 109.171143,
+ 18.643799,
+ 30.0
+ ],
+ [
+ 109.171143,
+ 18.638306,
+ 30.0
+ ],
+ [
+ 109.160151,
+ 18.638306,
+ 30.0
+ ],
+ [
+ 109.160151,
+ 18.660278,
+ 30.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000272,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.7344424876517",
+ "lng": "109.176641126331",
+ "radius": 5627,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.215088,
+ 18.71521,
+ 90.0
+ ],
+ [
+ 109.215088,
+ 18.748169,
+ 90.0
+ ],
+ [
+ 109.204102,
+ 18.748169,
+ 90.0
+ ],
+ [
+ 109.204102,
+ 18.753662,
+ 90.0
+ ],
+ [
+ 109.182129,
+ 18.753662,
+ 90.0
+ ],
+ [
+ 109.182129,
+ 18.748169,
+ 90.0
+ ],
+ [
+ 109.138184,
+ 18.748169,
+ 90.0
+ ],
+ [
+ 109.138184,
+ 18.742676,
+ 90.0
+ ],
+ [
+ 109.127197,
+ 18.742676,
+ 90.0
+ ],
+ [
+ 109.127197,
+ 18.753662,
+ 90.0
+ ],
+ [
+ 109.14917,
+ 18.753662,
+ 90.0
+ ],
+ [
+ 109.14917,
+ 18.759155,
+ 90.0
+ ],
+ [
+ 109.193115,
+ 18.759155,
+ 90.0
+ ],
+ [
+ 109.193115,
+ 18.764648,
+ 90.0
+ ],
+ [
+ 109.215088,
+ 18.764648,
+ 90.0
+ ],
+ [
+ 109.215088,
+ 18.753662,
+ 90.0
+ ],
+ [
+ 109.226074,
+ 18.753662,
+ 90.0
+ ],
+ [
+ 109.226074,
+ 18.71521,
+ 90.0
+ ],
+ [
+ 109.215088,
+ 18.71521,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000210,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.7097170799994",
+ "lng": "109.11071817835",
+ "radius": 841,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.105225,
+ 18.709717,
+ 60.0
+ ],
+ [
+ 109.105225,
+ 18.71521,
+ 60.0
+ ],
+ [
+ 109.116211,
+ 18.71521,
+ 60.0
+ ],
+ [
+ 109.116211,
+ 18.704224,
+ 60.0
+ ],
+ [
+ 109.105225,
+ 18.704224,
+ 60.0
+ ],
+ [
+ 109.105225,
+ 18.709717,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000260,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.4542845790639",
+ "lng": "109.945678736394",
+ "radius": 1084,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.940186,
+ 18.446045,
+ 90.0
+ ],
+ [
+ 109.940186,
+ 18.462524,
+ 90.0
+ ],
+ [
+ 109.951172,
+ 18.462524,
+ 90.0
+ ],
+ [
+ 109.951172,
+ 18.446045,
+ 90.0
+ ],
+ [
+ 109.940186,
+ 18.446045,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000177,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.4844970791893",
+ "lng": "110.044554619659",
+ "radius": 3108,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.039062,
+ 18.457031,
+ 60.0
+ ],
+ [
+ 110.039062,
+ 18.511963,
+ 60.0
+ ],
+ [
+ 110.050049,
+ 18.511963,
+ 60.0
+ ],
+ [
+ 110.050049,
+ 18.457031,
+ 60.0
+ ],
+ [
+ 110.039062,
+ 18.457031,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000263,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 30,
+ "level": 2,
+ "lat": "18.4680209774997",
+ "lng": "110.011595103142",
+ "radius": 4209,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.984137,
+ 18.462524,
+ 30.0
+ ],
+ [
+ 109.995117,
+ 18.462524,
+ 30.0
+ ],
+ [
+ 109.995117,
+ 18.457031,
+ 30.0
+ ],
+ [
+ 110.01709,
+ 18.457031,
+ 30.0
+ ],
+ [
+ 110.01709,
+ 18.495486,
+ 30.0
+ ],
+ [
+ 110.039062,
+ 18.495486,
+ 30.0
+ ],
+ [
+ 110.039062,
+ 18.457031,
+ 30.0
+ ],
+ [
+ 110.028076,
+ 18.457031,
+ 30.0
+ ],
+ [
+ 110.028076,
+ 18.446045,
+ 30.0
+ ],
+ [
+ 110.006104,
+ 18.446045,
+ 30.0
+ ],
+ [
+ 110.006104,
+ 18.440552,
+ 30.0
+ ],
+ [
+ 109.984137,
+ 18.440552,
+ 30.0
+ ],
+ [
+ 109.984137,
+ 18.462524,
+ 30.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8701,
+ "name": "Sanya Phoenix International Airport",
+ "country": "CN",
+ "city": "Sanya",
+ "height": 0,
+ "level": 2,
+ "lat": "18.2992220121157",
+ "lng": "109.367901142503",
+ "radius": 13548,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.330749313,
+ 18.312557259399998,
+ 0.0
+ ],
+ [
+ 109.240776507,
+ 18.315933313199999,
+ 0.0
+ ],
+ [
+ 109.251050586,
+ 18.2488851574,
+ 0.0
+ ],
+ [
+ 109.334358776,
+ 18.270564644299998,
+ 0.0
+ ],
+ [
+ 109.356675831,
+ 18.2459072487,
+ 0.0
+ ],
+ [
+ 109.372245895,
+ 18.238368677099999,
+ 0.0
+ ],
+ [
+ 109.406791233,
+ 18.2357749536,
+ 0.0
+ ],
+ [
+ 109.46577581299999,
+ 18.251385267300002,
+ 0.0
+ ],
+ [
+ 109.489644655,
+ 18.275248668,
+ 0.0
+ ],
+ [
+ 109.495918061,
+ 18.290741217299999,
+ 0.0
+ ],
+ [
+ 109.330749313,
+ 18.312557259399998,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8701,
+ "name": "Sanya Phoenix International Airport",
+ "country": "CN",
+ "city": "Sanya",
+ "height": 0,
+ "level": 2,
+ "lat": "18.306320019759",
+ "lng": "109.458676859894",
+ "radius": 13522,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.58592778,
+ 18.292433759400001,
+ 0.0
+ ],
+ [
+ 109.573907947,
+ 18.359468138299999,
+ 0.0
+ ],
+ [
+ 109.487260296,
+ 18.3361259152,
+ 0.0
+ ],
+ [
+ 109.468097222,
+ 18.356412134300001,
+ 0.0
+ ],
+ [
+ 109.452690635,
+ 18.364266419,
+ 0.0
+ ],
+ [
+ 109.435666212,
+ 18.3680671067,
+ 0.0
+ ],
+ [
+ 109.388204379,
+ 18.364224288300001,
+ 0.0
+ ],
+ [
+ 109.358543959,
+ 18.3534477567,
+ 0.0
+ ],
+ [
+ 109.345582406,
+ 18.342305629599998,
+ 0.0
+ ],
+ [
+ 109.33610235,
+ 18.3283584548,
+ 0.0
+ ],
+ [
+ 109.330749313,
+ 18.312557259399998,
+ 0.0
+ ],
+ [
+ 109.495918061,
+ 18.290741217299999,
+ 0.0
+ ],
+ [
+ 109.58592778,
+ 18.292433759400001,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 8701,
+ "name": "Sanya Phoenix International Airport",
+ "country": "CN",
+ "city": "Sanya",
+ "height": 120,
+ "level": 2,
+ "lat": "18.3023041172712",
+ "lng": "109.412954869451",
+ "radius": 23848,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.599167214,
+ 18.4238262756,
+ 120.0
+ ],
+ [
+ 109.631053894,
+ 18.246527006600001,
+ 120.0
+ ],
+ [
+ 109.226721534,
+ 18.180991435,
+ 120.0
+ ],
+ [
+ 109.194846915,
+ 18.358290704,
+ 120.0
+ ],
+ [
+ 109.599167214,
+ 18.4238262756,
+ 120.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000218,
+ "name": "无人机管控空域",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "18.2070920525998",
+ "lng": "109.668872262533",
+ "radius": 4786,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.665527,
+ 18.165894,
+ 0.0
+ ],
+ [
+ 109.665527,
+ 18.182373,
+ 0.0
+ ],
+ [
+ 109.654541,
+ 18.182373,
+ 0.0
+ ],
+ [
+ 109.654541,
+ 18.209839,
+ 0.0
+ ],
+ [
+ 109.643555,
+ 18.209839,
+ 0.0
+ ],
+ [
+ 109.643555,
+ 18.242798,
+ 0.0
+ ],
+ [
+ 109.665527,
+ 18.242798,
+ 0.0
+ ],
+ [
+ 109.665527,
+ 18.248291,
+ 0.0
+ ],
+ [
+ 109.682015,
+ 18.248291,
+ 0.0
+ ],
+ [
+ 109.682015,
+ 18.165894,
+ 0.0
+ ],
+ [
+ 109.665527,
+ 18.165894,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000211,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.4378057110734",
+ "lng": "110.033567656423",
+ "radius": 2755,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.050049,
+ 18.435059,
+ 90.0
+ ],
+ [
+ 110.050049,
+ 18.429565,
+ 90.0
+ ],
+ [
+ 110.039062,
+ 18.429565,
+ 90.0
+ ],
+ [
+ 110.039062,
+ 18.418579,
+ 90.0
+ ],
+ [
+ 110.01709,
+ 18.418579,
+ 90.0
+ ],
+ [
+ 110.01709,
+ 18.429565,
+ 90.0
+ ],
+ [
+ 110.028076,
+ 18.429565,
+ 90.0
+ ],
+ [
+ 110.028076,
+ 18.435059,
+ 90.0
+ ],
+ [
+ 110.039062,
+ 18.435059,
+ 90.0
+ ],
+ [
+ 110.039062,
+ 18.457031,
+ 90.0
+ ],
+ [
+ 110.050049,
+ 18.457031,
+ 90.0
+ ],
+ [
+ 110.050049,
+ 18.435059,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000261,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.2592775783598",
+ "lng": "109.506225326221",
+ "radius": 842,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.500732,
+ 18.253784,
+ 90.0
+ ],
+ [
+ 109.500732,
+ 18.264771,
+ 90.0
+ ],
+ [
+ 109.511719,
+ 18.264771,
+ 90.0
+ ],
+ [
+ 109.511719,
+ 18.253784,
+ 90.0
+ ],
+ [
+ 109.500732,
+ 18.253784,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000267,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.2510375783151",
+ "lng": "109.495238913168",
+ "radius": 655,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.489746,
+ 18.248291,
+ 90.0
+ ],
+ [
+ 109.489746,
+ 18.253784,
+ 90.0
+ ],
+ [
+ 109.500732,
+ 18.253784,
+ 90.0
+ ],
+ [
+ 109.500732,
+ 18.248291,
+ 90.0
+ ],
+ [
+ 109.489746,
+ 18.248291,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001375,
+ "name": "Sanya Phoenix International Airport",
+ "country": "CN",
+ "city": "Sanya",
+ "height": 500,
+ "level": 2,
+ "lat": "18.303701",
+ "lng": "109.412666",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 1
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.412666,
+ 18.755427223929129,
+ 500.0
+ ],
+ [
+ 109.495002575513723,
+ 18.748546810691948,
+ 500.0
+ ],
+ [
+ 109.574818059833191,
+ 18.728116241558883,
+ 500.0
+ ],
+ [
+ 109.649670358351614,
+ 18.694760925375228,
+ 500.0
+ ],
+ [
+ 109.717272663627242,
+ 18.649501427518114,
+ 500.0
+ ],
+ [
+ 109.775564457684482,
+ 18.593721579511278,
+ 500.0
+ ],
+ [
+ 109.822774881192728,
+ 18.529125362532326,
+ 500.0
+ ],
+ [
+ 109.857476457081802,
+ 18.457684011115433,
+ 500.0
+ ],
+ [
+ 109.878627558811999,
+ 18.38157508477272,
+ 500.0
+ ],
+ [
+ 109.885602458880101,
+ 18.303115485235192,
+ 500.0
+ ],
+ [
+ 109.878208254104536,
+ 18.224690551202251,
+ 500.0
+ ],
+ [
+ 109.856688416864543,
+ 18.148681440843699,
+ 500.0
+ ],
+ [
+ 109.821713146873464,
+ 18.077393018235014,
+ 500.0
+ ],
+ [
+ 109.774357083168269,
+ 18.012984399265349,
+ 500.0
+ ],
+ [
+ 109.716065273365061,
+ 17.957404192586779,
+ 500.0
+ ],
+ [
+ 109.648608584162162,
+ 17.912332299686447,
+ 500.0
+ ],
+ [
+ 109.574029974277224,
+ 17.879129922955197,
+ 500.0
+ ],
+ [
+ 109.494583241213533,
+ 17.858799179166642,
+ 500.0
+ ],
+ [
+ 109.412666,
+ 17.851953435130739,
+ 500.0
+ ],
+ [
+ 109.33074875878647,
+ 17.858799179166642,
+ 500.0
+ ],
+ [
+ 109.251302025722779,
+ 17.879129922955197,
+ 500.0
+ ],
+ [
+ 109.176723415837841,
+ 17.912332299686447,
+ 500.0
+ ],
+ [
+ 109.109266726634942,
+ 17.957404192586779,
+ 500.0
+ ],
+ [
+ 109.050974916831734,
+ 18.012984399265349,
+ 500.0
+ ],
+ [
+ 109.00361885312654,
+ 18.077393018235014,
+ 500.0
+ ],
+ [
+ 108.96864358313546,
+ 18.148681440843699,
+ 500.0
+ ],
+ [
+ 108.947123745895468,
+ 18.224690551202251,
+ 500.0
+ ],
+ [
+ 108.939729541119902,
+ 18.303115485235192,
+ 500.0
+ ],
+ [
+ 108.946704441188004,
+ 18.38157508477272,
+ 500.0
+ ],
+ [
+ 108.967855542918201,
+ 18.457684011115433,
+ 500.0
+ ],
+ [
+ 109.002557118807275,
+ 18.529125362532326,
+ 500.0
+ ],
+ [
+ 109.049767542315521,
+ 18.593721579511278,
+ 500.0
+ ],
+ [
+ 109.108059336372762,
+ 18.649501427518114,
+ 500.0
+ ],
+ [
+ 109.175661641648389,
+ 18.694760925375228,
+ 500.0
+ ],
+ [
+ 109.250513940166812,
+ 18.728116241558883,
+ 500.0
+ ],
+ [
+ 109.33032942448628,
+ 18.748546810691948,
+ 500.0
+ ],
+ [
+ 109.412666,
+ 18.755427223929129,
+ 500.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000274,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.2839965784368",
+ "lng": "109.517212434999",
+ "radius": 1633,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.511719,
+ 18.286743,
+ 90.0
+ ],
+ [
+ 109.511719,
+ 18.297729,
+ 90.0
+ ],
+ [
+ 109.522705,
+ 18.297729,
+ 90.0
+ ],
+ [
+ 109.522705,
+ 18.270264,
+ 90.0
+ ],
+ [
+ 109.511719,
+ 18.270264,
+ 90.0
+ ],
+ [
+ 109.511719,
+ 18.286743,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000219,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.2894900784713",
+ "lng": "109.407348935194",
+ "radius": 1633,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.401855,
+ 18.297729,
+ 90.0
+ ],
+ [
+ 109.401855,
+ 18.303223,
+ 90.0
+ ],
+ [
+ 109.412842,
+ 18.303223,
+ 90.0
+ ],
+ [
+ 109.412842,
+ 18.275757,
+ 90.0
+ ],
+ [
+ 109.401855,
+ 18.275757,
+ 90.0
+ ],
+ [
+ 109.401855,
+ 18.297729,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000199,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.2675189598983",
+ "lng": "109.484246588214",
+ "radius": 3995,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.467773,
+ 18.248291,
+ 60.0
+ ],
+ [
+ 109.467773,
+ 18.242798,
+ 60.0
+ ],
+ [
+ 109.456782,
+ 18.242798,
+ 60.0
+ ],
+ [
+ 109.456782,
+ 18.264771,
+ 60.0
+ ],
+ [
+ 109.47876,
+ 18.264771,
+ 60.0
+ ],
+ [
+ 109.47876,
+ 18.270264,
+ 60.0
+ ],
+ [
+ 109.489746,
+ 18.270264,
+ 60.0
+ ],
+ [
+ 109.489746,
+ 18.286743,
+ 60.0
+ ],
+ [
+ 109.500732,
+ 18.286743,
+ 60.0
+ ],
+ [
+ 109.500732,
+ 18.292236,
+ 60.0
+ ],
+ [
+ 109.511719,
+ 18.292236,
+ 60.0
+ ],
+ [
+ 109.511719,
+ 18.264771,
+ 60.0
+ ],
+ [
+ 109.500732,
+ 18.264771,
+ 60.0
+ ],
+ [
+ 109.500732,
+ 18.253784,
+ 60.0
+ ],
+ [
+ 109.489746,
+ 18.253784,
+ 60.0
+ ],
+ [
+ 109.489746,
+ 18.248291,
+ 60.0
+ ],
+ [
+ 109.467773,
+ 18.248291,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000203,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.2455445782948",
+ "lng": "109.429320913196",
+ "radius": 655,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.423828,
+ 18.242798,
+ 90.0
+ ],
+ [
+ 109.423828,
+ 18.248291,
+ 90.0
+ ],
+ [
+ 109.434814,
+ 18.248291,
+ 90.0
+ ],
+ [
+ 109.434814,
+ 18.242798,
+ 90.0
+ ],
+ [
+ 109.423828,
+ 18.242798,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000168,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 30,
+ "level": 2,
+ "lat": "18.3032228140595",
+ "lng": "109.500733196845",
+ "radius": 1684,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.489746,
+ 18.303223,
+ 30.0
+ ],
+ [
+ 109.489746,
+ 18.314209,
+ 30.0
+ ],
+ [
+ 109.500732,
+ 18.314209,
+ 30.0
+ ],
+ [
+ 109.500732,
+ 18.308716,
+ 30.0
+ ],
+ [
+ 109.511719,
+ 18.308716,
+ 30.0
+ ],
+ [
+ 109.511719,
+ 18.292236,
+ 30.0
+ ],
+ [
+ 109.500732,
+ 18.292236,
+ 30.0
+ ],
+ [
+ 109.500732,
+ 18.297729,
+ 30.0
+ ],
+ [
+ 109.489746,
+ 18.297729,
+ 30.0
+ ],
+ [
+ 109.489746,
+ 18.303223,
+ 30.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000226,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.2592794584243",
+ "lng": "109.429321106149",
+ "radius": 3430,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.456782,
+ 18.242798,
+ 60.0
+ ],
+ [
+ 109.434814,
+ 18.242798,
+ 60.0
+ ],
+ [
+ 109.434814,
+ 18.248291,
+ 60.0
+ ],
+ [
+ 109.423828,
+ 18.248291,
+ 60.0
+ ],
+ [
+ 109.423828,
+ 18.253784,
+ 60.0
+ ],
+ [
+ 109.412842,
+ 18.253784,
+ 60.0
+ ],
+ [
+ 109.412842,
+ 18.259277,
+ 60.0
+ ],
+ [
+ 109.401855,
+ 18.259277,
+ 60.0
+ ],
+ [
+ 109.401855,
+ 18.275757,
+ 60.0
+ ],
+ [
+ 109.412842,
+ 18.275757,
+ 60.0
+ ],
+ [
+ 109.412842,
+ 18.270264,
+ 60.0
+ ],
+ [
+ 109.423828,
+ 18.270264,
+ 60.0
+ ],
+ [
+ 109.423828,
+ 18.259277,
+ 60.0
+ ],
+ [
+ 109.434814,
+ 18.259277,
+ 60.0
+ ],
+ [
+ 109.434814,
+ 18.264771,
+ 60.0
+ ],
+ [
+ 109.456782,
+ 18.264771,
+ 60.0
+ ],
+ [
+ 109.456782,
+ 18.242798,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000254,
+ "name": "无人机管控空域",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "18.2922356861026",
+ "lng": "109.7094725",
+ "radius": 1310,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.698486,
+ 18.286743,
+ 0.0
+ ],
+ [
+ 109.698486,
+ 18.297729,
+ 0.0
+ ],
+ [
+ 109.720459,
+ 18.297729,
+ 0.0
+ ],
+ [
+ 109.720459,
+ 18.286743,
+ 0.0
+ ],
+ [
+ 109.698486,
+ 18.286743,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000175,
+ "name": "无人机管控空域",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "18.2839944311377",
+ "lng": "109.466249480962",
+ "radius": 3947,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.434814,
+ 18.264771,
+ 0.0
+ ],
+ [
+ 109.434814,
+ 18.303223,
+ 0.0
+ ],
+ [
+ 109.445801,
+ 18.303223,
+ 0.0
+ ],
+ [
+ 109.445801,
+ 18.308716,
+ 0.0
+ ],
+ [
+ 109.467773,
+ 18.308716,
+ 0.0
+ ],
+ [
+ 109.467773,
+ 18.314209,
+ 0.0
+ ],
+ [
+ 109.47876,
+ 18.314209,
+ 0.0
+ ],
+ [
+ 109.47876,
+ 18.308716,
+ 0.0
+ ],
+ [
+ 109.489746,
+ 18.308716,
+ 0.0
+ ],
+ [
+ 109.489746,
+ 18.297729,
+ 0.0
+ ],
+ [
+ 109.500732,
+ 18.297729,
+ 0.0
+ ],
+ [
+ 109.500732,
+ 18.286743,
+ 0.0
+ ],
+ [
+ 109.489746,
+ 18.286743,
+ 0.0
+ ],
+ [
+ 109.489746,
+ 18.270264,
+ 0.0
+ ],
+ [
+ 109.47876,
+ 18.270264,
+ 0.0
+ ],
+ [
+ 109.47876,
+ 18.264771,
+ 0.0
+ ],
+ [
+ 109.434814,
+ 18.264771,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000191,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.2400522045132",
+ "lng": "109.451293239665",
+ "radius": 1766,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.434814,
+ 18.237305,
+ 90.0
+ ],
+ [
+ 109.434814,
+ 18.242798,
+ 90.0
+ ],
+ [
+ 109.467773,
+ 18.242798,
+ 90.0
+ ],
+ [
+ 109.467773,
+ 18.237305,
+ 90.0
+ ],
+ [
+ 109.434814,
+ 18.237305,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000235,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.4460437356343",
+ "lng": "110.0170915",
+ "radius": 2619,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 110.01709,
+ 18.429565,
+ 60.0
+ ],
+ [
+ 110.01709,
+ 18.435059,
+ 60.0
+ ],
+ [
+ 109.995121,
+ 18.435059,
+ 60.0
+ ],
+ [
+ 109.995121,
+ 18.440552,
+ 60.0
+ ],
+ [
+ 110.006104,
+ 18.440552,
+ 60.0
+ ],
+ [
+ 110.006104,
+ 18.446045,
+ 60.0
+ ],
+ [
+ 110.028076,
+ 18.446045,
+ 60.0
+ ],
+ [
+ 110.028076,
+ 18.457031,
+ 60.0
+ ],
+ [
+ 110.039062,
+ 18.457031,
+ 60.0
+ ],
+ [
+ 110.039062,
+ 18.435059,
+ 60.0
+ ],
+ [
+ 110.028076,
+ 18.435059,
+ 60.0
+ ],
+ [
+ 110.028076,
+ 18.429565,
+ 60.0
+ ],
+ [
+ 110.01709,
+ 18.429565,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000275,
+ "name": "无人机管控空域",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "18.2010718605323",
+ "lng": "109.548367737022",
+ "radius": 4362,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.533691,
+ 18.165894,
+ 0.0
+ ],
+ [
+ 109.533691,
+ 18.193359,
+ 0.0
+ ],
+ [
+ 109.522705,
+ 18.193359,
+ 0.0
+ ],
+ [
+ 109.522705,
+ 18.231812,
+ 0.0
+ ],
+ [
+ 109.533691,
+ 18.231812,
+ 0.0
+ ],
+ [
+ 109.533691,
+ 18.237305,
+ 0.0
+ ],
+ [
+ 109.555664,
+ 18.237305,
+ 0.0
+ ],
+ [
+ 109.555664,
+ 18.231812,
+ 0.0
+ ],
+ [
+ 109.56665,
+ 18.231812,
+ 0.0
+ ],
+ [
+ 109.56665,
+ 18.220825,
+ 0.0
+ ],
+ [
+ 109.577637,
+ 18.220825,
+ 0.0
+ ],
+ [
+ 109.577637,
+ 18.209839,
+ 0.0
+ ],
+ [
+ 109.588623,
+ 18.209839,
+ 0.0
+ ],
+ [
+ 109.588623,
+ 18.204346,
+ 0.0
+ ],
+ [
+ 109.577637,
+ 18.204346,
+ 0.0
+ ],
+ [
+ 109.577637,
+ 18.17688,
+ 0.0
+ ],
+ [
+ 109.56665,
+ 18.17688,
+ 0.0
+ ],
+ [
+ 109.56665,
+ 18.165894,
+ 0.0
+ ],
+ [
+ 109.533691,
+ 18.165894,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000204,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.2620232947562",
+ "lng": "109.4073485",
+ "radius": 2315,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.390869,
+ 18.248291,
+ 90.0
+ ],
+ [
+ 109.390869,
+ 18.275757,
+ 90.0
+ ],
+ [
+ 109.401855,
+ 18.275757,
+ 90.0
+ ],
+ [
+ 109.401855,
+ 18.259277,
+ 90.0
+ ],
+ [
+ 109.412842,
+ 18.259277,
+ 90.0
+ ],
+ [
+ 109.412842,
+ 18.253784,
+ 90.0
+ ],
+ [
+ 109.423828,
+ 18.253784,
+ 90.0
+ ],
+ [
+ 109.423828,
+ 18.248291,
+ 90.0
+ ],
+ [
+ 109.390869,
+ 18.248291,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000213,
+ "name": "无人机管控空域",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "18.2070915429785",
+ "lng": "109.701237",
+ "radius": 5010,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.682015,
+ 18.248291,
+ 0.0
+ ],
+ [
+ 109.6875,
+ 18.248291,
+ 0.0
+ ],
+ [
+ 109.6875,
+ 18.242798,
+ 0.0
+ ],
+ [
+ 109.698486,
+ 18.242798,
+ 0.0
+ ],
+ [
+ 109.698486,
+ 18.237305,
+ 0.0
+ ],
+ [
+ 109.709473,
+ 18.237305,
+ 0.0
+ ],
+ [
+ 109.709473,
+ 18.226318,
+ 0.0
+ ],
+ [
+ 109.720459,
+ 18.226318,
+ 0.0
+ ],
+ [
+ 109.720459,
+ 18.220825,
+ 0.0
+ ],
+ [
+ 109.731445,
+ 18.220825,
+ 0.0
+ ],
+ [
+ 109.731445,
+ 18.187866,
+ 0.0
+ ],
+ [
+ 109.720459,
+ 18.187866,
+ 0.0
+ ],
+ [
+ 109.720459,
+ 18.165894,
+ 0.0
+ ],
+ [
+ 109.682015,
+ 18.165894,
+ 0.0
+ ],
+ [
+ 109.682015,
+ 18.248291,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000212,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.2455448132077",
+ "lng": "109.478759326385",
+ "radius": 1199,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.47876,
+ 18.248291,
+ 90.0
+ ],
+ [
+ 109.489746,
+ 18.248291,
+ 90.0
+ ],
+ [
+ 109.489746,
+ 18.242798,
+ 90.0
+ ],
+ [
+ 109.467773,
+ 18.242798,
+ 90.0
+ ],
+ [
+ 109.467773,
+ 18.248291,
+ 90.0
+ ],
+ [
+ 109.47876,
+ 18.248291,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000194,
+ "name": "无人机管控空域",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "18.2125842491187",
+ "lng": "109.489746",
+ "radius": 2495,
+ "color": "#DE4329",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.489746,
+ 18.220825,
+ 0.0
+ ],
+ [
+ 109.489746,
+ 18.226318,
+ 0.0
+ ],
+ [
+ 109.500732,
+ 18.226318,
+ 0.0
+ ],
+ [
+ 109.500732,
+ 18.220825,
+ 0.0
+ ],
+ [
+ 109.511719,
+ 18.220825,
+ 0.0
+ ],
+ [
+ 109.511719,
+ 18.204346,
+ 0.0
+ ],
+ [
+ 109.467773,
+ 18.204346,
+ 0.0
+ ],
+ [
+ 109.467773,
+ 18.220825,
+ 0.0
+ ],
+ [
+ 109.489746,
+ 18.220825,
+ 0.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000220,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 90,
+ "level": 2,
+ "lat": "18.311462706886",
+ "lng": "109.517212807183",
+ "radius": 2314,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.522705,
+ 18.308716,
+ 90.0
+ ],
+ [
+ 109.522705,
+ 18.319702,
+ 90.0
+ ],
+ [
+ 109.500732,
+ 18.319702,
+ 90.0
+ ],
+ [
+ 109.500732,
+ 18.325195,
+ 90.0
+ ],
+ [
+ 109.533691,
+ 18.325195,
+ 90.0
+ ],
+ [
+ 109.533691,
+ 18.297729,
+ 90.0
+ ],
+ [
+ 109.522705,
+ 18.297729,
+ 90.0
+ ],
+ [
+ 109.522705,
+ 18.308716,
+ 90.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000198,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 30,
+ "level": 2,
+ "lat": "18.2730098362084",
+ "lng": "109.426874232303",
+ "radius": 1742,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.412842,
+ 18.275757,
+ 30.0
+ ],
+ [
+ 109.412842,
+ 18.28125,
+ 30.0
+ ],
+ [
+ 109.423828,
+ 18.28125,
+ 30.0
+ ],
+ [
+ 109.423828,
+ 18.286743,
+ 30.0
+ ],
+ [
+ 109.434814,
+ 18.286743,
+ 30.0
+ ],
+ [
+ 109.434814,
+ 18.259277,
+ 30.0
+ ],
+ [
+ 109.423828,
+ 18.259277,
+ 30.0
+ ],
+ [
+ 109.423828,
+ 18.270264,
+ 30.0
+ ],
+ [
+ 109.412842,
+ 18.270264,
+ 30.0
+ ],
+ [
+ 109.412842,
+ 18.275757,
+ 30.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000269,
+ "name": "无人机适飞空域限高区",
+ "country": "CN",
+ "city": "",
+ "height": 60,
+ "level": 2,
+ "lat": "18.3059709625894",
+ "lng": "109.440300580249",
+ "radius": 3995,
+ "color": "#979797",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.412842,
+ 18.286743,
+ 60.0
+ ],
+ [
+ 109.412842,
+ 18.308716,
+ 60.0
+ ],
+ [
+ 109.423828,
+ 18.308716,
+ 60.0
+ ],
+ [
+ 109.423828,
+ 18.319702,
+ 60.0
+ ],
+ [
+ 109.434814,
+ 18.319702,
+ 60.0
+ ],
+ [
+ 109.434814,
+ 18.325195,
+ 60.0
+ ],
+ [
+ 109.456787,
+ 18.325195,
+ 60.0
+ ],
+ [
+ 109.456787,
+ 18.330688,
+ 60.0
+ ],
+ [
+ 109.467767,
+ 18.330688,
+ 60.0
+ ],
+ [
+ 109.467767,
+ 18.308716,
+ 60.0
+ ],
+ [
+ 109.445801,
+ 18.308716,
+ 60.0
+ ],
+ [
+ 109.445801,
+ 18.303223,
+ 60.0
+ ],
+ [
+ 109.434814,
+ 18.303223,
+ 60.0
+ ],
+ [
+ 109.434814,
+ 18.286743,
+ 60.0
+ ],
+ [
+ 109.423828,
+ 18.286743,
+ 60.0
+ ],
+ [
+ 109.423828,
+ 18.28125,
+ 60.0
+ ],
+ [
+ 109.412842,
+ 18.28125,
+ 60.0
+ ],
+ [
+ 109.412842,
+ 18.286743,
+ 60.0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001353,
+ "name": "Gu-Lian Airport",
+ "country": "CN",
+ "city": "Mohe",
+ "height": 500,
+ "level": 2,
+ "lat": "52.915826",
+ "lng": "122.424783",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 122.424783,
+ 52.915826,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001404,
+ "name": "Jiagedaqi Airport",
+ "country": "CN",
+ "city": "Jiagedaqi",
+ "height": 500,
+ "level": 2,
+ "lat": "50.371464",
+ "lng": "124.117473",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 124.117473,
+ 50.371464,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001463,
+ "name": "Heihe Airport",
+ "country": "CN",
+ "city": "Heihe",
+ "height": 500,
+ "level": 2,
+ "lat": "50.178687",
+ "lng": "127.313566",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 127.313566,
+ 50.178687,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001351,
+ "name": "西郊",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "49.566111111111",
+ "lng": "117.332222222222",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 117.332222222222001,
+ 49.566111111110999,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001495,
+ "name": "海拉尔",
+ "country": "CN",
+ "city": "呼伦贝尔",
+ "height": 500,
+ "level": 2,
+ "lat": "49.2058333333334",
+ "lng": "119.826666666667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 119.826666666666654,
+ 49.205833333333352,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001361,
+ "name": "喀纳斯",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "48.2225",
+ "lng": "86.995833333333",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 86.995833333332996,
+ 48.2225,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002563,
+ "name": "五大连池德都机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "48.4371763793487",
+ "lng": "126.112003301168",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 126.112003301167874,
+ 48.437176379348671,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001462,
+ "name": "东极",
+ "country": "CN",
+ "city": "抚远",
+ "height": 500,
+ "level": 2,
+ "lat": "48.1975",
+ "lng": "134.365",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 134.365,
+ 48.1975,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296246,
+ "name": "ZAISAN",
+ "country": "KZ",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "47.4875",
+ "lng": "84.887778",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 84.887778,
+ 47.4875,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001413,
+ "name": "阿勒泰",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "47.750277777778",
+ "lng": "88.084444444444",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 88.084444444444003,
+ 47.750277777778003,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9374,
+ "name": "Beijiang:aletaishi",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "47.82",
+ "lng": "88.13",
+ "radius": 5000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 88.13,
+ 47.82,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001517,
+ "name": "伊尔施",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "47.310555555556",
+ "lng": "119.911944444444",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 119.911944444444003,
+ 47.310555555556,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001457,
+ "name": "成吉思汗",
+ "country": "CN",
+ "city": "扎兰屯",
+ "height": 500,
+ "level": 2,
+ "lat": "47.8679166666667",
+ "lng": "122.767916666667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 122.767916666666679,
+ 47.867916666666673,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001410,
+ "name": "林都",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "47.751944444444",
+ "lng": "129.019166666667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 129.01916666666699,
+ 47.751944444444,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001331,
+ "name": "Tacheng Airport",
+ "country": "CN",
+ "city": "Tacheng",
+ "height": 500,
+ "level": 2,
+ "lat": "46.670664",
+ "lng": "83.345463",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 83.345463,
+ 46.670664,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9382,
+ "name": "Beijiang:tacheng",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "46.73",
+ "lng": "82.99",
+ "radius": 5000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 82.99,
+ 46.73,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001334,
+ "name": "Fuyun Koktokay Airport",
+ "country": "CN",
+ "city": "Fuyun",
+ "height": 500,
+ "level": 2,
+ "lat": "46.804388",
+ "lng": "89.511152",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 89.511152,
+ 46.804388,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010582,
+ "name": "KHOVD",
+ "country": "MN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "47.95400556",
+ "lng": "91.62705",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 91.62705,
+ 47.95400556,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001530,
+ "name": "Qiqihar Sanjiazi Airport",
+ "country": "CN",
+ "city": "Qiqihar",
+ "height": 500,
+ "level": 2,
+ "lat": "47.239722",
+ "lng": "123.918056",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 123.918056,
+ 47.239722,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001460,
+ "name": "Saertu Airport",
+ "country": "CN",
+ "city": "Daqing Shi",
+ "height": 500,
+ "level": 2,
+ "lat": "46.752454",
+ "lng": "125.13804",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 125.13804,
+ 46.752454,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001356,
+ "name": "Jiamusi Airport",
+ "country": "CN",
+ "city": "Jiamusi",
+ "height": 500,
+ "level": 2,
+ "lat": "46.843462",
+ "lng": "130.465322",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 130.465322,
+ 46.843462,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296243,
+ "name": "URDZHAR",
+ "country": "KZ",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "47.090833",
+ "lng": "81.665556",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 81.665556,
+ 47.090833,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001505,
+ "name": "Ulanhot Airport",
+ "country": "CN",
+ "city": "Hinggan",
+ "height": 500,
+ "level": 2,
+ "lat": "46.195428",
+ "lng": "122.007918",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 122.007918,
+ 46.195428,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30293301,
+ "name": "USHARAL",
+ "country": "KZ",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "46.190833",
+ "lng": "80.831111",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 80.831111,
+ 46.190833,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001337,
+ "name": "Karamay Airport",
+ "country": "CN",
+ "city": "Karamay",
+ "height": 500,
+ "level": 2,
+ "lat": "45.466621",
+ "lng": "84.952755",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 84.952755,
+ 45.466621,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9381,
+ "name": "Beijiang:kelamayi",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "45.58",
+ "lng": "84.88",
+ "radius": 6000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 84.88,
+ 45.58,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001399,
+ "name": "长安",
+ "country": "CN",
+ "city": "白城",
+ "height": 500,
+ "level": 2,
+ "lat": "45.5058333333334",
+ "lng": "123.02",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 123.02,
+ 45.505833333333356,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001428,
+ "name": "Harbin Taiping International Airport",
+ "country": "CN",
+ "city": "Harbin",
+ "height": 500,
+ "level": 2,
+ "lat": "45.624963",
+ "lng": "126.248789",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 126.248789,
+ 45.624963,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001498,
+ "name": "兴凯湖",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "45.293055555556",
+ "lng": "131.193055555556",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 131.193055555555986,
+ 45.293055555556002,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9384,
+ "name": "Beijiang:bole",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "44.89",
+ "lng": "82.07",
+ "radius": 5000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 82.07,
+ 44.89,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001342,
+ "name": "阿拉山口",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "44.895",
+ "lng": "82.300555555556",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 82.300555555556002,
+ 44.895,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9380,
+ "name": "Beijiang:dushanzi",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "44.33",
+ "lng": "84.89",
+ "radius": 5000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 84.89,
+ 44.33,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9379,
+ "name": "Beijiang:kuitun",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "44.43",
+ "lng": "84.89",
+ "radius": 7000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 84.89,
+ 44.43,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001330,
+ "name": "Mudanjiang Hailang International Airport",
+ "country": "CN",
+ "city": "Mudanjiang Shi",
+ "height": 500,
+ "level": 2,
+ "lat": "44.523755",
+ "lng": "129.566221",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 129.566221,
+ 44.523755,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001518,
+ "name": "Yining Airport",
+ "country": "CN",
+ "city": "Yining",
+ "height": 500,
+ "level": 2,
+ "lat": "43.955833",
+ "lng": "81.330278",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 81.330278,
+ 43.955833,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9385,
+ "name": "Beijiang:yining",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "43.91",
+ "lng": "81.33",
+ "radius": 8000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 81.33,
+ 43.91,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001307,
+ "name": "花园",
+ "country": "CN",
+ "city": "石河子",
+ "height": 500,
+ "level": 2,
+ "lat": "44.2416666666667",
+ "lng": "85.89",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 85.89,
+ 44.241666666666674,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9378,
+ "name": "Beijiang:shihezi",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "44.31",
+ "lng": "86.05",
+ "radius": 8000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 86.05,
+ 44.31,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9375,
+ "name": "Beijiang:wulumuqi",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "43.85",
+ "lng": "87.58",
+ "radius": 20000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 87.58,
+ 43.85,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001465,
+ "name": "Dongshan Airport",
+ "country": "CN",
+ "city": "Hailar",
+ "height": 500,
+ "level": 2,
+ "lat": "43.904125",
+ "lng": "87.477759",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 87.477759,
+ 43.904125,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9376,
+ "name": "Beijiang:changji",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "44.01",
+ "lng": "87.29",
+ "radius": 6000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 87.29,
+ 44.01,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045021,
+ "name": "奇台江布拉克机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "44.183024",
+ "lng": "89.594407",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 89.594407,
+ 44.183024,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001347,
+ "name": "Xilinhot Airport",
+ "country": "CN",
+ "city": "Xilinhot",
+ "height": 500,
+ "level": 2,
+ "lat": "43.912132",
+ "lng": "115.960205",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 115.960205,
+ 43.912132,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001341,
+ "name": "Longjia Airport",
+ "country": "CN",
+ "city": "Changchun Shi",
+ "height": 500,
+ "level": 2,
+ "lat": "43.99551",
+ "lng": "125.687466",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 125.687466,
+ 43.99551,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025589,
+ "name": "昭苏天马机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "43.0859",
+ "lng": "81.2195",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 81.2195,
+ 43.0859,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001338,
+ "name": "那拉提",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "43.431666666667",
+ "lng": "83.3775",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 83.3775,
+ 43.431666666666999,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9373,
+ "name": "Dongjiang:tulufan",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "42.97",
+ "lng": "89.18",
+ "radius": 5000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 89.18,
+ 42.97,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001389,
+ "name": "交河",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "43.030555555556",
+ "lng": "89.0975",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 89.0975,
+ 43.030555555555999,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001303,
+ "name": "赛乌素",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "43.423888888889",
+ "lng": "112.091944444444",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 112.091944444443996,
+ 43.423888888889003,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001425,
+ "name": "Tongliao Airport",
+ "country": "CN",
+ "city": "Tongliao",
+ "height": 500,
+ "level": 2,
+ "lat": "43.55694",
+ "lng": "122.199825",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 122.199825,
+ 43.55694,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001360,
+ "name": "Hami Airport",
+ "country": "CN",
+ "city": "Hami",
+ "height": 500,
+ "level": 2,
+ "lat": "42.841587",
+ "lng": "93.668461",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 93.668461,
+ 42.841587,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9372,
+ "name": "Dongjiang:hami",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "42.83",
+ "lng": "93.52",
+ "radius": 5000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 93.52,
+ 42.83,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008696,
+ "name": "Dalanzadgad Airport",
+ "country": "MN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "43.591916",
+ "lng": "104.430588",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 104.430588,
+ 43.591916,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30293419,
+ "name": "KHANBUMBAT",
+ "country": "MN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "43.144203",
+ "lng": "106.844522",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 106.844522,
+ 43.144203,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001519,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Tonghua",
+ "height": 500,
+ "level": 2,
+ "lat": "42.253889",
+ "lng": "125.703889",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 125.703889,
+ 42.253889,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001516,
+ "name": "Yanji Chaoyangchuan Airport",
+ "country": "CN",
+ "city": "Yanji",
+ "height": 500,
+ "level": 2,
+ "lat": "42.882778",
+ "lng": "129.451111",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 129.451111,
+ 42.882778,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288681,
+ "name": "Tamga Airport",
+ "country": "KG",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "42.153099",
+ "lng": "77.563904",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 77.563904,
+ 42.153099,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296242,
+ "name": "KARAKOL",
+ "country": "KG",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "42.508292",
+ "lng": "78.407917",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 78.407917,
+ 42.508292,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9383,
+ "name": "Nanjiang:kuche",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "41.72",
+ "lng": "82.99",
+ "radius": 8000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 82.99,
+ 41.72,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001534,
+ "name": "龟兹",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "41.677777777778",
+ "lng": "82.872777777778",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 82.872777777777998,
+ 41.677777777777997,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001359,
+ "name": "Korla Airport",
+ "country": "CN",
+ "city": "Korla",
+ "height": 500,
+ "level": 2,
+ "lat": "41.615234",
+ "lng": "86.141866",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 86.141866,
+ 41.615234,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9377,
+ "name": "Nanjiang:kuerle",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "41.72",
+ "lng": "86.18",
+ "radius": 9000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 86.18,
+ 41.72,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045019,
+ "name": "阿拉善额济纳旗桃来机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "42.01487",
+ "lng": "101.002031",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101.002031,
+ 42.01487,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001496,
+ "name": "Chifeng Airport",
+ "country": "CN",
+ "city": "Chifeng",
+ "height": 500,
+ "level": 2,
+ "lat": "42.160732",
+ "lng": "118.841814",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 118.841814,
+ 42.160732,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001371,
+ "name": "Taoxian Airport",
+ "country": "CN",
+ "city": "Shenyang",
+ "height": 500,
+ "level": 2,
+ "lat": "41.638667",
+ "lng": "123.488212",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 123.488212,
+ 41.638667,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001322,
+ "name": "通化三源浦机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "42.052397",
+ "lng": "125.72237",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 125.72237,
+ 42.052397,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001305,
+ "name": "Changbaishan Airport",
+ "country": "CN",
+ "city": "Baishan",
+ "height": 500,
+ "level": 2,
+ "lat": "42.068881",
+ "lng": "127.60314",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 127.60314,
+ 42.068881,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010359,
+ "name": "Samjiyŏn Airport",
+ "country": "KP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "41.906397",
+ "lng": "128.408892",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 128.408892,
+ 41.906397,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010092,
+ "name": "Chongjin Airport",
+ "country": "KP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "41.4297",
+ "lng": "129.6488",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 129.6488,
+ 41.4297,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30288679,
+ "name": "Naryn Airport",
+ "country": "KG",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "41.441502",
+ "lng": "76.1306",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 76.1306,
+ 41.441502,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008837,
+ "name": "ISSYK KUL",
+ "country": "KG",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "42.58571389",
+ "lng": "76.69810556",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 76.69810556,
+ 42.58571389,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9386,
+ "name": "Nanjiang:akesu",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "41.16",
+ "lng": "80.27",
+ "radius": 7000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 80.27,
+ 41.16,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001469,
+ "name": "Aksu Airport",
+ "country": "CN",
+ "city": "Aksu",
+ "height": 500,
+ "level": 2,
+ "lat": "41.262629",
+ "lng": "80.289437",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 80.289437,
+ 41.262629,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001504,
+ "name": "天吉泰",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "40.926944444444",
+ "lng": "107.739444444444",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 107.739444444444004,
+ 40.926944444443997,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001443,
+ "name": "Baita International Airport",
+ "country": "CN",
+ "city": "Hohhot",
+ "height": 500,
+ "level": 2,
+ "lat": "40.850611",
+ "lng": "111.824035",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 111.824035,
+ 40.850611,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001339,
+ "name": "集宁",
+ "country": "CN",
+ "city": "乌兰察布",
+ "height": 500,
+ "level": 2,
+ "lat": "41.1308333333333",
+ "lng": "113.10625",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.10625,
+ 41.130833333333349,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001438,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Zhangjiakou",
+ "height": 500,
+ "level": 2,
+ "lat": "40.738611",
+ "lng": "114.930278",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.930278,
+ 40.738611,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001348,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "41.122123",
+ "lng": "118.074737",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 118.074737,
+ 41.122123,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001524,
+ "name": "Chaoyang Airport",
+ "country": "CN",
+ "city": "Chaoyang",
+ "height": 500,
+ "level": 2,
+ "lat": "41.538679",
+ "lng": "120.434163",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.434163,
+ 41.538679,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001424,
+ "name": "Jinzhou Airport",
+ "country": "CN",
+ "city": "Jinzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "40.9360585369015",
+ "lng": "121.276585738853",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.276585738852503,
+ 40.936058536901498,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001451,
+ "name": "Anshan Air Base Airport",
+ "country": "CN",
+ "city": "Anshan",
+ "height": 500,
+ "level": 2,
+ "lat": "41.10553",
+ "lng": "122.85635",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 122.85635,
+ 41.10553,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295682,
+ "name": "Kazarman Airport",
+ "country": "KG",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "41.410291",
+ "lng": "74.044418",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 74.044418,
+ 41.410291,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001326,
+ "name": "Dunhuang Airport",
+ "country": "CN",
+ "city": "Dunhuang",
+ "height": 500,
+ "level": 2,
+ "lat": "40.16169",
+ "lng": "94.809095",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 94.809095,
+ 40.16169,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001435,
+ "name": "Baotou Airport",
+ "country": "CN",
+ "city": "Baotou",
+ "height": 500,
+ "level": 2,
+ "lat": "40.559348",
+ "lng": "109.998569",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 109.998569,
+ 40.559348,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33237,
+ "name": "QC",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "40.2418450721557",
+ "lng": "116.383402489736",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 116.38340248973627,
+ 40.241845072155733,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001512,
+ "name": "Beijing Capital International Airport",
+ "country": "CN",
+ "city": "Beijing",
+ "height": 500,
+ "level": 2,
+ "lat": "40.078149",
+ "lng": "116.60175",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 116.60175,
+ 40.078149,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001468,
+ "name": "Yingkou Lanqi Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "40.542523",
+ "lng": "122.358784",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 122.358784,
+ 40.542523,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001529,
+ "name": "Dandong Airport",
+ "country": "CN",
+ "city": "Dandong",
+ "height": 500,
+ "level": 2,
+ "lat": "40.025536",
+ "lng": "124.285065",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 124.285065,
+ 40.025536,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9391,
+ "name": "Nanjiang:keshen",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "39.48",
+ "lng": "76",
+ "radius": 8000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 76.0,
+ 39.48,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9390,
+ "name": "Nanjiang:atushen",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "39.69",
+ "lng": "76.2",
+ "radius": 5000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 76.2,
+ 39.69,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001489,
+ "name": "Kashgar Airport",
+ "country": "CN",
+ "city": "Kashgar",
+ "height": 500,
+ "level": 2,
+ "lat": "39.542659",
+ "lng": "76.020002",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 76.020002,
+ 39.542659,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001304,
+ "name": "Jiayuguan Airport",
+ "country": "CN",
+ "city": "Jiayuguan",
+ "height": 500,
+ "level": 2,
+ "lat": "39.859645",
+ "lng": "98.338563",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 98.338563,
+ 39.859645,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001310,
+ "name": "Lishan Airport",
+ "country": "CN",
+ "city": "Lishan",
+ "height": 500,
+ "level": 2,
+ "lat": "39.793675",
+ "lng": "106.799343",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 106.799343,
+ 39.793675,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001376,
+ "name": "Ordos Ejin Horo Airport",
+ "country": "CN",
+ "city": "Ordos",
+ "height": 500,
+ "level": 2,
+ "lat": "39.493757",
+ "lng": "109.860041",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 109.860041,
+ 39.493757,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045027,
+ "name": "朔州滋润机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "39.274182",
+ "lng": "112.691839",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 112.691839,
+ 39.274182,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001396,
+ "name": "Datong Airport",
+ "country": "CN",
+ "city": "Datong",
+ "height": 500,
+ "level": 2,
+ "lat": "40.06238",
+ "lng": "113.479289",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.479289,
+ 40.06238,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001526,
+ "name": "Beijing Nanyuan Airport",
+ "country": "CN",
+ "city": "Beijing",
+ "height": 500,
+ "level": 2,
+ "lat": "39.782698",
+ "lng": "116.386922",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 116.386922,
+ 39.782698,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001293,
+ "name": "Daxing International airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "39.50222736",
+ "lng": "116.41184537",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 116.41184537,
+ 39.50222736,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9371,
+ "name": "Beijing",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "39.90748",
+ "lng": "116.391372",
+ "radius": 30000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 116.391372,
+ 39.90748,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001513,
+ "name": "Tangshan Sannühe Airport",
+ "country": "CN",
+ "city": "Tangshan",
+ "height": 500,
+ "level": 2,
+ "lat": "39.719403",
+ "lng": "118.002778",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 118.002778,
+ 39.719403,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001433,
+ "name": "北戴河",
+ "country": "CN",
+ "city": "秦皇岛",
+ "height": 500,
+ "level": 2,
+ "lat": "39.6658333333334",
+ "lng": "119.061666666667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 119.061666666666696,
+ 39.665833333333353,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001302,
+ "name": "秦皇岛山海关机场",
+ "country": "CN",
+ "city": "Qinhuangdao",
+ "height": 500,
+ "level": 2,
+ "lat": "39.968451",
+ "lng": "119.730001",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 119.730001,
+ 39.968451,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008742,
+ "name": "Sondok Airport",
+ "country": "KP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "39.747333",
+ "lng": "127.474611",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 127.474611,
+ 39.747333,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001332,
+ "name": "Zhangye Southeast Air Base Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "38.804285",
+ "lng": "100.672259",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.672259,
+ 38.804285,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045017,
+ "name": "阿拉善右旗巴丹吉林机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "39.223678",
+ "lng": "101.543942",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101.543942,
+ 39.223678,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001422,
+ "name": "Jinchuan Airport",
+ "country": "CN",
+ "city": "Jinchang",
+ "height": 500,
+ "level": 2,
+ "lat": "38.542078",
+ "lng": "102.348383",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 102.348383,
+ 38.542078,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045015,
+ "name": "阿拉善左旗巴彦浩特机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "38.748897",
+ "lng": "105.588407",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 105.588407,
+ 38.748897,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001461,
+ "name": "Tianjin Binhai International Airport",
+ "country": "CN",
+ "city": "Tianjin",
+ "height": 500,
+ "level": 2,
+ "lat": "39.128408",
+ "lng": "117.354737",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 117.354737,
+ 39.128408,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001393,
+ "name": "Zhoushuizi Airport",
+ "country": "CN",
+ "city": "Dalian",
+ "height": 500,
+ "level": 2,
+ "lat": "38.965356",
+ "lng": "121.54044",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.54044,
+ 38.965356,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001431,
+ "name": "大长山岛",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "39.266388888889",
+ "lng": "122.666944444445",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 122.666944444444994,
+ 39.266388888888997,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010115,
+ "name": "Sunan International Airport",
+ "country": "KP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "39.22616",
+ "lng": "125.676272",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 125.676272,
+ 39.22616,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045023,
+ "name": "莎车叶尔羌机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "38.244186",
+ "lng": "77.061265",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 77.061265,
+ 38.244186,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9389,
+ "name": "Nanjiang:shache",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "38.42",
+ "lng": "77.25",
+ "radius": 5000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 77.25,
+ 38.42,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001387,
+ "name": "Qiemo Airport",
+ "country": "CN",
+ "city": "Qiemo",
+ "height": 500,
+ "level": 2,
+ "lat": "38.2338892750042",
+ "lng": "85.464195620359",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 85.464195620359021,
+ 38.233889275004202,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001381,
+ "name": "花土沟",
+ "country": "CN",
+ "city": "海西",
+ "height": 500,
+ "level": 2,
+ "lat": "38.1983333333333",
+ "lng": "90.8420833333333",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 90.842083333333321,
+ 38.198333333333323,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025582,
+ "name": "海北祁连机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "38.0118640209049",
+ "lng": "100.643599523279",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.643599523278809,
+ 38.011864020904866,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001369,
+ "name": "Yinchuan Airport",
+ "country": "CN",
+ "city": "Yinchuan",
+ "height": 500,
+ "level": 2,
+ "lat": "38.324175",
+ "lng": "106.390045",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 106.390045,
+ 38.324175,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001384,
+ "name": "Yulin Airport",
+ "country": "CN",
+ "city": "Yulin",
+ "height": 500,
+ "level": 2,
+ "lat": "38.35669",
+ "lng": "109.592737",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 109.592737,
+ 38.35669,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001446,
+ "name": "五台山",
+ "country": "CN",
+ "city": "忻州",
+ "height": 500,
+ "level": 2,
+ "lat": "38.5970833333334",
+ "lng": "112.967916666667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 112.967916666666667,
+ 38.597083333333352,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001419,
+ "name": "Shijiazhuang Zhengding International Airport",
+ "country": "CN",
+ "city": "Shijiazhuang",
+ "height": 500,
+ "level": 2,
+ "lat": "38.280833",
+ "lng": "114.696667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.696667,
+ 38.280833,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025591,
+ "name": "塔什库尔干红其拉甫机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "37.6627240447033",
+ "lng": "75.2929156722101",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 75.2929156722101,
+ 37.662724044703289,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9388,
+ "name": "Nanjiang:yecheng",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "37.88",
+ "lng": "77.43",
+ "radius": 5000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 77.43,
+ 37.88,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 9387,
+ "name": "Nanjiang:hetian",
+ "country": "CN",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "37.11",
+ "lng": "79.93",
+ "radius": 7000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 79.93,
+ 37.11,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001472,
+ "name": "Zhongwei Shapotou Airport",
+ "country": "CN",
+ "city": "Zhongwei",
+ "height": 500,
+ "level": 2,
+ "lat": "37.572375",
+ "lng": "105.155111",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 105.155111,
+ 37.572375,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001540,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Lueliang",
+ "height": 500,
+ "level": 2,
+ "lat": "37.683548",
+ "lng": "111.142161",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 111.142161,
+ 37.683548,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001344,
+ "name": "Taiyuan Wusu Airport",
+ "country": "CN",
+ "city": "Taiyuan",
+ "height": 500,
+ "level": 2,
+ "lat": "37.746401",
+ "lng": "112.629968",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 112.629968,
+ 37.746401,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001390,
+ "name": "Dongying Shengli Airport",
+ "country": "CN",
+ "city": "Dongying",
+ "height": 500,
+ "level": 2,
+ "lat": "37.506138",
+ "lng": "118.788938",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 118.788938,
+ 37.506138,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001385,
+ "name": "Yantai Penglai International Airport",
+ "country": "CN",
+ "city": "Yantai",
+ "height": 500,
+ "level": 2,
+ "lat": "37.65906",
+ "lng": "120.978505",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.978505,
+ 37.65906,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001306,
+ "name": "Weihai Airport",
+ "country": "CN",
+ "city": "Weihai",
+ "height": 500,
+ "level": 2,
+ "lat": "37.186122",
+ "lng": "122.229146",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 122.229146,
+ 37.186122,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001514,
+ "name": "Yantai Laishan Airport",
+ "country": "CN",
+ "city": "Yantai",
+ "height": 500,
+ "level": 2,
+ "lat": "37.398942",
+ "lng": "121.368233",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.368233,
+ 37.398942,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001367,
+ "name": "Hotan Airport",
+ "country": "CN",
+ "city": "Hotan",
+ "height": 500,
+ "level": 2,
+ "lat": "37.040155",
+ "lng": "79.864516",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 79.864516,
+ 37.040155,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025587,
+ "name": "于田万方机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "36.812469",
+ "lng": "81.78168",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 81.78168,
+ 36.812469,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001416,
+ "name": "Golmud Airport",
+ "country": "CN",
+ "city": "Golmud",
+ "height": 500,
+ "level": 2,
+ "lat": "36.402839",
+ "lng": "94.786321",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 94.786321,
+ 36.402839,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001434,
+ "name": "德令哈",
+ "country": "CN",
+ "city": "海西",
+ "height": 500,
+ "level": 2,
+ "lat": "37.1258333333333",
+ "lng": "97.26875",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 97.26875,
+ 37.125833333333325,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001323,
+ "name": "Xining Caojiabu Airport",
+ "country": "CN",
+ "city": "Xining",
+ "height": 500,
+ "level": 2,
+ "lat": "36.529386",
+ "lng": "102.039922",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 102.039922,
+ 36.529386,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001423,
+ "name": "Lanzhou Zhongchuan Airport",
+ "country": "CN",
+ "city": "Lanzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "36.515492",
+ "lng": "103.619412",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 103.619412,
+ 36.515492,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001508,
+ "name": "Yanan nanniwan Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "36.4657825",
+ "lng": "109.46888924",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 109.46888924,
+ 36.4657825,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001320,
+ "name": "Handan Airport",
+ "country": "CN",
+ "city": "Handan",
+ "height": 500,
+ "level": 2,
+ "lat": "36.52455",
+ "lng": "114.424158",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.424158,
+ 36.52455,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001503,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Xingtai",
+ "height": 500,
+ "level": 2,
+ "lat": "36.882984",
+ "lng": "114.428826",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.428826,
+ 36.882984,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001418,
+ "name": "Yaoqiang Airport",
+ "country": "CN",
+ "city": "Jinan",
+ "height": 500,
+ "level": 2,
+ "lat": "36.857421",
+ "lng": "117.211492",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 117.211492,
+ 36.857421,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001355,
+ "name": "Weifang Airport",
+ "country": "CN",
+ "city": "Weifang",
+ "height": 500,
+ "level": 2,
+ "lat": "36.646667",
+ "lng": "119.118333",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 119.118333,
+ 36.646667,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010332,
+ "name": "Gilgit Airport",
+ "country": "PK",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "35.918504",
+ "lng": "74.33048",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 74.33048,
+ 35.918504,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001403,
+ "name": "Guyuan Liupanshan Airport",
+ "country": "CN",
+ "city": "Guyuan",
+ "height": 500,
+ "level": 2,
+ "lat": "36.079094",
+ "lng": "106.216948",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 106.216948,
+ 36.079094,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001335,
+ "name": "乔李 ",
+ "country": "CN",
+ "city": "临汾",
+ "height": 500,
+ "level": 2,
+ "lat": "36.1341666666667",
+ "lng": "111.64125",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 111.64125,
+ 36.134166666666651,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001507,
+ "name": "Changzhi Airport",
+ "country": "CN",
+ "city": "Changzhi",
+ "height": 500,
+ "level": 2,
+ "lat": "36.247652",
+ "lng": "113.126255",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.126255,
+ 36.247652,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001605,
+ "name": "青岛胶东国际机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "36.35840807",
+ "lng": "120.0893436",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.0893436,
+ 36.35840807,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010622,
+ "name": "Skardu Airport",
+ "country": "PK",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "35.340144",
+ "lng": "75.539587",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 75.539587,
+ 35.340144,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001483,
+ "name": "Qingyang Airport",
+ "country": "CN",
+ "city": "Qingyang",
+ "height": 500,
+ "level": 2,
+ "lat": "35.803899",
+ "lng": "107.598061",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 107.598061,
+ 35.803899,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001329,
+ "name": "Jining Qufu Airport",
+ "country": "CN",
+ "city": "Jining",
+ "height": 500,
+ "level": 2,
+ "lat": "35.292778",
+ "lng": "116.346667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 116.346667,
+ 35.292778,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001609,
+ "name": "菏泽牡丹机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "35.21316934",
+ "lng": "115.7359856",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 115.7359856,
+ 35.21316934,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042920,
+ "name": "济宁大安机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "35.643524",
+ "lng": "116.748783",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 116.748783,
+ 35.643524,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001455,
+ "name": "Linyi Airport",
+ "country": "CN",
+ "city": "Linyi Shi",
+ "height": 500,
+ "level": 2,
+ "lat": "35.050282",
+ "lng": "118.411995",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 118.411995,
+ 35.050282,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001421,
+ "name": "山字河",
+ "country": "CN",
+ "city": "日照",
+ "height": 500,
+ "level": 2,
+ "lat": "35.4041666666667",
+ "lng": "119.3275",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 119.3275,
+ 35.404166666666654,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001458,
+ "name": "玛沁",
+ "country": "CN",
+ "city": "果洛",
+ "height": 500,
+ "level": 2,
+ "lat": "34.4175",
+ "lng": "100.3",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.3,
+ 34.4175,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001408,
+ "name": "夏河",
+ "country": "CN",
+ "city": "甘南",
+ "height": 500,
+ "level": 2,
+ "lat": "34.8191666666666",
+ "lng": "102.623333333333",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 102.623333333333335,
+ 34.819166666666646,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001464,
+ "name": "Tianshui Maijishan Airport",
+ "country": "CN",
+ "city": "Tianshui",
+ "height": 500,
+ "level": 2,
+ "lat": "34.559994",
+ "lng": "105.860257",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 105.860257,
+ 34.559994,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001478,
+ "name": "Xi'an Xianyang International Airport",
+ "country": "CN",
+ "city": "Xianyang",
+ "height": 500,
+ "level": 2,
+ "lat": "34.439518",
+ "lng": "108.758366",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 108.758366,
+ 34.439518,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001388,
+ "name": "Yuncheng Guangong Airport",
+ "country": "CN",
+ "city": "Yuncheng",
+ "height": 500,
+ "level": 2,
+ "lat": "35.116556",
+ "lng": "111.031423",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 111.031423,
+ 35.116556,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001484,
+ "name": "Luoyang Airport",
+ "country": "CN",
+ "city": "Luoyang",
+ "height": 500,
+ "level": 2,
+ "lat": "34.741252",
+ "lng": "112.387992",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 112.387992,
+ 34.741252,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001414,
+ "name": "Xinzheng Airport",
+ "country": "CN",
+ "city": "Zhengzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "34.520638",
+ "lng": "113.841789",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.841789,
+ 34.520638,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001749,
+ "name": "Lianyungang Huaguoshan Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "34.41365001",
+ "lng": "119.17902902",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 119.17902902,
+ 34.41365001,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009774,
+ "name": "Leh Airport",
+ "country": "IN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "34.135997",
+ "lng": "77.546988",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 77.546988,
+ 34.135997,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001255,
+ "name": "陇南成县机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "33.78946584",
+ "lng": "105.78641005",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 105.78641005,
+ 33.78946584,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001471,
+ "name": "Xuzhou Guanyin Airport",
+ "country": "CN",
+ "city": "Xuzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "34.059269",
+ "lng": "117.55631",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 117.55631,
+ 34.059269,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001340,
+ "name": "Lianshui Airport",
+ "country": "CN",
+ "city": "Huai'an",
+ "height": 500,
+ "level": 2,
+ "lat": "33.790812",
+ "lng": "119.125253",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 119.125253,
+ 33.790812,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001445,
+ "name": "Yushu Batang Airport",
+ "country": "CN",
+ "city": "Yushu",
+ "height": 500,
+ "level": 2,
+ "lat": "32.836405715413",
+ "lng": "97.0364695275015",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 97.036469527501495,
+ 32.836405715413001,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001382,
+ "name": "Jiuzhai Huanglong Airport",
+ "country": "CN",
+ "city": "Jiuzhaigou",
+ "height": 500,
+ "level": 2,
+ "lat": "32.852589",
+ "lng": "103.683409",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 103.683409,
+ 32.852589,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001328,
+ "name": "Hanzhong Airport",
+ "country": "CN",
+ "city": "Hanzhong",
+ "height": 500,
+ "level": 2,
+ "lat": "33.12814593839",
+ "lng": "107.191006678845",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 107.191006678845,
+ 33.128145938389999,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001311,
+ "name": "Nanyang Airport",
+ "country": "CN",
+ "city": "Nanyang",
+ "height": 500,
+ "level": 2,
+ "lat": "32.982777",
+ "lng": "112.617473",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 112.617473,
+ 32.982777,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001394,
+ "name": "阜阳机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "32.881944444444",
+ "lng": "115.734166666667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 115.734166666666994,
+ 32.881944444444002,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001312,
+ "name": "Yancheng Airport",
+ "country": "CN",
+ "city": "Yancheng",
+ "height": 500,
+ "level": 2,
+ "lat": "33.42635",
+ "lng": "120.20318",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.20318,
+ 33.42635,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001325,
+ "name": "Ngari Gunsa Airport",
+ "country": "CN",
+ "city": "Shiquanhe",
+ "height": 500,
+ "level": 2,
+ "lat": "32.100104",
+ "lng": "80.053293",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 80.053293,
+ 32.100104,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001473,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Aba",
+ "height": 500,
+ "level": 2,
+ "lat": "32.531989",
+ "lng": "102.354197",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 102.354197,
+ 32.531989,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001535,
+ "name": "Guangyuan Airport",
+ "country": "CN",
+ "city": "Guangyuan",
+ "height": 500,
+ "level": 2,
+ "lat": "32.390036",
+ "lng": "105.69462",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 105.69462,
+ 32.390036,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001542,
+ "name": "安康富强机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "32.75681917",
+ "lng": "108.87125015",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 108.87125015,
+ 32.75681917,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001467,
+ "name": "武当山",
+ "country": "CN",
+ "city": "十堰",
+ "height": 500,
+ "level": 2,
+ "lat": "32.5933333333333",
+ "lng": "110.90625",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 110.90625,
+ 32.593333333333348,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001480,
+ "name": "Xiangfan Airport",
+ "country": "CN",
+ "city": "Xiangfan",
+ "height": 500,
+ "level": 2,
+ "lat": "32.150763",
+ "lng": "112.291666",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 112.291666,
+ 32.150763,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001456,
+ "name": "扬州泰州机场",
+ "country": "CN",
+ "city": "Yangzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "32.564196",
+ "lng": "119.712789",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 119.712789,
+ 32.564196,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001522,
+ "name": "Nantong Airport",
+ "country": "CN",
+ "city": "Nantong",
+ "height": 500,
+ "level": 2,
+ "lat": "32.073597",
+ "lng": "120.978388",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.978388,
+ 32.073597,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045025,
+ "name": "甘孜格萨尔机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "31.758803",
+ "lng": "99.550698",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 99.550698,
+ 31.758803,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001527,
+ "name": "Mianyang Airport",
+ "country": "CN",
+ "city": "Mianyang",
+ "height": 500,
+ "level": 2,
+ "lat": "31.430296",
+ "lng": "104.740692",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 104.740692,
+ 31.430296,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002181,
+ "name": "Bazhong Enyang Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "31.73748575",
+ "lng": "106.642485",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 106.642485,
+ 31.73748575,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001539,
+ "name": "红坪",
+ "country": "CN",
+ "city": "神农架",
+ "height": 500,
+ "level": 2,
+ "lat": "31.6275",
+ "lng": "110.339166666667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 110.339166666666671,
+ 31.6275,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001501,
+ "name": "Hefei Xinqiao Airport",
+ "country": "CN",
+ "city": "Hefei",
+ "height": 500,
+ "level": 2,
+ "lat": "31.987054",
+ "lng": "116.972606",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 116.972606,
+ 31.987054,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001346,
+ "name": "Nanjing Lukou Airport",
+ "country": "CN",
+ "city": "Nanjing",
+ "height": 500,
+ "level": 2,
+ "lat": "31.73207",
+ "lng": "118.866446",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 118.866446,
+ 31.73207,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001447,
+ "name": "Changzhou Airport",
+ "country": "CN",
+ "city": "Zhenjiang Shi",
+ "height": 500,
+ "level": 2,
+ "lat": "31.919481",
+ "lng": "119.77526",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 119.77526,
+ 31.919481,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001523,
+ "name": "Sunan Shuofang International Airport",
+ "country": "CN",
+ "city": "Wuxi",
+ "height": 500,
+ "level": 2,
+ "lat": "31.49862",
+ "lng": "120.435263",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.435263,
+ 31.49862,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001368,
+ "name": "Guanghan Airport",
+ "country": "CN",
+ "city": "Civil Aviation Flight University of China",
+ "height": 500,
+ "level": 2,
+ "lat": "30.948072",
+ "lng": "104.329336",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 104.329336,
+ 30.948072,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002561,
+ "name": "阆中古城机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "31.4904245302495",
+ "lng": "106.027614822388",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 106.027614822387704,
+ 31.490424530249548,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045013,
+ "name": "达州金垭机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "31.04517",
+ "lng": "107.437831",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 107.437831,
+ 31.04517,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001479,
+ "name": "Nanchong Airport",
+ "country": "CN",
+ "city": "Nanchong",
+ "height": 500,
+ "level": 2,
+ "lat": "30.795106",
+ "lng": "106.162383",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 106.162383,
+ 30.795106,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001486,
+ "name": "Wanxian Airport",
+ "country": "CN",
+ "city": "Wanxian",
+ "height": 500,
+ "level": 2,
+ "lat": "30.801736",
+ "lng": "108.433089",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 108.433089,
+ 30.801736,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002399,
+ "name": "重庆巫山机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "31.06863143",
+ "lng": "109.70917225",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 109.70917225,
+ 31.06863143,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001544,
+ "name": "安徽芜湖机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "31.10456673",
+ "lng": "118.66734233",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 118.66734233,
+ 31.10456673,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001333,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Jiaxing",
+ "height": 500,
+ "level": 2,
+ "lat": "30.705043",
+ "lng": "120.680211",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.680211,
+ 30.705043,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002167,
+ "name": "Shanghai Pudong International Airport",
+ "country": "CN",
+ "city": "Shanghai",
+ "height": 500,
+ "level": 2,
+ "lat": "31.144291",
+ "lng": "121.810136",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.810136,
+ 31.144291,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001380,
+ "name": "Shanghai Hongqiao International Airport",
+ "country": "CN",
+ "city": "Shanghai",
+ "height": 500,
+ "level": 2,
+ "lat": "31.197971",
+ "lng": "121.337757",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.337757,
+ 31.197971,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045031,
+ "name": "阿里普兰机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "30.3791997",
+ "lng": "81.1463752",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 81.1463752,
+ 30.3791997,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001521,
+ "name": "Changdu Bangda Airport",
+ "country": "CN",
+ "city": "Qamdo",
+ "height": 500,
+ "level": 2,
+ "lat": "30.549778",
+ "lng": "97.106511",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 97.106511,
+ 30.549778,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001476,
+ "name": "康定",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "30.143055555556",
+ "lng": "101.738611111111",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101.738611111110998,
+ 30.143055555556,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001317,
+ "name": "Chengdu Shuangliu International Airport",
+ "country": "CN",
+ "city": "Chengdu",
+ "height": 500,
+ "level": 2,
+ "lat": "30.578333",
+ "lng": "103.946945",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 103.946945,
+ 30.578333,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001278,
+ "name": "天府国际机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "30.32272423",
+ "lng": "104.44505509",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 104.44505509,
+ 30.32272423,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002378,
+ "name": "湖北恩施恒通公司沥青配置中心",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "30.35469",
+ "lng": "109.479199",
+ "radius": 1204,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 109.479199,
+ 30.35469,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001491,
+ "name": "Enshi Airport",
+ "country": "CN",
+ "city": "Enshi",
+ "height": 500,
+ "level": 2,
+ "lat": "30.322501",
+ "lng": "109.485498",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 109.485498,
+ 30.322501,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001497,
+ "name": "Yichang Airport",
+ "country": "CN",
+ "city": "Yichang",
+ "height": 500,
+ "level": 2,
+ "lat": "30.549027",
+ "lng": "111.482049",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 111.482049,
+ 30.549027,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001466,
+ "name": "Wuhan Tianhe International Airport",
+ "country": "CN",
+ "city": "Wuhan",
+ "height": 500,
+ "level": 2,
+ "lat": "30.780599",
+ "lng": "114.21142",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.21142,
+ 30.780599,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001603,
+ "name": "荆州沙市机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "30.29463829",
+ "lng": "112.44813345",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 112.44813345,
+ 30.29463829,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002169,
+ "name": "Ezhou Huahu Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "30.33720489",
+ "lng": "115.03884092",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 115.03884092,
+ 30.33720489,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001372,
+ "name": "Anqing Airport",
+ "country": "CN",
+ "city": "Anqing",
+ "height": 500,
+ "level": 2,
+ "lat": "30.582728",
+ "lng": "117.050495",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 117.050495,
+ 30.582728,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001358,
+ "name": "Jiuhuashan Airport",
+ "country": "CN",
+ "city": "Chizhou",
+ "height": 500,
+ "level": 2,
+ "lat": "30.739651",
+ "lng": "117.688255",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 117.688255,
+ 30.739651,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 10243,
+ "name": "杭州西湖西子国宾馆",
+ "country": "CN",
+ "city": "Hangzhou Shi",
+ "height": 0,
+ "level": 2,
+ "lat": "30.233528",
+ "lng": "120.152342",
+ "radius": 151,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.152342,
+ 30.233528,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001314,
+ "name": "Hangzhou Xiaoshan International Airport",
+ "country": "CN",
+ "city": "Hangzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "30.236246",
+ "lng": "120.433739",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.433739,
+ 30.236246,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282885,
+ "name": "Bajura Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "29.502892",
+ "lng": "81.668527",
+ "radius": 309,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 81.668527,
+ 29.502892,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282869,
+ "name": "Bajhang Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "29.538343",
+ "lng": "81.183387",
+ "radius": 397,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 81.183387,
+ 29.538343,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282856,
+ "name": "Baitadi Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "29.463493",
+ "lng": "80.549144",
+ "radius": 387,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 80.549144,
+ 29.463493,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268517,
+ "name": "Sanfebagar Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "29.236925",
+ "lng": "81.215504",
+ "radius": 383,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 81.215504,
+ 29.236925,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30280483,
+ "name": "Darchula Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "29.668584",
+ "lng": "80.547734",
+ "radius": 376,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 80.547734,
+ 29.668584,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282443,
+ "name": "Simikot Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "29.970678",
+ "lng": "81.819132",
+ "radius": 451,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 81.819132,
+ 29.970678,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001345,
+ "name": "Shigatse Peace Airport",
+ "country": "CN",
+ "city": "Rikaze",
+ "height": 500,
+ "level": 2,
+ "lat": "29.351667",
+ "lng": "89.309862",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 89.309862,
+ 29.351667,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001417,
+ "name": "Lhasa Gonggar Airport",
+ "country": "CN",
+ "city": "Lhasa",
+ "height": 500,
+ "level": 2,
+ "lat": "29.297036",
+ "lng": "90.911774",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 90.911774,
+ 29.297036,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001430,
+ "name": "Nyingchi Airport",
+ "country": "CN",
+ "city": "Nyingchi",
+ "height": 500,
+ "level": 2,
+ "lat": "29.303736",
+ "lng": "94.335081",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 94.335081,
+ 29.303736,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001400,
+ "name": "亚丁",
+ "country": "CN",
+ "city": "稻城",
+ "height": 500,
+ "level": 2,
+ "lat": "29.3175",
+ "lng": "100.06",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.06,
+ 29.3175,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042400,
+ "name": "规划展览馆",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "29.5768222",
+ "lng": "106.5861208",
+ "radius": 1200,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 106.5861208,
+ 29.5768222,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001499,
+ "name": "Chongqing Jiangbei International Airport",
+ "country": "CN",
+ "city": "Chongqing",
+ "height": 500,
+ "level": 2,
+ "lat": "29.7217",
+ "lng": "106.641668",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 106.641668,
+ 29.7217,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025607,
+ "name": "重庆市人民政府",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "29.5667598",
+ "lng": "106.5455948",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 106.5455948,
+ 29.5667598,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045005,
+ "name": "解放碑",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "29.5600948366655",
+ "lng": "106.573401048084",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 106.573401048083682,
+ 29.560094836665463,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042406,
+ "name": "渝州宾馆",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "29.5335674",
+ "lng": "106.4985466",
+ "radius": 1500,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 106.4985466,
+ 29.5335674,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045004,
+ "name": "嘉州路",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "29.5970417789651",
+ "lng": "106.520181200371",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 106.520181200371127,
+ 29.597041778965078,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001308,
+ "name": "Qianjiang Wulingshan Airport",
+ "country": "CN",
+ "city": "Qianjiang",
+ "height": 500,
+ "level": 2,
+ "lat": "29.513915",
+ "lng": "108.83127",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 108.83127,
+ 29.513915,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001319,
+ "name": "Sanhe airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "29.324429",
+ "lng": "113.281546",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.281546,
+ 29.324429,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045029,
+ "name": "九江庐山机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "29.481108",
+ "lng": "115.807864",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 115.807864,
+ 29.481108,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001401,
+ "name": "Jingdezhen Airport",
+ "country": "CN",
+ "city": "Jingdezhen",
+ "height": 500,
+ "level": 2,
+ "lat": "29.33906",
+ "lng": "117.175876",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 117.175876,
+ 29.33906,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001448,
+ "name": "Tunxi International Airport",
+ "country": "CN",
+ "city": "Huangshan",
+ "height": 500,
+ "level": 2,
+ "lat": "29.735",
+ "lng": "118.255",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 118.255,
+ 29.735,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001391,
+ "name": "Yiwu Airport",
+ "country": "CN",
+ "city": "Yiwu",
+ "height": 500,
+ "level": 2,
+ "lat": "29.344711",
+ "lng": "120.031813",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.031813,
+ 29.344711,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001352,
+ "name": "Ningbo Lishe International Airport",
+ "country": "CN",
+ "city": "Ningbo",
+ "height": 500,
+ "level": 2,
+ "lat": "29.826666",
+ "lng": "121.461945",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.461945,
+ 29.826666,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001349,
+ "name": "Zhoushan Airport",
+ "country": "CN",
+ "city": "Zhoushan",
+ "height": 500,
+ "level": 2,
+ "lat": "29.933374",
+ "lng": "122.359681",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 122.359681,
+ 29.933374,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287348,
+ "name": "Mahendranagar Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "28.959698",
+ "lng": "80.147443",
+ "radius": 756,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 80.147443,
+ 28.959698,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30280546,
+ "name": "Dhangarhi Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "28.754968",
+ "lng": "80.583158",
+ "radius": 1071,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 80.583158,
+ 28.754968,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282311,
+ "name": "Jumla Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "29.274402",
+ "lng": "82.193152",
+ "radius": 437,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 82.193152,
+ 29.274402,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287156,
+ "name": "Tikapur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "28.522113",
+ "lng": "81.1234",
+ "radius": 574,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 81.1234,
+ 28.522113,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287789,
+ "name": "Surkhet Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "28.585596",
+ "lng": "81.635819",
+ "radius": 647,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 81.635819,
+ 28.585596,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295783,
+ "name": "Dolpa Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "28.985701",
+ "lng": "82.819099",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 82.819099,
+ 28.985701,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284935,
+ "name": "Rukumkot Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "28.627887",
+ "lng": "82.194134",
+ "radius": 330,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 82.194134,
+ 28.627887,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295784,
+ "name": "Jomsom Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "28.780426",
+ "lng": "83.723",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 83.723,
+ 28.780426,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283807,
+ "name": "Manang Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "28.641429",
+ "lng": "84.087276",
+ "radius": 527,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 84.087276,
+ 28.641429,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001268,
+ "name": "Yibin Wuliangye Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "28.85721477",
+ "lng": "104.52462785",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 104.52462785,
+ 28.85721477,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001365,
+ "name": "Luzhou Yunlong Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "28.848835",
+ "lng": "105.382561",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 105.382561,
+ 28.848835,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40025580,
+ "name": "湘西边城机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "28.4961522",
+ "lng": "109.5218468",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 109.5218468,
+ 28.4961522,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001373,
+ "name": "Changde Airport",
+ "country": "CN",
+ "city": "Changde",
+ "height": 500,
+ "level": 2,
+ "lat": "28.918992",
+ "lng": "111.639612",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 111.639612,
+ 28.918992,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001532,
+ "name": "Dayong Airport",
+ "country": "CN",
+ "city": "Dayong",
+ "height": 500,
+ "level": 2,
+ "lat": "29.103093",
+ "lng": "110.443505",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 110.443505,
+ 29.103093,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001354,
+ "name": "Nanchang Changbei International Airport",
+ "country": "CN",
+ "city": "Nanchang",
+ "height": 500,
+ "level": 2,
+ "lat": "28.857464",
+ "lng": "115.910666",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 115.910666,
+ 28.857464,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001538,
+ "name": "Quzhou Airport",
+ "country": "CN",
+ "city": "Quzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "28.967094",
+ "lng": "118.899507",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 118.899507,
+ 28.967094,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010372,
+ "name": "Nepalgunj Airport",
+ "country": "NP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "28.102989",
+ "lng": "81.666943",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 81.666943,
+ 28.102989,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30280566,
+ "name": "Tulsipur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "28.111118",
+ "lng": "82.294353",
+ "radius": 458,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 82.294353,
+ 28.111118,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284880,
+ "name": "Rolpa Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "28.266949",
+ "lng": "82.756448",
+ "radius": 306,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 82.756448,
+ 28.266949,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282799,
+ "name": "Baglung Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "28.213427",
+ "lng": "83.666083",
+ "radius": 445,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 83.666083,
+ 28.213427,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30281963,
+ "name": "Palungtar Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "28.038743",
+ "lng": "84.466158",
+ "radius": 696,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 84.466158,
+ 28.038743,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008966,
+ "name": "Pokhara Airport",
+ "country": "NP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "28.200832",
+ "lng": "83.981841",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 83.981841,
+ 28.200832,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295492,
+ "name": "Mountain Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "28",
+ "lng": "85.333",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 85.333,
+ 28.0,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001324,
+ "name": "Xichang Qingshan Airport",
+ "country": "CN",
+ "city": "Xichang",
+ "height": 500,
+ "level": 2,
+ "lat": "27.989167",
+ "lng": "102.184444",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 102.184444,
+ 27.989167,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001475,
+ "name": "Zunyi Xinzhou Airport",
+ "country": "CN",
+ "city": "Zunyi",
+ "height": 500,
+ "level": 2,
+ "lat": "27.811052",
+ "lng": "107.247133",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 107.247133,
+ 27.811052,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001533,
+ "name": "Tongren Fenghuang Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.884554",
+ "lng": "109.310617",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 109.310617,
+ 27.884554,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001482,
+ "name": "Changsha Huanghua International Airport",
+ "country": "CN",
+ "city": "Changsha",
+ "height": 500,
+ "level": 2,
+ "lat": "28.192884",
+ "lng": "113.213797",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.213797,
+ 28.192884,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001439,
+ "name": "明月山",
+ "country": "CN",
+ "city": "宜春",
+ "height": 500,
+ "level": 2,
+ "lat": "27.8008333333333",
+ "lng": "114.305",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.305,
+ 27.800833333333323,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001494,
+ "name": "三清山",
+ "country": "CN",
+ "city": "上饶",
+ "height": 500,
+ "level": 2,
+ "lat": "28.3808333333333",
+ "lng": "117.96625",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 117.96625,
+ 28.380833333333349,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001327,
+ "name": "Wenzhou Yongqiang Airport",
+ "country": "CN",
+ "city": "Wenzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "27.908293",
+ "lng": "120.852664",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.852664,
+ 27.908293,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001453,
+ "name": "Huangyan Luqiao Airport",
+ "country": "CN",
+ "city": "Huangyan",
+ "height": 500,
+ "level": 2,
+ "lat": "28.56241",
+ "lng": "121.428439",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.428439,
+ 28.56241,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009300,
+ "name": "Bhairahawa Airport",
+ "country": "NP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.505234",
+ "lng": "83.416912",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 83.416912,
+ 27.505234,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285740,
+ "name": "Meghauli Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.577245",
+ "lng": "84.229034",
+ "radius": 647,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 84.229034,
+ 27.577245,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282830,
+ "name": "Bharatpur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.676769",
+ "lng": "84.428423",
+ "radius": 696,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 84.428423,
+ 27.676769,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284936,
+ "name": "Rumjatar Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.302469",
+ "lng": "86.550556",
+ "radius": 323,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 86.550556,
+ 27.302469,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284810,
+ "name": "Ramechhap Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "27.393127",
+ "lng": "86.06008",
+ "radius": 399,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 86.06008,
+ 27.393127,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30285454,
+ "name": "Phaplu Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.51806",
+ "lng": "86.584902",
+ "radius": 432,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 86.584902,
+ 27.51806,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009652,
+ "name": "Lukla Airport",
+ "country": "NP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.686913",
+ "lng": "86.729423",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 86.729423,
+ 27.686913,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009157,
+ "name": "Tribhuvan International Airport",
+ "country": "NP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.693302",
+ "lng": "85.356731",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 85.356731,
+ 27.693302,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30272911,
+ "name": "Tumling Tar Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.315249",
+ "lng": "87.194004",
+ "radius": 740,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 87.194004,
+ 27.315249,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287151,
+ "name": "Suketar Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.350946",
+ "lng": "87.695158",
+ "radius": 367,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 87.695158,
+ 27.350946,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30282826,
+ "name": "Bhojpur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "27.147057",
+ "lng": "87.051112",
+ "radius": 344,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 87.051112,
+ 27.147057,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008529,
+ "name": "Paro Airport",
+ "country": "BT",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.403793",
+ "lng": "89.423973",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 89.423973,
+ 27.403793,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010151,
+ "name": "YONPHULA",
+ "country": "BT",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.25596111",
+ "lng": "91.51535278",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 91.51535278,
+ 27.25596111,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30296211,
+ "name": "BUMTHANG",
+ "country": "BT",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "27.562183",
+ "lng": "90.74725",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 90.74725,
+ 27.562183,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010567,
+ "name": "North Lakhimpur Airport",
+ "country": "IN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.295091",
+ "lng": "94.096896",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 94.096896,
+ 27.295091,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009356,
+ "name": "Dibrugarh Airport",
+ "country": "IN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.484201",
+ "lng": "95.017972",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 95.017972,
+ 27.484201,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010056,
+ "name": "Putao Airport",
+ "country": "MM",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.329381",
+ "lng": "97.426607",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 97.426607,
+ 27.329381,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001449,
+ "name": "Diqing Airport",
+ "country": "CN",
+ "city": "Shangri-La",
+ "height": 500,
+ "level": 2,
+ "lat": "27.792159",
+ "lng": "99.678255",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 99.678255,
+ 27.792159,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001515,
+ "name": "泸沽湖",
+ "country": "CN",
+ "city": "宁蒗",
+ "height": 500,
+ "level": 2,
+ "lat": "27.5404166666667",
+ "lng": "100.759583333333",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.759583333333325,
+ 27.540416666666673,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001474,
+ "name": "Zhaotong Airport",
+ "country": "CN",
+ "city": "Zhaotong",
+ "height": 500,
+ "level": 2,
+ "lat": "27.327497",
+ "lng": "103.756697",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 103.756697,
+ 27.327497,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002165,
+ "name": "Zunyi Renhuai Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.96160574",
+ "lng": "106.43551586",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 106.43551586,
+ 27.96160574,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001309,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.267071",
+ "lng": "105.472222",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 105.472222,
+ 27.267071,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001395,
+ "name": "Zhijiang Airport",
+ "country": "CN",
+ "city": "Huaihua",
+ "height": 500,
+ "level": 2,
+ "lat": "27.443886",
+ "lng": "109.70527",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 109.70527,
+ 27.443886,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001481,
+ "name": "Nanping Wuyishan Airport",
+ "country": "CN",
+ "city": "Wuyishan",
+ "height": 500,
+ "level": 2,
+ "lat": "27.701342",
+ "lng": "117.999447",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 117.999447,
+ 27.701342,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009810,
+ "name": "Janakpur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.708649",
+ "lng": "85.921883",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 85.921883,
+ 26.708649,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010697,
+ "name": "Simara Airport",
+ "country": "NP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "27.160032",
+ "lng": "84.980031",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 84.980031,
+ 27.160032,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283322,
+ "name": "Lamidanda Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "27.252675",
+ "lng": "86.672584",
+ "radius": 314,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 86.672584,
+ 27.252675,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008900,
+ "name": "Bhadrapur Airport",
+ "country": "NP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.570822",
+ "lng": "88.079578",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 88.079578,
+ 26.570822,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010768,
+ "name": "Biratnagar Airport",
+ "country": "NP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.482195",
+ "lng": "87.263316",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 87.263316,
+ 26.482195,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30284829,
+ "name": "Rajbiraj Airport",
+ "country": "NP",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "26.509472",
+ "lng": "86.737551",
+ "radius": 972,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 86.737551,
+ 26.509472,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010786,
+ "name": "Bagdogra Airport",
+ "country": "IN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.682009",
+ "lng": "88.329145",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 88.329145,
+ 26.682009,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008243,
+ "name": "Hashimara Air Force Station",
+ "country": "IN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.698448",
+ "lng": "89.369202",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 89.369202,
+ 26.698448,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009704,
+ "name": "Tezpur Airport",
+ "country": "IN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.711101",
+ "lng": "92.783644",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 92.783644,
+ 26.711101,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010712,
+ "name": "Jorhat Airport",
+ "country": "IN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.73",
+ "lng": "94.175",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 94.175,
+ 26.73,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001470,
+ "name": "Lijiang Airport",
+ "country": "CN",
+ "city": "Lijiang",
+ "height": 500,
+ "level": 2,
+ "lat": "26.676563",
+ "lng": "100.246664",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.246664,
+ 26.676563,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001364,
+ "name": "保安营",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.54",
+ "lng": "101.798611111111",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101.798611111111001,
+ 26.54,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001528,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.605355",
+ "lng": "104.974023",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 104.974023,
+ 26.605355,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001415,
+ "name": "Longdongbao Airport",
+ "country": "CN",
+ "city": "Guiyang",
+ "height": 500,
+ "level": 2,
+ "lat": "26.538388",
+ "lng": "106.799351",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 106.799351,
+ 26.538388,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001536,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.970662",
+ "lng": "107.987228",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 107.987228,
+ 26.970662,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001406,
+ "name": "Shaoyang Wugang Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.795882",
+ "lng": "110.635071",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 110.635071,
+ 26.795882,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001299,
+ "name": "Lingling Airport",
+ "country": "CN",
+ "city": "Yongzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "26.338876",
+ "lng": "111.610043",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 111.610043,
+ 26.338876,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001450,
+ "name": "Nanyue Airport",
+ "country": "CN",
+ "city": "Hengyang",
+ "height": 500,
+ "level": 2,
+ "lat": "26.7208002757",
+ "lng": "112.6188744664",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 112.618874466400001,
+ 26.7208002757,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001315,
+ "name": "Jinggangshan Airport",
+ "country": "CN",
+ "city": "Ji'an",
+ "height": 500,
+ "level": 2,
+ "lat": "26.857079",
+ "lng": "114.735591",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.735591,
+ 26.857079,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001377,
+ "name": "沙县",
+ "country": "CN",
+ "city": "三明",
+ "height": 500,
+ "level": 2,
+ "lat": "26.42625",
+ "lng": "117.833333333333",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 117.833333333333314,
+ 26.42625,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283478,
+ "name": "Lalmonirhat Airport",
+ "country": "BD",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.887672",
+ "lng": "89.428614",
+ "radius": 976,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 89.428614,
+ 25.887672,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30283357,
+ "name": "Rupsi India Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "26.141455",
+ "lng": "89.907612",
+ "radius": 1026,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 89.907612,
+ 26.141455,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010249,
+ "name": "Saidpur Airport",
+ "country": "BD",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "25.758374",
+ "lng": "88.908903",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 88.908903,
+ 25.758374,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30287039,
+ "name": "Thakurgaon Airport",
+ "country": "BD",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "26.016203",
+ "lng": "88.40236",
+ "radius": 1020,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 88.40236,
+ 26.016203,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30295433,
+ "name": "Baljek Airport",
+ "country": "IN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "25.661488",
+ "lng": "90.345039",
+ "radius": 500,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 90.345039,
+ 25.661488,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010014,
+ "name": "BARAPANI",
+ "country": "IN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "25.70396389",
+ "lng": "91.97816944",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 91.97816944,
+ 25.70396389,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009500,
+ "name": "Lokpriya Gopinath Bordoloi International Airport",
+ "country": "IN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "26.107705",
+ "lng": "91.586557",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 91.586557,
+ 26.107705,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001336,
+ "name": "Dali Airport",
+ "country": "CN",
+ "city": "Xiaguan",
+ "height": 500,
+ "level": 2,
+ "lat": "25.650105",
+ "lng": "100.318848",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.318848,
+ 25.650105,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001366,
+ "name": "Anshun Huangguoshu Airport",
+ "country": "CN",
+ "city": "Anshun",
+ "height": 500,
+ "level": 2,
+ "lat": "26.260626",
+ "lng": "105.873664",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 105.873664,
+ 26.260626,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001502,
+ "name": "Liping Airport",
+ "country": "CN",
+ "city": "Liping",
+ "height": 500,
+ "level": 2,
+ "lat": "26.322162",
+ "lng": "109.149912",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 109.149912,
+ 26.322162,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001607,
+ "name": "郴州北湖机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "25.75307515",
+ "lng": "112.84516493",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 112.84516493,
+ 25.75307515,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001511,
+ "name": "Ganzhou Airport",
+ "country": "CN",
+ "city": "Ganzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "25.853444",
+ "lng": "114.779242",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.779242,
+ 25.853444,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001525,
+ "name": "Longyan Guanzhishan Airport",
+ "country": "CN",
+ "city": "Longyan",
+ "height": 500,
+ "level": 2,
+ "lat": "25.676484",
+ "lng": "116.745942",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 116.745942,
+ 25.676484,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001301,
+ "name": "Matsu Beigan Airport",
+ "country": "TW",
+ "city": "Beigan Island",
+ "height": 500,
+ "level": 2,
+ "lat": "26.224381",
+ "lng": "120.002228",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.002228,
+ 26.224381,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000309,
+ "name": "東莒直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.960556",
+ "lng": "119.959444",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 119.959444,
+ 25.960556,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001520,
+ "name": "Fuzhou Changle International Airport",
+ "country": "CN",
+ "city": "Fuzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "25.934999",
+ "lng": "119.66333",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 119.66333,
+ 25.934999,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001493,
+ "name": "Matsu Nangan Airport",
+ "country": "TW",
+ "city": "Nangang Island",
+ "height": 500,
+ "level": 2,
+ "lat": "26.159537",
+ "lng": "119.9582",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 119.9582,
+ 26.159537,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000284,
+ "name": "西莒直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.973056",
+ "lng": "119.928056",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 119.928056,
+ 25.973056,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000294,
+ "name": "東引直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "26.358889",
+ "lng": "120.483056",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.483056,
+ 26.358889,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008310,
+ "name": "NAMPONG",
+ "country": "MM",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "25.35438611",
+ "lng": "97.29513611",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 97.29513611,
+ 25.35438611,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008143,
+ "name": "KANTI",
+ "country": "MM",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "25.98874722",
+ "lng": "95.67468889",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 95.67468889,
+ 25.98874722,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009041,
+ "name": "Myitkyina Airport",
+ "country": "MM",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "25.383538",
+ "lng": "97.353351",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 97.353351,
+ 25.383538,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001436,
+ "name": "Tengchong Tuofeng Airport",
+ "country": "CN",
+ "city": "Tengchong",
+ "height": 500,
+ "level": 2,
+ "lat": "24.938236",
+ "lng": "98.485646",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 98.485646,
+ 24.938236,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001488,
+ "name": "Kunming Changshui International Airport",
+ "country": "CN",
+ "city": "Kunming",
+ "height": 500,
+ "level": 2,
+ "lat": "25.107363",
+ "lng": "102.938976",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 102.938976,
+ 25.107363,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001357,
+ "name": "Xingyi Airport",
+ "country": "CN",
+ "city": "Xingyi",
+ "height": 500,
+ "level": 2,
+ "lat": "25.086545",
+ "lng": "104.959255",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 104.959255,
+ 25.086545,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002377,
+ "name": "华能云南滇东能源厂区",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "25.200651",
+ "lng": "104.683787",
+ "radius": 1422,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 104.683787,
+ 25.200651,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001437,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "25.451111111111",
+ "lng": "107.9625",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 107.9625,
+ 25.451111111111,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001300,
+ "name": "Guilin Liangjiang International Airport",
+ "country": "CN",
+ "city": "Guilin City",
+ "height": 500,
+ "level": 2,
+ "lat": "25.218209",
+ "lng": "110.042591",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 110.042591,
+ 25.218209,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001747,
+ "name": "Shaoguan Danxia Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "24.97796784",
+ "lng": "113.42038678",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.42038678,
+ 24.97796784,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000080,
+ "name": "RCR48(第二核能發電廠)",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.2",
+ "lng": "121.65",
+ "radius": 3704,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.65,
+ 25.2,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000286,
+ "name": "臺北榮民總醫院直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.120306",
+ "lng": "121.520139",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.520139,
+ 25.120306,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001477,
+ "name": "Taipei Songshan Airport",
+ "country": "TW",
+ "city": "Taipei City",
+ "height": 500,
+ "level": 2,
+ "lat": "25.067799",
+ "lng": "121.55313",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.55313,
+ 25.067799,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 1569,
+ "name": "Hsinchu Airport",
+ "country": "TW",
+ "city": "Hsinchu",
+ "height": 0,
+ "level": 2,
+ "lat": "24.819628",
+ "lng": "120.937542",
+ "radius": 2120,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.937542,
+ 24.819628,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001485,
+ "name": "Taiwan Taoyuan International Airport",
+ "country": "TW",
+ "city": "Taipei",
+ "height": 500,
+ "level": 2,
+ "lat": "25.080739",
+ "lng": "121.235926",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.235926,
+ 25.080739,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 31502,
+ "name": "總統府",
+ "country": "TW",
+ "city": "100",
+ "height": 0,
+ "level": 2,
+ "lat": "25.039892",
+ "lng": "121.511997",
+ "radius": 292,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.511997,
+ 25.039892,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000075,
+ "name": "RCR46(第一核能發電廠)",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.28333",
+ "lng": "121.583333",
+ "radius": 3704,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.583333,
+ 25.28333,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045009,
+ "name": "RCR48-2(第二核能發電廠)",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.200728",
+ "lng": "121.656353",
+ "radius": 940,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.656353,
+ 25.200728,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000307,
+ "name": "亞東醫院直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "24.997194",
+ "lng": "121.453333",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.453333,
+ 24.997194,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045010,
+ "name": "RCR46-2第一核能發電廠)",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.279917",
+ "lng": "121.58829",
+ "radius": 1374,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.58829,
+ 25.279917,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010177,
+ "name": "Banmaw Airport",
+ "country": "MM",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "24.270715",
+ "lng": "97.248187",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 97.248187,
+ 24.270715,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001492,
+ "name": "Mangshi Airport",
+ "country": "CN",
+ "city": "Luxi",
+ "height": 500,
+ "level": 2,
+ "lat": "24.401433",
+ "lng": "98.532123",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 98.532123,
+ 24.401433,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001407,
+ "name": "Baoshan Yunduan Airport",
+ "country": "CN",
+ "city": "Baoshan Shi",
+ "height": 500,
+ "level": 2,
+ "lat": "25.052167",
+ "lng": "99.167518",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 99.167518,
+ 25.052167,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001432,
+ "name": "金城江",
+ "country": "CN",
+ "city": "河池",
+ "height": 500,
+ "level": 2,
+ "lat": "24.8058333333333",
+ "lng": "107.71125",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 107.71125,
+ 24.805833333333325,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001429,
+ "name": "Bailian Airport",
+ "country": "CN",
+ "city": "Liuzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "24.207735",
+ "lng": "109.391454",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 109.391454,
+ 24.207735,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001383,
+ "name": "梅县长岗岌机场",
+ "country": "CN",
+ "city": "Meixian",
+ "height": 500,
+ "level": 2,
+ "lat": "24.263378",
+ "lng": "116.097851",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 116.097851,
+ 24.263378,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001386,
+ "name": "Xiamen Gaoqi International Airport",
+ "country": "CN",
+ "city": "Xiamen",
+ "height": 500,
+ "level": 2,
+ "lat": "24.540553",
+ "lng": "118.134533",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 118.134533,
+ 24.540553,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001397,
+ "name": "Kinmen Airport",
+ "country": "TW",
+ "city": "Shang-I",
+ "height": 500,
+ "level": 2,
+ "lat": "24.429798",
+ "lng": "118.359622",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 118.359622,
+ 24.429798,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001316,
+ "name": "Jinjiang Airport",
+ "country": "CN",
+ "city": "Jinjiang Shi",
+ "height": 500,
+ "level": 2,
+ "lat": "24.798709",
+ "lng": "118.590342",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 118.590342,
+ 24.798709,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000297,
+ "name": "臺北市地政及災害應變中心聯合辦公大樓屋頂直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "25.028667",
+ "lng": "121.566444",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.566444,
+ 25.028667,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001343,
+ "name": "Taichung Airport",
+ "country": "TW",
+ "city": "Taichung City",
+ "height": 500,
+ "level": 2,
+ "lat": "24.263267",
+ "lng": "120.621972",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.621972,
+ 24.263267,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000291,
+ "name": "沙鹿童綜合醫院直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "24.247222",
+ "lng": "120.543333",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.543333,
+ 24.247222,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000304,
+ "name": "部立雙和醫院直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "24.992722",
+ "lng": "121.49225",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.49225,
+ 24.992722,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000292,
+ "name": "中國醫藥大學附設醫院五權院區直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "24.154167",
+ "lng": "120.683472",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.683472,
+ 24.154167,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 31501,
+ "name": "成功嶺",
+ "country": "TW",
+ "city": "Wuri District",
+ "height": 0,
+ "level": 2,
+ "lat": "24.128778",
+ "lng": "120.590959",
+ "radius": 915,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.590959,
+ 24.128778,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008273,
+ "name": "Yonaguni Airport",
+ "country": "JP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "24.467614",
+ "lng": "122.97949",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 122.97949,
+ 24.467614,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010649,
+ "name": "Ishigaki Airport",
+ "country": "JP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "24.397406",
+ "lng": "124.246187",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 124.246187,
+ 24.397406,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010198,
+ "name": "TARAMA",
+ "country": "JP",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "24.65388889",
+ "lng": "124.67541667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 124.67541667,
+ 24.65388889,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001426,
+ "name": "临沧机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "23.739166666667",
+ "lng": "100.024444444444",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.024444444444001,
+ 23.739166666667,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001510,
+ "name": "普者黑",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "23.558333333333",
+ "lng": "104.325555555556",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 104.325555555555994,
+ 23.558333333333,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001506,
+ "name": "Baise Youjiang Airport",
+ "country": "CN",
+ "city": "Baise",
+ "height": 500,
+ "level": 2,
+ "lat": "23.719837",
+ "lng": "106.959768",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 106.959768,
+ 23.719837,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001321,
+ "name": "潮汕",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "23.551944444444",
+ "lng": "116.503333333333",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 116.503333333333003,
+ 23.551944444444,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000302,
+ "name": "溪頭米堤直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "23.682472",
+ "lng": "120.796",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.796,
+ 23.682472,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000298,
+ "name": "內政部消防署訓練中心直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "23.823361",
+ "lng": "120.725583",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.725583,
+ 23.823361,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001537,
+ "name": "Chiayi Airport",
+ "country": "TW",
+ "city": "Chiayi City",
+ "height": 500,
+ "level": 2,
+ "lat": "23.463177",
+ "lng": "120.393469",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.393469,
+ 23.463177,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001405,
+ "name": "Magong Airport",
+ "country": "TW",
+ "city": "Makung City",
+ "height": 500,
+ "level": 2,
+ "lat": "23.569891",
+ "lng": "119.629731",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 119.629731,
+ 23.569891,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000278,
+ "name": "員林基督教醫院直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "23.962686",
+ "lng": "120.5672",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.5672,
+ 23.962686,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001411,
+ "name": "Hualien Airport",
+ "country": "TW",
+ "city": "Hualien City",
+ "height": 500,
+ "level": 2,
+ "lat": "24.024594",
+ "lng": "121.61668",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.61668,
+ 24.024594,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009692,
+ "name": "Lashio Airport",
+ "country": "MM",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "22.977985",
+ "lng": "97.752419",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 97.752419,
+ 22.977985,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 30268926,
+ "name": "Namtu Airport",
+ "country": "MM",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "23.076574",
+ "lng": "97.404594",
+ "radius": 317,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 97.404594,
+ 23.076574,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001350,
+ "name": "Pu'er Simao Airport",
+ "country": "CN",
+ "city": "Simao",
+ "height": 500,
+ "level": 2,
+ "lat": "22.796322",
+ "lng": "100.957848",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.957848,
+ 22.796322,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001427,
+ "name": "Wuzhou Xijiang Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "23.401225",
+ "lng": "111.097615",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 111.097615,
+ 23.401225,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001409,
+ "name": "Foshan Shadi Airport",
+ "country": "CN",
+ "city": "Foshan",
+ "height": 500,
+ "level": 2,
+ "lat": "23.084044",
+ "lng": "113.070033",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.070033,
+ 23.084044,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001440,
+ "name": "机场禁飞区",
+ "country": "CN",
+ "city": "Huizhou",
+ "height": 500,
+ "level": 2,
+ "lat": "23.049952",
+ "lng": "114.600282",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.600282,
+ 23.049952,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33374,
+ "name": "观澜镇牛栏窝导航台禁飞区",
+ "country": "CN",
+ "city": "深圳",
+ "height": 0,
+ "level": 2,
+ "lat": "22.71",
+ "lng": "114.033333",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.033333,
+ 22.71,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001500,
+ "name": "Guangzhou Baiyun International Airport",
+ "country": "CN",
+ "city": "Guangzhou",
+ "height": 500,
+ "level": 2,
+ "lat": "23.398271",
+ "lng": "113.305038",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.305038,
+ 23.398271,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001454,
+ "name": "Wang-an Airport",
+ "country": "TW",
+ "city": "Wang-an",
+ "height": 500,
+ "level": 2,
+ "lat": "23.369223",
+ "lng": "119.503422",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 119.503422,
+ 23.369223,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001490,
+ "name": "Chi Mei Airport",
+ "country": "TW",
+ "city": "Chi Mei",
+ "height": 500,
+ "level": 2,
+ "lat": "23.213236",
+ "lng": "119.417316",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 119.417316,
+ 23.213236,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001370,
+ "name": "Tainan Airport",
+ "country": "TW",
+ "city": "Tainan City",
+ "height": 500,
+ "level": 2,
+ "lat": "22.949633",
+ "lng": "120.205181",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.205181,
+ 22.949633,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001412,
+ "name": "Lyudao Airport",
+ "country": "TW",
+ "city": "Lyudao",
+ "height": 500,
+ "level": 2,
+ "lat": "22.673352",
+ "lng": "121.466157",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.466157,
+ 22.673352,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001487,
+ "name": "Taitung Airport",
+ "country": "TW",
+ "city": "Taitung City",
+ "height": 500,
+ "level": 2,
+ "lat": "22.755025",
+ "lng": "121.101331",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.101331,
+ 22.755025,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001459,
+ "name": "Lancang Jingmai Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "22.417504",
+ "lng": "99.78332",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 99.78332,
+ 22.417504,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001441,
+ "name": "Xishuangbanna Gasa Airport",
+ "country": "CN",
+ "city": "Jinghong",
+ "height": 500,
+ "level": 2,
+ "lat": "21.975052",
+ "lng": "100.762265",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.762265,
+ 21.975052,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001313,
+ "name": "Nanning Wuxu Airport",
+ "country": "CN",
+ "city": "Nanning",
+ "height": 500,
+ "level": 2,
+ "lat": "22.610034",
+ "lng": "108.176002",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 108.176002,
+ 22.610034,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001279,
+ "name": "玉林福绵机场",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "22.43566393",
+ "lng": "110.12176037",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 110.12176037,
+ 22.43566393,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045144,
+ "name": "中國人民解放軍駐澳門部隊總部大樓",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.193611",
+ "lng": "113.550722",
+ "radius": 107,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.550722,
+ 22.193611,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002498,
+ "name": "GFS Kai Tak Division",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "22.30337",
+ "lng": "114.21573",
+ "radius": 250,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.21573,
+ 22.30337,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045092,
+ "name": "澳門特區政府總部",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.19",
+ "lng": "113.537917",
+ "radius": 98,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.537917,
+ 22.19,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045115,
+ "name": "氹仔碼頭直昇機場",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.166063",
+ "lng": "113.577222",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.577222,
+ 22.166063,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002499,
+ "name": "GFS HKCEC Heliport",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "22.28507",
+ "lng": "114.17429",
+ "radius": 250,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.17429,
+ 22.28507,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045108,
+ "name": "立法會大樓",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.183472",
+ "lng": "113.54",
+ "radius": 50,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.54,
+ 22.183472,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045121,
+ "name": "終審法院",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.183083",
+ "lng": "113.540472",
+ "radius": 50,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.540472,
+ 22.183083,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33332,
+ "name": "Pik Uk Correctional Institution",
+ "country": "HK",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "22.339408",
+ "lng": "114.245705",
+ "radius": 200,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.245705,
+ 22.339408,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 10690,
+ "name": "Shek Pik prison",
+ "country": "HK",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "22.224292",
+ "lng": "113.894824",
+ "radius": 161,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.894824,
+ 22.224292,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001363,
+ "name": "Zhuhai Airport",
+ "country": "CN",
+ "city": "Zhuhai",
+ "height": 500,
+ "level": 2,
+ "lat": "22.007436",
+ "lng": "113.373279",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.373279,
+ 22.007436,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045113,
+ "name": "澳門外港直昇機場",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.196972",
+ "lng": "113.559167",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.559167,
+ 22.196972,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33333,
+ "name": "Siu Lam Psychiatric Centre",
+ "country": "HK",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "22.365361",
+ "lng": "114.017218",
+ "radius": 150,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.017218,
+ 22.365361,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001398,
+ "name": "Shenzhen Bao'an International Airport",
+ "country": "CN",
+ "city": "Shenzhen",
+ "height": 500,
+ "level": 2,
+ "lat": "22.639019",
+ "lng": "113.811048",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.811048,
+ 22.639019,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 10688,
+ "name": "Lai Chi Kok Reception Centre",
+ "country": "HK",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "22.337989",
+ "lng": "114.143261",
+ "radius": 165,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.143261,
+ 22.337989,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045070,
+ "name": "中華人民共和國外交部駐澳門特別行政區特派員公署",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.195889",
+ "lng": "113.553111",
+ "radius": 102,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.553111,
+ 22.195889,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045077,
+ "name": "少年感化院",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.118694",
+ "lng": "113.554472",
+ "radius": 65,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.554472,
+ 22.118694,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045098,
+ "name": "澳門中聯辦接待處",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.186778",
+ "lng": "113.536056",
+ "radius": 70,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.536056,
+ 22.186778,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33376,
+ "name": "招商街道桃花园导航台禁飞区",
+ "country": "CN",
+ "city": "深圳市",
+ "height": 0,
+ "level": 2,
+ "lat": "22.498333",
+ "lng": "113.901667",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.901667,
+ 22.498333,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045139,
+ "name": "中央人民政府駐澳軍營",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.151722",
+ "lng": "113.557194",
+ "radius": 189,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.557194,
+ 22.151722,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33375,
+ "name": "中山市南朗镇导航台禁飞区",
+ "country": "CN",
+ "city": "中山市",
+ "height": 0,
+ "level": 2,
+ "lat": "22.53",
+ "lng": "113.563333",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.563333,
+ 22.53,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045116,
+ "name": "禮賓府",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.184917",
+ "lng": "113.534111",
+ "radius": 74,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.534111,
+ 22.184917,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009608,
+ "name": "Hong Kong International Airport",
+ "country": "HK",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "22.304158",
+ "lng": "113.923856",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.923856,
+ 22.304158,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33334,
+ "name": "Tai Lam Centre for Women",
+ "country": "HK",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "22.371691",
+ "lng": "114.024817",
+ "radius": 150,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.024817,
+ 22.371691,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40042430,
+ "name": "香港迪士尼乐园",
+ "country": "HK",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.315434823",
+ "lng": "114.045560083",
+ "radius": 2500,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.045560083,
+ 22.315434823,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 10685,
+ "name": "Stanley Prison",
+ "country": "HK",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "22.211643",
+ "lng": "114.218953",
+ "radius": 238,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.218953,
+ 22.211643,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045086,
+ "name": "澳門自來水廠",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.211361",
+ "lng": "113.540472",
+ "radius": 109,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.540472,
+ 22.211361,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 33377,
+ "name": "大亚湾核电站",
+ "country": "CN",
+ "city": "深圳市",
+ "height": 0,
+ "level": 2,
+ "lat": "22.598333",
+ "lng": "114.5416667",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.5416667,
+ 22.598333,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045114,
+ "name": "國際金融中心直昇機坪",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.167244",
+ "lng": "113.529791",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.529791,
+ 22.167244,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045106,
+ "name": "橫琴梧桐樹直昇機坪",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.147611",
+ "lng": "113.5445",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.5445,
+ 22.147611,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045085,
+ "name": "路環監獄",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.119444",
+ "lng": "113.554972",
+ "radius": 102,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.554972,
+ 22.119444,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045074,
+ "name": "路環發電廠",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.137775",
+ "lng": "113.578611",
+ "radius": 160,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.578611,
+ 22.137775,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045134,
+ "name": "小潭山導航台",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.161556",
+ "lng": "113.548611",
+ "radius": 107,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.548611,
+ 22.161556,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045099,
+ "name": "九澳油庫",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.211361",
+ "lng": "113.540472",
+ "radius": 375,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.540472,
+ 22.211361,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 10706,
+ "name": "Shek Kong Barracks",
+ "country": "HK",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "22.43727",
+ "lng": "114.0804",
+ "radius": 989,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.0804,
+ 22.43727,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045125,
+ "name": "中央人民政府駐澳門特別行政區聯絡辦公室",
+ "country": "MO",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.194472",
+ "lng": "113.549528",
+ "radius": 82,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.549528,
+ 22.194472,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001392,
+ "name": "ShenZhen NanTou Heliport",
+ "country": "CN",
+ "city": "ShenZhen",
+ "height": 500,
+ "level": 2,
+ "lat": "22.566573",
+ "lng": "113.924541",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 113.924541,
+ 22.566573,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000065,
+ "name": "岭澳核电站",
+ "country": "CN",
+ "city": "",
+ "height": 0,
+ "level": 2,
+ "lat": "22.60684",
+ "lng": "114.551182",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 114.551182,
+ 22.60684,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000310,
+ "name": "高雄市應變中心直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "22.593583",
+ "lng": "120.307278",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.307278,
+ 22.593583,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001402,
+ "name": "Kaohsiung International Airport",
+ "country": "TW",
+ "city": "Kaohsiung City",
+ "height": 500,
+ "level": 2,
+ "lat": "22.577094",
+ "lng": "120.350183",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.350183,
+ 22.577094,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 10059,
+ "name": "Pingtung Airport",
+ "country": "TW",
+ "city": "NULL",
+ "height": 0,
+ "level": 2,
+ "lat": "22.691635",
+ "lng": "120.466101",
+ "radius": 3282,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.466101,
+ 22.691635,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000305,
+ "name": "國軍高雄總醫院屋頂直昇機飛行場",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "22.625972",
+ "lng": "120.339806",
+ "radius": 1000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.339806,
+ 22.625972,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001362,
+ "name": "Lanyu Airport",
+ "country": "TW",
+ "city": "Orchid Island",
+ "height": 500,
+ "level": 2,
+ "lat": "22.029094",
+ "lng": "121.534192",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 121.534192,
+ 22.029094,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009854,
+ "name": "Kengtung Airport",
+ "country": "MM",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "21.301628",
+ "lng": "99.635835",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 99.635835,
+ 21.301628,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008750,
+ "name": "Dien Bien Phu Airport",
+ "country": "VN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "21.397634",
+ "lng": "103.005681",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 103.005681,
+ 21.397634,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001444,
+ "name": "Beihai Airport",
+ "country": "CN",
+ "city": "Beihai",
+ "height": 500,
+ "level": 2,
+ "lat": "21.539608",
+ "lng": "109.293216",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 109.293216,
+ 21.539608,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40002173,
+ "name": "Zhanjiang Wuchuan Airport",
+ "country": "CN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "21.48541468",
+ "lng": "110.59282232",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 110.59282232,
+ 21.48541468,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40045007,
+ "name": "RCR45-2(第三核能發電廠)",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "21.960231",
+ "lng": "120.750786",
+ "radius": 770,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.750786,
+ 21.960231,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40000109,
+ "name": "RCR45(第三核能發電廠)",
+ "country": "TW",
+ "city": "",
+ "height": 0,
+ "level": 1,
+ "lat": "21.95",
+ "lng": "120.75",
+ "radius": 3704,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.75,
+ 21.95,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001509,
+ "name": "Hengchun Airport",
+ "country": "TW",
+ "city": "Hengchung",
+ "height": 500,
+ "level": 2,
+ "lat": "22.040106",
+ "lng": "120.730377",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 120.730377,
+ 22.040106,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009831,
+ "name": "Mong Hsat Airport",
+ "country": "MM",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "20.51816",
+ "lng": "99.258483",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 99.258483,
+ 20.51816,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008410,
+ "name": "Luang Namtha Airport",
+ "country": "LA",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "20.96155",
+ "lng": "101.403045",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101.403045,
+ 20.96155,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010804,
+ "name": "Oudomsay Airport",
+ "country": "LA",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "20.682032",
+ "lng": "101.99318",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101.99318,
+ 20.682032,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 31513,
+ "name": "Vietnam government and Hoan Kiam Lake",
+ "country": "VN",
+ "city": "Ba Đình",
+ "height": 0,
+ "level": 2,
+ "lat": "21.033675",
+ "lng": "105.836924",
+ "radius": 2185,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 105.836924,
+ 21.033675,
+ 0.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008224,
+ "name": "Noi Bai International Airport",
+ "country": "VN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "21.218796",
+ "lng": "105.803474",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 105.803474,
+ 21.218796,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009268,
+ "name": "Cat Bi International Airport",
+ "country": "VN",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "20.820612",
+ "lng": "106.725592",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 106.725592,
+ 20.820612,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60010793,
+ "name": "Tachileik Airport",
+ "country": "MM",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "20.4853",
+ "lng": "99.934983",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 99.934983,
+ 20.4853,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60008332,
+ "name": "Luang Phabang International Airport",
+ "country": "LA",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "19.905082",
+ "lng": "102.167272",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 102.167272,
+ 19.905082,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 60009273,
+ "name": "Sayaboury Airport",
+ "country": "LA",
+ "city": "",
+ "height": 500,
+ "level": 2,
+ "lat": "19.24351",
+ "lng": "101.709457",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101.709457,
+ 19.24351,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001452,
+ "name": "Haikou Meilan International Airport",
+ "country": "CN",
+ "city": "Haikou",
+ "height": 500,
+ "level": 2,
+ "lat": "19.938354",
+ "lng": "110.461881",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 110.461881,
+ 19.938354,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001318,
+ "name": "博鳌",
+ "country": "CN",
+ "city": "琼海",
+ "height": 500,
+ "level": 2,
+ "lat": "19.1416666666667",
+ "lng": "110.454166666667",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 110.454166666666666,
+ 19.141666666666652,
+ 500.0
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "area_id": 40001375,
+ "name": "Sanya Phoenix International Airport",
+ "country": "CN",
+ "city": "Sanya",
+ "height": 500,
+ "level": 2,
+ "lat": "18.303701",
+ "lng": "109.412666",
+ "radius": 50000,
+ "color": "",
+ "circle_from_point": 0
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 109.412666,
+ 18.303701,
+ 500.0
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/baseData/uom-fly-zone.bin-B8O-S8Cs.gzip b/baseData/uom-fly-zone.bin-B8O-S8Cs.gzip
new file mode 100644
index 0000000..3beb081
--- /dev/null
+++ b/baseData/uom-fly-zone.bin-B8O-S8Cs.gzip
Binary files differ
diff --git "a/baseData/\346\274\224\347\244\272.xlsx" "b/baseData/\346\274\224\347\244\272.xlsx"
new file mode 100644
index 0000000..5aa5230
--- /dev/null
+++ "b/baseData/\346\274\224\347\244\272.xlsx"
Binary files differ
diff --git "a/baseData/\347\224\260\345\242\251-\347\226\253\346\234\250\350\257\206\345\210\253\357\274\210\345\213\277\345\210\240\357\274\211.kmz" "b/baseData/\347\224\260\345\242\251-\347\226\253\346\234\250\350\257\206\345\210\253\357\274\210\345\213\277\345\210\240\357\274\211.kmz"
new file mode 100644
index 0000000..34f8ab6
--- /dev/null
+++ "b/baseData/\347\224\260\345\242\251-\347\226\253\346\234\250\350\257\206\345\210\253\357\274\210\345\213\277\345\210\240\357\274\211.kmz"
Binary files differ
diff --git a/capabilities/01-object-detection/README.md b/capabilities/01-object-detection/README.md
index 8a90073..4bb47f7 100644
--- a/capabilities/01-object-detection/README.md
+++ b/capabilities/01-object-detection/README.md
@@ -1,6 +1,101 @@
-# Object Detection
+# 地物目标检测
-- 输入:无人机照片或视频帧。
-- 输出:目标框、类别、置信度和位置。
-- 首个 Demo:10–30 张图片的预训练模型推理与 JSON 导出。
+## 目标
+先做一个可在本机 CPU 运行的预训练模型 Demo:输入无人机照片,输出带目标框、类别和置信度的标注图片,以及结构化 JSON。第二阶段再支持正射 GeoTIFF 切片,并把像素坐标转换为经纬度后输出 GeoJSON,便于接入现有 Cesium 地图和算法管理模块。
+
+本能力使用 [opengeos/geoai](https://github.com/opengeos/geoai) 发布的 `geoai-py` 作为 GeoAI 工作流层。它负责把地理影像处理、AI 推理、地理结果和可视化串起来;PyTorch、Rasterio、GeoPandas 等仍是它和本 Demo 的底层运行依赖。
+
+## 当前范围
+
+首版优先识别人员、车辆。`geoai-py` 自带的 NWPU-VHR10 预训练模型面向航空影像,并提供统一的 `vehicle` 类,但不包含人员和树木;因此当前采用“切片 YOLO 检人员 + GeoAI NWPU 检车辆”的分支方案。树木通常需要专门的树冠/单木数据集和模型微调。
+
+## 需要你准备的内容
+
+1. **目标清单**:请先确定最关心的 3–5 类目标,例如人员、车辆、挖掘机、船只、建筑物。
+2. **样例图片**:准备 10–30 张无人机 JPG/PNG,尽量包含不同高度、角度、天气和目标大小。不要使用涉密或未经授权的照片。
+3. **正射样例(第二阶段)**:准备 1–2 份 GeoTIFF,并记录坐标系、分辨率和拍摄时间。
+4. **输出接入约定**:确认结果需要保存为 JSON/GeoJSON,还是还要生成 Cesium 可加载的 GeoJSON/KML。
+5. **验收样例**:从图片中挑选 5 张作为固定验收集,不参与后续调参。
+
+## 目录约定
+
+```text
+01-object-detection/
+|-- README.md
+|-- requirements.txt
+|-- src/ # 推理和结果转换代码
+|-- scripts/ # 一键运行脚本
+|-- tests/ # 单元测试
+shared/
+|-- data/raw/01-object-detection/ # 原始图片,只存本地
+|-- data/processed/01-object-detection/ # 切片或预处理结果
+|-- models/01-object-detection/ # 模型权重,不提交 Git
+`-- outputs/01-object-detection/ # 标注图、JSON、GeoJSON
+```
+
+## 环境与硬件
+
+- 使用 Python 3.12 专用环境:`.venvs/01-object-detection`。
+- 当前电脑是 AMD RX 590 GME 8GB,不具备 NVIDIA CUDA;首版使用 CPU 推理。
+- 64GB 内存足够运行 10–30 张图片的 Demo。大尺寸正射影像需要切片,不能一次性全部载入内存。
+- 模型权重和 Python 包必须记录版本与许可证,产品使用前检查是否允许商用。
+- `geoai-py` 项目本身为 MIT 许可证;它依赖的模型权重、数据集和第三方库仍需分别核查许可证。`ultralytics` 等可选底层组件的许可证不能由 GeoAI 的 MIT 许可证自动覆盖。
+
+## 预期输入输出
+
+输入:JPG/PNG 图片,或第二阶段的 GeoTIFF。
+
+输出:
+
+- `annotated/`:画出检测框和标签的图片;
+- `detections.json`:图片名、类别、置信度、像素框坐标;
+- `detections.geojson`:正射影像场景下的地理框或中心点;
+- `run_metadata.json`:模型版本、阈值、运行时间、设备(CPU/DirectML)。
+
+## 首版验收标准
+
+- 能通过命令行处理单张图片和一个图片目录;
+- 输出图片能看到检测框、类别和置信度;
+- JSON 字段固定且可被前端读取;
+- 对固定 5 张验收图片,结果可重复生成;
+- 无 GPU 时能正常运行,并对超大图片给出清晰错误提示或自动缩放;
+- 运行日志包含模型、置信度阈值、输入数量、输出路径和耗时。
+
+## 预计开发顺序
+
+1. 创建专用环境并安装 PyTorch、torchvision、Ultralytics;
+2. 下载并登记一个允许研究/商用核查的预训练权重;
+3. 完成单图推理;
+4. 完成目录批处理、标注图和 JSON 导出;
+5. 用你的无人机图片验证并调整阈值;
+6. 增加 GeoTIFF 切片和 GeoJSON 坐标转换;
+7. 最后再做 FastAPI 接口和现有前端接入。
+
+## 当前 Demo 运行命令
+
+在项目根目录执行人员/通用车辆切片基线:
+
+```powershell
+.\.venvs\01-object-detection\Scripts\python.exe .\capabilities\01-object-detection\run_detection.py
+```
+
+默认使用 CPU、`yolo11n.pt`、1024 像素切片、20% 重叠和置信度阈值 0.20。
+结果写入 `shared/outputs/01-object-detection/`。
+
+执行 GeoAI NWPU-VHR10 航拍车辆检测:
+
+```powershell
+.\.venvs\01-object-detection\Scripts\python.exe .\capabilities\01-object-detection\run_geoai_vehicle_detection.py
+```
+
+该脚本默认使用 CPU、512 像素滑窗、128 像素重叠和置信度阈值 0.30,结果写入
+`shared/outputs/01-object-detection/geoai-vehicles/`。首次运行会自动下载约 98 MB
+的模型权重。
+
+## 当前验证结论
+
+- `DJI_20260810092727_0001_V_10.jpeg`:通用 YOLO 检出 2–3 辆车;GeoAI NWPU 检出 33 个车辆候选,CPU 推理约 90 秒,明显改善俯视小车辆漏检。
+- `DJI_20260713102047_0001_V_19.jpeg`:切片 YOLO 检出多个人员,但两种模型均未检出右上角红色汽车;该近景车顶外观仍需要更匹配的航拍数据或本项目样本微调。
+- NWPU 会产生少量其他航拍类别误检,正式 Demo 只保留 `vehicle`;脚本还会过滤被高置信度整车框大部分包含的重复局部框。
+- 树木不属于当前两个模型的有效类别,必须单独建设树冠检测/分割分支。
diff --git a/capabilities/01-object-detection/requirements.txt b/capabilities/01-object-detection/requirements.txt
index 5a1c47e..a5badde 100644
--- a/capabilities/01-object-detection/requirements.txt
+++ b/capabilities/01-object-detection/requirements.txt
@@ -1,5 +1,9 @@
-r ../../requirements/base.txt
+# GeoAI workflow layer: geospatial image preparation, detection helpers,
+# georeferenced output and visualization utilities.
+geoai-py>=0.42,<0.43
torch>=2.4,<3
torchvision>=0.19,<1
ultralytics>=8.3,<9
-
+rasterio>=1.4,<2
+geopandas>=1,<2
diff --git a/capabilities/01-object-detection/run_detection.py b/capabilities/01-object-detection/run_detection.py
new file mode 100644
index 0000000..e337b07
--- /dev/null
+++ b/capabilities/01-object-detection/run_detection.py
@@ -0,0 +1,256 @@
+"""Run the first GeoAI object-detection baseline on drone images.
+
+This baseline uses the opengeos/geoai environment plus a general-purpose
+Ultralytics model. It intentionally keeps georeferenced GeoTIFF processing for
+the next stage, because the current JPEGs do not carry usable GPS metadata.
+"""
+
+from __future__ import annotations
+
+import argparse
+import json
+import os
+import sys
+import tempfile
+import time
+from datetime import UTC, datetime
+from pathlib import Path
+from typing import Any
+
+from PIL import Image
+
+
+IMAGE_SUFFIXES = {".jpg", ".jpeg", ".png"}
+COCO_TARGET_CLASS_IDS = [0, 1, 2, 3, 5, 7]
+
+
+def parse_args() -> argparse.Namespace:
+ root = Path(__file__).resolve().parents[2]
+ default_input = root / "shared" / "data" / "raw" / "01-object-detection"
+ default_output = root / "shared" / "outputs" / "01-object-detection"
+ parser = argparse.ArgumentParser(description="Detect objects in drone images.")
+ parser.add_argument("--input", type=Path, default=default_input)
+ parser.add_argument("--output", type=Path, default=default_output)
+ parser.add_argument("--model", default="yolo11n.pt", help="Ultralytics model name or path.")
+ parser.add_argument("--confidence", type=float, default=0.20)
+ parser.add_argument("--image-size", type=int, default=1024, help="Model input size for each tile.")
+ parser.add_argument("--tile-size", type=int, default=1024, help="Pixel size of the sliding detection window.")
+ parser.add_argument("--tile-overlap", type=float, default=0.20, help="Overlap ratio between adjacent windows.")
+ return parser.parse_args()
+
+
+def load_image_paths(input_dir: Path) -> tuple[list[Path], list[dict[str, str]]]:
+ paths: list[Path] = []
+ skipped: list[dict[str, str]] = []
+ candidates = [input_dir] if input_dir.is_file() else sorted(input_dir.iterdir())
+ for path in candidates:
+ if not path.is_file() or path.suffix.lower() not in IMAGE_SUFFIXES:
+ continue
+ try:
+ with Image.open(path) as image:
+ image.verify()
+ if image.format == "MPO":
+ skipped.append({"file": path.name, "reason": "MPO is not supported in baseline"})
+ continue
+ except Exception as exc: # pragma: no cover - depends on source files
+ skipped.append({"file": path.name, "reason": f"unreadable: {exc}"})
+ continue
+ paths.append(path)
+ return paths, skipped
+
+
+def tile_starts(length: int, tile_size: int, overlap: float) -> list[int]:
+ if not 0 <= overlap < 1:
+ raise ValueError("tile-overlap must be between 0 and 1")
+ if length <= tile_size:
+ return [0]
+ stride = max(1, int(tile_size * (1 - overlap)))
+ starts = list(range(0, length - tile_size + 1, stride))
+ last = length - tile_size
+ if starts[-1] != last:
+ starts.append(last)
+ return starts
+
+
+def intersection_over_union(box_a: list[float], box_b: list[float]) -> float:
+ left = max(box_a[0], box_b[0])
+ top = max(box_a[1], box_b[1])
+ right = min(box_a[2], box_b[2])
+ bottom = min(box_a[3], box_b[3])
+ intersection = max(0.0, right - left) * max(0.0, bottom - top)
+ area_a = max(0.0, box_a[2] - box_a[0]) * max(0.0, box_a[3] - box_a[1])
+ area_b = max(0.0, box_b[2] - box_b[0]) * max(0.0, box_b[3] - box_b[1])
+ union = area_a + area_b - intersection
+ return intersection / union if union else 0.0
+
+
+def intersection_over_smaller(box_a: list[float], box_b: list[float]) -> float:
+ left = max(box_a[0], box_b[0])
+ top = max(box_a[1], box_b[1])
+ right = min(box_a[2], box_b[2])
+ bottom = min(box_a[3], box_b[3])
+ intersection = max(0.0, right - left) * max(0.0, bottom - top)
+ area_a = max(0.0, box_a[2] - box_a[0]) * max(0.0, box_a[3] - box_a[1])
+ area_b = max(0.0, box_b[2] - box_b[0]) * max(0.0, box_b[3] - box_b[1])
+ smaller_area = min(area_a, area_b)
+ return intersection / smaller_area if smaller_area else 0.0
+
+
+def class_aware_nms(
+ detections: list[dict[str, Any]],
+ iou_threshold: float = 0.50,
+ containment_threshold: float = 0.80,
+) -> list[dict[str, Any]]:
+ kept: list[dict[str, Any]] = []
+ for candidate in sorted(detections, key=lambda item: item["confidence"], reverse=True):
+ if all(
+ candidate["class_id"] != existing["class_id"]
+ or (
+ intersection_over_union(candidate["bbox_xyxy"], existing["bbox_xyxy"]) < iou_threshold
+ and intersection_over_smaller(candidate["bbox_xyxy"], existing["bbox_xyxy"])
+ < containment_threshold
+ )
+ for existing in kept
+ ):
+ kept.append(candidate)
+ return kept
+
+
+def predict_tiled(model: Any, image_path: Path, args: argparse.Namespace, np: Any) -> tuple[list[dict[str, Any]], int, int]:
+ with Image.open(image_path) as source:
+ image = source.convert("RGB")
+ width, height = image.size
+ detections: list[dict[str, Any]] = []
+ names: dict[int, str] = {}
+ for y0 in tile_starts(height, args.tile_size, args.tile_overlap):
+ for x0 in tile_starts(width, args.tile_size, args.tile_overlap):
+ tile = image.crop((x0, y0, min(x0 + args.tile_size, width), min(y0 + args.tile_size, height)))
+ result = model.predict(
+ source=np.asarray(tile),
+ device="cpu",
+ imgsz=args.image_size,
+ conf=args.confidence,
+ classes=COCO_TARGET_CLASS_IDS,
+ max_det=100,
+ verbose=False,
+ )[0]
+ names = result.names
+ if result.boxes is None:
+ continue
+ for box in result.boxes:
+ class_id = int(box.cls.item())
+ local_box = [float(value) for value in box.xyxy[0].tolist()]
+ detections.append(
+ {
+ "class_id": class_id,
+ "class_name": names[class_id],
+ "confidence": round(float(box.conf.item()), 4),
+ "bbox_xyxy": [
+ round(local_box[0] + x0, 2),
+ round(local_box[1] + y0, 2),
+ round(local_box[2] + x0, 2),
+ round(local_box[3] + y0, 2),
+ ],
+ }
+ )
+ return class_aware_nms(detections), width, height
+
+
+def draw_detections(image_path: Path, detections: list[dict[str, Any]], output_path: Path) -> None:
+ import cv2
+ import numpy as np
+
+ canvas = cv2.cvtColor(np.asarray(Image.open(image_path).convert("RGB")), cv2.COLOR_RGB2BGR)
+ for detection in detections:
+ x1, y1, x2, y2 = [int(round(value)) for value in detection["bbox_xyxy"]]
+ label = f"{detection['class_name']} {detection['confidence']:.2f}"
+ cv2.rectangle(canvas, (x1, y1), (x2, y2), (255, 80, 0), 4)
+ cv2.putText(canvas, label, (x1, max(30, y1 - 8)), cv2.FONT_HERSHEY_SIMPLEX, 1.0, (255, 80, 0), 2)
+ cv2.imwrite(str(output_path), canvas)
+
+
+def main() -> int:
+ args = parse_args()
+ input_dir = args.input.resolve()
+ output_dir = args.output.resolve()
+ annotated_dir = output_dir / "annotated"
+ annotated_dir.mkdir(parents=True, exist_ok=True)
+ cache_root = Path(tempfile.gettempdir()) / "geoai-object-detection"
+ os.environ.setdefault("YOLO_CONFIG_DIR", str(cache_root / "ultralytics"))
+ os.environ.setdefault("MPLCONFIGDIR", str(cache_root / "matplotlib"))
+ if not input_dir.exists():
+ print(f"Input directory does not exist: {input_dir}", file=sys.stderr)
+ return 2
+
+ image_paths, skipped = load_image_paths(input_dir)
+ if not image_paths:
+ print("No supported images found.", file=sys.stderr)
+ return 2
+
+ # Imports happen after argument validation so the CLI can explain path
+ # mistakes without requiring the heavyweight ML stack.
+ import geoai
+ import numpy as np
+ import torch
+ import ultralytics
+ from ultralytics import YOLO
+
+ started = time.perf_counter()
+ model = YOLO(args.model)
+ detections: list[dict[str, Any]] = []
+ for image_path in image_paths:
+ image_detections, width, height = predict_tiled(model, image_path, args, np)
+ annotated_path = annotated_dir / image_path.name
+ draw_detections(image_path, image_detections, annotated_path)
+ detections.append(
+ {
+ "file": image_path.name,
+ "annotated_file": str(annotated_path.relative_to(output_dir)),
+ "width": width,
+ "height": height,
+ "detections": image_detections,
+ }
+ )
+
+ elapsed = round(time.perf_counter() - started, 3)
+ (output_dir / "detections.json").write_text(
+ json.dumps({"images": detections}, ensure_ascii=False, indent=2), encoding="utf-8"
+ )
+ metadata = {
+ "created_at": datetime.now(UTC).isoformat(),
+ "geoai_package": getattr(geoai, "__version__", "unknown"),
+ "ultralytics": ultralytics.__version__,
+ "torch": torch.__version__,
+ "device": "cpu",
+ "cuda_available": bool(torch.cuda.is_available()),
+ "model": args.model,
+ "confidence": args.confidence,
+ "image_size": args.image_size,
+ "tile_size": args.tile_size,
+ "tile_overlap": args.tile_overlap,
+ "merge_iou_threshold": 0.50,
+ "merge_containment_threshold": 0.80,
+ "target_class_ids": COCO_TARGET_CLASS_IDS,
+ "target_class_note": "COCO person, bicycle, car, motorcycle, bus and truck; tree is not a COCO class.",
+ "input_dir": str(input_dir),
+ "processed_images": len(image_paths),
+ "skipped_images": skipped,
+ "detection_count": sum(len(item["detections"]) for item in detections),
+ "elapsed_seconds": elapsed,
+ "notes": [
+ "This is a baseline for people and common vehicle classes.",
+ "The default COCO model does not provide a tree class.",
+ "JPEG inputs have no usable GPS metadata; GeoJSON is deferred to GeoTIFF stage.",
+ ],
+ }
+ (output_dir / "run_metadata.json").write_text(
+ json.dumps(metadata, ensure_ascii=False, indent=2), encoding="utf-8"
+ )
+ print(f"Processed {len(image_paths)} images; detections={metadata['detection_count']}; elapsed={elapsed}s")
+ print(f"Annotated images: {annotated_dir}")
+ print(f"JSON: {output_dir / 'detections.json'}")
+ return 0
+
+
+if __name__ == "__main__":
+ raise SystemExit(main())
diff --git a/capabilities/01-object-detection/run_geoai_vehicle_detection.py b/capabilities/01-object-detection/run_geoai_vehicle_detection.py
new file mode 100644
index 0000000..0ea2144
--- /dev/null
+++ b/capabilities/01-object-detection/run_geoai_vehicle_detection.py
@@ -0,0 +1,220 @@
+"""Detect aerial vehicles with the pretrained model bundled by geoai-py."""
+
+from __future__ import annotations
+
+import argparse
+import json
+import os
+import sys
+import tempfile
+import time
+from collections import Counter
+from datetime import UTC, datetime
+from pathlib import Path
+from typing import Any
+
+from PIL import Image
+
+
+IMAGE_SUFFIXES = {".jpg", ".jpeg", ".png", ".tif", ".tiff"}
+VEHICLE_CLASS_ID = 10
+CONTAINMENT_THRESHOLD = 0.80
+
+
+def parse_args() -> argparse.Namespace:
+ root = Path(__file__).resolve().parents[2]
+ parser = argparse.ArgumentParser(description="Detect vehicles in aerial images with geoai-py.")
+ parser.add_argument(
+ "--input",
+ type=Path,
+ default=root / "shared" / "data" / "raw" / "01-object-detection",
+ )
+ parser.add_argument(
+ "--output",
+ type=Path,
+ default=root / "shared" / "outputs" / "01-object-detection" / "geoai-vehicles",
+ )
+ parser.add_argument("--confidence", type=float, default=0.30)
+ parser.add_argument("--window-size", type=int, default=512)
+ parser.add_argument("--overlap", type=int, default=128)
+ parser.add_argument("--nms-threshold", type=float, default=0.30)
+ parser.add_argument("--batch-size", type=int, default=4)
+ return parser.parse_args()
+
+
+def load_image_paths(input_path: Path) -> tuple[list[Path], list[dict[str, str]]]:
+ candidates = [input_path] if input_path.is_file() else sorted(input_path.iterdir())
+ paths: list[Path] = []
+ skipped: list[dict[str, str]] = []
+ for path in candidates:
+ if not path.is_file() or path.suffix.lower() not in IMAGE_SUFFIXES:
+ continue
+ try:
+ with Image.open(path) as image:
+ image.verify()
+ if image.format == "MPO":
+ skipped.append({"file": path.name, "reason": "MPO is not supported"})
+ continue
+ except Exception as exc:
+ skipped.append({"file": path.name, "reason": f"unreadable: {exc}"})
+ continue
+ paths.append(path)
+ return paths, skipped
+
+
+def intersection_over_smaller(box_a: list[float], box_b: list[float]) -> float:
+ left = max(box_a[0], box_b[0])
+ top = max(box_a[1], box_b[1])
+ right = min(box_a[2], box_b[2])
+ bottom = min(box_a[3], box_b[3])
+ intersection = max(0.0, right - left) * max(0.0, bottom - top)
+ area_a = max(0.0, box_a[2] - box_a[0]) * max(0.0, box_a[3] - box_a[1])
+ area_b = max(0.0, box_b[2] - box_b[0]) * max(0.0, box_b[3] - box_b[1])
+ smaller_area = min(area_a, area_b)
+ return intersection / smaller_area if smaller_area else 0.0
+
+
+def serializable_vehicle_detections(detections: list[dict[str, Any]]) -> list[dict[str, Any]]:
+ vehicles: list[dict[str, Any]] = []
+ for detection in sorted(detections, key=lambda item: float(item["score"]), reverse=True):
+ if int(detection["label"]) != VEHICLE_CLASS_ID:
+ continue
+ box = [round(float(value), 2) for value in detection["box"]]
+ if any(
+ intersection_over_smaller(box, existing["bbox_xyxy"]) >= CONTAINMENT_THRESHOLD
+ for existing in vehicles
+ ):
+ continue
+ vehicles.append(
+ {
+ "class_id": VEHICLE_CLASS_ID,
+ "class_name": "vehicle",
+ "confidence": round(float(detection["score"]), 4),
+ "bbox_xyxy": box,
+ }
+ )
+ return vehicles
+
+
+def draw_detections(image_path: Path, detections: list[dict[str, Any]], output_path: Path) -> None:
+ import cv2
+ import numpy as np
+
+ canvas = cv2.cvtColor(np.asarray(Image.open(image_path).convert("RGB")), cv2.COLOR_RGB2BGR)
+ for detection in detections:
+ x1, y1, x2, y2 = [int(round(value)) for value in detection["bbox_xyxy"]]
+ label = f"vehicle {detection['confidence']:.2f}"
+ cv2.rectangle(canvas, (x1, y1), (x2, y2), (0, 140, 255), 4)
+ cv2.putText(
+ canvas,
+ label,
+ (x1, max(30, y1 - 8)),
+ cv2.FONT_HERSHEY_SIMPLEX,
+ 1.0,
+ (0, 140, 255),
+ 2,
+ )
+ cv2.imwrite(str(output_path), canvas)
+
+
+def main() -> int:
+ args = parse_args()
+ input_path = args.input.resolve()
+ output_dir = args.output.resolve()
+ annotated_dir = output_dir / "annotated"
+ raster_dir = output_dir / "rasters"
+ annotated_dir.mkdir(parents=True, exist_ok=True)
+ raster_dir.mkdir(parents=True, exist_ok=True)
+
+ cache_root = Path(tempfile.gettempdir()) / "geoai-object-detection"
+ os.environ.setdefault("MPLCONFIGDIR", str(cache_root / "matplotlib"))
+
+ if not input_path.exists():
+ print(f"Input does not exist: {input_path}", file=sys.stderr)
+ return 2
+
+ image_paths, skipped = load_image_paths(input_path)
+ if not image_paths:
+ print("No supported images found.", file=sys.stderr)
+ return 2
+
+ import geoai
+ import torch
+ from geoai.object_detect import NWPU_VHR10_CLASSES, multiclass_detection
+
+ started = time.perf_counter()
+ results: list[dict[str, Any]] = []
+ for image_path in image_paths:
+ raster_path = raster_dir / f"{image_path.stem}_instances.tif"
+ _, inference_seconds, raw_detections = multiclass_detection(
+ input_path=str(image_path),
+ output_path=str(raster_path),
+ window_size=args.window_size,
+ overlap=args.overlap,
+ confidence_threshold=args.confidence,
+ nms_threshold=args.nms_threshold,
+ batch_size=args.batch_size,
+ device=torch.device("cpu"),
+ )
+ vehicles = serializable_vehicle_detections(raw_detections)
+ annotated_path = annotated_dir / f"{image_path.stem}.jpg"
+ draw_detections(image_path, vehicles, annotated_path)
+ with Image.open(image_path) as image:
+ width, height = image.size
+ raw_counts = Counter(NWPU_VHR10_CLASSES[int(item["label"])] for item in raw_detections)
+ results.append(
+ {
+ "file": image_path.name,
+ "width": width,
+ "height": height,
+ "annotated_file": str(annotated_path.relative_to(output_dir)),
+ "instance_raster": str(raster_path.relative_to(output_dir)),
+ "inference_seconds": round(float(inference_seconds), 3),
+ "raw_class_counts": dict(raw_counts),
+ "detections": vehicles,
+ }
+ )
+ del raw_detections
+
+ elapsed = round(time.perf_counter() - started, 3)
+ (output_dir / "detections.json").write_text(
+ json.dumps({"images": results}, ensure_ascii=False, indent=2), encoding="utf-8"
+ )
+ metadata = {
+ "created_at": datetime.now(UTC).isoformat(),
+ "geoai_package": getattr(geoai, "__version__", "unknown"),
+ "device": "cpu",
+ "model": "giswqs/nwpu-vhr10-maskrcnn:best_model.pth",
+ "model_architecture": "Mask R-CNN ResNet-50 FPN",
+ "source_classes": NWPU_VHR10_CLASSES,
+ "kept_classes": ["vehicle"],
+ "confidence": args.confidence,
+ "window_size": args.window_size,
+ "overlap": args.overlap,
+ "nms_threshold": args.nms_threshold,
+ "containment_threshold": CONTAINMENT_THRESHOLD,
+ "batch_size": args.batch_size,
+ "processed_images": len(results),
+ "skipped_images": skipped,
+ "vehicle_count": sum(len(item["detections"]) for item in results),
+ "elapsed_seconds": elapsed,
+ "notes": [
+ "The NWPU-VHR10 vehicle class combines vehicle subtypes.",
+ "The model does not contain person or tree classes.",
+ "JPEG detections use pixel coordinates, not geographic coordinates.",
+ ],
+ }
+ (output_dir / "run_metadata.json").write_text(
+ json.dumps(metadata, ensure_ascii=False, indent=2), encoding="utf-8"
+ )
+ print(
+ f"Processed {len(results)} images; vehicles={metadata['vehicle_count']}; "
+ f"elapsed={elapsed}s"
+ )
+ print(f"Annotated images: {annotated_dir}")
+ print(f"JSON: {output_dir / 'detections.json'}")
+ return 0
+
+
+if __name__ == "__main__":
+ raise SystemExit(main())
diff --git a/capabilities/15-trajectory-analysis/README.md b/capabilities/15-trajectory-analysis/README.md
index 708e568..a206d9a 100644
--- a/capabilities/15-trajectory-analysis/README.md
+++ b/capabilities/15-trajectory-analysis/README.md
@@ -1,6 +1,120 @@
-# Trajectory Analysis
+# 轨迹分析与行为识别
-- 输入:带时间戳的无人机、车辆、人员或船舶轨迹。
-- 输出:偏航、越界、聚集、停留和轨迹类别。
-- 首个 Demo:规则检测加轨迹聚类。
+状态:首个 CPU Demo 已验证(2026-08-14)。
+## 能力边界
+
+当前 Demo 归为 **C(产品业务能力)**,不是 `geoai-py` 内置功能:
+
+- 产品实现用 GeoPandas、Shapely、PyProj 和 scikit-learn 完成轨迹度量、空间关系计算、DBSCAN 分组和规则判断。仅使用这些生态库、但没有实际调用 `geoai-py`,不能标为 B。
+- `geoai-py` 的准确角色是上游来源之一:其目标检测和地理结果导出可为跟踪系统提供观测,但 `geoai-py 0.42.0` 没有轨迹、目标跟踪或行为识别 API。本 Demo 运行时因此不安装或调用 `geoai-py`。
+
+未来若把 `geoai-py` 检测/导出、独立多目标跟踪器和本规则服务连成完整流水线,流水线可同时包含 A、B、C;当前已实现并验证的部分仍是 C。
+
+首版所称“行为识别”是可解释的时空规则,不是视频动作识别模型,也不负责把逐帧检测框关联成轨迹 ID。
+
+## Demo 契约
+
+输入是一个 `*.case.json` 清单,引用三类真实业务可导出的文件:
+
+1. 轨迹点 CSV:固定字段 `track_id,entity_type,timestamp,longitude,latitude`。
+2. 参考路线 GeoJSON:每条 `LineString` 带 `track_id`。
+3. 区域 GeoJSON:每个面带 `zone_id` 和 `zone_type`;首版识别 `restricted`。
+
+首版只接受带有效 CRS 的 WGS84 经纬度(`EPSG:4326`)。每条轨迹至少需要两个不同时间戳;同一轨迹的重复时间戳保留最后一条并在元数据中计数。
+
+仓库没有用户实测轨迹,因此 [generate_demo_inputs.py](./generate_demo_inputs.py) 会生成两组小型、可审计的合成代表样本:
+
+- `normal`:2 条连续移动且贴合参考路线的轨迹,预期无事件。
+- `difficult`:3 条乱序轨迹,含 1 条重复观测,以及可人工核对的停留、偏航、禁入区和双人聚集。
+
+生成数据位于 `shared/data/raw/15-trajectory-analysis/`,不会提交 Git。真实验证仍需用户提供同结构的脱敏轨迹。
+
+## 环境与运行
+
+```powershell
+# Python 3.12 隔离环境
+powershell -NoProfile -ExecutionPolicy Bypass -File .\scripts\setup.ps1 -Capability 15-trajectory-analysis
+
+$py = '.\.venvs\15-trajectory-analysis\Scripts\python.exe'
+
+# 第一次生成验收输入
+& $py .\capabilities\15-trajectory-analysis\generate_demo_inputs.py
+
+# 分析目录内的 normal.case.json 和 difficult.case.json
+& $py .\capabilities\15-trajectory-analysis\run_trajectory_analysis.py
+
+# 只分析一个用户清单;输出仍放在 <output>/<case_id>/
+& $py .\capabilities\15-trajectory-analysis\run_trajectory_analysis.py `
+ --input .\path\to\my.case.json `
+ --output .\shared\outputs\15-trajectory-analysis\my-run
+```
+
+脚本默认拒绝覆盖已有输入和结果。只有明确要替换此前运行时才传 `--overwrite`。
+
+## 规则与输出
+
+默认规则:
+
+| 事件 | 条件 |
+| --- | --- |
+| 停留 `stop` | 速度不高于 0.8 m/s,持续至少 60 秒 |
+| 偏航 `route_deviation` | 到参考路线距离大于 25 m,持续至少 20 秒 |
+| 禁入区 `restricted_zone` | 轨迹点落入 `restricted` 面 |
+| 聚集 `gathering` | 至少 2 条轨迹在 20 m 内,持续至少 30 秒 |
+
+清单可用 `thresholds` 对象覆盖上述阈值。相邻观测超过 60 秒时事件连续段会断开,避免把长时间数据缺失误算为持续行为。
+
+每个案例固定输出:
+
+| 文件 | 内容 |
+| --- | --- |
+| `trajectory_summary.csv` | 每条轨迹的时间、距离、速度、偏航比例、停留/禁入时长、聚类 ID 和行为标签 |
+| `events.json` | 固定事件字段、参与轨迹、起止时间、位置和规则细节 |
+| `trajectories.geojson` | WGS84 轨迹线及汇总属性 |
+| `events.geojson` | WGS84 事件点及事件属性 |
+| `analysis.png` | 轨迹、参考路线、区域和不同形状事件标记 |
+| `run_metadata.json` | Python/依赖版本、规则/模型、阈值、CPU、输入数、耗时、清洗数和限制 |
+
+DBSCAN 只对轨迹汇总特征做探索性分组;`cluster_id=-1` 表示没有足够相似轨迹形成簇,不代表异常已被确认。
+
+## 已测验收结果
+
+运行环境:Python 3.12.10、CPU;`pip check` 通过。目录级运行处理 2 个案例、5 条轨迹和 78 条去重后观测,总耗时约 2.8 秒。
+
+| 验收项 | 预期 | 实测 |
+| --- | --- | --- |
+| 正常样本 | 2 条轨迹,0 个事件 | 通过:2 条轨迹,0 个事件 |
+| 困难样本清洗 | 乱序可排序,删除 1 条重复时间观测 | 通过:删除 1 条 |
+| 困难样本行为 | 四类事件各至少 1 个 | 通过:停留、偏航、禁入区、聚集各 1 个 |
+| 失败处理 | 缺少必填 CSV 字段时退出码为 2,并指出字段 | 通过 |
+| 输出完整性 | 每个案例生成 6 个非空文件 | 通过 |
+| 视觉检查 | 正常/困难 PNG 非空,轨迹、区域和事件可区分 | 通过;两张图均为 1400 x 980 |
+
+自动验收:
+
+```powershell
+$py = '.\.venvs\15-trajectory-analysis\Scripts\python.exe'
+& $py -m unittest discover -s .\capabilities\15-trajectory-analysis\tests -v
+```
+
+## 许可证
+
+| 项目 | 当前记录 |
+| --- | --- |
+| `geoai-py 0.42.0` | MIT;仅为可选上游,本 Demo 环境未安装 |
+| pandas / GeoPandas / Shapely / scikit-learn | BSD 3-Clause 系列许可证 |
+| PyProj | MIT;同时需遵守其随附 PROJ 数据/组件许可 |
+| Matplotlib | Matplotlib License;随附字体等资产有各自许可证 |
+| Demo 数据 | 由本仓库脚本生成,无第三方数据集或模型权重 |
+| 预训练模型/权重 | 无 |
+
+以上是开发阶段记录,不等于已完成产品商用法务审查。
+
+## 已知限制与下一步
+
+- 合成样本只能验证程序逻辑,不能证明真实场景准确率;目前没有可报告的真实误报率和漏报率。
+- 聚集要求时间戳对齐,GPS 漂移、采样频率和轨迹断点会直接影响结果。
+- 偏航依赖可信参考路线;禁入区依赖有效区域数据;不同人员、车辆、船舶和无人机需要分别标定阈值。
+- 下一步应先选 1 个正常、1 个困难的脱敏实测轨迹,人工标注事件,再评估误报、漏报和阈值,而不是直接跑大目录。
+- 若输入来自无人机视频,还需在此能力之前引入独立的多目标跟踪器,并验证 ID 切换问题。
diff --git a/capabilities/15-trajectory-analysis/generate_demo_inputs.py b/capabilities/15-trajectory-analysis/generate_demo_inputs.py
new file mode 100644
index 0000000..213b108
--- /dev/null
+++ b/capabilities/15-trajectory-analysis/generate_demo_inputs.py
@@ -0,0 +1,197 @@
+"""Generate small, auditable trajectory-analysis demo inputs."""
+
+from __future__ import annotations
+
+import argparse
+import csv
+import json
+import math
+import sys
+from datetime import UTC, datetime, timedelta
+from pathlib import Path
+from typing import Any
+
+
+def parse_args() -> argparse.Namespace:
+ root = Path(__file__).resolve().parents[2]
+ parser = argparse.ArgumentParser(description="Generate trajectory demo inputs.")
+ parser.add_argument(
+ "--output",
+ type=Path,
+ default=root / "shared" / "data" / "raw" / "15-trajectory-analysis",
+ )
+ parser.add_argument("--overwrite", action="store_true")
+ return parser.parse_args()
+
+
+def feature_collection(features: list[dict[str, Any]]) -> dict[str, Any]:
+ return {"type": "FeatureCollection", "features": features}
+
+
+def line_feature(track_id: str, coordinates: list[list[float]]) -> dict[str, Any]:
+ return {
+ "type": "Feature",
+ "properties": {"track_id": track_id},
+ "geometry": {"type": "LineString", "coordinates": coordinates},
+ }
+
+
+def write_json(path: Path, payload: dict[str, Any]) -> None:
+ path.write_text(json.dumps(payload, ensure_ascii=False, indent=2), encoding="utf-8")
+
+
+def write_case(
+ output_dir: Path,
+ case_id: str,
+ description: str,
+ rows: list[dict[str, str]],
+ routes: list[dict[str, Any]],
+ zones: list[dict[str, Any]],
+) -> None:
+ csv_name = f"{case_id}_observations.csv"
+ routes_name = f"{case_id}_routes.geojson"
+ zones_name = f"{case_id}_zones.geojson"
+ with (output_dir / csv_name).open("w", newline="", encoding="utf-8") as stream:
+ writer = csv.DictWriter(
+ stream,
+ fieldnames=["track_id", "entity_type", "timestamp", "longitude", "latitude"],
+ )
+ writer.writeheader()
+ writer.writerows(rows)
+ write_json(output_dir / routes_name, feature_collection(routes))
+ write_json(output_dir / zones_name, feature_collection(zones))
+ write_json(
+ output_dir / f"{case_id}.case.json",
+ {
+ "case_id": case_id,
+ "description": description,
+ "crs": "EPSG:4326",
+ "observations": csv_name,
+ "reference_routes": routes_name,
+ "zones": zones_name,
+ },
+ )
+
+
+def observation(
+ track_id: str,
+ entity_type: str,
+ timestamp: datetime,
+ longitude: float,
+ latitude: float,
+) -> dict[str, str]:
+ return {
+ "track_id": track_id,
+ "entity_type": entity_type,
+ "timestamp": timestamp.isoformat().replace("+00:00", "Z"),
+ "longitude": f"{longitude:.7f}",
+ "latitude": f"{latitude:.7f}",
+ }
+
+
+def build_normal_case() -> tuple[list[dict[str, str]], list[dict[str, Any]]]:
+ started = datetime(2026, 8, 14, 1, 0, tzinfo=UTC)
+ rows: list[dict[str, str]] = []
+ routes: list[dict[str, Any]] = []
+ for track_id, entity_type, base_lat in (
+ ("drone-normal-01", "drone", 31.2000),
+ ("vehicle-normal-01", "vehicle", 31.1995),
+ ):
+ coordinates: list[list[float]] = []
+ for index in range(16):
+ lon = 121.4700 + index * 0.00012
+ lat = base_lat + math.sin(index / 2) * 0.000006
+ coordinates.append([lon, base_lat])
+ rows.append(observation(track_id, entity_type, started + timedelta(seconds=10 * index), lon, lat))
+ routes.append(line_feature(track_id, coordinates))
+ return rows, routes
+
+
+def build_difficult_case() -> tuple[list[dict[str, str]], list[dict[str, Any]]]:
+ started = datetime(2026, 8, 14, 2, 0, tzinfo=UTC)
+ rows: list[dict[str, str]] = []
+ routes: list[dict[str, Any]] = []
+
+ car_route = [[121.4700 + index * 0.00010, 31.2000] for index in range(20)]
+ routes.append(line_feature("vehicle-difficult-01", car_route))
+ for index in range(20):
+ if index <= 5:
+ lon, lat = 121.4700 + index * 0.00010, 31.2000
+ elif index <= 13:
+ lon, lat = 121.4705, 31.2000
+ else:
+ lon, lat = 121.4705 + (index - 13) * 0.00010, 31.20055
+ rows.append(
+ observation(
+ "vehicle-difficult-01", "vehicle", started + timedelta(seconds=10 * index), lon, lat
+ )
+ )
+ # One duplicate is intentional: the analyzer must deduplicate it and report the cleanup.
+ rows.append(observation("vehicle-difficult-01", "vehicle", started + timedelta(seconds=100), 121.4705, 31.2000))
+
+ for track_id, base_lat, offset in (
+ ("person-group-01", 31.19935, -0.000035),
+ ("person-group-02", 31.19965, 0.000035),
+ ):
+ coordinates: list[list[float]] = []
+ for index in range(13):
+ lon = 121.4700 + index * 0.00011
+ if 4 <= index <= 9:
+ lat = 31.19950 + offset
+ else:
+ lat = base_lat
+ coordinates.append([lon, lat])
+ rows.append(observation(track_id, "person", started + timedelta(seconds=10 * index), lon, lat))
+ routes.append(line_feature(track_id, coordinates))
+
+ # Deliberately reverse the rows so sorting is exercised on the difficult case.
+ rows.reverse()
+ return rows, routes
+
+
+def main() -> int:
+ args = parse_args()
+ output_dir = args.output.resolve()
+ expected = output_dir / "normal.case.json"
+ if expected.exists() and not args.overwrite:
+ print(f"Demo inputs already exist: {output_dir}. Use --overwrite to replace them.", file=sys.stderr)
+ return 2
+ output_dir.mkdir(parents=True, exist_ok=True)
+ zone = {
+ "type": "Feature",
+ "properties": {"zone_id": "restricted-01", "zone_type": "restricted"},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [[
+ [121.47035, 31.20030],
+ [121.47125, 31.20030],
+ [121.47125, 31.20080],
+ [121.47035, 31.20080],
+ [121.47035, 31.20030],
+ ]],
+ },
+ }
+ normal_rows, normal_routes = build_normal_case()
+ write_case(
+ output_dir,
+ "normal",
+ "Two continuously moving tracks following their routes without rule events.",
+ normal_rows,
+ normal_routes,
+ [zone],
+ )
+ difficult_rows, difficult_routes = build_difficult_case()
+ write_case(
+ output_dir,
+ "difficult",
+ "Unsorted observations with a duplicate, a stop, route deviation, restricted-zone entry and gathering.",
+ difficult_rows,
+ difficult_routes,
+ [zone],
+ )
+ print(f"Generated normal and difficult demo inputs in {output_dir}")
+ return 0
+
+
+if __name__ == "__main__":
+ raise SystemExit(main())
diff --git a/capabilities/15-trajectory-analysis/requirements.txt b/capabilities/15-trajectory-analysis/requirements.txt
index 86dd1e1..a989bce 100644
--- a/capabilities/15-trajectory-analysis/requirements.txt
+++ b/capabilities/15-trajectory-analysis/requirements.txt
@@ -1,5 +1,4 @@
-r ../../requirements/base.txt
geopandas>=1,<2
scikit-learn>=1.5,<2
-movingpandas>=0.19,<1
-
+matplotlib>=3.9,<4
diff --git a/capabilities/15-trajectory-analysis/run_trajectory_analysis.py b/capabilities/15-trajectory-analysis/run_trajectory_analysis.py
new file mode 100644
index 0000000..947c0f8
--- /dev/null
+++ b/capabilities/15-trajectory-analysis/run_trajectory_analysis.py
@@ -0,0 +1,636 @@
+"""Analyze timestamped WGS84 trajectories with clustering and explicit rules."""
+
+from __future__ import annotations
+
+import argparse
+import json
+import platform
+import sys
+import time
+from collections import defaultdict
+from datetime import UTC, datetime
+from importlib.metadata import PackageNotFoundError, version
+from pathlib import Path
+from typing import Any, Iterable
+
+import geopandas as gpd
+import matplotlib
+import numpy as np
+import pandas as pd
+from pyproj import CRS
+from shapely.geometry import LineString, Point, mapping
+from sklearn.cluster import DBSCAN
+from sklearn.preprocessing import StandardScaler
+
+matplotlib.use("Agg")
+import matplotlib.pyplot as plt
+from matplotlib.lines import Line2D
+
+
+DEFAULT_THRESHOLDS = {
+ "stop_speed_mps": 0.8,
+ "stop_duration_seconds": 60.0,
+ "route_deviation_m": 25.0,
+ "route_deviation_duration_seconds": 20.0,
+ "gathering_radius_m": 20.0,
+ "gathering_duration_seconds": 30.0,
+ "max_observation_gap_seconds": 60.0,
+}
+REQUIRED_COLUMNS = {"track_id", "entity_type", "timestamp", "longitude", "latitude"}
+EVENT_COLORS = {
+ "stop": "#d55e00",
+ "route_deviation": "#cc79a7",
+ "restricted_zone": "#e69f00",
+ "gathering": "#009e73",
+}
+EVENT_MARKERS = {
+ "stop": "s",
+ "route_deviation": "^",
+ "restricted_zone": "D",
+ "gathering": "P",
+}
+EVENT_SIZES = {
+ "stop": 62,
+ "route_deviation": 42,
+ "restricted_zone": 92,
+ "gathering": 68,
+}
+
+
+def parse_args() -> argparse.Namespace:
+ root = Path(__file__).resolve().parents[2]
+ parser = argparse.ArgumentParser(description="Analyze timestamped WGS84 trajectories.")
+ parser.add_argument(
+ "--input",
+ type=Path,
+ default=root / "shared" / "data" / "raw" / "15-trajectory-analysis",
+ help="A .case.json manifest or a directory containing manifests.",
+ )
+ parser.add_argument(
+ "--output",
+ type=Path,
+ default=root / "shared" / "outputs" / "15-trajectory-analysis",
+ )
+ parser.add_argument("--overwrite", action="store_true", help="Replace existing case outputs.")
+ return parser.parse_args()
+
+
+def package_version(name: str) -> str:
+ try:
+ return version(name)
+ except PackageNotFoundError:
+ return "not-installed"
+
+
+def utc_text(value: pd.Timestamp | datetime) -> str:
+ return value.to_pydatetime().astimezone(UTC).isoformat() if isinstance(value, pd.Timestamp) else value.astimezone(UTC).isoformat()
+
+
+def load_json(path: Path) -> dict[str, Any]:
+ with path.open(encoding="utf-8") as stream:
+ payload = json.load(stream)
+ if not isinstance(payload, dict):
+ raise ValueError(f"JSON root must be an object: {path}")
+ return payload
+
+
+def resolve_input_path(manifest_path: Path, value: str) -> Path:
+ path = Path(value)
+ return path.resolve() if path.is_absolute() else (manifest_path.parent / path).resolve()
+
+
+def choose_metric_crs(longitude: float, latitude: float) -> CRS:
+ zone = int((longitude + 180) // 6) + 1
+ epsg = (32600 if latitude >= 0 else 32700) + zone
+ return CRS.from_epsg(epsg)
+
+
+def load_case(manifest_path: Path) -> tuple[dict[str, Any], pd.DataFrame, gpd.GeoDataFrame, gpd.GeoDataFrame, int, CRS]:
+ manifest = load_json(manifest_path)
+ for field in ("case_id", "crs", "observations", "reference_routes", "zones"):
+ if not manifest.get(field):
+ raise ValueError(f"Manifest is missing '{field}': {manifest_path}")
+ if manifest["crs"] != "EPSG:4326":
+ raise ValueError("Demo v1 accepts only EPSG:4326 longitude/latitude observations.")
+ observations_path = resolve_input_path(manifest_path, manifest["observations"])
+ routes_path = resolve_input_path(manifest_path, manifest["reference_routes"])
+ zones_path = resolve_input_path(manifest_path, manifest["zones"])
+ frame = pd.read_csv(observations_path)
+ missing = REQUIRED_COLUMNS - set(frame.columns)
+ if missing:
+ raise ValueError(f"Observation CSV is missing columns: {', '.join(sorted(missing))}")
+ raw_count = len(frame)
+ if raw_count == 0:
+ raise ValueError("Observation CSV is empty.")
+ frame["track_id"] = frame["track_id"].astype(str).str.strip()
+ frame["entity_type"] = frame["entity_type"].astype(str).str.strip()
+ if (frame["track_id"] == "").any() or (frame["entity_type"] == "").any():
+ raise ValueError("track_id and entity_type cannot be empty.")
+ frame["timestamp"] = pd.to_datetime(frame["timestamp"], utc=True, errors="raise")
+ frame["longitude"] = pd.to_numeric(frame["longitude"], errors="raise")
+ frame["latitude"] = pd.to_numeric(frame["latitude"], errors="raise")
+ valid = frame["longitude"].between(-180, 180) & frame["latitude"].between(-90, 90)
+ if not valid.all():
+ raise ValueError("longitude/latitude contains values outside WGS84 bounds.")
+ frame = (
+ frame.sort_values(["track_id", "timestamp"])
+ .drop_duplicates(["track_id", "timestamp"], keep="last")
+ .reset_index(drop=True)
+ )
+ duplicate_count = raw_count - len(frame)
+ if frame.groupby("track_id").size().min() < 2:
+ raise ValueError("Every track must contain at least two distinct timestamps.")
+ routes = gpd.read_file(routes_path)
+ zones = gpd.read_file(zones_path)
+ if "track_id" not in routes.columns:
+ raise ValueError("Reference route GeoJSON must contain a track_id property.")
+ if "zone_id" not in zones.columns or "zone_type" not in zones.columns:
+ raise ValueError("Zone GeoJSON must contain zone_id and zone_type properties.")
+ if routes.crs is None or zones.crs is None:
+ raise ValueError("Route and zone GeoJSON files must declare a CRS.")
+ expected = set(frame["track_id"])
+ missing_routes = expected - set(routes["track_id"].astype(str))
+ if missing_routes:
+ raise ValueError(f"Missing reference routes for: {', '.join(sorted(missing_routes))}")
+ metric_crs = choose_metric_crs(float(frame["longitude"].mean()), float(frame["latitude"].mean()))
+ return manifest, frame, routes.to_crs(metric_crs), zones.to_crs(metric_crs), duplicate_count, metric_crs
+
+
+def true_runs(flags: list[bool], times: list[pd.Timestamp], max_gap: float) -> Iterable[tuple[int, int]]:
+ start: int | None = None
+ for index, flag in enumerate(flags):
+ separated = index > 0 and (times[index] - times[index - 1]).total_seconds() > max_gap
+ if flag and (start is None or separated):
+ if start is not None:
+ yield start, index - 1
+ start = index
+ elif not flag and start is not None:
+ yield start, index - 1
+ start = None
+ if start is not None:
+ yield start, len(flags) - 1
+
+
+def make_event(
+ case_id: str,
+ event_type: str,
+ track_ids: list[str],
+ started: pd.Timestamp,
+ ended: pd.Timestamp,
+ point: Point,
+ details: dict[str, Any],
+) -> dict[str, Any]:
+ duration = max(0.0, (ended - started).total_seconds())
+ return {
+ "event_id": "",
+ "case_id": case_id,
+ "event_type": event_type,
+ "track_ids": track_ids,
+ "start_time": utc_text(started),
+ "end_time": utc_text(ended),
+ "duration_seconds": round(duration, 3),
+ "longitude": round(point.x, 7),
+ "latitude": round(point.y, 7),
+ "details": details,
+ }
+
+
+def analyze_tracks(
+ case_id: str,
+ frame: pd.DataFrame,
+ routes_metric: gpd.GeoDataFrame,
+ zones_metric: gpd.GeoDataFrame,
+ metric_crs: CRS,
+ thresholds: dict[str, float],
+) -> tuple[list[dict[str, Any]], list[dict[str, Any]], dict[str, gpd.GeoDataFrame]]:
+ points = gpd.GeoDataFrame(
+ frame.copy(),
+ geometry=gpd.points_from_xy(frame["longitude"], frame["latitude"]),
+ crs="EPSG:4326",
+ )
+ points_metric = points.to_crs(metric_crs)
+ route_map = {str(row.track_id): row.geometry for row in routes_metric.itertuples()}
+ restricted = zones_metric[zones_metric["zone_type"].astype(str) == "restricted"]
+ events: list[dict[str, Any]] = []
+ summaries: list[dict[str, Any]] = []
+ track_frames: dict[str, gpd.GeoDataFrame] = {}
+
+ for track_id, group_indexes in points_metric.groupby("track_id", sort=True).groups.items():
+ track = points_metric.loc[group_indexes].sort_values("timestamp").copy().reset_index(drop=True)
+ track_wgs84 = track.to_crs("EPSG:4326")
+ track_frames[str(track_id)] = track_wgs84
+ times = list(track["timestamp"])
+ step_dt = track["timestamp"].diff().dt.total_seconds().fillna(0.0).to_numpy()
+ step_distance = np.zeros(len(track), dtype=float)
+ for index in range(1, len(track)):
+ step_distance[index] = track.geometry.iloc[index - 1].distance(track.geometry.iloc[index])
+ step_speed = np.divide(step_distance, step_dt, out=np.zeros_like(step_distance), where=step_dt > 0)
+ max_gap = thresholds["max_observation_gap_seconds"]
+
+ slow_intervals = [
+ index > 0 and step_dt[index] <= max_gap and step_speed[index] <= thresholds["stop_speed_mps"]
+ for index in range(len(track))
+ ]
+ stop_seconds = 0.0
+ for start, end in true_runs(slow_intervals, times, max_gap):
+ event_start = max(0, start - 1)
+ duration = (times[end] - times[event_start]).total_seconds()
+ if duration >= thresholds["stop_duration_seconds"]:
+ stop_seconds += duration
+ point = track_wgs84.geometry.iloc[event_start : end + 1].union_all().centroid
+ events.append(
+ make_event(
+ case_id,
+ "stop",
+ [str(track_id)],
+ times[event_start],
+ times[end],
+ point,
+ {"max_speed_mps": round(float(step_speed[start : end + 1].max()), 3)},
+ )
+ )
+
+ route = route_map[str(track_id)]
+ route_distances = np.array([geometry.distance(route) for geometry in track.geometry], dtype=float)
+ deviated = list(route_distances > thresholds["route_deviation_m"])
+ deviation_seconds = 0.0
+ for start, end in true_runs(deviated, times, max_gap):
+ duration = (times[end] - times[start]).total_seconds()
+ if duration >= thresholds["route_deviation_duration_seconds"]:
+ deviation_seconds += duration
+ events.append(
+ make_event(
+ case_id,
+ "route_deviation",
+ [str(track_id)],
+ times[start],
+ times[end],
+ track_wgs84.geometry.iloc[end],
+ {"max_distance_m": round(float(route_distances[start : end + 1].max()), 3)},
+ )
+ )
+
+ restricted_seconds = 0.0
+ inside_by_zone: dict[str, list[bool]] = {}
+ for zone in restricted.itertuples():
+ flags = [bool(zone.geometry.covers(geometry)) for geometry in track.geometry]
+ inside_by_zone[str(zone.zone_id)] = flags
+ for start, end in true_runs(flags, times, max_gap):
+ duration = (times[end] - times[start]).total_seconds()
+ restricted_seconds += duration
+ events.append(
+ make_event(
+ case_id,
+ "restricted_zone",
+ [str(track_id)],
+ times[start],
+ times[end],
+ track_wgs84.geometry.iloc[end],
+ {"zone_id": str(zone.zone_id)},
+ )
+ )
+
+ duration_seconds = (times[-1] - times[0]).total_seconds()
+ summaries.append(
+ {
+ "case_id": case_id,
+ "track_id": str(track_id),
+ "entity_type": str(track["entity_type"].iloc[0]),
+ "point_count": len(track),
+ "start_time": utc_text(times[0]),
+ "end_time": utc_text(times[-1]),
+ "duration_seconds": round(duration_seconds, 3),
+ "distance_m": round(float(step_distance.sum()), 3),
+ "average_speed_mps": round(float(step_distance.sum() / duration_seconds), 3),
+ "max_speed_mps": round(float(step_speed.max()), 3),
+ "route_deviation_ratio": round(float(np.mean(deviated)), 4),
+ "restricted_zone_seconds": round(restricted_seconds, 3),
+ "stop_seconds": round(stop_seconds, 3),
+ "cluster_id": -1,
+ "behavior_labels": "",
+ }
+ )
+
+ gathering_events = detect_gathering(case_id, points_metric, thresholds)
+ events.extend(gathering_events)
+ labels_by_track: dict[str, set[str]] = defaultdict(set)
+ for event in events:
+ for track_id in event["track_ids"]:
+ labels_by_track[track_id].add(event["event_type"])
+
+ if len(summaries) >= 2:
+ features = np.array(
+ [
+ [
+ item["distance_m"],
+ item["duration_seconds"],
+ item["average_speed_mps"],
+ item["route_deviation_ratio"],
+ item["stop_seconds"] / max(item["duration_seconds"], 1),
+ ]
+ for item in summaries
+ ]
+ )
+ labels = DBSCAN(eps=1.35, min_samples=2).fit_predict(StandardScaler().fit_transform(features))
+ for item, label in zip(summaries, labels, strict=True):
+ item["cluster_id"] = int(label)
+ for item in summaries:
+ item["behavior_labels"] = "|".join(sorted(labels_by_track[item["track_id"]])) or "normal"
+
+ events.sort(key=lambda item: (item["start_time"], item["event_type"], item["track_ids"]))
+ for index, event in enumerate(events, start=1):
+ event["event_id"] = f"{case_id}-event-{index:03d}"
+ return summaries, events, track_frames
+
+
+def detect_gathering(
+ case_id: str, points_metric: gpd.GeoDataFrame, thresholds: dict[str, float]
+) -> list[dict[str, Any]]:
+ occurrences: dict[tuple[str, ...], list[tuple[pd.Timestamp, Point]]] = defaultdict(list)
+ radius = thresholds["gathering_radius_m"]
+ for timestamp, group in points_metric.groupby("timestamp"):
+ rows = list(group.itertuples())
+ adjacency: dict[str, set[str]] = {str(row.track_id): set() for row in rows}
+ geometries = {str(row.track_id): row.geometry for row in rows}
+ for left_index, left in enumerate(rows):
+ for right in rows[left_index + 1 :]:
+ if left.geometry.distance(right.geometry) <= radius:
+ adjacency[str(left.track_id)].add(str(right.track_id))
+ adjacency[str(right.track_id)].add(str(left.track_id))
+ remaining = set(adjacency)
+ while remaining:
+ seed = remaining.pop()
+ component = {seed}
+ queue = [seed]
+ while queue:
+ current = queue.pop()
+ neighbors = adjacency[current] & remaining
+ remaining -= neighbors
+ component |= neighbors
+ queue.extend(neighbors)
+ if len(component) >= 2:
+ members = tuple(sorted(component))
+ centroid = gpd.GeoSeries([geometries[item] for item in members], crs=points_metric.crs).union_all().centroid
+ occurrences[members].append((timestamp, centroid))
+
+ events: list[dict[str, Any]] = []
+ max_gap = thresholds["max_observation_gap_seconds"]
+ for members, values in occurrences.items():
+ values.sort(key=lambda item: item[0])
+ groups: list[list[tuple[pd.Timestamp, Point]]] = [[values[0]]]
+ for value in values[1:]:
+ if (value[0] - groups[-1][-1][0]).total_seconds() <= max_gap:
+ groups[-1].append(value)
+ else:
+ groups.append([value])
+ for run in groups:
+ duration = (run[-1][0] - run[0][0]).total_seconds()
+ if duration < thresholds["gathering_duration_seconds"]:
+ continue
+ wgs84_point = gpd.GeoSeries([run[-1][1]], crs=points_metric.crs).to_crs("EPSG:4326").iloc[0]
+ events.append(
+ make_event(
+ case_id,
+ "gathering",
+ list(members),
+ run[0][0],
+ run[-1][0],
+ wgs84_point,
+ {"member_count": len(members), "radius_m": radius},
+ )
+ )
+ return events
+
+
+def write_outputs(
+ output_dir: Path,
+ manifest: dict[str, Any],
+ summaries: list[dict[str, Any]],
+ events: list[dict[str, Any]],
+ tracks: dict[str, gpd.GeoDataFrame],
+ routes_wgs84: gpd.GeoDataFrame,
+ zones_wgs84: gpd.GeoDataFrame,
+ metadata: dict[str, Any],
+) -> None:
+ output_dir.mkdir(parents=True, exist_ok=True)
+ pd.DataFrame(summaries).to_csv(output_dir / "trajectory_summary.csv", index=False, encoding="utf-8-sig")
+ (output_dir / "events.json").write_text(
+ json.dumps({"case_id": manifest["case_id"], "events": events}, ensure_ascii=False, indent=2),
+ encoding="utf-8",
+ )
+ trajectory_features = []
+ summary_map = {item["track_id"]: item for item in summaries}
+ for track_id, track in tracks.items():
+ properties = dict(summary_map[track_id])
+ trajectory_features.append(
+ {"type": "Feature", "properties": properties, "geometry": mapping(LineString(track.geometry.tolist()))}
+ )
+ write_geojson(output_dir / "trajectories.geojson", trajectory_features)
+ event_features = [
+ {
+ "type": "Feature",
+ "properties": {key: value for key, value in event.items() if key not in {"longitude", "latitude"}},
+ "geometry": {"type": "Point", "coordinates": [event["longitude"], event["latitude"]]},
+ }
+ for event in events
+ ]
+ write_geojson(output_dir / "events.geojson", event_features)
+ render_map(output_dir / "analysis.png", tracks, routes_wgs84, zones_wgs84, events, manifest["case_id"])
+ (output_dir / "run_metadata.json").write_text(
+ json.dumps(metadata, ensure_ascii=False, indent=2), encoding="utf-8"
+ )
+
+
+def write_geojson(path: Path, features: list[dict[str, Any]]) -> None:
+ path.write_text(
+ json.dumps(
+ {"type": "FeatureCollection", "name": path.stem, "crs": {"type": "name", "properties": {"name": "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features": features},
+ ensure_ascii=False,
+ indent=2,
+ ),
+ encoding="utf-8",
+ )
+
+
+def render_map(
+ path: Path,
+ tracks: dict[str, gpd.GeoDataFrame],
+ routes: gpd.GeoDataFrame,
+ zones: gpd.GeoDataFrame,
+ events: list[dict[str, Any]],
+ case_id: str,
+) -> None:
+ figure, axis = plt.subplots(figsize=(10, 7), dpi=140)
+ zones.plot(ax=axis, facecolor="#f0e442", edgecolor="#8c6d1f", alpha=0.28, linewidth=1.5)
+ routes.plot(ax=axis, color="#666666", linestyle="--", linewidth=1.2)
+ palette = ["#0072b2", "#009e73", "#d55e00", "#cc79a7", "#56b4e9"]
+ for index, (track_id, track) in enumerate(sorted(tracks.items())):
+ color = palette[index % len(palette)]
+ axis.plot(track.geometry.x, track.geometry.y, color=color, linewidth=2.2, marker="o", markersize=2.8, label=track_id)
+ axis.annotate(track_id, (track.geometry.x.iloc[-1], track.geometry.y.iloc[-1]), fontsize=7, color=color)
+ for event in events:
+ event_type = event["event_type"]
+ axis.scatter(
+ [event["longitude"]],
+ [event["latitude"]],
+ marker=EVENT_MARKERS[event_type],
+ s=EVENT_SIZES[event_type],
+ color=EVENT_COLORS[event_type],
+ edgecolor="white",
+ linewidth=0.8,
+ zorder=5,
+ )
+ handles, labels = axis.get_legend_handles_labels()
+ present_event_types = {event["event_type"] for event in events}
+ handles.extend(
+ Line2D(
+ [0],
+ [0],
+ marker=EVENT_MARKERS[name],
+ color="none",
+ markerfacecolor=color,
+ markeredgecolor="white",
+ markersize=8,
+ label=name,
+ )
+ for name, color in EVENT_COLORS.items()
+ if name in present_event_types
+ )
+ labels.extend(name for name in EVENT_COLORS if name in present_event_types)
+ axis.legend(handles, labels, loc="best", fontsize=7, framealpha=0.9)
+ axis.set_title(f"Trajectory analysis: {case_id}")
+ axis.set_xlabel("Longitude (WGS84)")
+ axis.set_ylabel("Latitude (WGS84)")
+ axis.grid(alpha=0.18)
+ axis.ticklabel_format(useOffset=False)
+ figure.tight_layout()
+ figure.savefig(path)
+ plt.close(figure)
+
+
+def process_manifest(manifest_path: Path, output_dir: Path) -> dict[str, Any]:
+ started = time.perf_counter()
+ manifest, frame, routes_metric, zones_metric, duplicates, metric_crs = load_case(manifest_path)
+ thresholds = dict(DEFAULT_THRESHOLDS)
+ for key, value in manifest.get("thresholds", {}).items():
+ if key not in thresholds:
+ raise ValueError(f"Unsupported threshold: {key}")
+ thresholds[key] = float(value)
+ if thresholds[key] <= 0:
+ raise ValueError(f"Threshold must be greater than zero: {key}")
+ summaries, events, tracks = analyze_tracks(
+ str(manifest["case_id"]), frame, routes_metric, zones_metric, metric_crs, thresholds
+ )
+ elapsed = round(time.perf_counter() - started, 3)
+ metadata = {
+ "created_at": datetime.now(UTC).isoformat(),
+ "case_id": manifest["case_id"],
+ "input_manifest": str(manifest_path.resolve()),
+ "input_count": int(len(frame)),
+ "track_count": len(summaries),
+ "dropped_duplicate_observations": duplicates,
+ "event_count": len(events),
+ "event_counts": {name: sum(event["event_type"] == name for event in events) for name in EVENT_COLORS},
+ "elapsed_seconds": elapsed,
+ "device": "cpu",
+ "python": platform.python_version(),
+ "packages": {
+ "geoai-py": package_version("geoai-py"),
+ "pandas": package_version("pandas"),
+ "geopandas": package_version("geopandas"),
+ "shapely": package_version("shapely"),
+ "pyproj": package_version("pyproj"),
+ "scikit-learn": package_version("scikit-learn"),
+ "matplotlib": package_version("matplotlib"),
+ },
+ "model": {
+ "behavior_recognition": "deterministic-threshold-rules-v1",
+ "trajectory_grouping": "DBSCAN on standardized summary features",
+ "pretrained_weights": None,
+ },
+ "thresholds": thresholds,
+ "output_crs": "EPSG:4326",
+ "metric_crs": metric_crs.to_string(),
+ "limitations": [
+ "This is rule-based behavior detection, not learned action recognition.",
+ "Track identities must already be present; this demo does not associate detections across video frames.",
+ "Gathering requires aligned timestamps and is sensitive to sampling gaps and GPS error.",
+ "Thresholds are illustrative and require domain validation before operational use.",
+ ],
+ }
+ write_outputs(
+ output_dir,
+ manifest,
+ summaries,
+ events,
+ tracks,
+ routes_metric.to_crs("EPSG:4326"),
+ zones_metric.to_crs("EPSG:4326"),
+ metadata,
+ )
+ return metadata
+
+
+def main() -> int:
+ args = parse_args()
+ input_path = args.input.resolve()
+ output_root = args.output.resolve()
+ if not input_path.exists():
+ print(f"Input does not exist: {input_path}", file=sys.stderr)
+ return 2
+ manifests = [input_path] if input_path.is_file() else sorted(input_path.glob("*.case.json"))
+ if not manifests:
+ print(f"No .case.json manifests found: {input_path}", file=sys.stderr)
+ return 2
+ try:
+ cases = [(path, str(load_json(path).get("case_id", ""))) for path in manifests]
+ if any(not case_id for _, case_id in cases):
+ raise ValueError("Every manifest must define a non-empty case_id.")
+ destinations = [output_root / case_id for _, case_id in cases]
+ existing = [path for path in destinations if path.exists()]
+ if existing and not args.overwrite:
+ raise ValueError(f"Output already exists: {existing[0]}. Use --overwrite to replace it.")
+ results = [process_manifest(path, destination) for (path, _), destination in zip(cases, destinations, strict=True)]
+ aggregate = {
+ "created_at": datetime.now(UTC).isoformat(),
+ "input": str(input_path),
+ "input_count": sum(item["input_count"] for item in results),
+ "case_count": len(results),
+ "track_count": sum(item["track_count"] for item in results),
+ "dropped_duplicate_observations": sum(
+ item["dropped_duplicate_observations"] for item in results
+ ),
+ "event_count": sum(item["event_count"] for item in results),
+ "event_counts": {
+ name: sum(item["event_counts"][name] for item in results) for name in EVENT_COLORS
+ },
+ "elapsed_seconds": round(sum(item["elapsed_seconds"] for item in results), 3),
+ "device": "cpu",
+ "python": platform.python_version(),
+ "packages": results[0]["packages"],
+ "model": results[0]["model"],
+ "thresholds_by_case": {
+ item["case_id"]: item["thresholds"] for item in results
+ },
+ "limitations": results[0]["limitations"],
+ "cases": [
+ {"case_id": item["case_id"], "output": item["case_id"]} for item in results
+ ],
+ }
+ output_root.mkdir(parents=True, exist_ok=True)
+ (output_root / "run_metadata.json").write_text(
+ json.dumps(aggregate, ensure_ascii=False, indent=2), encoding="utf-8"
+ )
+ except (OSError, ValueError, json.JSONDecodeError, pd.errors.ParserError) as exc:
+ print(f"Analysis failed: {exc}", file=sys.stderr)
+ return 2
+ print(
+ f"Processed {len(results)} case(s), {aggregate['track_count']} tracks and "
+ f"{aggregate['event_count']} events in {aggregate['elapsed_seconds']}s"
+ )
+ print(f"Outputs: {output_root}")
+ return 0
+
+
+if __name__ == "__main__":
+ raise SystemExit(main())
diff --git a/capabilities/15-trajectory-analysis/tests/test_demo.py b/capabilities/15-trajectory-analysis/tests/test_demo.py
new file mode 100644
index 0000000..a71fa40
--- /dev/null
+++ b/capabilities/15-trajectory-analysis/tests/test_demo.py
@@ -0,0 +1,73 @@
+from __future__ import annotations
+
+import json
+import subprocess
+import sys
+import tempfile
+import unittest
+from pathlib import Path
+
+
+CAPABILITY_DIR = Path(__file__).resolve().parents[1]
+GENERATOR = CAPABILITY_DIR / "generate_demo_inputs.py"
+ANALYZER = CAPABILITY_DIR / "run_trajectory_analysis.py"
+
+
+class TrajectoryDemoTests(unittest.TestCase):
+ def run_command(self, *arguments: str) -> subprocess.CompletedProcess[str]:
+ return subprocess.run(
+ [sys.executable, *arguments],
+ text=True,
+ capture_output=True,
+ encoding="utf-8",
+ check=False,
+ )
+
+ def test_normal_and_difficult_cases(self) -> None:
+ with tempfile.TemporaryDirectory() as temporary:
+ root = Path(temporary)
+ inputs = root / "inputs"
+ outputs = root / "outputs"
+ generated = self.run_command(str(GENERATOR), "--output", str(inputs))
+ self.assertEqual(generated.returncode, 0, generated.stderr)
+ analyzed = self.run_command(str(ANALYZER), "--input", str(inputs), "--output", str(outputs))
+ self.assertEqual(analyzed.returncode, 0, analyzed.stderr)
+
+ normal = json.loads((outputs / "normal" / "run_metadata.json").read_text(encoding="utf-8"))
+ difficult = json.loads((outputs / "difficult" / "run_metadata.json").read_text(encoding="utf-8"))
+ self.assertEqual(normal["track_count"], 2)
+ self.assertEqual(normal["event_count"], 0)
+ self.assertEqual(difficult["dropped_duplicate_observations"], 1)
+ for event_type in ("stop", "route_deviation", "restricted_zone", "gathering"):
+ self.assertGreaterEqual(difficult["event_counts"][event_type], 1)
+ for case_id in ("normal", "difficult"):
+ for filename in (
+ "trajectory_summary.csv",
+ "events.json",
+ "trajectories.geojson",
+ "events.geojson",
+ "analysis.png",
+ "run_metadata.json",
+ ):
+ self.assertGreater((outputs / case_id / filename).stat().st_size, 0)
+
+ def test_missing_required_column_fails_cleanly(self) -> None:
+ with tempfile.TemporaryDirectory() as temporary:
+ root = Path(temporary)
+ inputs = root / "inputs"
+ self.assertEqual(self.run_command(str(GENERATOR), "--output", str(inputs)).returncode, 0)
+ csv_path = inputs / "normal_observations.csv"
+ csv_path.write_text("track_id,timestamp,longitude,latitude\na,2026-01-01T00:00:00Z,1,1\n", encoding="utf-8")
+ result = self.run_command(
+ str(ANALYZER),
+ "--input",
+ str(inputs / "normal.case.json"),
+ "--output",
+ str(root / "outputs"),
+ )
+ self.assertEqual(result.returncode, 2)
+ self.assertIn("entity_type", result.stderr)
+
+
+if __name__ == "__main__":
+ unittest.main()
diff --git a/capabilities/README.md b/capabilities/README.md
index 97afea5..78d6cfd 100644
--- a/capabilities/README.md
+++ b/capabilities/README.md
@@ -1,6 +1,23 @@
# Capabilities
-目录编号表示建议研究顺序,不代表运行时依赖关系。
+目录编号表示建议研究顺序,不代表运行时依赖关系,也不代表每个目录都是
+`opengeos/geoai` 内置能力。
+
+## 基于 opengeos/geoai 的能力分层
+
+| 层级 | 含义 | 当前工作区示例 |
+| --- | --- | --- |
+| A:直接能力 | `geoai-py` 已有模块或文档直接覆盖 | 目标检测、分割、分类、变化检测、影像处理/导出 |
+| B:生态组合 | 以 `geoai-py` 为核心,再组合地理计算或业务库 | 空间测量、成果质检、灾害统计、部分三维分析 |
+| C:产品业务能力 | 主要由现有产品后端、规则和数据服务实现 | 风险规则、航线规划、集群调度、GeoLLM、知识图谱、模型治理 |
+
+判断一个方向是否属于 GeoAI 项目,要看它是否处理地理空间数据并调用 AI 或
+空间分析;判断它是否是 `geoai-py` 的能力,则必须以该仓库当前源码和文档为准。
+
+官方依据:
+
+- https://github.com/opengeos/geoai
+- https://pypi.org/project/geoai-py/
每个能力目录至少包含:
@@ -8,4 +25,3 @@
- `requirements.txt`: 公共依赖之外的专属依赖。
开始实现时再增加 `src/`、`tests/`、`examples/` 和 `configs/`,避免初期产生大量空目录。
-
diff --git a/scripts/check-environment.ps1 b/scripts/check-environment.ps1
index 1094daf..93b5f46 100644
--- a/scripts/check-environment.ps1
+++ b/scripts/check-environment.ps1
@@ -6,6 +6,14 @@
Write-Host "Python installations:"
py -0p
+$PythonCandidates = @(
+ (Join-Path $env:LOCALAPPDATA "Programs/Python/Python312/python.exe"),
+ (Join-Path $env:LOCALAPPDATA "Programs/Python/Python311/python.exe"),
+ (Join-Path $env:ProgramFiles "Python312/python.exe"),
+ (Join-Path $env:ProgramFiles "Python311/python.exe")
+)
+$SupportedPython = $PythonCandidates | Where-Object { Test-Path $_ } | Select-Object -First 1
+
Write-Host ""
Write-Host "Node:"
node --version
@@ -18,7 +26,8 @@
}
Write-Host ""
-if ((py -0p | Select-String "3.11|3.12")) {
+if ($SupportedPython) {
+ Write-Host "Detected: $(& $SupportedPython --version) at $SupportedPython"
Write-Host "Python version: ready" -ForegroundColor Green
} else {
Write-Warning "Install Python 3.11 or 3.12 before running setup.ps1."
diff --git a/scripts/serve_workbench_console.py b/scripts/serve_workbench_console.py
new file mode 100644
index 0000000..83126a9
--- /dev/null
+++ b/scripts/serve_workbench_console.py
@@ -0,0 +1,91 @@
+"""Serve the local GeoAI Workbench console from the repository root."""
+
+from __future__ import annotations
+
+import argparse
+import os
+from pathlib import PurePosixPath
+from http import HTTPStatus
+from http.server import SimpleHTTPRequestHandler, ThreadingHTTPServer
+from pathlib import Path
+from urllib.parse import unquote, urlsplit
+
+
+DEFAULT_HOST = "127.0.0.1"
+DEFAULT_PORT = 6173
+ALLOWED_PATH_PREFIXES = (
+ "apps/workbench-console",
+ "shared/outputs",
+ "shared/data/raw/01-object-detection",
+)
+
+
+class WorkbenchConsoleHandler(SimpleHTTPRequestHandler):
+ """Read-only static handler rooted at the workbench repository."""
+
+ def do_GET(self) -> None: # noqa: N802 - inherited standard-library method name
+ if urlsplit(self.path).path == "/":
+ self.send_response(HTTPStatus.FOUND)
+ self.send_header("Location", "/apps/workbench-console/")
+ self.end_headers()
+ return
+ super().do_GET()
+
+ def translate_path(self, path: str) -> str:
+ """Expose only the static UI and artifacts required by the local console."""
+ decoded_path = unquote(urlsplit(path).path).lstrip("/")
+ requested = PurePosixPath(decoded_path)
+ is_allowed = any(
+ decoded_path == prefix or decoded_path.startswith(f"{prefix}/")
+ for prefix in ALLOWED_PATH_PREFIXES
+ )
+ if ".." in requested.parts or not is_allowed:
+ return os.fspath(Path(self.directory) / ".console-forbidden")
+ if decoded_path == "apps/workbench-console" or decoded_path.startswith("apps/workbench-console/"):
+ console_relative = requested.parts[2:]
+ return os.fspath(Path(self.directory) / "apps" / "workbench-console" / "dist" / Path(*console_relative))
+ return os.fspath(Path(self.directory).joinpath(*requested.parts))
+
+ def end_headers(self) -> None:
+ self.send_header("Cache-Control", "no-store")
+ self.send_header("X-Content-Type-Options", "nosniff")
+ super().end_headers()
+
+
+def parse_args() -> argparse.Namespace:
+ root = Path(__file__).resolve().parents[1]
+ parser = argparse.ArgumentParser(description="Serve the local GeoAI Workbench console.")
+ parser.add_argument("--host", default=DEFAULT_HOST, help="Bind address. Defaults to loopback only.")
+ parser.add_argument("--port", type=int, default=DEFAULT_PORT, help="TCP port in the 6000-6999 range.")
+ parser.add_argument("--root", type=Path, default=root, help="Workbench repository root to serve.")
+ return parser.parse_args()
+
+
+def main() -> int:
+ args = parse_args()
+ if not 6000 <= args.port <= 6999:
+ raise SystemExit("Port must be in the 6000-6999 range.")
+ if args.host not in {"127.0.0.1", "localhost", "::1"}:
+ raise SystemExit("This console is local-only. Use 127.0.0.1, localhost, or ::1.")
+ root = args.root.resolve()
+ app_dir = root / "apps" / "workbench-console"
+ if not (root / "shared").is_dir() or not (app_dir / "dist" / "index.html").is_file():
+ raise SystemExit(f"Not a GeoAI Workbench root: {root}")
+
+ handler = lambda *handler_args, **handler_kwargs: WorkbenchConsoleHandler( # noqa: E731
+ *handler_args, directory=os.fspath(root), **handler_kwargs
+ )
+ server = ThreadingHTTPServer((args.host, args.port), handler)
+ print(f"GeoAI Workbench console: http://{args.host}:{args.port}")
+ print(f"Serving built console and read-only artifacts from: {root}")
+ try:
+ server.serve_forever()
+ except KeyboardInterrupt:
+ print("\nConsole stopped.")
+ finally:
+ server.server_close()
+ return 0
+
+
+if __name__ == "__main__":
+ raise SystemExit(main())
diff --git a/tests/test_serve_workbench_console.py b/tests/test_serve_workbench_console.py
new file mode 100644
index 0000000..d2bf1ad
--- /dev/null
+++ b/tests/test_serve_workbench_console.py
@@ -0,0 +1,46 @@
+from __future__ import annotations
+
+import importlib.util
+import unittest
+from pathlib import Path
+
+
+ROOT = Path(__file__).resolve().parents[1]
+SCRIPT = ROOT / "scripts" / "serve_workbench_console.py"
+SPEC = importlib.util.spec_from_file_location("serve_workbench_console", SCRIPT)
+assert SPEC and SPEC.loader
+MODULE = importlib.util.module_from_spec(SPEC)
+SPEC.loader.exec_module(MODULE)
+
+
+class WorkbenchConsoleHandlerTests(unittest.TestCase):
+ def make_handler(self) -> MODULE.WorkbenchConsoleHandler:
+ handler = object.__new__(MODULE.WorkbenchConsoleHandler)
+ handler.directory = str(ROOT)
+ return handler
+
+ def test_allows_only_console_artifacts_and_detection_originals(self) -> None:
+ handler = self.make_handler()
+ self.assertEqual(
+ Path(handler.translate_path("/apps/workbench-console/index.html")),
+ ROOT / "apps" / "workbench-console" / "dist" / "index.html",
+ )
+ self.assertEqual(
+ Path(handler.translate_path("/shared/outputs/15-trajectory-analysis/run_metadata.json")),
+ ROOT / "shared" / "outputs" / "15-trajectory-analysis" / "run_metadata.json",
+ )
+ self.assertEqual(
+ Path(handler.translate_path("/shared/data/raw/01-object-detection/sample.jpeg")),
+ ROOT / "shared" / "data" / "raw" / "01-object-detection" / "sample.jpeg",
+ )
+
+ def test_blocks_repository_files_and_encoded_traversal(self) -> None:
+ handler = self.make_handler()
+ forbidden = ROOT / ".console-forbidden"
+ self.assertEqual(Path(handler.translate_path("/.git/HEAD")), forbidden)
+ self.assertEqual(Path(handler.translate_path("/%2e%2e/.env")), forbidden)
+ self.assertEqual(Path(handler.translate_path("/PROJECT_CONTEXT.md")), forbidden)
+
+
+if __name__ == "__main__":
+ unittest.main()
diff --git "a/\346\226\260\345\257\271\350\257\235\345\220\257\345\212\250\350\257\264\346\230\216.txt" "b/\346\226\260\345\257\271\350\257\235\345\220\257\345\212\250\350\257\264\346\230\216.txt"
new file mode 100644
index 0000000..d7d20f2
--- /dev/null
+++ "b/\346\226\260\345\257\271\350\257\235\345\220\257\345\212\250\350\257\264\346\230\216.txt"
@@ -0,0 +1,24 @@
+GeoAI Workbench 新对话启动说明
+==============================
+
+1. 新建 Codex 对话。
+2. 把工作目录选择为:
+
+ E:\AllWorkProject\geoai-workbench
+
+3. 发送下面这句话,把“能力名称”替换成实际目标:
+
+ 使用 $geoai-capability-builder,创建下一个能力:<能力名称>。
+ 先读取 AGENTS.md 和 PROJECT_CONTEXT.md,再准备环境、Demo 输入输出和验收方式。
+
+示例:
+
+ 使用 $geoai-capability-builder,创建下一个能力:语义制图。
+ 先读取 AGENTS.md 和 PROJECT_CONTEXT.md,再准备环境、Demo 输入输出和验收方式。
+
+说明:
+
+- 不需要复制旧对话。
+- AGENTS.md 保存长期项目规则。
+- PROJECT_CONTEXT.md 保存当前进度、环境和实验结论。
+- 每完成一个能力,Codex 应更新 PROJECT_CONTEXT.md。
diff --git "a/\350\203\275\345\212\233\350\276\271\347\225\214\344\270\216\346\235\245\346\272\220\350\257\264\346\230\216.md" "b/\350\203\275\345\212\233\350\276\271\347\225\214\344\270\216\346\235\245\346\272\220\350\257\264\346\230\216.md"
new file mode 100644
index 0000000..5e698d6
--- /dev/null
+++ "b/\350\203\275\345\212\233\350\276\271\347\225\214\344\270\216\346\235\245\346\272\220\350\257\264\346\230\216.md"
@@ -0,0 +1,29 @@
+# GeoAI 能力边界与来源说明
+
+## 统一口径
+
+本项目所说的 GeoAI,默认指以 `opengeos/geoai` 开源项目(PyPI 包名
+`geoai-py`)为基础的地理空间人工智能工作流,而不是泛指所有空间智能、
+运筹优化或大语言模型功能。
+
+## 三层能力
+
+1. **直接能力**:`geoai-py` 已经提供相应模块、接口或示例,例如遥感影像
+ 目标检测、分割、分类、变化检测、影像切片、地理结果导出和可视化。
+2. **生态组合能力**:`geoai-py` 提供数据和模型工作流,但还要组合
+ Rasterio、GeoPandas、Shapely、PyTorch、OpenCV 或其他库,例如空间测量、
+ 成果质量检查和灾害统计。
+3. **产品业务能力**:不是 `geoai-py` 内置功能,而是利用其结果接入现有
+ 产品后实现,例如风险规则、事件工单、航线规划、集群调度、GeoLLM、知识
+ 图谱和模型治理。
+
+## 许可证边界
+
+`geoai-py` 项目本身采用 MIT 许可证。其依赖库、预训练模型、模型权重和数据集
+仍需逐项核查许可证;上层库的 MIT 许可证不会自动改变下游组件的授权要求。
+
+## 规划文件说明
+
+此前生成的规划文件保留作为历史版本。最新规划以文件名中带有
+`基于opengeos-geoai修订版` 的工作簿为准,避免把产品能力误称为
+`geoai-py` 内置能力。
--
Gitblit v1.9.3