gisthreemap
Version:
基于webGL的三维api
1,488 lines (1,474 loc) • 4.07 MB
JavaScript
import mapConfig from "./mapConfig.js";
import ThreeMapClass from "./ThreeMapClass.js";
import { Criska_Cesium } from './Cesium/Criska_Cesium.js'
ThreeMapClass.Class = Criska_Cesium
ThreeMapClass.ClassType = 'Criska_Cesium'
// import ThreeMapClass from "../dist/criska_cesium.min.js"; // 引用三维api
let threeMapClass = new ThreeMapClass(mapConfig)
threeMapClass.init()
let vm = new Vue({
el: "#app",
data: {
points: [
],
PersonList: [
{
Personid: '222',
lon: 103.781297,
lat: 29.523602
}
], // 人物模型集合
timeObj: { siteTimes: [], timeSum: 0 }, // 轨迹时间集合类
EventTools: [
{ type: "openEntityEvent", label: "启动实体事件" },
{ type: "closeEntityEvent", label: "关闭实体事件" },
{ type: "CreateDataSource", label: "创建DataSource" },
{ type: "getDataSource", label: "获取DataSource" },
{ type: "addPolygon", label: "添加普通面" },
{ type: "addStretchingPolygon", label: "添加立体拉伸效果面" },
{ type: "addPolyline", label: "添加普通线" },
{ type: "addSpriteline", label: "添加发光穿梭线" },
{ type: "addSpriteline3D", label: "添加三维发光穿梭线" },
{ type: "addlineFlow", label: "添加飞线" },
{ type: "addparabolaFlowline", label: "添加抛物飞线" },
{ type: "addcircleDiffuse", label: "添加扩散圆" },
{ type: "addcircleDiffution", label: "添加扩散圆2" },
{ type: "addScanline", label: "添加发光线圈" },
{ type: "addScanlineEntitysEffect", label: "添加发光线圈EntitysEffect" },
{ type: "addEntityCircleScan", label: "雷达平扫圆" },
{ type: "addEllispoid", label: "轨迹球体" },
{ type: "addElectricEllispoid", label: "电弧轨迹" },
{ type: "baseimg", label: "高德影像" },
{ type: "basemnormal", label: "高德正常" },
{ type: "baseblue", label: "深色底图" },
{ type: "getEntityByEid", label: "获取Entity根据Eid" },
{ type: "removeEntityByEid", label: "删除Entity根据Eid" },
{ type: "removeAllEntity", label: "删除所有实体" },
{ type: "MeasureDistance", label: "测距离" },
{ type: "MeasureTriangle", label: "测高度" },
{ type: "MeasureArea", label: "测面积" },
{ type: "clearEntandCloseMe", label: "清除状态" },
{ type: "gotoOriginBoundingSphere", label: "初始状态" },
{ type: "setMapbig", label: "放大" },
{ type: "setMapsmall", label: "缩小" },
{ type: "addPolyline3D", label: "添加三维管线" },
{ type: "createBuffer", label: "创建缓冲区" },
{ type: "modelmove", label: "模型移动" },
{ type: "modelmousemove", label: "键盘移动模型" },
{ type: "cmzl", label: "cmzl路径移动模型" },
{ type: "addmodel", label: "根据坐标添加模型" },
{ type: "startmove", label: "开始播放" },
{ type: "endmove", label: "停止播放" },
{ type: "Perspective", label: "设置视角跟随" },
{ type: "concelPerspective", label: "取消视角跟随" },
{ type: "RedCircle", label: "红色闪烁圆" },
{ type: "video", label: "动态视频" },
{ type: "Color", label: "图层颜色调整" },
{ type: "Water", label: "水面" },
{ type: "rotateThr", label: "旋转三角锥" },
{ type: "snow", label: "雪" },
{ type: "frog", label: "雾" },
{ type: "rain", label: "雨" },
{ type: "EarthWater", label: "水面2.0" },
{ type: "customWater", label: "水面3.0" },
{ type: "deleteEarth", label: "删除水面" },
{ type: "getEarthObj", label: "获取earthsdk的要素" },
{ type: "DestoryEarthObj", label: "删除earthsdk的要素" },
{ type: "math", label: "三维计算" },
{ type: "marstile", label: "火星房子" },
{ type: "marscircle", label: "火星圆锥" },
{ type: "addheatmap", label: "添加3D热力图" },
{ type: "removeheatmap", label: "删除3D热力图" }
]
},
mounted() {
threeMapClass.addMakers(this.points, 'Equpoint')
// this.loadBuildsAndWaters()
// this.loadlightbuildAndWaters()
// this.TestloadGeojson('json/供水管线.json', 'rgb(12,206,255)')
// this.TestloadGeojson('json/资阳市(1).json', 'rgb(12,206,255)')
// this.TestloadGeojson('json/乐山市(1).json', 'rgb(12,206,255)')
// this.TestloadPolygonGeojson('json/乐山市.json')
},
methods: {
arrRemoveJson(arr, attr, value) {
if (!arr || arr.length == 0) {
return ""
}
let newArr = arr.filter(function (item, index) {
return item[attr] != value
})
},
EventTool(type) {
if (type === 'addheatmap') {
// let datas = [
// {
// "type": "Feature",
// "id": 1,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.1233462890001,
// 30.270208664000052
// ]
// },
// "properties": {
// "OBJECTID": 1,
// "y": 30.270208664000052,
// "x": 120.1233462890001,
// "value": 74,
// "radius": 370
// }
// },
// {
// "type": "Feature",
// "id": 2,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.12105174500005,
// 30.265836496000077
// ]
// },
// "properties": {
// "OBJECTID": 2,
// "y": 30.265836496000077,
// "x": 120.12105174500005,
// "value": 58,
// "radius": 300
// }
// },
// {
// "type": "Feature",
// "id": 3,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.11703337400002,
// 30.268702171000029
// ]
// },
// "properties": {
// "OBJECTID": 3,
// "y": 30.268702171000029,
// "x": 120.11703337400002,
// "value": 62,
// "radius": 310
// }
// },
// {
// "type": "Feature",
// "id": 4,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.10062745800008,
// 30.266002007000054
// ]
// },
// "properties": {
// "OBJECTID": 4,
// "y": 30.266002007000054,
// "x": 120.10062745800008,
// "value": 36,
// "radius": 180
// }
// },
// {
// "type": "Feature",
// "id": 5,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.00763003700001,
// 30.215223932000072
// ]
// },
// "properties": {
// "OBJECTID": 5,
// "y": 30.215223932000072,
// "x": 120.00763003700001,
// "value": 37,
// "radius": 185
// }
// },
// {
// "type": "Feature",
// "id": 6,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 119.94788576800011,
// 30.253308530000027
// ]
// },
// "properties": {
// "OBJECTID": 6,
// "y": 30.253308530000027,
// "x": 119.94788576800011,
// "value": 80,
// "radius": 400
// }
// },
// {
// "type": "Feature",
// "id": 7,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.05220838900004,
// 30.251759917000072
// ]
// },
// "properties": {
// "OBJECTID": 7,
// "y": 30.251759917000072,
// "x": 120.05220838900004,
// "value": 11,
// "radius": 55
// }
// },
// {
// "type": "Feature",
// "id": 8,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 119.98751026400009,
// 30.237283458000036
// ]
// },
// "properties": {
// "OBJECTID": 8,
// "y": 30.237283458000036,
// "x": 119.98751026400009,
// "value": 79,
// "radius": 395
// }
// },
// {
// "type": "Feature",
// "id": 9,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.09388040400006,
// 30.265030990000071
// ]
// },
// "properties": {
// "OBJECTID": 9,
// "y": 30.265030990000071,
// "x": 120.09388040400006,
// "value": 84,
// "radius": 420
// }
// },
// {
// "type": "Feature",
// "id": 10,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.10804733600003,
// 30.27153491100006
// ]
// },
// "properties": {
// "OBJECTID": 10,
// "y": 30.27153491100006,
// "x": 120.10804733600003,
// "value": 74,
// "radius": 370
// }
// },
// {
// "type": "Feature",
// "id": 11,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.0210154990001,
// 30.239343719000033
// ]
// },
// "properties": {
// "OBJECTID": 11,
// "y": 30.239343719000033,
// "x": 120.0210154990001,
// "value": 14,
// "radius": 70
// }
// },
// {
// "type": "Feature",
// "id": 12,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.01963875000001,
// 30.238527612000041
// ]
// },
// "properties": {
// "OBJECTID": 12,
// "y": 30.238527612000041,
// "x": 120.01963875000001,
// "value": 47,
// "radius": 235
// }
// },
// {
// "type": "Feature",
// "id": 13,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 119.72766431500008,
// 30.236019291000048
// ]
// },
// "properties": {
// "OBJECTID": 13,
// "y": 30.236019291000048,
// "x": 119.72766431500008,
// "value": 88,
// "radius": 440
// }
// },
// {
// "type": "Feature",
// "id": 14,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 119.73743665400002,
// 30.230914895000069
// ]
// },
// "properties": {
// "OBJECTID": 14,
// "y": 30.230914895000069,
// "x": 119.73743665400002,
// "value": 81,
// "radius": 405
// }
// },
// {
// "type": "Feature",
// "id": 15,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.08691411700011,
// 30.280200507000075
// ]
// },
// "properties": {
// "OBJECTID": 15,
// "y": 30.280200507000075,
// "x": 120.08691411700011,
// "value": 43,
// "radius": 215
// }
// },
// {
// "type": "Feature",
// "id": 16,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.08733446100007,
// 30.278890519000072
// ]
// },
// "properties": {
// "OBJECTID": 16,
// "y": 30.278890519000072,
// "x": 120.08733446100007,
// "value": 97,
// "radius": 485
// }
// },
// {
// "type": "Feature",
// "id": 17,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.08748456500007,
// 30.278660501000047
// ]
// },
// "properties": {
// "OBJECTID": 17,
// "y": 30.278660501000047,
// "x": 120.08748456500007,
// "value": 89,
// "radius": 445
// }
// },
// {
// "type": "Feature",
// "id": 18,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.08691396600011,
// 30.281970330000036
// ]
// },
// "properties": {
// "OBJECTID": 18,
// "y": 30.281970330000036,
// "x": 120.08691396600011,
// "value": 15,
// "radius": 75
// }
// },
// {
// "type": "Feature",
// "id": 19,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.08711412700006,
// 30.281360334000055
// ]
// },
// "properties": {
// "OBJECTID": 19,
// "y": 30.281360334000055,
// "x": 120.08711412700006,
// "value": 96,
// "radius": 480
// }
// },
// {
// "type": "Feature",
// "id": 20,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.04549782600009,
// 30.246193318000053
// ]
// },
// "properties": {
// "OBJECTID": 20,
// "y": 30.246193318000053,
// "x": 120.04549782600009,
// "value": 43,
// "radius": 215
// }
// },
// {
// "type": "Feature",
// "id": 21,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.04602707600009,
// 30.245872258000077
// ]
// },
// "properties": {
// "OBJECTID": 21,
// "y": 30.245872258000077,
// "x": 120.04602707600009,
// "value": 57,
// "radius": 285
// }
// },
// {
// "type": "Feature",
// "id": 22,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.0460869310001,
// 30.246552085000076
// ]
// },
// "properties": {
// "OBJECTID": 22,
// "y": 30.246552085000076,
// "x": 120.0460869310001,
// "value": 79,
// "radius": 395
// }
// },
// {
// "type": "Feature",
// "id": 23,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.04495857200004,
// 30.246864382000069
// ]
// },
// "properties": {
// "OBJECTID": 23,
// "y": 30.246864382000069,
// "x": 120.04495857200004,
// "value": 14,
// "radius": 70
// }
// },
// {
// "type": "Feature",
// "id": 24,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.04716532000009,
// 30.247329850000028
// ]
// },
// "properties": {
// "OBJECTID": 24,
// "y": 30.247329850000028,
// "x": 120.04716532000009,
// "value": 63,
// "radius": 315
// }
// },
// {
// "type": "Feature",
// "id": 25,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.0436005250001,
// 30.248327123000024
// ]
// },
// "properties": {
// "OBJECTID": 25,
// "y": 30.248327123000024,
// "x": 120.0436005250001,
// "value": 52,
// "radius": 260
// }
// },
// {
// "type": "Feature",
// "id": 26,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.04589723000004,
// 30.246292491000077
// ]
// },
// "properties": {
// "OBJECTID": 26,
// "y": 30.246292491000077,
// "x": 120.04589723000004,
// "value": 37,
// "radius": 185
// }
// },
// {
// "type": "Feature",
// "id": 27,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.04466896700001,
// 30.247354947000076
// ]
// },
// "properties": {
// "OBJECTID": 27,
// "y": 30.247354947000076,
// "x": 120.04466896700001,
// "value": 66,
// "radius": 330
// }
// },
// {
// "type": "Feature",
// "id": 28,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.04413980900006,
// 30.246946088000072
// ]
// },
// "properties": {
// "OBJECTID": 28,
// "y": 30.246946088000072,
// "x": 120.04413980900006,
// "value": 68,
// "radius": 340
// }
// },
// {
// "type": "Feature",
// "id": 29,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.0468458040001,
// 30.246960518000037
// ]
// },
// "properties": {
// "OBJECTID": 29,
// "y": 30.246960518000037,
// "x": 120.0468458040001,
// "value": 34,
// "radius": 170
// }
// },
// {
// "type": "Feature",
// "id": 30,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.04417965100004,
// 30.24807591800004
// ]
// },
// "properties": {
// "OBJECTID": 30,
// "y": 30.24807591800004,
// "x": 120.04417965100004,
// "value": 35,
// "radius": 175
// }
// },
// {
// "type": "Feature",
// "id": 31,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.04598703000011,
// 30.247102246000054
// ]
// },
// "properties": {
// "OBJECTID": 31,
// "y": 30.247102246000054,
// "x": 120.04598703000011,
// "value": 85,
// "radius": 425
// }
// },
// {
// "type": "Feature",
// "id": 32,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.04303150900012,
// 30.247248422000041
// ]
// },
// "properties": {
// "OBJECTID": 32,
// "y": 30.247248422000041,
// "x": 120.04303150900012,
// "value": 85,
// "radius": 425
// }
// },
// {
// "type": "Feature",
// "id": 33,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.04425955300007,
// 30.247795771000028
// ]
// },
// "properties": {
// "OBJECTID": 33,
// "y": 30.247795771000028,
// "x": 120.04425955300007,
// "value": 63,
// "radius": 315
// }
// },
// {
// "type": "Feature",
// "id": 34,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.04589712400002,
// 30.247532396000054
// ]
// },
// "properties": {
// "OBJECTID": 34,
// "y": 30.247532396000054,
// "x": 120.04589712400002,
// "value": 99,
// "radius": 495
// }
// },
// {
// "type": "Feature",
// "id": 35,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.04666515600002,
// 30.31439937500005
// ]
// },
// "properties": {
// "OBJECTID": 35,
// "y": 30.31439937500005,
// "x": 120.04666515600002,
// "value": 92,
// "radius": 460
// }
// },
// {
// "type": "Feature",
// "id": 36,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.04675510800007,
// 30.313109334000046
// ]
// },
// "properties": {
// "OBJECTID": 36,
// "y": 30.313109334000046,
// "x": 120.04675510800007,
// "value": 30,
// "radius": 150
// }
// },
// {
// "type": "Feature",
// "id": 37,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.12054027500005,
// 30.270565519000058
// ]
// },
// "properties": {
// "OBJECTID": 37,
// "y": 30.270565519000058,
// "x": 120.12054027500005,
// "value": 73,
// "radius": 365
// }
// },
// {
// "type": "Feature",
// "id": 38,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.12103159800006,
// 30.267066364000073
// ]
// },
// "properties": {
// "OBJECTID": 38,
// "y": 30.267066364000073,
// "x": 120.12103159800006,
// "value": 99,
// "radius": 495
// }
// },
// {
// "type": "Feature",
// "id": 39,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.12137228300003,
// 30.26744670000005
// ]
// },
// "properties": {
// "OBJECTID": 39,
// "y": 30.26744670000005,
// "x": 120.12137228300003,
// "value": 32,
// "radius": 160
// }
// },
// {
// "type": "Feature",
// "id": 40,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.11873683900001,
// 30.267573930000026
// ]
// },
// "properties": {
// "OBJECTID": 40,
// "y": 30.267573930000026,
// "x": 120.11873683900001,
// "value": 58,
// "radius": 290
// }
// },
// {
// "type": "Feature",
// "id": 41,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.12263472800009,
// 30.270407832000046
// ]
// },
// "properties": {
// "OBJECTID": 41,
// "y": 30.270407832000046,
// "x": 120.12263472800009,
// "value": 19,
// "radius": 95
// }
// },
// {
// "type": "Feature",
// "id": 42,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.12127171200007,
// 30.27168620100008
// ]
// },
// "properties": {
// "OBJECTID": 42,
// "y": 30.27168620100008,
// "x": 120.12127171200007,
// "value": 100,
// "radius": 500
// }
// },
// {
// "type": "Feature",
// "id": 43,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.12293535300012,
// 30.270708146000061
// ]
// },
// "properties": {
// "OBJECTID": 43,
// "y": 30.270708146000061,
// "x": 120.12293535300012,
// "value": 71,
// "radius": 355
// }
// },
// {
// "type": "Feature",
// "id": 44,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.02372133600011,
// 30.21621779700007
// ]
// },
// "properties": {
// "OBJECTID": 44,
// "y": 30.21621779700007,
// "x": 120.02372133600011,
// "value": 11,
// "radius": 55
// }
// },
// {
// "type": "Feature",
// "id": 45,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.0074486960001,
// 30.236603112000068
// ]
// },
// "properties": {
// "OBJECTID": 45,
// "y": 30.236603112000068,
// "x": 120.0074486960001,
// "value": 62,
// "radius": 310
// }
// },
// {
// "type": "Feature",
// "id": 46,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.02268375200003,
// 30.215140685000051
// ]
// },
// "properties": {
// "OBJECTID": 46,
// "y": 30.215140685000051,
// "x": 120.02268375200003,
// "value": 19,
// "radius": 95
// }
// },
// {
// "type": "Feature",
// "id": 47,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.01625707000005,
// 30.234657459000061
// ]
// },
// "properties": {
// "OBJECTID": 47,
// "y": 30.234657459000061,
// "x": 120.01625707000005,
// "value": 19,
// "radius": 95
// }
// },
// {
// "type": "Feature",
// "id": 48,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.06711424500008,
// 30.271275929000069
// ]
// },
// "properties": {
// "OBJECTID": 48,
// "y": 30.271275929000069,
// "x": 120.06711424500008,
// "value": 82,
// "radius": 410
// }
// },
// {
// "type": "Feature",
// "id": 49,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.07913872600011,
// 30.312300543000049
// ]
// },
// "properties": {
// "OBJECTID": 49,
// "y": 30.312300543000049,
// "x": 120.07913872600011,
// "value": 35,
// "radius": 175
// }
// },
// {
// "type": "Feature",
// "id": 50,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.05500109500008,
// 30.300460323000038
// ]
// },
// "properties": {
// "OBJECTID": 50,
// "y": 30.300460323000038,
// "x": 120.05500109500008,
// "value": 14,
// "radius": 70
// }
// },
// {
// "type": "Feature",
// "id": 51,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.05519594500004,
// 30.288389327000061
// ]
// },
// "properties": {
// "OBJECTID": 51,
// "y": 30.288389327000061,
// "x": 120.05519594500004,
// "value": 36,
// "radius": 180
// }
// },
// {
// "type": "Feature",
// "id": 52,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.08724473300003,
// 30.275100912000028
// ]
// },
// "properties": {
// "OBJECTID": 52,
// "y": 30.275100912000028,
// "x": 120.08724473300003,
// "value": 44,
// "radius": 220
// }
// },
// {
// "type": "Feature",
// "id": 53,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.05649420900011,
// 30.288326819000076
// ]
// },
// "properties": {
// "OBJECTID": 53,
// "y": 30.288326819000076,
// "x": 120.05649420900011,
// "value": 37,
// "radius": 185
// }
// },
// {
// "type": "Feature",
// "id": 54,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.08490309100011,
// 30.280701132000047
// ]
// },
// "properties": {
// "OBJECTID": 54,
// "y": 30.280701132000047,
// "x": 120.08490309100011,
// "value": 96,
// "radius": 480
// }
// },
// {
// "type": "Feature",
// "id": 55,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.05716338000002,
// 30.287855600000057
// ]
// },
// "properties": {
// "OBJECTID": 55,
// "y": 30.287855600000057,
// "x": 120.05716338000002,
// "value": 99,
// "radius": 495
// }
// },
// {
// "type": "Feature",
// "id": 56,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.08071138600008,
// 30.284482739000055
// ]
// },
// "properties": {
// "OBJECTID": 56,
// "y": 30.284482739000055,
// "x": 120.08071138600008,
// "value": 46,
// "radius": 230
// }
// },
// {
// "type": "Feature",
// "id": 57,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.05890813400003,
// 30.29078510100004
// ]
// },
// "properties": {
// "OBJECTID": 57,
// "y": 30.29078510100004,
// "x": 120.05890813400003,
// "value": 35,
// "radius": 175
// }
// },
// {
// "type": "Feature",
// "id": 58,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.05779233400006,
// 30.290764101000036
// ]
// },
// "properties": {
// "OBJECTID": 58,
// "y": 30.290764101000036,
// "x": 120.05779233400006,
// "value": 24,
// "radius": 120
// }
// },
// {
// "type": "Feature",
// "id": 59,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.07552769900008,
// 30.322301868000068
// ]
// },
// "properties": {
// "OBJECTID": 59,
// "y": 30.322301868000068,
// "x": 120.07552769900008,
// "value": 24,
// "radius": 120
// }
// },
// {
// "type": "Feature",
// "id": 60,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.08255819100009,
// 30.327736607000077
// ]
// },
// "properties": {
// "OBJECTID": 60,
// "y": 30.327736607000077,
// "x": 120.08255819100009,
// "value": 68,
// "radius": 340
// }
// },
// {
// "type": "Feature",
// "id": 61,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.08379882000008,
// 30.32544635000005
// ]
// },
// "properties": {
// "OBJECTID": 61,
// "y": 30.32544635000005,
// "x": 120.08379882000008,
// "value": 47,
// "radius": 235
// }
// },
// {
// "type": "Feature",
// "id": 62,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.02734329400005,
// 30.21803802200003
// ]
// },
// "properties": {
// "OBJECTID": 62,
// "y": 30.21803802200003,
// "x": 120.02734329400005,
// "value": 47,
// "radius": 235
// }
// },
// {
// "type": "Feature",
// "id": 63,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.0276227060001,
// 30.217977293000047
// ]
// },
// "properties": {
// "OBJECTID": 63,
// "y": 30.217977293000047,
// "x": 120.0276227060001,
// "value": 74,
// "radius": 370
// }
// },
// {
// "type": "Feature",
// "id": 64,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.02707381800008,
// 30.218628695000064
// ]
// },
// "properties": {
// "OBJECTID": 64,
// "y": 30.218628695000064,
// "x": 120.02707381800008,
// "value": 39,
// "radius": 195
// }
// },
// {
// "type": "Feature",
// "id": 65,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.02772248400004,
// 30.218107025000052
// ]
// },
// "properties": {
// "OBJECTID": 65,
// "y": 30.218107025000052,
// "x": 120.02772248400004,
// "value": 67,
// "radius": 335
// }
// },
// {
// "type": "Feature",
// "id": 66,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.02741310600004,
// 30.218507811000052
// ]
// },
// "properties": {
// "OBJECTID": 66,
// "y": 30.218507811000052,
// "x": 120.02741310600004,
// "value": 28,
// "radius": 140
// }
// },
// {
// "type": "Feature",
// "id": 67,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.02759265300006,
// 30.219357290000062
// ]
// },
// "properties": {
// "OBJECTID": 67,
// "y": 30.219357290000062,
// "x": 120.02759265300006,
// "value": 26,
// "radius": 130
// }
// },
// {
// "type": "Feature",
// "id": 68,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.00849803000006,
// 30.212991475000024
// ]
// },
// "properties": {
// "OBJECTID": 68,
// "y": 30.212991475000024,
// "x": 120.00849803000006,
// "value": 63,
// "radius": 315
// }
// },
// {
// "type": "Feature",
// "id": 69,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 119.99355169500006,
// 30.287425828000039
// ]
// },
// "properties": {
// "OBJECTID": 69,
// "y": 30.287425828000039,
// "x": 119.99355169500006,
// "value": 17,
// "radius": 85
// }
// },
// {
// "type": "Feature",
// "id": 70,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.0635583610001,
// 30.24645249200006
// ]
// },
// "properties": {
// "OBJECTID": 70,
// "y": 30.24645249200006,
// "x": 120.0635583610001,
// "value": 51,
// "radius": 255
// }
// },
// {
// "type": "Feature",
// "id": 71,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.06587697700002,
// 30.246549511000069
// ]
// },
// "properties": {
// "OBJECTID": 71,
// "y": 30.246549511000069,
// "x": 120.06587697700002,
// "value": 92,
// "radius": 460
// }
// },
// {
// "type": "Feature",
// "id": 72,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.06298867800001,
// 30.247173204000035
// ]
// },
// "properties": {
// "OBJECTID": 72,
// "y": 30.247173204000035,
// "x": 120.06298867800001,
// "value": 33,
// "radius": 165
// }
// },
// {
// "type": "Feature",
// "id": 73,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.06598689300006,
// 30.246849353000073
// ]
// },
// "properties": {
// "OBJECTID": 73,
// "y": 30.246849353000073,
// "x": 120.06598689300006,
// "value": 81,
// "radius": 405
// }
// },
// {
// "type": "Feature",
// "id": 74,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.06432115400003,
// 30.32525327500008
// ]
// },
// "properties": {
// "OBJECTID": 74,
// "y": 30.32525327500008,
// "x": 120.06432115400003,
// "value": 44,
// "radius": 220
// }
// },
// {
// "type": "Feature",
// "id": 75,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.0612741220001,
// 30.315048766000075
// ]
// },
// "properties": {
// "OBJECTID": 75,
// "y": 30.315048766000075,
// "x": 120.0612741220001,
// "value": 36,
// "radius": 180
// }
// },
// {
// "type": "Feature",
// "id": 77,
// "geometry": {
// "type": "Point",
// "coordinates": [
// 120.07514788200001,
// 30.320402426000044
// ]
// },
// "properties": {
// "OBJECTID": 77,
// "y": 30.320402426000044,
// "x": 120.07514788200001,
// "value": 67,
// "radius": 335
// }
// },
// {
// "type": "Fea