diff --git a/src/components/MapboxMaps/MapComponent.vue b/src/components/MapboxMaps/MapComponent.vue index 76241591..58940851 100644 --- a/src/components/MapboxMaps/MapComponent.vue +++ b/src/components/MapboxMaps/MapComponent.vue @@ -518,6 +518,7 @@ } } let splitPolygon = currentGeoJson.value; + console.log("splitPolygon",splitPolygon); try{ // let features = polygonCut(splitPolygon,splitLineString,0.1,"meters"); @@ -530,10 +531,10 @@ splitAfterFeatures.features = features; emit("handlerSplitPolygon",features); - handlerDetails(splitAfterFeatures); handlerUnDraw(); }catch(e){ + console.error("EEEE",e); createMessage.warning('分割线起点、终点需要在图斑外'); handlerUnDraw(); } @@ -888,23 +889,7 @@ }; - /** - * - * 查看图斑 - * - * 添加图斑 - * - * 编辑图斑 - * - * status 操作类型 - * - * features 空间数据 - * - * [ - * {id:"8448048304dofhaofh0af0q4",geom:""} - * ] - * - * */ + const handlerDraw = (status:string,features = null, bool = false) => { let geo = { type: 'FeatureCollection', @@ -924,6 +909,7 @@ for (let i = 0; i < features.length; i++) { try { let featureTemp = WktToGeojson(features[i]?.mapgeom); + let feature = { id: generateUUID(), type: 'Feature', @@ -935,6 +921,7 @@ // 获取第一个图斑的中心点跳转定位 if(i == 0){ let lngLat = getGeometryCenter(feature); + // let lngLat = getGeometryCenter(geo.features[0]); currentPosition.value = lngLat; handlerLocation(lngLat); } @@ -945,6 +932,7 @@ } } } + switch(status){ case "Add": handlerInitDrawTool(geo, bool); @@ -960,6 +948,7 @@ } }; + const currentGeoJson = ref({}); const handlerDetails = (geojson,source="detailsSource",layer="detailsLayer",style={lineStyle:{'line-color': '#fcf003','line-width':3},fillStyle:{'fill-color': '#fcf003',"fill-opacity": 0.1}}) => { @@ -967,11 +956,19 @@ let lineLayerName = layer+"Line"; if(source == 'detailsSource'){ + + // 判断是单面还是多面 + let coordinates = null; + if(geojson.features[0].geometry.type == "MultiPolygon"){ + coordinates = geojson.features[0].geometry.coordinates[0]; + }else if(geojson.features[0].geometry.type == "Polygon"){ + coordinates = geojson.features[0].geometry.coordinates; + } let singleFeature = { "type": "Feature", "properties": {}, "geometry": { - "coordinates": geojson.features[0].geometry.coordinates[0], + "coordinates": coordinates, "type": "Polygon" } } diff --git a/src/components/MapboxMaps/MapboxMap.vue b/src/components/MapboxMaps/MapboxMap.vue index f31083f5..e7dd687c 100644 --- a/src/components/MapboxMaps/MapboxMap.vue +++ b/src/components/MapboxMaps/MapboxMap.vue @@ -48,7 +48,7 @@ import { onMounted, onUnmounted, defineProps, reactive, ref, defineExpose } from 'vue'; import { useMessage } from '@/hooks/web/useMessage'; import { Map, Popup } from 'mapbox-gl'; - + import heatGeoJson from './lib/data.json' // 图形绘制工具类 import MapboxDraw from '@mapbox/mapbox-gl-draw'; @@ -205,81 +205,81 @@ } }); - // map.addSource('earthquakes', { - // 'type': 'geojson', - // 'data': {} - // }); + map.addSource('earthquakes', { + 'type': 'geojson', + 'data': heatGeoJson + }); - // map.addLayer( - // { - // 'id': 'earthquakes-heat', - // 'type': 'heatmap', - // 'source': 'earthquakes', - // // 'maxzoom': 18, - // 'minzoom':11, - // 'paint': { - // // Increase the heatmap weight based on frequency and property magnitude - // 'heatmap-weight': [ - // 'interpolate', - // ['linear'], - // ['get', 'mag'], - // 0, - // 1, - // 1, - // 0 - // ], - // // Increase the heatmap color weight weight by zoom level - // // heatmap-intensity is a multiplier on top of heatmap-weight - // 'heatmap-intensity': [ - // 'interpolate', - // ['linear'], - // ['zoom'], - // 0, - // 1, - // 9, - // 3 - // ], - // // Color ramp for heatmap. Domain is 0 (low) to 1 (high). - // // Begin color ramp at 0-stop with a 0-transparancy color - // // to create a blur-like effect. - // 'heatmap-color': [ - // 'interpolate', - // ['linear'], - // ['heatmap-density'], - // 0, - // 'rgba(33,102,172,0)', - // 0.2, - // 'rgb(103,169,207)', - // 0.4, - // 'rgb(209,229,240)', - // 0.6, - // 'rgb(253,219,199)', - // 0.8, - // 'rgb(239,138,98)', - // 1, - // 'rgb(178,24,43)' - // ], - // // Adjust the heatmap radius by zoom level - // 'heatmap-radius': [ - // 'interpolate',['linear'],['zoom'], - // 3, - // 6, - // 9, - // 20 - // ], - // // Transition from heatmap to circle layer by zoom level - // 'heatmap-opacity': [ - // 'interpolate', - // ['linear'], - // ['zoom'], - // 7, - // 1, - // 8, - // 1 - // ] - // } - // } - // ); + map.addLayer( + { + 'id': 'earthquakes-heat', + 'type': 'heatmap', + 'source': 'earthquakes', + // 'maxzoom': 18, + 'minzoom':11, + 'paint': { + // Increase the heatmap weight based on frequency and property magnitude + 'heatmap-weight': [ + 'interpolate', + ['linear'], + ['get', 'mag'], + 0, + 1, + 1, + 0 + ], + // Increase the heatmap color weight weight by zoom level + // heatmap-intensity is a multiplier on top of heatmap-weight + 'heatmap-intensity': [ + 'interpolate', + ['linear'], + ['zoom'], + 0, + 1, + 9, + 3 + ], + // Color ramp for heatmap. Domain is 0 (low) to 1 (high). + // Begin color ramp at 0-stop with a 0-transparancy color + // to create a blur-like effect. + 'heatmap-color': [ + 'interpolate', + ['linear'], + ['heatmap-density'], + 0, + 'rgba(33,102,172,0)', + 0.2, + 'rgb(103,169,207)', + 0.4, + 'rgb(209,229,240)', + 0.6, + 'rgb(253,219,199)', + 0.8, + 'rgb(239,138,98)', + 1, + 'rgb(178,24,43)' + ], + // Adjust the heatmap radius by zoom level + 'heatmap-radius': [ + 'interpolate',['linear'],['zoom'], + 3, + 6, + 9, + 20 + ], + // Transition from heatmap to circle layer by zoom level + 'heatmap-opacity': [ + 'interpolate', + ['linear'], + ['zoom'], + 7, + 1, + 8, + 1 + ] + } + } + ); diff --git a/src/components/MapboxMaps/lib/data.json b/src/components/MapboxMaps/lib/data.json new file mode 100644 index 00000000..9124e2aa --- /dev/null +++ b/src/components/MapboxMaps/lib/data.json @@ -0,0 +1,108475 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12998675, + 35.38194316 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1, + "fid_1": "388", + "orig_fid": "388", + "fid_2": "0", + "mc": "王林村西山蓄水池", + "xsl": "300", + "dz": "王林村西山", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15164329, + 35.37668501 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2, + "fid_1": "354", + "orig_fid": "354", + "fid_2": "3", + "mc": "城子后水库坝式蓄水池修复", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3", + "geometry": { + "type": "Point", + "coordinates": [ + 118.16247495, + 35.36599084 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3, + "fid_1": "218", + "orig_fid": "218", + "fid_2": "5", + "mc": "鲁家围子北山2号坝大口井(坝改井)", + "xsl": "5000", + "dz": "鲁家西山", + "bz": "", + "jczt": "建设中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "塘坝,森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.4", + "geometry": { + "type": "Point", + "coordinates": [ + 118.16339875, + 35.35693363 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 4, + "fid_1": "95", + "orig_fid": "95", + "fid_2": "7", + "mc": "鲁家围子蓄水池", + "xsl": "300", + "dz": "鲁家围子", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.5", + "geometry": { + "type": "Point", + "coordinates": [ + 118.153507, + 35.369431 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 5, + "fid_1": "280", + "orig_fid": "280", + "fid_2": "8", + "mc": "丁旺村蓄水池", + "xsl": "200", + "dz": "丁旺村", + "bz": "", + "jczt": "已建完", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.6", + "geometry": { + "type": "Point", + "coordinates": [ + 118.157411, + 35.369726 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 6, + "fid_1": "284", + "orig_fid": "284", + "fid_2": "9", + "mc": "胜良村蓄水池", + "xsl": "300", + "dz": "胜良村", + "bz": "", + "jczt": "已建完", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.7", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14941939, + 35.37000562 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 7, + "fid_1": "288", + "orig_fid": "288", + "fid_2": "10", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.8", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1385747, + 35.37811777 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 8, + "fid_1": "365", + "orig_fid": "365", + "fid_2": "11", + "mc": "薛庄镇14号蓄水池", + "xsl": "300", + "dz": "王林村大崮300立方米不带盖蓄水池", + "bz": "联系电话:15054977121", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "200", + "appid": "89", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.9", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11856589, + 35.37110306 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 9, + "fid_1": "302", + "orig_fid": "302", + "fid_2": "12", + "mc": "薛庄镇20号蓄水池", + "xsl": "300", + "dz": "通太庄风门里300立方米不带盖蓄水", + "bz": "联系电话:13869924825", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "二分之一", + "appid": "79", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.10", + "geometry": { + "type": "Point", + "coordinates": [ + 118.101566, + 35.378146 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 10, + "fid_1": "366", + "orig_fid": "366", + "fid_2": "14", + "mc": "土山西苍山前蓄水池", + "xsl": "300", + "dz": "土山西苍山前", + "bz": "", + "jczt": "规划中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.11", + "geometry": { + "type": "Point", + "coordinates": [ + 118.134538, + 35.370967 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 11, + "fid_1": "299", + "orig_fid": "299", + "fid_2": "15", + "mc": "王林石龙口蓄水池", + "xsl": "300", + "dz": "王林石龙口", + "bz": "", + "jczt": "已建完", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.12", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20894964, + 35.35425508 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 12, + "fid_1": "66", + "orig_fid": "66", + "fid_2": "16", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.13", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19313469, + 35.35926978 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 13, + "fid_1": "127", + "orig_fid": "127", + "fid_2": "19", + "mc": "西红峪蓄水池", + "xsl": "300", + "dz": "西红峪", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.14", + "geometry": { + "type": "Point", + "coordinates": [ + 118.16693284, + 35.39109119 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 14, + "fid_1": "483", + "orig_fid": "483", + "fid_2": "20", + "mc": "大青山金山峪蓄水池", + "xsl": "300", + "dz": "大青山金山峪", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.15", + "geometry": { + "type": "Point", + "coordinates": [ + 118.16142131, + 35.36308522 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 15, + "fid_1": "174", + "orig_fid": "174", + "fid_2": "22", + "mc": "薛庄镇10号蓄水池", + "xsl": "300", + "dz": "鲁家围子北山3号坝300立方米不带盖", + "bz": "联系电话:15615896185", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.16", + "geometry": { + "type": "Point", + "coordinates": [ + 118.16303303, + 35.36772074 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 16, + "fid_1": "249", + "orig_fid": "249", + "fid_2": "25", + "mc": "薛庄镇9号蓄水池", + "xsl": "300", + "dz": "鲁家围子北山1号坝300立方米不带盖", + "bz": "联系电话:15615896185", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.17", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15796197, + 35.37605093 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 17, + "fid_1": "348", + "orig_fid": "348", + "fid_2": "26", + "mc": "薛庄镇12号蓄水池", + "xsl": "0", + "dz": "胜粮焦燕子300立方米不带盖蓄水池", + "bz": "联系电话:13705395725", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.18", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12631555, + 35.37776559 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 18, + "fid_1": "362", + "orig_fid": "362", + "fid_2": "27", + "mc": "薛庄镇16号蓄水池", + "xsl": "0", + "dz": "王林村西山300立方米不带盖蓄水池", + "bz": "联系电话:15054977121", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.19", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19796844, + 35.34696755 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 19, + "fid_1": "37", + "orig_fid": "37", + "fid_2": "30", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.20", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20650543, + 35.3470992 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 20, + "fid_1": "38", + "orig_fid": "38", + "fid_2": "31", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.21", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22668803, + 35.3683678 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 21, + "fid_1": "264", + "orig_fid": "264", + "fid_2": "34", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 2.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.22", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18258799, + 35.33779288 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 22, + "fid_1": "10", + "orig_fid": "10", + "fid_2": "39", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.23", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17464436, + 35.338458 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 23, + "fid_1": "11", + "orig_fid": "11", + "fid_2": "40", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.24", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17878852, + 35.33876935 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 24, + "fid_1": "12", + "orig_fid": "12", + "fid_2": "41", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.25", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21516777, + 35.36573353 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 25, + "fid_1": "216", + "orig_fid": "216", + "fid_2": "42", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.26", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19590088, + 35.33871131 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 26, + "fid_1": "13", + "orig_fid": "13", + "fid_2": "43", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.27", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19890657, + 35.34917017 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 27, + "fid_1": "41", + "orig_fid": "41", + "fid_2": "44", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.28", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20109235, + 35.33257292 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 28, + "fid_1": "0", + "orig_fid": "0", + "fid_2": "46", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.29", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1933741, + 35.33290259 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 29, + "fid_1": "1", + "orig_fid": "1", + "fid_2": "47", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.30", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19966358, + 35.33437481 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 30, + "fid_1": "2", + "orig_fid": "2", + "fid_2": "48", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.31", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19390977, + 35.33481315 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 31, + "fid_1": "3", + "orig_fid": "3", + "fid_2": "49", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.32", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19084553, + 35.33599844 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 32, + "fid_1": "4", + "orig_fid": "4", + "fid_2": "50", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.33", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18138292, + 35.3364222 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 33, + "fid_1": "5", + "orig_fid": "5", + "fid_2": "51", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.34", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19376298, + 35.33691461 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 34, + "fid_1": "6", + "orig_fid": "6", + "fid_2": "52", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.35", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18594542, + 35.33721485 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 35, + "fid_1": "7", + "orig_fid": "7", + "fid_2": "53", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.36", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17393704, + 35.33699865 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 36, + "fid_1": "8", + "orig_fid": "8", + "fid_2": "54", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.37", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18767149, + 35.33718675 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 37, + "fid_1": "9", + "orig_fid": "9", + "fid_2": "55", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.38", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19163916, + 35.33928564 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 38, + "fid_1": "14", + "orig_fid": "14", + "fid_2": "56", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.39", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19421317, + 35.33946687 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 39, + "fid_1": "15", + "orig_fid": "15", + "fid_2": "57", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.40", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1834088, + 35.34034031 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 40, + "fid_1": "16", + "orig_fid": "16", + "fid_2": "58", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.41", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18638307, + 35.34073432 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 41, + "fid_1": "17", + "orig_fid": "17", + "fid_2": "59", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.42", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19341149, + 35.34099027 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 42, + "fid_1": "18", + "orig_fid": "18", + "fid_2": "60", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.43", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18447064, + 35.34111445 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 43, + "fid_1": "19", + "orig_fid": "19", + "fid_2": "61", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.44", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18701071, + 35.3414623 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 44, + "fid_1": "20", + "orig_fid": "20", + "fid_2": "62", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.45", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18511445, + 35.34143411 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 45, + "fid_1": "21", + "orig_fid": "21", + "fid_2": "63", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.46", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20075874, + 35.34132783 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 46, + "fid_1": "22", + "orig_fid": "22", + "fid_2": "64", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.47", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20624988, + 35.3416213 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 47, + "fid_1": "23", + "orig_fid": "23", + "fid_2": "65", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.48", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18701544, + 35.3419542 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 48, + "fid_1": "24", + "orig_fid": "24", + "fid_2": "66", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.49", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20004343, + 35.34723162 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 49, + "fid_1": "39", + "orig_fid": "39", + "fid_2": "67", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.50", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20020773, + 35.34829901 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 50, + "fid_1": "40", + "orig_fid": "40", + "fid_2": "68", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.51", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19898515, + 35.34229697 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 51, + "fid_1": "25", + "orig_fid": "25", + "fid_2": "69", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.52", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18561858, + 35.34314374 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 52, + "fid_1": "26", + "orig_fid": "26", + "fid_2": "70", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.53", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19557345, + 35.34271863 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 53, + "fid_1": "27", + "orig_fid": "27", + "fid_2": "71", + "mc": "薛庄镇燕窝水库", + "xsl": "110000", + "dz": "同庄村", + "bz": "粘土心墙坝/坝高:6.5", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库大坝", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 2.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.54", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20542813, + 35.34385477 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 54, + "fid_1": "29", + "orig_fid": "29", + "fid_2": "72", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.55", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18053246, + 35.3445368 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 55, + "fid_1": "31", + "orig_fid": "31", + "fid_2": "73", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.56", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18183748, + 35.34467583 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 56, + "fid_1": "32", + "orig_fid": "32", + "fid_2": "74", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.57", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1881846, + 35.34464434 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 57, + "fid_1": "33", + "orig_fid": "33", + "fid_2": "75", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.58", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19659478, + 35.34574543 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 58, + "fid_1": "35", + "orig_fid": "35", + "fid_2": "76", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.59", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20143676, + 35.34526642 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 59, + "fid_1": "36", + "orig_fid": "36", + "fid_2": "77", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.60", + "geometry": { + "type": "Point", + "coordinates": [ + 118.16585769, + 35.34935876 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 60, + "fid_1": "42", + "orig_fid": "42", + "fid_2": "78", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.61", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19372518, + 35.35064536 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 61, + "fid_1": "43", + "orig_fid": "43", + "fid_2": "79", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.62", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17034428, + 35.35084901 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 62, + "fid_1": "46", + "orig_fid": "46", + "fid_2": "80", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.63", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19638961, + 35.35099336 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 63, + "fid_1": "48", + "orig_fid": "48", + "fid_2": "81", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.64", + "geometry": { + "type": "Point", + "coordinates": [ + 118.16872865, + 35.35125314 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 64, + "fid_1": "49", + "orig_fid": "49", + "fid_2": "82", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.65", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1961884, + 35.35151935 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 65, + "fid_1": "52", + "orig_fid": "52", + "fid_2": "83", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.66", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1658778, + 35.35168188 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 66, + "fid_1": "53", + "orig_fid": "53", + "fid_2": "84", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.67", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20051218, + 35.35211365 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 67, + "fid_1": "54", + "orig_fid": "54", + "fid_2": "85", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.68", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17474941, + 35.35282627 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 68, + "fid_1": "55", + "orig_fid": "55", + "fid_2": "86", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.69", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20300213, + 35.35302002 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 69, + "fid_1": "56", + "orig_fid": "56", + "fid_2": "87", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.70", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13264013, + 35.35736421 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 70, + "fid_1": "109", + "orig_fid": "109", + "fid_2": "88", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.71", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21730372, + 35.35808821 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 71, + "fid_1": "117", + "orig_fid": "117", + "fid_2": "89", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.72", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20114085, + 35.3583665 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 72, + "fid_1": "120", + "orig_fid": "120", + "fid_2": "90", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.73", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20489957, + 35.35881569 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 73, + "fid_1": "123", + "orig_fid": "123", + "fid_2": "91", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.74", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21657291, + 35.38325127 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 74, + "fid_1": "398", + "orig_fid": "398", + "fid_2": "92", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.75", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17121519, + 35.34802788 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 75, + "fid_1": "58", + "orig_fid": "58", + "fid_2": "93", + "mc": "薛庄镇高家围子水库", + "xsl": "2700000", + "dz": "高家围子", + "bz": "粘土心墙坝/坝高:21", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库大坝", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 2.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.76", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1747862, + 35.35391023 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 76, + "fid_1": "59", + "orig_fid": "59", + "fid_2": "94", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.77", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2044651, + 35.35279258 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 77, + "fid_1": "65", + "orig_fid": "65", + "fid_2": "95", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.78", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15201024, + 35.35782402 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 78, + "fid_1": "112", + "orig_fid": "112", + "fid_2": "96", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.79", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2037634, + 35.35475701 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 79, + "fid_1": "72", + "orig_fid": "72", + "fid_2": "97", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.80", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21065023, + 35.35551262 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 80, + "fid_1": "78", + "orig_fid": "78", + "fid_2": "98", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.81", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20084656, + 35.35570526 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 81, + "fid_1": "80", + "orig_fid": "80", + "fid_2": "99", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.82", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17326283, + 35.3555807 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 82, + "fid_1": "81", + "orig_fid": "81", + "fid_2": "100", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.83", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15042691, + 35.35576129 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 83, + "fid_1": "87", + "orig_fid": "87", + "fid_2": "101", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.84", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20546239, + 35.35648797 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 84, + "fid_1": "94", + "orig_fid": "94", + "fid_2": "102", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.85", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13379575, + 35.3569259 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 85, + "fid_1": "97", + "orig_fid": "97", + "fid_2": "103", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.86", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13454719, + 35.35712544 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 86, + "fid_1": "104", + "orig_fid": "104", + "fid_2": "104", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.87", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21625058, + 35.35722974 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 87, + "fid_1": "105", + "orig_fid": "105", + "fid_2": "105", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.88", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15247253, + 35.35730937 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 88, + "fid_1": "106", + "orig_fid": "106", + "fid_2": "106", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.89", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20298281, + 35.36203875 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 89, + "fid_1": "157", + "orig_fid": "157", + "fid_2": "107", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.90", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13253276, + 35.35846996 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 90, + "fid_1": "124", + "orig_fid": "124", + "fid_2": "108", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.91", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20464521, + 35.3590296 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 91, + "fid_1": "126", + "orig_fid": "126", + "fid_2": "109", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.92", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20708995, + 35.36002246 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 92, + "fid_1": "137", + "orig_fid": "137", + "fid_2": "110", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.93", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21739346, + 35.36036476 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 93, + "fid_1": "142", + "orig_fid": "142", + "fid_2": "111", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.94", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21033854, + 35.36087215 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 94, + "fid_1": "145", + "orig_fid": "145", + "fid_2": "112", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.95", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14591181, + 35.36117402 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 95, + "fid_1": "150", + "orig_fid": "150", + "fid_2": "113", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.96", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20444302, + 35.36148746 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 96, + "fid_1": "152", + "orig_fid": "152", + "fid_2": "114", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.97", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1718066, + 35.36185605 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 97, + "fid_1": "154", + "orig_fid": "154", + "fid_2": "115", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.98", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21005658, + 35.36207986 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 98, + "fid_1": "158", + "orig_fid": "158", + "fid_2": "116", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.99", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15062318, + 35.36240806 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 99, + "fid_1": "163", + "orig_fid": "163", + "fid_2": "117", + "mc": "丁旺乱石茬坝式蓄水池修复", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.100", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11495777, + 35.36236776 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 100, + "fid_1": "164", + "orig_fid": "164", + "fid_2": "118", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.101", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17294038, + 35.36257916 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 101, + "fid_1": "168", + "orig_fid": "168", + "fid_2": "119", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.102", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22184477, + 35.36270726 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 102, + "fid_1": "178", + "orig_fid": "178", + "fid_2": "120", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.103", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22249901, + 35.36494589 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 103, + "fid_1": "201", + "orig_fid": "201", + "fid_2": "121", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.104", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15090723, + 35.36515417 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 104, + "fid_1": "205", + "orig_fid": "205", + "fid_2": "122", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.105", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15567523, + 35.36518868 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 105, + "fid_1": "207", + "orig_fid": "207", + "fid_2": "123", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.106", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15619635, + 35.36541058 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 106, + "fid_1": "209", + "orig_fid": "209", + "fid_2": "124", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.107", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17468145, + 35.36623527 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 107, + "fid_1": "224", + "orig_fid": "224", + "fid_2": "125", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.108", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15026318, + 35.36740588 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 108, + "fid_1": "243", + "orig_fid": "243", + "fid_2": "126", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.109", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13202073, + 35.3674283 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 109, + "fid_1": "244", + "orig_fid": "244", + "fid_2": "127", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.110", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10288629, + 35.38227732 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 110, + "fid_1": "392", + "orig_fid": "392", + "fid_2": "128", + "mc": "红山西头村南塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.111", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12678483, + 35.36197747 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 111, + "fid_1": "226", + "orig_fid": "226", + "fid_2": "129", + "mc": "薛庄镇王林水库", + "xsl": "1020000", + "dz": "上王林村", + "bz": "粘土心墙坝/坝高:16.5", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库大坝", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.112", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20589043, + 35.36639169 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 112, + "fid_1": "228", + "orig_fid": "228", + "fid_2": "130", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.113", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1511904, + 35.36700142 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 113, + "fid_1": "236", + "orig_fid": "236", + "fid_2": "131", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.114", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21243505, + 35.36734586 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 114, + "fid_1": "240", + "orig_fid": "240", + "fid_2": "132", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.115", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20660066, + 35.36747997 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 115, + "fid_1": "248", + "orig_fid": "248", + "fid_2": "133", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.116", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22774727, + 35.36813747 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 116, + "fid_1": "257", + "orig_fid": "257", + "fid_2": "134", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.117", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14939481, + 35.36796206 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 117, + "fid_1": "258", + "orig_fid": "258", + "fid_2": "135", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.118", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15230216, + 35.36888111 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 118, + "fid_1": "272", + "orig_fid": "272", + "fid_2": "136", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.119", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21560696, + 35.36888118 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 119, + "fid_1": "273", + "orig_fid": "273", + "fid_2": "137", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.120", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12847048, + 35.36936016 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 120, + "fid_1": "281", + "orig_fid": "281", + "fid_2": "138", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.121", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12739773, + 35.36961734 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 121, + "fid_1": "285", + "orig_fid": "285", + "fid_2": "139", + "mc": "王林水库北1号塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.122", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22124837, + 35.3698313 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 122, + "fid_1": "286", + "orig_fid": "286", + "fid_2": "140", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.123", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14683426, + 35.37010046 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 123, + "fid_1": "290", + "orig_fid": "290", + "fid_2": "141", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.124", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20493439, + 35.37008791 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 124, + "fid_1": "291", + "orig_fid": "291", + "fid_2": "142", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.125", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22171985, + 35.37201194 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 125, + "fid_1": "309", + "orig_fid": "309", + "fid_2": "143", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.126", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20200636, + 35.37266035 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 126, + "fid_1": "317", + "orig_fid": "317", + "fid_2": "144", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.127", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21466451, + 35.37947467 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 127, + "fid_1": "375", + "orig_fid": "375", + "fid_2": "145", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.128", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21655788, + 35.37969991 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 128, + "fid_1": "378", + "orig_fid": "378", + "fid_2": "146", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.129", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10707373, + 35.37167229 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 129, + "fid_1": "323", + "orig_fid": "323", + "fid_2": "147", + "mc": "薛庄镇白马峪一水库", + "xsl": "230000", + "dz": "白马峪村", + "bz": "粘土心墙坝/坝高:18", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库大坝", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 3.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.130", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2244766, + 35.37360541 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 130, + "fid_1": "326", + "orig_fid": "326", + "fid_2": "148", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.131", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2110289, + 35.37480613 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 131, + "fid_1": "336", + "orig_fid": "336", + "fid_2": "149", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.132", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21201392, + 35.3748182 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 132, + "fid_1": "340", + "orig_fid": "340", + "fid_2": "150", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.133", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10082076, + 35.37523272 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 133, + "fid_1": "343", + "orig_fid": "343", + "fid_2": "151", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.134", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10371052, + 35.37516369 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 134, + "fid_1": "344", + "orig_fid": "344", + "fid_2": "152", + "mc": "白马峪北山塘坝", + "xsl": "1000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.135", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10028778, + 35.3753391 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 135, + "fid_1": "346", + "orig_fid": "346", + "fid_2": "153", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.136", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21923564, + 35.37582251 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 136, + "fid_1": "349", + "orig_fid": "349", + "fid_2": "154", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.137", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21704567, + 35.3761667 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 137, + "fid_1": "353", + "orig_fid": "353", + "fid_2": "155", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.138", + "geometry": { + "type": "Point", + "coordinates": [ + 118.206558, + 35.37702906 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 138, + "fid_1": "357", + "orig_fid": "357", + "fid_2": "156", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.139", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21543448, + 35.37824772 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 139, + "fid_1": "367", + "orig_fid": "367", + "fid_2": "157", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.140", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21290753, + 35.37887629 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 140, + "fid_1": "373", + "orig_fid": "373", + "fid_2": "158", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.141", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1035191, + 35.38408053 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 141, + "fid_1": "409", + "orig_fid": "409", + "fid_2": "159", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.142", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22245979, + 35.38463874 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 142, + "fid_1": "426", + "orig_fid": "426", + "fid_2": "160", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.143", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21508715, + 35.38571081 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 143, + "fid_1": "431", + "orig_fid": "431", + "fid_2": "161", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.144", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10425666, + 35.38675728 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 144, + "fid_1": "437", + "orig_fid": "437", + "fid_2": "162", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.145", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10202673, + 35.38840984 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 145, + "fid_1": "460", + "orig_fid": "460", + "fid_2": "163", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.146", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10882136, + 35.38875087 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 146, + "fid_1": "463", + "orig_fid": "463", + "fid_2": "164", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.147", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20422574, + 35.38891656 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 147, + "fid_1": "474", + "orig_fid": "474", + "fid_2": "173", + "mc": "薛庄镇小主山水库", + "xsl": "570000", + "dz": "小主山村", + "bz": "均质土坝/坝高:15", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库大坝", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 3.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.148", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14429137, + 35.35798136 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 148, + "fid_1": "177", + "orig_fid": "177", + "fid_2": "188", + "mc": "薛庄镇城子水库", + "xsl": "1700000", + "dz": "丁旺村", + "bz": "粘土心墙坝/坝高:19", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库大坝", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 3.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.149", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17026211, + 35.38999869 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 149, + "fid_1": "472", + "orig_fid": "472", + "fid_2": "189", + "mc": "大青山二道沟蓄水池", + "xsl": "800", + "dz": "大青山二道沟", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.150", + "geometry": { + "type": "Point", + "coordinates": [ + 118.133137, + 35.39136013 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 150, + "fid_1": "489", + "orig_fid": "489", + "fid_2": "190", + "mc": "东黑峪子南1号塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "山地河沟", + "creater_id": "1", + "is_del": 0, + "mag": 2.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.151", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07163449, + 35.39011165 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 151, + "fid_1": "473", + "orig_fid": "473", + "fid_2": "509", + "mc": "薛庄镇33号蓄水池", + "xsl": "300", + "dz": "向阳村鲁家庄300立方米不带盖蓄水", + "bz": "联系电话:13225395982", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.152", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09664957, + 35.37987755 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 152, + "fid_1": "381", + "orig_fid": "381", + "fid_2": "544", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.153", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09334184, + 35.37865141 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 153, + "fid_1": "371", + "orig_fid": "371", + "fid_2": "567", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.154", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09323652, + 35.38050299 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 154, + "fid_1": "383", + "orig_fid": "383", + "fid_2": "569", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.155", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09600934, + 35.38117947 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 155, + "fid_1": "386", + "orig_fid": "386", + "fid_2": "570", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.156", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09732517, + 35.3811131 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 156, + "fid_1": "387", + "orig_fid": "387", + "fid_2": "571", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.157", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08234773, + 35.38401042 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 157, + "fid_1": "408", + "orig_fid": "408", + "fid_2": "572", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.158", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09274502, + 35.38457859 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 158, + "fid_1": "421", + "orig_fid": "421", + "fid_2": "573", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.159", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09146673, + 35.38478574 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 159, + "fid_1": "427", + "orig_fid": "427", + "fid_2": "574", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.160", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09271121, + 35.386907 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 160, + "fid_1": "443", + "orig_fid": "443", + "fid_2": "575", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.161", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09274193, + 35.39105467 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 161, + "fid_1": "488", + "orig_fid": "488", + "fid_2": "576", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.162", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09338146, + 35.39143112 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 162, + "fid_1": "493", + "orig_fid": "493", + "fid_2": "580", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.163", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09915868, + 35.38400962 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 163, + "fid_1": "423", + "orig_fid": "423", + "fid_2": "679", + "mc": "水库", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库水面", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 2.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.164", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09690811, + 35.38403928 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 164, + "fid_1": "429", + "orig_fid": "429", + "fid_2": "680", + "mc": "水库", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库水面", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.165", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13171957, + 35.38091543 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 165, + "fid_1": "384", + "orig_fid": "384", + "fid_2": "703", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.166", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11984724, + 35.37119299 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 166, + "fid_1": "303", + "orig_fid": "303", + "fid_2": "725", + "mc": "薛庄镇22号蓄水池", + "xsl": "300", + "dz": "通太庄上拱坝里蓄水池", + "bz": "联系电话:13869924825", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "二分之一", + "appid": "78", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.167", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21175641, + 35.38224141 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 167, + "fid_1": "389", + "orig_fid": "389", + "fid_2": "726", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.168", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19636775, + 35.35592449 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 168, + "fid_1": "83", + "orig_fid": "83", + "fid_2": "734", + "mc": "北王庄西山蓄水池", + "xsl": "300", + "dz": "北王庄西山", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "30", + "xszt": "少量存", + "appid": "125", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.169", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17700595, + 35.37955651 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 169, + "fid_1": "377", + "orig_fid": "377", + "fid_2": "735", + "mc": "大青山林场五号塘坝", + "xsl": "600", + "dz": "五号塘坝", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "见底少量", + "appid": "257", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.170", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10512458, + 35.3809583 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 170, + "fid_1": "385", + "orig_fid": "385", + "fid_2": "740", + "mc": "土山西蓄水池", + "xsl": "300", + "dz": "土山西", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "234", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.171", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14967194, + 35.37500114 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 171, + "fid_1": "338", + "orig_fid": "338", + "fid_2": "741", + "mc": "翁城子北防火检查点蓄水池", + "xsl": "200", + "dz": "城子村", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "243", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.172", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20957576, + 35.39204192 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 172, + "fid_1": "499", + "orig_fid": "499", + "fid_2": "744", + "mc": "薛庄镇5号蓄水池", + "xsl": "300", + "dz": "主山后村西1.5公里处300立方米蓄水", + "bz": "联系电话:15953982076", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满水", + "appid": "83", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.173", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20309214, + 35.37808924 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 173, + "fid_1": "364", + "orig_fid": "364", + "fid_2": "745", + "mc": "薛庄镇6号蓄水池", + "xsl": "300", + "dz": "新发庄300立方米不带盖蓄水池平", + "bz": "联系电话:13563932778", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "200", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.174", + "geometry": { + "type": "Point", + "coordinates": [ + 118.16549081, + 35.35712408 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 174, + "fid_1": "101", + "orig_fid": "101", + "fid_2": "746", + "mc": "薛庄镇11号蓄水池", + "xsl": "300", + "dz": "鲁家围子蘑菇崖300立方米不带盖蓄", + "bz": "联系电话:15615896185", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满水", + "appid": "232", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.175", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15498983, + 35.36827668 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 175, + "fid_1": "259", + "orig_fid": "259", + "fid_2": "747", + "mc": "薛庄镇13号蓄水池", + "xsl": "300", + "dz": "丁旺青石崖家后300立方米不带盖蓄", + "bz": "联系电话:15853943118", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满水", + "appid": "19", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.176", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13578844, + 35.35541594 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 176, + "fid_1": "75", + "orig_fid": "75", + "fid_2": "748", + "mc": "薛庄镇17号蓄水池", + "xsl": "300", + "dz": "大沟村向阳路北300立方米不带盖蓄", + "bz": "联系电话:13793931870", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "241", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.177", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12716825, + 35.37955245 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 177, + "fid_1": "376", + "orig_fid": "376", + "fid_2": "749", + "mc": "薛庄镇19号蓄水池", + "xsl": "300", + "dz": "黄泥崖西北岔子300立方米不带盖蓄", + "bz": "联系电话:18353957456", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "二分之一", + "appid": "87", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.178", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1188612, + 35.37463206 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 178, + "fid_1": "331", + "orig_fid": "331", + "fid_2": "750", + "mc": "薛庄镇21号蓄水池", + "xsl": "300", + "dz": "通太庄风门里上300立方米不带盖蓄", + "bz": "联系电话:13869924825", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "二分之一", + "appid": "75", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.179", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19706204, + 35.35547477 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 179, + "fid_1": "77", + "orig_fid": "77", + "fid_2": "752", + "mc": "薛庄镇7号蓄水池", + "xsl": "300", + "dz": "北王庄西山300立方米蓄水池", + "bz": "联系电话:15615890806", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "500", + "xszt": "半水", + "appid": "111", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.180", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18472156, + 35.35490982 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 180, + "fid_1": "68", + "orig_fid": "68", + "fid_2": "753", + "mc": "薛庄镇8号蓄水池", + "xsl": "300", + "dz": "上盐店西红峪300立方米蓄水池", + "bz": "联系电话:15552486663,费县山东294米", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满", + "appid": "248", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.181", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13410978, + 35.37059877 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 181, + "fid_1": "296", + "orig_fid": "296", + "fid_2": "754", + "mc": "薛庄镇15号蓄水池", + "xsl": "300", + "dz": "王林石龙口300立方米不带盖蓄水池", + "bz": "联系电话:15054977121", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "满水", + "appid": "238", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.182", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11390545, + 35.38008165 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 182, + "fid_1": "379", + "orig_fid": "379", + "fid_2": "756", + "mc": "薛庄镇34号蓄水池", + "xsl": "300", + "dz": "白马峪张家沟300立方不带盖蓄水池", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "水量较少", + "appid": "15", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.183", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1575591, + 35.36898961 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 183, + "fid_1": "274", + "orig_fid": "274", + "fid_2": "757", + "mc": "胜粮蓄水池", + "xsl": "300", + "dz": "", + "bz": "无转换头", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "", + "appid": "3,18", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.184", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15344155, + 35.36277611 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 184, + "fid_1": "172", + "orig_fid": "172", + "fid_2": "759", + "mc": "丁旺北1号塘坝", + "xsl": "2000", + "dz": "", + "bz": "青石崖塘坝", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "", + "appid": "4", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.185", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15900093, + 35.35728906 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 185, + "fid_1": "111", + "orig_fid": "111", + "fid_2": "760", + "mc": "石龙山庄水库", + "xsl": "6000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "5", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 3.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.186", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1913004, + 35.35896902 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 186, + "fid_1": "128", + "orig_fid": "128", + "fid_2": "761", + "mc": "西红峪子路边水塘", + "xsl": "1000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "有水", + "appid": "8", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.187", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20916717, + 35.37747691 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 187, + "fid_1": "360", + "orig_fid": "360", + "fid_2": "762", + "mc": "马营老蓄水池", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "无水", + "appid": "11", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.188", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2015785, + 35.37433055 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 188, + "fid_1": "330", + "orig_fid": "330", + "fid_2": "766", + "mc": "上塘水塘", + "xsl": "500", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "500", + "xszt": "300", + "appid": "20", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.189", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17915178, + 35.37483042 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 189, + "fid_1": "337", + "orig_fid": "337", + "fid_2": "767", + "mc": "小刘庄北山塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "无水", + "appid": "103", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.190", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18035668, + 35.35496786 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 190, + "fid_1": "70", + "orig_fid": "70", + "fid_2": "769", + "mc": "聚贤庄水坝", + "xsl": "10000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "有水", + "appid": "22", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.191", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12861561, + 35.37376563 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 191, + "fid_1": "333", + "orig_fid": "333", + "fid_2": "770", + "mc": "王林水库北2号塘坝", + "xsl": "8000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "", + "appid": "28", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.192", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13162835, + 35.36137748 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 192, + "fid_1": "160", + "orig_fid": "160", + "fid_2": "772", + "mc": "龙乾水塘", + "xsl": "3000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "29", + "lx": "山地河沟", + "qufen": "山地河沟", + "creater_id": "1", + "is_del": 0, + "mag": 1.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.193", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11034594, + 35.36493682 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 193, + "fid_1": "202", + "orig_fid": "202", + "fid_2": "773", + "mc": "白马峪北山小水塘", + "xsl": "200", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "满水", + "appid": "76", + "lx": "山地河沟", + "qufen": "山地河沟", + "creater_id": "1", + "is_del": 0, + "mag": 2.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.194", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11121929, + 35.36633214 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 194, + "fid_1": "231", + "orig_fid": "231", + "fid_2": "774", + "mc": "白马峪水库东山塘坝", + "xsl": "3000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "三分之二", + "appid": "77", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.195", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13079479, + 35.37210349 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 195, + "fid_1": "313", + "orig_fid": "313", + "fid_2": "775", + "mc": "王林水库北3号塘坝", + "xsl": "500", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "80", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.196", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13172741, + 35.38263005 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 196, + "fid_1": "395", + "orig_fid": "395", + "fid_2": "776", + "mc": "王林水库北4号塘坝", + "xsl": "500", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "三分之二", + "appid": "81", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.197", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14779356, + 35.36896854 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 197, + "fid_1": "278", + "orig_fid": "278", + "fid_2": "777", + "mc": "丁旺蓄水池", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "半水", + "appid": "82", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.198", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14500106, + 35.3703044 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 198, + "fid_1": "298", + "orig_fid": "298", + "fid_2": "778", + "mc": "城子西水库", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "半水", + "appid": "90", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 3.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.199", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1494616, + 35.37693263 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 199, + "fid_1": "358", + "orig_fid": "358", + "fid_2": "779", + "mc": "城子塘坝2", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "91", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.200", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14954492, + 35.37754476 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 200, + "fid_1": "361", + "orig_fid": "361", + "fid_2": "780", + "mc": "城子北塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "500", + "xszt": "满水", + "appid": "92", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.201", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15549022, + 35.36408265 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 201, + "fid_1": "188", + "orig_fid": "188", + "fid_2": "781", + "mc": "丁旺北2号塘坝", + "xsl": "0", + "dz": "", + "bz": "青石崖塘坝", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "93", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.202", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15865801, + 35.36851634 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 202, + "fid_1": "266", + "orig_fid": "266", + "fid_2": "782", + "mc": "蓄水池", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "94", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.203", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15642358, + 35.36531547 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 203, + "fid_1": "208", + "orig_fid": "208", + "fid_2": "784", + "mc": "蓄水池", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "没水", + "appid": "95", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.204", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15784967, + 35.36587792 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 204, + "fid_1": "221", + "orig_fid": "221", + "fid_2": "785", + "mc": "丁旺桂花园", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满水", + "appid": "96", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.205", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15598709, + 35.37292494 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 205, + "fid_1": "320", + "orig_fid": "320", + "fid_2": "786", + "mc": "丁旺北山塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满水", + "appid": "98", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.206", + "geometry": { + "type": "Point", + "coordinates": [ + 118.16492075, + 35.35739329 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 206, + "fid_1": "107", + "orig_fid": "107", + "fid_2": "787", + "mc": "鲁家围子北山塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "无水", + "appid": "99", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.207", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17383038, + 35.36094695 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 207, + "fid_1": "149", + "orig_fid": "149", + "fid_2": "788", + "mc": "小刘庄东塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满水", + "appid": "100", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.208", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17431959, + 35.36196065 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 208, + "fid_1": "155", + "orig_fid": "155", + "fid_2": "789", + "mc": "小刘庄蓄水池", + "xsl": "400", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "半水", + "appid": "101", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.209", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1756237, + 35.36436444 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 209, + "fid_1": "193", + "orig_fid": "193", + "fid_2": "790", + "mc": "小刘庄北水库", + "xsl": "500", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "300", + "appid": "102", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 4.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.210", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17781356, + 35.36834368 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 210, + "fid_1": "261", + "orig_fid": "261", + "fid_2": "791", + "mc": "小刘庄蓄水池", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "104", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.211", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17667922, + 35.36759824 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 211, + "fid_1": "247", + "orig_fid": "247", + "fid_2": "792", + "mc": "小刘庄塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满水", + "appid": "126", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.212", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17151759, + 35.36003057 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 212, + "fid_1": "139", + "orig_fid": "139", + "fid_2": "793", + "mc": "小刘庄庄西水库", + "xsl": "2000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "少量蓄水", + "appid": "105", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 4.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.213", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17738043, + 35.35758678 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 213, + "fid_1": "110", + "orig_fid": "110", + "fid_2": "794", + "mc": "高家围子北山小水库", + "xsl": "3000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "600", + "appid": "106", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.214", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2011863, + 35.3592814 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 214, + "fid_1": "132", + "orig_fid": "132", + "fid_2": "795", + "mc": "东红峪子小水库", + "xsl": "2000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "50", + "xszt": "2000", + "appid": "115", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 0.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.215", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20395439, + 35.36851697 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 215, + "fid_1": "271", + "orig_fid": "271", + "fid_2": "796", + "mc": "家窑水塘", + "xsl": "2000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "500", + "appid": "117", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.216", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17854593, + 35.344587 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 216, + "fid_1": "34", + "orig_fid": "34", + "fid_2": "797", + "mc": "高家围子庄东水库", + "xsl": "10000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "3000", + "appid": "107", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 4.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.217", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18640924, + 35.34342991 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 217, + "fid_1": "28", + "orig_fid": "28", + "fid_2": "798", + "mc": "上盐店防火屋西水塘", + "xsl": "500", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "300", + "appid": "108", + "lx": "实地核实", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 3.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.218", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19022589, + 35.34384075 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 218, + "fid_1": "30", + "orig_fid": "30", + "fid_2": "799", + "mc": "上盐店北防火屋", + "xsl": "500", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "700", + "xszt": "300", + "appid": "109", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 1.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.219", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19938143, + 35.35016327 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 219, + "fid_1": "45", + "orig_fid": "45", + "fid_2": "800", + "mc": "北王庄庄西蓄水池", + "xsl": "2000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "半水", + "appid": "110", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.220", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19349092, + 35.35109343 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 220, + "fid_1": "47", + "orig_fid": "47", + "fid_2": "801", + "mc": "北王庄老果园小水塘", + "xsl": "300", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "半水", + "appid": "112", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 2.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.221", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19005073, + 35.35420035 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 221, + "fid_1": "61", + "orig_fid": "61", + "fid_2": "802", + "mc": "盐店蓄水池", + "xsl": "300", + "dz": "盐店", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "满水", + "appid": "113", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.91 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.222", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19022895, + 35.35804048 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 222, + "fid_1": "115", + "orig_fid": "115", + "fid_2": "803", + "mc": "西红峪子水塘", + "xsl": "1000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "500", + "appid": "114", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 3.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.223", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20730036, + 35.3659108 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 223, + "fid_1": "227", + "orig_fid": "227", + "fid_2": "804", + "mc": "翟家庄东水库", + "xsl": "5000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "500", + "xszt": "1500", + "appid": "116", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 2.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.224", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19655997, + 35.37026523 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 224, + "fid_1": "295", + "orig_fid": "295", + "fid_2": "807", + "mc": "下马窑西山水坝", + "xsl": "2000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "300", + "appid": "118", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.225", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19830493, + 35.37246308 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 225, + "fid_1": "316", + "orig_fid": "316", + "fid_2": "808", + "mc": "上窑小水库", + "xsl": "500", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "满水", + "appid": "119", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 0.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.226", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20680053, + 35.3784099 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 226, + "fid_1": "368", + "orig_fid": "368", + "fid_2": "809", + "mc": "新发庄水塘", + "xsl": "300", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "500", + "xszt": "200", + "appid": "121", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.227", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20659263, + 35.38454644 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 227, + "fid_1": "424", + "orig_fid": "424", + "fid_2": "811", + "mc": "西马营水库", + "xsl": "2000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "500", + "appid": "122", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 4.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.228", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15813034, + 35.37005954 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 228, + "fid_1": "287", + "orig_fid": "287", + "fid_2": "812", + "mc": "青石崖东北蓄水池", + "xsl": "300", + "dz": "胜粮焦燕子", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满水", + "appid": "124", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.229", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17518775, + 35.36566716 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 229, + "fid_1": "214", + "orig_fid": "214", + "fid_2": "814", + "mc": "小刘庄村北塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "半水", + "appid": "127", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.230", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20401235, + 35.37596991 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 230, + "fid_1": "350", + "orig_fid": "350", + "fid_2": "815", + "mc": "上窑庄西水塘", + "xsl": "300", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "400", + "xszt": "150", + "appid": "128", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 1.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.231", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20623678, + 35.38966669 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 231, + "fid_1": "468", + "orig_fid": "468", + "fid_2": "816", + "mc": "主山水库", + "xsl": "700", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "半水", + "appid": "129", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 4.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.232", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10120084, + 35.3786984 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 232, + "fid_1": "370", + "orig_fid": "370", + "fid_2": "823", + "mc": "土山西水库南塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "235", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.233", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20665509, + 35.38234893 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 233, + "fid_1": "390", + "orig_fid": "390", + "fid_2": "824", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.234", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19644963, + 35.3864001 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 234, + "fid_1": "436", + "orig_fid": "436", + "fid_2": "825", + "mc": "西马营村西塘坝生态溢流坝", + "xsl": "500", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "有水", + "appid": "141", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.235", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18952036, + 35.38856707 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 235, + "fid_1": "459", + "orig_fid": "459", + "fid_2": "826", + "mc": "大青山林场侧营寺蓄水池", + "xsl": "300", + "dz": "大青山林场侧营寺", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "少量存水", + "appid": "142", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.236", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10125665, + 35.38005258 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 236, + "fid_1": "382", + "orig_fid": "382", + "fid_2": "827", + "mc": "土山西村南塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "500", + "xszt": "半水", + "appid": "146", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.237", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10874598, + 35.38803159 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 237, + "fid_1": "456", + "orig_fid": "456", + "fid_2": "830", + "mc": "土山西黑店子水库", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满水", + "appid": "149", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 3.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.238", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17777675, + 35.36242389 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 238, + "fid_1": "162", + "orig_fid": "162", + "fid_2": "834", + "mc": "小刘庄东330米塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "283", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.239", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12565572, + 35.37780862 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 239, + "fid_1": "363", + "orig_fid": "363", + "fid_2": "837", + "mc": "薛庄镇18号蓄水池", + "xsl": "300", + "dz": "黄泥崖向阳路北300立方米不带盖蓄水", + "bz": "联系电话:18353957456", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "二分之一", + "appid": "237", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.240", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18893463, + 35.35698821 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 240, + "fid_1": "99", + "orig_fid": "99", + "fid_2": "843", + "mc": "西红峪子塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "半水", + "appid": "170", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.241", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15099083, + 35.35664966 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 241, + "fid_1": "91", + "orig_fid": "91", + "fid_2": "851", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.242", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09974627, + 35.37461067 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 242, + "fid_1": "339", + "orig_fid": "339", + "fid_2": "852", + "mc": "白马峪东北靠近向阳路蓄水池", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "236", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.243", + "geometry": { + "type": "Point", + "coordinates": [ + 118.16100458, + 35.3681615 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 243, + "fid_1": "256", + "orig_fid": "256", + "fid_2": "853", + "mc": "丁旺桂花园北塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "半水", + "appid": "242", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.244", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15357656, + 35.36910915 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 244, + "fid_1": "277", + "orig_fid": "277", + "fid_2": "854", + "mc": "青石崖北蓄水池", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "见底少量", + "appid": "244", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.245", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15577245, + 35.3722822 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 245, + "fid_1": "311", + "orig_fid": "311", + "fid_2": "855", + "mc": "丁山旺北山塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "少量", + "appid": "245", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.246", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15356362, + 35.35974872 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 246, + "fid_1": "131", + "orig_fid": "131", + "fid_2": "856", + "mc": "白十八东北100米", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "246", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.247", + "geometry": { + "type": "Point", + "coordinates": [ + 118.16159207, + 35.35369101 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 247, + "fid_1": "63", + "orig_fid": "63", + "fid_2": "857", + "mc": "鲁家围子水库", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "247", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.248", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20569305, + 35.36488187 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 248, + "fid_1": "200", + "orig_fid": "200", + "fid_2": "861", + "mc": "翟家庄村西531米塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "少量", + "appid": "259", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.249", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19072508, + 35.3501041 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 249, + "fid_1": "44", + "orig_fid": "44", + "fid_2": "863", + "mc": "上盐店水库", + "xsl": "1500", + "dz": "东梁沟南265米", + "bz": "上盐店小山水库坝式蓄水池修复", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "50", + "xszt": "有水", + "appid": "249", + "lx": "塘坝,森林保育水源地,摸排", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 0.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.250", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11696593, + 35.365932 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 250, + "fid_1": "222", + "orig_fid": "222", + "fid_2": "864", + "mc": "鲁家围子北山2号坝", + "xsl": "5000", + "dz": "鲁家围子北山", + "bz": "", + "jczt": "建设中", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "三分之一", + "appid": "86", + "lx": "塘坝,森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.251", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13500083, + 35.36610292 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 251, + "fid_1": "225", + "orig_fid": "225", + "fid_2": "867", + "mc": "中山塘坝下生态溢流坝修复", + "xsl": "0", + "dz": "王林村北500米水库", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "240", + "lx": "水库,森林保育水源地", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 4.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.252", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13506709, + 35.36795046 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 252, + "fid_1": "265", + "orig_fid": "265", + "fid_2": "868", + "mc": "中山子塘坝上生态溢流坝修复", + "xsl": "0", + "dz": "王林村北500米水库", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "239", + "lx": "水库,森林保育水源地", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 0.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.253", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11121767, + 35.37619765 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 253, + "fid_1": "351", + "orig_fid": "351", + "fid_2": "869", + "mc": "白马峪张家沟坝式蓄水池", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "50", + "xszt": "二分之一", + "appid": "74", + "lx": "塘坝,森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.254", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19930277, + 35.38353179 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 254, + "fid_1": "403", + "orig_fid": "403", + "fid_2": "870", + "mc": "西马营西山水坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "满水", + "appid": "123", + "lx": "塘坝,森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.255", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18466858, + 35.38734988 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 255, + "fid_1": "452", + "orig_fid": "452", + "fid_2": "871", + "mc": "大青山林场侧营寺塘坝", + "xsl": "1000", + "dz": "大青山林场侧营寺", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "500", + "appid": "143", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.256", + "geometry": { + "type": "Point", + "coordinates": [ + 118.16204779, + 35.36921391 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 256, + "fid_1": "279", + "orig_fid": "279", + "fid_2": "876", + "mc": "丁旺桂花园", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满水", + "appid": "97", + "lx": "实地核实", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.257", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15144539, + 35.35702887 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 257, + "fid_1": "98", + "orig_fid": "98", + "fid_2": "896", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.258", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10544827, + 35.37245844 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 258, + "fid_1": "312", + "orig_fid": "312", + "fid_2": "937", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.259", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06975949, + 35.39101924 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 259, + "fid_1": "482", + "orig_fid": "482", + "fid_2": "951", + "mc": "青太山前水塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "71", + "lx": "山地河沟", + "qufen": "山地河沟", + "creater_id": "1", + "is_del": 0, + "mag": 1.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.260", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14700014, + 35.35586951 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 260, + "fid_1": "82", + "orig_fid": "82", + "fid_2": "1004", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.261", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13591862, + 35.35598684 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 261, + "fid_1": "84", + "orig_fid": "84", + "fid_2": "1005", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.262", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17079657, + 35.35569568 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 262, + "fid_1": "79", + "orig_fid": "79", + "fid_2": "1006", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.263", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14702234, + 35.35608914 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 263, + "fid_1": "86", + "orig_fid": "86", + "fid_2": "1007", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.264", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1513983, + 35.35610976 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 264, + "fid_1": "85", + "orig_fid": "85", + "fid_2": "1009", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.265", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15062753, + 35.35635195 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 265, + "fid_1": "90", + "orig_fid": "90", + "fid_2": "1010", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.266", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17023129, + 35.35515389 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 266, + "fid_1": "71", + "orig_fid": "71", + "fid_2": "1011", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.267", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1586798, + 35.35530795 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 267, + "fid_1": "76", + "orig_fid": "76", + "fid_2": "1012", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.268", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18240738, + 35.35536039 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 268, + "fid_1": "74", + "orig_fid": "74", + "fid_2": "1013", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.269", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18203077, + 35.35526223 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 269, + "fid_1": "73", + "orig_fid": "73", + "fid_2": "1015", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.270", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15147502, + 35.35688724 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 270, + "fid_1": "100", + "orig_fid": "100", + "fid_2": "1016", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.271", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1517359, + 35.35629152 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 271, + "fid_1": "88", + "orig_fid": "88", + "fid_2": "1017", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.272", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17099571, + 35.35628354 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 272, + "fid_1": "89", + "orig_fid": "89", + "fid_2": "1018", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.273", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11645382, + 35.36490218 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 273, + "fid_1": "199", + "orig_fid": "199", + "fid_2": "1019", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.274", + "geometry": { + "type": "Point", + "coordinates": [ + 118.16574984, + 35.35152439 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 274, + "fid_1": "51", + "orig_fid": "51", + "fid_2": "1020", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.275", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13143343, + 35.359879 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 275, + "fid_1": "134", + "orig_fid": "134", + "fid_2": "1021", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.276", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15234466, + 35.35417304 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 276, + "fid_1": "62", + "orig_fid": "62", + "fid_2": "1022", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.277", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15997178, + 35.35417414 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 277, + "fid_1": "60", + "orig_fid": "60", + "fid_2": "1023", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.278", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15381593, + 35.3542075 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 278, + "fid_1": "64", + "orig_fid": "64", + "fid_2": "1024", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.279", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14726845, + 35.35445517 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 279, + "fid_1": "67", + "orig_fid": "67", + "fid_2": "1025", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.280", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14704621, + 35.35491766 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 280, + "fid_1": "69", + "orig_fid": "69", + "fid_2": "1026", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.281", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13361556, + 35.35725638 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 281, + "fid_1": "103", + "orig_fid": "103", + "fid_2": "1027", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.282", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18844861, + 35.35676271 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 282, + "fid_1": "92", + "orig_fid": "92", + "fid_2": "1028", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.283", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15155384, + 35.35721928 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 283, + "fid_1": "102", + "orig_fid": "102", + "fid_2": "1029", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.284", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19081733, + 35.35681636 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 284, + "fid_1": "93", + "orig_fid": "93", + "fid_2": "1030", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.285", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21922265, + 35.35689833 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 285, + "fid_1": "96", + "orig_fid": "96", + "fid_2": "1031", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.286", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17427821, + 35.35749952 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 286, + "fid_1": "108", + "orig_fid": "108", + "fid_2": "1032", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.287", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13026637, + 35.35758921 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 287, + "fid_1": "113", + "orig_fid": "113", + "fid_2": "1033", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.288", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12519518, + 35.35809321 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 288, + "fid_1": "116", + "orig_fid": "116", + "fid_2": "1034", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.289", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13565646, + 35.35808869 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 289, + "fid_1": "114", + "orig_fid": "114", + "fid_2": "1035", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.290", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15350981, + 35.35834652 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 290, + "fid_1": "118", + "orig_fid": "118", + "fid_2": "1036", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.291", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15935292, + 35.35826003 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 291, + "fid_1": "119", + "orig_fid": "119", + "fid_2": "1037", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.292", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13625176, + 35.35874261 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 292, + "fid_1": "122", + "orig_fid": "122", + "fid_2": "1038", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.293", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1300883, + 35.35914297 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 293, + "fid_1": "129", + "orig_fid": "129", + "fid_2": "1039", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.294", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2130904, + 35.35851101 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 294, + "fid_1": "121", + "orig_fid": "121", + "fid_2": "1040", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.295", + "geometry": { + "type": "Point", + "coordinates": [ + 118.16830001, + 35.35907582 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 295, + "fid_1": "125", + "orig_fid": "125", + "fid_2": "1041", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.296", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12193137, + 35.35967433 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 296, + "fid_1": "130", + "orig_fid": "130", + "fid_2": "1042", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.297", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12882038, + 35.36017883 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 297, + "fid_1": "138", + "orig_fid": "138", + "fid_2": "1043", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.298", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14682004, + 35.36000606 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 298, + "fid_1": "133", + "orig_fid": "133", + "fid_2": "1044", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.299", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13534899, + 35.35992416 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 299, + "fid_1": "136", + "orig_fid": "136", + "fid_2": "1045", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.300", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21944872, + 35.36001707 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 300, + "fid_1": "135", + "orig_fid": "135", + "fid_2": "1046", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.301", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1477002, + 35.3607778 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 301, + "fid_1": "141", + "orig_fid": "141", + "fid_2": "1047", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.302", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19267277, + 35.36043056 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 302, + "fid_1": "140", + "orig_fid": "140", + "fid_2": "1048", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.303", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14809695, + 35.36094059 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 303, + "fid_1": "143", + "orig_fid": "143", + "fid_2": "1049", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.304", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15215352, + 35.36447022 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 304, + "fid_1": "191", + "orig_fid": "191", + "fid_2": "1050", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.305", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14847266, + 35.36106945 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 305, + "fid_1": "144", + "orig_fid": "144", + "fid_2": "1051", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.306", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13831037, + 35.36123386 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 306, + "fid_1": "146", + "orig_fid": "146", + "fid_2": "1052", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.307", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17058136, + 35.36154421 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 307, + "fid_1": "151", + "orig_fid": "151", + "fid_2": "1053", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.91 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.308", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20769348, + 35.36131116 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 308, + "fid_1": "148", + "orig_fid": "148", + "fid_2": "1054", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.309", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21261512, + 35.36128175 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 309, + "fid_1": "147", + "orig_fid": "147", + "fid_2": "1055", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.310", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14831247, + 35.36226957 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 310, + "fid_1": "159", + "orig_fid": "159", + "fid_2": "1056", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.311", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19436125, + 35.36180239 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 311, + "fid_1": "153", + "orig_fid": "153", + "fid_2": "1057", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.312", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14970687, + 35.36221447 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 312, + "fid_1": "161", + "orig_fid": "161", + "fid_2": "1058", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.313", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1497599, + 35.36262697 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 313, + "fid_1": "166", + "orig_fid": "166", + "fid_2": "1059", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.314", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1149557, + 35.36295265 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 314, + "fid_1": "171", + "orig_fid": "171", + "fid_2": "1060", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.315", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21202865, + 35.36206189 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 315, + "fid_1": "156", + "orig_fid": "156", + "fid_2": "1061", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.316", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1697407, + 35.36253374 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 316, + "fid_1": "165", + "orig_fid": "165", + "fid_2": "1062", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.317", + "geometry": { + "type": "Point", + "coordinates": [ + 118.16967943, + 35.36262091 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 317, + "fid_1": "167", + "orig_fid": "167", + "fid_2": "1063", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.318", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14056518, + 35.36294455 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 318, + "fid_1": "169", + "orig_fid": "169", + "fid_2": "1064", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.319", + "geometry": { + "type": "Point", + "coordinates": [ + 118.16098288, + 35.36302083 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 319, + "fid_1": "173", + "orig_fid": "173", + "fid_2": "1065", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.320", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1394069, + 35.36326669 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 320, + "fid_1": "176", + "orig_fid": "176", + "fid_2": "1066", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.321", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17279413, + 35.36297003 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 321, + "fid_1": "170", + "orig_fid": "170", + "fid_2": "1067", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.322", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17152143, + 35.36317126 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 322, + "fid_1": "175", + "orig_fid": "175", + "fid_2": "1068", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.323", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11558195, + 35.36374047 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 323, + "fid_1": "181", + "orig_fid": "181", + "fid_2": "1069", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.324", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11107972, + 35.363876 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 324, + "fid_1": "182", + "orig_fid": "182", + "fid_2": "1070", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.325", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11303047, + 35.36402105 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 325, + "fid_1": "184", + "orig_fid": "184", + "fid_2": "1071", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.326", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17468659, + 35.36358529 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 326, + "fid_1": "179", + "orig_fid": "179", + "fid_2": "1072", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.327", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1335626, + 35.36402999 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 327, + "fid_1": "185", + "orig_fid": "185", + "fid_2": "1073", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.328", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14780207, + 35.36402995 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 328, + "fid_1": "186", + "orig_fid": "186", + "fid_2": "1074", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.329", + "geometry": { + "type": "Point", + "coordinates": [ + 118.16086425, + 35.36409929 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 329, + "fid_1": "187", + "orig_fid": "187", + "fid_2": "1075", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.330", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13420555, + 35.36436849 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 330, + "fid_1": "189", + "orig_fid": "189", + "fid_2": "1076", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.331", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15197185, + 35.36445586 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 331, + "fid_1": "190", + "orig_fid": "190", + "fid_2": "1077", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.332", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22264894, + 35.36364788 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 332, + "fid_1": "180", + "orig_fid": "180", + "fid_2": "1078", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.333", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14679769, + 35.36385376 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 333, + "fid_1": "192", + "orig_fid": "192", + "fid_2": "1079", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.334", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21328758, + 35.36398836 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 334, + "fid_1": "183", + "orig_fid": "183", + "fid_2": "1080", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.335", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14999946, + 35.3647466 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 335, + "fid_1": "194", + "orig_fid": "194", + "fid_2": "1081", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.336", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15116694, + 35.36486247 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 336, + "fid_1": "198", + "orig_fid": "198", + "fid_2": "1082", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.337", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10786132, + 35.36553551 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 337, + "fid_1": "211", + "orig_fid": "211", + "fid_2": "1083", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.338", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19362474, + 35.39058712 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 338, + "fid_1": "476", + "orig_fid": "476", + "fid_2": "1084", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.339", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14752569, + 35.36478814 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 339, + "fid_1": "203", + "orig_fid": "203", + "fid_2": "1085", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.340", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1615488, + 35.36522467 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 340, + "fid_1": "204", + "orig_fid": "204", + "fid_2": "1086", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.341", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10760736, + 35.36576746 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 341, + "fid_1": "213", + "orig_fid": "213", + "fid_2": "1087", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.342", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22308851, + 35.3647268 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 342, + "fid_1": "195", + "orig_fid": "195", + "fid_2": "1088", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.343", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22247075, + 35.36469656 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 343, + "fid_1": "196", + "orig_fid": "196", + "fid_2": "1089", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.344", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21731043, + 35.36482213 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 344, + "fid_1": "197", + "orig_fid": "197", + "fid_2": "1090", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.345", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17638359, + 35.36523774 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 345, + "fid_1": "206", + "orig_fid": "206", + "fid_2": "1091", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.346", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15317772, + 35.36560046 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 346, + "fid_1": "212", + "orig_fid": "212", + "fid_2": "1092", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.347", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17742462, + 35.36552295 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 347, + "fid_1": "210", + "orig_fid": "210", + "fid_2": "1093", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.348", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15741407, + 35.36587185 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 348, + "fid_1": "215", + "orig_fid": "215", + "fid_2": "1094", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.349", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14546007, + 35.36602696 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 349, + "fid_1": "219", + "orig_fid": "219", + "fid_2": "1095", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.350", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13492911, + 35.36652599 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 350, + "fid_1": "229", + "orig_fid": "229", + "fid_2": "1096", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.351", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20928813, + 35.36593161 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 351, + "fid_1": "217", + "orig_fid": "217", + "fid_2": "1097", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.352", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12948059, + 35.36663431 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 352, + "fid_1": "230", + "orig_fid": "230", + "fid_2": "1098", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.353", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1483462, + 35.36670468 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 353, + "fid_1": "232", + "orig_fid": "232", + "fid_2": "1099", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.354", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21390847, + 35.3657249 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 354, + "fid_1": "223", + "orig_fid": "223", + "fid_2": "1100", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.355", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22391291, + 35.3661315 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 355, + "fid_1": "220", + "orig_fid": "220", + "fid_2": "1101", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.356", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13621383, + 35.36722529 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 356, + "fid_1": "238", + "orig_fid": "238", + "fid_2": "1102", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.357", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1493229, + 35.36714218 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 357, + "fid_1": "237", + "orig_fid": "237", + "fid_2": "1103", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.358", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15990487, + 35.36725953 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 358, + "fid_1": "239", + "orig_fid": "239", + "fid_2": "1104", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.359", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14855056, + 35.36721752 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 359, + "fid_1": "241", + "orig_fid": "241", + "fid_2": "1105", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.360", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15321083, + 35.36719646 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 360, + "fid_1": "242", + "orig_fid": "242", + "fid_2": "1106", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.361", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21211685, + 35.36672646 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 361, + "fid_1": "235", + "orig_fid": "235", + "fid_2": "1107", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.362", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22491621, + 35.36676636 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 362, + "fid_1": "233", + "orig_fid": "233", + "fid_2": "1108", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.363", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22482374, + 35.3669187 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 363, + "fid_1": "234", + "orig_fid": "234", + "fid_2": "1109", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.364", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14883081, + 35.36764334 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 364, + "fid_1": "246", + "orig_fid": "246", + "fid_2": "1110", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.365", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12797823, + 35.36789825 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 365, + "fid_1": "253", + "orig_fid": "253", + "fid_2": "1111", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.366", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13226057, + 35.36790433 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 366, + "fid_1": "252", + "orig_fid": "252", + "fid_2": "1112", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.367", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22536712, + 35.36739128 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 367, + "fid_1": "245", + "orig_fid": "245", + "fid_2": "1113", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.368", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14312049, + 35.36830101 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 368, + "fid_1": "260", + "orig_fid": "260", + "fid_2": "1114", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.369", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21546885, + 35.36772836 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 369, + "fid_1": "250", + "orig_fid": "250", + "fid_2": "1115", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.370", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21670386, + 35.36721018 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 370, + "fid_1": "251", + "orig_fid": "251", + "fid_2": "1116", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.371", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14287672, + 35.36858721 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 371, + "fid_1": "267", + "orig_fid": "267", + "fid_2": "1117", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.372", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13545017, + 35.36866229 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 372, + "fid_1": "268", + "orig_fid": "268", + "fid_2": "1118", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.373", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21550646, + 35.36795137 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 373, + "fid_1": "254", + "orig_fid": "254", + "fid_2": "1119", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.374", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14466009, + 35.36880141 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 374, + "fid_1": "270", + "orig_fid": "270", + "fid_2": "1120", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.375", + "geometry": { + "type": "Point", + "coordinates": [ + 118.17779193, + 35.37194891 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 375, + "fid_1": "306", + "orig_fid": "306", + "fid_2": "1121", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.376", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22577777, + 35.36800569 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 376, + "fid_1": "255", + "orig_fid": "255", + "fid_2": "1122", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.377", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14108627, + 35.36901183 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 377, + "fid_1": "275", + "orig_fid": "275", + "fid_2": "1123", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.378", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20982275, + 35.36763 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 378, + "fid_1": "262", + "orig_fid": "262", + "fid_2": "1124", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.379", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22519357, + 35.36837631 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 379, + "fid_1": "263", + "orig_fid": "263", + "fid_2": "1125", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.380", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19781561, + 35.3725367 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 380, + "fid_1": "314", + "orig_fid": "314", + "fid_2": "1126", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.381", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22311055, + 35.36869799 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 381, + "fid_1": "269", + "orig_fid": "269", + "fid_2": "1127", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.382", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19465422, + 35.3690442 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 382, + "fid_1": "276", + "orig_fid": "276", + "fid_2": "1128", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.383", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14384391, + 35.36966798 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 383, + "fid_1": "283", + "orig_fid": "283", + "fid_2": "1129", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.384", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10486448, + 35.3701125 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 384, + "fid_1": "289", + "orig_fid": "289", + "fid_2": "1130", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.385", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10441982, + 35.37047021 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 385, + "fid_1": "294", + "orig_fid": "294", + "fid_2": "1131", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.386", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20801497, + 35.36901919 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 386, + "fid_1": "282", + "orig_fid": "282", + "fid_2": "1132", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.387", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14830191, + 35.37078072 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 387, + "fid_1": "297", + "orig_fid": "297", + "fid_2": "1133", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.388", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13836058, + 35.37106185 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 388, + "fid_1": "301", + "orig_fid": "301", + "fid_2": "1134", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.389", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20722052, + 35.36978932 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 389, + "fid_1": "293", + "orig_fid": "293", + "fid_2": "1135", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.390", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22299801, + 35.36893772 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 390, + "fid_1": "292", + "orig_fid": "292", + "fid_2": "1136", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.391", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14622001, + 35.37120107 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 391, + "fid_1": "304", + "orig_fid": "304", + "fid_2": "1137", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.392", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20707043, + 35.37067103 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 392, + "fid_1": "300", + "orig_fid": "300", + "fid_2": "1138", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.393", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1452637, + 35.37195294 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 393, + "fid_1": "305", + "orig_fid": "305", + "fid_2": "1139", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.394", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20638342, + 35.37184983 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 394, + "fid_1": "307", + "orig_fid": "307", + "fid_2": "1140", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.395", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13518294, + 35.37281756 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 395, + "fid_1": "318", + "orig_fid": "318", + "fid_2": "1141", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.396", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20738819, + 35.37172049 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 396, + "fid_1": "308", + "orig_fid": "308", + "fid_2": "1142", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.397", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2005193, + 35.37230619 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 397, + "fid_1": "310", + "orig_fid": "310", + "fid_2": "1143", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.398", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20181117, + 35.3725175 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 398, + "fid_1": "315", + "orig_fid": "315", + "fid_2": "1144", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.399", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19436107, + 35.37273923 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 399, + "fid_1": "319", + "orig_fid": "319", + "fid_2": "1146", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.400", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20452994, + 35.37279912 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 400, + "fid_1": "322", + "orig_fid": "322", + "fid_2": "1147", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.401", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22726491, + 35.37297119 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 401, + "fid_1": "321", + "orig_fid": "321", + "fid_2": "1148", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.402", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22420123, + 35.37389212 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 402, + "fid_1": "324", + "orig_fid": "324", + "fid_2": "1149", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.403", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20680145, + 35.3740439 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 403, + "fid_1": "327", + "orig_fid": "327", + "fid_2": "1150", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.404", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20074428, + 35.37435936 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 404, + "fid_1": "328", + "orig_fid": "328", + "fid_2": "1151", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.405", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18426704, + 35.37456309 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 405, + "fid_1": "332", + "orig_fid": "332", + "fid_2": "1152", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.406", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20380027, + 35.37453873 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 406, + "fid_1": "329", + "orig_fid": "329", + "fid_2": "1153", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.407", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11910371, + 35.37543418 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 407, + "fid_1": "345", + "orig_fid": "345", + "fid_2": "1154", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.408", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11041103, + 35.37565244 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 408, + "fid_1": "347", + "orig_fid": "347", + "fid_2": "1155", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.409", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19991695, + 35.37486101 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 409, + "fid_1": "335", + "orig_fid": "335", + "fid_2": "1156", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.410", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2006376, + 35.37519498 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 410, + "fid_1": "342", + "orig_fid": "342", + "fid_2": "1157", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.411", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22089946, + 35.37516058 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 411, + "fid_1": "341", + "orig_fid": "341", + "fid_2": "1158", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.412", + "geometry": { + "type": "Point", + "coordinates": [ + 118.15794033, + 35.37641094 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 412, + "fid_1": "352", + "orig_fid": "352", + "fid_2": "1159", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.413", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10189729, + 35.37695439 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 413, + "fid_1": "355", + "orig_fid": "355", + "fid_2": "1160", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.414", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19793224, + 35.37713049 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 414, + "fid_1": "356", + "orig_fid": "356", + "fid_2": "1161", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.415", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19825685, + 35.3771869 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 415, + "fid_1": "359", + "orig_fid": "359", + "fid_2": "1162", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.416", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22256861, + 35.37875105 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 416, + "fid_1": "369", + "orig_fid": "369", + "fid_2": "1163", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.417", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21167808, + 35.38242675 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 417, + "fid_1": "391", + "orig_fid": "391", + "fid_2": "1164", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.418", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21203535, + 35.38291215 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 418, + "fid_1": "396", + "orig_fid": "396", + "fid_2": "1165", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.419", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21678465, + 35.38313489 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 419, + "fid_1": "397", + "orig_fid": "397", + "fid_2": "1166", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.420", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21164853, + 35.38336282 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 420, + "fid_1": "399", + "orig_fid": "399", + "fid_2": "1167", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.421", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22316624, + 35.38711908 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 421, + "fid_1": "440", + "orig_fid": "440", + "fid_2": "1168", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.422", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21855817, + 35.38353379 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 422, + "fid_1": "401", + "orig_fid": "401", + "fid_2": "1170", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.423", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22134696, + 35.38358807 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 423, + "fid_1": "400", + "orig_fid": "400", + "fid_2": "1171", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.424", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22233838, + 35.38305812 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 424, + "fid_1": "402", + "orig_fid": "402", + "fid_2": "1172", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.425", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21145845, + 35.38388102 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 425, + "fid_1": "405", + "orig_fid": "405", + "fid_2": "1173", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.426", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21233762, + 35.38342446 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 426, + "fid_1": "404", + "orig_fid": "404", + "fid_2": "1174", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.427", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21224225, + 35.38383367 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 427, + "fid_1": "406", + "orig_fid": "406", + "fid_2": "1175", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.428", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20950349, + 35.38414702 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 428, + "fid_1": "411", + "orig_fid": "411", + "fid_2": "1176", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.429", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20925573, + 35.38426787 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 429, + "fid_1": "412", + "orig_fid": "412", + "fid_2": "1177", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.430", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2098309, + 35.38422964 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 430, + "fid_1": "413", + "orig_fid": "413", + "fid_2": "1178", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.431", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21296433, + 35.38710773 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 431, + "fid_1": "441", + "orig_fid": "441", + "fid_2": "1179", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.432", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21065967, + 35.38419894 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 432, + "fid_1": "414", + "orig_fid": "414", + "fid_2": "1180", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.433", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22295866, + 35.38405562 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 433, + "fid_1": "407", + "orig_fid": "407", + "fid_2": "1181", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.434", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19954905, + 35.38431199 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 434, + "fid_1": "418", + "orig_fid": "418", + "fid_2": "1182", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.435", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20843838, + 35.38429503 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 435, + "fid_1": "416", + "orig_fid": "416", + "fid_2": "1183", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.436", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22120241, + 35.38417546 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 436, + "fid_1": "410", + "orig_fid": "410", + "fid_2": "1184", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.437", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2136906, + 35.38428555 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 437, + "fid_1": "415", + "orig_fid": "415", + "fid_2": "1185", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.438", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2209142, + 35.38426005 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 438, + "fid_1": "417", + "orig_fid": "417", + "fid_2": "1186", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.439", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21386712, + 35.38439701 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 439, + "fid_1": "419", + "orig_fid": "419", + "fid_2": "1187", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.440", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22147568, + 35.38425233 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 440, + "fid_1": "420", + "orig_fid": "420", + "fid_2": "1188", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.441", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21450259, + 35.38490052 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 441, + "fid_1": "422", + "orig_fid": "422", + "fid_2": "1189", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.442", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21474871, + 35.38504697 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 442, + "fid_1": "425", + "orig_fid": "425", + "fid_2": "1190", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.443", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20011643, + 35.38493028 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 443, + "fid_1": "428", + "orig_fid": "428", + "fid_2": "1191", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.444", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22441935, + 35.38592033 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 444, + "fid_1": "430", + "orig_fid": "430", + "fid_2": "1192", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.445", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18544003, + 35.3864708 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 445, + "fid_1": "434", + "orig_fid": "434", + "fid_2": "1193", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.446", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20369718, + 35.38632281 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 446, + "fid_1": "432", + "orig_fid": "432", + "fid_2": "1194", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.447", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10332439, + 35.38723662 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 447, + "fid_1": "445", + "orig_fid": "445", + "fid_2": "1195", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.448", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22007057, + 35.38647295 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 448, + "fid_1": "433", + "orig_fid": "433", + "fid_2": "1196", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.449", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22048572, + 35.38657305 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 449, + "fid_1": "435", + "orig_fid": "435", + "fid_2": "1197", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.450", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18803189, + 35.38707319 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 450, + "fid_1": "439", + "orig_fid": "439", + "fid_2": "1198", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.451", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18952297, + 35.38712906 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 451, + "fid_1": "442", + "orig_fid": "442", + "fid_2": "1199", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.452", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21542206, + 35.38677204 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 452, + "fid_1": "438", + "orig_fid": "438", + "fid_2": "1200", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.453", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20638634, + 35.3874718 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 453, + "fid_1": "446", + "orig_fid": "446", + "fid_2": "1201", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.454", + "geometry": { + "type": "Point", + "coordinates": [ + 118.18728926, + 35.38770658 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 454, + "fid_1": "450", + "orig_fid": "450", + "fid_2": "1202", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.455", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20114886, + 35.38756103 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 455, + "fid_1": "448", + "orig_fid": "448", + "fid_2": "1203", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.456", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19193248, + 35.38782923 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 456, + "fid_1": "453", + "orig_fid": "453", + "fid_2": "1204", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.457", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22521459, + 35.38747922 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 457, + "fid_1": "447", + "orig_fid": "447", + "fid_2": "1205", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.458", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21063353, + 35.38772938 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 458, + "fid_1": "451", + "orig_fid": "451", + "fid_2": "1206", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.459", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12402871, + 35.38858547 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 459, + "fid_1": "458", + "orig_fid": "458", + "fid_2": "1207", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.460", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19400008, + 35.38786399 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 460, + "fid_1": "454", + "orig_fid": "454", + "fid_2": "1208", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.461", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2106012, + 35.38808869 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 461, + "fid_1": "455", + "orig_fid": "455", + "fid_2": "1209", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.462", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19917087, + 35.38856859 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 462, + "fid_1": "457", + "orig_fid": "457", + "fid_2": "1210", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.463", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19664615, + 35.38875035 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 463, + "fid_1": "462", + "orig_fid": "462", + "fid_2": "1211", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.464", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2255549, + 35.38857669 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 464, + "fid_1": "461", + "orig_fid": "461", + "fid_2": "1213", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.465", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10634756, + 35.38994825 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 465, + "fid_1": "471", + "orig_fid": "471", + "fid_2": "1214", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.466", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20579926, + 35.38908808 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 466, + "fid_1": "466", + "orig_fid": "466", + "fid_2": "1215", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.467", + "geometry": { + "type": "Point", + "coordinates": [ + 118.23216789, + 35.3890412 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 467, + "fid_1": "464", + "orig_fid": "464", + "fid_2": "1216", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.468", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22376619, + 35.38878564 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 468, + "fid_1": "467", + "orig_fid": "467", + "fid_2": "1217", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.469", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14410777, + 35.39057246 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 469, + "fid_1": "475", + "orig_fid": "475", + "fid_2": "1219", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.470", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14405954, + 35.39104767 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 470, + "fid_1": "484", + "orig_fid": "484", + "fid_2": "1220", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.471", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20731805, + 35.39055024 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 471, + "fid_1": "478", + "orig_fid": "478", + "fid_2": "1221", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.472", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21077109, + 35.39068112 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 472, + "fid_1": "479", + "orig_fid": "479", + "fid_2": "1222", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.473", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12210949, + 35.39164197 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 473, + "fid_1": "494", + "orig_fid": "494", + "fid_2": "1223", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.474", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21094543, + 35.3911794 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 474, + "fid_1": "486", + "orig_fid": "486", + "fid_2": "1224", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.475", + "geometry": { + "type": "Point", + "coordinates": [ + 118.23339697, + 35.39100099 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 475, + "fid_1": "480", + "orig_fid": "480", + "fid_2": "1225", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.476", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22637069, + 35.39086544 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 476, + "fid_1": "481", + "orig_fid": "481", + "fid_2": "1226", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.477", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21182858, + 35.39114649 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 477, + "fid_1": "487", + "orig_fid": "487", + "fid_2": "1227", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.478", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14101013, + 35.39198657 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 478, + "fid_1": "496", + "orig_fid": "496", + "fid_2": "1228", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.479", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22527856, + 35.39067236 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 479, + "fid_1": "485", + "orig_fid": "485", + "fid_2": "1230", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.480", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1357175, + 35.39203783 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 480, + "fid_1": "500", + "orig_fid": "500", + "fid_2": "1231", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.481", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20837027, + 35.39142822 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 481, + "fid_1": "490", + "orig_fid": "490", + "fid_2": "1232", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.482", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20871083, + 35.39150036 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 482, + "fid_1": "491", + "orig_fid": "491", + "fid_2": "1233", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.483", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2119526, + 35.391564 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 483, + "fid_1": "492", + "orig_fid": "492", + "fid_2": "1234", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.484", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20556714, + 35.39206551 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 484, + "fid_1": "498", + "orig_fid": "498", + "fid_2": "1241", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.485", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21281249, + 35.39166463 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 485, + "fid_1": "497", + "orig_fid": "497", + "fid_2": "1243", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.486", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22658582, + 35.39145959 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 486, + "fid_1": "495", + "orig_fid": "495", + "fid_2": "1245", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.487", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10636452, + 35.39066727 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 487, + "fid_1": "477", + "orig_fid": "477", + "fid_2": "1513", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.488", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10942896, + 35.37484438 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 488, + "fid_1": "334", + "orig_fid": "334", + "fid_2": "1514", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.489", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10511932, + 35.37402853 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 489, + "fid_1": "325", + "orig_fid": "325", + "fid_2": "1515", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.490", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12513161, + 35.38726279 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 490, + "fid_1": "444", + "orig_fid": "444", + "fid_2": "1516", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.491", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10190445, + 35.38989316 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 491, + "fid_1": "470", + "orig_fid": "470", + "fid_2": "1518", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.492", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10283392, + 35.38917344 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 492, + "fid_1": "465", + "orig_fid": "465", + "fid_2": "1519", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.493", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11314211, + 35.3876222 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 493, + "fid_1": "449", + "orig_fid": "449", + "fid_2": "1520", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.494", + "geometry": { + "type": "Point", + "coordinates": [ + 118.16905246, + 35.35319862 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 494, + "fid_1": "57", + "orig_fid": "57", + "fid_2": "1521", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.495", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1371031, + 35.38986859 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 495, + "fid_1": "469", + "orig_fid": "469", + "fid_2": "1522", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.496", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09829363, + 35.37908283 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 496, + "fid_1": "372", + "orig_fid": "372", + "fid_2": "2563", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.497", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09454865, + 35.37940985 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 497, + "fid_1": "374", + "orig_fid": "374", + "fid_2": "2571", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.498", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09170034, + 35.38008491 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 498, + "fid_1": "380", + "orig_fid": "380", + "fid_2": "2588", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.499", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10035379, + 35.38271585 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 499, + "fid_1": "393", + "orig_fid": "393", + "fid_2": "2589", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.500", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09621763, + 35.38283602 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 500, + "fid_1": "394", + "orig_fid": "394", + "fid_2": "2590", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.501", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13179928, + 35.40335826 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 501, + "fid_1": "736", + "orig_fid": "736", + "fid_2": "1", + "mc": "老驴脖蓄水池", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.502", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11807915, + 35.42504486 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 502, + "fid_1": "985", + "orig_fid": "985", + "fid_2": "2", + "mc": "竹篮子大山顶蓄水池", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.503", + "geometry": { + "type": "Point", + "coordinates": [ + 118.14003474, + 35.40396814 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 503, + "fid_1": "744", + "orig_fid": "744", + "fid_2": "6", + "mc": "大青山大露口塘坝", + "xsl": "50", + "dz": "大青山大露口", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.504", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09369145, + 35.41371069 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 504, + "fid_1": "842", + "orig_fid": "842", + "fid_2": "568", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.505", + "geometry": { + "type": "Point", + "coordinates": [ + 118.104872, + 35.424016 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 505, + "fid_1": "965", + "orig_fid": "965", + "fid_2": "13", + "mc": "沙沟峪罗石沟蓄水池", + "xsl": "300", + "dz": "沙沟峪罗石沟", + "bz": "", + "jczt": "建设中", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.506", + "geometry": { + "type": "Point", + "coordinates": [ + 118.23400088, + 35.39159824 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 506, + "fid_1": "522", + "orig_fid": "522", + "fid_2": "17", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 2.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.507", + "geometry": { + "type": "Point", + "coordinates": [ + 118.209898, + 35.392757 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 507, + "fid_1": "519", + "orig_fid": "519", + "fid_2": "18", + "mc": "主山后村西蓄水池", + "xsl": "300", + "dz": "主山后村西", + "bz": "", + "jczt": "已建完", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.508", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20034809, + 35.40829143 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 508, + "fid_1": "797", + "orig_fid": "797", + "fid_2": "21", + "mc": "薛庄镇4号蓄水池", + "xsl": "0", + "dz": "北桃园邵泽强山场300立方米蓄水池", + "bz": "联系电话:15315395838", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.509", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11197332, + 35.42090434 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 509, + "fid_1": "927", + "orig_fid": "927", + "fid_2": "28", + "mc": "薛庄镇25号蓄水池", + "xsl": "200", + "dz": "火山后1混泥土蓄水池200方", + "bz": "联系电话:15964872720", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.510", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12106495, + 35.42334388 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 510, + "fid_1": "954", + "orig_fid": "954", + "fid_2": "29", + "mc": "薛庄镇35号蓄水池", + "xsl": "0", + "dz": "南竹岚子西山", + "bz": "规格:10*10*3", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.511", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03446689, + 35.42502156 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 511, + "fid_1": "980", + "orig_fid": "980", + "fid_2": "32", + "mc": "河北崖山里人家水塘", + "xsl": "100", + "dz": "河北崖山里人家", + "bz": "", + "jczt": "已建成", + "sfhs": "核实", + "kyzt": "", + "sfzcsb": "支持", + "jlstjl": "210", + "xszt": "", + "appid": "", + "lx": "水塘", + "qufen": "", + "creater_id": "", + "is_del": 0, + "mag": 1.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.512", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03446046, + 35.42506524 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 512, + "fid_1": "983", + "orig_fid": "983", + "fid_2": "32", + "mc": "河北崖山里人家水塘", + "xsl": "100", + "dz": "河北崖山里人家", + "bz": "", + "jczt": "已建成", + "sfhs": "核实", + "kyzt": "", + "sfzcsb": "支持", + "jlstjl": "210", + "xszt": "", + "appid": "", + "lx": "水塘", + "qufen": "", + "creater_id": "", + "is_del": 0, + "mag": 0.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.513", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03442472, + 35.42508258 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 513, + "fid_1": "984", + "orig_fid": "984", + "fid_2": "32", + "mc": "河北崖山里人家水塘", + "xsl": "100", + "dz": "河北崖山里人家", + "bz": "", + "jczt": "已建成", + "sfhs": "核实", + "kyzt": "", + "sfzcsb": "支持", + "jlstjl": "210", + "xszt": "", + "appid": "", + "lx": "水塘", + "qufen": "", + "creater_id": "", + "is_del": 0, + "mag": 4.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.514", + "geometry": { + "type": "Point", + "coordinates": [ + 118.23216329, + 35.39398867 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 514, + "fid_1": "550", + "orig_fid": "550", + "fid_2": "35", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 1.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.515", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10918567, + 35.39497374 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 515, + "fid_1": "569", + "orig_fid": "569", + "fid_2": "165", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.516", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2180809, + 35.39524319 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 516, + "fid_1": "580", + "orig_fid": "580", + "fid_2": "166", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.517", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10585714, + 35.39614981 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 517, + "fid_1": "602", + "orig_fid": "602", + "fid_2": "167", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.518", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20688333, + 35.39722627 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 518, + "fid_1": "619", + "orig_fid": "619", + "fid_2": "168", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.519", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21352487, + 35.39850285 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 519, + "fid_1": "646", + "orig_fid": "646", + "fid_2": "169", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.520", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21511401, + 35.39927849 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 520, + "fid_1": "676", + "orig_fid": "676", + "fid_2": "170", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.521", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20551603, + 35.40177652 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 521, + "fid_1": "713", + "orig_fid": "713", + "fid_2": "171", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.522", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22669099, + 35.39251533 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 522, + "fid_1": "510", + "orig_fid": "510", + "fid_2": "174", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.523", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12866952, + 35.39257937 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 523, + "fid_1": "516", + "orig_fid": "516", + "fid_2": "175", + "mc": "大涧河南山自建蓄水池", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.524", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19859746, + 35.39284281 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 524, + "fid_1": "525", + "orig_fid": "525", + "fid_2": "176", + "mc": "大青山种子园塘坝", + "xsl": "500", + "dz": "大青山种子园", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.525", + "geometry": { + "type": "Point", + "coordinates": [ + 118.23554858, + 35.39299664 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 525, + "fid_1": "532", + "orig_fid": "532", + "fid_2": "177", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.526", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1235547, + 35.39358944 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 526, + "fid_1": "538", + "orig_fid": "538", + "fid_2": "178", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.527", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13412289, + 35.39444183 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 527, + "fid_1": "556", + "orig_fid": "556", + "fid_2": "179", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.528", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20407012, + 35.4043175 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 528, + "fid_1": "753", + "orig_fid": "753", + "fid_2": "180", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.529", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20522459, + 35.40629641 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 529, + "fid_1": "779", + "orig_fid": "779", + "fid_2": "181", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.530", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20912027, + 35.40853556 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 530, + "fid_1": "807", + "orig_fid": "807", + "fid_2": "182", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.531", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20511947, + 35.41072885 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 531, + "fid_1": "823", + "orig_fid": "823", + "fid_2": "183", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.532", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10911909, + 35.41639993 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 532, + "fid_1": "878", + "orig_fid": "878", + "fid_2": "184", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.533", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13208261, + 35.39242905 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 533, + "fid_1": "508", + "orig_fid": "508", + "fid_2": "191", + "mc": "东黑峪子2号塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "山地河沟", + "creater_id": "1", + "is_del": 0, + "mag": 0.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.534", + "geometry": { + "type": "Point", + "coordinates": [ + 118.063777, + 35.424066 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 534, + "fid_1": "967", + "orig_fid": "967", + "fid_2": "428", + "mc": "塔山下水库", + "xsl": "1000", + "dz": "塔山分区塔山下", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 0.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.535", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02871088, + 35.41605417 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 535, + "fid_1": "872", + "orig_fid": "872", + "fid_2": "431", + "mc": "云瀑洞天外蓄水池", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.536", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00949302, + 35.4245755 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 536, + "fid_1": "974", + "orig_fid": "974", + "fid_2": "433", + "mc": "大门山前塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.537", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0287899, + 35.41679305 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 537, + "fid_1": "880", + "orig_fid": "880", + "fid_2": "460", + "mc": "东蒙镇12号蓄水池", + "xsl": "0", + "dz": "安家沟后山", + "bz": "规格:10*7*3/联系电话:15264933318", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.538", + "geometry": { + "type": "Point", + "coordinates": [ + 117.999687, + 35.42117 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 538, + "fid_1": "931", + "orig_fid": "931", + "fid_2": "474", + "mc": "龙雨村红山前西蓄水池", + "xsl": "300", + "dz": "龙雨村红山前西", + "bz": "", + "jczt": "建设中", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.539", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00202184, + 35.41689575 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 539, + "fid_1": "883", + "orig_fid": "883", + "fid_2": "475", + "mc": "龙雨村红山前东蓄水池", + "xsl": "300", + "dz": "龙雨村红山前东", + "bz": "", + "jczt": "建设中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.540", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07496455, + 35.40594607 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 540, + "fid_1": "778", + "orig_fid": "778", + "fid_2": "477", + "mc": "茂山庄蓄水池", + "xsl": "300", + "dz": "茂山庄", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.541", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06095239, + 35.39236431 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 541, + "fid_1": "513", + "orig_fid": "513", + "fid_2": "504", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.542", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05039512, + 35.4099711 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 542, + "fid_1": "813", + "orig_fid": "813", + "fid_2": "510", + "mc": "东蒙镇3号蓄水池", + "xsl": "0", + "dz": "聂家沟防火路东", + "bz": "规格:15*7*3/联系电话:13583991201", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.543", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05338366, + 35.41229176 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 543, + "fid_1": "832", + "orig_fid": "832", + "fid_2": "511", + "mc": "东蒙镇2号蓄水池", + "xsl": "0", + "dz": "聂家沟防火路北", + "bz": "规格:15*7*3/联系电话:13583991201", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.544", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03960941, + 35.41094946 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 544, + "fid_1": "826", + "orig_fid": "826", + "fid_2": "512", + "mc": "东蒙镇4号蓄水池", + "xsl": "0", + "dz": "指动石水库东", + "bz": "规格:15*7*3/联系电话:13256560676", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.545", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00301433, + 35.41711139 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 545, + "fid_1": "886", + "orig_fid": "886", + "fid_2": "517", + "mc": "东蒙镇30号蓄水池", + "xsl": "300", + "dz": "贺乐石洪山", + "bz": "规格:11*11*3/联系电话:15266644040", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.546", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02894697, + 35.40693904 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 546, + "fid_1": "824", + "orig_fid": "824", + "fid_2": "549", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 0.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.547", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0733059, + 35.40042354 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 547, + "fid_1": "692", + "orig_fid": "692", + "fid_2": "550", + "mc": "茂山庄西山水坝", + "xsl": "2000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.548", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04690781, + 35.3992869 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 548, + "fid_1": "674", + "orig_fid": "674", + "fid_2": "552", + "mc": "拦水坝", + "xsl": "2000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.549", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03034989, + 35.41165658 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 549, + "fid_1": "837", + "orig_fid": "837", + "fid_2": "553", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 0.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.550", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03252838, + 35.41387362 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 550, + "fid_1": "848", + "orig_fid": "848", + "fid_2": "554", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 3.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.551", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07901063, + 35.4159679 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 551, + "fid_1": "871", + "orig_fid": "871", + "fid_2": "555", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 4.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.552", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03313962, + 35.41648006 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 552, + "fid_1": "901", + "orig_fid": "901", + "fid_2": "556", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 3.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.553", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03248004, + 35.42000551 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 553, + "fid_1": "933", + "orig_fid": "933", + "fid_2": "557", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 0.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.554", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03108673, + 35.42182848 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 554, + "fid_1": "946", + "orig_fid": "946", + "fid_2": "558", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 4.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.555", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08735693, + 35.42402359 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 555, + "fid_1": "1003", + "orig_fid": "1003", + "fid_2": "559", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 3.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.556", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09076853, + 35.40090989 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 556, + "fid_1": "703", + "orig_fid": "703", + "fid_2": "566", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.557", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06370657, + 35.39422933 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 557, + "fid_1": "547", + "orig_fid": "547", + "fid_2": "577", + "mc": "干石口子村塘坝", + "xsl": "2000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.558", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06515928, + 35.3925227 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 558, + "fid_1": "557", + "orig_fid": "557", + "fid_2": "583", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.559", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05641364, + 35.39525798 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 559, + "fid_1": "576", + "orig_fid": "576", + "fid_2": "584", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.560", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07328741, + 35.39610905 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 560, + "fid_1": "599", + "orig_fid": "599", + "fid_2": "585", + "mc": "茂山庄西山水坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.561", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06773123, + 35.39567747 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 561, + "fid_1": "601", + "orig_fid": "601", + "fid_2": "586", + "mc": "干石口子水坝1", + "xsl": "8000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 2.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.562", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06856047, + 35.39656967 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 562, + "fid_1": "616", + "orig_fid": "616", + "fid_2": "587", + "mc": "干石口子水坝2", + "xsl": "5000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.563", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05589611, + 35.39714548 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 563, + "fid_1": "626", + "orig_fid": "626", + "fid_2": "588", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.564", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09976636, + 35.39739061 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 564, + "fid_1": "627", + "orig_fid": "627", + "fid_2": "589", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.565", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09489786, + 35.39943383 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 565, + "fid_1": "666", + "orig_fid": "666", + "fid_2": "590", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.566", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07646134, + 35.39927062 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 566, + "fid_1": "670", + "orig_fid": "670", + "fid_2": "591", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.567", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02771897, + 35.41423491 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 567, + "fid_1": "849", + "orig_fid": "849", + "fid_2": "592", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.568", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05534133, + 35.39955758 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 568, + "fid_1": "672", + "orig_fid": "672", + "fid_2": "593", + "mc": "彩山前西水库", + "xsl": "5000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.569", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05117563, + 35.40187369 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 569, + "fid_1": "715", + "orig_fid": "715", + "fid_2": "594", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.570", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09037336, + 35.40419279 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 570, + "fid_1": "750", + "orig_fid": "750", + "fid_2": "595", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.571", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09357416, + 35.40441461 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 571, + "fid_1": "754", + "orig_fid": "754", + "fid_2": "597", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.572", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05325109, + 35.40355537 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 572, + "fid_1": "762", + "orig_fid": "762", + "fid_2": "598", + "mc": "东蒙镇聂家沟龙山水库", + "xsl": "900000", + "dz": "聂家沟东北", + "bz": "粘土心墙坝/坝高:9.8", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库,水库大坝", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 3.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.573", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03586447, + 35.40431932 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 573, + "fid_1": "765", + "orig_fid": "765", + "fid_2": "599", + "mc": "东蒙镇永目村水库", + "xsl": "900000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.574", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05367264, + 35.40579955 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 574, + "fid_1": "777", + "orig_fid": "777", + "fid_2": "600", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.575", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10104441, + 35.40624669 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 575, + "fid_1": "780", + "orig_fid": "780", + "fid_2": "601", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.576", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0901739, + 35.40799739 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 576, + "fid_1": "794", + "orig_fid": "794", + "fid_2": "602", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.577", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00967275, + 35.42263995 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 577, + "fid_1": "950", + "orig_fid": "950", + "fid_2": "604", + "mc": "贺乐石村北塘坝", + "xsl": "500", + "dz": "贺乐石村北", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.578", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00077571, + 35.42456773 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 578, + "fid_1": "973", + "orig_fid": "973", + "fid_2": "605", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.579", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00025806, + 35.42434341 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 579, + "fid_1": "975", + "orig_fid": "975", + "fid_2": "605", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.580", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04815281, + 35.40713354 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 580, + "fid_1": "809", + "orig_fid": "809", + "fid_2": "608", + "mc": "东蒙镇聂家沟村北水库", + "xsl": "270000", + "dz": "聂家沟村北", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 0.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.581", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02043854, + 35.40921269 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 581, + "fid_1": "812", + "orig_fid": "812", + "fid_2": "609", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.582", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01960754, + 35.41014157 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 582, + "fid_1": "815", + "orig_fid": "815", + "fid_2": "610", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.583", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08191279, + 35.40997167 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 583, + "fid_1": "820", + "orig_fid": "820", + "fid_2": "611", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.584", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01586266, + 35.41112939 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 584, + "fid_1": "830", + "orig_fid": "830", + "fid_2": "612", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.585", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03812888, + 35.41303954 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 585, + "fid_1": "835", + "orig_fid": "835", + "fid_2": "613", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.586", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01861851, + 35.42110461 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 586, + "fid_1": "951", + "orig_fid": "951", + "fid_2": "614", + "mc": "东蒙镇台子沟村水库", + "xsl": "960000", + "dz": "台子沟村北", + "bz": "粘土心墙坝/坝高:23.5", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库大坝,水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.587", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04044623, + 35.41278284 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 587, + "fid_1": "856", + "orig_fid": "856", + "fid_2": "615", + "mc": "东蒙镇天蒙湖水库", + "xsl": "9200000", + "dz": "新安庄村", + "bz": "粘土心墙坝/坝高:19.4", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库,水库大坝", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 2.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.588", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00579984, + 35.41543757 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 588, + "fid_1": "865", + "orig_fid": "865", + "fid_2": "616", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.589", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0350987, + 35.41683441 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 589, + "fid_1": "882", + "orig_fid": "882", + "fid_2": "617", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.590", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09986529, + 35.416913 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 590, + "fid_1": "885", + "orig_fid": "885", + "fid_2": "618", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.591", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09432631, + 35.41723769 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 591, + "fid_1": "887", + "orig_fid": "887", + "fid_2": "619", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.592", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02971866, + 35.42439914 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 592, + "fid_1": "972", + "orig_fid": "972", + "fid_2": "620", + "mc": "北刘庄龅家庄南塘坝", + "xsl": "400", + "dz": "北刘庄龅家庄南", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.593", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02036985, + 35.42490782 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 593, + "fid_1": "979", + "orig_fid": "979", + "fid_2": "621", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.594", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00442288, + 35.41536116 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 594, + "fid_1": "890", + "orig_fid": "890", + "fid_2": "622", + "mc": "东蒙镇贺乐石水库", + "xsl": "930000", + "dz": "贺乐石村", + "bz": "粘土心墙坝/坝高:10", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库大坝,水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 4.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.595", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08065751, + 35.41810909 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 595, + "fid_1": "896", + "orig_fid": "896", + "fid_2": "623", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.596", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02901274, + 35.41855844 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 596, + "fid_1": "902", + "orig_fid": "902", + "fid_2": "624", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.597", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0948173, + 35.41880358 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 597, + "fid_1": "909", + "orig_fid": "909", + "fid_2": "625", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.598", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0342501, + 35.41933604 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 598, + "fid_1": "912", + "orig_fid": "912", + "fid_2": "626", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.599", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03344206, + 35.41958105 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 599, + "fid_1": "917", + "orig_fid": "917", + "fid_2": "627", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.600", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03322977, + 35.42030404 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 600, + "fid_1": "922", + "orig_fid": "922", + "fid_2": "628", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.601", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09323393, + 35.4203237 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 601, + "fid_1": "925", + "orig_fid": "925", + "fid_2": "629", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.602", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06379086, + 35.4209786 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 602, + "fid_1": "932", + "orig_fid": "932", + "fid_2": "630", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.603", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03171761, + 35.4220159 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 603, + "fid_1": "943", + "orig_fid": "943", + "fid_2": "631", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.604", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01171933, + 35.42264985 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 604, + "fid_1": "949", + "orig_fid": "949", + "fid_2": "632", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.605", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09233436, + 35.42571481 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 605, + "fid_1": "993", + "orig_fid": "993", + "fid_2": "633", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.606", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09717296, + 35.39457074 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 606, + "fid_1": "570", + "orig_fid": "570", + "fid_2": "678", + "mc": "水库", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库水面", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.607", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03059991, + 35.42286277 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 607, + "fid_1": "955", + "orig_fid": "955", + "fid_2": "681", + "mc": "水库", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库水面", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 0.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.608", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07808351, + 35.39772314 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 608, + "fid_1": "650", + "orig_fid": "650", + "fid_2": "682", + "mc": "水库", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库水面", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 3.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.609", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08047803, + 35.40514603 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 609, + "fid_1": "771", + "orig_fid": "771", + "fid_2": "683", + "mc": "水库", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库水面", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 3.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.610", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08647936, + 35.39744046 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 610, + "fid_1": "937", + "orig_fid": "937", + "fid_2": "684", + "mc": "薛庄镇石岚水库", + "xsl": "35890000", + "dz": "石岚", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 2.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.611", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05519212, + 35.40075252 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 611, + "fid_1": "694", + "orig_fid": "694", + "fid_2": "685", + "mc": "聂家庄水窖", + "xsl": "300", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "5分之三", + "appid": "", + "lx": "摸排", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 2.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.612", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05699131, + 35.40087804 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 612, + "fid_1": "699", + "orig_fid": "699", + "fid_2": "686", + "mc": "摩天沟坝式蓄水池修复", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.613", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02992822, + 35.41757064 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 613, + "fid_1": "889", + "orig_fid": "889", + "fid_2": "687", + "mc": "东蒙镇9号蓄水池", + "xsl": "0", + "dz": "北刘家庄李宝忠家西", + "bz": "规格:15*7*3/联系电话:15588099218", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.614", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99818184, + 35.42140287 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 614, + "fid_1": "935", + "orig_fid": "935", + "fid_2": "688", + "mc": "老护林房东路下", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.615", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00483852, + 35.42202676 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 615, + "fid_1": "939", + "orig_fid": "939", + "fid_2": "689", + "mc": "自建蓄水池", + "xsl": "200", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "400", + "xszt": "150", + "appid": "38", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.616", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03389172, + 35.42571018 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 616, + "fid_1": "992", + "orig_fid": "992", + "fid_2": "690", + "mc": "北刘庄崔家沟山里人家西北", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.617", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0265333, + 35.42593799 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 617, + "fid_1": "995", + "orig_fid": "995", + "fid_2": "691", + "mc": "东蒙镇8号蓄水池", + "xsl": "0", + "dz": "防火指挥部西南", + "bz": "规格:10*10*3/联系电话:15588099218", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.618", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2003297, + 35.402773 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 618, + "fid_1": "727", + "orig_fid": "727", + "fid_2": "704", + "mc": "薛庄镇2号蓄水池", + "xsl": "0", + "dz": "北桃园李春鹏山场300立方米蓄水池", + "bz": "联系电话:15315395838", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "满水", + "appid": "136", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.619", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02863651, + 35.41964452 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 619, + "fid_1": "916", + "orig_fid": "916", + "fid_2": "711", + "mc": "北刘家庄李宝忠家西9号", + "xsl": "300", + "dz": "北刘家庄李宝忠家西", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "200", + "appid": "145", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.620", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07739482, + 35.42217405 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 620, + "fid_1": "942", + "orig_fid": "942", + "fid_2": "712", + "mc": "马头崖蓄水池", + "xsl": "300", + "dz": "马头崖提水站下", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "满", + "appid": "73", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.621", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05074184, + 35.41052884 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 621, + "fid_1": "821", + "orig_fid": "821", + "fid_2": "713", + "mc": "聂家沟水库上游", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.622", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20067497, + 35.40384279 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 622, + "fid_1": "742", + "orig_fid": "742", + "fid_2": "719", + "mc": "薛庄镇3号蓄水池", + "xsl": "300", + "dz": "北桃园李德怀山场300立方米蓄水池", + "bz": "联系电话:15315395838", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "50", + "xszt": "满水", + "appid": "139", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.623", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04342048, + 35.41046202 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 623, + "fid_1": "825", + "orig_fid": "825", + "fid_2": "720", + "mc": "东蒙镇聂家沟牛栏山2号水库", + "xsl": "500000", + "dz": "聂家沟西北", + "bz": "粘土心墙坝/坝高:17", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库,水库大坝", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 2.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.624", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03461576, + 35.42384305 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 624, + "fid_1": "963", + "orig_fid": "963", + "fid_2": "723", + "mc": "东蒙镇6号蓄水池", + "xsl": "300", + "dz": "北刘庄河北崖村东山里人家路东80米", + "bz": "规格:15*7*3/联系电话:15588099218", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "不支持", + "jlstjl": "300", + "xszt": "270", + "appid": "156", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.625", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02738089, + 35.41875643 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 625, + "fid_1": "903", + "orig_fid": "903", + "fid_2": "730", + "mc": "东蒙镇10号蓄水池", + "xsl": "300", + "dz": "北刘家庄西山", + "bz": "规格:15*7*3/联系电话:15588099218", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "不支持", + "jlstjl": "200", + "xszt": "300", + "appid": "56", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.626", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10698283, + 35.42628817 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 626, + "fid_1": "1001", + "orig_fid": "1001", + "fid_2": "736", + "mc": "沙沟峪蓄水池3号", + "xsl": "500", + "dz": "沙沟峪", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "有水", + "appid": "226", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.627", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13099663, + 35.41013051 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 627, + "fid_1": "814", + "orig_fid": "814", + "fid_2": "739", + "mc": "大良蓄水池", + "xsl": "300", + "dz": "大良,红口子前南394米蓄水池", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "少量", + "appid": "251", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.628", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20070753, + 35.40474722 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 628, + "fid_1": "755", + "orig_fid": "755", + "fid_2": "742", + "mc": "北桃园李德怀山场蓄水池", + "xsl": "300", + "dz": "北桃园李德怀山场", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "无水", + "appid": "`138", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.629", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19874211, + 35.40044705 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 629, + "fid_1": "689", + "orig_fid": "689", + "fid_2": "743", + "mc": "薛庄镇1号蓄水池", + "xsl": "300", + "dz": "北桃园邵士松山场300立方米不带盖", + "bz": "联系电话:15315395838", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "无水", + "appid": "137", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.630", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11242232, + 35.42070749 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 630, + "fid_1": "924", + "orig_fid": "924", + "fid_2": "755", + "mc": "薛庄镇24号蓄水池", + "xsl": "300", + "dz": "火山后2混泥土蓄水池300方", + "bz": "联系电话:15964872720,距离罗实沟东山头直线约500米距离,道路狭窄车辆不易同过,没有直达山顶的小路。现有大约3分之1的水量。", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "500", + "xszt": "80", + "appid": "192", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.631", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20717605, + 35.39293541 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 631, + "fid_1": "530", + "orig_fid": "530", + "fid_2": "763", + "mc": "朱山防火站西北100米水坝", + "xsl": "1000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "有水", + "appid": "12", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.632", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19984933, + 35.39874109 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 632, + "fid_1": "649", + "orig_fid": "649", + "fid_2": "764", + "mc": "狗山后塘坝", + "xsl": "500", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "400米", + "xszt": "有水", + "appid": "13", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.633", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19872666, + 35.39944075 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 633, + "fid_1": "665", + "orig_fid": "665", + "fid_2": "765", + "mc": "狗山后西北492米塘坝", + "xsl": "300", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100米", + "xszt": "有水", + "appid": "14", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.634", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10512674, + 35.39460347 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 634, + "fid_1": "562", + "orig_fid": "562", + "fid_2": "768", + "mc": "大良南边小水塘", + "xsl": "1000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "半水", + "appid": "21", + "lx": "山地河沟", + "qufen": "山地河沟", + "creater_id": "1", + "is_del": 0, + "mag": 0.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.635", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02580852, + 35.42549048 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 635, + "fid_1": "991", + "orig_fid": "991", + "fid_2": "783", + "mc": "北刘家庄防火指挥部西南8号", + "xsl": "300", + "dz": "北刘庄龅家庄西山防火指挥部西南", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "150", + "appid": "144", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.636", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19962524, + 35.39748871 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 636, + "fid_1": "622", + "orig_fid": "622", + "fid_2": "805", + "mc": "主山后西山蓄水池", + "xsl": "300", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "无水", + "appid": "132", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.637", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05269849, + 35.41237537 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 637, + "fid_1": "833", + "orig_fid": "833", + "fid_2": "806", + "mc": "东蒙镇聂家沟防火路东3号蓄水池", + "xsl": "500", + "dz": "聂家沟水库北", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "450", + "appid": "208", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.638", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11526831, + 35.41816217 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 638, + "fid_1": "898", + "orig_fid": "898", + "fid_2": "810", + "mc": "东钓鱼台东北194米河坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "228", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.639", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20763462, + 35.39225646 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 639, + "fid_1": "502", + "orig_fid": "502", + "fid_2": "817", + "mc": "主山小水塘", + "xsl": "200", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "满水", + "appid": "130", + "lx": "山地河沟", + "qufen": "山地河沟", + "creater_id": "1", + "is_del": 0, + "mag": 2.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.640", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20265909, + 35.39670052 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 640, + "fid_1": "612", + "orig_fid": "612", + "fid_2": "818", + "mc": "主山后西山水塘", + "xsl": "800", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "500", + "appid": "131", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.641", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20549281, + 35.39975158 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 641, + "fid_1": "687", + "orig_fid": "687", + "fid_2": "819", + "mc": "桃园小区北水库", + "xsl": "5000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "500", + "xszt": "满水", + "appid": "133", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 2.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.642", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20077633, + 35.40154148 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 642, + "fid_1": "707", + "orig_fid": "707", + "fid_2": "820", + "mc": "北桃园路边待修老蓄水池", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "无水", + "appid": "134", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.643", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19861752, + 35.40044209 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 643, + "fid_1": "688", + "orig_fid": "688", + "fid_2": "821", + "mc": "北桃园邵士松山场蓄水池", + "xsl": "300", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "满水", + "appid": "135", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.644", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20058141, + 35.408054 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 644, + "fid_1": "793", + "orig_fid": "793", + "fid_2": "822", + "mc": "北桃园邵泽强山场蓄水池", + "xsl": "300", + "dz": "北桃园邵泽强山场", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "满水", + "appid": "140", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.645", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10571562, + 35.4143998 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 645, + "fid_1": "852", + "orig_fid": "852", + "fid_2": "828", + "mc": "柿树底塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "20", + "xszt": "满水", + "appid": "147", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.646", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04136595, + 35.40163808 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 646, + "fid_1": "709", + "orig_fid": "709", + "fid_2": "829", + "mc": "聂家沟村南", + "xsl": "300", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "229", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.647", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05806144, + 35.40818213 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 647, + "fid_1": "796", + "orig_fid": "796", + "fid_2": "835", + "mc": "聂家沟防火路东北1号", + "xsl": "500", + "dz": "聂家沟村东北河坝里", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "180", + "xszt": "450", + "appid": "210", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.648", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11587925, + 35.41577474 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 648, + "fid_1": "873", + "orig_fid": "873", + "fid_2": "836", + "mc": "圈子地塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满水", + "appid": "158", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.649", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20348113, + 35.40321656 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 649, + "fid_1": "735", + "orig_fid": "735", + "fid_2": "838", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.650", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12259563, + 35.40251603 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 650, + "fid_1": "721", + "orig_fid": "721", + "fid_2": "839", + "mc": "莲花石子北沟塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "半水", + "appid": "159", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.651", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1235616, + 35.40382674 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 651, + "fid_1": "746", + "orig_fid": "746", + "fid_2": "840", + "mc": "莲花石子北沟塘坝2", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满水", + "appid": "160", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.652", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12457267, + 35.40690071 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 652, + "fid_1": "783", + "orig_fid": "783", + "fid_2": "842", + "mc": "莲花石子北沟塘坝3", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满水", + "appid": "164", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.653", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1340266, + 35.41459317 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 653, + "fid_1": "853", + "orig_fid": "853", + "fid_2": "844", + "mc": "沂南县防火拦水坝", + "xsl": "1000", + "dz": "红口子前", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "200", + "appid": "180", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.654", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10510741, + 35.42364667 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 654, + "fid_1": "959", + "orig_fid": "959", + "fid_2": "847", + "mc": "薛庄镇26号蓄水池,坐标(118.105082.35.423725)", + "xsl": "300", + "dz": "沙沟峪罗石沟300立方米不带盖蓄水", + "bz": "联系电话:13791590781", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "202", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.655", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10971159, + 35.39421631 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 655, + "fid_1": "560", + "orig_fid": "560", + "fid_2": "872", + "mc": "茄老洼南301米水库", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "233", + "lx": "森林保育水源地", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.656", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10437847, + 35.40217535 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 656, + "fid_1": "724", + "orig_fid": "724", + "fid_2": "873", + "mc": "夹石沟坝式蓄水池修复", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满", + "appid": "256", + "lx": "塘坝,森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.657", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11682428, + 35.40366592 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 657, + "fid_1": "740", + "orig_fid": "740", + "fid_2": "877", + "mc": "苍屋北山头水库", + "xsl": "500", + "dz": "大青山林场茅草崖", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "252", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 4.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.658", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02311055, + 35.41547624 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 658, + "fid_1": "863", + "orig_fid": "863", + "fid_2": "924", + "mc": "东蒙镇台子沟桃树沟34号", + "xsl": "300", + "dz": "台子沟桃树沟", + "bz": "规格:11*11*3/联系电话:13563967763", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "150", + "appid": "57", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.659", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01321337, + 35.41887955 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 659, + "fid_1": "904", + "orig_fid": "904", + "fid_2": "925", + "mc": "东蒙镇31号蓄水池", + "xsl": "300", + "dz": "台子沟窑沟", + "bz": "规格:11*11*3/联系电话:13563967763", + "jczt": "", + "sfhs": "", + "kyzt": "不可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "未灌水", + "appid": "59", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.660", + "geometry": { + "type": "Point", + "coordinates": [ + 118.002399, + 35.41640681 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 660, + "fid_1": "877", + "orig_fid": "877", + "fid_2": "928", + "mc": "东蒙镇26号蓄水池", + "xsl": "300", + "dz": "东蒙镇龙雨老吴家西26号", + "bz": "规格:11*11*3/联系电话:13606321058", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "260", + "appid": "152", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.661", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99988025, + 35.4202411 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 661, + "fid_1": "920", + "orig_fid": "920", + "fid_2": "929", + "mc": "东蒙镇25号蓄水池", + "xsl": "300", + "dz": "葛飞家北红山前", + "bz": "规格:11*11*3/联系电话:13606321058", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "150", + "appid": "177", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.662", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99855554, + 35.42195144 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 662, + "fid_1": "938", + "orig_fid": "938", + "fid_2": "930", + "mc": "东蒙镇24号蓄水池", + "xsl": "300", + "dz": "龙雨村老护林房路北/龙雨红山前蓄水池", + "bz": "规格:11*11*3/联系电话:13606321058", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "150", + "appid": "151", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.663", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00014969, + 35.4237519 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 663, + "fid_1": "960", + "orig_fid": "960", + "fid_2": "932", + "mc": "东蒙镇23号蓄水池", + "xsl": "300", + "dz": "大门山前", + "bz": "规格:11*11*3/联系电话:17753933378", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "150", + "appid": "189", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.664", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01302893, + 35.42110162 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 664, + "fid_1": "930", + "orig_fid": "930", + "fid_2": "942", + "mc": "东蒙镇29号蓄水池", + "xsl": "300", + "dz": "贺乐石村东", + "bz": "规格:11*11*3/联系电话:15266644040", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "260", + "appid": "154", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.665", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00313429, + 35.41549967 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 665, + "fid_1": "862", + "orig_fid": "862", + "fid_2": "943", + "mc": "东蒙镇贺乐石蓄水池", + "xsl": "300", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "270", + "appid": "165", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.666", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10044404, + 35.40393449 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 666, + "fid_1": "743", + "orig_fid": "743", + "fid_2": "944", + "mc": "火山后蓄水池", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "无水", + "appid": "174", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.667", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06486507, + 35.39963756 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 667, + "fid_1": "675", + "orig_fid": "675", + "fid_2": "945", + "mc": "彩山前北塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "无水", + "appid": "196", + "lx": "塘坝,森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.668", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06859651, + 35.42505347 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 668, + "fid_1": "987", + "orig_fid": "987", + "fid_2": "948", + "mc": "马头崮7号蓄水池", + "xsl": "500", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "满水", + "appid": "205", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.669", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06995646, + 35.42416465 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 669, + "fid_1": "968", + "orig_fid": "968", + "fid_2": "949", + "mc": "马头崮蓄水池8号", + "xsl": "500", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "满水", + "appid": "206", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.670", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06165456, + 35.39640376 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 670, + "fid_1": "608", + "orig_fid": "608", + "fid_2": "953", + "mc": "彩山前北水坝", + "xsl": "3000", + "dz": "", + "bz": "彩山前北水坝", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "214", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.671", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05784834, + 35.39755359 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 671, + "fid_1": "633", + "orig_fid": "633", + "fid_2": "954", + "mc": "彩山前水库", + "xsl": "7000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "有水", + "appid": "53", + "lx": "森林保育水源地,塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.672", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03985617, + 35.40825896 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 672, + "fid_1": "806", + "orig_fid": "806", + "fid_2": "955", + "mc": "东蒙镇聂家沟牛栏山1号水库", + "xsl": "450000", + "dz": "聂家沟西北", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "600", + "appid": "52", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 4.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.673", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03564517, + 35.4142833 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 673, + "fid_1": "859", + "orig_fid": "859", + "fid_2": "956", + "mc": "东蒙镇新安庄指动石水库", + "xsl": "700000", + "dz": "", + "bz": "大北顶子水库", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "70", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 4.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.674", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02534612, + 35.4158675 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 674, + "fid_1": "876", + "orig_fid": "876", + "fid_2": "957", + "mc": "东蒙镇安家沟水库", + "xsl": "900000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "半水", + "appid": "221", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 2.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.675", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03430496, + 35.41909241 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 675, + "fid_1": "910", + "orig_fid": "910", + "fid_2": "958", + "mc": "北刘庄6号门南水池", + "xsl": "200", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "201", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.676", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03549454, + 35.4194993 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 676, + "fid_1": "914", + "orig_fid": "914", + "fid_2": "959", + "mc": "北刘庄6号门水池", + "xsl": "100", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "216", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.677", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03004302, + 35.41939961 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 677, + "fid_1": "915", + "orig_fid": "915", + "fid_2": "960", + "mc": "北刘庄西塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "无水", + "appid": "218", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.678", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00638243, + 35.42001541 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 678, + "fid_1": "919", + "orig_fid": "919", + "fid_2": "961", + "mc": "贺乐石村西小水库", + "xsl": "500", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "600", + "xszt": "400", + "appid": "32", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 4.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.679", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01242015, + 35.4231201 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 679, + "fid_1": "952", + "orig_fid": "952", + "fid_2": "962", + "mc": "贺乐石北300米小水库", + "xsl": "1000", + "dz": "贺乐石村东北", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "500", + "appid": "63", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.680", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07479105, + 35.42342175 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 680, + "fid_1": "958", + "orig_fid": "958", + "fid_2": "963", + "mc": "马头崖提水站", + "xsl": "6000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "72", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.681", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09773658, + 35.40610073 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 681, + "fid_1": "781", + "orig_fid": "781", + "fid_2": "970", + "mc": "火山后塘坝", + "xsl": "500", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "700", + "xszt": "有水", + "appid": "184", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.682", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05595566, + 35.41023748 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 682, + "fid_1": "816", + "orig_fid": "816", + "fid_2": "971", + "mc": "东蒙镇1号蓄水池", + "xsl": "300", + "dz": "聂家沟防火路东北", + "bz": "规格:18*15*3/联系电话:13583991201", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "260", + "appid": "209", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.683", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1016125, + 35.42153971 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 683, + "fid_1": "936", + "orig_fid": "936", + "fid_2": "972", + "mc": "沙沟峪蓄水池2号", + "xsl": "300", + "dz": "沙沟峪", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "200", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.684", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02582465, + 35.42260032 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 684, + "fid_1": "947", + "orig_fid": "947", + "fid_2": "973", + "mc": "东蒙镇11号蓄水池", + "xsl": "300", + "dz": "北刘家庄西山", + "bz": "规格:10*10*3/联系电话:15588099218", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "50", + "xszt": "20", + "appid": "161", + "lx": "补充水源地,蓄水池-山水项目(统一", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.685", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06271502, + 35.39884683 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 685, + "fid_1": "660", + "orig_fid": "660", + "fid_2": "983", + "mc": "彩山山北台子塘坝", + "xsl": "5000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "120", + "xszt": "满水", + "appid": "215", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.686", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07005802, + 35.41785303 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 686, + "fid_1": "934", + "orig_fid": "934", + "fid_2": "987", + "mc": "抽水蓄能下水库", + "xsl": "10000000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库水面", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 4.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.687", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07481616, + 35.40551198 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 687, + "fid_1": "772", + "orig_fid": "772", + "fid_2": "990", + "mc": "茂山庄西山", + "xsl": "200", + "dz": "茂山庄西山", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "150", + "appid": "", + "lx": "摸排", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.688", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11756, + 35.425025 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 688, + "fid_1": "982", + "orig_fid": "982", + "fid_2": "998", + "mc": "竹篮子大山顶蓄水池", + "xsl": "300", + "dz": "竹篮子大山顶", + "bz": "", + "jczt": "已建成", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.689", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0797935, + 35.4143252 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 689, + "fid_1": "850", + "orig_fid": "850", + "fid_2": "999", + "mc": "国电蓄水池", + "xsl": "2000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "10", + "xszt": "半水", + "appid": "", + "lx": "摸排", + "qufen": "蓄水池", + "creater_id": "0", + "is_del": 0, + "mag": 3.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.690", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08034651, + 35.42653072 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 690, + "fid_1": "1004", + "orig_fid": "1004", + "fid_2": "1001", + "mc": "马头崮自建水池", + "xsl": "100", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "满", + "appid": "", + "lx": "摸排", + "qufen": "蓄水池", + "creater_id": "0", + "is_del": 0, + "mag": 0.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.691", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07880538, + 35.40852201 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 691, + "fid_1": "803", + "orig_fid": "803", + "fid_2": "1003", + "mc": "蓄水池", + "xsl": "1000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "20", + "xszt": "损坏无水", + "appid": "", + "lx": "摸排", + "qufen": "蓄水池", + "creater_id": "0", + "is_del": 0, + "mag": 0.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.692", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11521477, + 35.41803336 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 692, + "fid_1": "894", + "orig_fid": "894", + "fid_2": "1008", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.693", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2098706, + 35.39763584 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 693, + "fid_1": "628", + "orig_fid": "628", + "fid_2": "1145", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.694", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12149133, + 35.39481064 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 694, + "fid_1": "563", + "orig_fid": "563", + "fid_2": "1169", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.695", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12579032, + 35.39455519 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 695, + "fid_1": "561", + "orig_fid": "561", + "fid_2": "1218", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.696", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12982651, + 35.39211588 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 696, + "fid_1": "501", + "orig_fid": "501", + "fid_2": "1229", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.697", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13901864, + 35.39228775 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 697, + "fid_1": "504", + "orig_fid": "504", + "fid_2": "1235", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.698", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13631885, + 35.39237611 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 698, + "fid_1": "506", + "orig_fid": "506", + "fid_2": "1236", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.699", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12412965, + 35.39262107 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 699, + "fid_1": "518", + "orig_fid": "518", + "fid_2": "1237", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.700", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13612855, + 35.39260052 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 700, + "fid_1": "514", + "orig_fid": "514", + "fid_2": "1239", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.701", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13522462, + 35.39253215 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 701, + "fid_1": "517", + "orig_fid": "517", + "fid_2": "1240", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.702", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2211224, + 35.39372386 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 702, + "fid_1": "541", + "orig_fid": "541", + "fid_2": "1242", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.703", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11501985, + 35.39516523 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 703, + "fid_1": "571", + "orig_fid": "571", + "fid_2": "1244", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.704", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13866673, + 35.39299825 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 704, + "fid_1": "524", + "orig_fid": "524", + "fid_2": "1246", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.705", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13306771, + 35.39303574 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 705, + "fid_1": "528", + "orig_fid": "528", + "fid_2": "1247", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.706", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13248783, + 35.39309101 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 706, + "fid_1": "529", + "orig_fid": "529", + "fid_2": "1248", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.707", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13666266, + 35.3930615 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 707, + "fid_1": "527", + "orig_fid": "527", + "fid_2": "1249", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.708", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22819231, + 35.3921133 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 708, + "fid_1": "503", + "orig_fid": "503", + "fid_2": "1250", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.709", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22008507, + 35.39201691 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 709, + "fid_1": "507", + "orig_fid": "507", + "fid_2": "1251", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.710", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19825973, + 35.39264757 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 710, + "fid_1": "515", + "orig_fid": "515", + "fid_2": "1252", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.711", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22706095, + 35.392269 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 711, + "fid_1": "505", + "orig_fid": "505", + "fid_2": "1253", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.712", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1188844, + 35.39349388 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 712, + "fid_1": "536", + "orig_fid": "536", + "fid_2": "1254", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.713", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2149358, + 35.39255954 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 713, + "fid_1": "509", + "orig_fid": "509", + "fid_2": "1255", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.714", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21437259, + 35.3925858 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 714, + "fid_1": "511", + "orig_fid": "511", + "fid_2": "1256", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.715", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21823373, + 35.39226781 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 715, + "fid_1": "512", + "orig_fid": "512", + "fid_2": "1257", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.716", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13320216, + 35.39381374 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 716, + "fid_1": "540", + "orig_fid": "540", + "fid_2": "1258", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.717", + "geometry": { + "type": "Point", + "coordinates": [ + 118.23134435, + 35.39244506 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 717, + "fid_1": "523", + "orig_fid": "523", + "fid_2": "1259", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.718", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12870597, + 35.39396832 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 718, + "fid_1": "543", + "orig_fid": "543", + "fid_2": "1260", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.719", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22031354, + 35.39281768 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 719, + "fid_1": "531", + "orig_fid": "531", + "fid_2": "1261", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.720", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13677288, + 35.39408122 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 720, + "fid_1": "544", + "orig_fid": "544", + "fid_2": "1262", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.721", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13147126, + 35.39424971 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 721, + "fid_1": "546", + "orig_fid": "546", + "fid_2": "1263", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.722", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11624103, + 35.39448829 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 722, + "fid_1": "551", + "orig_fid": "551", + "fid_2": "1264", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.723", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13267569, + 35.3944054 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 723, + "fid_1": "548", + "orig_fid": "548", + "fid_2": "1265", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.724", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19723266, + 35.39390969 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 724, + "fid_1": "542", + "orig_fid": "542", + "fid_2": "1266", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.725", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1322257, + 35.3944921 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 725, + "fid_1": "555", + "orig_fid": "555", + "fid_2": "1267", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.726", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21293795, + 35.39358371 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 726, + "fid_1": "539", + "orig_fid": "539", + "fid_2": "1268", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.727", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20751753, + 35.39415982 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 727, + "fid_1": "545", + "orig_fid": "545", + "fid_2": "1269", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.728", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12088391, + 35.3950411 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 728, + "fid_1": "568", + "orig_fid": "568", + "fid_2": "1270", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.729", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20278711, + 35.39445925 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 729, + "fid_1": "549", + "orig_fid": "549", + "fid_2": "1271", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.730", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11619932, + 35.39523182 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 730, + "fid_1": "574", + "orig_fid": "574", + "fid_2": "1272", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.731", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12411047, + 35.39516276 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 731, + "fid_1": "572", + "orig_fid": "572", + "fid_2": "1273", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.732", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12357511, + 35.39519333 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 732, + "fid_1": "573", + "orig_fid": "573", + "fid_2": "1274", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.733", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19866069, + 35.39465594 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 733, + "fid_1": "559", + "orig_fid": "559", + "fid_2": "1275", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.734", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20287972, + 35.39466104 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 734, + "fid_1": "558", + "orig_fid": "558", + "fid_2": "1276", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.735", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11995611, + 35.39534492 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 735, + "fid_1": "579", + "orig_fid": "579", + "fid_2": "1277", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.736", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22189245, + 35.39437325 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 736, + "fid_1": "554", + "orig_fid": "554", + "fid_2": "1278", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.737", + "geometry": { + "type": "Point", + "coordinates": [ + 118.211643, + 35.39887268 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 737, + "fid_1": "651", + "orig_fid": "651", + "fid_2": "1279", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.738", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11382358, + 35.3954905 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 738, + "fid_1": "583", + "orig_fid": "583", + "fid_2": "1280", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.739", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19942508, + 35.39488353 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 739, + "fid_1": "564", + "orig_fid": "564", + "fid_2": "1281", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.740", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12860409, + 35.39576253 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 740, + "fid_1": "585", + "orig_fid": "585", + "fid_2": "1282", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.741", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11692092, + 35.39566423 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 741, + "fid_1": "589", + "orig_fid": "589", + "fid_2": "1283", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.742", + "geometry": { + "type": "Point", + "coordinates": [ + 118.112806, + 35.39597058 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 742, + "fid_1": "595", + "orig_fid": "595", + "fid_2": "1284", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.743", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1184273, + 35.3960399 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 743, + "fid_1": "596", + "orig_fid": "596", + "fid_2": "1285", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.744", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1994019, + 35.39525547 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 744, + "fid_1": "575", + "orig_fid": "575", + "fid_2": "1286", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.745", + "geometry": { + "type": "Point", + "coordinates": [ + 118.23168252, + 35.39481018 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 745, + "fid_1": "565", + "orig_fid": "565", + "fid_2": "1287", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.746", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22624889, + 35.39505075 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 746, + "fid_1": "567", + "orig_fid": "567", + "fid_2": "1288", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.747", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11186968, + 35.39622112 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 747, + "fid_1": "603", + "orig_fid": "603", + "fid_2": "1289", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.748", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22238054, + 35.39500782 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 748, + "fid_1": "578", + "orig_fid": "578", + "fid_2": "1290", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.749", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22744031, + 35.39538113 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 749, + "fid_1": "577", + "orig_fid": "577", + "fid_2": "1291", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.750", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20000968, + 35.39571495 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 750, + "fid_1": "584", + "orig_fid": "584", + "fid_2": "1292", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.751", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12021679, + 35.39647715 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 751, + "fid_1": "606", + "orig_fid": "606", + "fid_2": "1293", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.752", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11816352, + 35.39820154 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 752, + "fid_1": "638", + "orig_fid": "638", + "fid_2": "1295", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.753", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22802164, + 35.39548054 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 753, + "fid_1": "582", + "orig_fid": "582", + "fid_2": "1296", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.754", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10745281, + 35.39663424 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 754, + "fid_1": "609", + "orig_fid": "609", + "fid_2": "1297", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.755", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19952437, + 35.39789162 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 755, + "fid_1": "632", + "orig_fid": "632", + "fid_2": "1298", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.756", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10636665, + 35.39682241 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 756, + "fid_1": "610", + "orig_fid": "610", + "fid_2": "1299", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.757", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21139119, + 35.39593581 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 757, + "fid_1": "591", + "orig_fid": "591", + "fid_2": "1300", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.758", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21074421, + 35.39620039 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 758, + "fid_1": "600", + "orig_fid": "600", + "fid_2": "1301", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.759", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10488656, + 35.39707506 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 759, + "fid_1": "618", + "orig_fid": "618", + "fid_2": "1302", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.760", + "geometry": { + "type": "Point", + "coordinates": [ + 118.23025417, + 35.39525866 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 760, + "fid_1": "593", + "orig_fid": "593", + "fid_2": "1303", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.761", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22296638, + 35.3958118 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 761, + "fid_1": "598", + "orig_fid": "598", + "fid_2": "1304", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.762", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11918578, + 35.39720601 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 762, + "fid_1": "617", + "orig_fid": "617", + "fid_2": "1305", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.763", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10187595, + 35.39718117 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 763, + "fid_1": "621", + "orig_fid": "621", + "fid_2": "1306", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.764", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20132428, + 35.39658654 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 764, + "fid_1": "607", + "orig_fid": "607", + "fid_2": "1307", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.765", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11080943, + 35.39733359 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 765, + "fid_1": "625", + "orig_fid": "625", + "fid_2": "1308", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.766", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11983255, + 35.39744599 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 766, + "fid_1": "623", + "orig_fid": "623", + "fid_2": "1309", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.767", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12016155, + 35.39777969 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 767, + "fid_1": "630", + "orig_fid": "630", + "fid_2": "1310", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.768", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20851089, + 35.39648248 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 768, + "fid_1": "613", + "orig_fid": "613", + "fid_2": "1311", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.769", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21867955, + 35.39855913 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 769, + "fid_1": "645", + "orig_fid": "645", + "fid_2": "1312", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.770", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22677808, + 35.39675449 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 770, + "fid_1": "614", + "orig_fid": "614", + "fid_2": "1313", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.771", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22367288, + 35.39656597 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 771, + "fid_1": "615", + "orig_fid": "615", + "fid_2": "1314", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.772", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20470717, + 35.39734143 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 772, + "fid_1": "620", + "orig_fid": "620", + "fid_2": "1315", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.773", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12806749, + 35.39842475 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 773, + "fid_1": "642", + "orig_fid": "642", + "fid_2": "1316", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.774", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21761357, + 35.39757145 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 774, + "fid_1": "629", + "orig_fid": "629", + "fid_2": "1317", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.775", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21758404, + 35.39778174 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 775, + "fid_1": "631", + "orig_fid": "631", + "fid_2": "1318", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.776", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10200912, + 35.39896825 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 776, + "fid_1": "657", + "orig_fid": "657", + "fid_2": "1319", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.777", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19991908, + 35.39823712 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 777, + "fid_1": "639", + "orig_fid": "639", + "fid_2": "1320", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.778", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21157457, + 35.39781774 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 778, + "fid_1": "635", + "orig_fid": "635", + "fid_2": "1321", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.779", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19988105, + 35.3983381 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 779, + "fid_1": "641", + "orig_fid": "641", + "fid_2": "1322", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.780", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2183455, + 35.39815407 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 780, + "fid_1": "636", + "orig_fid": "636", + "fid_2": "1323", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.781", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21602494, + 35.39820036 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 781, + "fid_1": "637", + "orig_fid": "637", + "fid_2": "1324", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.782", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2188857, + 35.39801913 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 782, + "fid_1": "640", + "orig_fid": "640", + "fid_2": "1325", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.783", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20164249, + 35.39852894 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 783, + "fid_1": "644", + "orig_fid": "644", + "fid_2": "1326", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.784", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10272536, + 35.39944745 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 784, + "fid_1": "664", + "orig_fid": "664", + "fid_2": "1327", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.785", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20379412, + 35.40312474 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 785, + "fid_1": "734", + "orig_fid": "734", + "fid_2": "1328", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.786", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20950301, + 35.39839127 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 786, + "fid_1": "648", + "orig_fid": "648", + "fid_2": "1329", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.787", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2008898, + 35.39891359 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 787, + "fid_1": "653", + "orig_fid": "653", + "fid_2": "1330", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.788", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2103087, + 35.39863755 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 788, + "fid_1": "652", + "orig_fid": "652", + "fid_2": "1331", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.789", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21193866, + 35.39898018 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 789, + "fid_1": "655", + "orig_fid": "655", + "fid_2": "1332", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.790", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21234899, + 35.40492102 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 790, + "fid_1": "760", + "orig_fid": "760", + "fid_2": "1333", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.791", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20865307, + 35.39888457 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 791, + "fid_1": "658", + "orig_fid": "658", + "fid_2": "1334", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.792", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20827159, + 35.39909432 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 792, + "fid_1": "659", + "orig_fid": "659", + "fid_2": "1335", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.793", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20809302, + 35.39919926 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 793, + "fid_1": "662", + "orig_fid": "662", + "fid_2": "1336", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.794", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21772632, + 35.39929991 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 794, + "fid_1": "663", + "orig_fid": "663", + "fid_2": "1337", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.795", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2264774, + 35.39875307 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 795, + "fid_1": "661", + "orig_fid": "661", + "fid_2": "1338", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.796", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20786371, + 35.39946856 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 796, + "fid_1": "668", + "orig_fid": "668", + "fid_2": "1339", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.797", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20152689, + 35.39956367 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 797, + "fid_1": "671", + "orig_fid": "671", + "fid_2": "1340", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.798", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21761025, + 35.39950234 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 798, + "fid_1": "667", + "orig_fid": "667", + "fid_2": "1341", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.799", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21332515, + 35.39959487 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 799, + "fid_1": "669", + "orig_fid": "669", + "fid_2": "1342", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.800", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20250442, + 35.39988158 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 800, + "fid_1": "678", + "orig_fid": "678", + "fid_2": "1343", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.801", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21413, + 35.39969298 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 801, + "fid_1": "673", + "orig_fid": "673", + "fid_2": "1344", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.802", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20232164, + 35.39996781 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 802, + "fid_1": "680", + "orig_fid": "680", + "fid_2": "1345", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.803", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2153723, + 35.39983384 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 803, + "fid_1": "677", + "orig_fid": "677", + "fid_2": "1346", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.804", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20769653, + 35.39971756 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 804, + "fid_1": "679", + "orig_fid": "679", + "fid_2": "1347", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.805", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21501293, + 35.39993842 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 805, + "fid_1": "681", + "orig_fid": "681", + "fid_2": "1348", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.806", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21546577, + 35.40001201 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 806, + "fid_1": "682", + "orig_fid": "682", + "fid_2": "1349", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.807", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19973049, + 35.40018478 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 807, + "fid_1": "686", + "orig_fid": "686", + "fid_2": "1350", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.808", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19829052, + 35.40047565 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 808, + "fid_1": "690", + "orig_fid": "690", + "fid_2": "1351", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.809", + "geometry": { + "type": "Point", + "coordinates": [ + 118.205878, + 35.40056091 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 809, + "fid_1": "691", + "orig_fid": "691", + "fid_2": "1352", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.810", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19697696, + 35.40090124 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 810, + "fid_1": "697", + "orig_fid": "697", + "fid_2": "1353", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.811", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21685656, + 35.40077738 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 811, + "fid_1": "693", + "orig_fid": "693", + "fid_2": "1354", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.812", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20370311, + 35.40081115 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 812, + "fid_1": "701", + "orig_fid": "701", + "fid_2": "1355", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.813", + "geometry": { + "type": "Point", + "coordinates": [ + 118.22994657, + 35.39975012 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 813, + "fid_1": "695", + "orig_fid": "695", + "fid_2": "1356", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.814", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20146267, + 35.40110947 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 814, + "fid_1": "704", + "orig_fid": "704", + "fid_2": "1357", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.815", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2138966, + 35.40093299 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 815, + "fid_1": "702", + "orig_fid": "702", + "fid_2": "1358", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.816", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21231991, + 35.4052237 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 816, + "fid_1": "766", + "orig_fid": "766", + "fid_2": "1359", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.817", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21212145, + 35.4053004 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 817, + "fid_1": "768", + "orig_fid": "768", + "fid_2": "1360", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.818", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21011907, + 35.40077241 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 818, + "fid_1": "705", + "orig_fid": "705", + "fid_2": "1361", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.819", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20201224, + 35.40158864 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 819, + "fid_1": "708", + "orig_fid": "708", + "fid_2": "1362", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.820", + "geometry": { + "type": "Point", + "coordinates": [ + 118.122897, + 35.40232645 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 820, + "fid_1": "716", + "orig_fid": "716", + "fid_2": "1363", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.821", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13106178, + 35.40241863 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 821, + "fid_1": "717", + "orig_fid": "717", + "fid_2": "1364", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.822", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13076335, + 35.40237704 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 822, + "fid_1": "718", + "orig_fid": "718", + "fid_2": "1365", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.823", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19810961, + 35.40179987 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 823, + "fid_1": "711", + "orig_fid": "711", + "fid_2": "1366", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.824", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20236223, + 35.40180296 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 824, + "fid_1": "710", + "orig_fid": "710", + "fid_2": "1367", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.825", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13117599, + 35.40258895 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 825, + "fid_1": "723", + "orig_fid": "723", + "fid_2": "1368", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.826", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20292285, + 35.40195794 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 826, + "fid_1": "712", + "orig_fid": "712", + "fid_2": "1369", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.827", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20427561, + 35.40200167 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 827, + "fid_1": "714", + "orig_fid": "714", + "fid_2": "1370", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.828", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12346612, + 35.40289238 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 828, + "fid_1": "730", + "orig_fid": "730", + "fid_2": "1371", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.829", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12323169, + 35.40301347 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 829, + "fid_1": "731", + "orig_fid": "731", + "fid_2": "1372", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.830", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20095415, + 35.40247206 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 830, + "fid_1": "719", + "orig_fid": "719", + "fid_2": "1373", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.831", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21070324, + 35.4024934 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 831, + "fid_1": "720", + "orig_fid": "720", + "fid_2": "1374", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.832", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20419173, + 35.40250862 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 832, + "fid_1": "722", + "orig_fid": "722", + "fid_2": "1375", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.833", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19781052, + 35.40268457 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 833, + "fid_1": "726", + "orig_fid": "726", + "fid_2": "1376", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.834", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20055376, + 35.40267898 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 834, + "fid_1": "725", + "orig_fid": "725", + "fid_2": "1377", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.835", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20263027, + 35.40308489 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 835, + "fid_1": "733", + "orig_fid": "733", + "fid_2": "1378", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.836", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2040341, + 35.40310387 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 836, + "fid_1": "732", + "orig_fid": "732", + "fid_2": "1379", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.837", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20631156, + 35.40231277 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 837, + "fid_1": "738", + "orig_fid": "738", + "fid_2": "1380", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.838", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21063085, + 35.40417302 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 838, + "fid_1": "747", + "orig_fid": "747", + "fid_2": "1381", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.839", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13384224, + 35.40519964 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 839, + "fid_1": "767", + "orig_fid": "767", + "fid_2": "1382", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.840", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13401452, + 35.40534016 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 840, + "fid_1": "769", + "orig_fid": "769", + "fid_2": "1383", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.841", + "geometry": { + "type": "Point", + "coordinates": [ + 118.21232918, + 35.40505341 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 841, + "fid_1": "763", + "orig_fid": "763", + "fid_2": "1384", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.842", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20090635, + 35.4055883 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 842, + "fid_1": "773", + "orig_fid": "773", + "fid_2": "1385", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.843", + "geometry": { + "type": "Point", + "coordinates": [ + 118.2069062, + 35.40569533 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 843, + "fid_1": "776", + "orig_fid": "776", + "fid_2": "1386", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.844", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12570529, + 35.40742126 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 844, + "fid_1": "789", + "orig_fid": "789", + "fid_2": "1387", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.845", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19982446, + 35.407824 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 845, + "fid_1": "791", + "orig_fid": "791", + "fid_2": "1388", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.846", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20182422, + 35.40795527 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 846, + "fid_1": "792", + "orig_fid": "792", + "fid_2": "1389", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.847", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1995956, + 35.4083031 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 847, + "fid_1": "798", + "orig_fid": "798", + "fid_2": "1390", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.848", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1998391, + 35.40837628 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 848, + "fid_1": "800", + "orig_fid": "800", + "fid_2": "1391", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.849", + "geometry": { + "type": "Point", + "coordinates": [ + 118.19999003, + 35.4084216 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 849, + "fid_1": "801", + "orig_fid": "801", + "fid_2": "1392", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.850", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20463738, + 35.40865746 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 850, + "fid_1": "804", + "orig_fid": "804", + "fid_2": "1393", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.851", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20329019, + 35.40867153 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 851, + "fid_1": "805", + "orig_fid": "805", + "fid_2": "1394", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.852", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20940135, + 35.40916744 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 852, + "fid_1": "810", + "orig_fid": "810", + "fid_2": "1395", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.853", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20618928, + 35.40909805 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 853, + "fid_1": "811", + "orig_fid": "811", + "fid_2": "1396", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.854", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13215725, + 35.41032834 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 854, + "fid_1": "818", + "orig_fid": "818", + "fid_2": "1397", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.855", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13235768, + 35.41057473 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 855, + "fid_1": "822", + "orig_fid": "822", + "fid_2": "1398", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.856", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10191346, + 35.41033202 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 856, + "fid_1": "829", + "orig_fid": "829", + "fid_2": "1399", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.857", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20869143, + 35.41042305 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 857, + "fid_1": "819", + "orig_fid": "819", + "fid_2": "1400", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.858", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13313095, + 35.41176567 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 858, + "fid_1": "831", + "orig_fid": "831", + "fid_2": "1401", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.859", + "geometry": { + "type": "Point", + "coordinates": [ + 118.20518852, + 35.4111934 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 859, + "fid_1": "828", + "orig_fid": "828", + "fid_2": "1402", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.860", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10377733, + 35.41357995 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 860, + "fid_1": "839", + "orig_fid": "839", + "fid_2": "1403", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.861", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10346552, + 35.413793 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 861, + "fid_1": "841", + "orig_fid": "841", + "fid_2": "1404", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.862", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10404655, + 35.41418406 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 862, + "fid_1": "847", + "orig_fid": "847", + "fid_2": "1405", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.863", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10723809, + 35.41443623 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 863, + "fid_1": "854", + "orig_fid": "854", + "fid_2": "1407", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.864", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10903817, + 35.41517946 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 864, + "fid_1": "858", + "orig_fid": "858", + "fid_2": "1408", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.865", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11402013, + 35.41516494 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 865, + "fid_1": "857", + "orig_fid": "857", + "fid_2": "1409", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.866", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11089239, + 35.41524126 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 866, + "fid_1": "860", + "orig_fid": "860", + "fid_2": "1410", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.867", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10968014, + 35.41544945 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 867, + "fid_1": "861", + "orig_fid": "861", + "fid_2": "1411", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.868", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11028658, + 35.41837973 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 868, + "fid_1": "900", + "orig_fid": "900", + "fid_2": "1412", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.869", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11220997, + 35.41912214 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 869, + "fid_1": "906", + "orig_fid": "906", + "fid_2": "1413", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.870", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11240062, + 35.41914989 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 870, + "fid_1": "908", + "orig_fid": "908", + "fid_2": "1414", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.871", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12081406, + 35.41914379 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 871, + "fid_1": "907", + "orig_fid": "907", + "fid_2": "1415", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.872", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11256024, + 35.42082175 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 872, + "fid_1": "926", + "orig_fid": "926", + "fid_2": "1416", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.873", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1032789, + 35.42103877 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 873, + "fid_1": "928", + "orig_fid": "928", + "fid_2": "1417", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.874", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10551363, + 35.42330389 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 874, + "fid_1": "953", + "orig_fid": "953", + "fid_2": "1418", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.875", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10538433, + 35.42416597 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 875, + "fid_1": "969", + "orig_fid": "969", + "fid_2": "1419", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.876", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10604357, + 35.42580326 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 876, + "fid_1": "994", + "orig_fid": "994", + "fid_2": "1420", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.877", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10485581, + 35.42599168 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 877, + "fid_1": "997", + "orig_fid": "997", + "fid_2": "1421", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.878", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1047141, + 35.39284663 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 878, + "fid_1": "521", + "orig_fid": "521", + "fid_2": "1517", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.879", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99619498, + 35.42504338 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 879, + "fid_1": "989", + "orig_fid": "989", + "fid_2": "1561", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.880", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99130556, + 35.42597858 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 880, + "fid_1": "996", + "orig_fid": "996", + "fid_2": "1562", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.881", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99171167, + 35.42618833 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 881, + "fid_1": "999", + "orig_fid": "999", + "fid_2": "1563", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.882", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99245691, + 35.42631102 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 882, + "fid_1": "1000", + "orig_fid": "1000", + "fid_2": "1564", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.883", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09607009, + 35.39576466 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 883, + "fid_1": "590", + "orig_fid": "590", + "fid_2": "2465", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.884", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01270353, + 35.41411263 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 884, + "fid_1": "845", + "orig_fid": "845", + "fid_2": "2492", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.885", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06423125, + 35.39546929 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 885, + "fid_1": "581", + "orig_fid": "581", + "fid_2": "2564", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.886", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07476662, + 35.39890147 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 886, + "fid_1": "654", + "orig_fid": "654", + "fid_2": "2565", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.887", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06017537, + 35.39451512 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 887, + "fid_1": "553", + "orig_fid": "553", + "fid_2": "2566", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.888", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05173691, + 35.40013264 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 888, + "fid_1": "685", + "orig_fid": "685", + "fid_2": "2567", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.889", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05562609, + 35.3949835 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 889, + "fid_1": "566", + "orig_fid": "566", + "fid_2": "2568", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.890", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09318015, + 35.41557327 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 890, + "fid_1": "867", + "orig_fid": "867", + "fid_2": "2569", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.891", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04636913, + 35.40063934 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 891, + "fid_1": "696", + "orig_fid": "696", + "fid_2": "2570", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.892", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09737339, + 35.39335359 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 892, + "fid_1": "535", + "orig_fid": "535", + "fid_2": "2572", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.893", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06469234, + 35.39578305 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 893, + "fid_1": "586", + "orig_fid": "586", + "fid_2": "2573", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.894", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05444002, + 35.39588146 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 894, + "fid_1": "592", + "orig_fid": "592", + "fid_2": "2574", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.895", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05349308, + 35.39603527 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 895, + "fid_1": "597", + "orig_fid": "597", + "fid_2": "2575", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.896", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06002627, + 35.39448436 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 896, + "fid_1": "552", + "orig_fid": "552", + "fid_2": "2576", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.897", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0739021, + 35.39598144 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 897, + "fid_1": "594", + "orig_fid": "594", + "fid_2": "2577", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.898", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01269288, + 35.41402602 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 898, + "fid_1": "844", + "orig_fid": "844", + "fid_2": "2578", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.899", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03137911, + 35.42336983 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 899, + "fid_1": "956", + "orig_fid": "956", + "fid_2": "2579", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.900", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0524339, + 35.39633378 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 900, + "fid_1": "604", + "orig_fid": "604", + "fid_2": "2581", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.901", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05127831, + 35.40005606 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 901, + "fid_1": "683", + "orig_fid": "683", + "fid_2": "2582", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.902", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0976572, + 35.39646455 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 902, + "fid_1": "605", + "orig_fid": "605", + "fid_2": "2584", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.903", + "geometry": { + "type": "Point", + "coordinates": [ + 118.091573, + 35.39694594 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 903, + "fid_1": "611", + "orig_fid": "611", + "fid_2": "2585", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.904", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04776644, + 35.39991427 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 904, + "fid_1": "684", + "orig_fid": "684", + "fid_2": "2586", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.905", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09879752, + 35.39517204 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 905, + "fid_1": "587", + "orig_fid": "587", + "fid_2": "2587", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.906", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06019447, + 35.39260006 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 906, + "fid_1": "520", + "orig_fid": "520", + "fid_2": "2591", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.907", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05811105, + 35.3936 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 907, + "fid_1": "537", + "orig_fid": "537", + "fid_2": "2592", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.908", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10068689, + 35.39585754 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 908, + "fid_1": "588", + "orig_fid": "588", + "fid_2": "2593", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.909", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05875416, + 35.39299517 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 909, + "fid_1": "526", + "orig_fid": "526", + "fid_2": "2594", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.910", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05872092, + 35.39326826 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 910, + "fid_1": "533", + "orig_fid": "533", + "fid_2": "2595", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.911", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05856172, + 35.39330149 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 911, + "fid_1": "534", + "orig_fid": "534", + "fid_2": "2596", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.912", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07685524, + 35.39885395 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 912, + "fid_1": "656", + "orig_fid": "656", + "fid_2": "2597", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.913", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09341568, + 35.39750897 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 913, + "fid_1": "624", + "orig_fid": "624", + "fid_2": "2598", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.914", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0506097, + 35.39794433 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 914, + "fid_1": "634", + "orig_fid": "634", + "fid_2": "2599", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.915", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04973341, + 35.39846741 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 915, + "fid_1": "643", + "orig_fid": "643", + "fid_2": "2600", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.916", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04820262, + 35.39862883 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 916, + "fid_1": "647", + "orig_fid": "647", + "fid_2": "2601", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.917", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04402734, + 35.4009656 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 917, + "fid_1": "700", + "orig_fid": "700", + "fid_2": "2602", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.918", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07766675, + 35.4009193 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 918, + "fid_1": "698", + "orig_fid": "698", + "fid_2": "2603", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.919", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05334354, + 35.40128855 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 919, + "fid_1": "706", + "orig_fid": "706", + "fid_2": "2604", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.920", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05101678, + 35.40296351 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 920, + "fid_1": "729", + "orig_fid": "729", + "fid_2": "2605", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.921", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09384582, + 35.40265154 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 921, + "fid_1": "728", + "orig_fid": "728", + "fid_2": "2606", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.922", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0269291, + 35.40846998 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 922, + "fid_1": "802", + "orig_fid": "802", + "fid_2": "2607", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.923", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03769131, + 35.40307423 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 923, + "fid_1": "737", + "orig_fid": "737", + "fid_2": "2608", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.924", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04957548, + 35.40361578 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 924, + "fid_1": "739", + "orig_fid": "739", + "fid_2": "2609", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.925", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03699472, + 35.40367003 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 925, + "fid_1": "741", + "orig_fid": "741", + "fid_2": "2610", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.926", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04903712, + 35.40428619 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 926, + "fid_1": "749", + "orig_fid": "749", + "fid_2": "2611", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.927", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0544436, + 35.40426371 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 927, + "fid_1": "748", + "orig_fid": "748", + "fid_2": "2612", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.928", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07487437, + 35.40406052 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 928, + "fid_1": "745", + "orig_fid": "745", + "fid_2": "2613", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.929", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09517184, + 35.4039876 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 929, + "fid_1": "752", + "orig_fid": "752", + "fid_2": "2614", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.930", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09793734, + 35.40399347 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 930, + "fid_1": "751", + "orig_fid": "751", + "fid_2": "2615", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.931", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04640211, + 35.40464583 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 931, + "fid_1": "756", + "orig_fid": "756", + "fid_2": "2616", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.932", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04940479, + 35.40483869 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 932, + "fid_1": "757", + "orig_fid": "757", + "fid_2": "2617", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.933", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04277234, + 35.40499227 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 933, + "fid_1": "761", + "orig_fid": "761", + "fid_2": "2618", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.934", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07462302, + 35.40485843 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 934, + "fid_1": "759", + "orig_fid": "759", + "fid_2": "2619", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.935", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05250169, + 35.40509382 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 935, + "fid_1": "764", + "orig_fid": "764", + "fid_2": "2620", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.936", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09818776, + 35.40462265 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 936, + "fid_1": "758", + "orig_fid": "758", + "fid_2": "2621", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.937", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04942586, + 35.40559916 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 937, + "fid_1": "774", + "orig_fid": "774", + "fid_2": "2622", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.938", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07421911, + 35.40538494 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 938, + "fid_1": "770", + "orig_fid": "770", + "fid_2": "2623", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.939", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04996736, + 35.4057062 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 939, + "fid_1": "775", + "orig_fid": "775", + "fid_2": "2624", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.940", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04102092, + 35.40703428 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 940, + "fid_1": "784", + "orig_fid": "784", + "fid_2": "2625", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.941", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07854092, + 35.40677858 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 941, + "fid_1": "782", + "orig_fid": "782", + "fid_2": "2626", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.942", + "geometry": { + "type": "Point", + "coordinates": [ + 118.041267, + 35.40722304 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 942, + "fid_1": "786", + "orig_fid": "786", + "fid_2": "2627", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.943", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04138366, + 35.40729113 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 943, + "fid_1": "787", + "orig_fid": "787", + "fid_2": "2628", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.944", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09895819, + 35.40689368 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 944, + "fid_1": "785", + "orig_fid": "785", + "fid_2": "2629", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.945", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0787411, + 35.40732643 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 945, + "fid_1": "788", + "orig_fid": "788", + "fid_2": "2631", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.946", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05749951, + 35.40775678 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 946, + "fid_1": "790", + "orig_fid": "790", + "fid_2": "2632", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.947", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04144868, + 35.40817334 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 947, + "fid_1": "795", + "orig_fid": "795", + "fid_2": "2633", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.948", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04167883, + 35.40834586 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 948, + "fid_1": "799", + "orig_fid": "799", + "fid_2": "2634", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.949", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10115357, + 35.40755751 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 949, + "fid_1": "808", + "orig_fid": "808", + "fid_2": "2635", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.950", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08134237, + 35.41021131 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 950, + "fid_1": "817", + "orig_fid": "817", + "fid_2": "2636", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.951", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07431487, + 35.41109021 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 951, + "fid_1": "827", + "orig_fid": "827", + "fid_2": "2637", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.952", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01373403, + 35.4129704 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 952, + "fid_1": "834", + "orig_fid": "834", + "fid_2": "2638", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.953", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01249509, + 35.41329436 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 953, + "fid_1": "836", + "orig_fid": "836", + "fid_2": "2639", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.954", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0132224, + 35.41343306 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 954, + "fid_1": "838", + "orig_fid": "838", + "fid_2": "2640", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.955", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01353507, + 35.41371184 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 955, + "fid_1": "840", + "orig_fid": "840", + "fid_2": "2641", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.956", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01217854, + 35.41402558 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 956, + "fid_1": "843", + "orig_fid": "843", + "fid_2": "2642", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.957", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01216982, + 35.41422519 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 957, + "fid_1": "846", + "orig_fid": "846", + "fid_2": "2643", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.958", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01260944, + 35.41441291 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 958, + "fid_1": "851", + "orig_fid": "851", + "fid_2": "2644", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.959", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04121306, + 35.41473346 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 959, + "fid_1": "855", + "orig_fid": "855", + "fid_2": "2645", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.960", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00906338, + 35.41580024 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 960, + "fid_1": "868", + "orig_fid": "868", + "fid_2": "2646", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.961", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00214063, + 35.41588625 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 961, + "fid_1": "869", + "orig_fid": "869", + "fid_2": "2647", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.962", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00962366, + 35.41588146 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 962, + "fid_1": "870", + "orig_fid": "870", + "fid_2": "2648", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.963", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01211486, + 35.41609773 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 963, + "fid_1": "874", + "orig_fid": "874", + "fid_2": "2649", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.964", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09395392, + 35.41548695 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 964, + "fid_1": "864", + "orig_fid": "864", + "fid_2": "2650", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.965", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03049597, + 35.41619073 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 965, + "fid_1": "875", + "orig_fid": "875", + "fid_2": "2651", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.966", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10132139, + 35.41562733 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 966, + "fid_1": "866", + "orig_fid": "866", + "fid_2": "2652", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.967", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00807357, + 35.41688899 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 967, + "fid_1": "881", + "orig_fid": "881", + "fid_2": "2653", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.968", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03059009, + 35.41670611 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 968, + "fid_1": "879", + "orig_fid": "879", + "fid_2": "2654", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.969", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0918164, + 35.41691153 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 969, + "fid_1": "884", + "orig_fid": "884", + "fid_2": "2655", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.970", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00673127, + 35.41778248 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 970, + "fid_1": "891", + "orig_fid": "891", + "fid_2": "2656", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.971", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00660809, + 35.41786294 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 971, + "fid_1": "892", + "orig_fid": "892", + "fid_2": "2657", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.972", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00638033, + 35.417957 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 972, + "fid_1": "893", + "orig_fid": "893", + "fid_2": "2658", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.973", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00574171, + 35.41805021 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 973, + "fid_1": "895", + "orig_fid": "895", + "fid_2": "2659", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.974", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00522992, + 35.41814751 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 974, + "fid_1": "897", + "orig_fid": "897", + "fid_2": "2660", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.91 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.975", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10163934, + 35.41732025 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 975, + "fid_1": "888", + "orig_fid": "888", + "fid_2": "2661", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.976", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00502079, + 35.41823398 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 976, + "fid_1": "899", + "orig_fid": "899", + "fid_2": "2662", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.977", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00456367, + 35.41901247 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 977, + "fid_1": "905", + "orig_fid": "905", + "fid_2": "2663", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.978", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09698874, + 35.419329 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 978, + "fid_1": "911", + "orig_fid": "911", + "fid_2": "2664", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.979", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09669035, + 35.42013617 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 979, + "fid_1": "918", + "orig_fid": "918", + "fid_2": "2665", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.980", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09801194, + 35.42034813 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 980, + "fid_1": "921", + "orig_fid": "921", + "fid_2": "2666", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.981", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08110275, + 35.42063541 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 981, + "fid_1": "923", + "orig_fid": "923", + "fid_2": "2667", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.982", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09649875, + 35.42045739 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 982, + "fid_1": "929", + "orig_fid": "929", + "fid_2": "2669", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.983", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00787611, + 35.42216448 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 983, + "fid_1": "940", + "orig_fid": "940", + "fid_2": "2670", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.984", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00976299, + 35.42232106 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 984, + "fid_1": "944", + "orig_fid": "944", + "fid_2": "2671", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.985", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01107962, + 35.42223151 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 985, + "fid_1": "945", + "orig_fid": "945", + "fid_2": "2672", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.986", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10140433, + 35.42213516 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 986, + "fid_1": "941", + "orig_fid": "941", + "fid_2": "2673", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.987", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08150389, + 35.4228153 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 987, + "fid_1": "948", + "orig_fid": "948", + "fid_2": "2674", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.988", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03463225, + 35.42343253 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 988, + "fid_1": "957", + "orig_fid": "957", + "fid_2": "2675", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.989", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0082627, + 35.42382835 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 989, + "fid_1": "962", + "orig_fid": "962", + "fid_2": "2676", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.990", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00163318, + 35.42454269 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 990, + "fid_1": "971", + "orig_fid": "971", + "fid_2": "2677", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.991", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09784733, + 35.42378058 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 991, + "fid_1": "961", + "orig_fid": "961", + "fid_2": "2678", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.992", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09815645, + 35.42392747 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 992, + "fid_1": "964", + "orig_fid": "964", + "fid_2": "2679", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.993", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09851715, + 35.42399709 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 993, + "fid_1": "966", + "orig_fid": "966", + "fid_2": "2680", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.994", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00258476, + 35.42510578 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 994, + "fid_1": "988", + "orig_fid": "988", + "fid_2": "2681", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.995", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09849854, + 35.42436257 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 995, + "fid_1": "970", + "orig_fid": "970", + "fid_2": "2682", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.996", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03442086, + 35.42502439 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 996, + "fid_1": "981", + "orig_fid": "981", + "fid_2": "2683", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.997", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03455292, + 35.42509276 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 997, + "fid_1": "986", + "orig_fid": "986", + "fid_2": "2683", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.998", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02739851, + 35.42511715 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 998, + "fid_1": "990", + "orig_fid": "990", + "fid_2": "2684", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.999", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0980104, + 35.42479864 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 999, + "fid_1": "976", + "orig_fid": "976", + "fid_2": "2685", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1000", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09935819, + 35.42478472 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1000, + "fid_1": "977", + "orig_fid": "977", + "fid_2": "2686", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1001", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0992349, + 35.42489943 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1001, + "fid_1": "978", + "orig_fid": "978", + "fid_2": "2687", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1002", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03290852, + 35.42614415 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1002, + "fid_1": "998", + "orig_fid": "998", + "fid_2": "2688", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1003", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0901429, + 35.42628903 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1003, + "fid_1": "1002", + "orig_fid": "1002", + "fid_2": "2691", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1004", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0287261, + 35.41948525 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1004, + "fid_1": "913", + "orig_fid": "913", + "fid_2": "3175", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1005", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10312176, + 35.42938181 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1005, + "fid_1": "1046", + "orig_fid": "1046", + "fid_2": "4", + "mc": "沙沟峪坝式蓄水池修复", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1006", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10593822, + 35.4315547 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1006, + "fid_1": "1080", + "orig_fid": "1080", + "fid_2": "24", + "mc": "薛庄镇28号蓄水池", + "xsl": "300", + "dz": "懒人屋300立方米不带盖蓄水池", + "bz": "联系电话:13791590781", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1007", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9889154, + 35.43134049 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1007, + "fid_1": "1079", + "orig_fid": "1079", + "fid_2": "33", + "mc": "建设中小水窖", + "xsl": "", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "", + "qufen": "", + "creater_id": "", + "is_del": 0, + "mag": 4.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1008", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12927499, + 35.44452519 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1008, + "fid_1": "1360", + "orig_fid": "1360", + "fid_2": "36", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 2.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1009", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11504518, + 35.44414158 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1009, + "fid_1": "1314", + "orig_fid": "1314", + "fid_2": "185", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1010", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13248543, + 35.43649405 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1010, + "fid_1": "1174", + "orig_fid": "1174", + "fid_2": "192", + "mc": "彭蓝子西山溢流坝", + "xsl": "1000", + "dz": "彭蓝子西山", + "bz": "", + "jczt": "规划中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1011", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98966331, + 35.43776738 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1011, + "fid_1": "1187", + "orig_fid": "1187", + "fid_2": "200", + "mc": "涝草按西沟", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1012", + "geometry": { + "type": "Point", + "coordinates": [ + 117.985057, + 35.441522 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1012, + "fid_1": "1260", + "orig_fid": "1260", + "fid_2": "212", + "mc": "韩家峪蓄水池2", + "xsl": "300", + "dz": "韩家峪", + "bz": "与影像不符", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1013", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97107274, + 35.43105171 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1013, + "fid_1": "1071", + "orig_fid": "1071", + "fid_2": "238", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1014", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94541526, + 35.44452871 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1014, + "fid_1": "1324", + "orig_fid": "1324", + "fid_2": "242", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1015", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98245224, + 35.43948262 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1015, + "fid_1": "1227", + "orig_fid": "1227", + "fid_2": "248", + "mc": "大田庄乡12号韩家峪蓄水池", + "xsl": "300", + "dz": "青云韩家峪1号", + "bz": "规格:10*10*3/联系电话:15965791588", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1016", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97468521, + 35.43307732 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1016, + "fid_1": "1122", + "orig_fid": "1122", + "fid_2": "259", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1017", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99172877, + 35.43586862 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1017, + "fid_1": "1170", + "orig_fid": "1170", + "fid_2": "269", + "mc": "小贤河涝草庵村西塘坝", + "xsl": "3000", + "dz": "涝草庵村西", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1018", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95634917, + 35.43831633 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1018, + "fid_1": "1200", + "orig_fid": "1200", + "fid_2": "285", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1019", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94177138, + 35.44436391 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1019, + "fid_1": "1326", + "orig_fid": "1326", + "fid_2": "291", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1020", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97783784, + 35.43898044 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1020, + "fid_1": "1211", + "orig_fid": "1211", + "fid_2": "295", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1021", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9695107, + 35.43101626 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1021, + "fid_1": "1072", + "orig_fid": "1072", + "fid_2": "300", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1022", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95646408, + 35.44505122 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1022, + "fid_1": "1333", + "orig_fid": "1333", + "fid_2": "302", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1023", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96480963, + 35.43276848 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1023, + "fid_1": "1131", + "orig_fid": "1131", + "fid_2": "305", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 2.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1024", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93613928, + 35.44387451 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1024, + "fid_1": "1303", + "orig_fid": "1303", + "fid_2": "307", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1025", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93832267, + 35.44041437 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1025, + "fid_1": "1304", + "orig_fid": "1304", + "fid_2": "307", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 1.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1026", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96663365, + 35.43128994 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1026, + "fid_1": "1076", + "orig_fid": "1076", + "fid_2": "309", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1027", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96915367, + 35.43110029 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1027, + "fid_1": "1077", + "orig_fid": "1077", + "fid_2": "310", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1028", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99449377, + 35.43468319 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1028, + "fid_1": "1143", + "orig_fid": "1143", + "fid_2": "311", + "mc": "小贤河村涝草庵山村北蓄水池", + "xsl": "200", + "dz": "涝草庵村北", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1029", + "geometry": { + "type": "Point", + "coordinates": [ + 117.91721432, + 35.44478255 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1029, + "fid_1": "1334", + "orig_fid": "1334", + "fid_2": "312", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1030", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9821048, + 35.44012611 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1030, + "fid_1": "1240", + "orig_fid": "1240", + "fid_2": "314", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1031", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98254548, + 35.44093473 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1031, + "fid_1": "1253", + "orig_fid": "1253", + "fid_2": "319", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1032", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96905539, + 35.43055085 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1032, + "fid_1": "1056", + "orig_fid": "1056", + "fid_2": "322", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1033", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95111503, + 35.4472516 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1033, + "fid_1": "1392", + "orig_fid": "1392", + "fid_2": "323", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1034", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98458489, + 35.42981642 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1034, + "fid_1": "1061", + "orig_fid": "1061", + "fid_2": "330", + "mc": "东蒙镇小贤河村村北石拉峪南2号水库", + "xsl": "200000", + "dz": "石拉峪河坝南", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝,水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1035", + "geometry": { + "type": "Point", + "coordinates": [ + 117.92028969, + 35.44924711 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1035, + "fid_1": "1472", + "orig_fid": "1472", + "fid_2": "331", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1036", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98745197, + 35.43115919 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1036, + "fid_1": "1081", + "orig_fid": "1081", + "fid_2": "336", + "mc": "东蒙镇小贤河村石拉峪北塘坝", + "xsl": "400000", + "dz": "石拉峪河坝北", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝,水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 4.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1037", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97420686, + 35.43185966 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1037, + "fid_1": "1086", + "orig_fid": "1086", + "fid_2": "337", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1038", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97224707, + 35.43177992 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1038, + "fid_1": "1089", + "orig_fid": "1089", + "fid_2": "338", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1039", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97429268, + 35.432795 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1039, + "fid_1": "1115", + "orig_fid": "1115", + "fid_2": "339", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1040", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94551428, + 35.44260357 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1040, + "fid_1": "1296", + "orig_fid": "1296", + "fid_2": "340", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1041", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95236677, + 35.44242789 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1041, + "fid_1": "1315", + "orig_fid": "1315", + "fid_2": "341", + "mc": "大田庄东渐富水库", + "xsl": "900000", + "dz": "东渐富村", + "bz": "粘土心墙坝/坝高:16", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库大坝", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 0.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1042", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9314152, + 35.44420442 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1042, + "fid_1": "1319", + "orig_fid": "1319", + "fid_2": "342", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1043", + "geometry": { + "type": "Point", + "coordinates": [ + 117.92082448, + 35.44387576 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1043, + "fid_1": "1320", + "orig_fid": "1320", + "fid_2": "343", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1044", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94945342, + 35.4494859 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1044, + "fid_1": "1480", + "orig_fid": "1480", + "fid_2": "344", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1045", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94178049, + 35.44531192 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1045, + "fid_1": "1340", + "orig_fid": "1340", + "fid_2": "345", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1046", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93853413, + 35.44535762 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1046, + "fid_1": "1356", + "orig_fid": "1356", + "fid_2": "347", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1047", + "geometry": { + "type": "Point", + "coordinates": [ + 117.937164, + 35.44597695 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1047, + "fid_1": "1357", + "orig_fid": "1357", + "fid_2": "348", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1048", + "geometry": { + "type": "Point", + "coordinates": [ + 117.91409664, + 35.44621471 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1048, + "fid_1": "1363", + "orig_fid": "1363", + "fid_2": "349", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1049", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99319137, + 35.4465233 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1049, + "fid_1": "1376", + "orig_fid": "1376", + "fid_2": "350", + "mc": "罗圈崖水库", + "xsl": "10000", + "dz": "黄土村东", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 3.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1050", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94704059, + 35.44707719 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1050, + "fid_1": "1398", + "orig_fid": "1398", + "fid_2": "352", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1051", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94088107, + 35.44735948 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1051, + "fid_1": "1408", + "orig_fid": "1408", + "fid_2": "353", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1052", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98231635, + 35.44753829 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1052, + "fid_1": "1414", + "orig_fid": "1414", + "fid_2": "356", + "mc": "大田庄青云水库", + "xsl": "14730", + "dz": "青云村", + "bz": "粘土心墙坝/坝高:9.8", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库大坝", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 3.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1053", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99006664, + 35.44817524 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1053, + "fid_1": "1430", + "orig_fid": "1430", + "fid_2": "357", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1054", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9410711, + 35.44836898 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1054, + "fid_1": "1432", + "orig_fid": "1432", + "fid_2": "358", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1055", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97452827, + 35.44898736 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1055, + "fid_1": "1448", + "orig_fid": "1448", + "fid_2": "359", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1056", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95788518, + 35.44916358 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1056, + "fid_1": "1460", + "orig_fid": "1460", + "fid_2": "360", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1057", + "geometry": { + "type": "Point", + "coordinates": [ + 117.92485769, + 35.44963557 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1057, + "fid_1": "1482", + "orig_fid": "1482", + "fid_2": "361", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1058", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94390874, + 35.4497738 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1058, + "fid_1": "1501", + "orig_fid": "1501", + "fid_2": "362", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1059", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9935383, + 35.42622424 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1059, + "fid_1": "1034", + "orig_fid": "1034", + "fid_2": "413", + "mc": "水库", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库水面", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 2.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1060", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96176689, + 35.44158493 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1060, + "fid_1": "1281", + "orig_fid": "1281", + "fid_2": "414", + "mc": "水库", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库水面", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 3.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1061", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9743187, + 35.44458797 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1061, + "fid_1": "1347", + "orig_fid": "1347", + "fid_2": "415", + "mc": "水库", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库水面", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1062", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99746153, + 35.44615114 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1062, + "fid_1": "1359", + "orig_fid": "1359", + "fid_2": "427", + "mc": "大田庄乡罗圈崖11号蓄水池", + "xsl": "300", + "dz": "黄土罗圈崖3号", + "bz": "借口损坏,无法使用;规格:10*10*3/联系电话:15953982208", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "不支持", + "jlstjl": "200", + "xszt": "260", + "appid": "", + "lx": "森林保育水源地,蓄水池,蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1063", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03413683, + 35.42654645 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1063, + "fid_1": "1005", + "orig_fid": "1005", + "fid_2": "430", + "mc": "山里人家西北蓄水池", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 4.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1064", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01131191, + 35.42782664 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1064, + "fid_1": "1027", + "orig_fid": "1027", + "fid_2": "432", + "mc": "大门山前蓄水池", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 1.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1065", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03790523, + 35.44832823 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1065, + "fid_1": "1421", + "orig_fid": "1421", + "fid_2": "459", + "mc": "步游道23", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 4.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1066", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0547146, + 35.44236807 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1066, + "fid_1": "1274", + "orig_fid": "1274", + "fid_2": "466", + "mc": "隧道-上水库1", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 3.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1067", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06252683, + 35.43252177 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1067, + "fid_1": "1103", + "orig_fid": "1103", + "fid_2": "467", + "mc": "隧道-上水库2", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 0.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1068", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06417917, + 35.43070221 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1068, + "fid_1": "1060", + "orig_fid": "1060", + "fid_2": "468", + "mc": "隧道-上水库3", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 1.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1069", + "geometry": { + "type": "Point", + "coordinates": [ + 117.999995, + 35.434365 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1069, + "fid_1": "1135", + "orig_fid": "1135", + "fid_2": "469", + "mc": "小贤河村红山沟塘坝", + "xsl": "1000", + "dz": "小贤河村红山沟", + "bz": "", + "jczt": "已建完", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1070", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01804391, + 35.4477423 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1070, + "fid_1": "1404", + "orig_fid": "1404", + "fid_2": "471", + "mc": "大田庄乡1号蓄水池", + "xsl": "300", + "dz": "团圆店防火隔离门50米东侧蓄水池", + "bz": "规格:10*10*3/联系电话:15266622991", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "290", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1071", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03785461, + 35.42679976 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1071, + "fid_1": "1014", + "orig_fid": "1014", + "fid_2": "476", + "mc": "茶棚谷农家乐饭店下方路东200米蓄水池", + "xsl": "300", + "dz": "茶棚谷农家乐饭店下方路东200米", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1072", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03687684, + 35.42721961 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1072, + "fid_1": "1022", + "orig_fid": "1022", + "fid_2": "489", + "mc": "国有塔山林场5号蓄水池", + "xsl": "200", + "dz": "茶棚谷下方路东蓄水池", + "bz": "规格:10.5*7.3*4/联系电话:17662982613", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1073", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02609519, + 35.44091445 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1073, + "fid_1": "1249", + "orig_fid": "1249", + "fid_2": "494", + "mc": "国有塔山林场2号玻璃钢水窖", + "xsl": "0", + "dz": "塔山\n分区华石山路南", + "bz": "联系电话:13287189203", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1074", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05347795, + 35.42682687 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1074, + "fid_1": "1015", + "orig_fid": "1015", + "fid_2": "502", + "mc": "国有塔山林场1号蓄水池", + "xsl": "200", + "dz": "塔山分区渡槽西路北蓄水池", + "bz": "规格:10.5*7.3*4/联系电话:17662910636", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "200", + "appid": "47", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1075", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07935795, + 35.43510688 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1075, + "fid_1": "1159", + "orig_fid": "1159", + "fid_2": "506", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1076", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03005289, + 35.42868185 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1076, + "fid_1": "1038", + "orig_fid": "1038", + "fid_2": "513", + "mc": "东蒙镇7号蓄水池", + "xsl": "300", + "dz": "布袋口屋后", + "bz": "规格:10*10*3/联系电话:15588099218", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1077", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0763299, + 35.44478744 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1077, + "fid_1": "1328", + "orig_fid": "1328", + "fid_2": "515", + "mc": "薛庄镇32号蓄水池", + "xsl": "0", + "dz": "彭家岚子老驴脖300立方米不带盖蓄", + "bz": "联系电话:13791561105", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1078", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99938348, + 35.44399066 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1078, + "fid_1": "1309", + "orig_fid": "1309", + "fid_2": "518", + "mc": "东蒙镇18号蓄水池", + "xsl": "300", + "dz": "小贤河观音禅院", + "bz": "规格:11*11*3/联系电话:17753933378", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1079", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05660214, + 35.44245953 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1079, + "fid_1": "1277", + "orig_fid": "1277", + "fid_2": "540", + "mc": "玻璃钢蓄水池", + "xsl": "0", + "dz": "薛庄镇马头崖", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1080", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06277426, + 35.43225786 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1080, + "fid_1": "1091", + "orig_fid": "1091", + "fid_2": "541", + "mc": "玻璃钢蓄水池", + "xsl": "0", + "dz": "薛庄镇马头崖抽水蓄能隧道2", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1081", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06425864, + 35.43057261 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1081, + "fid_1": "1055", + "orig_fid": "1055", + "fid_2": "542", + "mc": "玻璃钢蓄水池", + "xsl": "0", + "dz": "薛庄镇马头崖抽水蓄能修道1", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1082", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07755504, + 35.42659365 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1082, + "fid_1": "1010", + "orig_fid": "1010", + "fid_2": "546", + "mc": "马头崮蓄水池1号", + "xsl": "500", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "满水", + "appid": "17", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1083", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04230155, + 35.44868476 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1083, + "fid_1": "1433", + "orig_fid": "1433", + "fid_2": "548", + "mc": "葫芦崖向北500米拐弯处路北蓄水池", + "xsl": "200", + "dz": "", + "bz": "2023山水项目", + "jczt": "", + "sfhs": "", + "kyzt": "不可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "未灌水", + "appid": "45", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1084", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08758065, + 35.42795031 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1084, + "fid_1": "1104", + "orig_fid": "1104", + "fid_2": "560", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 4.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1085", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08636551, + 35.43508421 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1085, + "fid_1": "1184", + "orig_fid": "1184", + "fid_2": "561", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 0.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1086", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08555193, + 35.43861277 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1086, + "fid_1": "1225", + "orig_fid": "1225", + "fid_2": "562", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 0.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1087", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08470358, + 35.44085455 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1087, + "fid_1": "1259", + "orig_fid": "1259", + "fid_2": "563", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 3.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1088", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01138158, + 35.44823885 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1088, + "fid_1": "1438", + "orig_fid": "1438", + "fid_2": "564", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 3.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1089", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10145899, + 35.43527133 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1089, + "fid_1": "1161", + "orig_fid": "1161", + "fid_2": "596", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1090", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02880331, + 35.43593458 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1090, + "fid_1": "1172", + "orig_fid": "1172", + "fid_2": "606", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1091", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07887363, + 35.43674986 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1091, + "fid_1": "1176", + "orig_fid": "1176", + "fid_2": "607", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1092", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02963991, + 35.42727905 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1092, + "fid_1": "1025", + "orig_fid": "1025", + "fid_2": "634", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1093", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08616758, + 35.42836451 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1093, + "fid_1": "1037", + "orig_fid": "1037", + "fid_2": "635", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1094", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02943965, + 35.42892183 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1094, + "fid_1": "1044", + "orig_fid": "1044", + "fid_2": "636", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1095", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03031316, + 35.42973497 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1095, + "fid_1": "1047", + "orig_fid": "1047", + "fid_2": "637", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1096", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0766569, + 35.43025874 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1096, + "fid_1": "1051", + "orig_fid": "1051", + "fid_2": "638", + "mc": "马头崖西山塘坝", + "xsl": "1000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1097", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09440236, + 35.43028173 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1097, + "fid_1": "1054", + "orig_fid": "1054", + "fid_2": "639", + "mc": "下梧桐沟西塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1098", + "geometry": { + "type": "Point", + "coordinates": [ + 118.042151, + 35.43093011 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1098, + "fid_1": "1070", + "orig_fid": "1070", + "fid_2": "640", + "mc": "塔山老田家塘坝", + "xsl": "1200", + "dz": "塔山老田家", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1099", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09751075, + 35.43201936 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1099, + "fid_1": "1097", + "orig_fid": "1097", + "fid_2": "641", + "mc": "下梧桐沟北塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1100", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03063851, + 35.43269354 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1100, + "fid_1": "1118", + "orig_fid": "1118", + "fid_2": "642", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1101", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07102711, + 35.43346922 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1101, + "fid_1": "1128", + "orig_fid": "1128", + "fid_2": "644", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.91 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1102", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06926606, + 35.43429204 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1102, + "fid_1": "1134", + "orig_fid": "1134", + "fid_2": "645", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1103", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03127726, + 35.43706847 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1103, + "fid_1": "1183", + "orig_fid": "1183", + "fid_2": "646", + "mc": "塔山葫芦坛水库", + "xsl": "400", + "dz": "塔山分区葫芦坛", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1104", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00619441, + 35.43785178 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1104, + "fid_1": "1191", + "orig_fid": "1191", + "fid_2": "647", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1105", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00535271, + 35.43847274 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1105, + "fid_1": "1204", + "orig_fid": "1204", + "fid_2": "648", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1106", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02828576, + 35.43772438 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1106, + "fid_1": "1206", + "orig_fid": "1206", + "fid_2": "649", + "mc": "国有塔山林场1号玻璃钢水窖", + "xsl": "970000", + "dz": "北刘庄村天蒙银座南门西", + "bz": "粘土心墙坝/坝高:17,联系电话:13287189203", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "蓄水池-山水项目(统一编号),水库,水库大坝", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1107", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03203234, + 35.43865415 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1107, + "fid_1": "1207", + "orig_fid": "1207", + "fid_2": "650", + "mc": "塔山小蝴蝶沟水库", + "xsl": "300", + "dz": "塔山分区小蝴蝶沟", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 2.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1108", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09950942, + 35.43944361 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1108, + "fid_1": "1229", + "orig_fid": "1229", + "fid_2": "652", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1109", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09193317, + 35.44132063 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1109, + "fid_1": "1264", + "orig_fid": "1264", + "fid_2": "653", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1110", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08723095, + 35.44295854 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1110, + "fid_1": "1291", + "orig_fid": "1291", + "fid_2": "654", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1111", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07763263, + 35.44361734 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1111, + "fid_1": "1310", + "orig_fid": "1310", + "fid_2": "655", + "mc": "彭家岚子西塘坝", + "xsl": "2000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1112", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01402564, + 35.44675511 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1112, + "fid_1": "1386", + "orig_fid": "1386", + "fid_2": "658", + "mc": "大田庄周家庄水库", + "xsl": "900000", + "dz": "周家庄", + "bz": "粘土心墙坝/坝高:22", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库,水库大坝", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 3.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1113", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07879955, + 35.44818556 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1113, + "fid_1": "1424", + "orig_fid": "1424", + "fid_2": "659", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1114", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10127066, + 35.43133989 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1114, + "fid_1": "1075", + "orig_fid": "1075", + "fid_2": "692", + "mc": "上梧桐沟北山", + "xsl": "300", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "水量充足", + "appid": "84", + "lx": "山地河沟", + "qufen": "山地河沟", + "creater_id": "1", + "is_del": 0, + "mag": 3.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1115", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03290698, + 35.43980157 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1115, + "fid_1": "1233", + "orig_fid": "1233", + "fid_2": "693", + "mc": "游乐园塘坝", + "xsl": "300", + "dz": "游乐园", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1116", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03368016, + 35.4409561 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1116, + "fid_1": "1251", + "orig_fid": "1251", + "fid_2": "694", + "mc": "变电箱塘坝", + "xsl": "300", + "dz": "变电箱", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1117", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00218215, + 35.44174776 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1117, + "fid_1": "1263", + "orig_fid": "1263", + "fid_2": "695", + "mc": "小贤河村烂镢庵庙西蓄水池", + "xsl": "300", + "dz": "烂镢庵庙西", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1118", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00171449, + 35.44177713 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1118, + "fid_1": "1266", + "orig_fid": "1266", + "fid_2": "696", + "mc": "烂镢庵边自建小水池", + "xsl": "20", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "600", + "xszt": "满水", + "appid": "9", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 3.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1119", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01876368, + 35.44877832 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1119, + "fid_1": "1436", + "orig_fid": "1436", + "fid_2": "697", + "mc": "团圆店农用水池", + "xsl": "50", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1120", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06718206, + 35.42662285 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1120, + "fid_1": "1011", + "orig_fid": "1011", + "fid_2": "702", + "mc": "马头崮蓄水池6号", + "xsl": "500", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "不支持", + "jlstjl": "150", + "xszt": "满水", + "appid": "26", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1121", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07700045, + 35.43683654 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1121, + "fid_1": "1177", + "orig_fid": "1177", + "fid_2": "707", + "mc": "彭家岚子蓄水池2号/彭家岚子老水池", + "xsl": "300", + "dz": "彭家岚子", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "50", + "xszt": "满", + "appid": "", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1122", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04205186, + 35.43508641 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1122, + "fid_1": "1153", + "orig_fid": "1153", + "fid_2": "722", + "mc": "国有塔山林场6号蓄水池", + "xsl": "200", + "dz": "塔山分区茶棚谷", + "bz": "规格:10.5*7.3*4/联系电话:17662982613", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "200", + "appid": "41", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1123", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07406331, + 35.42780149 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1123, + "fid_1": "1028", + "orig_fid": "1028", + "fid_2": "728", + "mc": "马头崮蓄水池4号", + "xsl": "500", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "不支持", + "jlstjl": "150", + "xszt": "满水", + "appid": "24", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1124", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07151077, + 35.42804108 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1124, + "fid_1": "1031", + "orig_fid": "1031", + "fid_2": "729", + "mc": "马头崮蓄水池5号", + "xsl": "500", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "不支持", + "jlstjl": "150", + "xszt": "满水", + "appid": "25", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1125", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07639402, + 35.4432133 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1125, + "fid_1": "1295", + "orig_fid": "1295", + "fid_2": "731", + "mc": "彭家岚子蓄水池1号", + "xsl": "300", + "dz": "彭家岚子", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "不可用", + "sfzcsb": "不支持", + "jlstjl": "700", + "xszt": "没水", + "appid": "10", + "lx": "补充水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1126", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07665353, + 35.43092717 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1126, + "fid_1": "1066", + "orig_fid": "1066", + "fid_2": "732", + "mc": "蓄水池", + "xsl": "500", + "dz": "", + "bz": "新建蓄水池", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "不支持", + "jlstjl": "无水", + "xszt": "100", + "appid": "64", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1127", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12670063, + 35.43737853 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1127, + "fid_1": "1180", + "orig_fid": "1180", + "fid_2": "737", + "mc": "转山顶蓄水池1号", + "xsl": "300", + "dz": "转山顶", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "197", + "lx": "蓄水池,塘坝", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1128", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13343, + 35.44557599 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1128, + "fid_1": "1343", + "orig_fid": "1343", + "fid_2": "738", + "mc": "转山顶蓄水池2号", + "xsl": "300", + "dz": "转山顶", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "水过半", + "appid": "185", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1129", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1035967, + 35.43914318 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1129, + "fid_1": "1214", + "orig_fid": "1214", + "fid_2": "751", + "mc": "薛庄镇27号蓄水池", + "xsl": "300", + "dz": "李行沟大顶山300立方米不带盖蓄水", + "bz": "联系电话:13791590781", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满", + "appid": "227", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1130", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12290107, + 35.42717017 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1130, + "fid_1": "1023", + "orig_fid": "1023", + "fid_2": "758", + "mc": "南竹篮子北塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "157", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1131", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11456523, + 35.443599 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1131, + "fid_1": "1306", + "orig_fid": "1306", + "fid_2": "831", + "mc": "南涝坑塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "半水", + "appid": "150", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1132", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1023759, + 35.45014879 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1132, + "fid_1": "1508", + "orig_fid": "1508", + "fid_2": "832", + "mc": "胡家庄南梁塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满水", + "appid": "153", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1133", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12980316, + 35.44254612 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1133, + "fid_1": "1288", + "orig_fid": "1288", + "fid_2": "841", + "mc": "戚领箭拦水坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满水", + "appid": "163", + "lx": "摸排", + "qufen": "山地河沟", + "creater_id": "1", + "is_del": 0, + "mag": 4.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1134", + "geometry": { + "type": "Point", + "coordinates": [ + 118.129393, + 35.440175 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1134, + "fid_1": "1239", + "orig_fid": "1239", + "fid_2": "848", + "mc": "戚领箭拦河坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "207", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1135", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12393737, + 35.43095238 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1135, + "fid_1": "1065", + "orig_fid": "1065", + "fid_2": "858", + "mc": "2T消防水桶2个", + "xsl": "4", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "满水", + "appid": "250", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 0.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1136", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12729676, + 35.4346589 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1136, + "fid_1": "1141", + "orig_fid": "1141", + "fid_2": "859", + "mc": "2T消防水桶2个", + "xsl": "4", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "满水", + "appid": "253", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 4.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1137", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13115491, + 35.43451428 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1137, + "fid_1": "1140", + "orig_fid": "1140", + "fid_2": "860", + "mc": "2T消防水桶", + "xsl": "4", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "满水", + "appid": "254", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 3.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1138", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00626292, + 35.43985164 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1138, + "fid_1": "1234", + "orig_fid": "1234", + "fid_2": "862", + "mc": "东蒙镇27号蓄水池", + "xsl": "1000", + "dz": "烂厥庵", + "bz": "规格:14*11*6/联系电话:13606321058", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "无水", + "appid": "176", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1139", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98232804, + 35.43083317 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1139, + "fid_1": "1062", + "orig_fid": "1062", + "fid_2": "865", + "mc": "东蒙镇小贤河岑北崖13号蓄水池", + "xsl": "300", + "dz": "岑北崖", + "bz": "规格:7*14*4/联系电话:17753933378", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "50", + "xszt": "150", + "appid": "183", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1140", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11532442, + 35.44486153 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1140, + "fid_1": "1329", + "orig_fid": "1329", + "fid_2": "866", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1141", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10517718, + 35.43141989 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1141, + "fid_1": "1078", + "orig_fid": "1078", + "fid_2": "878", + "mc": "懒人屋坝式蓄水池待修复,补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "30", + "xszt": "", + "appid": "173", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1142", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13405425, + 35.44493938 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1142, + "fid_1": "1330", + "orig_fid": "1330", + "fid_2": "879", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1143", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99056577, + 35.43480361 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1143, + "fid_1": "1148", + "orig_fid": "1148", + "fid_2": "894", + "mc": "东蒙镇小贤河村石拉峪沟北小贤河涝草庵15号", + "xsl": "300", + "dz": "石拉峪沟北涝草庵", + "bz": "规格:11*11*3/联系电话:17753933378", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "180", + "appid": "181", + "lx": "森林保育水源地,蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1144", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98673537, + 35.43471145 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1144, + "fid_1": "1144", + "orig_fid": "1144", + "fid_2": "909", + "mc": "东蒙镇小贤河村鸡关山石拉峪沟西云瀑洞天山顶14号蓄水池", + "xsl": "300", + "dz": "石拉峪沟西 鸡关山", + "bz": "规格:11*11*3/联系电话:17753933378", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "150", + "appid": "182", + "lx": "森林保育水源地,蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1145", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01809878, + 35.43285911 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1145, + "fid_1": "1114", + "orig_fid": "1114", + "fid_2": "910", + "mc": "国有塔山林场19号蓄水池", + "xsl": "200", + "dz": "塔山\n分区大门山护林点井边", + "bz": "规格:10.5*7.3*4/联系电话:17661625771", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "无水", + "appid": "168", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1146", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05099209, + 35.42658823 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1146, + "fid_1": "1008", + "orig_fid": "1008", + "fid_2": "911", + "mc": "国有塔山林场2号蓄水池", + "xsl": "200", + "dz": "塔山分区东口检查站蓄水池", + "bz": "规格:10.5*7.3*4/联系电话:17662910636", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "180", + "appid": "198", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1147", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04454608, + 35.42918333 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1147, + "fid_1": "1043", + "orig_fid": "1043", + "fid_2": "912", + "mc": "国有塔山林场3号蓄水池", + "xsl": "300", + "dz": "东蒙茶棚崮北怪坡路北", + "bz": "规格:14.5*7.3*4/联系电话:17661197608", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "满水", + "appid": "39", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1148", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0432904, + 35.42916885 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1148, + "fid_1": "1042", + "orig_fid": "1042", + "fid_2": "913", + "mc": "国有塔山林场4号蓄水池", + "xsl": "300", + "dz": "怪坡路南蓄水池", + "bz": "规格:10.5*7.3*4/联系电话:17661197608", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "满水", + "appid": "42", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1149", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03743889, + 35.43271773 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1149, + "fid_1": "1109", + "orig_fid": "1109", + "fid_2": "914", + "mc": "国有塔山林场7号蓄水池", + "xsl": "200", + "dz": "塔山分区牛头口蓄水池", + "bz": "规格:10.5*7.3*4/联系电话:17562910723", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "满水", + "appid": "33", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1150", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03554011, + 35.43467671 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1150, + "fid_1": "1142", + "orig_fid": "1142", + "fid_2": "915", + "mc": "国有塔山林场8号蓄水池", + "xsl": "300", + "dz": "塔山分区大黑峪蓄水池", + "bz": "规格:14.5*7.3*4/联系电话:17562910723", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "满水", + "appid": "37", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1151", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03297528, + 35.43576213 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1151, + "fid_1": "1166", + "orig_fid": "1166", + "fid_2": "916", + "mc": "国有塔山林场9号蓄水池", + "xsl": "200", + "dz": "塔山分区蒙山寺蓄水池", + "bz": "规格:10.5*7.3*4/联系电话:13287189203", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "满水", + "appid": "54", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1152", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03074208, + 35.43759429 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1152, + "fid_1": "1185", + "orig_fid": "1185", + "fid_2": "917", + "mc": "国有塔山林场10号蓄水池", + "xsl": "200", + "dz": "塔山\n分区景区南门", + "bz": "规格:10.5*7.3*4/联系电话:13287189203", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "满水", + "appid": "40", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1153", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02968123, + 35.4415946 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1153, + "fid_1": "1261", + "orig_fid": "1261", + "fid_2": "918", + "mc": "国有塔山林场12号蓄水池", + "xsl": "200", + "dz": "塔山分区咬舌子沟蓄水池", + "bz": "规格:10.5*7.3*4/联系电话:13181226208", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "满水", + "appid": "44", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1154", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02586514, + 35.44244935 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1154, + "fid_1": "1276", + "orig_fid": "1276", + "fid_2": "919", + "mc": "国有塔山林场13号蓄水池", + "xsl": "300", + "dz": "西口下方200米路北蓄水池", + "bz": "规格:10.5*7.3*4/联系电话:13181226208", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "满水", + "appid": "48", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1155", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00744198, + 35.44219843 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1155, + "fid_1": "1273", + "orig_fid": "1273", + "fid_2": "920", + "mc": "国有塔山林场20号蓄水池", + "xsl": "200", + "dz": "塔山\n分区烂镢庵护林点", + "bz": "规格:10.5*7.3*4/联系电话:17661625765", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "无水", + "appid": "193", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1156", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02353127, + 35.44171141 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1156, + "fid_1": "1262", + "orig_fid": "1262", + "fid_2": "922", + "mc": "国有塔山林场14号蓄水池", + "xsl": "300", + "dz": "西口检查站", + "bz": "规格:14.5*7.3*4/联系电话:17560150208", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "满水", + "appid": "46", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1157", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01572433, + 35.43348558 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1157, + "fid_1": "1125", + "orig_fid": "1125", + "fid_2": "923", + "mc": "国有塔山林场18号蓄水池", + "xsl": "200", + "dz": "塔山\n分区大门山护林点", + "bz": "规格:10.5*7.3*4/联系电话:17661625771", + "jczt": "", + "sfhs": "", + "kyzt": "不可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "无水", + "appid": "169", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1158", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01944684, + 35.42927993 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1158, + "fid_1": "1045", + "orig_fid": "1045", + "fid_2": "926", + "mc": "东蒙镇32号蓄水池", + "xsl": "300", + "dz": "台乐庄台子沟水库北", + "bz": "规格:11*11*3/联系电话:13563967763", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "180", + "xszt": "280", + "appid": "166", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1159", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01958914, + 35.43089635 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1159, + "fid_1": "1064", + "orig_fid": "1064", + "fid_2": "927", + "mc": "东蒙镇33号蓄水池", + "xsl": "300", + "dz": "台子沟大门山", + "bz": "规格:11*11*3/联系电话:13563967763", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "280", + "appid": "167", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1160", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0055673, + 35.42693086 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1160, + "fid_1": "1017", + "orig_fid": "1017", + "fid_2": "933", + "mc": "东蒙镇21号蓄水池", + "xsl": "300", + "dz": "大门山前", + "bz": "规格:11*11*3/联系电话:17753933378", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "220", + "appid": "172", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1161", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00794775, + 35.4323899 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1161, + "fid_1": "1098", + "orig_fid": "1098", + "fid_2": "934", + "mc": "东蒙镇20号蓄水池", + "xsl": "300", + "dz": "大门山后", + "bz": "规格:11*11*3/联系电话:17753933378", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "180", + "xszt": "150", + "appid": "213", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1162", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00614558, + 35.4334491 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1162, + "fid_1": "1124", + "orig_fid": "1124", + "fid_2": "935", + "mc": "东蒙镇19号蓄水池", + "xsl": "300", + "dz": "大门山后", + "bz": "规格:11*11*3/联系电话:17753933378", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "290", + "appid": "212", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1163", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00334189, + 35.44041982 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1163, + "fid_1": "1242", + "orig_fid": "1242", + "fid_2": "936", + "mc": "东蒙镇17号蓄水池", + "xsl": "300", + "dz": "烂镢庵庙东", + "bz": "规格:11*11*3/联系电话:17753933378", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "260", + "appid": "178", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1164", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00204238, + 35.43547647 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1164, + "fid_1": "1163", + "orig_fid": "1163", + "fid_2": "938", + "mc": "东蒙镇16号蓄水池", + "xsl": "300", + "dz": "山神庙北防火路西", + "bz": "规格:11*11*3/联系电话:17753933378", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "260", + "appid": "179", + "lx": "蓄水池-山水项目(统一编号),蓄水池森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1165", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01537309, + 35.43475569 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1165, + "fid_1": "1146", + "orig_fid": "1146", + "fid_2": "939", + "mc": "东蒙镇28号蓄水池", + "xsl": "0", + "dz": "大门山后防火路北", + "bz": "规格:11*11*3/联系电话:13606321058", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "280", + "appid": "171", + "lx": "蓄水池-山水项目(统一编号),水库,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1166", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02963032, + 35.439302 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1166, + "fid_1": "1217", + "orig_fid": "1217", + "fid_2": "940", + "mc": "国有塔山林场11号蓄水池", + "xsl": "300", + "dz": "塔山 分区咬舌子沟", + "bz": "规格:14.5*7.3*4/联系电话:13287189203", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "300", + "xszt": "满水", + "appid": "55", + "lx": "蓄水池,蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1167", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07471375, + 35.43976353 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1167, + "fid_1": "1232", + "orig_fid": "1232", + "fid_2": "941", + "mc": "彭篮子塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "60", + "lx": "塘坝,森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1168", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0760913, + 35.42699723 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1168, + "fid_1": "1019", + "orig_fid": "1019", + "fid_2": "946", + "mc": "马头崮蓄水池3号", + "xsl": "500", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满水", + "appid": "203", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1169", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07695592, + 35.42653554 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1169, + "fid_1": "1006", + "orig_fid": "1006", + "fid_2": "947", + "mc": "马头崮蓄水池2号", + "xsl": "500", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "满水", + "appid": "204", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1170", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07556131, + 35.4457703 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1170, + "fid_1": "1354", + "orig_fid": "1354", + "fid_2": "952", + "mc": "彭家岚子西山护林房西坝式蓄水池修", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "61", + "lx": "森林保育水源地,塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1171", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99684059, + 35.43168743 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1171, + "fid_1": "1085", + "orig_fid": "1085", + "fid_2": "1537", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1172", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09944397, + 35.426045 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1172, + "fid_1": "1013", + "orig_fid": "1013", + "fid_2": "964", + "mc": "薛庄镇沙沟峪水库", + "xsl": "120000", + "dz": "沙沟峪村", + "bz": "粘土心墙坝/坝高:11.5", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "199", + "lx": "水库,水库大坝", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 2.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1173", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07407214, + 35.43303781 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1173, + "fid_1": "1120", + "orig_fid": "1120", + "fid_2": "965", + "mc": "溪源民民宿塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "58", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1174", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00456807, + 35.43883993 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1174, + "fid_1": "1210", + "orig_fid": "1210", + "fid_2": "966", + "mc": "坑塘", + "xsl": "400", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "1500", + "xszt": "满水", + "appid": "7", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1175", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03446215, + 35.44190439 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1175, + "fid_1": "1271", + "orig_fid": "1271", + "fid_2": "967", + "mc": "葫芦崖塘坝", + "xsl": "5000", + "dz": "天蒙景区缆车下站", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "100", + "appid": "51", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1176", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02962732, + 35.44349697 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1176, + "fid_1": "1300", + "orig_fid": "1300", + "fid_2": "968", + "mc": "塔山驻地西路北咬石沟水库2023山水项目", + "xsl": "1000", + "dz": "咬石沟", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "200m3", + "appid": "50", + "lx": "水库,塘坝", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 3.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1177", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10047604, + 35.44431725 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1177, + "fid_1": "1332", + "orig_fid": "1332", + "fid_2": "969", + "mc": "转山前东水库", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "500", + "xszt": "半水", + "appid": "162", + "lx": "摸排", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 2.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1178", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02571203, + 35.42758532 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1178, + "fid_1": "1026", + "orig_fid": "1026", + "fid_2": "974", + "mc": "东蒙布袋口检查站西南900米塘坝", + "xsl": "300", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "200", + "appid": "43", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1179", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09813321, + 35.43346365 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1179, + "fid_1": "1126", + "orig_fid": "1126", + "fid_2": "975", + "mc": "沙沟峪蓄水池1号", + "xsl": "1000", + "dz": "沙沟峪", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满水", + "appid": "220", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1180", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0110341, + 35.43625 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1180, + "fid_1": "1173", + "orig_fid": "1173", + "fid_2": "976", + "mc": "东蒙镇35号蓄水池", + "xsl": "300", + "dz": "大门山后防火路南", + "bz": "规格:11*11*3/联系电话:13754729088", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "280", + "appid": "175", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1181", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00167908, + 35.4390316 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1181, + "fid_1": "1212", + "orig_fid": "1212", + "fid_2": "977", + "mc": "小贤河北山自建水池", + "xsl": "200", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "258", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 4.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1182", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04074985, + 35.43241837 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1182, + "fid_1": "1100", + "orig_fid": "1100", + "fid_2": "980", + "mc": "茶棚谷防火检查站正北100米小水库2023山水项目", + "xsl": "200", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "三分之一", + "appid": "34", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1183", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02514528, + 35.42793272 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1183, + "fid_1": "1030", + "orig_fid": "1030", + "fid_2": "981", + "mc": "布袋口检查站西南2号塘坝", + "xsl": "300", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "120", + "xszt": "0", + "appid": "219", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1184", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0246953, + 35.42810378 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1184, + "fid_1": "1033", + "orig_fid": "1033", + "fid_2": "982", + "mc": "布袋口检查站西南3号塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "无水", + "appid": "217", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1185", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03424945, + 35.44163878 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1185, + "fid_1": "1267", + "orig_fid": "1267", + "fid_2": "984", + "mc": "葫芦崖塘坝", + "xsl": "5000", + "dz": "天蒙景区缆车下站", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "100", + "appid": "49", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1186", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05292812, + 35.43586312 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1186, + "fid_1": "1221", + "orig_fid": "1221", + "fid_2": "986", + "mc": "抽水蓄能上水库", + "xsl": "8000000", + "dz": "塔山分区塔山上(蓄能水库)", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库水面", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1187", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08346837, + 35.44194483 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1187, + "fid_1": "1289", + "orig_fid": "1289", + "fid_2": "988", + "mc": "塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1188", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06641536, + 35.43295534 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1188, + "fid_1": "1116", + "orig_fid": "1116", + "fid_2": "994", + "mc": "九寨山庄塘坝", + "xsl": "200", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1189", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02098875, + 35.44995506 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1189, + "fid_1": "1498", + "orig_fid": "1498", + "fid_2": "1002", + "mc": "农用水池", + "xsl": "", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "蓄水池", + "creater_id": "0", + "is_del": 0, + "mag": 0.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1190", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13183744, + 35.44850214 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1190, + "fid_1": "1425", + "orig_fid": "1425", + "fid_2": "1014", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1191", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1055327, + 35.44895258 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1191, + "fid_1": "1445", + "orig_fid": "1445", + "fid_2": "1294", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1192", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13233058, + 35.43555179 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1192, + "fid_1": "1164", + "orig_fid": "1164", + "fid_2": "1422", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1193", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1326431, + 35.43807494 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1193, + "fid_1": "1194", + "orig_fid": "1194", + "fid_2": "1423", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1194", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12766691, + 35.43838882 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1194, + "fid_1": "1198", + "orig_fid": "1198", + "fid_2": "1424", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1195", + "geometry": { + "type": "Point", + "coordinates": [ + 118.13388274, + 35.43858744 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1195, + "fid_1": "1202", + "orig_fid": "1202", + "fid_2": "1425", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1196", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10520297, + 35.43943664 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1196, + "fid_1": "1220", + "orig_fid": "1220", + "fid_2": "1426", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1197", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10600777, + 35.43953269 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1197, + "fid_1": "1228", + "orig_fid": "1228", + "fid_2": "1427", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1198", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12094678, + 35.44061791 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1198, + "fid_1": "1246", + "orig_fid": "1246", + "fid_2": "1428", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1199", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10728667, + 35.44106239 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1199, + "fid_1": "1252", + "orig_fid": "1252", + "fid_2": "1429", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1200", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12137114, + 35.44115291 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1200, + "fid_1": "1255", + "orig_fid": "1255", + "fid_2": "1430", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1201", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1217001, + 35.4412748 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1201, + "fid_1": "1256", + "orig_fid": "1256", + "fid_2": "1431", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1202", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10977722, + 35.44266748 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1202, + "fid_1": "1283", + "orig_fid": "1283", + "fid_2": "1432", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1203", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12633706, + 35.44241889 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1203, + "fid_1": "1278", + "orig_fid": "1278", + "fid_2": "1433", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1204", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10541756, + 35.44274242 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1204, + "fid_1": "1284", + "orig_fid": "1284", + "fid_2": "1434", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1205", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12396629, + 35.44400359 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1205, + "fid_1": "1308", + "orig_fid": "1308", + "fid_2": "1435", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1206", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10668576, + 35.44440388 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1206, + "fid_1": "1318", + "orig_fid": "1318", + "fid_2": "1436", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1207", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11171887, + 35.44445837 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1207, + "fid_1": "1321", + "orig_fid": "1321", + "fid_2": "1437", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1208", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12810783, + 35.44840688 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1208, + "fid_1": "1422", + "orig_fid": "1422", + "fid_2": "1439", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1209", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11716424, + 35.44887026 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1209, + "fid_1": "1440", + "orig_fid": "1440", + "fid_2": "1440", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1210", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10449662, + 35.4492441 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1210, + "fid_1": "1459", + "orig_fid": "1459", + "fid_2": "1441", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1211", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11243435, + 35.44942437 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1211, + "fid_1": "1469", + "orig_fid": "1469", + "fid_2": "1442", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1212", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12121, + 35.44945158 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1212, + "fid_1": "1470", + "orig_fid": "1470", + "fid_2": "1443", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1213", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12130481, + 35.44952846 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1213, + "fid_1": "1473", + "orig_fid": "1473", + "fid_2": "1444", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1214", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1042963, + 35.44986929 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1214, + "fid_1": "1491", + "orig_fid": "1491", + "fid_2": "1445", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1215", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93080089, + 35.44999564 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1215, + "fid_1": "1502", + "orig_fid": "1502", + "fid_2": "1524", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1216", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97645376, + 35.43405318 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1216, + "fid_1": "1132", + "orig_fid": "1132", + "fid_2": "1525", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1217", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99703416, + 35.43439456 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1217, + "fid_1": "1138", + "orig_fid": "1138", + "fid_2": "1527", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1218", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99358183, + 35.44419615 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1218, + "fid_1": "1312", + "orig_fid": "1312", + "fid_2": "1531", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1219", + "geometry": { + "type": "Point", + "coordinates": [ + 117.991355, + 35.43132747 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1219, + "fid_1": "1073", + "orig_fid": "1073", + "fid_2": "1532", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1220", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99701098, + 35.43124346 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1220, + "fid_1": "1074", + "orig_fid": "1074", + "fid_2": "1533", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1221", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97552389, + 35.43187296 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1221, + "fid_1": "1084", + "orig_fid": "1084", + "fid_2": "1535", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1222", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97852739, + 35.43404519 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1222, + "fid_1": "1133", + "orig_fid": "1133", + "fid_2": "1536", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.91 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1223", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97284571, + 35.43248987 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1223, + "fid_1": "1101", + "orig_fid": "1101", + "fid_2": "1538", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1224", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99682203, + 35.43203266 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1224, + "fid_1": "1094", + "orig_fid": "1094", + "fid_2": "1539", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1225", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97300335, + 35.43259392 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1225, + "fid_1": "1105", + "orig_fid": "1105", + "fid_2": "1540", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1226", + "geometry": { + "type": "Point", + "coordinates": [ + 117.972543, + 35.43258469 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1226, + "fid_1": "1106", + "orig_fid": "1106", + "fid_2": "1541", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1227", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97477755, + 35.43264247 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1227, + "fid_1": "1108", + "orig_fid": "1108", + "fid_2": "1542", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1228", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9770784, + 35.4327763 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1228, + "fid_1": "1112", + "orig_fid": "1112", + "fid_2": "1543", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1229", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99735423, + 35.43301086 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1229, + "fid_1": "1117", + "orig_fid": "1117", + "fid_2": "1545", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1230", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99750315, + 35.43317817 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1230, + "fid_1": "1123", + "orig_fid": "1123", + "fid_2": "1546", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1231", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97666124, + 35.43380219 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1231, + "fid_1": "1130", + "orig_fid": "1130", + "fid_2": "1547", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1232", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99757797, + 35.43365365 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1232, + "fid_1": "1127", + "orig_fid": "1127", + "fid_2": "1548", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1233", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99716285, + 35.43432996 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1233, + "fid_1": "1137", + "orig_fid": "1137", + "fid_2": "1549", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1234", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97782329, + 35.43497066 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1234, + "fid_1": "1152", + "orig_fid": "1152", + "fid_2": "1550", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1235", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99198068, + 35.43568508 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1235, + "fid_1": "1165", + "orig_fid": "1165", + "fid_2": "1551", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1236", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96045398, + 35.43745933 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1236, + "fid_1": "1182", + "orig_fid": "1182", + "fid_2": "1552", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1237", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95563794, + 35.43817511 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1237, + "fid_1": "1196", + "orig_fid": "1196", + "fid_2": "1553", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1238", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96197774, + 35.43921268 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1238, + "fid_1": "1216", + "orig_fid": "1216", + "fid_2": "1554", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1239", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95091566, + 35.43945876 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1239, + "fid_1": "1222", + "orig_fid": "1222", + "fid_2": "1555", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1240", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9783422, + 35.43945077 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1240, + "fid_1": "1223", + "orig_fid": "1223", + "fid_2": "1556", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1241", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99702914, + 35.43255505 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1241, + "fid_1": "1111", + "orig_fid": "1111", + "fid_2": "1558", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1242", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99259343, + 35.44562649 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1242, + "fid_1": "1344", + "orig_fid": "1344", + "fid_2": "1559", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1243", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99534075, + 35.44841734 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1243, + "fid_1": "1423", + "orig_fid": "1423", + "fid_2": "1560", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1244", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99160153, + 35.42657277 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1244, + "fid_1": "1007", + "orig_fid": "1007", + "fid_2": "1565", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1245", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99230962, + 35.42672816 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1245, + "fid_1": "1012", + "orig_fid": "1012", + "fid_2": "1566", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1246", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98986114, + 35.42740845 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1246, + "fid_1": "1024", + "orig_fid": "1024", + "fid_2": "1567", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1247", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99527576, + 35.42836359 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1247, + "fid_1": "1035", + "orig_fid": "1035", + "fid_2": "1568", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1248", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99566039, + 35.42836962 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1248, + "fid_1": "1036", + "orig_fid": "1036", + "fid_2": "1569", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1249", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99363254, + 35.42872322 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1249, + "fid_1": "1039", + "orig_fid": "1039", + "fid_2": "1570", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1250", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99042892, + 35.42913652 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1250, + "fid_1": "1040", + "orig_fid": "1040", + "fid_2": "1571", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1251", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99544451, + 35.42913975 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1251, + "fid_1": "1041", + "orig_fid": "1041", + "fid_2": "1572", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1252", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99654633, + 35.43004191 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1252, + "fid_1": "1048", + "orig_fid": "1048", + "fid_2": "1573", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1253", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99747638, + 35.43020757 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1253, + "fid_1": "1052", + "orig_fid": "1052", + "fid_2": "1574", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1254", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9967278, + 35.4304658 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1254, + "fid_1": "1068", + "orig_fid": "1068", + "fid_2": "1575", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1255", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99160805, + 35.43114731 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1255, + "fid_1": "1069", + "orig_fid": "1069", + "fid_2": "1576", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1256", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95402355, + 35.43935261 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1256, + "fid_1": "1236", + "orig_fid": "1236", + "fid_2": "1577", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1257", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93957181, + 35.44005797 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1257, + "fid_1": "1238", + "orig_fid": "1238", + "fid_2": "1578", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1258", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95345419, + 35.44028762 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1258, + "fid_1": "1245", + "orig_fid": "1245", + "fid_2": "1579", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1259", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9770299, + 35.44024094 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1259, + "fid_1": "1243", + "orig_fid": "1243", + "fid_2": "1580", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1260", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99460048, + 35.44553313 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1260, + "fid_1": "1341", + "orig_fid": "1341", + "fid_2": "1581", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1261", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94523532, + 35.44083303 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1261, + "fid_1": "1257", + "orig_fid": "1257", + "fid_2": "1582", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1262", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97993048, + 35.44124926 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1262, + "fid_1": "1258", + "orig_fid": "1258", + "fid_2": "1583", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1263", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9816966, + 35.44176266 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1263, + "fid_1": "1265", + "orig_fid": "1265", + "fid_2": "1584", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1264", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99121486, + 35.4425814 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1264, + "fid_1": "1280", + "orig_fid": "1280", + "fid_2": "1585", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1265", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93291024, + 35.44355433 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1265, + "fid_1": "1298", + "orig_fid": "1298", + "fid_2": "1586", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1266", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99257265, + 35.44415675 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1266, + "fid_1": "1311", + "orig_fid": "1311", + "fid_2": "1588", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1267", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99431195, + 35.44420597 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1267, + "fid_1": "1313", + "orig_fid": "1313", + "fid_2": "1589", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1268", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99367395, + 35.44435514 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1268, + "fid_1": "1317", + "orig_fid": "1317", + "fid_2": "1591", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1269", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9922639, + 35.44459663 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1269, + "fid_1": "1323", + "orig_fid": "1323", + "fid_2": "1592", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1270", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9933789, + 35.44471723 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1270, + "fid_1": "1325", + "orig_fid": "1325", + "fid_2": "1593", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1271", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99381825, + 35.44477943 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1271, + "fid_1": "1327", + "orig_fid": "1327", + "fid_2": "1594", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1272", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99249827, + 35.44687906 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1272, + "fid_1": "1374", + "orig_fid": "1374", + "fid_2": "1595", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1273", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9888843, + 35.4451457 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1273, + "fid_1": "1335", + "orig_fid": "1335", + "fid_2": "1597", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1274", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98621665, + 35.44526461 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1274, + "fid_1": "1339", + "orig_fid": "1339", + "fid_2": "1598", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1275", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98959901, + 35.44527806 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1275, + "fid_1": "1337", + "orig_fid": "1337", + "fid_2": "1599", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1276", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94615503, + 35.44582384 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1276, + "fid_1": "1352", + "orig_fid": "1352", + "fid_2": "1600", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1277", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98125915, + 35.44562662 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1277, + "fid_1": "1345", + "orig_fid": "1345", + "fid_2": "1601", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1278", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98993627, + 35.4456226 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1278, + "fid_1": "1346", + "orig_fid": "1346", + "fid_2": "1602", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1279", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98734842, + 35.44570183 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1279, + "fid_1": "1349", + "orig_fid": "1349", + "fid_2": "1603", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1280", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99035805, + 35.44570077 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1280, + "fid_1": "1348", + "orig_fid": "1348", + "fid_2": "1604", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1281", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97763691, + 35.44586671 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1281, + "fid_1": "1351", + "orig_fid": "1351", + "fid_2": "1605", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1282", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98885896, + 35.44580419 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1282, + "fid_1": "1350", + "orig_fid": "1350", + "fid_2": "1606", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1283", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98496435, + 35.44592267 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1283, + "fid_1": "1353", + "orig_fid": "1353", + "fid_2": "1607", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1284", + "geometry": { + "type": "Point", + "coordinates": [ + 117.91819191, + 35.44647404 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1284, + "fid_1": "1367", + "orig_fid": "1367", + "fid_2": "1608", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1285", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9890257, + 35.44600719 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1285, + "fid_1": "1355", + "orig_fid": "1355", + "fid_2": "1609", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1286", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96046525, + 35.44627444 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1286, + "fid_1": "1362", + "orig_fid": "1362", + "fid_2": "1610", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1287", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9785723, + 35.44615294 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1287, + "fid_1": "1358", + "orig_fid": "1358", + "fid_2": "1611", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1288", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99604687, + 35.44625344 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1288, + "fid_1": "1361", + "orig_fid": "1361", + "fid_2": "1612", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1289", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98456729, + 35.44640701 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1289, + "fid_1": "1365", + "orig_fid": "1365", + "fid_2": "1613", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1290", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97896774, + 35.44650211 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1290, + "fid_1": "1366", + "orig_fid": "1366", + "fid_2": "1614", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1291", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98638085, + 35.44654547 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1291, + "fid_1": "1368", + "orig_fid": "1368", + "fid_2": "1615", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1292", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97921847, + 35.44662464 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1292, + "fid_1": "1370", + "orig_fid": "1370", + "fid_2": "1616", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1293", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98392974, + 35.4467215 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1293, + "fid_1": "1372", + "orig_fid": "1372", + "fid_2": "1617", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1294", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99241853, + 35.44668072 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1294, + "fid_1": "1371", + "orig_fid": "1371", + "fid_2": "1618", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1295", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98863834, + 35.44677141 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1295, + "fid_1": "1373", + "orig_fid": "1373", + "fid_2": "1619", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1296", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96113796, + 35.44709131 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1296, + "fid_1": "1380", + "orig_fid": "1380", + "fid_2": "1620", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1297", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98025698, + 35.44700986 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1297, + "fid_1": "1378", + "orig_fid": "1378", + "fid_2": "1621", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1298", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98301156, + 35.44698652 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1298, + "fid_1": "1377", + "orig_fid": "1377", + "fid_2": "1622", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1299", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98240194, + 35.44706922 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1299, + "fid_1": "1379", + "orig_fid": "1379", + "fid_2": "1623", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1300", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99559173, + 35.44862101 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1300, + "fid_1": "1429", + "orig_fid": "1429", + "fid_2": "1624", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1301", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98049373, + 35.44719986 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1301, + "fid_1": "1383", + "orig_fid": "1383", + "fid_2": "1626", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1302", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99337303, + 35.44720674 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1302, + "fid_1": "1384", + "orig_fid": "1384", + "fid_2": "1627", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1303", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98703003, + 35.44728604 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1303, + "fid_1": "1385", + "orig_fid": "1385", + "fid_2": "1628", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1304", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98101754, + 35.44731956 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1304, + "fid_1": "1388", + "orig_fid": "1388", + "fid_2": "1629", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1305", + "geometry": { + "type": "Point", + "coordinates": [ + 117.91315036, + 35.44751013 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1305, + "fid_1": "1407", + "orig_fid": "1407", + "fid_2": "1630", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1306", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98091538, + 35.44735791 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1306, + "fid_1": "1389", + "orig_fid": "1389", + "fid_2": "1631", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1307", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98059402, + 35.44737176 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1307, + "fid_1": "1390", + "orig_fid": "1390", + "fid_2": "1632", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1308", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98031923, + 35.44729738 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1308, + "fid_1": "1391", + "orig_fid": "1391", + "fid_2": "1633", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1309", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99263049, + 35.44729731 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1309, + "fid_1": "1387", + "orig_fid": "1387", + "fid_2": "1634", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1310", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98994532, + 35.4474282 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1310, + "fid_1": "1394", + "orig_fid": "1394", + "fid_2": "1635", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1311", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99037112, + 35.44744566 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1311, + "fid_1": "1395", + "orig_fid": "1395", + "fid_2": "1636", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1312", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9538148, + 35.4477233 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1312, + "fid_1": "1403", + "orig_fid": "1403", + "fid_2": "1637", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1313", + "geometry": { + "type": "Point", + "coordinates": [ + 117.92269204, + 35.44802684 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1313, + "fid_1": "1409", + "orig_fid": "1409", + "fid_2": "1638", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1314", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98123071, + 35.44766067 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1314, + "fid_1": "1401", + "orig_fid": "1401", + "fid_2": "1639", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1315", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98082782, + 35.44772094 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1315, + "fid_1": "1402", + "orig_fid": "1402", + "fid_2": "1640", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1316", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98396328, + 35.44768563 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1316, + "fid_1": "1400", + "orig_fid": "1400", + "fid_2": "1641", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1317", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98469057, + 35.44775995 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1317, + "fid_1": "1406", + "orig_fid": "1406", + "fid_2": "1642", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1318", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94784742, + 35.44821543 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1318, + "fid_1": "1420", + "orig_fid": "1420", + "fid_2": "1643", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1319", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99183999, + 35.45006884 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1319, + "fid_1": "1503", + "orig_fid": "1503", + "fid_2": "1644", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1320", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98380142, + 35.4480516 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1320, + "fid_1": "1412", + "orig_fid": "1412", + "fid_2": "1645", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1321", + "geometry": { + "type": "Point", + "coordinates": [ + 117.92309531, + 35.44852532 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1321, + "fid_1": "1428", + "orig_fid": "1428", + "fid_2": "1646", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1322", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98351545, + 35.44809708 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1322, + "fid_1": "1413", + "orig_fid": "1413", + "fid_2": "1647", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1323", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98372218, + 35.44818058 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1323, + "fid_1": "1416", + "orig_fid": "1416", + "fid_2": "1648", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1324", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95408412, + 35.44854317 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1324, + "fid_1": "1427", + "orig_fid": "1427", + "fid_2": "1649", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1325", + "geometry": { + "type": "Point", + "coordinates": [ + 117.92169682, + 35.44892482 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1325, + "fid_1": "1442", + "orig_fid": "1442", + "fid_2": "1650", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1326", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9384861, + 35.44909278 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1326, + "fid_1": "1453", + "orig_fid": "1453", + "fid_2": "1651", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1327", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99562581, + 35.44875089 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1327, + "fid_1": "1435", + "orig_fid": "1435", + "fid_2": "1652", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1328", + "geometry": { + "type": "Point", + "coordinates": [ + 117.92098135, + 35.44944787 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1328, + "fid_1": "1467", + "orig_fid": "1467", + "fid_2": "1653", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1329", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9960084, + 35.44884937 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1329, + "fid_1": "1437", + "orig_fid": "1437", + "fid_2": "1654", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1330", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98527019, + 35.44893471 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1330, + "fid_1": "1444", + "orig_fid": "1444", + "fid_2": "1655", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1331", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9583183, + 35.4491853 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1331, + "fid_1": "1455", + "orig_fid": "1455", + "fid_2": "1656", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1332", + "geometry": { + "type": "Point", + "coordinates": [ + 117.91468101, + 35.44928843 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1332, + "fid_1": "1474", + "orig_fid": "1474", + "fid_2": "1657", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1333", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99424406, + 35.44899014 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1333, + "fid_1": "1447", + "orig_fid": "1447", + "fid_2": "1658", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1334", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99126421, + 35.44979432 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1334, + "fid_1": "1486", + "orig_fid": "1486", + "fid_2": "1659", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1335", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98596763, + 35.44905821 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1335, + "fid_1": "1450", + "orig_fid": "1450", + "fid_2": "1660", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1336", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99220992, + 35.4490513 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1336, + "fid_1": "1449", + "orig_fid": "1449", + "fid_2": "1661", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1337", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9834832, + 35.44912295 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1337, + "fid_1": "1452", + "orig_fid": "1452", + "fid_2": "1662", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1338", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99227618, + 35.44910503 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1338, + "fid_1": "1451", + "orig_fid": "1451", + "fid_2": "1663", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1339", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98807721, + 35.4491503 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1339, + "fid_1": "1454", + "orig_fid": "1454", + "fid_2": "1664", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1340", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99235455, + 35.44923216 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1340, + "fid_1": "1456", + "orig_fid": "1456", + "fid_2": "1665", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1341", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99350239, + 35.44921767 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1341, + "fid_1": "1457", + "orig_fid": "1457", + "fid_2": "1666", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1342", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99218581, + 35.4492267 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1342, + "fid_1": "1458", + "orig_fid": "1458", + "fid_2": "1667", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1343", + "geometry": { + "type": "Point", + "coordinates": [ + 117.92205762, + 35.44981702 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1343, + "fid_1": "1487", + "orig_fid": "1487", + "fid_2": "1668", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1344", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98817602, + 35.44930706 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1344, + "fid_1": "1462", + "orig_fid": "1462", + "fid_2": "1670", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1345", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98706822, + 35.44926582 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1345, + "fid_1": "1463", + "orig_fid": "1463", + "fid_2": "1671", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1346", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98298817, + 35.4493757 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1346, + "fid_1": "1464", + "orig_fid": "1464", + "fid_2": "1672", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1347", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98731805, + 35.44941405 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1347, + "fid_1": "1466", + "orig_fid": "1466", + "fid_2": "1673", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1348", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99245152, + 35.44941424 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1348, + "fid_1": "1465", + "orig_fid": "1465", + "fid_2": "1674", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1349", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95887537, + 35.44983367 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1349, + "fid_1": "1488", + "orig_fid": "1488", + "fid_2": "1675", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1350", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99149301, + 35.44959021 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1350, + "fid_1": "1475", + "orig_fid": "1475", + "fid_2": "1676", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1351", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98112848, + 35.44967758 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1351, + "fid_1": "1477", + "orig_fid": "1477", + "fid_2": "1677", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1352", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95656396, + 35.44992609 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1352, + "fid_1": "1497", + "orig_fid": "1497", + "fid_2": "1678", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1353", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9915711, + 35.44967781 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1353, + "fid_1": "1478", + "orig_fid": "1478", + "fid_2": "1679", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1354", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99264736, + 35.44969284 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1354, + "fid_1": "1479", + "orig_fid": "1479", + "fid_2": "1680", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1355", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98521188, + 35.44975101 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1355, + "fid_1": "1483", + "orig_fid": "1483", + "fid_2": "1681", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1356", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97797339, + 35.44984915 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1356, + "fid_1": "1489", + "orig_fid": "1489", + "fid_2": "1682", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1357", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96409381, + 35.44991623 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1357, + "fid_1": "1499", + "orig_fid": "1499", + "fid_2": "1683", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1358", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98264705, + 35.44992641 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1358, + "fid_1": "1495", + "orig_fid": "1495", + "fid_2": "1684", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1359", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99172427, + 35.44984775 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1359, + "fid_1": "1490", + "orig_fid": "1490", + "fid_2": "1685", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1360", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99123451, + 35.44991677 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1360, + "fid_1": "1494", + "orig_fid": "1494", + "fid_2": "1687", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1361", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9915831, + 35.44993076 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1361, + "fid_1": "1496", + "orig_fid": "1496", + "fid_2": "1688", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1362", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99038504, + 35.45001842 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1362, + "fid_1": "1500", + "orig_fid": "1500", + "fid_2": "1689", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1363", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98393311, + 35.4500949 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1363, + "fid_1": "1504", + "orig_fid": "1504", + "fid_2": "1690", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1364", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98965789, + 35.45017012 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1364, + "fid_1": "1506", + "orig_fid": "1506", + "fid_2": "1692", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1365", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98432233, + 35.45023137 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1365, + "fid_1": "1509", + "orig_fid": "1509", + "fid_2": "1693", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1366", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99469058, + 35.45016149 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1366, + "fid_1": "1505", + "orig_fid": "1505", + "fid_2": "1694", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1367", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98976502, + 35.45021098 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1367, + "fid_1": "1507", + "orig_fid": "1507", + "fid_2": "1696", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1368", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09932436, + 35.43227264 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1368, + "fid_1": "1092", + "orig_fid": "1092", + "fid_2": "2557", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1369", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97896337, + 35.44401141 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1369, + "fid_1": "1307", + "orig_fid": "1307", + "fid_2": "2558", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1370", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98181468, + 35.43985123 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1370, + "fid_1": "1235", + "orig_fid": "1235", + "fid_2": "2559", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1371", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98921959, + 35.43325188 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1371, + "fid_1": "1121", + "orig_fid": "1121", + "fid_2": "2560", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1372", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01138456, + 35.44712028 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1372, + "fid_1": "1381", + "orig_fid": "1381", + "fid_2": "2562", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1373", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09156977, + 35.44434228 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1373, + "fid_1": "1316", + "orig_fid": "1316", + "fid_2": "2583", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1374", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09532735, + 35.44452175 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1374, + "fid_1": "1322", + "orig_fid": "1322", + "fid_2": "2630", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1375", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08095888, + 35.4323825 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1375, + "fid_1": "1099", + "orig_fid": "1099", + "fid_2": "2668", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1376", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00368548, + 35.4266125 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1376, + "fid_1": "1009", + "orig_fid": "1009", + "fid_2": "2689", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1377", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02278024, + 35.4268985 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1377, + "fid_1": "1016", + "orig_fid": "1016", + "fid_2": "2690", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1378", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09008504, + 35.42698028 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1378, + "fid_1": "1018", + "orig_fid": "1018", + "fid_2": "2692", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1379", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08070961, + 35.43752076 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1379, + "fid_1": "1186", + "orig_fid": "1186", + "fid_2": "2693", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1380", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08942091, + 35.42710528 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1380, + "fid_1": "1020", + "orig_fid": "1020", + "fid_2": "2694", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1381", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09287674, + 35.42710996 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1381, + "fid_1": "1021", + "orig_fid": "1021", + "fid_2": "2695", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1382", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0237146, + 35.42789997 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1382, + "fid_1": "1029", + "orig_fid": "1029", + "fid_2": "2696", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1383", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08590276, + 35.42810627 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1383, + "fid_1": "1032", + "orig_fid": "1032", + "fid_2": "2697", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1384", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99938523, + 35.43046601 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1384, + "fid_1": "1053", + "orig_fid": "1053", + "fid_2": "2698", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1385", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99854075, + 35.43061336 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1385, + "fid_1": "1057", + "orig_fid": "1057", + "fid_2": "2699", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1386", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99901137, + 35.43078702 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1386, + "fid_1": "1063", + "orig_fid": "1063", + "fid_2": "2700", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1387", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0855496, + 35.43016375 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1387, + "fid_1": "1050", + "orig_fid": "1050", + "fid_2": "2701", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1388", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03239546, + 35.43525938 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1388, + "fid_1": "1158", + "orig_fid": "1158", + "fid_2": "2702", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1389", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09205318, + 35.42927381 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1389, + "fid_1": "1049", + "orig_fid": "1049", + "fid_2": "2703", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1390", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0937772, + 35.43062194 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1390, + "fid_1": "1058", + "orig_fid": "1058", + "fid_2": "2704", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1391", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09529231, + 35.4306533 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1391, + "fid_1": "1059", + "orig_fid": "1059", + "fid_2": "2705", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1392", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10009085, + 35.43097065 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1392, + "fid_1": "1067", + "orig_fid": "1067", + "fid_2": "2706", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1393", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00241428, + 35.43183002 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1393, + "fid_1": "1082", + "orig_fid": "1082", + "fid_2": "2707", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1394", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00323814, + 35.43184985 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1394, + "fid_1": "1083", + "orig_fid": "1083", + "fid_2": "2708", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1395", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00062565, + 35.43186311 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1395, + "fid_1": "1087", + "orig_fid": "1087", + "fid_2": "2709", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1396", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02911354, + 35.43198127 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1396, + "fid_1": "1088", + "orig_fid": "1088", + "fid_2": "2710", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1397", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00049062, + 35.43231108 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1397, + "fid_1": "1093", + "orig_fid": "1093", + "fid_2": "2711", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1398", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00391637, + 35.43229995 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1398, + "fid_1": "1095", + "orig_fid": "1095", + "fid_2": "2712", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1399", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00588858, + 35.43248883 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1399, + "fid_1": "1102", + "orig_fid": "1102", + "fid_2": "2713", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1400", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0044996, + 35.43252598 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1400, + "fid_1": "1107", + "orig_fid": "1107", + "fid_2": "2714", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1401", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00520919, + 35.43283253 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1401, + "fid_1": "1113", + "orig_fid": "1113", + "fid_2": "2715", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1402", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08243587, + 35.43128996 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1402, + "fid_1": "1090", + "orig_fid": "1090", + "fid_2": "2716", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1403", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09816651, + 35.43232056 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1403, + "fid_1": "1096", + "orig_fid": "1096", + "fid_2": "2717", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1404", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08124143, + 35.43270265 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1404, + "fid_1": "1110", + "orig_fid": "1110", + "fid_2": "2718", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1405", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99776725, + 35.43368441 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1405, + "fid_1": "1129", + "orig_fid": "1129", + "fid_2": "2719", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1406", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07953285, + 35.43314713 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1406, + "fid_1": "1119", + "orig_fid": "1119", + "fid_2": "2720", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1407", + "geometry": { + "type": "Point", + "coordinates": [ + 118.033476, + 35.43428701 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1407, + "fid_1": "1136", + "orig_fid": "1136", + "fid_2": "2721", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1408", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08244792, + 35.43438773 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1408, + "fid_1": "1139", + "orig_fid": "1139", + "fid_2": "2722", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1409", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03008698, + 35.43523461 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1409, + "fid_1": "1157", + "orig_fid": "1157", + "fid_2": "2723", + "mc": "塘坝", + "xsl": "200", + "dz": "塔山林场老场部西", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1410", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09998121, + 35.43476099 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1410, + "fid_1": "1145", + "orig_fid": "1145", + "fid_2": "2724", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1411", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09929262, + 35.43479903 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1411, + "fid_1": "1147", + "orig_fid": "1147", + "fid_2": "2725", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1412", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09684677, + 35.43489611 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1412, + "fid_1": "1149", + "orig_fid": "1149", + "fid_2": "2726", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1413", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09780295, + 35.43492252 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1413, + "fid_1": "1150", + "orig_fid": "1150", + "fid_2": "2727", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1414", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09710726, + 35.43498527 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1414, + "fid_1": "1151", + "orig_fid": "1151", + "fid_2": "2728", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1415", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09385314, + 35.43514269 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1415, + "fid_1": "1154", + "orig_fid": "1154", + "fid_2": "2729", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1416", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09435913, + 35.43525238 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1416, + "fid_1": "1156", + "orig_fid": "1156", + "fid_2": "2730", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1417", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10110914, + 35.43524081 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1417, + "fid_1": "1155", + "orig_fid": "1155", + "fid_2": "2731", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1418", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08608896, + 35.43549476 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1418, + "fid_1": "1162", + "orig_fid": "1162", + "fid_2": "2732", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1419", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07901293, + 35.43587522 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1419, + "fid_1": "1167", + "orig_fid": "1167", + "fid_2": "2733", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1420", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08132605, + 35.43596656 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1420, + "fid_1": "1168", + "orig_fid": "1168", + "fid_2": "2734", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1421", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10145321, + 35.43608408 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1421, + "fid_1": "1171", + "orig_fid": "1171", + "fid_2": "2735", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1422", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08225292, + 35.44374401 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1422, + "fid_1": "1301", + "orig_fid": "1301", + "fid_2": "2736", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1423", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09038044, + 35.43589674 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1423, + "fid_1": "1175", + "orig_fid": "1175", + "fid_2": "2737", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1424", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08853362, + 35.4368712 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1424, + "fid_1": "1178", + "orig_fid": "1178", + "fid_2": "2738", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1425", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08099765, + 35.43738636 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1425, + "fid_1": "1179", + "orig_fid": "1179", + "fid_2": "2739", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1426", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09997827, + 35.43743366 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1426, + "fid_1": "1181", + "orig_fid": "1181", + "fid_2": "2740", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1427", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08473875, + 35.43777107 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1427, + "fid_1": "1188", + "orig_fid": "1188", + "fid_2": "2741", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1428", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08249176, + 35.43788727 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1428, + "fid_1": "1190", + "orig_fid": "1190", + "fid_2": "2742", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1429", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08230408, + 35.43796669 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1429, + "fid_1": "1193", + "orig_fid": "1193", + "fid_2": "2743", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1430", + "geometry": { + "type": "Point", + "coordinates": [ + 118.070192, + 35.43812041 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1430, + "fid_1": "1195", + "orig_fid": "1195", + "fid_2": "2744", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1431", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09787244, + 35.437869 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1431, + "fid_1": "1189", + "orig_fid": "1189", + "fid_2": "2745", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1432", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09111738, + 35.43796918 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1432, + "fid_1": "1192", + "orig_fid": "1192", + "fid_2": "2746", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1433", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09100393, + 35.43815271 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1433, + "fid_1": "1197", + "orig_fid": "1197", + "fid_2": "2747", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1434", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0028514, + 35.43907836 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1434, + "fid_1": "1213", + "orig_fid": "1213", + "fid_2": "2748", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1435", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00176622, + 35.43921074 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1435, + "fid_1": "1215", + "orig_fid": "1215", + "fid_2": "2749", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1436", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10190044, + 35.43836589 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1436, + "fid_1": "1199", + "orig_fid": "1199", + "fid_2": "2750", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1437", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00183273, + 35.43939034 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1437, + "fid_1": "1219", + "orig_fid": "1219", + "fid_2": "2751", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1438", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09964139, + 35.43852112 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1438, + "fid_1": "1201", + "orig_fid": "1201", + "fid_2": "2752", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1439", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09610719, + 35.43862557 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1439, + "fid_1": "1203", + "orig_fid": "1203", + "fid_2": "2753", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1440", + "geometry": { + "type": "Point", + "coordinates": [ + 118.090992, + 35.43871475 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1440, + "fid_1": "1205", + "orig_fid": "1205", + "fid_2": "2754", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1441", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00219504, + 35.43965873 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1441, + "fid_1": "1230", + "orig_fid": "1230", + "fid_2": "2755", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1442", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08938818, + 35.43763617 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1442, + "fid_1": "1208", + "orig_fid": "1208", + "fid_2": "2756", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1443", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09462023, + 35.43878954 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1443, + "fid_1": "1209", + "orig_fid": "1209", + "fid_2": "2757", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1444", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0023024, + 35.43984235 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1444, + "fid_1": "1231", + "orig_fid": "1231", + "fid_2": "2758", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1445", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0958997, + 35.43937521 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1445, + "fid_1": "1218", + "orig_fid": "1218", + "fid_2": "2759", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1446", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09562588, + 35.43947956 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1446, + "fid_1": "1224", + "orig_fid": "1224", + "fid_2": "2760", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1447", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0961211, + 35.43950983 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1447, + "fid_1": "1226", + "orig_fid": "1226", + "fid_2": "2762", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1448", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08959638, + 35.43973175 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1448, + "fid_1": "1237", + "orig_fid": "1237", + "fid_2": "2763", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1449", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09517809, + 35.4404272 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1449, + "fid_1": "1241", + "orig_fid": "1241", + "fid_2": "2764", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1450", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0771724, + 35.44499228 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1450, + "fid_1": "1331", + "orig_fid": "1331", + "fid_2": "2765", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1451", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08626579, + 35.44011899 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1451, + "fid_1": "1244", + "orig_fid": "1244", + "fid_2": "2766", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1452", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09094682, + 35.44046698 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1452, + "fid_1": "1247", + "orig_fid": "1247", + "fid_2": "2767", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1453", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09417572, + 35.44072134 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1453, + "fid_1": "1248", + "orig_fid": "1248", + "fid_2": "2768", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1454", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08652919, + 35.44095316 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1454, + "fid_1": "1250", + "orig_fid": "1250", + "fid_2": "2769", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1455", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0799234, + 35.4411085 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1455, + "fid_1": "1254", + "orig_fid": "1254", + "fid_2": "2770", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1456", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00197087, + 35.44261536 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1456, + "fid_1": "1282", + "orig_fid": "1282", + "fid_2": "2771", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1457", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09339363, + 35.44181313 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1457, + "fid_1": "1268", + "orig_fid": "1268", + "fid_2": "2772", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1458", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08687183, + 35.44150234 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1458, + "fid_1": "1269", + "orig_fid": "1269", + "fid_2": "2773", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1459", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09293704, + 35.44193358 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1459, + "fid_1": "1270", + "orig_fid": "1270", + "fid_2": "2775", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1460", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09456954, + 35.44209571 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1460, + "fid_1": "1272", + "orig_fid": "1272", + "fid_2": "2776", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1461", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07878349, + 35.44242976 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1461, + "fid_1": "1275", + "orig_fid": "1275", + "fid_2": "2777", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1462", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08431751, + 35.44252535 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1462, + "fid_1": "1279", + "orig_fid": "1279", + "fid_2": "2778", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1463", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08134656, + 35.44242817 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1463, + "fid_1": "1285", + "orig_fid": "1285", + "fid_2": "2779", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1464", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07747715, + 35.44292827 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1464, + "fid_1": "1287", + "orig_fid": "1287", + "fid_2": "2780", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1465", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09723851, + 35.44239497 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1465, + "fid_1": "1286", + "orig_fid": "1286", + "fid_2": "2781", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1466", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07961164, + 35.44303913 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1466, + "fid_1": "1292", + "orig_fid": "1292", + "fid_2": "2782", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1467", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09138661, + 35.44298474 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1467, + "fid_1": "1290", + "orig_fid": "1290", + "fid_2": "2783", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1468", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07672375, + 35.44314342 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1468, + "fid_1": "1293", + "orig_fid": "1293", + "fid_2": "2784", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1469", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08616101, + 35.4439258 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1469, + "fid_1": "1305", + "orig_fid": "1305", + "fid_2": "2785", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1470", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07957494, + 35.44524642 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1470, + "fid_1": "1338", + "orig_fid": "1338", + "fid_2": "2786", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1471", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09948526, + 35.44524863 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1471, + "fid_1": "1336", + "orig_fid": "1336", + "fid_2": "2787", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1472", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00896601, + 35.44638574 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1472, + "fid_1": "1364", + "orig_fid": "1364", + "fid_2": "2788", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1473", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0852453, + 35.44660354 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1473, + "fid_1": "1369", + "orig_fid": "1369", + "fid_2": "2790", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1474", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08453187, + 35.44687498 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1474, + "fid_1": "1375", + "orig_fid": "1375", + "fid_2": "2791", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1475", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01615459, + 35.4475105 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1475, + "fid_1": "1397", + "orig_fid": "1397", + "fid_2": "2792", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1476", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01082201, + 35.44780689 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1476, + "fid_1": "1405", + "orig_fid": "1405", + "fid_2": "2793", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1477", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08911883, + 35.44714564 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1477, + "fid_1": "1382", + "orig_fid": "1382", + "fid_2": "2794", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1478", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08339718, + 35.44735959 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1478, + "fid_1": "1393", + "orig_fid": "1393", + "fid_2": "2795", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1479", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0152095, + 35.44804796 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1479, + "fid_1": "1410", + "orig_fid": "1410", + "fid_2": "2796", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1480", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08432646, + 35.4473443 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1480, + "fid_1": "1396", + "orig_fid": "1396", + "fid_2": "2797", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1481", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01001737, + 35.4482196 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1481, + "fid_1": "1418", + "orig_fid": "1418", + "fid_2": "2798", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1482", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08466616, + 35.44767953 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1482, + "fid_1": "1399", + "orig_fid": "1399", + "fid_2": "2799", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1483", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07898547, + 35.44798228 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1483, + "fid_1": "1411", + "orig_fid": "1411", + "fid_2": "2800", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1484", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07955237, + 35.44805816 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1484, + "fid_1": "1417", + "orig_fid": "1417", + "fid_2": "2801", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1485", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0859918, + 35.4481697 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1485, + "fid_1": "1415", + "orig_fid": "1415", + "fid_2": "2802", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1486", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00411391, + 35.44892054 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1486, + "fid_1": "1443", + "orig_fid": "1443", + "fid_2": "2803", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1487", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01573064, + 35.44886284 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1487, + "fid_1": "1439", + "orig_fid": "1439", + "fid_2": "2804", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1488", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08230959, + 35.44817442 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1488, + "fid_1": "1419", + "orig_fid": "1419", + "fid_2": "2805", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1489", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01783633, + 35.44887774 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1489, + "fid_1": "1441", + "orig_fid": "1441", + "fid_2": "2806", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1490", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08974086, + 35.44846084 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1490, + "fid_1": "1426", + "orig_fid": "1426", + "fid_2": "2807", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1491", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08903092, + 35.44860963 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1491, + "fid_1": "1431", + "orig_fid": "1431", + "fid_2": "2808", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1492", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08786347, + 35.44868932 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1492, + "fid_1": "1434", + "orig_fid": "1434", + "fid_2": "2809", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1493", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01755993, + 35.44941654 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1493, + "fid_1": "1468", + "orig_fid": "1468", + "fid_2": "2810", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1494", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08876801, + 35.44892081 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1494, + "fid_1": "1446", + "orig_fid": "1446", + "fid_2": "2812", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1495", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01637387, + 35.44975011 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1495, + "fid_1": "1485", + "orig_fid": "1485", + "fid_2": "2813", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1496", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08443731, + 35.44931106 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1496, + "fid_1": "1461", + "orig_fid": "1461", + "fid_2": "2814", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1497", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07897483, + 35.44944157 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1497, + "fid_1": "1471", + "orig_fid": "1471", + "fid_2": "2815", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1498", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08966383, + 35.44957097 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1498, + "fid_1": "1476", + "orig_fid": "1476", + "fid_2": "2816", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1499", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08400119, + 35.44967565 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1499, + "fid_1": "1481", + "orig_fid": "1481", + "fid_2": "2818", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1500", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08178397, + 35.44979044 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1500, + "fid_1": "1484", + "orig_fid": "1484", + "fid_2": "2819", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1501", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0814991, + 35.44986727 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1501, + "fid_1": "1493", + "orig_fid": "1493", + "fid_2": "2821", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1502", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08974604, + 35.4497739 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1502, + "fid_1": "1492", + "orig_fid": "1492", + "fid_2": "2823", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1503", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07461923, + 35.43602182 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1503, + "fid_1": "1169", + "orig_fid": "1169", + "fid_2": "3176", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1504", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03314501, + 35.43543646 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1504, + "fid_1": "1160", + "orig_fid": "1160", + "fid_2": "3177", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1505", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12577868, + 35.44850069 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1505, + "fid_1": "1531", + "orig_fid": "1531", + "fid_2": "37", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 3.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1506", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12068293, + 35.4545013 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1506, + "fid_1": "1892", + "orig_fid": "1892", + "fid_2": "38", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 1.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1507", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10551752, + 35.45804978 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1507, + "fid_1": "1926", + "orig_fid": "1926", + "fid_2": "45", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 1.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1508", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10304831, + 35.45227817 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1508, + "fid_1": "1655", + "orig_fid": "1655", + "fid_2": "186", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1509", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10363919, + 35.45515278 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1509, + "fid_1": "1762", + "orig_fid": "1762", + "fid_2": "187", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1510", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98940613, + 35.46162808 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1510, + "fid_1": "1954", + "orig_fid": "1954", + "fid_2": "194", + "mc": "刀棱棱后沟坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1511", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95756532, + 35.45956745 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1511, + "fid_1": "1896", + "orig_fid": "1896", + "fid_2": "196", + "mc": "燕窝石平山路终点寨前蓄水池", + "xsl": "300", + "dz": "寨前", + "bz": "", + "jczt": "建设中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1512", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99474173, + 35.46045836 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1512, + "fid_1": "1915", + "orig_fid": "1915", + "fid_2": "199", + "mc": "大王庄村东沟山场大汪", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1513", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98238292, + 35.46131456 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1513, + "fid_1": "1945", + "orig_fid": "1945", + "fid_2": "202", + "mc": "大田庄乡姚家沟峨山村后蓄水池13号蓄水池", + "xsl": "300", + "dz": "青云韩家峪2号", + "bz": "规格:10*10*3/联系电话:15965791588", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "50", + "xszt": "满水", + "appid": "195", + "lx": "森林保育水源地,蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1514", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98736486, + 35.4601759 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1514, + "fid_1": "1908", + "orig_fid": "1908", + "fid_2": "203", + "mc": "韩家峪1峨山水库东侧水池", + "xsl": "300", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "194", + "lx": "森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1515", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98532829, + 35.46388481 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1515, + "fid_1": "1995", + "orig_fid": "1995", + "fid_2": "208", + "mc": "大田庄乡8号葫芦岛蓄水池", + "xsl": "300", + "dz": "峨山葫芦岛2号", + "bz": "规格:10*10*3/联系电话:15953982208", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地,蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1516", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99670501, + 35.46186388 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1516, + "fid_1": "1958", + "orig_fid": "1958", + "fid_2": "209", + "mc": "大田庄乡石桌子9号蓄水池", + "xsl": "300", + "dz": "黄土石桌子1号", + "bz": "规格:10*10*3/联系电话:15953982208", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "200", + "xszt": "220", + "appid": "aa", + "lx": "蓄水池,森林保育水源地,蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1517", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99540719, + 35.45935772 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1517, + "fid_1": "1891", + "orig_fid": "1891", + "fid_2": "210", + "mc": "毛草原蓄水池", + "xsl": "300", + "dz": "毛草原", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1518", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94714288, + 35.45658464 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1518, + "fid_1": "1804", + "orig_fid": "1804", + "fid_2": "211", + "mc": "大田庄乡34号东渐富南蓄水池", + "xsl": "300", + "dz": "东渐富村黄崖水库2号", + "bz": "规格:10*10*3/联系电话:15954380616", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地,蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1519", + "geometry": { + "type": "Point", + "coordinates": [ + 117.92705223, + 35.46058344 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1519, + "fid_1": "1921", + "orig_fid": "1921", + "fid_2": "213", + "mc": "东安太_西胳拜子1号", + "xsl": "270", + "dz": "东安太西山", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1520", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99137505, + 35.46293903 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1520, + "fid_1": "1969", + "orig_fid": "1969", + "fid_2": "214", + "mc": "老牛笼蓄水池", + "xsl": "300", + "dz": "老牛笼", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1521", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95909395, + 35.45134101 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1521, + "fid_1": "1559", + "orig_fid": "1559", + "fid_2": "221", + "mc": "大田庄西山蓄水池", + "xsl": "300", + "dz": "大田庄西山", + "bz": "", + "jczt": "建设中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1522", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96265396, + 35.45323063 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1522, + "fid_1": "1670", + "orig_fid": "1670", + "fid_2": "222", + "mc": "后姬庄蓄水池", + "xsl": "300", + "dz": "后姬庄", + "bz": "", + "jczt": "建设中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1523", + "geometry": { + "type": "Point", + "coordinates": [ + 117.929732, + 35.457917 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1523, + "fid_1": "1847", + "orig_fid": "1847", + "fid_2": "224", + "mc": "沙沟大口井蓄水池", + "xsl": "300", + "dz": "沙沟", + "bz": "与影像不符", + "jczt": "建设中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1524", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99573238, + 35.45796376 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1524, + "fid_1": "1850", + "orig_fid": "1850", + "fid_2": "235", + "mc": "大田庄乡10号蓄水池", + "xsl": "0", + "dz": "黄土毛草原2另", + "bz": "与影像不符 规格:10*10*3/联系电话:15953982208", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1525", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94854757, + 35.4643728 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1525, + "fid_1": "2007", + "orig_fid": "2007", + "fid_2": "245", + "mc": "黄崖茅子平山庙北蓄水池", + "xsl": "300", + "dz": "平山庙北毛子山", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1526", + "geometry": { + "type": "Point", + "coordinates": [ + 117.939147, + 35.459943 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1526, + "fid_1": "1904", + "orig_fid": "1904", + "fid_2": "246", + "mc": "西安太北山", + "xsl": "100", + "dz": "平山办公室后", + "bz": "与影像不符", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1527", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94831935, + 35.45692921 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1527, + "fid_1": "1816", + "orig_fid": "1816", + "fid_2": "247", + "mc": "东渐富北山水窖", + "xsl": "150", + "dz": "平山水库东岸", + "bz": "与影像不符", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1528", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93858756, + 35.45307239 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1528, + "fid_1": "1666", + "orig_fid": "1666", + "fid_2": "249", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1529", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93497083, + 35.46444838 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1529, + "fid_1": "2008", + "orig_fid": "2008", + "fid_2": "262", + "mc": "国有塔山林场13号玻璃钢水窖", + "xsl": "0", + "dz": "平山分区三林班21小班虎脖西", + "bz": "与影像不符 联系电话:17661625759", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1530", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9911015, + 35.45628239 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1530, + "fid_1": "1788", + "orig_fid": "1788", + "fid_2": "278", + "mc": "大田庄乡17号蓄水池", + "xsl": "300", + "dz": "五圣堂曲流涧4号", + "bz": "规格:10*10*3/联系电话:13685390332", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "300", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1531", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95682275, + 35.45995692 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1531, + "fid_1": "1905", + "orig_fid": "1905", + "fid_2": "283", + "mc": "大田庄乡30号蓄水池", + "xsl": "0", + "dz": "燕窝石平山路2号", + "bz": "与影像不符 规格:10*10*3/联系电话:13468092867", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1532", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95899828, + 35.45104933 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1532, + "fid_1": "1540", + "orig_fid": "1540", + "fid_2": "284", + "mc": "大田庄乡32号蓄水池", + "xsl": "0", + "dz": "大田庄老庄里西1号", + "bz": "规格:10*10*3/联系电话:15265103351", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1533", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94943756, + 35.45161656 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1533, + "fid_1": "1575", + "orig_fid": "1575", + "fid_2": "286", + "mc": "大田庄乡东渐富33号蓄水池", + "xsl": "300", + "dz": "东渐富村北山1号", + "bz": "规格:10*10*3/联系电话:15954380616", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1534", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94932555, + 35.45783632 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1534, + "fid_1": "1844", + "orig_fid": "1844", + "fid_2": "287", + "mc": "大田庄乡35号平山水库东岸东渐富东安太虎头山蓄水池", + "xsl": "300", + "dz": "东渐富村平山水库东岸黄崖水库3号", + "bz": "规格:10*10*3/联系电话:15954380616", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1535", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94842572, + 35.4638747 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1535, + "fid_1": "1994", + "orig_fid": "1994", + "fid_2": "288", + "mc": "大田庄乡36号蓄水池", + "xsl": "0", + "dz": "黄崖毛子山前1号", + "bz": "与影像不符不符 规格:10*10*3/联系电话:15053961668", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1536", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93018586, + 35.45741586 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1536, + "fid_1": "1831", + "orig_fid": "1831", + "fid_2": "292", + "mc": "大田庄乡38号沙沟大口井蓄水池", + "xsl": "0", + "dz": "东安太沙沟河2号", + "bz": "规格:10*10*3/联系电话:15866932036", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1537", + "geometry": { + "type": "Point", + "coordinates": [ + 118.063717, + 35.452771 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1537, + "fid_1": "1646", + "orig_fid": "1646", + "fid_2": "481", + "mc": "小柳行蓄水池", + "xsl": "5", + "dz": "谭家庄分区小柳行", + "bz": "", + "jczt": "已建完", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1538", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93104596, + 35.45825297 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1538, + "fid_1": "1858", + "orig_fid": "1858", + "fid_2": "293", + "mc": "大田庄乡39号沙沟河各拜子蓄水池", + "xsl": "300", + "dz": "沙沟河东安太东胳拜子3号", + "bz": "规格:10*10*3/联系电话:15866932036", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1539", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93424809, + 35.45839247 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1539, + "fid_1": "1864", + "orig_fid": "1864", + "fid_2": "294", + "mc": "大田庄乡45号东安太西山虎头山蓄水池", + "xsl": "300", + "dz": "虎头山西安太和尚奄子2号", + "bz": "规格:10*10*3/联系电话:13954979960", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1540", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9262795, + 35.45969113 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1540, + "fid_1": "1898", + "orig_fid": "1898", + "fid_2": "296", + "mc": "大田庄乡37号蓄水池", + "xsl": "0", + "dz": "东安太西胳拜子1号", + "bz": "与影像不符 规格:10*10*3/联系电话:15866932036", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1541", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93543041, + 35.46013855 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1541, + "fid_1": "1907", + "orig_fid": "1907", + "fid_2": "297", + "mc": "大田庄乡44号和尚淹子蓄水池", + "xsl": "300", + "dz": "西安太虎头山前1号和尚淹子", + "bz": "规格:10*10*3/联系电话:13954979960", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1542", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97777893, + 35.45455302 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1542, + "fid_1": "1736", + "orig_fid": "1736", + "fid_2": "306", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1543", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99277201, + 35.45269032 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1543, + "fid_1": "1650", + "orig_fid": "1650", + "fid_2": "308", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 3.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1544", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00324394, + 35.4503816 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1544, + "fid_1": "1516", + "orig_fid": "1516", + "fid_2": "313", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 4.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1545", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9801531, + 35.45212606 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1545, + "fid_1": "1632", + "orig_fid": "1632", + "fid_2": "315", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 0.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1546", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99006194, + 35.45218895 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1546, + "fid_1": "1639", + "orig_fid": "1639", + "fid_2": "316", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 4.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1547", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93862184, + 35.45175423 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1547, + "fid_1": "1605", + "orig_fid": "1605", + "fid_2": "325", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1548", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93733902, + 35.45212186 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1548, + "fid_1": "1618", + "orig_fid": "1618", + "fid_2": "326", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1549", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9237432, + 35.45518004 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1549, + "fid_1": "1760", + "orig_fid": "1760", + "fid_2": "327", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1550", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99767089, + 35.45242222 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1550, + "fid_1": "1629", + "orig_fid": "1629", + "fid_2": "334", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1551", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99655294, + 35.45260562 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1551, + "fid_1": "1644", + "orig_fid": "1644", + "fid_2": "346", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1552", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98708398, + 35.46335245 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1552, + "fid_1": "1986", + "orig_fid": "1986", + "fid_2": "351", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1553", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94176926, + 35.45048645 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1553, + "fid_1": "1530", + "orig_fid": "1530", + "fid_2": "354", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1554", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9256973, + 35.45049229 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1554, + "fid_1": "1545", + "orig_fid": "1545", + "fid_2": "355", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1555", + "geometry": { + "type": "Point", + "coordinates": [ + 117.92066376, + 35.45013531 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1555, + "fid_1": "1511", + "orig_fid": "1511", + "fid_2": "363", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1556", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9363547, + 35.45546011 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1556, + "fid_1": "1780", + "orig_fid": "1780", + "fid_2": "364", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1557", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98574886, + 35.4558221 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1557, + "fid_1": "1783", + "orig_fid": "1783", + "fid_2": "365", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1558", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93872484, + 35.45645002 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1558, + "fid_1": "1800", + "orig_fid": "1800", + "fid_2": "366", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1559", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99422584, + 35.45634628 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1559, + "fid_1": "1810", + "orig_fid": "1810", + "fid_2": "367", + "mc": "大田庄青龙崮水库/黄土庄水库", + "xsl": "11250", + "dz": "黄土庄村", + "bz": "砌石拱坝/坝高:20.3", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库大坝", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 0.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1560", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98254789, + 35.45782958 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1560, + "fid_1": "1849", + "orig_fid": "1849", + "fid_2": "368", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1561", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93542268, + 35.45828354 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1561, + "fid_1": "1868", + "orig_fid": "1868", + "fid_2": "369", + "mc": "平山柳学泉家东塘坝", + "xsl": "8000", + "dz": "平山柳学泉家东", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1562", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94650028, + 35.45948257 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1562, + "fid_1": "1897", + "orig_fid": "1897", + "fid_2": "370", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1563", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93673017, + 35.45964362 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1563, + "fid_1": "1899", + "orig_fid": "1899", + "fid_2": "371", + "mc": "平山虎头山前塘坝", + "xsl": "3000", + "dz": "平山虎头山前", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1564", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96899034, + 35.46040701 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1564, + "fid_1": "1928", + "orig_fid": "1928", + "fid_2": "372", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1565", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97009803, + 35.46071515 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1565, + "fid_1": "1937", + "orig_fid": "1937", + "fid_2": "373", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1566", + "geometry": { + "type": "Point", + "coordinates": [ + 117.92633883, + 35.45362818 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1566, + "fid_1": "1741", + "orig_fid": "1741", + "fid_2": "416", + "mc": "大田庄东安太水库", + "xsl": "900000", + "dz": "东安太村", + "bz": "粘土心墙坝/坝高:10", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库大坝", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1567", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9434226, + 35.4574452 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1567, + "fid_1": "1923", + "orig_fid": "1923", + "fid_2": "417", + "mc": "大田庄黄崖水库", + "xsl": "1300000", + "dz": "黄崖村", + "bz": "粘土心墙坝/坝高:17.5", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库大坝", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 0.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1568", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99223704, + 35.45943453 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1568, + "fid_1": "1895", + "orig_fid": "1895", + "fid_2": "421", + "mc": "大王庄村东沟山场下", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1569", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02726107, + 35.45269783 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1569, + "fid_1": "1641", + "orig_fid": "1641", + "fid_2": "434", + "mc": "周家庄村~天桥下3号", + "xsl": "300", + "dz": "", + "bz": "可直接连接下水管使用", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "300", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1570", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01063164, + 35.4601156 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1570, + "fid_1": "1909", + "orig_fid": "1909", + "fid_2": "437", + "mc": "霸王弓吴周路1号拦水坝", + "xsl": "500", + "dz": "", + "bz": "老牛笼塘坝", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1571", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03530819, + 35.46377667 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1571, + "fid_1": "1993", + "orig_fid": "1993", + "fid_2": "448", + "mc": "玉皇宫", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 4.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1572", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03805388, + 35.46146207 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1572, + "fid_1": "1950", + "orig_fid": "1950", + "fid_2": "449", + "mc": "玉皇宫南", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 0.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1573", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03969661, + 35.45788694 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1573, + "fid_1": "1845", + "orig_fid": "1845", + "fid_2": "450", + "mc": "老孔相遇", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 3.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1574", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03817792, + 35.45504966 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1574, + "fid_1": "1748", + "orig_fid": "1748", + "fid_2": "451", + "mc": "小火车", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1575", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0387322, + 35.45989146 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1575, + "fid_1": "1903", + "orig_fid": "1903", + "fid_2": "453", + "mc": "大福石", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 0.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1576", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06666222, + 35.45648563 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1576, + "fid_1": "1797", + "orig_fid": "1797", + "fid_2": "454", + "mc": "国有塔山林场23蓄水池", + "xsl": "200", + "dz": "谭家庄分区栗树行", + "bz": "规格:10.2*6.9*3.68/联系电话:17662982618 17662982617", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地,蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1577", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03505362, + 35.45292759 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1577, + "fid_1": "1653", + "orig_fid": "1653", + "fid_2": "458", + "mc": "步游道21", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 4.91 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1578", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03977722, + 35.4538741 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1578, + "fid_1": "1702", + "orig_fid": "1702", + "fid_2": "461", + "mc": "小火车往下到汇车处1", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 4.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1579", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04107718, + 35.45226357 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1579, + "fid_1": "1615", + "orig_fid": "1615", + "fid_2": "462", + "mc": "小火车往下到汇车处2", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 3.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1580", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04168987, + 35.45053855 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1580, + "fid_1": "1521", + "orig_fid": "1521", + "fid_2": "463", + "mc": "小火车往下到汇车处3", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 2.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1581", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06163786, + 35.45262607 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1581, + "fid_1": "1637", + "orig_fid": "1637", + "fid_2": "464", + "mc": "梭头湾", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 0.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1582", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06378152, + 35.45261549 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1582, + "fid_1": "1635", + "orig_fid": "1635", + "fid_2": "465", + "mc": "小柳行", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 1.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1583", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01376114, + 35.45554508 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1583, + "fid_1": "1769", + "orig_fid": "1769", + "fid_2": "470", + "mc": "周家村二家峪2号蓄水池", + "xsl": "300", + "dz": "二家峪", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1584", + "geometry": { + "type": "Point", + "coordinates": [ + 118.042641, + 35.451659 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1584, + "fid_1": "1578", + "orig_fid": "1578", + "fid_2": "472", + "mc": "天桥蓄水池", + "xsl": "300", + "dz": "天桥", + "bz": "", + "jczt": "已建完", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1585", + "geometry": { + "type": "Point", + "coordinates": [ + 118.073444, + 35.452035 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1585, + "fid_1": "1604", + "orig_fid": "1604", + "fid_2": "478", + "mc": "彭家岚子老袁家西山蓄水池", + "xsl": "300", + "dz": "彭家岚子老袁家西山", + "bz": "", + "jczt": "规划中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1586", + "geometry": { + "type": "Point", + "coordinates": [ + 118.057891, + 35.454181 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1586, + "fid_1": "1718", + "orig_fid": "1718", + "fid_2": "480", + "mc": "鹅头东沟蓄水池", + "xsl": "200", + "dz": "谭家庄分区鹅头东沟", + "bz": "", + "jczt": "已建完", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1587", + "geometry": { + "type": "Point", + "coordinates": [ + 118.061786, + 35.452608 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1587, + "fid_1": "1634", + "orig_fid": "1634", + "fid_2": "482", + "mc": "梭头湾蓄水池", + "xsl": "5", + "dz": "谭家庄分区梭头湾", + "bz": "", + "jczt": "已建完", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1588", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01231507, + 35.46292111 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1588, + "fid_1": "1968", + "orig_fid": "1968", + "fid_2": "490", + "mc": "国有塔山林场15号蓄水池", + "xsl": "100", + "dz": "塔山\n分区霸王弓护林点", + "bz": "规格:10.5*7.3*4/联系电话:13969922588", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1589", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06413316, + 35.45595967 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1589, + "fid_1": "1781", + "orig_fid": "1781", + "fid_2": "495", + "mc": "国有塔山林场24蓄水池", + "xsl": "200", + "dz": "谭家庄分区茅草沟", + "bz": "规格:8.4*8.4*3.68/联系电话:17662982618 17662982617", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1590", + "geometry": { + "type": "Point", + "coordinates": [ + 118.063728, + 35.452511 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1590, + "fid_1": "1625", + "orig_fid": "1625", + "fid_2": "498", + "mc": "国有塔山林场4号玻璃钢水窖", + "xsl": "0", + "dz": "谭家庄\n分区陈家峪小柳行", + "bz": "联系电话:17661625770", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1591", + "geometry": { + "type": "Point", + "coordinates": [ + 118.057716, + 35.45566 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1591, + "fid_1": "1774", + "orig_fid": "1774", + "fid_2": "499", + "mc": "国有塔山林场5号玻璃钢水窖", + "xsl": "5", + "dz": "谭家庄分区鹅头前", + "bz": "联系电话:17662982618 17662982617", + "jczt": "建设中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1592", + "geometry": { + "type": "Point", + "coordinates": [ + 118.021092, + 35.451135 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1592, + "fid_1": "1544", + "orig_fid": "1544", + "fid_2": "519", + "mc": "大田庄乡2号蓄水池", + "xsl": "0", + "dz": "周家庄村二家峪2号", + "bz": "规格:10*10*3/联系电话:15266622991", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1593", + "geometry": { + "type": "Point", + "coordinates": [ + 118.027021, + 35.461323 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1593, + "fid_1": "1946", + "orig_fid": "1946", + "fid_2": "520", + "mc": "大田庄乡3号蓄水池", + "xsl": "0", + "dz": "周家庄村天桥下3号", + "bz": "规格:10*10*3/联系电话:15266622991", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1594", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00708707, + 35.45483113 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1594, + "fid_1": "1746", + "orig_fid": "1746", + "fid_2": "521", + "mc": "大田庄乡6号蓄水池", + "xsl": "0", + "dz": "周家庄村老牛笼6号", + "bz": "规格:10*10*3/联系电话:15266622991", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1595", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03658811, + 35.46367256 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1595, + "fid_1": "1991", + "orig_fid": "1991", + "fid_2": "528", + "mc": "天蒙景区11号蓄水池", + "xsl": "0", + "dz": "玉液泉", + "bz": "规格:10×6×2/联系电话:15064901066", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1596", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0353, + 35.464 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1596, + "fid_1": "2001", + "orig_fid": "2001", + "fid_2": "529", + "mc": "天蒙景区13号蓄水池", + "xsl": "0", + "dz": "玉皇宫", + "bz": "规格:7×2×3/联系电话:15064901066", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1597", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03708416, + 35.45163635 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1597, + "fid_1": "1573", + "orig_fid": "1573", + "fid_2": "530", + "mc": "天蒙景区14号蓄水池", + "xsl": "200", + "dz": "塔山分区二狼道二郎道广场东侧", + "bz": "规格:10×6×4/联系电话:18769977783", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "140", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1598", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0701056, + 35.45564559 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1598, + "fid_1": "1772", + "orig_fid": "1772", + "fid_2": "537", + "mc": "国有塔山林场21蓄水池", + "xsl": "200", + "dz": "谭家庄分区陈家峪南", + "bz": "规格:10.2 *6.9 *3.68/联系电话:17562910810", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1599", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06826168, + 35.45358291 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1599, + "fid_1": "1685", + "orig_fid": "1685", + "fid_2": "538", + "mc": "国有塔山林场22蓄水池", + "xsl": "200", + "dz": "谭家庄分区懒人窝", + "bz": "规格:10.2*6.9*3.68/联系电话:17562910810", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1600", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06794805, + 35.45716242 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1600, + "fid_1": "1824", + "orig_fid": "1824", + "fid_2": "545", + "mc": "陈家峪护林房后", + "xsl": "300", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "一半", + "appid": "1", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1601", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09851359, + 35.45762911 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1601, + "fid_1": "1856", + "orig_fid": "1856", + "fid_2": "565", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 0.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1602", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08561952, + 35.44552197 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1602, + "fid_1": "1819", + "orig_fid": "1819", + "fid_2": "578", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 1.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1603", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00385838, + 35.45257068 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1603, + "fid_1": "1647", + "orig_fid": "1647", + "fid_2": "603", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1604", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00363217, + 35.45295046 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1604, + "fid_1": "1660", + "orig_fid": "1660", + "fid_2": "643", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1605", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07645029, + 35.46059317 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1605, + "fid_1": "1935", + "orig_fid": "1935", + "fid_2": "656", + "mc": "谭家庄西山水库", + "xsl": "10000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1606", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10194495, + 35.4608907 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1606, + "fid_1": "1936", + "orig_fid": "1936", + "fid_2": "657", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1607", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00941175, + 35.45150418 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1607, + "fid_1": "1566", + "orig_fid": "1566", + "fid_2": "660", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1608", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07658452, + 35.45154762 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1608, + "fid_1": "1590", + "orig_fid": "1590", + "fid_2": "661", + "mc": "陈家峪南拦水坝", + "xsl": "1000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1609", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01239625, + 35.45191905 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1609, + "fid_1": "1602", + "orig_fid": "1602", + "fid_2": "662", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1610", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0085073, + 35.4521092 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1610, + "fid_1": "1616", + "orig_fid": "1616", + "fid_2": "663", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1611", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00722525, + 35.45309203 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1611, + "fid_1": "1665", + "orig_fid": "1665", + "fid_2": "664", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1612", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00078063, + 35.45560443 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1612, + "fid_1": "1776", + "orig_fid": "1776", + "fid_2": "665", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1613", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00072874, + 35.45602754 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1613, + "fid_1": "1787", + "orig_fid": "1787", + "fid_2": "666", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1614", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08211649, + 35.45755297 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1614, + "fid_1": "1833", + "orig_fid": "1833", + "fid_2": "667", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1615", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07559439, + 35.45896148 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1615, + "fid_1": "1889", + "orig_fid": "1889", + "fid_2": "668", + "mc": "谭家庄西山塘坝", + "xsl": "5000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1616", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06684637, + 35.45314639 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1616, + "fid_1": "1664", + "orig_fid": "1664", + "fid_2": "698", + "mc": "懒人窝上小河坝", + "xsl": "300", + "dz": "谭家庄懒人窝", + "bz": "", + "jczt": "建设中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "森林保育水源地,塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1617", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0030241, + 35.45690531 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1617, + "fid_1": "1815", + "orig_fid": "1815", + "fid_2": "699", + "mc": "周家庄紫荆山庄后路北", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1618", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01034372, + 35.45974356 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1618, + "fid_1": "1901", + "orig_fid": "1901", + "fid_2": "701", + "mc": "凤凰翅子蓄水池", + "xsl": "200", + "dz": "塔山分区凤凰翅子", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1619", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01297045, + 35.46359275 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1619, + "fid_1": "1989", + "orig_fid": "1989", + "fid_2": "705", + "mc": "大田庄乡5号蓄水池", + "xsl": "0", + "dz": "周家庄村霸王弓5号", + "bz": "规格:10*10*3/联系电话:15266622991", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1620", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0692138, + 35.45664664 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1620, + "fid_1": "1809", + "orig_fid": "1809", + "fid_2": "706", + "mc": "补充水源地", + "xsl": "2000", + "dz": "谭家庄陈家峪", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝,森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1621", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08899929, + 35.45923138 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1621, + "fid_1": "1890", + "orig_fid": "1890", + "fid_2": "708", + "mc": "华山前坝式蓄水池修复", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1622", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00062426, + 35.45709684 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1622, + "fid_1": "1825", + "orig_fid": "1825", + "fid_2": "709", + "mc": "周家庄西柿树园后山", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1623", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01154281, + 35.45293302 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1623, + "fid_1": "1654", + "orig_fid": "1654", + "fid_2": "710", + "mc": "周家庄二夹峪拦河坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1624", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06026305, + 35.45518971 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1624, + "fid_1": "1755", + "orig_fid": "1755", + "fid_2": "714", + "mc": "国有塔山林场25蓄水池", + "xsl": "0", + "dz": "谭家庄", + "bz": "规格:10.2*6.9*3.68/联系电话:17662982618 17662982617", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1625", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07023982, + 35.45091316 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1625, + "fid_1": "1542", + "orig_fid": "1542", + "fid_2": "715", + "mc": "通泰庄生态塘坝", + "xsl": "3000", + "dz": "通泰庄", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1626", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00417126, + 35.45716517 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1626, + "fid_1": "1826", + "orig_fid": "1826", + "fid_2": "718", + "mc": "大田庄乡4号蓄水池", + "xsl": "300", + "dz": "周家庄村石马子后4号", + "bz": "规格:10*10*3/联系电话:15266622991", + "jczt": "已建完", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "森林保育水源地,蓄水池,蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1627", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00661814, + 35.45542487 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1627, + "fid_1": "1763", + "orig_fid": "1763", + "fid_2": "724", + "mc": "石马子东侧畜水池", + "xsl": "300", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "300", + "appid": "2", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1628", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11192256, + 35.46303558 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1628, + "fid_1": "1980", + "orig_fid": "1980", + "fid_2": "1489", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1629", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07009456, + 35.46215776 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1629, + "fid_1": "1959", + "orig_fid": "1959", + "fid_2": "733", + "mc": "薛庄镇31号蓄水池", + "xsl": "0", + "dz": "谭家庄西山300立方米不带盖蓄水池", + "bz": "联系电话:18263917258", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "不支持", + "jlstjl": "", + "xszt": "一半", + "appid": "0", + "lx": "蓄水池-山水项目(统一编号),森林", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1630", + "geometry": { + "type": "Point", + "coordinates": [ + 117.92898819, + 35.45803076 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1630, + "fid_1": "1854", + "orig_fid": "1854", + "fid_2": "813", + "mc": "沙沟拦水坝", + "xsl": "500", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "350", + "xszt": "300", + "appid": "255", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1631", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1054691, + 35.45893436 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1631, + "fid_1": "1887", + "orig_fid": "1887", + "fid_2": "833", + "mc": "胡家庄东水库", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满水", + "appid": "155", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 0.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1632", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11096316, + 35.46396314 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1632, + "fid_1": "2000", + "orig_fid": "2000", + "fid_2": "845", + "mc": "大古台西北水塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "187", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1633", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10617616, + 35.45507766 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1633, + "fid_1": "1770", + "orig_fid": "1770", + "fid_2": "850", + "mc": "胡家庄东山水库", + "xsl": "2000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "211", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 4.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1634", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12616201, + 35.45611987 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1634, + "fid_1": "1806", + "orig_fid": "1806", + "fid_2": "875", + "mc": "河北庄东北水库", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "191", + "lx": "水库,森林保育水源地", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1635", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98717217, + 35.46266485 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1635, + "fid_1": "1977", + "orig_fid": "1977", + "fid_2": "888", + "mc": "大田庄峨山水库", + "xsl": "10000", + "dz": "峨山村北", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "半水", + "appid": "68", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1636", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07198202, + 35.45577065 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1636, + "fid_1": "1785", + "orig_fid": "1785", + "fid_2": "979", + "mc": "谭家庄塘坝", + "xsl": "3000", + "dz": "薛庄镇陈家峪下塘坝", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "满水", + "appid": "85", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1637", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10603108, + 35.45092035 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1637, + "fid_1": "1534", + "orig_fid": "1534", + "fid_2": "1406", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1638", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10579036, + 35.46398145 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1638, + "fid_1": "1997", + "orig_fid": "1997", + "fid_2": "1438", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1639", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11085266, + 35.4504564 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1639, + "fid_1": "1515", + "orig_fid": "1515", + "fid_2": "1446", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1640", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11067368, + 35.45070867 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1640, + "fid_1": "1526", + "orig_fid": "1526", + "fid_2": "1447", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1641", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10818067, + 35.45077678 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1641, + "fid_1": "1529", + "orig_fid": "1529", + "fid_2": "1448", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1642", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12848484, + 35.45089275 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1642, + "fid_1": "1532", + "orig_fid": "1532", + "fid_2": "1449", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1643", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1025336, + 35.45159384 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1643, + "fid_1": "1571", + "orig_fid": "1571", + "fid_2": "1450", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1644", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10430106, + 35.4516611 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1644, + "fid_1": "1579", + "orig_fid": "1579", + "fid_2": "1451", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1645", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10361799, + 35.45187465 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1645, + "fid_1": "1601", + "orig_fid": "1601", + "fid_2": "1452", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1646", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12810174, + 35.45175898 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1646, + "fid_1": "1596", + "orig_fid": "1596", + "fid_2": "1453", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1647", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1306122, + 35.45212341 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1647, + "fid_1": "1610", + "orig_fid": "1610", + "fid_2": "1454", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1648", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12400987, + 35.45253064 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1648, + "fid_1": "1630", + "orig_fid": "1630", + "fid_2": "1455", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1649", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12422107, + 35.45259134 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1649, + "fid_1": "1633", + "orig_fid": "1633", + "fid_2": "1456", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1650", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12755035, + 35.45292888 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1650, + "fid_1": "1656", + "orig_fid": "1656", + "fid_2": "1457", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1651", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10387527, + 35.45344527 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1651, + "fid_1": "1676", + "orig_fid": "1676", + "fid_2": "1458", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1652", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12542392, + 35.45329659 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1652, + "fid_1": "1672", + "orig_fid": "1672", + "fid_2": "1459", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1653", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12605458, + 35.45328232 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1653, + "fid_1": "1674", + "orig_fid": "1674", + "fid_2": "1460", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1654", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10709333, + 35.45357749 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1654, + "fid_1": "1687", + "orig_fid": "1687", + "fid_2": "1461", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1655", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11008488, + 35.45389737 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1655, + "fid_1": "1703", + "orig_fid": "1703", + "fid_2": "1462", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1656", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10515103, + 35.45395464 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1656, + "fid_1": "1705", + "orig_fid": "1705", + "fid_2": "1463", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1657", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12196873, + 35.45442345 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1657, + "fid_1": "1728", + "orig_fid": "1728", + "fid_2": "1464", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1658", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12569549, + 35.45454624 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1658, + "fid_1": "1734", + "orig_fid": "1734", + "fid_2": "1465", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1659", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12886696, + 35.45477175 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1659, + "fid_1": "1744", + "orig_fid": "1744", + "fid_2": "1466", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1660", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1251296, + 35.45519365 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1660, + "fid_1": "1758", + "orig_fid": "1758", + "fid_2": "1467", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1661", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11431093, + 35.45576926 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1661, + "fid_1": "1777", + "orig_fid": "1777", + "fid_2": "1468", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1662", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11586387, + 35.45629385 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1662, + "fid_1": "1790", + "orig_fid": "1790", + "fid_2": "1469", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1663", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12108764, + 35.45629688 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1663, + "fid_1": "1791", + "orig_fid": "1791", + "fid_2": "1470", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1664", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12508083, + 35.45631411 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1664, + "fid_1": "1793", + "orig_fid": "1793", + "fid_2": "1471", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1665", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11454283, + 35.45632307 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1665, + "fid_1": "1807", + "orig_fid": "1807", + "fid_2": "1472", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1666", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12206987, + 35.45687866 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1666, + "fid_1": "1812", + "orig_fid": "1812", + "fid_2": "1473", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1667", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12760605, + 35.45709876 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1667, + "fid_1": "1822", + "orig_fid": "1822", + "fid_2": "1474", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1668", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12382232, + 35.45783741 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1668, + "fid_1": "1842", + "orig_fid": "1842", + "fid_2": "1475", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1669", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12223116, + 35.457894 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1669, + "fid_1": "1848", + "orig_fid": "1848", + "fid_2": "1476", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1670", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1257122, + 35.45841133 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1670, + "fid_1": "1867", + "orig_fid": "1867", + "fid_2": "1477", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1671", + "geometry": { + "type": "Point", + "coordinates": [ + 118.12283612, + 35.45884165 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1671, + "fid_1": "1880", + "orig_fid": "1880", + "fid_2": "1478", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1672", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11760812, + 35.4600701 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1672, + "fid_1": "1906", + "orig_fid": "1906", + "fid_2": "1479", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1673", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11514974, + 35.46032497 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1673, + "fid_1": "1912", + "orig_fid": "1912", + "fid_2": "1480", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1674", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11827444, + 35.46027602 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1674, + "fid_1": "1911", + "orig_fid": "1911", + "fid_2": "1481", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1675", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11586621, + 35.4605622 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1675, + "fid_1": "1924", + "orig_fid": "1924", + "fid_2": "1482", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1676", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11699533, + 35.46121622 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1676, + "fid_1": "1942", + "orig_fid": "1942", + "fid_2": "1483", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1677", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11761831, + 35.46158113 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1677, + "fid_1": "1953", + "orig_fid": "1953", + "fid_2": "1484", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1678", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11007205, + 35.46164695 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1678, + "fid_1": "1956", + "orig_fid": "1956", + "fid_2": "1485", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1679", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11080754, + 35.46185095 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1679, + "fid_1": "1960", + "orig_fid": "1960", + "fid_2": "1486", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1680", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10275231, + 35.46294223 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1680, + "fid_1": "1973", + "orig_fid": "1973", + "fid_2": "1487", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1681", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10552548, + 35.4626383 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1681, + "fid_1": "1972", + "orig_fid": "1972", + "fid_2": "1488", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1682", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10410858, + 35.46337603 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1682, + "fid_1": "1983", + "orig_fid": "1983", + "fid_2": "1490", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1683", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10578168, + 35.46328406 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1683, + "fid_1": "1985", + "orig_fid": "1985", + "fid_2": "1491", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1684", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11723886, + 35.46340357 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1684, + "fid_1": "1984", + "orig_fid": "1984", + "fid_2": "1492", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1685", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10422388, + 35.46354192 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1685, + "fid_1": "1990", + "orig_fid": "1990", + "fid_2": "1493", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1686", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11685517, + 35.46351141 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1686, + "fid_1": "1987", + "orig_fid": "1987", + "fid_2": "1494", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.91 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1687", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10655774, + 35.46372334 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1687, + "fid_1": "1992", + "orig_fid": "1992", + "fid_2": "1495", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1688", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10313853, + 35.46396246 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1688, + "fid_1": "1996", + "orig_fid": "1996", + "fid_2": "1496", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1689", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10338112, + 35.46401391 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1689, + "fid_1": "1999", + "orig_fid": "1999", + "fid_2": "1497", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1690", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10289486, + 35.46452824 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1690, + "fid_1": "2009", + "orig_fid": "2009", + "fid_2": "1498", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1691", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95850776, + 35.45032335 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1691, + "fid_1": "1513", + "orig_fid": "1513", + "fid_2": "1523", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1692", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98225298, + 35.45467643 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1692, + "fid_1": "1737", + "orig_fid": "1737", + "fid_2": "1526", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1693", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93803141, + 35.45694851 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1693, + "fid_1": "1818", + "orig_fid": "1818", + "fid_2": "1530", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1694", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98079527, + 35.46264555 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1694, + "fid_1": "1964", + "orig_fid": "1964", + "fid_2": "1534", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1695", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98089354, + 35.46148899 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1695, + "fid_1": "1951", + "orig_fid": "1951", + "fid_2": "1544", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1696", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98230169, + 35.45477312 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1696, + "fid_1": "1745", + "orig_fid": "1745", + "fid_2": "1557", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1697", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98298196, + 35.45492403 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1697, + "fid_1": "1747", + "orig_fid": "1747", + "fid_2": "1596", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1698", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9860954, + 35.46152131 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1698, + "fid_1": "1952", + "orig_fid": "1952", + "fid_2": "1625", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1699", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9833243, + 35.45503879 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1699, + "fid_1": "1749", + "orig_fid": "1749", + "fid_2": "1669", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1700", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93942049, + 35.45030706 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1700, + "fid_1": "1512", + "orig_fid": "1512", + "fid_2": "1686", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1701", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93719637, + 35.45047183 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1701, + "fid_1": "1517", + "orig_fid": "1517", + "fid_2": "1691", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1702", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99696418, + 35.45246835 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1702, + "fid_1": "1624", + "orig_fid": "1624", + "fid_2": "1695", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1703", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98938158, + 35.4503987 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1703, + "fid_1": "1514", + "orig_fid": "1514", + "fid_2": "1697", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1704", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98377722, + 35.45045987 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1704, + "fid_1": "1518", + "orig_fid": "1518", + "fid_2": "1698", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1705", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98947701, + 35.45055981 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1705, + "fid_1": "1522", + "orig_fid": "1522", + "fid_2": "1699", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1706", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98520024, + 35.45070425 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1706, + "fid_1": "1525", + "orig_fid": "1525", + "fid_2": "1700", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1707", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93537291, + 35.45130914 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1707, + "fid_1": "1555", + "orig_fid": "1555", + "fid_2": "1701", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1708", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98287517, + 35.45099381 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1708, + "fid_1": "1538", + "orig_fid": "1538", + "fid_2": "1702", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1709", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98567974, + 35.45099918 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1709, + "fid_1": "1537", + "orig_fid": "1537", + "fid_2": "1703", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1710", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99003422, + 35.45322407 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1710, + "fid_1": "1669", + "orig_fid": "1669", + "fid_2": "1704", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1711", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99593961, + 35.45089656 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1711, + "fid_1": "1539", + "orig_fid": "1539", + "fid_2": "1705", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1712", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98073003, + 35.45371767 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1712, + "fid_1": "1694", + "orig_fid": "1694", + "fid_2": "1706", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1713", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98664618, + 35.45111312 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1713, + "fid_1": "1546", + "orig_fid": "1546", + "fid_2": "1707", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1714", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98540341, + 35.45127943 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1714, + "fid_1": "1556", + "orig_fid": "1556", + "fid_2": "1708", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1715", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98514499, + 35.45147985 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1715, + "fid_1": "1562", + "orig_fid": "1562", + "fid_2": "1709", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1716", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98244306, + 35.45161016 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1716, + "fid_1": "1569", + "orig_fid": "1569", + "fid_2": "1710", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1717", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99800284, + 35.45147893 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1717, + "fid_1": "1563", + "orig_fid": "1563", + "fid_2": "1711", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1718", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98968313, + 35.45473788 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1718, + "fid_1": "1742", + "orig_fid": "1742", + "fid_2": "1712", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1719", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98516825, + 35.45160714 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1719, + "fid_1": "1570", + "orig_fid": "1570", + "fid_2": "1713", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1720", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98461257, + 35.45163162 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1720, + "fid_1": "1572", + "orig_fid": "1572", + "fid_2": "1714", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1721", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98452759, + 35.45164692 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1721, + "fid_1": "1574", + "orig_fid": "1574", + "fid_2": "1715", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1722", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9846063, + 35.45172036 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1722, + "fid_1": "1582", + "orig_fid": "1582", + "fid_2": "1716", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1723", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98455248, + 35.45184156 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1723, + "fid_1": "1591", + "orig_fid": "1591", + "fid_2": "1717", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1724", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9842609, + 35.4519353 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1724, + "fid_1": "1598", + "orig_fid": "1598", + "fid_2": "1718", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1725", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97946007, + 35.45303303 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1725, + "fid_1": "1657", + "orig_fid": "1657", + "fid_2": "1719", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1726", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98472334, + 35.45303815 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1726, + "fid_1": "1659", + "orig_fid": "1659", + "fid_2": "1720", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1727", + "geometry": { + "type": "Point", + "coordinates": [ + 117.92282792, + 35.45357548 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1727, + "fid_1": "1681", + "orig_fid": "1681", + "fid_2": "1721", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1728", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9843796, + 35.45309309 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1728, + "fid_1": "1662", + "orig_fid": "1662", + "fid_2": "1722", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1729", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99052293, + 35.45308517 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1729, + "fid_1": "1658", + "orig_fid": "1658", + "fid_2": "1723", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1730", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99098111, + 35.45316063 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1730, + "fid_1": "1663", + "orig_fid": "1663", + "fid_2": "1724", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1731", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98504296, + 35.4531968 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1731, + "fid_1": "1668", + "orig_fid": "1668", + "fid_2": "1725", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1732", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96392257, + 35.45351147 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1732, + "fid_1": "1680", + "orig_fid": "1680", + "fid_2": "1726", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1733", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98476574, + 35.45350305 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1733, + "fid_1": "1679", + "orig_fid": "1679", + "fid_2": "1727", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1734", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98091964, + 35.45359698 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1734, + "fid_1": "1683", + "orig_fid": "1683", + "fid_2": "1728", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1735", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98083566, + 35.45361641 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1735, + "fid_1": "1688", + "orig_fid": "1688", + "fid_2": "1729", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1736", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98578414, + 35.45364414 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1736, + "fid_1": "1692", + "orig_fid": "1692", + "fid_2": "1730", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1737", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99296496, + 35.45362342 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1737, + "fid_1": "1690", + "orig_fid": "1690", + "fid_2": "1731", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1738", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98727178, + 35.45445428 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1738, + "fid_1": "1731", + "orig_fid": "1731", + "fid_2": "1732", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1739", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98523817, + 35.45455171 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1739, + "fid_1": "1732", + "orig_fid": "1732", + "fid_2": "1733", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1740", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98743228, + 35.45455301 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1740, + "fid_1": "1733", + "orig_fid": "1733", + "fid_2": "1734", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1741", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98596449, + 35.4543266 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1741, + "fid_1": "1725", + "orig_fid": "1725", + "fid_2": "1735", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1742", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98514038, + 35.45380351 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1742, + "fid_1": "1697", + "orig_fid": "1697", + "fid_2": "1736", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1743", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98461052, + 35.45383302 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1743, + "fid_1": "1699", + "orig_fid": "1699", + "fid_2": "1737", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1744", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98499488, + 35.45384293 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1744, + "fid_1": "1700", + "orig_fid": "1700", + "fid_2": "1738", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1745", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98875528, + 35.45553945 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1745, + "fid_1": "1767", + "orig_fid": "1767", + "fid_2": "1739", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1746", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99006527, + 35.45386289 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1746, + "fid_1": "1701", + "orig_fid": "1701", + "fid_2": "1740", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1747", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99038962, + 35.45392187 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1747, + "fid_1": "1704", + "orig_fid": "1704", + "fid_2": "1741", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1748", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98149403, + 35.45402099 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1748, + "fid_1": "1710", + "orig_fid": "1710", + "fid_2": "1742", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1749", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99341248, + 35.4539374 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1749, + "fid_1": "1708", + "orig_fid": "1708", + "fid_2": "1743", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1750", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98156551, + 35.45416263 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1750, + "fid_1": "1714", + "orig_fid": "1714", + "fid_2": "1744", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1751", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98981576, + 35.45410566 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1751, + "fid_1": "1711", + "orig_fid": "1711", + "fid_2": "1745", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1752", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98487013, + 35.45418984 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1752, + "fid_1": "1717", + "orig_fid": "1717", + "fid_2": "1746", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1753", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9924974, + 35.4541992 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1753, + "fid_1": "1720", + "orig_fid": "1720", + "fid_2": "1747", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1754", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98995139, + 35.45431362 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1754, + "fid_1": "1724", + "orig_fid": "1724", + "fid_2": "1748", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1755", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9820068, + 35.4544222 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1755, + "fid_1": "1729", + "orig_fid": "1729", + "fid_2": "1749", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1756", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99101418, + 35.45438721 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1756, + "fid_1": "1726", + "orig_fid": "1726", + "fid_2": "1750", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1757", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99371382, + 35.45476587 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1757, + "fid_1": "1743", + "orig_fid": "1743", + "fid_2": "1751", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1758", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98863621, + 35.45684978 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1758, + "fid_1": "1811", + "orig_fid": "1811", + "fid_2": "1752", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1759", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93959862, + 35.45427585 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1759, + "fid_1": "1764", + "orig_fid": "1764", + "fid_2": "1753", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1760", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98559049, + 35.45508853 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1760, + "fid_1": "1751", + "orig_fid": "1751", + "fid_2": "1754", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1761", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98416976, + 35.45519247 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1761, + "fid_1": "1754", + "orig_fid": "1754", + "fid_2": "1755", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1762", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98976017, + 35.45514498 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1762, + "fid_1": "1753", + "orig_fid": "1753", + "fid_2": "1756", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1763", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9262556, + 35.45561285 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1763, + "fid_1": "1773", + "orig_fid": "1773", + "fid_2": "1757", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1764", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98475266, + 35.455267 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1764, + "fid_1": "1761", + "orig_fid": "1761", + "fid_2": "1758", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1765", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98514624, + 35.4555507 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1765, + "fid_1": "1768", + "orig_fid": "1768", + "fid_2": "1759", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1766", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98986689, + 35.45552228 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1766, + "fid_1": "1766", + "orig_fid": "1766", + "fid_2": "1760", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1767", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98229289, + 35.46456648 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1767, + "fid_1": "2011", + "orig_fid": "2011", + "fid_2": "1761", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1768", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98323038, + 35.45814068 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1768, + "fid_1": "1853", + "orig_fid": "1853", + "fid_2": "1762", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1769", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98637323, + 35.45572533 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1769, + "fid_1": "1775", + "orig_fid": "1775", + "fid_2": "1763", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1770", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96535622, + 35.4622111 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1770, + "fid_1": "1961", + "orig_fid": "1961", + "fid_2": "1764", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1771", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98708057, + 35.45589066 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1771, + "fid_1": "1778", + "orig_fid": "1778", + "fid_2": "1765", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1772", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98670744, + 35.45587995 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1772, + "fid_1": "1779", + "orig_fid": "1779", + "fid_2": "1766", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1773", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93710536, + 35.45629496 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1773, + "fid_1": "1789", + "orig_fid": "1789", + "fid_2": "1767", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1774", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93822786, + 35.45639243 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1774, + "fid_1": "1794", + "orig_fid": "1794", + "fid_2": "1768", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1775", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93068957, + 35.45644195 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1775, + "fid_1": "1796", + "orig_fid": "1796", + "fid_2": "1769", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1776", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98909576, + 35.4561612 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1776, + "fid_1": "1786", + "orig_fid": "1786", + "fid_2": "1770", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1777", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93824997, + 35.45658546 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1777, + "fid_1": "1805", + "orig_fid": "1805", + "fid_2": "1771", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1778", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93962064, + 35.45684047 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1778, + "fid_1": "1813", + "orig_fid": "1813", + "fid_2": "1772", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1779", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98644235, + 35.45655366 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1779, + "fid_1": "1802", + "orig_fid": "1802", + "fid_2": "1773", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1780", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97699415, + 35.45689209 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1780, + "fid_1": "1814", + "orig_fid": "1814", + "fid_2": "1774", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1781", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9649986, + 35.46233058 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1781, + "fid_1": "1962", + "orig_fid": "1962", + "fid_2": "1775", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1782", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98454109, + 35.4569411 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1782, + "fid_1": "1817", + "orig_fid": "1817", + "fid_2": "1776", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1783", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98694031, + 35.45730299 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1783, + "fid_1": "1827", + "orig_fid": "1827", + "fid_2": "1777", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1784", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98798838, + 35.45731746 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1784, + "fid_1": "1828", + "orig_fid": "1828", + "fid_2": "1778", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1785", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98761571, + 35.45749825 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1785, + "fid_1": "1832", + "orig_fid": "1832", + "fid_2": "1779", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1786", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98935671, + 35.45764425 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1786, + "fid_1": "1834", + "orig_fid": "1834", + "fid_2": "1780", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1787", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98193775, + 35.45772805 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1787, + "fid_1": "1839", + "orig_fid": "1839", + "fid_2": "1781", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1788", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98005339, + 35.45784527 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1788, + "fid_1": "1843", + "orig_fid": "1843", + "fid_2": "1782", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1789", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98524893, + 35.45783532 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1789, + "fid_1": "1841", + "orig_fid": "1841", + "fid_2": "1783", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1790", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98102773, + 35.45809006 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1790, + "fid_1": "1851", + "orig_fid": "1851", + "fid_2": "1784", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1791", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97785384, + 35.45824998 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1791, + "fid_1": "1857", + "orig_fid": "1857", + "fid_2": "1785", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1792", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98372608, + 35.45827276 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1792, + "fid_1": "1861", + "orig_fid": "1861", + "fid_2": "1786", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1793", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98182851, + 35.45823339 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1793, + "fid_1": "1862", + "orig_fid": "1862", + "fid_2": "1787", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1794", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9379072, + 35.45863496 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1794, + "fid_1": "1875", + "orig_fid": "1875", + "fid_2": "1788", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1795", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98502325, + 35.45839213 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1795, + "fid_1": "1865", + "orig_fid": "1865", + "fid_2": "1789", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1796", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98099382, + 35.4587705 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1796, + "fid_1": "1879", + "orig_fid": "1879", + "fid_2": "1790", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1797", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9809054, + 35.45897621 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1797, + "fid_1": "1882", + "orig_fid": "1882", + "fid_2": "1791", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1798", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97785379, + 35.459054 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1798, + "fid_1": "1885", + "orig_fid": "1885", + "fid_2": "1792", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1799", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96720747, + 35.46038556 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1799, + "fid_1": "1920", + "orig_fid": "1920", + "fid_2": "1793", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1800", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96654798, + 35.46078297 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1800, + "fid_1": "1929", + "orig_fid": "1929", + "fid_2": "1795", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1801", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96577466, + 35.46125301 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1801, + "fid_1": "1947", + "orig_fid": "1947", + "fid_2": "1796", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1802", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97921586, + 35.46269482 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1802, + "fid_1": "1965", + "orig_fid": "1965", + "fid_2": "1797", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1803", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98396239, + 35.46285844 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1803, + "fid_1": "1967", + "orig_fid": "1967", + "fid_2": "1798", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1804", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96562367, + 35.46302641 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1804, + "fid_1": "1976", + "orig_fid": "1976", + "fid_2": "1799", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1805", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97980428, + 35.46236339 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1805, + "fid_1": "1970", + "orig_fid": "1970", + "fid_2": "1800", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1806", + "geometry": { + "type": "Point", + "coordinates": [ + 117.983259, + 35.46292914 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1806, + "fid_1": "1975", + "orig_fid": "1975", + "fid_2": "1801", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1807", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9795885, + 35.46310515 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1807, + "fid_1": "1978", + "orig_fid": "1978", + "fid_2": "1802", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1808", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98497555, + 35.46319915 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1808, + "fid_1": "1979", + "orig_fid": "1979", + "fid_2": "1803", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1809", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97900137, + 35.46403748 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1809, + "fid_1": "2002", + "orig_fid": "2002", + "fid_2": "1804", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1810", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98219463, + 35.46429599 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1810, + "fid_1": "2004", + "orig_fid": "2004", + "fid_2": "1805", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1811", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08426328, + 35.45287956 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1811, + "fid_1": "1651", + "orig_fid": "1651", + "fid_2": "2580", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1812", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00858812, + 35.45117041 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1812, + "fid_1": "1548", + "orig_fid": "1548", + "fid_2": "2761", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1813", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00341724, + 35.45736685 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1813, + "fid_1": "1830", + "orig_fid": "1830", + "fid_2": "2774", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1814", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0900701, + 35.45379508 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1814, + "fid_1": "1696", + "orig_fid": "1696", + "fid_2": "2789", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1815", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00487995, + 35.45904339 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1815, + "fid_1": "1884", + "orig_fid": "1884", + "fid_2": "2811", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1816", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01559008, + 35.45023439 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1816, + "fid_1": "1510", + "orig_fid": "1510", + "fid_2": "2817", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1817", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00901423, + 35.45039359 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1817, + "fid_1": "1519", + "orig_fid": "1519", + "fid_2": "2820", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1818", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01008301, + 35.45049598 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1818, + "fid_1": "1520", + "orig_fid": "1520", + "fid_2": "2822", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1819", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07914091, + 35.46046261 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1819, + "fid_1": "1914", + "orig_fid": "1914", + "fid_2": "2824", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1820", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00967067, + 35.45059791 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1820, + "fid_1": "1523", + "orig_fid": "1523", + "fid_2": "2825", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1821", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00582682, + 35.45073322 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1821, + "fid_1": "1527", + "orig_fid": "1527", + "fid_2": "2826", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1822", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02144153, + 35.45066681 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1822, + "fid_1": "1524", + "orig_fid": "1524", + "fid_2": "2827", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1823", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02151285, + 35.45076553 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1823, + "fid_1": "1528", + "orig_fid": "1528", + "fid_2": "2828", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1824", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00754221, + 35.45096872 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1824, + "fid_1": "1535", + "orig_fid": "1535", + "fid_2": "2829", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1825", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00797704, + 35.4509625 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1825, + "fid_1": "1536", + "orig_fid": "1536", + "fid_2": "2830", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1826", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02131632, + 35.45091251 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1826, + "fid_1": "1533", + "orig_fid": "1533", + "fid_2": "2831", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1827", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00039348, + 35.45115547 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1827, + "fid_1": "1547", + "orig_fid": "1547", + "fid_2": "2832", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1828", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00873985, + 35.45112139 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1828, + "fid_1": "1543", + "orig_fid": "1543", + "fid_2": "2833", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1829", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00346781, + 35.45118393 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1829, + "fid_1": "1549", + "orig_fid": "1549", + "fid_2": "2834", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1830", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0077572, + 35.45117665 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1830, + "fid_1": "1550", + "orig_fid": "1550", + "fid_2": "2835", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1831", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00694243, + 35.45122706 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1831, + "fid_1": "1551", + "orig_fid": "1551", + "fid_2": "2836", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1832", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01030064, + 35.45128844 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1832, + "fid_1": "1553", + "orig_fid": "1553", + "fid_2": "2837", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1833", + "geometry": { + "type": "Point", + "coordinates": [ + 118.011826, + 35.45133601 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1833, + "fid_1": "1557", + "orig_fid": "1557", + "fid_2": "2838", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1834", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00911361, + 35.45128331 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1834, + "fid_1": "1560", + "orig_fid": "1560", + "fid_2": "2839", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1835", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00282338, + 35.45420007 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1835, + "fid_1": "1719", + "orig_fid": "1719", + "fid_2": "2840", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1836", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01210172, + 35.45136957 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1836, + "fid_1": "1558", + "orig_fid": "1558", + "fid_2": "2841", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1837", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00997478, + 35.45143751 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1837, + "fid_1": "1561", + "orig_fid": "1561", + "fid_2": "2842", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1838", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02188686, + 35.45132167 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1838, + "fid_1": "1554", + "orig_fid": "1554", + "fid_2": "2843", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1839", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00710598, + 35.45153445 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1839, + "fid_1": "1564", + "orig_fid": "1564", + "fid_2": "2844", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1840", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99977266, + 35.45158959 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1840, + "fid_1": "1568", + "orig_fid": "1568", + "fid_2": "2845", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1841", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00550299, + 35.45770745 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1841, + "fid_1": "1835", + "orig_fid": "1835", + "fid_2": "2846", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1842", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00538311, + 35.45154764 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1842, + "fid_1": "1565", + "orig_fid": "1565", + "fid_2": "2847", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1843", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00669733, + 35.45159316 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1843, + "fid_1": "1567", + "orig_fid": "1567", + "fid_2": "2848", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1844", + "geometry": { + "type": "Point", + "coordinates": [ + 117.998711, + 35.45164982 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1844, + "fid_1": "1580", + "orig_fid": "1580", + "fid_2": "2849", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1845", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00705209, + 35.45166163 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1845, + "fid_1": "1577", + "orig_fid": "1577", + "fid_2": "2850", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1846", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00805628, + 35.45163654 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1846, + "fid_1": "1576", + "orig_fid": "1576", + "fid_2": "2851", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1847", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0093408, + 35.45170776 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1847, + "fid_1": "1583", + "orig_fid": "1583", + "fid_2": "2852", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1848", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01115231, + 35.45173617 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1848, + "fid_1": "1584", + "orig_fid": "1584", + "fid_2": "2853", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1849", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0072916, + 35.45177739 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1849, + "fid_1": "1587", + "orig_fid": "1587", + "fid_2": "2854", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1850", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99985419, + 35.45219878 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1850, + "fid_1": "1614", + "orig_fid": "1614", + "fid_2": "2855", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1851", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00522129, + 35.45174547 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1851, + "fid_1": "1589", + "orig_fid": "1589", + "fid_2": "2856", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1852", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01061986, + 35.45177248 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1852, + "fid_1": "1585", + "orig_fid": "1585", + "fid_2": "2857", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1853", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00959894, + 35.4517887 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1853, + "fid_1": "1588", + "orig_fid": "1588", + "fid_2": "2858", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1854", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00491121, + 35.45184996 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1854, + "fid_1": "1593", + "orig_fid": "1593", + "fid_2": "2859", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1855", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07214129, + 35.45868188 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1855, + "fid_1": "1876", + "orig_fid": "1876", + "fid_2": "2860", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1856", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09134214, + 35.4508329 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1856, + "fid_1": "1541", + "orig_fid": "1541", + "fid_2": "2861", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1857", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00777247, + 35.45180724 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1857, + "fid_1": "1592", + "orig_fid": "1592", + "fid_2": "2862", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1858", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07395321, + 35.45120587 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1858, + "fid_1": "1552", + "orig_fid": "1552", + "fid_2": "2863", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1859", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00671703, + 35.45188607 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1859, + "fid_1": "1595", + "orig_fid": "1595", + "fid_2": "2864", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1860", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0119366, + 35.45181259 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1860, + "fid_1": "1594", + "orig_fid": "1594", + "fid_2": "2865", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1861", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00555397, + 35.45183197 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1861, + "fid_1": "1597", + "orig_fid": "1597", + "fid_2": "2866", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1862", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00897799, + 35.45194828 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1862, + "fid_1": "1600", + "orig_fid": "1600", + "fid_2": "2867", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1863", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01159213, + 35.45192507 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1863, + "fid_1": "1599", + "orig_fid": "1599", + "fid_2": "2868", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1864", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00680516, + 35.45203835 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1864, + "fid_1": "1603", + "orig_fid": "1603", + "fid_2": "2869", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1865", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00433971, + 35.45206214 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1865, + "fid_1": "1607", + "orig_fid": "1607", + "fid_2": "2870", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1866", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99967003, + 35.45209704 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1866, + "fid_1": "1611", + "orig_fid": "1611", + "fid_2": "2871", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1867", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00659114, + 35.452037 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1867, + "fid_1": "1608", + "orig_fid": "1608", + "fid_2": "2872", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1868", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00824073, + 35.45207199 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1868, + "fid_1": "1609", + "orig_fid": "1609", + "fid_2": "2873", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1869", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01034993, + 35.45215581 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1869, + "fid_1": "1612", + "orig_fid": "1612", + "fid_2": "2874", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1870", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02469189, + 35.4520651 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1870, + "fid_1": "1606", + "orig_fid": "1606", + "fid_2": "2875", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1871", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9981453, + 35.45233917 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1871, + "fid_1": "1619", + "orig_fid": "1619", + "fid_2": "2876", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1872", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00389434, + 35.45229579 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1872, + "fid_1": "1617", + "orig_fid": "1617", + "fid_2": "2877", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1873", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07530943, + 35.45160801 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1873, + "fid_1": "1581", + "orig_fid": "1581", + "fid_2": "2878", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1874", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09585536, + 35.45854276 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1874, + "fid_1": "1870", + "orig_fid": "1870", + "fid_2": "2879", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1875", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00623441, + 35.45235531 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1875, + "fid_1": "1620", + "orig_fid": "1620", + "fid_2": "2880", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1876", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00111586, + 35.45242533 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1876, + "fid_1": "1622", + "orig_fid": "1622", + "fid_2": "2881", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1877", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07938644, + 35.45177962 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1877, + "fid_1": "1586", + "orig_fid": "1586", + "fid_2": "2882", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1878", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00837991, + 35.45240299 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1878, + "fid_1": "1621", + "orig_fid": "1621", + "fid_2": "2883", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1879", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00918239, + 35.45238584 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1879, + "fid_1": "1623", + "orig_fid": "1623", + "fid_2": "2884", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1880", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99838915, + 35.45254103 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1880, + "fid_1": "1626", + "orig_fid": "1626", + "fid_2": "2885", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1881", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99924708, + 35.45256544 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1881, + "fid_1": "1631", + "orig_fid": "1631", + "fid_2": "2886", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1882", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00670271, + 35.45770978 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1882, + "fid_1": "1836", + "orig_fid": "1836", + "fid_2": "2887", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1883", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07491194, + 35.46025313 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1883, + "fid_1": "1910", + "orig_fid": "1910", + "fid_2": "2888", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1884", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0076879, + 35.45253718 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1884, + "fid_1": "1628", + "orig_fid": "1628", + "fid_2": "2889", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1885", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01095264, + 35.45252167 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1885, + "fid_1": "1627", + "orig_fid": "1627", + "fid_2": "2890", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1886", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00707618, + 35.452631 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1886, + "fid_1": "1636", + "orig_fid": "1636", + "fid_2": "2891", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1887", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05876329, + 35.45219654 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1887, + "fid_1": "1613", + "orig_fid": "1613", + "fid_2": "2892", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1888", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00363757, + 35.45272985 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1888, + "fid_1": "1645", + "orig_fid": "1645", + "fid_2": "2893", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1889", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01143384, + 35.45267137 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1889, + "fid_1": "1640", + "orig_fid": "1640", + "fid_2": "2894", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1890", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00826182, + 35.4528172 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1890, + "fid_1": "1648", + "orig_fid": "1648", + "fid_2": "2895", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1891", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00872989, + 35.45284037 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1891, + "fid_1": "1652", + "orig_fid": "1652", + "fid_2": "2896", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1892", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00675826, + 35.45318883 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1892, + "fid_1": "1667", + "orig_fid": "1667", + "fid_2": "2897", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1893", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07494896, + 35.45272742 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1893, + "fid_1": "1642", + "orig_fid": "1642", + "fid_2": "2898", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1894", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08443954, + 35.45263679 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1894, + "fid_1": "1638", + "orig_fid": "1638", + "fid_2": "2899", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1895", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00053083, + 35.45328071 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1895, + "fid_1": "1673", + "orig_fid": "1673", + "fid_2": "2900", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1896", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00134669, + 35.4534673 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1896, + "fid_1": "1678", + "orig_fid": "1678", + "fid_2": "2901", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1897", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00646378, + 35.4534451 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1897, + "fid_1": "1675", + "orig_fid": "1675", + "fid_2": "2902", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1898", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00803527, + 35.45346437 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1898, + "fid_1": "1677", + "orig_fid": "1677", + "fid_2": "2903", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1899", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08169882, + 35.45280865 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1899, + "fid_1": "1649", + "orig_fid": "1649", + "fid_2": "2904", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1900", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09802276, + 35.45273876 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1900, + "fid_1": "1643", + "orig_fid": "1643", + "fid_2": "2905", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1901", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00755435, + 35.45357467 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1901, + "fid_1": "1686", + "orig_fid": "1686", + "fid_2": "2906", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1902", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00876215, + 35.45356678 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1902, + "fid_1": "1682", + "orig_fid": "1682", + "fid_2": "2907", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1903", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00234383, + 35.45366518 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1903, + "fid_1": "1691", + "orig_fid": "1691", + "fid_2": "2908", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1904", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00634651, + 35.45369778 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1904, + "fid_1": "1693", + "orig_fid": "1693", + "fid_2": "2909", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1905", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00683729, + 35.45370081 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1905, + "fid_1": "1695", + "orig_fid": "1695", + "fid_2": "2910", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1906", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07697938, + 35.45286526 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1906, + "fid_1": "1661", + "orig_fid": "1661", + "fid_2": "2911", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1907", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99886516, + 35.45386212 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1907, + "fid_1": "1707", + "orig_fid": "1707", + "fid_2": "2912", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1908", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00534836, + 35.45398378 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1908, + "fid_1": "1706", + "orig_fid": "1706", + "fid_2": "2913", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1909", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0805819, + 35.45335135 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1909, + "fid_1": "1671", + "orig_fid": "1671", + "fid_2": "2914", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1910", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00794811, + 35.45398337 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1910, + "fid_1": "1709", + "orig_fid": "1709", + "fid_2": "2915", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1911", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00237089, + 35.45408535 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1911, + "fid_1": "1713", + "orig_fid": "1713", + "fid_2": "2916", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1912", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00460853, + 35.45416523 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1912, + "fid_1": "1716", + "orig_fid": "1716", + "fid_2": "2917", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1913", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07538619, + 35.45360137 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1913, + "fid_1": "1684", + "orig_fid": "1684", + "fid_2": "2918", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1914", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07529834, + 35.45360639 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1914, + "fid_1": "1689", + "orig_fid": "1689", + "fid_2": "2919", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1915", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07551583, + 35.46107395 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1915, + "fid_1": "1939", + "orig_fid": "1939", + "fid_2": "2920", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1916", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00612344, + 35.45421498 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1916, + "fid_1": "1721", + "orig_fid": "1721", + "fid_2": "2921", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1917", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00241782, + 35.45428342 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1917, + "fid_1": "1723", + "orig_fid": "1723", + "fid_2": "2922", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1918", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09548142, + 35.45829063 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1918, + "fid_1": "1860", + "orig_fid": "1860", + "fid_2": "2923", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1919", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00704648, + 35.45434014 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1919, + "fid_1": "1727", + "orig_fid": "1727", + "fid_2": "2924", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1920", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00285829, + 35.45442056 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1920, + "fid_1": "1730", + "orig_fid": "1730", + "fid_2": "2925", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1921", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07515524, + 35.45381799 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1921, + "fid_1": "1698", + "orig_fid": "1698", + "fid_2": "2926", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1922", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99915662, + 35.45418811 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1922, + "fid_1": "1735", + "orig_fid": "1735", + "fid_2": "2927", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1923", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00003415, + 35.45473877 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1923, + "fid_1": "1740", + "orig_fid": "1740", + "fid_2": "2928", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1924", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07510514, + 35.45397328 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1924, + "fid_1": "1715", + "orig_fid": "1715", + "fid_2": "2929", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1925", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07486231, + 35.45424421 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1925, + "fid_1": "1722", + "orig_fid": "1722", + "fid_2": "2930", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1926", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00571026, + 35.45515442 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1926, + "fid_1": "1756", + "orig_fid": "1756", + "fid_2": "2931", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1927", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00058515, + 35.45517723 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1927, + "fid_1": "1757", + "orig_fid": "1757", + "fid_2": "2932", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1928", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07762245, + 35.4546983 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1928, + "fid_1": "1738", + "orig_fid": "1738", + "fid_2": "2933", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1929", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08166688, + 35.45470086 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1929, + "fid_1": "1739", + "orig_fid": "1739", + "fid_2": "2934", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1930", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00222401, + 35.45550816 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1930, + "fid_1": "1765", + "orig_fid": "1765", + "fid_2": "2935", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1931", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00239094, + 35.4549311 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1931, + "fid_1": "1771", + "orig_fid": "1771", + "fid_2": "2936", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1932", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08162598, + 35.45504984 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1932, + "fid_1": "1750", + "orig_fid": "1750", + "fid_2": "2937", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1933", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07305064, + 35.45508751 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1933, + "fid_1": "1752", + "orig_fid": "1752", + "fid_2": "2938", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1934", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08107652, + 35.45522787 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1934, + "fid_1": "1759", + "orig_fid": "1759", + "fid_2": "2939", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1935", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00366949, + 35.45587048 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1935, + "fid_1": "1784", + "orig_fid": "1784", + "fid_2": "2940", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1936", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00550906, + 35.45643615 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1936, + "fid_1": "1795", + "orig_fid": "1795", + "fid_2": "2941", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1937", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00271952, + 35.45617782 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1937, + "fid_1": "1798", + "orig_fid": "1798", + "fid_2": "2942", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1938", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00805255, + 35.45650026 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1938, + "fid_1": "1799", + "orig_fid": "1799", + "fid_2": "2943", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1939", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09048357, + 35.45858754 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1939, + "fid_1": "1874", + "orig_fid": "1874", + "fid_2": "2944", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1940", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07083998, + 35.45577957 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1940, + "fid_1": "1782", + "orig_fid": "1782", + "fid_2": "2945", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1941", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07032219, + 35.45632434 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1941, + "fid_1": "1792", + "orig_fid": "1792", + "fid_2": "2946", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1942", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00256749, + 35.45708009 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1942, + "fid_1": "1821", + "orig_fid": "1821", + "fid_2": "2947", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1943", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00725922, + 35.45706794 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1943, + "fid_1": "1820", + "orig_fid": "1820", + "fid_2": "2948", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1944", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06725688, + 35.45638814 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1944, + "fid_1": "1801", + "orig_fid": "1801", + "fid_2": "2949", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1945", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0679385, + 35.4566646 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1945, + "fid_1": "1808", + "orig_fid": "1808", + "fid_2": "2950", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1946", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99986562, + 35.4573348 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1946, + "fid_1": "1829", + "orig_fid": "1829", + "fid_2": "2951", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1947", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00507879, + 35.45770984 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1947, + "fid_1": "1837", + "orig_fid": "1837", + "fid_2": "2952", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1948", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00719169, + 35.45773631 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1948, + "fid_1": "1838", + "orig_fid": "1838", + "fid_2": "2953", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1949", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09178079, + 35.45674407 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1949, + "fid_1": "1823", + "orig_fid": "1823", + "fid_2": "2954", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1950", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00461664, + 35.45817973 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1950, + "fid_1": "1855", + "orig_fid": "1855", + "fid_2": "2955", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1951", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00499994, + 35.45829239 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1951, + "fid_1": "1859", + "orig_fid": "1859", + "fid_2": "2956", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1952", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08082199, + 35.45784264 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1952, + "fid_1": "1840", + "orig_fid": "1840", + "fid_2": "2957", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1953", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00702986, + 35.45854733 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1953, + "fid_1": "1869", + "orig_fid": "1869", + "fid_2": "2958", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1954", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09454542, + 35.45788446 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1954, + "fid_1": "1846", + "orig_fid": "1846", + "fid_2": "2959", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1955", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07326492, + 35.45810745 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1955, + "fid_1": "1852", + "orig_fid": "1852", + "fid_2": "2960", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1956", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00772226, + 35.45872082 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1956, + "fid_1": "1877", + "orig_fid": "1877", + "fid_2": "2961", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1957", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0732768, + 35.45831726 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1957, + "fid_1": "1863", + "orig_fid": "1863", + "fid_2": "2962", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1958", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00820265, + 35.45889006 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1958, + "fid_1": "1881", + "orig_fid": "1881", + "fid_2": "2963", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1959", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07366818, + 35.45858305 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1959, + "fid_1": "1871", + "orig_fid": "1871", + "fid_2": "2964", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1960", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00666377, + 35.45917592 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1960, + "fid_1": "1888", + "orig_fid": "1888", + "fid_2": "2965", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1961", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09489489, + 35.45839082 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1961, + "fid_1": "1866", + "orig_fid": "1866", + "fid_2": "2966", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1962", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08058078, + 35.45860436 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1962, + "fid_1": "1872", + "orig_fid": "1872", + "fid_2": "2967", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1963", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09873399, + 35.45864297 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1963, + "fid_1": "1873", + "orig_fid": "1873", + "fid_2": "2968", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1964", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09573329, + 35.45873599 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1964, + "fid_1": "1878", + "orig_fid": "1878", + "fid_2": "2969", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1965", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07177341, + 35.45906997 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1965, + "fid_1": "1886", + "orig_fid": "1886", + "fid_2": "2970", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1966", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09461124, + 35.45894994 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1966, + "fid_1": "1883", + "orig_fid": "1883", + "fid_2": "2971", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1967", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09216672, + 35.45802442 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1967, + "fid_1": "1894", + "orig_fid": "1894", + "fid_2": "2973", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1968", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09526341, + 35.45944213 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1968, + "fid_1": "1893", + "orig_fid": "1893", + "fid_2": "2974", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1969", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08506684, + 35.45971375 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1969, + "fid_1": "1900", + "orig_fid": "1900", + "fid_2": "2975", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1970", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08507772, + 35.45987804 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1970, + "fid_1": "1902", + "orig_fid": "1902", + "fid_2": "2976", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1971", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01347684, + 35.46049433 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1971, + "fid_1": "1918", + "orig_fid": "1918", + "fid_2": "2977", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1972", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09608507, + 35.46029877 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1972, + "fid_1": "1913", + "orig_fid": "1913", + "fid_2": "2978", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1973", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07931162, + 35.46048497 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1973, + "fid_1": "1916", + "orig_fid": "1916", + "fid_2": "2979", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1974", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0795044, + 35.46050636 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1974, + "fid_1": "1917", + "orig_fid": "1917", + "fid_2": "2980", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1975", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06727676, + 35.46068624 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1975, + "fid_1": "1927", + "orig_fid": "1927", + "fid_2": "2981", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1976", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08705239, + 35.46049832 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1976, + "fid_1": "1919", + "orig_fid": "1919", + "fid_2": "2982", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1977", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07991397, + 35.46065623 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1977, + "fid_1": "1925", + "orig_fid": "1925", + "fid_2": "2983", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1978", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08799641, + 35.46055551 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1978, + "fid_1": "1922", + "orig_fid": "1922", + "fid_2": "2984", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1979", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06872336, + 35.46079738 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1979, + "fid_1": "1931", + "orig_fid": "1931", + "fid_2": "2985", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1980", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01245161, + 35.4613261 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1980, + "fid_1": "1948", + "orig_fid": "1948", + "fid_2": "2986", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1981", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07785503, + 35.46086742 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1981, + "fid_1": "1932", + "orig_fid": "1932", + "fid_2": "2987", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1982", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08460728, + 35.46084317 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1982, + "fid_1": "1930", + "orig_fid": "1930", + "fid_2": "2988", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1983", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0741174, + 35.46095315 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1983, + "fid_1": "1934", + "orig_fid": "1934", + "fid_2": "2989", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1984", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08523545, + 35.4609438 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1984, + "fid_1": "1933", + "orig_fid": "1933", + "fid_2": "2990", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1985", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08098434, + 35.46099306 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1985, + "fid_1": "1938", + "orig_fid": "1938", + "fid_2": "2991", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.91 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1986", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07686361, + 35.46115167 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1986, + "fid_1": "1940", + "orig_fid": "1940", + "fid_2": "2992", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1987", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07776784, + 35.46118685 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1987, + "fid_1": "1941", + "orig_fid": "1941", + "fid_2": "2993", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1988", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07614121, + 35.46124094 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1988, + "fid_1": "1944", + "orig_fid": "1944", + "fid_2": "2994", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1989", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08564009, + 35.46111179 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1989, + "fid_1": "1943", + "orig_fid": "1943", + "fid_2": "2995", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1990", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07657153, + 35.46145093 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1990, + "fid_1": "1949", + "orig_fid": "1949", + "fid_2": "2996", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1991", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08431942, + 35.46171958 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1991, + "fid_1": "1955", + "orig_fid": "1955", + "fid_2": "2997", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1992", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08587493, + 35.46167516 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1992, + "fid_1": "1957", + "orig_fid": "1957", + "fid_2": "2998", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1993", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07938973, + 35.4625026 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1993, + "fid_1": "1963", + "orig_fid": "1963", + "fid_2": "2999", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1994", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07440799, + 35.46282928 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1994, + "fid_1": "1966", + "orig_fid": "1966", + "fid_2": "3000", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1995", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08002666, + 35.46282054 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1995, + "fid_1": "1971", + "orig_fid": "1971", + "fid_2": "3001", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1996", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01421785, + 35.46356725 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1996, + "fid_1": "1988", + "orig_fid": "1988", + "fid_2": "3002", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1997", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07833236, + 35.4630163 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1997, + "fid_1": "1974", + "orig_fid": "1974", + "fid_2": "3003", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1998", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08507932, + 35.46310482 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1998, + "fid_1": "1981", + "orig_fid": "1981", + "fid_2": "3004", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.1999", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1022675, + 35.46399408 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 1999, + "fid_1": "1998", + "orig_fid": "1998", + "fid_2": "3006", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2000", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09810487, + 35.46416477 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2000, + "fid_1": "2003", + "orig_fid": "2003", + "fid_2": "3007", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2001", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08259966, + 35.4643416 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2001, + "fid_1": "2005", + "orig_fid": "2005", + "fid_2": "3008", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2002", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08630334, + 35.4643231 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2002, + "fid_1": "2006", + "orig_fid": "2006", + "fid_2": "3009", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2003", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07676445, + 35.4644736 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2003, + "fid_1": "2010", + "orig_fid": "2010", + "fid_2": "3010", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2004", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93411061, + 35.44513004 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2004, + "fid_1": "1712", + "orig_fid": "1712", + "fid_2": "3182", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2005", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96889353, + 35.47961285 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2005, + "fid_1": "2258", + "orig_fid": "2258", + "fid_2": "195", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2006", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98054903, + 35.46953085 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2006, + "fid_1": "2100", + "orig_fid": "2100", + "fid_2": "198", + "mc": "大王庄村东山环山路北", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2007", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94751811, + 35.47851555 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2007, + "fid_1": "2238", + "orig_fid": "2238", + "fid_2": "201", + "mc": "掌书院旧址", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 3.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2008", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95264047, + 35.48616203 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2008, + "fid_1": "2425", + "orig_fid": "2425", + "fid_2": "204", + "mc": "观景台北玻璃钢", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 2.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2009", + "geometry": { + "type": "Point", + "coordinates": [ + 117.948778, + 35.465298 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2009, + "fid_1": "2035", + "orig_fid": "2035", + "fid_2": "206", + "mc": "平山庙北塘坝", + "xsl": "5000", + "dz": "平山庙北", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "塘坝,森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2010", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98148198, + 35.4660627 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2010, + "fid_1": "2048", + "orig_fid": "2048", + "fid_2": "207", + "mc": "大田庄乡7号峨山子前蓄水池", + "xsl": "300", + "dz": "峨山峨山子前1号", + "bz": "规格:10*10*3/联系电话:15953982208", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地,蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2011", + "geometry": { + "type": "Point", + "coordinates": [ + 117.992504, + 35.468022 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2011, + "fid_1": "2082", + "orig_fid": "2082", + "fid_2": "225", + "mc": "小胡枝大口井蓄水池", + "xsl": "300", + "dz": "小胡枝", + "bz": "与影像不符", + "jczt": "建设中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2012", + "geometry": { + "type": "Point", + "coordinates": [ + 117.958844, + 35.481848 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2012, + "fid_1": "2301", + "orig_fid": "2301", + "fid_2": "226", + "mc": "大田庄乡16号五圣堂小寨沟蓄水池1", + "xsl": "300", + "dz": "五圣堂小寨沟沟2号", + "bz": "规格:10*10*3/联系电话:13685390332", + "jczt": "建设中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地,蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2013", + "geometry": { + "type": "Point", + "coordinates": [ + 117.964145, + 35.483507 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2013, + "fid_1": "2361", + "orig_fid": "2361", + "fid_2": "227", + "mc": "曲流涧蓄水池", + "xsl": "300", + "dz": "曲流涧", + "bz": "与影像不符", + "jczt": "建设中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2014", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96174869, + 35.470278 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2014, + "fid_1": "2111", + "orig_fid": "2111", + "fid_2": "230", + "mc": "大王庄西山28号蓄水池", + "xsl": "300", + "dz": "大王庄庄西1号", + "bz": "规格:10*10*3/联系电话:13563932821", + "jczt": "建设中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地,蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2015", + "geometry": { + "type": "Point", + "coordinates": [ + 117.950142, + 35.484154 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2015, + "fid_1": "2377", + "orig_fid": "2377", + "fid_2": "240", + "mc": "平山董付安家后蓄水池1", + "xsl": "200", + "dz": "平山董付安家后", + "bz": "与影像不符", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2016", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94939437, + 35.48173012 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2016, + "fid_1": "2299", + "orig_fid": "2299", + "fid_2": "241", + "mc": "大田庄乡43号横岭南平山藏德安家前蓄水池", + "xsl": "500", + "dz": "东安太横岭南7笋平山藏德安家前", + "bz": "规格:10*10*5/联系电话:15866932036", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地,蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2017", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95063518, + 35.47239037 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2017, + "fid_1": "2151", + "orig_fid": "2151", + "fid_2": "243", + "mc": "平山连心树南蓄水池", + "xsl": "200", + "dz": "平山连心树南", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2018", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94981088, + 35.46482761 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2018, + "fid_1": "2020", + "orig_fid": "2020", + "fid_2": "244", + "mc": "大田庄乡40号峨山南平山许中连家南蓄水池", + "xsl": "300", + "dz": "东安太峨山南4号平山许中连家南", + "bz": "规格:10*10*3/联系电话:15866932036", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地,蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2019", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96027951, + 35.48100112 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2019, + "fid_1": "2282", + "orig_fid": "2282", + "fid_2": "250", + "mc": "大田庄乡15号小寨沟蓄水池2", + "xsl": "300", + "dz": "五圣堂小寨沟沟1号", + "bz": "规格:10*10*3/联系电话:13685390332", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地,蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2020", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95176822, + 35.47772554 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2020, + "fid_1": "2231", + "orig_fid": "2231", + "fid_2": "261", + "mc": "平山跌死猫北100米国有塔山林场47蓄水池", + "xsl": "300", + "dz": "平山分区一林班15小班跌死猫北", + "bz": "规格:14.5*7.5*3.98/联系电话:17661625759", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2021", + "geometry": { + "type": "Point", + "coordinates": [ + 117.93990488, + 35.46512074 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2021, + "fid_1": "2030", + "orig_fid": "2030", + "fid_2": "263", + "mc": "国有塔山林场14号玻璃钢水窖", + "xsl": "0", + "dz": "平山分区三林班2小班虎脖", + "bz": "联系电话:17661625759", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2022", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94216601, + 35.46538664 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2022, + "fid_1": "2039", + "orig_fid": "2039", + "fid_2": "264", + "mc": "国有塔山林场15号玻璃钢水窖", + "xsl": "0", + "dz": "平山分区三林班6小班洪涝滩", + "bz": "与影像不符 联系电话:17661625759", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2023", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9516642, + 35.48057528 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2023, + "fid_1": "2277", + "orig_fid": "2277", + "fid_2": "265", + "mc": "平山饮马池北100米国有塔山林场48蓄水池", + "xsl": "200", + "dz": "平山分区一林班12小班饮马池北", + "bz": "规格:10.2*6.9*3.99/联系电话:17661625759", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2024", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95120982, + 35.47468754 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2024, + "fid_1": "2185", + "orig_fid": "2185", + "fid_2": "266", + "mc": "平山连心树北国有塔山林场46蓄水池", + "xsl": "200", + "dz": "平山分区一林班21小班连心树北", + "bz": "规格:10.2*6.9*3.99/联系电话:17661625759", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2025", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95315833, + 35.48197304 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2025, + "fid_1": "2302", + "orig_fid": "2302", + "fid_2": "267", + "mc": "平山董付安家东国有塔山林场49蓄水池", + "xsl": "200", + "dz": "平山分区一林班11小班董付安家东", + "bz": "规格:10.2*6.9*3.100/联系电话:17661625759", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2026", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95212739, + 35.48471027 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2026, + "fid_1": "2404", + "orig_fid": "2404", + "fid_2": "268", + "mc": "平山观景台国有塔山林场50蓄水池", + "xsl": "500", + "dz": "平山分区一林班16小班观景台", + "bz": "规格:12.3*12.3*4.48/联系电话:17661625759", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2027", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94906627, + 35.48496159 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2027, + "fid_1": "2410", + "orig_fid": "2410", + "fid_2": "270", + "mc": "国有塔山林场16号玻璃钢水窖", + "xsl": "0", + "dz": "平山分区一林班6小班朝阳洞路口", + "bz": "与影像不符 联系电话:17661625759", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2028", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95106397, + 35.48312908 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2028, + "fid_1": "2350", + "orig_fid": "2350", + "fid_2": "289", + "mc": "大田庄乡横岭前平山董付安家后42号蓄水池", + "xsl": "300", + "dz": "东安太横岭前平山董付安家后6号", + "bz": "规格:10*10*3/联系电话:15866932036", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2029", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94965028, + 35.48403156 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2029, + "fid_1": "2376", + "orig_fid": "2376", + "fid_2": "290", + "mc": "大田庄乡横岭前上蓄水池41号蓄水池", + "xsl": "300", + "dz": "东安太横岭前上5号", + "bz": "规格:10*10*3/联系电话:15866932036", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2030", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95559015, + 35.46765451 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2030, + "fid_1": "2077", + "orig_fid": "2077", + "fid_2": "298", + "mc": "大田庄乡29号燕窝石寨前三道沟蓄水池", + "xsl": "300", + "dz": "燕窝石三道沟1号", + "bz": "规格:10*10*3/联系电话:13468092867", + "jczt": "建设中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2031", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95116238, + 35.47456608 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2031, + "fid_1": "2181", + "orig_fid": "2181", + "fid_2": "299", + "mc": "国有塔山林场45号蓄水池", + "xsl": "0", + "dz": "平山分区一林班20小班连心树南", + "bz": "规格:10.2*6.9*3.98/联系电话:17661625759", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2032", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97564423, + 35.47436391 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2032, + "fid_1": "2234", + "orig_fid": "2234", + "fid_2": "317", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 2.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2033", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98032497, + 35.47951121 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2033, + "fid_1": "2344", + "orig_fid": "2344", + "fid_2": "318", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 1.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2034", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98640533, + 35.48400921 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2034, + "fid_1": "2385", + "orig_fid": "2385", + "fid_2": "320", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 0.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2035", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99330913, + 35.48469876 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2035, + "fid_1": "2394", + "orig_fid": "2394", + "fid_2": "321", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 2.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2036", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9960794, + 35.48565958 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2036, + "fid_1": "2426", + "orig_fid": "2426", + "fid_2": "321", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 2.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2037", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99843657, + 35.48597994 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2037, + "fid_1": "2422", + "orig_fid": "2422", + "fid_2": "324", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 3.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2038", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99957608, + 35.4856965 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2038, + "fid_1": "2427", + "orig_fid": "2427", + "fid_2": "324", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 4.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2039", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97149946, + 35.46552363 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2039, + "fid_1": "2050", + "orig_fid": "2050", + "fid_2": "374", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2040", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98403033, + 35.46630369 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2040, + "fid_1": "2057", + "orig_fid": "2057", + "fid_2": "375", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2041", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98421954, + 35.46668093 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2041, + "fid_1": "2063", + "orig_fid": "2063", + "fid_2": "376", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2042", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9682718, + 35.46747398 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2042, + "fid_1": "2080", + "orig_fid": "2080", + "fid_2": "377", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2043", + "geometry": { + "type": "Point", + "coordinates": [ + 117.967079, + 35.46858906 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2043, + "fid_1": "2092", + "orig_fid": "2092", + "fid_2": "378", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2044", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96602814, + 35.46896974 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2044, + "fid_1": "2095", + "orig_fid": "2095", + "fid_2": "379", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2045", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95970229, + 35.47169432 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2045, + "fid_1": "2145", + "orig_fid": "2145", + "fid_2": "380", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2046", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98424962, + 35.47498047 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2046, + "fid_1": "2198", + "orig_fid": "2198", + "fid_2": "381", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2047", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97980247, + 35.47519596 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2047, + "fid_1": "2210", + "orig_fid": "2210", + "fid_2": "382", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2048", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99338248, + 35.47711902 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2048, + "fid_1": "2229", + "orig_fid": "2229", + "fid_2": "383", + "mc": "大田庄五圣堂小胡支水库", + "xsl": "10000", + "dz": "小胡支村东", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2049", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99252807, + 35.4776808 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2049, + "fid_1": "2232", + "orig_fid": "2232", + "fid_2": "384", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2050", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98499948, + 35.4789076 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2050, + "fid_1": "2247", + "orig_fid": "2247", + "fid_2": "385", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2051", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98450828, + 35.47893181 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2051, + "fid_1": "2253", + "orig_fid": "2253", + "fid_2": "385", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2052", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97512542, + 35.47949125 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2052, + "fid_1": "2261", + "orig_fid": "2261", + "fid_2": "386", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2053", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96624365, + 35.48277408 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2053, + "fid_1": "2338", + "orig_fid": "2338", + "fid_2": "387", + "mc": "大寨沟3号塘坝", + "xsl": "4000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2054", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99511915, + 35.48283211 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2054, + "fid_1": "2351", + "orig_fid": "2351", + "fid_2": "388", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2055", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99664713, + 35.48361994 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2055, + "fid_1": "2366", + "orig_fid": "2366", + "fid_2": "391", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2056", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96338972, + 35.48437285 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2056, + "fid_1": "2383", + "orig_fid": "2383", + "fid_2": "392", + "mc": "大寨沟5号塘坝", + "xsl": "1000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2057", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99298614, + 35.48701371 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2057, + "fid_1": "2450", + "orig_fid": "2450", + "fid_2": "393", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2058", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99264111, + 35.48673275 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2058, + "fid_1": "2455", + "orig_fid": "2455", + "fid_2": "393", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2059", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97589063, + 35.48761418 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2059, + "fid_1": "2471", + "orig_fid": "2471", + "fid_2": "394", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2060", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97031313, + 35.44710843 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2060, + "fid_1": "2056", + "orig_fid": "2056", + "fid_2": "418", + "mc": "大田庄上冶水库", + "xsl": "2000000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2061", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97536675, + 35.46817305 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2061, + "fid_1": "2114", + "orig_fid": "2114", + "fid_2": "419", + "mc": "水库", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库水面", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 2.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2062", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97511101, + 35.47119453 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2062, + "fid_1": "2134", + "orig_fid": "2134", + "fid_2": "420", + "mc": "水库", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库水面", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 3.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2063", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96234673, + 35.48459398 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2063, + "fid_1": "2400", + "orig_fid": "2400", + "fid_2": "422", + "mc": "大寨沟4号塘坝", + "xsl": "1000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2064", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07586556, + 35.46644284 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2064, + "fid_1": "2058", + "orig_fid": "2058", + "fid_2": "429", + "mc": "陈家峪西山蓄水池", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 2.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2065", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07631253, + 35.4757846 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2065, + "fid_1": "2205", + "orig_fid": "2205", + "fid_2": "435", + "mc": "龙将水库北山", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2066", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0218551, + 35.47013765 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2066, + "fid_1": "2107", + "orig_fid": "2107", + "fid_2": "436", + "mc": "石牛岭大口井", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2067", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08470922, + 35.474853 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2067, + "fid_1": "2192", + "orig_fid": "2192", + "fid_2": "438", + "mc": "天蒙景区对面东山1混泥土蓄水池200方", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2068", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07911855, + 35.4770666 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2068, + "fid_1": "2222", + "orig_fid": "2222", + "fid_2": "439", + "mc": "谭家庄洋山上坝式蓄水池修复", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2069", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02068581, + 35.48292558 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2069, + "fid_1": "2340", + "orig_fid": "2340", + "fid_2": "441", + "mc": "南北光崖1", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 2.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2070", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02064668, + 35.48393232 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2070, + "fid_1": "2373", + "orig_fid": "2373", + "fid_2": "442", + "mc": "南北光崖2", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 1.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2071", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02060772, + 35.48396395 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2071, + "fid_1": "2374", + "orig_fid": "2374", + "fid_2": "442", + "mc": "南北光崖2", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 1.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2072", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0203469, + 35.4846799 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2072, + "fid_1": "2397", + "orig_fid": "2397", + "fid_2": "443", + "mc": "南北光崖3", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 4.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2073", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0203469, + 35.48472496 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2073, + "fid_1": "2398", + "orig_fid": "2398", + "fid_2": "443", + "mc": "南北光崖3", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 0.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2074", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03793212, + 35.47406244 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2074, + "fid_1": "2172", + "orig_fid": "2172", + "fid_2": "446", + "mc": "齐鲁地东", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 1.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2075", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03386545, + 35.47106342 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2075, + "fid_1": "2128", + "orig_fid": "2128", + "fid_2": "447", + "mc": "茶园", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 2.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2076", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03415088, + 35.46487451 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2076, + "fid_1": "2024", + "orig_fid": "2024", + "fid_2": "452", + "mc": "问道东蒙", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 2.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2077", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04453469, + 35.47435399 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2077, + "fid_1": "2178", + "orig_fid": "2178", + "fid_2": "455", + "mc": "望海楼东步游道1", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 2.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2078", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04509654, + 35.47454551 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2078, + "fid_1": "2180", + "orig_fid": "2180", + "fid_2": "456", + "mc": "望海楼东步游道2", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 3.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2079", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04819589, + 35.47515384 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2079, + "fid_1": "2194", + "orig_fid": "2194", + "fid_2": "457", + "mc": "望海楼东步游道3", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 1.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2080", + "geometry": { + "type": "Point", + "coordinates": [ + 118.020712, + 35.4702 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2080, + "fid_1": "2109", + "orig_fid": "2109", + "fid_2": "473", + "mc": "石牛岭蓄水池", + "xsl": "300", + "dz": "石牛岭", + "bz": "", + "jczt": "建设中", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2081", + "geometry": { + "type": "Point", + "coordinates": [ + 118.073362, + 35.464878 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2081, + "fid_1": "2025", + "orig_fid": "2025", + "fid_2": "479", + "mc": "陈家峪西山蓄水池", + "xsl": "300", + "dz": "陈家峪西山", + "bz": "", + "jczt": "规划中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2082", + "geometry": { + "type": "Point", + "coordinates": [ + 118.057248, + 35.464858 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2082, + "fid_1": "2023", + "orig_fid": "2023", + "fid_2": "483", + "mc": "大横梁上蓄水池", + "xsl": "5", + "dz": "谭家庄分区大横梁上", + "bz": "", + "jczt": "已建完", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2083", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02058493, + 35.48400479 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2083, + "fid_1": "2375", + "orig_fid": "2375", + "fid_2": "485", + "mc": "牛岚南北光崖2蓄水池", + "xsl": "5", + "dz": "牛岚南北光崖", + "bz": "", + "jczt": "已建完", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2084", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0203469, + 35.48463483 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2084, + "fid_1": "2391", + "orig_fid": "2391", + "fid_2": "486", + "mc": "牛岚南北光崖3蓄水池", + "xsl": "5", + "dz": "牛岚南北光崖", + "bz": "", + "jczt": "已建完", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2085", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0234895, + 35.46683338 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2085, + "fid_1": "2064", + "orig_fid": "2064", + "fid_2": "491", + "mc": "国有塔山林场16号蓄水池", + "xsl": "0", + "dz": "塔山分区霸王弓风门口", + "bz": "规格:10.5*7.3*4/联系电话:15588103080", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2086", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02067588, + 35.46818948 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2086, + "fid_1": "2087", + "orig_fid": "2087", + "fid_2": "492", + "mc": "国有塔山林场17号蓄水池", + "xsl": "0", + "dz": "塔山\n分区霸王弓石牛顶", + "bz": "规格:10.5*7.3*4/联系电话:15588103080", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2087", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02136033, + 35.48892889 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2087, + "fid_1": "2504", + "orig_fid": "2504", + "fid_2": "493", + "mc": "国有塔山林场40蓄水池", + "xsl": "200", + "dz": "牛岚分区五圣堂四座窑苗子地", + "bz": "规格:10*10*2/联系电话:17653965978", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2088", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06287982, + 35.4652779 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2088, + "fid_1": "2034", + "orig_fid": "2034", + "fid_2": "496", + "mc": "国有塔山林场27蓄水池", + "xsl": "200", + "dz": "谭家庄分区大横梁前", + "bz": "规格:10.2*6.9*3.68/联系电话:17653950557", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2089", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06115, + 35.466023 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2089, + "fid_1": "2046", + "orig_fid": "2046", + "fid_2": "500", + "mc": "国有塔山林场6号玻璃钢水窖", + "xsl": "0", + "dz": "谭家庄\n分区横梁大横梁下", + "bz": "联系电话:17653950557", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2090", + "geometry": { + "type": "Point", + "coordinates": [ + 118.056567, + 35.464767 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2090, + "fid_1": "2018", + "orig_fid": "2018", + "fid_2": "501", + "mc": "国有塔山林场7号玻璃钢水窖", + "xsl": "0", + "dz": "谭家庄分区大横梁中", + "bz": "联系电话:17653950557", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2091", + "geometry": { + "type": "Point", + "coordinates": [ + 118.020258, + 35.484529 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2091, + "fid_1": "2388", + "orig_fid": "2388", + "fid_2": "503", + "mc": "国有塔山林场10号玻璃钢水窖", + "xsl": "0", + "dz": "牛岚分区五圣堂老门峪东南50米", + "bz": "规格:5/联系电话:17653950696", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2092", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02085209, + 35.48343306 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2092, + "fid_1": "2359", + "orig_fid": "2359", + "fid_2": "505", + "mc": "国有塔山林场12号玻璃钢水窖", + "xsl": "0", + "dz": "牛岚分区五圣堂老门峪东南300米", + "bz": "规格:5/联系电话:17653950696", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2093", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05580448, + 35.46457142 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2093, + "fid_1": "2012", + "orig_fid": "2012", + "fid_2": "507", + "mc": "国有塔山林场8号玻璃钢水窖", + "xsl": "0", + "dz": "谭家庄\n分区横梁大横梁上", + "bz": "联系电话:17653950557", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2094", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06471691, + 35.46713648 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2094, + "fid_1": "2069", + "orig_fid": "2069", + "fid_2": "508", + "mc": "薛庄镇30号蓄水池", + "xsl": "300", + "dz": "谭家庄小横梁后300立方米不带盖蓄", + "bz": "联系电话:18263917258", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2095", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0838739, + 35.47736323 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2095, + "fid_1": "2224", + "orig_fid": "2224", + "fid_2": "514", + "mc": "薛庄镇23号蓄水池", + "xsl": "0", + "dz": "土山西苍山前300立方米不带盖蓄水", + "bz": "联系电话:15168969311", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2096", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08613381, + 35.47428952 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2096, + "fid_1": "2177", + "orig_fid": "2177", + "fid_2": "516", + "mc": "薛庄镇29号蓄水池", + "xsl": "0", + "dz": "谭家庄天蒙景区对面东山2混泥土蓄", + "bz": "联系电话:18263917258", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100米", + "xszt": "水量不足一米", + "appid": "27", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2097", + "geometry": { + "type": "Point", + "coordinates": [ + 118.053064, + 35.477585 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2097, + "fid_1": "2227", + "orig_fid": "2227", + "fid_2": "522", + "mc": "天蒙景区3号蓄水池", + "xsl": "0", + "dz": "渐入佳境西侧", + "bz": "规格:3×2×2/联系电话:15064901066", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2098", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05123, + 35.476428 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2098, + "fid_1": "2216", + "orig_fid": "2216", + "fid_2": "523", + "mc": "天蒙景区4号蓄水池", + "xsl": "0", + "dz": "西寨东侧", + "bz": "规格:4×3×3/联系电话:15064901066", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2099", + "geometry": { + "type": "Point", + "coordinates": [ + 118.050203, + 35.475745 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2099, + "fid_1": "2204", + "orig_fid": "2204", + "fid_2": "524", + "mc": "天蒙景区5号蓄水池", + "xsl": "0", + "dz": "西寨西侧", + "bz": "规格:4×3×3/联系电话:15064901066", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2100", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0429, + 35.4761 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2100, + "fid_1": "2212", + "orig_fid": "2212", + "fid_2": "525", + "mc": "天蒙景区8号蓄水池", + "xsl": "0", + "dz": "大峡谷", + "bz": "规格:14×5×2/联系电话:15064901066", + "jczt": "", + "sfhs": "县界外", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2101", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0445, + 35.4739 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2101, + "fid_1": "2169", + "orig_fid": "2169", + "fid_2": "526", + "mc": "天蒙景区9号蓄水池", + "xsl": "0", + "dz": "印月井", + "bz": "规格:10×6×2/联系电话:15064901066", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2102", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0328, + 35.4715 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2102, + "fid_1": "2136", + "orig_fid": "2136", + "fid_2": "527", + "mc": "天蒙景区10号蓄水池", + "xsl": "0", + "dz": "大旺环", + "bz": "规格:10×6×2/联系电话:15064901066", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2103", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04754061, + 35.47488165 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2103, + "fid_1": "2191", + "orig_fid": "2191", + "fid_2": "531", + "mc": "天蒙景区6号蓄水池", + "xsl": "0", + "dz": "耕象卫生间", + "bz": "规格:6×3×4/联系电话:15064901066", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2104", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04396943, + 35.46899922 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2104, + "fid_1": "2094", + "orig_fid": "2094", + "fid_2": "532", + "mc": "天蒙景区12号蓄水池", + "xsl": "0", + "dz": "小黑洞", + "bz": "规格:10×6×2/联系电话:15265122761", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2105", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0181011, + 35.47284241 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2105, + "fid_1": "2157", + "orig_fid": "2157", + "fid_2": "533", + "mc": "大田庄乡25号蓄水池", + "xsl": "0", + "dz": "韩家庄村岔子沟2号", + "bz": "规格:10*10*3/联系电话:15666833161", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2106", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04293837, + 35.46907123 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2106, + "fid_1": "2097", + "orig_fid": "2097", + "fid_2": "534", + "mc": "天蒙景区15号蓄水池", + "xsl": "0", + "dz": "引水上山1号水池", + "bz": "规格:20×15×2/联系电话:15265122761", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2107", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0404204, + 35.474836 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2107, + "fid_1": "2190", + "orig_fid": "2190", + "fid_2": "535", + "mc": "天蒙景区17号蓄水池", + "xsl": "0", + "dz": "引水上山3号水池", + "bz": "规格:20×15×2/联系电话:15064901066", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2108", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02065014, + 35.48380865 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2108, + "fid_1": "2368", + "orig_fid": "2368", + "fid_2": "536", + "mc": "国有塔山林场11号玻璃钢水窖", + "xsl": "0", + "dz": "牛岚分区五圣堂老门峪东南150米", + "bz": "规格:5/联系电话:17653950696", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2109", + "geometry": { + "type": "Point", + "coordinates": [ + 118.04192634, + 35.47054355 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2109, + "fid_1": "2113", + "orig_fid": "2113", + "fid_2": "539", + "mc": "天蒙景区16号蓄水池", + "xsl": "0", + "dz": "引水上山2号水池", + "bz": "规格:20×15×2/联系电话:15265122761", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2110", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0458134, + 35.474412 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2110, + "fid_1": "2179", + "orig_fid": "2179", + "fid_2": "543", + "mc": "天蒙景区7号蓄水池", + "xsl": "0", + "dz": "老儿石", + "bz": "规格:4×3×3/联系电话:15064901066", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2111", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00421022, + 35.47161539 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2111, + "fid_1": "2139", + "orig_fid": "2139", + "fid_2": "547", + "mc": "小胡枝东山水窖2", + "xsl": "150", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满水", + "appid": "23", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 4.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2112", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06954623, + 35.47570732 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2112, + "fid_1": "2207", + "orig_fid": "2207", + "fid_2": "551", + "mc": "天蒙园拦水坝", + "xsl": "20000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2113", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07432817, + 35.47379342 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2113, + "fid_1": "2168", + "orig_fid": "2168", + "fid_2": "579", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 1.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2114", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0804943, + 35.4722774 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2114, + "fid_1": "2153", + "orig_fid": "2153", + "fid_2": "581", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 0.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2115", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07213199, + 35.47370762 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2115, + "fid_1": "2184", + "orig_fid": "2184", + "fid_2": "582", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 4.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2116", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99919848, + 35.48413563 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2116, + "fid_1": "2384", + "orig_fid": "2384", + "fid_2": "651", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2117", + "geometry": { + "type": "Point", + "coordinates": [ + 118.03434268, + 35.46754334 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2117, + "fid_1": "2078", + "orig_fid": "2078", + "fid_2": "669", + "mc": "天蒙景区风门口塘坝", + "xsl": "10000", + "dz": "天桥下", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2118", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07758165, + 35.47293936 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2118, + "fid_1": "2165", + "orig_fid": "2165", + "fid_2": "670", + "mc": "天蒙景区龙江潭水库", + "xsl": "150000", + "dz": "天蒙景区东门", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 2.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2119", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06202151, + 35.47421183 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2119, + "fid_1": "2183", + "orig_fid": "2183", + "fid_2": "671", + "mc": "天蒙景区沂蒙山小调塘坝", + "xsl": "0", + "dz": "天蒙景区沂蒙山小调2", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2120", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06103639, + 35.47556374 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2120, + "fid_1": "2202", + "orig_fid": "2202", + "fid_2": "672", + "mc": "天蒙景区1号蓄水池", + "xsl": "0", + "dz": "登山广场", + "bz": "规格:4×3×3/联系电话:15265122761", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2121", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06121648, + 35.47590485 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2121, + "fid_1": "2209", + "orig_fid": "2209", + "fid_2": "673", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2122", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0816065, + 35.47973326 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2122, + "fid_1": "2268", + "orig_fid": "2268", + "fid_2": "674", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2123", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00703028, + 35.48064154 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2123, + "fid_1": "2289", + "orig_fid": "2289", + "fid_2": "675", + "mc": "大田庄石牛岭水库", + "xsl": "10770", + "dz": "石牛岭", + "bz": "砌石拱坝/坝高:19.5", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库大坝,水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 2.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2124", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00753172, + 35.48701566 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2124, + "fid_1": "2463", + "orig_fid": "2463", + "fid_2": "676", + "mc": "大田庄五圣堂四座窑水库", + "xsl": "20000", + "dz": "四座窑村西", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 3.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2125", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00255137, + 35.4889526 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2125, + "fid_1": "2507", + "orig_fid": "2507", + "fid_2": "677", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2126", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08254163, + 35.47741994 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2126, + "fid_1": "2226", + "orig_fid": "2226", + "fid_2": "700", + "mc": "薛庄镇35号蓄水池", + "xsl": "300", + "dz": "谭家庄北口前300立方不带盖蓄水池", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2127", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0213989, + 35.47022454 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2127, + "fid_1": "2110", + "orig_fid": "2110", + "fid_2": "716", + "mc": "大田庄乡14号蓄水池", + "xsl": "0", + "dz": "五圣堂小胡枝3号", + "bz": "规格:10*10*3/联系电话:13685390332", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2128", + "geometry": { + "type": "Point", + "coordinates": [ + 118.05698777, + 35.47865059 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2128, + "fid_1": "2242", + "orig_fid": "2242", + "fid_2": "717", + "mc": "天蒙景区2号蓄水池", + "xsl": "0", + "dz": "日光岩", + "bz": "规格:7×5×5/联系电话:15064901066", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2129", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96223087, + 35.4839249 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2129, + "fid_1": "2372", + "orig_fid": "2372", + "fid_2": "721", + "mc": "五圣堂小胡枝大寨前水窖", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "不可用", + "sfzcsb": "不支持", + "jlstjl": "100米", + "xszt": "无水", + "appid": "31", + "lx": "水窖,森林保育水源地", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 2.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2130", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02039649, + 35.46864125 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2130, + "fid_1": "2090", + "orig_fid": "2090", + "fid_2": "727", + "mc": "霸王弓山顶蓄水池", + "xsl": "300", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "与影像不符", + "kyzt": "不可用", + "sfzcsb": "不支持", + "jlstjl": "", + "xszt": "无水", + "appid": "6", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2131", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08876935, + 35.46858439 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2131, + "fid_1": "2091", + "orig_fid": "2091", + "fid_2": "771", + "mc": "香峪新建坝式蓄水池", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "有水", + "appid": "186", + "lx": "森林保育水源地,山地河沟", + "qufen": "山地河沟", + "creater_id": "1", + "is_del": 0, + "mag": 1.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2132", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11803348, + 35.46560527 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2132, + "fid_1": "2049", + "orig_fid": "2049", + "fid_2": "846", + "mc": "大古台北山水库", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "188", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2133", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96520735, + 35.47788974 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2133, + "fid_1": "2235", + "orig_fid": "2235", + "fid_2": "849", + "mc": "小寨沟3号塘坝", + "xsl": "700", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "279", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2134", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9646135, + 35.47829806 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2134, + "fid_1": "2237", + "orig_fid": "2237", + "fid_2": "874", + "mc": "小寨沟4号塘坝", + "xsl": "600", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "278", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2135", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95861603, + 35.46620724 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2135, + "fid_1": "2052", + "orig_fid": "2052", + "fid_2": "881", + "mc": "大田庄乡宁子沟31号蓄水池", + "xsl": "300", + "dz": "燕窝石寨前3号", + "bz": "规格:10*10*3/联系电话:13468092867", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "300", + "appid": "65", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2136", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96429455, + 35.46984309 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2136, + "fid_1": "2106", + "orig_fid": "2106", + "fid_2": "889", + "mc": "大王庄西水坝坑塘", + "xsl": "200", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "222", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2137", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96666471, + 35.47687978 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2137, + "fid_1": "2220", + "orig_fid": "2220", + "fid_2": "890", + "mc": "小寨沟1号2号塘坝", + "xsl": "200", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "半水", + "appid": "277", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2138", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96510617, + 35.48248517 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2138, + "fid_1": "2325", + "orig_fid": "2325", + "fid_2": "891", + "mc": "大寨沟检查站北塘坝", + "xsl": "1000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "281", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2139", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96303024, + 35.4788846 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2139, + "fid_1": "2246", + "orig_fid": "2246", + "fid_2": "895", + "mc": "小寨沟自建大口井", + "xsl": "80", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "280", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 0.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2140", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96557787, + 35.48318176 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2140, + "fid_1": "2354", + "orig_fid": "2354", + "fid_2": "897", + "mc": "大寨沟1号塘坝", + "xsl": "5000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "282", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2141", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0640348, + 35.46484956 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2141, + "fid_1": "2022", + "orig_fid": "2022", + "fid_2": "921", + "mc": "国有塔山林场26蓄水池", + "xsl": "300", + "dz": "谭家庄\n分区横梁护林点南", + "bz": "规格:10.2*6.9*3.68/联系电话:17653950557", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "满水", + "appid": "16", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2142", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00329772, + 35.47164001 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2142, + "fid_1": "2141", + "orig_fid": "2141", + "fid_2": "978", + "mc": "小胡枝东山水窖1", + "xsl": "50", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "100", + "xszt": "满水", + "appid": "88", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2143", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96707179, + 35.47665832 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2143, + "fid_1": "2219", + "orig_fid": "2219", + "fid_2": "985", + "mc": "小寨沟1号2号塘坝", + "xsl": "200", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "半水", + "appid": "276", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2144", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95265777, + 35.46950272 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2144, + "fid_1": "2099", + "orig_fid": "2099", + "fid_2": "991", + "mc": "", + "xsl": "50", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "500", + "xszt": "有水", + "appid": "", + "lx": "摸排", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 1.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2145", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9660165, + 35.4829155 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2145, + "fid_1": "2345", + "orig_fid": "2345", + "fid_2": "995", + "mc": "大寨沟2号塘坝", + "xsl": "5000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2146", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01473443, + 35.46522827 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2146, + "fid_1": "2033", + "orig_fid": "2033", + "fid_2": "996", + "mc": "霸王弓吴周路2号拦水坝", + "xsl": "300", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2147", + "geometry": { + "type": "Point", + "coordinates": [ + 118.06523123, + 35.47505687 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2147, + "fid_1": "2206", + "orig_fid": "2206", + "fid_2": "997", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 2.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2148", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9802917, + 35.48498282 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2148, + "fid_1": "2411", + "orig_fid": "2411", + "fid_2": "1212", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2149", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9951857, + 35.4881354 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2149, + "fid_1": "2485", + "orig_fid": "2485", + "fid_2": "1238", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2150", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10386615, + 35.46464478 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2150, + "fid_1": "2015", + "orig_fid": "2015", + "fid_2": "1499", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2151", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1169379, + 35.46434333 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2151, + "fid_1": "2017", + "orig_fid": "2017", + "fid_2": "1500", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2152", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1036386, + 35.46511509 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2152, + "fid_1": "2028", + "orig_fid": "2028", + "fid_2": "1501", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2153", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10655698, + 35.46504406 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2153, + "fid_1": "2029", + "orig_fid": "2029", + "fid_2": "1502", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2154", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10336242, + 35.46623972 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2154, + "fid_1": "2054", + "orig_fid": "2054", + "fid_2": "1503", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2155", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11310971, + 35.46617033 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2155, + "fid_1": "2053", + "orig_fid": "2053", + "fid_2": "1504", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2156", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11333891, + 35.46619811 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2156, + "fid_1": "2055", + "orig_fid": "2055", + "fid_2": "1505", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2157", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10270396, + 35.46668876 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2157, + "fid_1": "2062", + "orig_fid": "2062", + "fid_2": "1506", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2158", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11952152, + 35.46631849 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2158, + "fid_1": "2061", + "orig_fid": "2061", + "fid_2": "1507", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2159", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10250058, + 35.46708678 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2159, + "fid_1": "2068", + "orig_fid": "2068", + "fid_2": "1508", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2160", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1130661, + 35.46737826 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2160, + "fid_1": "2072", + "orig_fid": "2072", + "fid_2": "1509", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2161", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11508938, + 35.46759024 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2161, + "fid_1": "2075", + "orig_fid": "2075", + "fid_2": "1510", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2162", + "geometry": { + "type": "Point", + "coordinates": [ + 118.11378161, + 35.46776338 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2162, + "fid_1": "2079", + "orig_fid": "2079", + "fid_2": "1511", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2163", + "geometry": { + "type": "Point", + "coordinates": [ + 118.1079485, + 35.46661931 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2163, + "fid_1": "2084", + "orig_fid": "2084", + "fid_2": "1512", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2164", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97475508, + 35.48837477 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2164, + "fid_1": "2495", + "orig_fid": "2495", + "fid_2": "1590", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2165", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97730901, + 35.46463262 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2165, + "fid_1": "2014", + "orig_fid": "2014", + "fid_2": "1806", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2166", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9821542, + 35.46463574 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2166, + "fid_1": "2013", + "orig_fid": "2013", + "fid_2": "1807", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2167", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9801202, + 35.46469484 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2167, + "fid_1": "2016", + "orig_fid": "2016", + "fid_2": "1808", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2168", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98233479, + 35.4649115 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2168, + "fid_1": "2026", + "orig_fid": "2026", + "fid_2": "1809", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2169", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98197382, + 35.46486092 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2169, + "fid_1": "2031", + "orig_fid": "2031", + "fid_2": "1810", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2170", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98090726, + 35.46532964 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2170, + "fid_1": "2036", + "orig_fid": "2036", + "fid_2": "1811", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2171", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97912799, + 35.46538932 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2171, + "fid_1": "2038", + "orig_fid": "2038", + "fid_2": "1812", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2172", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98002514, + 35.46542692 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2172, + "fid_1": "2040", + "orig_fid": "2040", + "fid_2": "1813", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2173", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97867205, + 35.46570979 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2173, + "fid_1": "2042", + "orig_fid": "2042", + "fid_2": "1814", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2174", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98335024, + 35.46585025 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2174, + "fid_1": "2044", + "orig_fid": "2044", + "fid_2": "1815", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2175", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98352988, + 35.46599268 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2175, + "fid_1": "2045", + "orig_fid": "2045", + "fid_2": "1816", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2176", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97004333, + 35.46613864 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2176, + "fid_1": "2059", + "orig_fid": "2059", + "fid_2": "1817", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2177", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98233934, + 35.46647402 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2177, + "fid_1": "2060", + "orig_fid": "2060", + "fid_2": "1818", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2178", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98270584, + 35.46690391 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2178, + "fid_1": "2065", + "orig_fid": "2065", + "fid_2": "1819", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2179", + "geometry": { + "type": "Point", + "coordinates": [ + 117.969026, + 35.46703685 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2179, + "fid_1": "2071", + "orig_fid": "2071", + "fid_2": "1820", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2180", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97380476, + 35.46700812 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2180, + "fid_1": "2073", + "orig_fid": "2073", + "fid_2": "1821", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2181", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98154186, + 35.46750418 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2181, + "fid_1": "2074", + "orig_fid": "2074", + "fid_2": "1822", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2182", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98374488, + 35.46758626 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2182, + "fid_1": "2076", + "orig_fid": "2076", + "fid_2": "1823", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2183", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98095373, + 35.46783998 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2183, + "fid_1": "2081", + "orig_fid": "2081", + "fid_2": "1824", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2184", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98036501, + 35.46815564 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2184, + "fid_1": "2085", + "orig_fid": "2085", + "fid_2": "1825", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2185", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97221341, + 35.46829696 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2185, + "fid_1": "2088", + "orig_fid": "2088", + "fid_2": "1826", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2186", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97178422, + 35.46881874 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2186, + "fid_1": "2093", + "orig_fid": "2093", + "fid_2": "1827", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2187", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99565418, + 35.48823584 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2187, + "fid_1": "2492", + "orig_fid": "2492", + "fid_2": "1828", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2188", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96954104, + 35.46908918 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2188, + "fid_1": "2096", + "orig_fid": "2096", + "fid_2": "1829", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2189", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97921073, + 35.46938944 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2189, + "fid_1": "2098", + "orig_fid": "2098", + "fid_2": "1830", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2190", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9682553, + 35.46965076 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2190, + "fid_1": "2101", + "orig_fid": "2101", + "fid_2": "1831", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2191", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96973554, + 35.46972056 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2191, + "fid_1": "2103", + "orig_fid": "2103", + "fid_2": "1832", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2192", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96692975, + 35.46978138 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2192, + "fid_1": "2104", + "orig_fid": "2104", + "fid_2": "1833", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2193", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9674348, + 35.47015525 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2193, + "fid_1": "2108", + "orig_fid": "2108", + "fid_2": "1834", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2194", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96982069, + 35.47058673 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2194, + "fid_1": "2115", + "orig_fid": "2115", + "fid_2": "1835", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2195", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96724267, + 35.47060357 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2195, + "fid_1": "2117", + "orig_fid": "2117", + "fid_2": "1836", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2196", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9695462, + 35.4707285 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2196, + "fid_1": "2121", + "orig_fid": "2121", + "fid_2": "1837", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2197", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97039485, + 35.47032742 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2197, + "fid_1": "2122", + "orig_fid": "2122", + "fid_2": "1838", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2198", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96721632, + 35.47131272 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2198, + "fid_1": "2131", + "orig_fid": "2131", + "fid_2": "1839", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2199", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96978519, + 35.47131014 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2199, + "fid_1": "2132", + "orig_fid": "2132", + "fid_2": "1840", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2200", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9700124, + 35.47203709 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2200, + "fid_1": "2147", + "orig_fid": "2147", + "fid_2": "1841", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2201", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96985533, + 35.47248904 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2201, + "fid_1": "2154", + "orig_fid": "2154", + "fid_2": "1842", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2202", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97455728, + 35.47627896 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2202, + "fid_1": "2214", + "orig_fid": "2214", + "fid_2": "1843", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2203", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97265766, + 35.47214285 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2203, + "fid_1": "2158", + "orig_fid": "2158", + "fid_2": "1844", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2204", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99718722, + 35.47278093 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2204, + "fid_1": "2156", + "orig_fid": "2156", + "fid_2": "1845", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2205", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96765822, + 35.47321332 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2205, + "fid_1": "2159", + "orig_fid": "2159", + "fid_2": "1846", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2206", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96587876, + 35.47332154 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2206, + "fid_1": "2160", + "orig_fid": "2160", + "fid_2": "1847", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2207", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97119071, + 35.47364927 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2207, + "fid_1": "2161", + "orig_fid": "2161", + "fid_2": "1848", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2208", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97144569, + 35.47373828 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2208, + "fid_1": "2163", + "orig_fid": "2163", + "fid_2": "1849", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2209", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97345575, + 35.47373105 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2209, + "fid_1": "2162", + "orig_fid": "2162", + "fid_2": "1850", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2210", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97216653, + 35.47371629 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2210, + "fid_1": "2164", + "orig_fid": "2164", + "fid_2": "1851", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2211", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97049978, + 35.47366554 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2211, + "fid_1": "2170", + "orig_fid": "2170", + "fid_2": "1852", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2212", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97299319, + 35.47414688 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2212, + "fid_1": "2173", + "orig_fid": "2173", + "fid_2": "1853", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2213", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97285748, + 35.47420421 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2213, + "fid_1": "2175", + "orig_fid": "2175", + "fid_2": "1854", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2214", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97017055, + 35.4745948 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2214, + "fid_1": "2182", + "orig_fid": "2182", + "fid_2": "1855", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2215", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96983953, + 35.47477433 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2215, + "fid_1": "2186", + "orig_fid": "2186", + "fid_2": "1856", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2216", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97220609, + 35.47479622 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2216, + "fid_1": "2187", + "orig_fid": "2187", + "fid_2": "1857", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2217", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97488877, + 35.47484588 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2217, + "fid_1": "2189", + "orig_fid": "2189", + "fid_2": "1858", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2218", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96929876, + 35.47513544 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2218, + "fid_1": "2193", + "orig_fid": "2193", + "fid_2": "1859", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2219", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97030466, + 35.47526639 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2219, + "fid_1": "2196", + "orig_fid": "2196", + "fid_2": "1860", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2220", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98150669, + 35.47519954 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2220, + "fid_1": "2195", + "orig_fid": "2195", + "fid_2": "1861", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2221", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96216832, + 35.47549238 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2221, + "fid_1": "2201", + "orig_fid": "2201", + "fid_2": "1862", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2222", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98484747, + 35.4754547 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2222, + "fid_1": "2200", + "orig_fid": "2200", + "fid_2": "1863", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2223", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98342037, + 35.47554488 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2223, + "fid_1": "2203", + "orig_fid": "2203", + "fid_2": "1864", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2224", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97513864, + 35.47590755 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2224, + "fid_1": "2208", + "orig_fid": "2208", + "fid_2": "1865", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2225", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97498418, + 35.47603907 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2225, + "fid_1": "2211", + "orig_fid": "2211", + "fid_2": "1866", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2226", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96794686, + 35.4761174 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2226, + "fid_1": "2213", + "orig_fid": "2213", + "fid_2": "1867", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2227", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96774431, + 35.4763038 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2227, + "fid_1": "2215", + "orig_fid": "2215", + "fid_2": "1869", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2228", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97439875, + 35.47641863 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2228, + "fid_1": "2217", + "orig_fid": "2217", + "fid_2": "1870", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2229", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9854724, + 35.47666555 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2229, + "fid_1": "2218", + "orig_fid": "2218", + "fid_2": "1871", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2230", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97618923, + 35.47722093 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2230, + "fid_1": "2223", + "orig_fid": "2223", + "fid_2": "1872", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2231", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97049944, + 35.47763798 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2231, + "fid_1": "2228", + "orig_fid": "2228", + "fid_2": "1873", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2232", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9918757, + 35.4779079 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2232, + "fid_1": "2233", + "orig_fid": "2233", + "fid_2": "1874", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2233", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97516799, + 35.47797627 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2233, + "fid_1": "2239", + "orig_fid": "2239", + "fid_2": "1875", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2234", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97025464, + 35.47859674 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2234, + "fid_1": "2240", + "orig_fid": "2240", + "fid_2": "1876", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2235", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9705998, + 35.47882642 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2235, + "fid_1": "2245", + "orig_fid": "2245", + "fid_2": "1877", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2236", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96925928, + 35.47890251 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2236, + "fid_1": "2248", + "orig_fid": "2248", + "fid_2": "1878", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2237", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97569218, + 35.47893717 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2237, + "fid_1": "2250", + "orig_fid": "2250", + "fid_2": "1879", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2238", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99018643, + 35.47893978 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2238, + "fid_1": "2249", + "orig_fid": "2249", + "fid_2": "1880", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2239", + "geometry": { + "type": "Point", + "coordinates": [ + 117.987756, + 35.47895535 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2239, + "fid_1": "2251", + "orig_fid": "2251", + "fid_2": "1881", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2240", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97240132, + 35.48082712 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2240, + "fid_1": "2281", + "orig_fid": "2281", + "fid_2": "1882", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2241", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95968855, + 35.48119766 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2241, + "fid_1": "2285", + "orig_fid": "2285", + "fid_2": "1883", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.91 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2242", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98155218, + 35.47765758 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2242, + "fid_1": "2252", + "orig_fid": "2252", + "fid_2": "1884", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2243", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98683351, + 35.47904694 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2243, + "fid_1": "2254", + "orig_fid": "2254", + "fid_2": "1885", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2244", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98586212, + 35.47909503 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2244, + "fid_1": "2255", + "orig_fid": "2255", + "fid_2": "1886", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2245", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99652001, + 35.48164374 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2245, + "fid_1": "2294", + "orig_fid": "2294", + "fid_2": "1887", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2246", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96630748, + 35.48225069 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2246, + "fid_1": "2310", + "orig_fid": "2310", + "fid_2": "1888", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2247", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99728274, + 35.48205149 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2247, + "fid_1": "2303", + "orig_fid": "2303", + "fid_2": "1889", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2248", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98977953, + 35.47920743 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2248, + "fid_1": "2256", + "orig_fid": "2256", + "fid_2": "1891", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2249", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96934544, + 35.47958637 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2249, + "fid_1": "2257", + "orig_fid": "2257", + "fid_2": "1892", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2250", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96882029, + 35.47975764 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2250, + "fid_1": "2262", + "orig_fid": "2262", + "fid_2": "1893", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2251", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99246351, + 35.47964805 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2251, + "fid_1": "2259", + "orig_fid": "2259", + "fid_2": "1894", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2252", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96953042, + 35.47986094 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2252, + "fid_1": "2264", + "orig_fid": "2264", + "fid_2": "1895", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2253", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96855849, + 35.47997021 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2253, + "fid_1": "2265", + "orig_fid": "2265", + "fid_2": "1896", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2254", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99690543, + 35.47975753 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2254, + "fid_1": "2260", + "orig_fid": "2260", + "fid_2": "1897", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2255", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99684236, + 35.47998108 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2255, + "fid_1": "2266", + "orig_fid": "2266", + "fid_2": "1898", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2256", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96793985, + 35.48038091 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2256, + "fid_1": "2272", + "orig_fid": "2272", + "fid_2": "1899", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2257", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9682734, + 35.48037844 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2257, + "fid_1": "2273", + "orig_fid": "2273", + "fid_2": "1900", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2258", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99647591, + 35.48018994 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2258, + "fid_1": "2270", + "orig_fid": "2270", + "fid_2": "1901", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2259", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96824554, + 35.48051706 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2259, + "fid_1": "2275", + "orig_fid": "2275", + "fid_2": "1902", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2260", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96848394, + 35.48050679 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2260, + "fid_1": "2276", + "orig_fid": "2276", + "fid_2": "1903", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2261", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96828544, + 35.4806166 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2261, + "fid_1": "2278", + "orig_fid": "2278", + "fid_2": "1904", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2262", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99662046, + 35.48040651 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2262, + "fid_1": "2274", + "orig_fid": "2274", + "fid_2": "1905", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2263", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98637324, + 35.48104565 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2263, + "fid_1": "2283", + "orig_fid": "2283", + "fid_2": "1906", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2264", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99786895, + 35.48112506 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2264, + "fid_1": "2284", + "orig_fid": "2284", + "fid_2": "1907", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2265", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96969974, + 35.48136429 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2265, + "fid_1": "2288", + "orig_fid": "2288", + "fid_2": "1908", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2266", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96622124, + 35.48154093 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2266, + "fid_1": "2291", + "orig_fid": "2291", + "fid_2": "1909", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2267", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98018998, + 35.48156849 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2267, + "fid_1": "2297", + "orig_fid": "2297", + "fid_2": "1910", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2268", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9965122, + 35.48210994 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2268, + "fid_1": "2307", + "orig_fid": "2307", + "fid_2": "1911", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2269", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96653872, + 35.48232276 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2269, + "fid_1": "2315", + "orig_fid": "2315", + "fid_2": "1912", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2270", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96832333, + 35.48259391 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2270, + "fid_1": "2324", + "orig_fid": "2324", + "fid_2": "1913", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2271", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96665352, + 35.48259043 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2271, + "fid_1": "2326", + "orig_fid": "2326", + "fid_2": "1914", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.91 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2272", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96742572, + 35.48262993 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2272, + "fid_1": "2327", + "orig_fid": "2327", + "fid_2": "1915", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2273", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99348615, + 35.48243309 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2273, + "fid_1": "2319", + "orig_fid": "2319", + "fid_2": "1916", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2274", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99827362, + 35.48244021 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2274, + "fid_1": "2320", + "orig_fid": "2320", + "fid_2": "1917", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2275", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9971866, + 35.48252576 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2275, + "fid_1": "2322", + "orig_fid": "2322", + "fid_2": "1918", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2276", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97009052, + 35.48273746 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2276, + "fid_1": "2330", + "orig_fid": "2330", + "fid_2": "1920", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2277", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97058154, + 35.48278217 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2277, + "fid_1": "2336", + "orig_fid": "2336", + "fid_2": "1921", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2278", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9684599, + 35.48295292 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2278, + "fid_1": "2342", + "orig_fid": "2342", + "fid_2": "1922", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2279", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99794057, + 35.48271809 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2279, + "fid_1": "2329", + "orig_fid": "2329", + "fid_2": "1923", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2280", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99289528, + 35.48282425 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2280, + "fid_1": "2334", + "orig_fid": "2334", + "fid_2": "1924", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2281", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97128668, + 35.48302948 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2281, + "fid_1": "2347", + "orig_fid": "2347", + "fid_2": "1925", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2282", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99554431, + 35.4829003 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2282, + "fid_1": "2339", + "orig_fid": "2339", + "fid_2": "1926", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2283", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99181953, + 35.4830308 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2283, + "fid_1": "2346", + "orig_fid": "2346", + "fid_2": "1927", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2284", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99194174, + 35.48309184 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2284, + "fid_1": "2348", + "orig_fid": "2348", + "fid_2": "1928", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2285", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99040329, + 35.48313311 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2285, + "fid_1": "2349", + "orig_fid": "2349", + "fid_2": "1929", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2286", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97671453, + 35.48326675 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2286, + "fid_1": "2352", + "orig_fid": "2352", + "fid_2": "1930", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2287", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99057759, + 35.48326877 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2287, + "fid_1": "2353", + "orig_fid": "2353", + "fid_2": "1931", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2288", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99561099, + 35.48333744 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2288, + "fid_1": "2355", + "orig_fid": "2355", + "fid_2": "1932", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2289", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99067863, + 35.48341617 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2289, + "fid_1": "2358", + "orig_fid": "2358", + "fid_2": "1933", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2290", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9943684, + 35.48341094 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2290, + "fid_1": "2357", + "orig_fid": "2357", + "fid_2": "1934", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2291", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99107462, + 35.48354665 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2291, + "fid_1": "2363", + "orig_fid": "2363", + "fid_2": "1935", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2292", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97502733, + 35.48790855 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2292, + "fid_1": "2478", + "orig_fid": "2478", + "fid_2": "1936", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2293", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99765188, + 35.48350779 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2293, + "fid_1": "2362", + "orig_fid": "2362", + "fid_2": "1937", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2294", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99096444, + 35.48371023 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2294, + "fid_1": "2365", + "orig_fid": "2365", + "fid_2": "1939", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2295", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99109199, + 35.48373837 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2295, + "fid_1": "2367", + "orig_fid": "2367", + "fid_2": "1940", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2296", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96607126, + 35.48426924 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2296, + "fid_1": "2378", + "orig_fid": "2378", + "fid_2": "1941", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2297", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99096665, + 35.48442128 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2297, + "fid_1": "2381", + "orig_fid": "2381", + "fid_2": "1942", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2298", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99113602, + 35.48452567 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2298, + "fid_1": "2386", + "orig_fid": "2386", + "fid_2": "1943", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2299", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99145902, + 35.48464091 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2299, + "fid_1": "2392", + "orig_fid": "2392", + "fid_2": "1944", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2300", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99812495, + 35.48458738 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2300, + "fid_1": "2390", + "orig_fid": "2390", + "fid_2": "1945", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2301", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99695143, + 35.48462436 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2301, + "fid_1": "2393", + "orig_fid": "2393", + "fid_2": "1946", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2302", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99190388, + 35.48469862 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2302, + "fid_1": "2396", + "orig_fid": "2396", + "fid_2": "1947", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2303", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99298616, + 35.48472009 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2303, + "fid_1": "2402", + "orig_fid": "2402", + "fid_2": "1948", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2304", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99332413, + 35.48472517 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2304, + "fid_1": "2401", + "orig_fid": "2401", + "fid_2": "1949", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2305", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97466696, + 35.48581716 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2305, + "fid_1": "2420", + "orig_fid": "2420", + "fid_2": "1950", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2306", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99042522, + 35.48582625 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2306, + "fid_1": "2419", + "orig_fid": "2419", + "fid_2": "1951", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2307", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97362688, + 35.48633806 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2307, + "fid_1": "2430", + "orig_fid": "2430", + "fid_2": "1952", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2308", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99134653, + 35.48637272 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2308, + "fid_1": "2431", + "orig_fid": "2431", + "fid_2": "1953", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2309", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99165303, + 35.48650821 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2309, + "fid_1": "2434", + "orig_fid": "2434", + "fid_2": "1954", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2310", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98767743, + 35.4865275 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2310, + "fid_1": "2437", + "orig_fid": "2437", + "fid_2": "1955", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2311", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99155893, + 35.48656714 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2311, + "fid_1": "2435", + "orig_fid": "2435", + "fid_2": "1956", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2312", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99170862, + 35.48657206 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2312, + "fid_1": "2436", + "orig_fid": "2436", + "fid_2": "1957", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2313", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99193994, + 35.48659949 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2313, + "fid_1": "2438", + "orig_fid": "2438", + "fid_2": "1958", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2314", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97882938, + 35.48673892 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2314, + "fid_1": "2442", + "orig_fid": "2442", + "fid_2": "1959", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2315", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99182801, + 35.48669463 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2315, + "fid_1": "2440", + "orig_fid": "2440", + "fid_2": "1960", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2316", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98808026, + 35.48673606 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2316, + "fid_1": "2441", + "orig_fid": "2441", + "fid_2": "1961", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2317", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97527664, + 35.48684241 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2317, + "fid_1": "2448", + "orig_fid": "2448", + "fid_2": "1962", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2318", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98824707, + 35.48676412 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2318, + "fid_1": "2444", + "orig_fid": "2444", + "fid_2": "1963", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2319", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99180419, + 35.48677346 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2319, + "fid_1": "2445", + "orig_fid": "2445", + "fid_2": "1964", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2320", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99195095, + 35.48679234 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2320, + "fid_1": "2446", + "orig_fid": "2446", + "fid_2": "1965", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2321", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99206972, + 35.48684411 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2321, + "fid_1": "2447", + "orig_fid": "2447", + "fid_2": "1966", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2322", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97669533, + 35.48561649 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2322, + "fid_1": "2451", + "orig_fid": "2451", + "fid_2": "1967", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2323", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99057902, + 35.48691905 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2323, + "fid_1": "2449", + "orig_fid": "2449", + "fid_2": "1969", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2324", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97849123, + 35.48704711 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2324, + "fid_1": "2454", + "orig_fid": "2454", + "fid_2": "1970", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2325", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99301462, + 35.48702702 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2325, + "fid_1": "2452", + "orig_fid": "2452", + "fid_2": "1971", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2326", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97675733, + 35.48723915 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2326, + "fid_1": "2456", + "orig_fid": "2456", + "fid_2": "1972", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2327", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97655176, + 35.4872619 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2327, + "fid_1": "2457", + "orig_fid": "2457", + "fid_2": "1973", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2328", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97577326, + 35.48739956 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2328, + "fid_1": "2462", + "orig_fid": "2462", + "fid_2": "1974", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2329", + "geometry": { + "type": "Point", + "coordinates": [ + 117.995725, + 35.48729919 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2329, + "fid_1": "2459", + "orig_fid": "2459", + "fid_2": "1975", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2330", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97546083, + 35.48761517 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2330, + "fid_1": "2466", + "orig_fid": "2466", + "fid_2": "1976", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2331", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99354992, + 35.48750136 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2331, + "fid_1": "2464", + "orig_fid": "2464", + "fid_2": "1977", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2332", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97826057, + 35.48769216 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2332, + "fid_1": "2468", + "orig_fid": "2468", + "fid_2": "1978", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2333", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97557843, + 35.48776572 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2333, + "fid_1": "2473", + "orig_fid": "2473", + "fid_2": "1979", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2334", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99373904, + 35.48764071 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2334, + "fid_1": "2467", + "orig_fid": "2467", + "fid_2": "1981", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2335", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97055163, + 35.48791259 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2335, + "fid_1": "2476", + "orig_fid": "2476", + "fid_2": "1982", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2336", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97484561, + 35.48793066 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2336, + "fid_1": "2479", + "orig_fid": "2479", + "fid_2": "1983", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2337", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97488503, + 35.48805384 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2337, + "fid_1": "2483", + "orig_fid": "2483", + "fid_2": "1984", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2338", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9738181, + 35.48803162 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2338, + "fid_1": "2484", + "orig_fid": "2484", + "fid_2": "1985", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2339", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97471354, + 35.48812424 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2339, + "fid_1": "2486", + "orig_fid": "2486", + "fid_2": "1986", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2340", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97392626, + 35.4881716 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2340, + "fid_1": "2489", + "orig_fid": "2489", + "fid_2": "1987", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2341", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97678899, + 35.48817418 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2341, + "fid_1": "2490", + "orig_fid": "2490", + "fid_2": "1988", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2342", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97572653, + 35.48817698 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2342, + "fid_1": "2491", + "orig_fid": "2491", + "fid_2": "1989", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2343", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97732513, + 35.48824407 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2343, + "fid_1": "2493", + "orig_fid": "2493", + "fid_2": "1990", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2344", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99117154, + 35.48815927 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2344, + "fid_1": "2488", + "orig_fid": "2488", + "fid_2": "1991", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2345", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97491912, + 35.4886257 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2345, + "fid_1": "2499", + "orig_fid": "2499", + "fid_2": "1992", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2346", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97481595, + 35.48884093 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2346, + "fid_1": "2501", + "orig_fid": "2501", + "fid_2": "1993", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2347", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97884993, + 35.48898985 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2347, + "fid_1": "2505", + "orig_fid": "2505", + "fid_2": "1995", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2348", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97012667, + 35.48906947 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2348, + "fid_1": "2508", + "orig_fid": "2508", + "fid_2": "1996", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2349", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99657928, + 35.48875514 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2349, + "fid_1": "2503", + "orig_fid": "2503", + "fid_2": "1997", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2350", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99395225, + 35.48904499 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2350, + "fid_1": "2506", + "orig_fid": "2506", + "fid_2": "1998", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2351", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99307683, + 35.48921867 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2351, + "fid_1": "2512", + "orig_fid": "2512", + "fid_2": "1999", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2352", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99053343, + 35.48931664 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2352, + "fid_1": "2514", + "orig_fid": "2514", + "fid_2": "2000", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2353", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99729332, + 35.48926425 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2353, + "fid_1": "2513", + "orig_fid": "2513", + "fid_2": "2001", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2354", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97111645, + 35.48785725 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2354, + "fid_1": "2518", + "orig_fid": "2518", + "fid_2": "2004", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2355", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97801695, + 35.4895141 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2355, + "fid_1": "2517", + "orig_fid": "2517", + "fid_2": "2005", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2356", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08558137, + 35.47748045 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2356, + "fid_1": "2225", + "orig_fid": "2225", + "fid_2": "2972", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2357", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08731509, + 35.47065482 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2357, + "fid_1": "2118", + "orig_fid": "2118", + "fid_2": "3005", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2358", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07800055, + 35.46480035 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2358, + "fid_1": "2019", + "orig_fid": "2019", + "fid_2": "3011", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2359", + "geometry": { + "type": "Point", + "coordinates": [ + 118.085571, + 35.46493895 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2359, + "fid_1": "2027", + "orig_fid": "2027", + "fid_2": "3012", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2360", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09922363, + 35.46481632 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2360, + "fid_1": "2021", + "orig_fid": "2021", + "fid_2": "3013", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2361", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09923269, + 35.46522125 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2361, + "fid_1": "2032", + "orig_fid": "2032", + "fid_2": "3014", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2362", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08372283, + 35.46531178 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2362, + "fid_1": "2041", + "orig_fid": "2041", + "fid_2": "3015", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2363", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08608046, + 35.47132487 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2363, + "fid_1": "2133", + "orig_fid": "2133", + "fid_2": "3016", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2364", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09828526, + 35.46530419 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2364, + "fid_1": "2037", + "orig_fid": "2037", + "fid_2": "3017", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2365", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0836464, + 35.46574292 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2365, + "fid_1": "2043", + "orig_fid": "2043", + "fid_2": "3018", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2366", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07852165, + 35.4660487 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2366, + "fid_1": "2047", + "orig_fid": "2047", + "fid_2": "3019", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2367", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08362501, + 35.4661666 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2367, + "fid_1": "2051", + "orig_fid": "2051", + "fid_2": "3020", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2368", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08775436, + 35.46697486 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2368, + "fid_1": "2067", + "orig_fid": "2067", + "fid_2": "3021", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2369", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07798139, + 35.47174461 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2369, + "fid_1": "2146", + "orig_fid": "2146", + "fid_2": "3022", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2370", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08081512, + 35.46716128 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2370, + "fid_1": "2070", + "orig_fid": "2070", + "fid_2": "3023", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2371", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10224628, + 35.46698491 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2371, + "fid_1": "2066", + "orig_fid": "2066", + "fid_2": "3024", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2372", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07665672, + 35.46820675 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2372, + "fid_1": "2086", + "orig_fid": "2086", + "fid_2": "3025", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2373", + "geometry": { + "type": "Point", + "coordinates": [ + 118.10168319, + 35.46802044 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2373, + "fid_1": "2083", + "orig_fid": "2083", + "fid_2": "3026", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2374", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08711558, + 35.46718583 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2374, + "fid_1": "2089", + "orig_fid": "2089", + "fid_2": "3027", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2375", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09000411, + 35.46969926 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2375, + "fid_1": "2102", + "orig_fid": "2102", + "fid_2": "3028", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2376", + "geometry": { + "type": "Point", + "coordinates": [ + 118.09035826, + 35.4695628 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2376, + "fid_1": "2105", + "orig_fid": "2105", + "fid_2": "3029", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2377", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07962219, + 35.47047771 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2377, + "fid_1": "2112", + "orig_fid": "2112", + "fid_2": "3030", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2378", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07799007, + 35.47068309 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2378, + "fid_1": "2120", + "orig_fid": "2120", + "fid_2": "3031", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2379", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07711202, + 35.4707091 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2379, + "fid_1": "2123", + "orig_fid": "2123", + "fid_2": "3032", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2380", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08895932, + 35.47070327 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2380, + "fid_1": "2119", + "orig_fid": "2119", + "fid_2": "3033", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2381", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00536565, + 35.47148182 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2381, + "fid_1": "2135", + "orig_fid": "2135", + "fid_2": "3034", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2382", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08507579, + 35.47065189 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2382, + "fid_1": "2124", + "orig_fid": "2124", + "fid_2": "3035", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2383", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08671604, + 35.47080999 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2383, + "fid_1": "2125", + "orig_fid": "2125", + "fid_2": "3036", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2384", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08573183, + 35.47086069 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2384, + "fid_1": "2127", + "orig_fid": "2127", + "fid_2": "3037", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2385", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0922044, + 35.47078729 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2385, + "fid_1": "2126", + "orig_fid": "2126", + "fid_2": "3038", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2386", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08440506, + 35.47107764 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2386, + "fid_1": "2129", + "orig_fid": "2129", + "fid_2": "3039", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2387", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0772423, + 35.47123525 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2387, + "fid_1": "2130", + "orig_fid": "2130", + "fid_2": "3040", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2388", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00578818, + 35.47202231 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2388, + "fid_1": "2148", + "orig_fid": "2148", + "fid_2": "3041", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2389", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07712887, + 35.47158333 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2389, + "fid_1": "2137", + "orig_fid": "2137", + "fid_2": "3042", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2390", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00594296, + 35.47224281 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2390, + "fid_1": "2149", + "orig_fid": "2149", + "fid_2": "3043", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2391", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07737673, + 35.4716679 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2391, + "fid_1": "2140", + "orig_fid": "2140", + "fid_2": "3044", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2392", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08727172, + 35.47157581 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2392, + "fid_1": "2138", + "orig_fid": "2138", + "fid_2": "3045", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2393", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08743802, + 35.47172124 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2393, + "fid_1": "2142", + "orig_fid": "2142", + "fid_2": "3046", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2394", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08894625, + 35.47173424 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2394, + "fid_1": "2143", + "orig_fid": "2143", + "fid_2": "3047", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2395", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08469873, + 35.47179878 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2395, + "fid_1": "2144", + "orig_fid": "2144", + "fid_2": "3048", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2396", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07625302, + 35.47235048 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2396, + "fid_1": "2150", + "orig_fid": "2150", + "fid_2": "3049", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2397", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07676524, + 35.4723758 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2397, + "fid_1": "2152", + "orig_fid": "2152", + "fid_2": "3050", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2398", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07283091, + 35.47232097 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2398, + "fid_1": "2155", + "orig_fid": "2155", + "fid_2": "3051", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2399", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08541934, + 35.47378233 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2399, + "fid_1": "2166", + "orig_fid": "2166", + "fid_2": "3052", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2400", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08776619, + 35.47361354 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2400, + "fid_1": "2167", + "orig_fid": "2167", + "fid_2": "3053", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2401", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08588056, + 35.47361579 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2401, + "fid_1": "2171", + "orig_fid": "2171", + "fid_2": "3054", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2402", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08575811, + 35.47408791 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2402, + "fid_1": "2174", + "orig_fid": "2174", + "fid_2": "3055", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2403", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08549351, + 35.47424703 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2403, + "fid_1": "2176", + "orig_fid": "2176", + "fid_2": "3056", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2404", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08498697, + 35.47481818 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2404, + "fid_1": "2188", + "orig_fid": "2188", + "fid_2": "3057", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2405", + "geometry": { + "type": "Point", + "coordinates": [ + 118.07581619, + 35.47546661 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2405, + "fid_1": "2199", + "orig_fid": "2199", + "fid_2": "3058", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2406", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08266803, + 35.47713913 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2406, + "fid_1": "2221", + "orig_fid": "2221", + "fid_2": "3059", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2407", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01056419, + 35.47810208 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2407, + "fid_1": "2236", + "orig_fid": "2236", + "fid_2": "3060", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2408", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08284508, + 35.4776764 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2408, + "fid_1": "2230", + "orig_fid": "2230", + "fid_2": "3061", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2409", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08396654, + 35.47866558 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2409, + "fid_1": "2241", + "orig_fid": "2241", + "fid_2": "3062", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2410", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08445314, + 35.47871801 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2410, + "fid_1": "2243", + "orig_fid": "2243", + "fid_2": "3063", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2411", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08551068, + 35.47867774 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2411, + "fid_1": "2244", + "orig_fid": "2244", + "fid_2": "3064", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2412", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00592029, + 35.47984646 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2412, + "fid_1": "2263", + "orig_fid": "2263", + "fid_2": "3066", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2413", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00114977, + 35.48063937 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2413, + "fid_1": "2279", + "orig_fid": "2279", + "fid_2": "3067", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2414", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08653859, + 35.47998302 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2414, + "fid_1": "2267", + "orig_fid": "2267", + "fid_2": "3068", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2415", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00219222, + 35.48073451 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2415, + "fid_1": "2280", + "orig_fid": "2280", + "fid_2": "3069", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2416", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08698712, + 35.47997029 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2416, + "fid_1": "2269", + "orig_fid": "2269", + "fid_2": "3070", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2417", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08433993, + 35.48033788 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2417, + "fid_1": "2271", + "orig_fid": "2271", + "fid_2": "3071", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2418", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99927255, + 35.481309 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2418, + "fid_1": "2287", + "orig_fid": "2287", + "fid_2": "3072", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2419", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00219948, + 35.48129028 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2419, + "fid_1": "2286", + "orig_fid": "2286", + "fid_2": "3073", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2420", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99910263, + 35.48142326 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2420, + "fid_1": "2290", + "orig_fid": "2290", + "fid_2": "3074", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2421", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99932463, + 35.48168263 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2421, + "fid_1": "2296", + "orig_fid": "2296", + "fid_2": "3075", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2422", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00258498, + 35.48166198 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2422, + "fid_1": "2295", + "orig_fid": "2295", + "fid_2": "3076", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2423", + "geometry": { + "type": "Point", + "coordinates": [ + 117.999157, + 35.4818276 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2423, + "fid_1": "2300", + "orig_fid": "2300", + "fid_2": "3077", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2424", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00017936, + 35.48204734 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2424, + "fid_1": "2304", + "orig_fid": "2304", + "fid_2": "3078", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2425", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00375142, + 35.48206645 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2425, + "fid_1": "2305", + "orig_fid": "2305", + "fid_2": "3079", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2426", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00000714, + 35.48211375 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2426, + "fid_1": "2308", + "orig_fid": "2308", + "fid_2": "3080", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2427", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00364481, + 35.48209028 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2427, + "fid_1": "2306", + "orig_fid": "2306", + "fid_2": "3081", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2428", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00369997, + 35.48227415 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2428, + "fid_1": "2311", + "orig_fid": "2311", + "fid_2": "3082", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2429", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99855016, + 35.48230706 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2429, + "fid_1": "2313", + "orig_fid": "2313", + "fid_2": "3083", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2430", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00021645, + 35.48234148 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2430, + "fid_1": "2314", + "orig_fid": "2314", + "fid_2": "3084", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2431", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08918258, + 35.48158204 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2431, + "fid_1": "2292", + "orig_fid": "2292", + "fid_2": "3085", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2432", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08899413, + 35.48157492 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2432, + "fid_1": "2293", + "orig_fid": "2293", + "fid_2": "3086", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2433", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00667156, + 35.48157456 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2433, + "fid_1": "2312", + "orig_fid": "2312", + "fid_2": "3087", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2434", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99957626, + 35.48240056 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2434, + "fid_1": "2317", + "orig_fid": "2317", + "fid_2": "3088", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2435", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00038765, + 35.48239764 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2435, + "fid_1": "2316", + "orig_fid": "2316", + "fid_2": "3089", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2436", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9993262, + 35.48241217 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2436, + "fid_1": "2318", + "orig_fid": "2318", + "fid_2": "3090", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2437", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00002678, + 35.48249198 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2437, + "fid_1": "2321", + "orig_fid": "2321", + "fid_2": "3091", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2438", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08719783, + 35.48178002 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2438, + "fid_1": "2298", + "orig_fid": "2298", + "fid_2": "3092", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2439", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99976015, + 35.48253075 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2439, + "fid_1": "2323", + "orig_fid": "2323", + "fid_2": "3093", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2440", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99923367, + 35.48279441 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2440, + "fid_1": "2335", + "orig_fid": "2335", + "fid_2": "3094", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2441", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00527369, + 35.48265035 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2441, + "fid_1": "2331", + "orig_fid": "2331", + "fid_2": "3095", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2442", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00372486, + 35.48280481 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2442, + "fid_1": "2332", + "orig_fid": "2332", + "fid_2": "3096", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2443", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00424993, + 35.48278514 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2443, + "fid_1": "2333", + "orig_fid": "2333", + "fid_2": "3097", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2444", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08705528, + 35.48212554 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2444, + "fid_1": "2309", + "orig_fid": "2309", + "fid_2": "3098", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2445", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99890022, + 35.48287464 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2445, + "fid_1": "2337", + "orig_fid": "2337", + "fid_2": "3099", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2446", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99872996, + 35.48296747 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2446, + "fid_1": "2341", + "orig_fid": "2341", + "fid_2": "3100", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2447", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00070543, + 35.48299 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2447, + "fid_1": "2343", + "orig_fid": "2343", + "fid_2": "3101", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2448", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08953311, + 35.48152436 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2448, + "fid_1": "2328", + "orig_fid": "2328", + "fid_2": "3102", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2449", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00611966, + 35.48351025 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2449, + "fid_1": "2360", + "orig_fid": "2360", + "fid_2": "3103", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2450", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00103962, + 35.48369991 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2450, + "fid_1": "2364", + "orig_fid": "2364", + "fid_2": "3104", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2451", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00514432, + 35.4838821 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2451, + "fid_1": "2370", + "orig_fid": "2370", + "fid_2": "3105", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2452", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0851993, + 35.48324947 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2452, + "fid_1": "2356", + "orig_fid": "2356", + "fid_2": "3106", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2453", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00373968, + 35.48434782 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2453, + "fid_1": "2379", + "orig_fid": "2379", + "fid_2": "3107", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2454", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0036737, + 35.48440884 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2454, + "fid_1": "2380", + "orig_fid": "2380", + "fid_2": "3108", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2455", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00201564, + 35.48445227 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2455, + "fid_1": "2382", + "orig_fid": "2382", + "fid_2": "3109", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2456", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00371194, + 35.48452179 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2456, + "fid_1": "2387", + "orig_fid": "2387", + "fid_2": "3110", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2457", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08670335, + 35.48381431 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2457, + "fid_1": "2369", + "orig_fid": "2369", + "fid_2": "3111", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2458", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00191467, + 35.48457029 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2458, + "fid_1": "2389", + "orig_fid": "2389", + "fid_2": "3112", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2459", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08607313, + 35.48392655 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2459, + "fid_1": "2371", + "orig_fid": "2371", + "fid_2": "3113", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2460", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99862835, + 35.48468729 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2460, + "fid_1": "2399", + "orig_fid": "2399", + "fid_2": "3114", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2461", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00462059, + 35.48466474 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2461, + "fid_1": "2395", + "orig_fid": "2395", + "fid_2": "3115", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2462", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00174688, + 35.48480695 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2462, + "fid_1": "2405", + "orig_fid": "2405", + "fid_2": "3116", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2463", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00352831, + 35.48482529 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2463, + "fid_1": "2407", + "orig_fid": "2407", + "fid_2": "3117", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2464", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01300429, + 35.48477911 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2464, + "fid_1": "2406", + "orig_fid": "2406", + "fid_2": "3118", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2465", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00369363, + 35.48491144 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2465, + "fid_1": "2409", + "orig_fid": "2409", + "fid_2": "3119", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2466", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00386445, + 35.48525508 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2466, + "fid_1": "2414", + "orig_fid": "2414", + "fid_2": "3120", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2467", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00305387, + 35.48529877 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2467, + "fid_1": "2415", + "orig_fid": "2415", + "fid_2": "3121", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2468", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08145441, + 35.48474723 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2468, + "fid_1": "2403", + "orig_fid": "2403", + "fid_2": "3122", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2469", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00636525, + 35.48539856 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2469, + "fid_1": "2416", + "orig_fid": "2416", + "fid_2": "3123", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2470", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00332807, + 35.48547359 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2470, + "fid_1": "2417", + "orig_fid": "2417", + "fid_2": "3124", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2471", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08383436, + 35.48485089 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2471, + "fid_1": "2408", + "orig_fid": "2408", + "fid_2": "3125", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2472", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0062321, + 35.48563953 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2472, + "fid_1": "2418", + "orig_fid": "2418", + "fid_2": "3126", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2473", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0877662, + 35.48502041 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2473, + "fid_1": "2412", + "orig_fid": "2412", + "fid_2": "3127", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2474", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08633824, + 35.48507849 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2474, + "fid_1": "2413", + "orig_fid": "2413", + "fid_2": "3128", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2475", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00258076, + 35.48589596 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2475, + "fid_1": "2421", + "orig_fid": "2421", + "fid_2": "3129", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2476", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99845398, + 35.48600145 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2476, + "fid_1": "2423", + "orig_fid": "2423", + "fid_2": "3130", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2477", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00192277, + 35.48610077 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2477, + "fid_1": "2424", + "orig_fid": "2424", + "fid_2": "3131", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2478", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00135328, + 35.48621948 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2478, + "fid_1": "2428", + "orig_fid": "2428", + "fid_2": "3132", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2479", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00081754, + 35.48626926 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2479, + "fid_1": "2429", + "orig_fid": "2429", + "fid_2": "3133", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.91 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2480", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00591365, + 35.48642373 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2480, + "fid_1": "2432", + "orig_fid": "2432", + "fid_2": "3134", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2481", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00024266, + 35.48647927 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2481, + "fid_1": "2433", + "orig_fid": "2433", + "fid_2": "3135", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2482", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00983106, + 35.48662864 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2482, + "fid_1": "2439", + "orig_fid": "2439", + "fid_2": "3136", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2483", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01009157, + 35.48673782 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2483, + "fid_1": "2443", + "orig_fid": "2443", + "fid_2": "3137", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2484", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00303519, + 35.48704151 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2484, + "fid_1": "2453", + "orig_fid": "2453", + "fid_2": "3138", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2485", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99965039, + 35.48728718 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2485, + "fid_1": "2460", + "orig_fid": "2460", + "fid_2": "3139", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2486", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00219084, + 35.48727679 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2486, + "fid_1": "2458", + "orig_fid": "2458", + "fid_2": "3140", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2487", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00397376, + 35.48729668 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2487, + "fid_1": "2461", + "orig_fid": "2461", + "fid_2": "3141", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2488", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00899645, + 35.48763525 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2488, + "fid_1": "2465", + "orig_fid": "2465", + "fid_2": "3142", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2489", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00221354, + 35.48770641 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2489, + "fid_1": "2470", + "orig_fid": "2470", + "fid_2": "3143", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2490", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00392984, + 35.48771155 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2490, + "fid_1": "2469", + "orig_fid": "2469", + "fid_2": "3144", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2491", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00188436, + 35.48777488 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2491, + "fid_1": "2472", + "orig_fid": "2472", + "fid_2": "3145", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2492", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00160836, + 35.4877939 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2492, + "fid_1": "2474", + "orig_fid": "2474", + "fid_2": "3146", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2493", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00347147, + 35.48782063 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2493, + "fid_1": "2475", + "orig_fid": "2475", + "fid_2": "3147", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2494", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00196406, + 35.48790888 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2494, + "fid_1": "2477", + "orig_fid": "2477", + "fid_2": "3148", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2495", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00164537, + 35.4879325 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2495, + "fid_1": "2481", + "orig_fid": "2481", + "fid_2": "3149", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2496", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00236511, + 35.48797623 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2496, + "fid_1": "2482", + "orig_fid": "2482", + "fid_2": "3150", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2497", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00985692, + 35.48793295 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2497, + "fid_1": "2480", + "orig_fid": "2480", + "fid_2": "3151", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2498", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9992506, + 35.48814635 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2498, + "fid_1": "2487", + "orig_fid": "2487", + "fid_2": "3152", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2499", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00332, + 35.4882777 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2499, + "fid_1": "2494", + "orig_fid": "2494", + "fid_2": "3153", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2500", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00200066, + 35.48844137 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2500, + "fid_1": "2496", + "orig_fid": "2496", + "fid_2": "3154", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2501", + "geometry": { + "type": "Point", + "coordinates": [ + 118.002914, + 35.48846312 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2501, + "fid_1": "2497", + "orig_fid": "2497", + "fid_2": "3155", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2502", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01261003, + 35.48854808 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2502, + "fid_1": "2498", + "orig_fid": "2498", + "fid_2": "3156", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2503", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00201267, + 35.48881634 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2503, + "fid_1": "2500", + "orig_fid": "2500", + "fid_2": "3157", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2504", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00228152, + 35.48885845 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2504, + "fid_1": "2502", + "orig_fid": "2502", + "fid_2": "3158", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2505", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00182303, + 35.48907139 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2505, + "fid_1": "2509", + "orig_fid": "2509", + "fid_2": "3159", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2506", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99969056, + 35.48913186 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2506, + "fid_1": "2510", + "orig_fid": "2510", + "fid_2": "3160", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2507", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00127484, + 35.48916685 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2507, + "fid_1": "2511", + "orig_fid": "2511", + "fid_2": "3161", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2508", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01144582, + 35.4894742 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2508, + "fid_1": "2515", + "orig_fid": "2515", + "fid_2": "3162", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2509", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01168014, + 35.48950874 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2509, + "fid_1": "2516", + "orig_fid": "2516", + "fid_2": "3163", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2510", + "geometry": { + "type": "Point", + "coordinates": [ + 118.08371231, + 35.45913673 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2510, + "fid_1": "2116", + "orig_fid": "2116", + "fid_2": "3181", + "mc": "转山顶火红峪溢流坝", + "xsl": "1000", + "dz": "转山顶火红峪", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "塘坝,森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2511", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00091074, + 35.50158562 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2511, + "fid_1": "2668", + "orig_fid": "2668", + "fid_2": "172", + "mc": "大田庄乡19号蓄水池", + "xsl": "", + "dz": "小柳泉支锅沟1号", + "bz": "与影像不符 规格:10*10*3/联系电话:15165569584", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2512", + "geometry": { + "type": "Point", + "coordinates": [ + 118.003008, + 35.504015 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2512, + "fid_1": "2700", + "orig_fid": "2700", + "fid_2": "215", + "mc": "支锅沟罗圈崖蓄水池", + "xsl": "300", + "dz": "支锅沟", + "bz": "与影像不符", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2513", + "geometry": { + "type": "Point", + "coordinates": [ + 118.002408, + 35.503984 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2513, + "fid_1": "2698", + "orig_fid": "2698", + "fid_2": "216", + "mc": "水石帘蓄水池", + "xsl": "300", + "dz": "水石帘", + "bz": "与影像不符", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2514", + "geometry": { + "type": "Point", + "coordinates": [ + 117.989767, + 35.516228 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2514, + "fid_1": "2921", + "orig_fid": "2921", + "fid_2": "219", + "mc": "南来沟蓄水池", + "xsl": "300", + "dz": "南来沟", + "bz": "与影像不符", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2515", + "geometry": { + "type": "Point", + "coordinates": [ + 117.976061, + 35.496657 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2515, + "fid_1": "2604", + "orig_fid": "2604", + "fid_2": "229", + "mc": "卸石台蓄水池", + "xsl": "300", + "dz": "卸石台", + "bz": "与影像不符", + "jczt": "建设中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2516", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0051236, + 35.51059442 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2516, + "fid_1": "2847", + "orig_fid": "2847", + "fid_2": "236", + "mc": "牛岚转泉 国有塔山林场34蓄水池", + "xsl": "50", + "dz": "牛岚分区东大沟转泉子", + "bz": "规格:5*5*2/联系电话:17562910830", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地,蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2517", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00555098, + 35.51039116 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2517, + "fid_1": "2840", + "orig_fid": "2840", + "fid_2": "237", + "mc": "牛岚北大沟蓄水池", + "xsl": "5", + "dz": "牛岚北大沟", + "bz": "与影像不符", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2518", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94948406, + 35.50408474 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2518, + "fid_1": "2701", + "orig_fid": "2701", + "fid_2": "239", + "mc": "牛岚轿子沟2蓄水池", + "xsl": "50", + "dz": "牛岚轿子沟", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2519", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94974914, + 35.50433337 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2519, + "fid_1": "2704", + "orig_fid": "2704", + "fid_2": "251", + "mc": "国有塔山林场43蓄水池", + "xsl": "0", + "dz": "牛岚分区曲流涧老直沟", + "bz": "与影像不符 规格:5*5*2/联系电话:17653950709", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2520", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00794192, + 35.50995795 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2520, + "fid_1": "2833", + "orig_fid": "2833", + "fid_2": "254", + "mc": "牛岚葫芦锅底下国有塔山林场33蓄水池", + "xsl": "50", + "dz": "牛岚分区东大沟葫芦锅底下", + "bz": "规格:5*5*2/联系电话:17562910830", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2521", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95334393, + 35.50155609 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2521, + "fid_1": "2667", + "orig_fid": "2667", + "fid_2": "257", + "mc": "牛岚二姐腚国有塔山林场41蓄水池", + "xsl": "0", + "dz": "牛岚分区曲流涧二级顶", + "bz": "规格:10*10*2/联系电话:17653950578", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2522", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95070135, + 35.50318968 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2522, + "fid_1": "2685", + "orig_fid": "2685", + "fid_2": "258", + "mc": "牛岚轿子沟国有塔山林场42蓄水池", + "xsl": "100", + "dz": "牛岚分区轿子沟曲流涧黑山窝", + "bz": "规格:10*5*2/联系电话:17661625772", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2523", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95413553, + 35.50398818 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2523, + "fid_1": "2699", + "orig_fid": "2699", + "fid_2": "260", + "mc": "牛岚大天峪国有塔山林场44蓄水池", + "xsl": "200", + "dz": "牛岚分区曲流涧三连山西", + "bz": "规格:10*10*2/联系电话:17653950676", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2524", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01099846, + 35.50904905 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2524, + "fid_1": "2813", + "orig_fid": "2813", + "fid_2": "275", + "mc": "牛岚葫芦锅底上国有塔山林场32蓄水池", + "xsl": "100", + "dz": "牛岚分区东大沟葫芦锅底上", + "bz": "规格:10*5*2/联系电话:17562910830", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2525", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96381768, + 35.51843317 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2525, + "fid_1": "2966", + "orig_fid": "2966", + "fid_2": "282", + "mc": "大田庄乡24号蓄水池", + "xsl": "0", + "dz": "韩家庄村团山子1号", + "bz": "与影像不符 规格:10*10*3/联系电话:15666833161", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2526", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00564561, + 35.51044634 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2526, + "fid_1": "2843", + "orig_fid": "2843", + "fid_2": "301", + "mc": "国有塔山林场17号玻璃钢水窖", + "xsl": "0", + "dz": "牛岚分区东大沟转泉子", + "bz": "与影像不符 规格:5/联系电话:15964095655", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2527", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97906343, + 35.50166116 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2527, + "fid_1": "2670", + "orig_fid": "2670", + "fid_2": "303", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2528", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00293415, + 35.5022359 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2528, + "fid_1": "2677", + "orig_fid": "2677", + "fid_2": "304", + "mc": "大田庄乡20号蓄水池", + "xsl": "0", + "dz": "小柳泉水石帘2号", + "bz": "与影像不符 规格:10*10*3/联系电话:15165569584", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2529", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98165304, + 35.48672601 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2529, + "fid_1": "2530", + "orig_fid": "2530", + "fid_2": "328", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 4.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2530", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97969129, + 35.4901111 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2530, + "fid_1": "2537", + "orig_fid": "2537", + "fid_2": "329", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 1.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2531", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97928191, + 35.49296971 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2531, + "fid_1": "2588", + "orig_fid": "2588", + "fid_2": "332", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 3.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2532", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98193355, + 35.50260987 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2532, + "fid_1": "2768", + "orig_fid": "2768", + "fid_2": "333", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 4.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2533", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9826571, + 35.510094 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2533, + "fid_1": "2894", + "orig_fid": "2894", + "fid_2": "335", + "mc": "河流", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "河流水面", + "qufen": "河流", + "creater_id": "1", + "is_del": 0, + "mag": 2.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2534", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97072525, + 35.49862629 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2534, + "fid_1": "2634", + "orig_fid": "2634", + "fid_2": "389", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2535", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97479144, + 35.4972261 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2535, + "fid_1": "2613", + "orig_fid": "2613", + "fid_2": "390", + "mc": "卸石台", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2536", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98485845, + 35.49023166 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2536, + "fid_1": "2532", + "orig_fid": "2532", + "fid_2": "395", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2537", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97645091, + 35.4901722 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2537, + "fid_1": "2535", + "orig_fid": "2535", + "fid_2": "396", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2538", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98781373, + 35.49401465 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2538, + "fid_1": "2571", + "orig_fid": "2571", + "fid_2": "397", + "mc": "大田庄臧家庄水库2号", + "xsl": "10000", + "dz": "臧家庄村北", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 0.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2539", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97672729, + 35.51547894 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2539, + "fid_1": "2916", + "orig_fid": "2916", + "fid_2": "398", + "mc": "大田庄药峪水库", + "xsl": "3000", + "dz": "药峪", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 2.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2540", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99254467, + 35.49569381 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2540, + "fid_1": "2598", + "orig_fid": "2598", + "fid_2": "399", + "mc": "东老猫窝水库", + "xsl": "15000", + "dz": "臧家庄北", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 3.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2541", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98641463, + 35.50169195 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2541, + "fid_1": "2671", + "orig_fid": "2671", + "fid_2": "400", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2542", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98928138, + 35.50151377 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2542, + "fid_1": "2672", + "orig_fid": "2672", + "fid_2": "401", + "mc": "大田庄小柳泉水库", + "xsl": "5000", + "dz": "小柳泉", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 4.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2543", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98133293, + 35.5066083 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2543, + "fid_1": "2756", + "orig_fid": "2756", + "fid_2": "402", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2544", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97802978, + 35.50776487 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2544, + "fid_1": "2790", + "orig_fid": "2790", + "fid_2": "403", + "mc": "大田庄英山水库", + "xsl": "3000", + "dz": "英山", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2545", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99220534, + 35.5081529 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2545, + "fid_1": "2792", + "orig_fid": "2792", + "fid_2": "404", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2546", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98574672, + 35.50792873 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2546, + "fid_1": "2793", + "orig_fid": "2793", + "fid_2": "405", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2547", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99461986, + 35.50957168 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2547, + "fid_1": "2830", + "orig_fid": "2830", + "fid_2": "406", + "mc": "大柳泉东山塘坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2548", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98456034, + 35.51267423 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2548, + "fid_1": "2876", + "orig_fid": "2876", + "fid_2": "407", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2549", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9895296, + 35.51723797 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2549, + "fid_1": "2945", + "orig_fid": "2945", + "fid_2": "408", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 0.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2550", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97572022, + 35.51804612 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2550, + "fid_1": "2962", + "orig_fid": "2962", + "fid_2": "409", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2551", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98856699, + 35.5195386 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2551, + "fid_1": "2994", + "orig_fid": "2994", + "fid_2": "410", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2552", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9881861, + 35.51925307 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2552, + "fid_1": "2996", + "orig_fid": "2996", + "fid_2": "410", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2553", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98115276, + 35.52026726 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2553, + "fid_1": "3016", + "orig_fid": "3016", + "fid_2": "411", + "mc": "坑塘", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "坑塘水面", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2554", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99061231, + 35.50364604 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2554, + "fid_1": "2692", + "orig_fid": "2692", + "fid_2": "423", + "mc": "小柳泉自建水池2", + "xsl": "100", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "274", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 2.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2555", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96936906, + 35.51705374 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2555, + "fid_1": "2942", + "orig_fid": "2942", + "fid_2": "424", + "mc": "韩家庄南山自建水池2号", + "xsl": "150", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2556", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96798612, + 35.51798367 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2556, + "fid_1": "2954", + "orig_fid": "2954", + "fid_2": "425", + "mc": "韩家庄南山自建水池", + "xsl": "50", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 4.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2557", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02018013, + 35.49482486 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2557, + "fid_1": "2573", + "orig_fid": "2573", + "fid_2": "440", + "mc": "五圣堂黑光崖", + "xsl": "100", + "dz": "牛岚五圣堂黑光崖", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2558", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01851293, + 35.49550128 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2558, + "fid_1": "2579", + "orig_fid": "2579", + "fid_2": "444", + "mc": "喜鹊窝下", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2559", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01453917, + 35.49006139 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2559, + "fid_1": "2525", + "orig_fid": "2525", + "fid_2": "445", + "mc": "喜鹊窝上", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2560", + "geometry": { + "type": "Point", + "coordinates": [ + 118.018646, + 35.4951124 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2560, + "fid_1": "2577", + "orig_fid": "2577", + "fid_2": "487", + "mc": "牛岚喜鹊窝1蓄水池", + "xsl": "5", + "dz": "牛岚喜鹊窝", + "bz": "", + "jczt": "已建完", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2561", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0154325, + 35.49023842 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2561, + "fid_1": "2531", + "orig_fid": "2531", + "fid_2": "488", + "mc": "牛岚喜鹊窝3蓄水池", + "xsl": "5", + "dz": "牛岚喜鹊窝", + "bz": "", + "jczt": "已建完", + "sfhs": "与影像不符", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2562", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99271372, + 35.51588851 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2562, + "fid_1": "2919", + "orig_fid": "2919", + "fid_2": "880", + "mc": "大田庄乡南来沟23号蓄水池", + "xsl": "300", + "dz": "黄泥沟南赖沟3号", + "bz": "渗漏,规格:10*10*3/联系电话:18305391116", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "半水", + "appid": "266", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2563", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97397149, + 35.49765991 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2563, + "fid_1": "2618", + "orig_fid": "2618", + "fid_2": "882", + "mc": "大田庄乡卸石台18号蓄水池", + "xsl": "300", + "dz": "臧家庄顺河庄1号", + "bz": "规格:10*10*3/联系电话:139544905333", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "600", + "xszt": "300", + "appid": "30", + "lx": "蓄水池-山水项目(统一编号),蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2564", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00278324, + 35.50199261 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2564, + "fid_1": "2675", + "orig_fid": "2675", + "fid_2": "883", + "mc": "老猫窝水石帘新增蓄水池", + "xsl": "300", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "30", + "xszt": "半水", + "appid": "66", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2565", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99066763, + 35.51154843 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2565, + "fid_1": "2862", + "orig_fid": "2862", + "fid_2": "884", + "mc": "牛岚东山自建水池6", + "xsl": "60", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "269", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 0.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2566", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98993315, + 35.50315228 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2566, + "fid_1": "2684", + "orig_fid": "2684", + "fid_2": "885", + "mc": "小柳泉自建水池1", + "xsl": "100", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "272", + "lx": "实地核查", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2567", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99000175, + 35.50395445 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2567, + "fid_1": "2695", + "orig_fid": "2695", + "fid_2": "886", + "mc": "小柳泉自建水池3", + "xsl": "180", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "273", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 0.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2568", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99085337, + 35.50379168 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2568, + "fid_1": "2694", + "orig_fid": "2694", + "fid_2": "887", + "mc": "小柳泉自建水池4", + "xsl": "150", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "275", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 2.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2569", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99324264, + 35.51057553 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2569, + "fid_1": "2846", + "orig_fid": "2846", + "fid_2": "898", + "mc": "大柳泉北山自建水池", + "xsl": "200", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "260", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 0.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2570", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99102457, + 35.51188594 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2570, + "fid_1": "2868", + "orig_fid": "2868", + "fid_2": "899", + "mc": "牛岚东山自建水池5", + "xsl": "150", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "半水", + "appid": "268", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 0.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2571", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99167516, + 35.51282702 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2571, + "fid_1": "2874", + "orig_fid": "2874", + "fid_2": "900", + "mc": "牛岚东山自建水池1", + "xsl": "150", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "263", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 2.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2572", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99360639, + 35.51323933 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2572, + "fid_1": "2881", + "orig_fid": "2881", + "fid_2": "901", + "mc": "牛岚东山自建水池3", + "xsl": "100", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "261", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 0.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2573", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99374953, + 35.51366936 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2573, + "fid_1": "2887", + "orig_fid": "2887", + "fid_2": "902", + "mc": "牛岚东山自建水池2", + "xsl": "80", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "262", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 3.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2574", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99282306, + 35.51501621 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2574, + "fid_1": "2904", + "orig_fid": "2904", + "fid_2": "903", + "mc": "牛岚东山自建水池4", + "xsl": "80", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "264", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 0.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2575", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99230164, + 35.51541955 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2575, + "fid_1": "2912", + "orig_fid": "2912", + "fid_2": "904", + "mc": "牛岚东山拦水坝", + "xsl": "1000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "265", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 4.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2576", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99134498, + 35.51667065 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2576, + "fid_1": "2932", + "orig_fid": "2932", + "fid_2": "905", + "mc": "牛岚东山自建水池5", + "xsl": "50", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "267", + "lx": "水窖", + "qufen": "水窖", + "creater_id": "1", + "is_del": 0, + "mag": 2.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2577", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00024111, + 35.50089817 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2577, + "fid_1": "2665", + "orig_fid": "2665", + "fid_2": "908", + "mc": "老猫窝新增蓄水池", + "xsl": "300", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "120", + "xszt": "满水", + "appid": "67", + "lx": "森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2578", + "geometry": { + "type": "Point", + "coordinates": [ + 118.02310511, + 35.50773727 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2578, + "fid_1": "2781", + "orig_fid": "2781", + "fid_2": "950", + "mc": "哈哈水糖坝", + "xsl": "5000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "县界外", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "有水", + "appid": "230", + "lx": "实地核查", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2579", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99406509, + 35.50817285 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2579, + "fid_1": "2791", + "orig_fid": "2791", + "fid_2": "1528", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2580", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97312979, + 35.51970616 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2580, + "fid_1": "2998", + "orig_fid": "2998", + "fid_2": "1529", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2581", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99126723, + 35.50547876 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2581, + "fid_1": "2717", + "orig_fid": "2717", + "fid_2": "1794", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2582", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9887766, + 35.49167484 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2582, + "fid_1": "2551", + "orig_fid": "2551", + "fid_2": "1868", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2583", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97487268, + 35.49692523 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2583, + "fid_1": "2612", + "orig_fid": "2612", + "fid_2": "1890", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2584", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98951958, + 35.50618145 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2584, + "fid_1": "2738", + "orig_fid": "2738", + "fid_2": "1919", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2585", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98852346, + 35.50845524 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2585, + "fid_1": "2799", + "orig_fid": "2799", + "fid_2": "1938", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2586", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9740253, + 35.49588146 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2586, + "fid_1": "2595", + "orig_fid": "2595", + "fid_2": "1968", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2587", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99759077, + 35.48971079 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2587, + "fid_1": "2523", + "orig_fid": "2523", + "fid_2": "1980", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2588", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99012244, + 35.49380454 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2588, + "fid_1": "2566", + "orig_fid": "2566", + "fid_2": "1994", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2589", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98702971, + 35.49170182 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2589, + "fid_1": "2550", + "orig_fid": "2550", + "fid_2": "2002", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2590", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99322052, + 35.49688931 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2590, + "fid_1": "2609", + "orig_fid": "2609", + "fid_2": "2003", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2591", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97861076, + 35.48968241 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2591, + "fid_1": "2522", + "orig_fid": "2522", + "fid_2": "2006", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2592", + "geometry": { + "type": "Point", + "coordinates": [ + 117.991853, + 35.4896117 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2592, + "fid_1": "2520", + "orig_fid": "2520", + "fid_2": "2007", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2593", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9873672, + 35.49553823 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2593, + "fid_1": "2582", + "orig_fid": "2582", + "fid_2": "2008", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2594", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98085544, + 35.48985803 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2594, + "fid_1": "2524", + "orig_fid": "2524", + "fid_2": "2009", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2595", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96915064, + 35.49019474 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2595, + "fid_1": "2529", + "orig_fid": "2529", + "fid_2": "2010", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2596", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99436434, + 35.49008193 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2596, + "fid_1": "2526", + "orig_fid": "2526", + "fid_2": "2011", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2597", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9793929, + 35.50607429 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2597, + "fid_1": "2733", + "orig_fid": "2733", + "fid_2": "2012", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2598", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9689403, + 35.49039702 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2598, + "fid_1": "2533", + "orig_fid": "2533", + "fid_2": "2013", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2599", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9831245, + 35.49011444 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2599, + "fid_1": "2534", + "orig_fid": "2534", + "fid_2": "2014", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2600", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99115138, + 35.49061222 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2600, + "fid_1": "2536", + "orig_fid": "2536", + "fid_2": "2015", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2601", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97721218, + 35.49079569 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2601, + "fid_1": "2539", + "orig_fid": "2539", + "fid_2": "2016", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2602", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96778626, + 35.49088382 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2602, + "fid_1": "2541", + "orig_fid": "2541", + "fid_2": "2017", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2603", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9679479, + 35.49102982 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2603, + "fid_1": "2543", + "orig_fid": "2543", + "fid_2": "2018", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2604", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99083686, + 35.49129132 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2604, + "fid_1": "2544", + "orig_fid": "2544", + "fid_2": "2019", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2605", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99060216, + 35.49130861 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2605, + "fid_1": "2545", + "orig_fid": "2545", + "fid_2": "2020", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2606", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98851377, + 35.49148051 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2606, + "fid_1": "2546", + "orig_fid": "2546", + "fid_2": "2021", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2607", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98701391, + 35.49157272 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2607, + "fid_1": "2547", + "orig_fid": "2547", + "fid_2": "2022", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2608", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98695392, + 35.49165337 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2608, + "fid_1": "2548", + "orig_fid": "2548", + "fid_2": "2023", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2609", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98724306, + 35.49169032 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2609, + "fid_1": "2549", + "orig_fid": "2549", + "fid_2": "2024", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2610", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98962146, + 35.49174775 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2610, + "fid_1": "2552", + "orig_fid": "2552", + "fid_2": "2025", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2611", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98700675, + 35.49182847 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2611, + "fid_1": "2553", + "orig_fid": "2553", + "fid_2": "2026", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2612", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97045383, + 35.51523823 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2612, + "fid_1": "2907", + "orig_fid": "2907", + "fid_2": "2027", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2613", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98751549, + 35.49194046 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2613, + "fid_1": "2555", + "orig_fid": "2555", + "fid_2": "2028", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2614", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98993467, + 35.4919272 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2614, + "fid_1": "2554", + "orig_fid": "2554", + "fid_2": "2029", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2615", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98742181, + 35.49199783 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2615, + "fid_1": "2556", + "orig_fid": "2556", + "fid_2": "2030", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2616", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98175364, + 35.49254091 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2616, + "fid_1": "2558", + "orig_fid": "2558", + "fid_2": "2031", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2617", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99081897, + 35.4926676 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2617, + "fid_1": "2559", + "orig_fid": "2559", + "fid_2": "2032", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2618", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98199721, + 35.49279909 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2618, + "fid_1": "2561", + "orig_fid": "2561", + "fid_2": "2033", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.91 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2619", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99828649, + 35.49270911 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2619, + "fid_1": "2560", + "orig_fid": "2560", + "fid_2": "2034", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2620", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99021134, + 35.49311573 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2620, + "fid_1": "2562", + "orig_fid": "2562", + "fid_2": "2035", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2621", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98994593, + 35.49354843 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2621, + "fid_1": "2564", + "orig_fid": "2564", + "fid_2": "2036", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2622", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98645272, + 35.51536639 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2622, + "fid_1": "2909", + "orig_fid": "2909", + "fid_2": "2037", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2623", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98579515, + 35.49258024 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2623, + "fid_1": "2565", + "orig_fid": "2565", + "fid_2": "2038", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2624", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96413235, + 35.49394352 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2624, + "fid_1": "2568", + "orig_fid": "2568", + "fid_2": "2039", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2625", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97738237, + 35.49413154 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2625, + "fid_1": "2569", + "orig_fid": "2569", + "fid_2": "2040", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2626", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97961973, + 35.49420108 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2626, + "fid_1": "2570", + "orig_fid": "2570", + "fid_2": "2041", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2627", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98073498, + 35.49475847 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2627, + "fid_1": "2572", + "orig_fid": "2572", + "fid_2": "2042", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2628", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97534583, + 35.49499267 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2628, + "fid_1": "2574", + "orig_fid": "2574", + "fid_2": "2043", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2629", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97851529, + 35.49413535 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2629, + "fid_1": "2575", + "orig_fid": "2575", + "fid_2": "2044", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2630", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97678123, + 35.49505857 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2630, + "fid_1": "2576", + "orig_fid": "2576", + "fid_2": "2045", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2631", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97536369, + 35.49552076 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2631, + "fid_1": "2581", + "orig_fid": "2581", + "fid_2": "2046", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2632", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99059938, + 35.49542454 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2632, + "fid_1": "2578", + "orig_fid": "2578", + "fid_2": "2047", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2633", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9896327, + 35.49551079 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2633, + "fid_1": "2580", + "orig_fid": "2580", + "fid_2": "2048", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2634", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97375592, + 35.49567662 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2634, + "fid_1": "2587", + "orig_fid": "2587", + "fid_2": "2049", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2635", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98883581, + 35.49558811 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2635, + "fid_1": "2583", + "orig_fid": "2583", + "fid_2": "2050", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2636", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9877072, + 35.49561439 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2636, + "fid_1": "2584", + "orig_fid": "2584", + "fid_2": "2051", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2637", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98901611, + 35.49563249 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2637, + "fid_1": "2585", + "orig_fid": "2585", + "fid_2": "2052", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2638", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98979946, + 35.49567399 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2638, + "fid_1": "2586", + "orig_fid": "2586", + "fid_2": "2053", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2639", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97841144, + 35.49578202 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2639, + "fid_1": "2589", + "orig_fid": "2589", + "fid_2": "2054", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2640", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97703938, + 35.49579404 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2640, + "fid_1": "2590", + "orig_fid": "2590", + "fid_2": "2055", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2641", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97354805, + 35.49585008 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2641, + "fid_1": "2593", + "orig_fid": "2593", + "fid_2": "2056", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2642", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97752959, + 35.49578644 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2642, + "fid_1": "2592", + "orig_fid": "2592", + "fid_2": "2057", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2643", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98847382, + 35.51538533 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2643, + "fid_1": "2910", + "orig_fid": "2910", + "fid_2": "2058", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2644", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98946346, + 35.495817 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2644, + "fid_1": "2591", + "orig_fid": "2591", + "fid_2": "2059", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2645", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97384799, + 35.49596718 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2645, + "fid_1": "2596", + "orig_fid": "2596", + "fid_2": "2060", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2646", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99107659, + 35.49577867 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2646, + "fid_1": "2594", + "orig_fid": "2594", + "fid_2": "2061", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2647", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98960112, + 35.49599912 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2647, + "fid_1": "2597", + "orig_fid": "2597", + "fid_2": "2062", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2648", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97567403, + 35.49613134 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2648, + "fid_1": "2599", + "orig_fid": "2599", + "fid_2": "2063", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2649", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98996069, + 35.49616462 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2649, + "fid_1": "2600", + "orig_fid": "2600", + "fid_2": "2064", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2650", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97547868, + 35.49629906 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2650, + "fid_1": "2601", + "orig_fid": "2601", + "fid_2": "2065", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2651", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97725174, + 35.49638236 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2651, + "fid_1": "2602", + "orig_fid": "2602", + "fid_2": "2066", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2652", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97686636, + 35.49641767 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2652, + "fid_1": "2603", + "orig_fid": "2603", + "fid_2": "2067", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2653", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97774491, + 35.49669156 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2653, + "fid_1": "2605", + "orig_fid": "2605", + "fid_2": "2068", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2654", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97544635, + 35.49682475 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2654, + "fid_1": "2608", + "orig_fid": "2608", + "fid_2": "2069", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2655", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97652935, + 35.49679312 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2655, + "fid_1": "2607", + "orig_fid": "2607", + "fid_2": "2070", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2656", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97330167, + 35.4968948 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2656, + "fid_1": "2610", + "orig_fid": "2610", + "fid_2": "2071", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2657", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9740691, + 35.49689959 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2657, + "fid_1": "2611", + "orig_fid": "2611", + "fid_2": "2072", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2658", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98732206, + 35.49678159 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2658, + "fid_1": "2606", + "orig_fid": "2606", + "fid_2": "2073", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2659", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97408412, + 35.49742059 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2659, + "fid_1": "2616", + "orig_fid": "2616", + "fid_2": "2074", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2660", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99233263, + 35.49730773 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2660, + "fid_1": "2615", + "orig_fid": "2615", + "fid_2": "2075", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2661", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99500242, + 35.49728918 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2661, + "fid_1": "2614", + "orig_fid": "2614", + "fid_2": "2076", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2662", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98184291, + 35.50011583 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2662, + "fid_1": "2652", + "orig_fid": "2652", + "fid_2": "2077", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2663", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9939919, + 35.50846185 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2663, + "fid_1": "2798", + "orig_fid": "2798", + "fid_2": "2078", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2664", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99200937, + 35.4974514 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2664, + "fid_1": "2617", + "orig_fid": "2617", + "fid_2": "2079", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2665", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97644467, + 35.49782715 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2665, + "fid_1": "2620", + "orig_fid": "2620", + "fid_2": "2080", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2666", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99146238, + 35.49779305 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2666, + "fid_1": "2619", + "orig_fid": "2619", + "fid_2": "2081", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2667", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98360275, + 35.49784977 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2667, + "fid_1": "2621", + "orig_fid": "2621", + "fid_2": "2082", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2668", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97774287, + 35.49810146 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2668, + "fid_1": "2623", + "orig_fid": "2623", + "fid_2": "2083", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2669", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99111904, + 35.49802973 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2669, + "fid_1": "2622", + "orig_fid": "2622", + "fid_2": "2084", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2670", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97721283, + 35.4981197 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2670, + "fid_1": "2624", + "orig_fid": "2624", + "fid_2": "2085", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2671", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97603284, + 35.49818842 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2671, + "fid_1": "2625", + "orig_fid": "2625", + "fid_2": "2086", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2672", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9926213, + 35.49827862 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2672, + "fid_1": "2626", + "orig_fid": "2626", + "fid_2": "2087", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2673", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99241331, + 35.49829637 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2673, + "fid_1": "2627", + "orig_fid": "2627", + "fid_2": "2088", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2674", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99121215, + 35.49834177 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2674, + "fid_1": "2628", + "orig_fid": "2628", + "fid_2": "2089", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2675", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9914719, + 35.49837559 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2675, + "fid_1": "2629", + "orig_fid": "2629", + "fid_2": "2090", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2676", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99353645, + 35.49837038 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2676, + "fid_1": "2630", + "orig_fid": "2630", + "fid_2": "2091", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2677", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99331456, + 35.49840896 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2677, + "fid_1": "2631", + "orig_fid": "2631", + "fid_2": "2092", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2678", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99191111, + 35.49861551 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2678, + "fid_1": "2632", + "orig_fid": "2632", + "fid_2": "2093", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2679", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97753333, + 35.4987295 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2679, + "fid_1": "2635", + "orig_fid": "2635", + "fid_2": "2094", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2680", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99288802, + 35.49865992 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2680, + "fid_1": "2633", + "orig_fid": "2633", + "fid_2": "2095", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2681", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99157623, + 35.49882802 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2681, + "fid_1": "2636", + "orig_fid": "2636", + "fid_2": "2096", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2682", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99411638, + 35.49887402 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2682, + "fid_1": "2637", + "orig_fid": "2637", + "fid_2": "2097", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2683", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9874529, + 35.49904652 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2683, + "fid_1": "2638", + "orig_fid": "2638", + "fid_2": "2098", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2684", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99398631, + 35.49910522 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2684, + "fid_1": "2639", + "orig_fid": "2639", + "fid_2": "2099", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2685", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99173334, + 35.49913573 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2685, + "fid_1": "2640", + "orig_fid": "2640", + "fid_2": "2100", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2686", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99517782, + 35.49916495 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2686, + "fid_1": "2641", + "orig_fid": "2641", + "fid_2": "2101", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2687", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97668168, + 35.49935316 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2687, + "fid_1": "2644", + "orig_fid": "2644", + "fid_2": "2102", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2688", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97814234, + 35.49935697 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2688, + "fid_1": "2643", + "orig_fid": "2643", + "fid_2": "2103", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2689", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99411582, + 35.49928 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2689, + "fid_1": "2642", + "orig_fid": "2642", + "fid_2": "2104", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2690", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97739947, + 35.49953766 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2690, + "fid_1": "2645", + "orig_fid": "2645", + "fid_2": "2105", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2691", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98627925, + 35.49955445 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2691, + "fid_1": "2646", + "orig_fid": "2646", + "fid_2": "2106", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2692", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98771611, + 35.49962152 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2692, + "fid_1": "2647", + "orig_fid": "2647", + "fid_2": "2107", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2693", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98753012, + 35.49967185 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2693, + "fid_1": "2648", + "orig_fid": "2648", + "fid_2": "2108", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2694", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9932211, + 35.49980432 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2694, + "fid_1": "2649", + "orig_fid": "2649", + "fid_2": "2109", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2695", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98628019, + 35.49993135 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2695, + "fid_1": "2650", + "orig_fid": "2650", + "fid_2": "2110", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2696", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99185131, + 35.50010347 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2696, + "fid_1": "2651", + "orig_fid": "2651", + "fid_2": "2111", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2697", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97839172, + 35.5002707 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2697, + "fid_1": "2656", + "orig_fid": "2656", + "fid_2": "2112", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2698", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98941395, + 35.50020955 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2698, + "fid_1": "2653", + "orig_fid": "2653", + "fid_2": "2113", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2699", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9917945, + 35.50021511 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2699, + "fid_1": "2654", + "orig_fid": "2654", + "fid_2": "2114", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2700", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99248331, + 35.50025518 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2700, + "fid_1": "2655", + "orig_fid": "2655", + "fid_2": "2115", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2701", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9780948, + 35.50043174 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2701, + "fid_1": "2659", + "orig_fid": "2659", + "fid_2": "2116", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2702", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98992232, + 35.50040717 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2702, + "fid_1": "2657", + "orig_fid": "2657", + "fid_2": "2117", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2703", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98868458, + 35.50040979 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2703, + "fid_1": "2658", + "orig_fid": "2658", + "fid_2": "2118", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2704", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99160193, + 35.50046325 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2704, + "fid_1": "2660", + "orig_fid": "2660", + "fid_2": "2119", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2705", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98984342, + 35.50073978 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2705, + "fid_1": "2661", + "orig_fid": "2661", + "fid_2": "2120", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2706", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99437604, + 35.50078491 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2706, + "fid_1": "2662", + "orig_fid": "2662", + "fid_2": "2121", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2707", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9911571, + 35.50083699 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2707, + "fid_1": "2663", + "orig_fid": "2663", + "fid_2": "2122", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2708", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99023765, + 35.50087513 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2708, + "fid_1": "2664", + "orig_fid": "2664", + "fid_2": "2123", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2709", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99324264, + 35.50132682 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2709, + "fid_1": "2666", + "orig_fid": "2666", + "fid_2": "2124", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2710", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99277915, + 35.50165113 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2710, + "fid_1": "2669", + "orig_fid": "2669", + "fid_2": "2125", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2711", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99209108, + 35.50186374 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2711, + "fid_1": "2673", + "orig_fid": "2673", + "fid_2": "2126", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2712", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99116233, + 35.50191241 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2712, + "fid_1": "2674", + "orig_fid": "2674", + "fid_2": "2127", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2713", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98139289, + 35.50226429 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2713, + "fid_1": "2679", + "orig_fid": "2679", + "fid_2": "2128", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2714", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99305652, + 35.50222259 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2714, + "fid_1": "2676", + "orig_fid": "2676", + "fid_2": "2129", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2715", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99204308, + 35.5022947 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2715, + "fid_1": "2678", + "orig_fid": "2678", + "fid_2": "2130", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2716", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98574852, + 35.50268513 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2716, + "fid_1": "2680", + "orig_fid": "2680", + "fid_2": "2131", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2717", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97778067, + 35.5027947 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2717, + "fid_1": "2681", + "orig_fid": "2681", + "fid_2": "2132", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2718", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98948524, + 35.50297937 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2718, + "fid_1": "2682", + "orig_fid": "2682", + "fid_2": "2133", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2719", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99088083, + 35.50300585 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2719, + "fid_1": "2683", + "orig_fid": "2683", + "fid_2": "2134", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2720", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97925622, + 35.50323943 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2720, + "fid_1": "2686", + "orig_fid": "2686", + "fid_2": "2135", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.8 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2721", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98820366, + 35.50326141 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2721, + "fid_1": "2687", + "orig_fid": "2687", + "fid_2": "2136", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2722", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97656683, + 35.50353981 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2722, + "fid_1": "2690", + "orig_fid": "2690", + "fid_2": "2137", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2723", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98974734, + 35.50346147 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2723, + "fid_1": "2688", + "orig_fid": "2688", + "fid_2": "2138", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2724", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98947064, + 35.50354272 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2724, + "fid_1": "2689", + "orig_fid": "2689", + "fid_2": "2139", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2725", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98973708, + 35.50362691 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2725, + "fid_1": "2691", + "orig_fid": "2691", + "fid_2": "2140", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2726", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98983188, + 35.50365913 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2726, + "fid_1": "2693", + "orig_fid": "2693", + "fid_2": "2141", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2727", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97909413, + 35.50390582 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2727, + "fid_1": "2696", + "orig_fid": "2696", + "fid_2": "2142", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2728", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98825441, + 35.50618894 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2728, + "fid_1": "2739", + "orig_fid": "2739", + "fid_2": "2143", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2729", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99105023, + 35.50395702 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2729, + "fid_1": "2697", + "orig_fid": "2697", + "fid_2": "2144", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2730", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97650207, + 35.50415768 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2730, + "fid_1": "2702", + "orig_fid": "2702", + "fid_2": "2145", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2731", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97673084, + 35.50422933 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2731, + "fid_1": "2703", + "orig_fid": "2703", + "fid_2": "2146", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2732", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99062549, + 35.50448403 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2732, + "fid_1": "2705", + "orig_fid": "2705", + "fid_2": "2147", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2733", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99020111, + 35.50459154 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2733, + "fid_1": "2706", + "orig_fid": "2706", + "fid_2": "2148", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2734", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97810356, + 35.5046704 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2734, + "fid_1": "2709", + "orig_fid": "2709", + "fid_2": "2149", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2735", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98922606, + 35.50467908 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2735, + "fid_1": "2707", + "orig_fid": "2707", + "fid_2": "2150", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2736", + "geometry": { + "type": "Point", + "coordinates": [ + 117.989809, + 35.5046903 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2736, + "fid_1": "2708", + "orig_fid": "2708", + "fid_2": "2151", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2737", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99017696, + 35.50472126 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2737, + "fid_1": "2710", + "orig_fid": "2710", + "fid_2": "2152", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2738", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99111269, + 35.5047546 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2738, + "fid_1": "2711", + "orig_fid": "2711", + "fid_2": "2153", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2739", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98909511, + 35.50486635 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2739, + "fid_1": "2712", + "orig_fid": "2712", + "fid_2": "2154", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2740", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99093438, + 35.50516849 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2740, + "fid_1": "2713", + "orig_fid": "2713", + "fid_2": "2155", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2741", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98978179, + 35.50523264 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2741, + "fid_1": "2714", + "orig_fid": "2714", + "fid_2": "2156", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2742", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99049847, + 35.5053448 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2742, + "fid_1": "2715", + "orig_fid": "2715", + "fid_2": "2157", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2743", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99540941, + 35.50538908 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2743, + "fid_1": "2716", + "orig_fid": "2716", + "fid_2": "2158", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2744", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98731737, + 35.50566588 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2744, + "fid_1": "2718", + "orig_fid": "2718", + "fid_2": "2159", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2745", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98821456, + 35.50569152 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2745, + "fid_1": "2721", + "orig_fid": "2721", + "fid_2": "2160", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2746", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99135276, + 35.50563829 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2746, + "fid_1": "2719", + "orig_fid": "2719", + "fid_2": "2161", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2747", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99442938, + 35.50566265 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2747, + "fid_1": "2720", + "orig_fid": "2720", + "fid_2": "2162", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2748", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97928756, + 35.50582745 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2748, + "fid_1": "2725", + "orig_fid": "2725", + "fid_2": "2163", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2749", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99408721, + 35.50575225 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2749, + "fid_1": "2722", + "orig_fid": "2722", + "fid_2": "2164", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2750", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99145532, + 35.50578757 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2750, + "fid_1": "2723", + "orig_fid": "2723", + "fid_2": "2165", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2751", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97425814, + 35.50590187 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2751, + "fid_1": "2727", + "orig_fid": "2727", + "fid_2": "2166", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2752", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99434194, + 35.50576577 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2752, + "fid_1": "2724", + "orig_fid": "2724", + "fid_2": "2167", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2753", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99126007, + 35.50590317 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2753, + "fid_1": "2726", + "orig_fid": "2726", + "fid_2": "2168", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2754", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98742948, + 35.50601109 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2754, + "fid_1": "2728", + "orig_fid": "2728", + "fid_2": "2169", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2755", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99168189, + 35.50600232 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2755, + "fid_1": "2729", + "orig_fid": "2729", + "fid_2": "2170", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2756", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98724606, + 35.50607846 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2756, + "fid_1": "2732", + "orig_fid": "2732", + "fid_2": "2171", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2757", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97785685, + 35.50616067 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2757, + "fid_1": "2737", + "orig_fid": "2737", + "fid_2": "2172", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2758", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99654449, + 35.51083861 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2758, + "fid_1": "2851", + "orig_fid": "2851", + "fid_2": "2173", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2759", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99383436, + 35.50603025 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2759, + "fid_1": "2730", + "orig_fid": "2730", + "fid_2": "2174", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2760", + "geometry": { + "type": "Point", + "coordinates": [ + 117.995298, + 35.50602141 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2760, + "fid_1": "2731", + "orig_fid": "2731", + "fid_2": "2175", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2761", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98953946, + 35.50611663 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2761, + "fid_1": "2734", + "orig_fid": "2734", + "fid_2": "2176", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2762", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98924982, + 35.50615096 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2762, + "fid_1": "2736", + "orig_fid": "2736", + "fid_2": "2177", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2763", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99472368, + 35.50606957 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2763, + "fid_1": "2735", + "orig_fid": "2735", + "fid_2": "2178", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2764", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99156503, + 35.5062013 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2764, + "fid_1": "2740", + "orig_fid": "2740", + "fid_2": "2179", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2765", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99514852, + 35.50809682 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2765, + "fid_1": "2789", + "orig_fid": "2789", + "fid_2": "2180", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2766", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98773845, + 35.50512546 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2766, + "fid_1": "2741", + "orig_fid": "2741", + "fid_2": "2181", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2767", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99532901, + 35.50626971 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2767, + "fid_1": "2742", + "orig_fid": "2742", + "fid_2": "2182", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2768", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98939622, + 35.50637409 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2768, + "fid_1": "2743", + "orig_fid": "2743", + "fid_2": "2183", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2769", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98784289, + 35.50642771 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2769, + "fid_1": "2745", + "orig_fid": "2745", + "fid_2": "2184", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2770", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99257275, + 35.50636526 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2770, + "fid_1": "2744", + "orig_fid": "2744", + "fid_2": "2185", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2771", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98948018, + 35.50650364 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2771, + "fid_1": "2748", + "orig_fid": "2748", + "fid_2": "2186", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2772", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99472624, + 35.50647011 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2772, + "fid_1": "2746", + "orig_fid": "2746", + "fid_2": "2187", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2773", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9863794, + 35.50651719 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2773, + "fid_1": "2750", + "orig_fid": "2750", + "fid_2": "2188", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2774", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99280023, + 35.50649448 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2774, + "fid_1": "2747", + "orig_fid": "2747", + "fid_2": "2189", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2775", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99526678, + 35.50650059 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2775, + "fid_1": "2749", + "orig_fid": "2749", + "fid_2": "2190", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2776", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98720563, + 35.50656333 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2776, + "fid_1": "2752", + "orig_fid": "2752", + "fid_2": "2191", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2777", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98822728, + 35.50659688 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2777, + "fid_1": "2753", + "orig_fid": "2753", + "fid_2": "2192", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2778", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99290131, + 35.50657706 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2778, + "fid_1": "2751", + "orig_fid": "2751", + "fid_2": "2193", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2779", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98926826, + 35.50664739 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2779, + "fid_1": "2754", + "orig_fid": "2754", + "fid_2": "2194", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2780", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98750503, + 35.50673879 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2780, + "fid_1": "2757", + "orig_fid": "2757", + "fid_2": "2195", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2781", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99329976, + 35.50663217 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2781, + "fid_1": "2755", + "orig_fid": "2755", + "fid_2": "2196", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2782", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98942042, + 35.50675115 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2782, + "fid_1": "2758", + "orig_fid": "2758", + "fid_2": "2197", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2783", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99568093, + 35.51095734 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2783, + "fid_1": "2852", + "orig_fid": "2852", + "fid_2": "2198", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2784", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99100631, + 35.50632793 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2784, + "fid_1": "2760", + "orig_fid": "2760", + "fid_2": "2199", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.76 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2785", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99438211, + 35.50686933 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2785, + "fid_1": "2759", + "orig_fid": "2759", + "fid_2": "2200", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2786", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99137716, + 35.50694783 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2786, + "fid_1": "2761", + "orig_fid": "2761", + "fid_2": "2201", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2787", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97696196, + 35.50809692 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2787, + "fid_1": "2794", + "orig_fid": "2794", + "fid_2": "2202", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2788", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99240733, + 35.50698588 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2788, + "fid_1": "2762", + "orig_fid": "2762", + "fid_2": "2203", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2789", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98124821, + 35.50722702 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2789, + "fid_1": "2767", + "orig_fid": "2767", + "fid_2": "2204", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2790", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99157059, + 35.50712754 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2790, + "fid_1": "2764", + "orig_fid": "2764", + "fid_2": "2205", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2791", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97514229, + 35.50992388 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2791, + "fid_1": "2831", + "orig_fid": "2831", + "fid_2": "2206", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2792", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99379643, + 35.50714154 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2792, + "fid_1": "2763", + "orig_fid": "2763", + "fid_2": "2207", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2793", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99402779, + 35.5071298 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2793, + "fid_1": "2765", + "orig_fid": "2765", + "fid_2": "2208", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2794", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98743341, + 35.50720377 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2794, + "fid_1": "2766", + "orig_fid": "2766", + "fid_2": "2209", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2795", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98782561, + 35.5072651 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2795, + "fid_1": "2770", + "orig_fid": "2770", + "fid_2": "2210", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2796", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99254944, + 35.50723826 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2796, + "fid_1": "2769", + "orig_fid": "2769", + "fid_2": "2211", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2797", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98840363, + 35.50730296 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2797, + "fid_1": "2772", + "orig_fid": "2772", + "fid_2": "2212", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2798", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99425071, + 35.50728421 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2798, + "fid_1": "2771", + "orig_fid": "2771", + "fid_2": "2213", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2799", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99347682, + 35.50730479 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2799, + "fid_1": "2773", + "orig_fid": "2773", + "fid_2": "2214", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2800", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99562678, + 35.50732074 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2800, + "fid_1": "2774", + "orig_fid": "2774", + "fid_2": "2215", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2801", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99355711, + 35.50736788 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2801, + "fid_1": "2775", + "orig_fid": "2775", + "fid_2": "2216", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2802", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9953339, + 35.50745663 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2802, + "fid_1": "2776", + "orig_fid": "2776", + "fid_2": "2217", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2803", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98784643, + 35.50752958 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2803, + "fid_1": "2777", + "orig_fid": "2777", + "fid_2": "2218", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2804", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99295812, + 35.50753992 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2804, + "fid_1": "2779", + "orig_fid": "2779", + "fid_2": "2219", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2805", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99611782, + 35.51100593 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2805, + "fid_1": "2853", + "orig_fid": "2853", + "fid_2": "2220", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2806", + "geometry": { + "type": "Point", + "coordinates": [ + 117.993674, + 35.50755302 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2806, + "fid_1": "2778", + "orig_fid": "2778", + "fid_2": "2221", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2807", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99314043, + 35.50758211 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2807, + "fid_1": "2780", + "orig_fid": "2780", + "fid_2": "2222", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.22 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2808", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99436699, + 35.50779021 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2808, + "fid_1": "2782", + "orig_fid": "2782", + "fid_2": "2223", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2809", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99524451, + 35.50783147 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2809, + "fid_1": "2783", + "orig_fid": "2783", + "fid_2": "2224", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2810", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99376405, + 35.507834 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2810, + "fid_1": "2784", + "orig_fid": "2784", + "fid_2": "2225", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2811", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99413142, + 35.5078647 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2811, + "fid_1": "2785", + "orig_fid": "2785", + "fid_2": "2226", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.05 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2812", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99486553, + 35.50791645 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2812, + "fid_1": "2787", + "orig_fid": "2787", + "fid_2": "2227", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2813", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99344562, + 35.50795994 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2813, + "fid_1": "2788", + "orig_fid": "2788", + "fid_2": "2228", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2814", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99552136, + 35.50829006 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2814, + "fid_1": "2795", + "orig_fid": "2795", + "fid_2": "2229", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2815", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98831873, + 35.50830041 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2815, + "fid_1": "2797", + "orig_fid": "2797", + "fid_2": "2230", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2816", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99342765, + 35.50833193 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2816, + "fid_1": "2796", + "orig_fid": "2796", + "fid_2": "2231", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2817", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9762621, + 35.50841417 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2817, + "fid_1": "2801", + "orig_fid": "2801", + "fid_2": "2232", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2818", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98912782, + 35.50852062 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2818, + "fid_1": "2802", + "orig_fid": "2802", + "fid_2": "2233", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2819", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9933724, + 35.50852063 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2819, + "fid_1": "2800", + "orig_fid": "2800", + "fid_2": "2234", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2820", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98884285, + 35.50863143 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2820, + "fid_1": "2803", + "orig_fid": "2803", + "fid_2": "2235", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2821", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97701173, + 35.50874268 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2821, + "fid_1": "2805", + "orig_fid": "2805", + "fid_2": "2236", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2822", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99281106, + 35.50873847 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2822, + "fid_1": "2804", + "orig_fid": "2804", + "fid_2": "2237", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2823", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99463991, + 35.50875052 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2823, + "fid_1": "2806", + "orig_fid": "2806", + "fid_2": "2238", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2824", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98957168, + 35.50885547 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2824, + "fid_1": "2809", + "orig_fid": "2809", + "fid_2": "2239", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2825", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99295338, + 35.50883467 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2825, + "fid_1": "2807", + "orig_fid": "2807", + "fid_2": "2240", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.91 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2826", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99351792, + 35.50884776 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2826, + "fid_1": "2808", + "orig_fid": "2808", + "fid_2": "2241", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2827", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99202776, + 35.50897954 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2827, + "fid_1": "2810", + "orig_fid": "2810", + "fid_2": "2242", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2828", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99293085, + 35.50900339 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2828, + "fid_1": "2811", + "orig_fid": "2811", + "fid_2": "2243", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2829", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9872211, + 35.50900655 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2829, + "fid_1": "2812", + "orig_fid": "2812", + "fid_2": "2244", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2830", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99356152, + 35.50907999 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2830, + "fid_1": "2814", + "orig_fid": "2814", + "fid_2": "2245", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2831", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99188175, + 35.50913244 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2831, + "fid_1": "2815", + "orig_fid": "2815", + "fid_2": "2246", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2832", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99399411, + 35.50921694 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2832, + "fid_1": "2816", + "orig_fid": "2816", + "fid_2": "2247", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2833", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99327553, + 35.50923138 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2833, + "fid_1": "2817", + "orig_fid": "2817", + "fid_2": "2248", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2834", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99091394, + 35.50931978 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2834, + "fid_1": "2818", + "orig_fid": "2818", + "fid_2": "2249", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2835", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99081313, + 35.50933595 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2835, + "fid_1": "2819", + "orig_fid": "2819", + "fid_2": "2250", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2836", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99430341, + 35.50933664 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2836, + "fid_1": "2820", + "orig_fid": "2820", + "fid_2": "2251", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2837", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98715306, + 35.50941015 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2837, + "fid_1": "2821", + "orig_fid": "2821", + "fid_2": "2252", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.26 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2838", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99359456, + 35.50946044 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2838, + "fid_1": "2822", + "orig_fid": "2822", + "fid_2": "2253", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2839", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99133511, + 35.50951314 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2839, + "fid_1": "2824", + "orig_fid": "2824", + "fid_2": "2254", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2840", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99345196, + 35.50951037 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2840, + "fid_1": "2823", + "orig_fid": "2823", + "fid_2": "2255", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2841", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99119573, + 35.50955412 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2841, + "fid_1": "2826", + "orig_fid": "2826", + "fid_2": "2256", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2842", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99385414, + 35.50955385 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2842, + "fid_1": "2825", + "orig_fid": "2825", + "fid_2": "2257", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2843", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99301253, + 35.50971567 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2843, + "fid_1": "2827", + "orig_fid": "2827", + "fid_2": "2258", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2844", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99634096, + 35.50978434 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2844, + "fid_1": "2828", + "orig_fid": "2828", + "fid_2": "2259", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2845", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99317639, + 35.50982745 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2845, + "fid_1": "2829", + "orig_fid": "2829", + "fid_2": "2260", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2846", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99409341, + 35.50997142 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2846, + "fid_1": "2832", + "orig_fid": "2832", + "fid_2": "2261", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2847", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98785731, + 35.51015691 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2847, + "fid_1": "2834", + "orig_fid": "2834", + "fid_2": "2262", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2848", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97463373, + 35.51041948 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2848, + "fid_1": "2842", + "orig_fid": "2842", + "fid_2": "2263", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2849", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98989935, + 35.51028555 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2849, + "fid_1": "2836", + "orig_fid": "2836", + "fid_2": "2264", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2850", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99447092, + 35.51029464 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2850, + "fid_1": "2835", + "orig_fid": "2835", + "fid_2": "2265", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.3 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2851", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99014875, + 35.51034488 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2851, + "fid_1": "2838", + "orig_fid": "2838", + "fid_2": "2266", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2852", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99366212, + 35.51032748 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2852, + "fid_1": "2837", + "orig_fid": "2837", + "fid_2": "2267", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2853", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99046986, + 35.51039706 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2853, + "fid_1": "2839", + "orig_fid": "2839", + "fid_2": "2268", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2854", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99394501, + 35.5104072 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2854, + "fid_1": "2841", + "orig_fid": "2841", + "fid_2": "2269", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2855", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99131229, + 35.51049175 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2855, + "fid_1": "2844", + "orig_fid": "2844", + "fid_2": "2270", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2856", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98829656, + 35.51051934 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2856, + "fid_1": "2845", + "orig_fid": "2845", + "fid_2": "2271", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2857", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97442342, + 35.51070274 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2857, + "fid_1": "2848", + "orig_fid": "2848", + "fid_2": "2272", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2858", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98828909, + 35.51073438 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2858, + "fid_1": "2849", + "orig_fid": "2849", + "fid_2": "2273", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2859", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98939936, + 35.51075778 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2859, + "fid_1": "2850", + "orig_fid": "2850", + "fid_2": "2274", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2860", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98994648, + 35.51114436 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2860, + "fid_1": "2854", + "orig_fid": "2854", + "fid_2": "2275", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2861", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99073679, + 35.51120712 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2861, + "fid_1": "2855", + "orig_fid": "2855", + "fid_2": "2276", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2862", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99145237, + 35.51123044 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2862, + "fid_1": "2857", + "orig_fid": "2857", + "fid_2": "2277", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2863", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99599491, + 35.5112106 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2863, + "fid_1": "2856", + "orig_fid": "2856", + "fid_2": "2278", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2864", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98972754, + 35.51133021 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2864, + "fid_1": "2858", + "orig_fid": "2858", + "fid_2": "2279", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2865", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99594281, + 35.51147127 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2865, + "fid_1": "2859", + "orig_fid": "2859", + "fid_2": "2280", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2866", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98859609, + 35.51154467 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2866, + "fid_1": "2860", + "orig_fid": "2860", + "fid_2": "2281", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2867", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98779712, + 35.51154259 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2867, + "fid_1": "2861", + "orig_fid": "2861", + "fid_2": "2282", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2868", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99030206, + 35.51169193 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2868, + "fid_1": "2863", + "orig_fid": "2863", + "fid_2": "2283", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2869", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00115555, + 35.51168296 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2869, + "fid_1": "2864", + "orig_fid": "2864", + "fid_2": "2284", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2870", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99751338, + 35.51175751 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2870, + "fid_1": "2865", + "orig_fid": "2865", + "fid_2": "2285", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2871", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99720674, + 35.51181081 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2871, + "fid_1": "2866", + "orig_fid": "2866", + "fid_2": "2286", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2872", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99736779, + 35.51188597 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2872, + "fid_1": "2867", + "orig_fid": "2867", + "fid_2": "2287", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2873", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99602406, + 35.51222981 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2873, + "fid_1": "2869", + "orig_fid": "2869", + "fid_2": "2288", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2874", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00064769, + 35.51222539 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2874, + "fid_1": "2870", + "orig_fid": "2870", + "fid_2": "2289", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2875", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9996653, + 35.51234686 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2875, + "fid_1": "2871", + "orig_fid": "2871", + "fid_2": "2290", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2876", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97151989, + 35.51469309 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2876, + "fid_1": "2902", + "orig_fid": "2902", + "fid_2": "2291", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2877", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98834019, + 35.5149875 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2877, + "fid_1": "2903", + "orig_fid": "2903", + "fid_2": "2292", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2878", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97148122, + 35.5151485 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2878, + "fid_1": "2906", + "orig_fid": "2906", + "fid_2": "2293", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2879", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97201822, + 35.51534543 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2879, + "fid_1": "2908", + "orig_fid": "2908", + "fid_2": "2294", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2880", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96898596, + 35.51543033 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2880, + "fid_1": "2911", + "orig_fid": "2911", + "fid_2": "2295", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2881", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98549984, + 35.51029897 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2881, + "fid_1": "2873", + "orig_fid": "2873", + "fid_2": "2296", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2882", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99271077, + 35.51295801 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2882, + "fid_1": "2877", + "orig_fid": "2877", + "fid_2": "2297", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2883", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98712665, + 35.51311815 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2883, + "fid_1": "2879", + "orig_fid": "2879", + "fid_2": "2298", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2884", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99627713, + 35.51309761 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2884, + "fid_1": "2878", + "orig_fid": "2878", + "fid_2": "2299", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2885", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97898722, + 35.51328346 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2885, + "fid_1": "2882", + "orig_fid": "2882", + "fid_2": "2300", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2886", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99754209, + 35.51327509 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2886, + "fid_1": "2883", + "orig_fid": "2883", + "fid_2": "2301", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2887", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99770026, + 35.5133075 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2887, + "fid_1": "2884", + "orig_fid": "2884", + "fid_2": "2302", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2888", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97917533, + 35.51348778 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2888, + "fid_1": "2885", + "orig_fid": "2885", + "fid_2": "2303", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.91 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2889", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99692522, + 35.5134861 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2889, + "fid_1": "2886", + "orig_fid": "2886", + "fid_2": "2304", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2890", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98824806, + 35.51369191 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2890, + "fid_1": "2888", + "orig_fid": "2888", + "fid_2": "2305", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2891", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98501359, + 35.51337747 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2891, + "fid_1": "2889", + "orig_fid": "2889", + "fid_2": "2306", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2892", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98052007, + 35.51382762 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2892, + "fid_1": "2890", + "orig_fid": "2890", + "fid_2": "2307", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2893", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97744237, + 35.51390711 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2893, + "fid_1": "2893", + "orig_fid": "2893", + "fid_2": "2308", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2894", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9967116, + 35.5138941 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2894, + "fid_1": "2891", + "orig_fid": "2891", + "fid_2": "2309", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2895", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99758909, + 35.51382555 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2895, + "fid_1": "2892", + "orig_fid": "2892", + "fid_2": "2310", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2896", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97924718, + 35.51414257 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2896, + "fid_1": "2896", + "orig_fid": "2896", + "fid_2": "2311", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2897", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97691967, + 35.51416361 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2897, + "fid_1": "2898", + "orig_fid": "2898", + "fid_2": "2312", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2898", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99426479, + 35.51402014 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2898, + "fid_1": "2895", + "orig_fid": "2895", + "fid_2": "2313", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2899", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9873194, + 35.51417566 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2899, + "fid_1": "2897", + "orig_fid": "2897", + "fid_2": "2314", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2900", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98049306, + 35.51430242 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2900, + "fid_1": "2899", + "orig_fid": "2899", + "fid_2": "2315", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2901", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97041959, + 35.51465894 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2901, + "fid_1": "2901", + "orig_fid": "2901", + "fid_2": "2316", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2902", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98349957, + 35.51456391 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2902, + "fid_1": "2900", + "orig_fid": "2900", + "fid_2": "2317", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2903", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9973943, + 35.51501114 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2903, + "fid_1": "2905", + "orig_fid": "2905", + "fid_2": "2318", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2904", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97778532, + 35.51560716 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2904, + "fid_1": "2913", + "orig_fid": "2913", + "fid_2": "2319", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2905", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97406413, + 35.51566326 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2905, + "fid_1": "2914", + "orig_fid": "2914", + "fid_2": "2320", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2906", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98769951, + 35.515708 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2906, + "fid_1": "2915", + "orig_fid": "2915", + "fid_2": "2321", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2907", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98729317, + 35.51575788 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2907, + "fid_1": "2917", + "orig_fid": "2917", + "fid_2": "2322", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2908", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97214071, + 35.51588827 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2908, + "fid_1": "2918", + "orig_fid": "2918", + "fid_2": "2323", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2909", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98586647, + 35.51458962 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2909, + "fid_1": "2920", + "orig_fid": "2920", + "fid_2": "2324", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2910", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97549513, + 35.51628499 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2910, + "fid_1": "2922", + "orig_fid": "2922", + "fid_2": "2325", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2911", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97122766, + 35.51638494 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2911, + "fid_1": "2924", + "orig_fid": "2924", + "fid_2": "2326", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2912", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97159768, + 35.51646809 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2912, + "fid_1": "2926", + "orig_fid": "2926", + "fid_2": "2327", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2913", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97445033, + 35.51646208 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2913, + "fid_1": "2925", + "orig_fid": "2925", + "fid_2": "2328", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2914", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97554558, + 35.51645519 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2914, + "fid_1": "2927", + "orig_fid": "2927", + "fid_2": "2329", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2915", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99723679, + 35.51632229 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2915, + "fid_1": "2923", + "orig_fid": "2923", + "fid_2": "2330", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2916", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98175978, + 35.51650441 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2916, + "fid_1": "2928", + "orig_fid": "2928", + "fid_2": "2331", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2917", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97486828, + 35.5165593 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2917, + "fid_1": "2930", + "orig_fid": "2930", + "fid_2": "2332", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2918", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97226119, + 35.51657283 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2918, + "fid_1": "2931", + "orig_fid": "2931", + "fid_2": "2334", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2919", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99013522, + 35.51653237 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2919, + "fid_1": "2929", + "orig_fid": "2929", + "fid_2": "2335", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2920", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97102016, + 35.51676803 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2920, + "fid_1": "2933", + "orig_fid": "2933", + "fid_2": "2336", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2921", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97425253, + 35.51685159 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2921, + "fid_1": "2934", + "orig_fid": "2934", + "fid_2": "2337", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2922", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97284547, + 35.51695744 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2922, + "fid_1": "2937", + "orig_fid": "2937", + "fid_2": "2338", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2923", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98169033, + 35.51688797 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2923, + "fid_1": "2936", + "orig_fid": "2936", + "fid_2": "2339", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2924", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97151814, + 35.51854037 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2924, + "fid_1": "2968", + "orig_fid": "2968", + "fid_2": "2340", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2925", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97122455, + 35.5192855 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2925, + "fid_1": "2984", + "orig_fid": "2984", + "fid_2": "2341", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2926", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98141136, + 35.51542273 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2926, + "fid_1": "2939", + "orig_fid": "2939", + "fid_2": "2342", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.92 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2927", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98668981, + 35.51636203 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2927, + "fid_1": "2935", + "orig_fid": "2935", + "fid_2": "2343", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2928", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98147716, + 35.51695136 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2928, + "fid_1": "2938", + "orig_fid": "2938", + "fid_2": "2344", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2929", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97369092, + 35.51703901 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2929, + "fid_1": "2940", + "orig_fid": "2940", + "fid_2": "2345", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2930", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99050807, + 35.51984472 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2930, + "fid_1": "3002", + "orig_fid": "3002", + "fid_2": "2346", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2931", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98174414, + 35.51707899 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2931, + "fid_1": "2941", + "orig_fid": "2941", + "fid_2": "2347", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2932", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97587753, + 35.51725617 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2932, + "fid_1": "2944", + "orig_fid": "2944", + "fid_2": "2348", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2933", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97398193, + 35.51751986 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2933, + "fid_1": "2946", + "orig_fid": "2946", + "fid_2": "2349", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2934", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97165431, + 35.51761304 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2934, + "fid_1": "2947", + "orig_fid": "2947", + "fid_2": "2350", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2935", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97983373, + 35.51762942 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2935, + "fid_1": "2948", + "orig_fid": "2948", + "fid_2": "2351", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2936", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96856112, + 35.51782952 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2936, + "fid_1": "2949", + "orig_fid": "2949", + "fid_2": "2352", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2937", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97359952, + 35.5179005 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2937, + "fid_1": "2950", + "orig_fid": "2950", + "fid_2": "2353", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2938", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97451155, + 35.51795252 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2938, + "fid_1": "2951", + "orig_fid": "2951", + "fid_2": "2354", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2939", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97114379, + 35.51798143 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2939, + "fid_1": "2953", + "orig_fid": "2953", + "fid_2": "2355", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2940", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97689913, + 35.51798478 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2940, + "fid_1": "2952", + "orig_fid": "2952", + "fid_2": "2356", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.51 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2941", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96586135, + 35.51815365 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2941, + "fid_1": "2958", + "orig_fid": "2958", + "fid_2": "2357", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2942", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97889801, + 35.51811216 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2942, + "fid_1": "2956", + "orig_fid": "2956", + "fid_2": "2358", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.19 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2943", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97759698, + 35.51820417 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2943, + "fid_1": "2961", + "orig_fid": "2961", + "fid_2": "2359", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2944", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96839476, + 35.51829975 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2944, + "fid_1": "2963", + "orig_fid": "2963", + "fid_2": "2360", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2945", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96695611, + 35.5184526 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2945, + "fid_1": "2965", + "orig_fid": "2965", + "fid_2": "2361", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2946", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98741211, + 35.51918645 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2946, + "fid_1": "2981", + "orig_fid": "2981", + "fid_2": "2362", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2947", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96754711, + 35.51934463 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2947, + "fid_1": "2987", + "orig_fid": "2987", + "fid_2": "2363", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2948", + "geometry": { + "type": "Point", + "coordinates": [ + 117.967936, + 35.51943964 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2948, + "fid_1": "2988", + "orig_fid": "2988", + "fid_2": "2364", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2949", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97544935, + 35.51769293 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2949, + "fid_1": "2967", + "orig_fid": "2967", + "fid_2": "2365", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2950", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98966854, + 35.51842203 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2950, + "fid_1": "2964", + "orig_fid": "2964", + "fid_2": "2366", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2951", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97060733, + 35.51859801 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2951, + "fid_1": "2969", + "orig_fid": "2969", + "fid_2": "2367", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2952", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9664339, + 35.5197203 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2952, + "fid_1": "3000", + "orig_fid": "3000", + "fid_2": "2368", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2953", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96911131, + 35.52001947 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2953, + "fid_1": "3004", + "orig_fid": "3004", + "fid_2": "2369", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2954", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97794702, + 35.51829807 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2954, + "fid_1": "2970", + "orig_fid": "2970", + "fid_2": "2370", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2955", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96892241, + 35.51855915 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2955, + "fid_1": "2972", + "orig_fid": "2972", + "fid_2": "2371", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2956", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97005043, + 35.5188517 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2956, + "fid_1": "2971", + "orig_fid": "2971", + "fid_2": "2372", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2957", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97268236, + 35.51904746 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2957, + "fid_1": "2975", + "orig_fid": "2975", + "fid_2": "2373", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2958", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97253682, + 35.51907141 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2958, + "fid_1": "2977", + "orig_fid": "2977", + "fid_2": "2374", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.07 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2959", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96610505, + 35.51912989 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2959, + "fid_1": "2980", + "orig_fid": "2980", + "fid_2": "2375", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2960", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97836953, + 35.51903221 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2960, + "fid_1": "2974", + "orig_fid": "2974", + "fid_2": "2376", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2961", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97043409, + 35.51909837 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2961, + "fid_1": "2978", + "orig_fid": "2978", + "fid_2": "2377", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2962", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97849941, + 35.519056 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2962, + "fid_1": "2976", + "orig_fid": "2976", + "fid_2": "2378", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.24 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2963", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97203449, + 35.51911702 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2963, + "fid_1": "2979", + "orig_fid": "2979", + "fid_2": "2379", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.33 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2964", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98728926, + 35.51792465 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2964, + "fid_1": "2973", + "orig_fid": "2973", + "fid_2": "2381", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2965", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96602196, + 35.51925607 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2965, + "fid_1": "2983", + "orig_fid": "2983", + "fid_2": "2382", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2966", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96817275, + 35.51924285 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2966, + "fid_1": "2982", + "orig_fid": "2982", + "fid_2": "2383", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2967", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9657004, + 35.51935636 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2967, + "fid_1": "2986", + "orig_fid": "2986", + "fid_2": "2384", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2968", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97456496, + 35.51945098 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2968, + "fid_1": "2989", + "orig_fid": "2989", + "fid_2": "2385", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2969", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98746885, + 35.51933666 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2969, + "fid_1": "2985", + "orig_fid": "2985", + "fid_2": "2386", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2970", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97191249, + 35.51947061 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2970, + "fid_1": "2990", + "orig_fid": "2990", + "fid_2": "2387", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2971", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97112352, + 35.51949971 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2971, + "fid_1": "2992", + "orig_fid": "2992", + "fid_2": "2388", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2972", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97410102, + 35.51948913 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2972, + "fid_1": "2991", + "orig_fid": "2991", + "fid_2": "2389", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2973", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97090298, + 35.51950425 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2973, + "fid_1": "2993", + "orig_fid": "2993", + "fid_2": "2390", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2974", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96759137, + 35.5197187 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2974, + "fid_1": "2999", + "orig_fid": "2999", + "fid_2": "2391", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2975", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96616409, + 35.51976683 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2975, + "fid_1": "3001", + "orig_fid": "3001", + "fid_2": "2392", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2976", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96747726, + 35.52004146 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2976, + "fid_1": "3005", + "orig_fid": "3005", + "fid_2": "2393", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.94 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2977", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96549575, + 35.52017294 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2977, + "fid_1": "3007", + "orig_fid": "3007", + "fid_2": "2394", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2978", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96630136, + 35.52019361 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2978, + "fid_1": "3009", + "orig_fid": "3009", + "fid_2": "2395", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.42 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2979", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96835754, + 35.52020205 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2979, + "fid_1": "3008", + "orig_fid": "3008", + "fid_2": "2396", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2980", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97480844, + 35.5201643 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2980, + "fid_1": "3006", + "orig_fid": "3006", + "fid_2": "2397", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2981", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96967487, + 35.52020523 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2981, + "fid_1": "3010", + "orig_fid": "3010", + "fid_2": "2398", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2982", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97069884, + 35.52021599 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2982, + "fid_1": "3011", + "orig_fid": "3011", + "fid_2": "2399", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2983", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97458127, + 35.52032614 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2983, + "fid_1": "3013", + "orig_fid": "3013", + "fid_2": "2400", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2984", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9679925, + 35.52038598 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2984, + "fid_1": "3015", + "orig_fid": "3015", + "fid_2": "2401", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2985", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96658289, + 35.52044656 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2985, + "fid_1": "3017", + "orig_fid": "3017", + "fid_2": "2402", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2986", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98820786, + 35.52026229 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2986, + "fid_1": "3012", + "orig_fid": "3012", + "fid_2": "2403", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2987", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96681832, + 35.52046602 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2987, + "fid_1": "3019", + "orig_fid": "3019", + "fid_2": "2404", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2988", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9687804, + 35.52045343 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2988, + "fid_1": "3018", + "orig_fid": "3018", + "fid_2": "2405", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2989", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98835958, + 35.52035901 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2989, + "fid_1": "3014", + "orig_fid": "3014", + "fid_2": "2406", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2990", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96979456, + 35.52050099 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2990, + "fid_1": "3020", + "orig_fid": "3020", + "fid_2": "2407", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2991", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96921966, + 35.52054237 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2991, + "fid_1": "3021", + "orig_fid": "3021", + "fid_2": "2408", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.12 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2992", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96782511, + 35.52073457 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2992, + "fid_1": "3023", + "orig_fid": "3023", + "fid_2": "2409", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2993", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98894426, + 35.51973553 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2993, + "fid_1": "3022", + "orig_fid": "3022", + "fid_2": "2410", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2994", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97072735, + 35.52076095 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2994, + "fid_1": "3025", + "orig_fid": "3025", + "fid_2": "2411", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2995", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97158114, + 35.52076842 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2995, + "fid_1": "3024", + "orig_fid": "3024", + "fid_2": "2412", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2996", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9949003, + 35.48963657 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2996, + "fid_1": "2521", + "orig_fid": "2521", + "fid_2": "2561", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2997", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01395866, + 35.48954858 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2997, + "fid_1": "2519", + "orig_fid": "2519", + "fid_2": "3065", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2998", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00162711, + 35.49007416 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2998, + "fid_1": "2527", + "orig_fid": "2527", + "fid_2": "3164", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.2999", + "geometry": { + "type": "Point", + "coordinates": [ + 118.01096417, + 35.49015478 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 2999, + "fid_1": "2528", + "orig_fid": "2528", + "fid_2": "3165", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3000", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0015648, + 35.4906898 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3000, + "fid_1": "2538", + "orig_fid": "2538", + "fid_2": "3166", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3001", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00135736, + 35.49083574 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3001, + "fid_1": "2540", + "orig_fid": "2540", + "fid_2": "3167", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3002", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00169104, + 35.49089775 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3002, + "fid_1": "2542", + "orig_fid": "2542", + "fid_2": "3168", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3003", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99932322, + 35.49247236 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3003, + "fid_1": "2557", + "orig_fid": "2557", + "fid_2": "3169", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3004", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99975017, + 35.49311767 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3004, + "fid_1": "2563", + "orig_fid": "2563", + "fid_2": "3170", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3005", + "geometry": { + "type": "Point", + "coordinates": [ + 118.0012696, + 35.49391319 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3005, + "fid_1": "2567", + "orig_fid": "2567", + "fid_2": "3171", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3006", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00240924, + 35.51314049 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3006, + "fid_1": "2880", + "orig_fid": "2880", + "fid_2": "3172", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.14 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3007", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99999311, + 35.51957143 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3007, + "fid_1": "2995", + "orig_fid": "2995", + "fid_2": "3173", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3008", + "geometry": { + "type": "Point", + "coordinates": [ + 118.000295, + 35.51992087 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3008, + "fid_1": "3003", + "orig_fid": "3003", + "fid_2": "3174", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.15 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3009", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96856009, + 35.51967766 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3009, + "fid_1": "2997", + "orig_fid": "2997", + "fid_2": "3178", + "mc": "韩家庄路边小水池", + "xsl": "50", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "223", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3010", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96994742, + 35.51722535 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3010, + "fid_1": "2943", + "orig_fid": "2943", + "fid_2": "3179", + "mc": "韩家庄小水池", + "xsl": "100", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "225", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.11 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3011", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96864268, + 35.51818022 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3011, + "fid_1": "2960", + "orig_fid": "2960", + "fid_2": "3180", + "mc": "韩家庄路边小水池", + "xsl": "400", + "dz": "", + "bz": "路边小水池6个", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "224", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3012", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98017337, + 35.53080327 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3012, + "fid_1": "3168", + "orig_fid": "3168", + "fid_2": "193", + "mc": "大斗沟", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3013", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99756899, + 35.5272541 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3013, + "fid_1": "3120", + "orig_fid": "3120", + "fid_2": "197", + "mc": "大梁", + "xsl": "0", + "dz": "", + "bz": "与影像不符", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "森林保育水源地", + "qufen": "", + "creater_id": "1", + "is_del": 0, + "mag": 1.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3014", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98972258, + 35.53305331 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3014, + "fid_1": "3187", + "orig_fid": "3187", + "fid_2": "205", + "mc": "牛岚紫荆山塘坝", + "xsl": "50", + "dz": "牛岚紫荆山", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "塘坝,森林保育水源地", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3015", + "geometry": { + "type": "Point", + "coordinates": [ + 117.995813, + 35.528999 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3015, + "fid_1": "3149", + "orig_fid": "3149", + "fid_2": "217", + "mc": "大田庄乡21号旗杆山蓄水池", + "xsl": "300", + "dz": "黄泥沟旗杆山1号", + "bz": "规格:10*10*3/联系电话:18305391116", + "jczt": "建设中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地,蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3016", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9833528, + 35.52935541 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3016, + "fid_1": "3153", + "orig_fid": "3153", + "fid_2": "218", + "mc": "大斗沟蓄水池", + "xsl": "300", + "dz": "大斗沟", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3017", + "geometry": { + "type": "Point", + "coordinates": [ + 117.969169, + 35.528235 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3017, + "fid_1": "3144", + "orig_fid": "3144", + "fid_2": "220", + "mc": "岔子沟蓄水池", + "xsl": "300", + "dz": "岔子沟", + "bz": "与影像不符", + "jczt": "建设中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3018", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97001653, + 35.5258537 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3018, + "fid_1": "3095", + "orig_fid": "3095", + "fid_2": "223", + "mc": "姚家沟蓄水池", + "xsl": "300", + "dz": "姚家沟", + "bz": "", + "jczt": "建设中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3019", + "geometry": { + "type": "Point", + "coordinates": [ + 117.962672, + 35.525976 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3019, + "fid_1": "3097", + "orig_fid": "3097", + "fid_2": "228", + "mc": "大梁蓄水池", + "xsl": "300", + "dz": "大梁", + "bz": "与影像不符", + "jczt": "建设中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.02 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3020", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97974819, + 35.53320396 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3020, + "fid_1": "3191", + "orig_fid": "3191", + "fid_2": "231", + "mc": "牛岚紫荆关西蓄水池", + "xsl": "10", + "dz": "牛岚紫荆关西", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3021", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94733927, + 35.53344092 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3021, + "fid_1": "3194", + "orig_fid": "3194", + "fid_2": "232", + "mc": "牛岚龙门沟3号蓄水池", + "xsl": "50", + "dz": "牛岚紫荆关西", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.36 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3022", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94563268, + 35.53386364 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3022, + "fid_1": "3200", + "orig_fid": "3200", + "fid_2": "233", + "mc": "牛岚龙门沟4号蓄水池", + "xsl": "50", + "dz": "牛岚紫荆关西", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3023", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96745278, + 35.52719731 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3023, + "fid_1": "3116", + "orig_fid": "3116", + "fid_2": "234", + "mc": "牛岚茶子沟口蓄水池", + "xsl": "200", + "dz": "牛岚茶子沟口", + "bz": "", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池,森林保育水源地", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3024", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00303928, + 35.52702255 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3024, + "fid_1": "3110", + "orig_fid": "3110", + "fid_2": "252", + "mc": "牛岚朝阳坡护林点东下国有塔山林场29蓄水池", + "xsl": "200", + "dz": "牛岚分区朝阳坡林点北沟", + "bz": "规格:10*10*2/联系电话:17661625773", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.59 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3025", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00216347, + 35.52401666 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3025, + "fid_1": "3077", + "orig_fid": "3077", + "fid_2": "253", + "mc": "牛岚朝阳坡南沟上国有塔山林场30蓄水池", + "xsl": "200", + "dz": "牛岚分区朝阳坡黑山沟", + "bz": "规格:10*10*2/联系电话:17653950586", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3026", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94548908, + 35.5339238 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3026, + "fid_1": "3201", + "orig_fid": "3201", + "fid_2": "255", + "mc": "牛岚龙门沟5号国有塔山林场39蓄水池", + "xsl": "500", + "dz": "牛岚分区西峪茶棚石上", + "bz": "规格:5*5*2/联系电话:17653950668", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3027", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9480374, + 35.54269159 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3027, + "fid_1": "3204", + "orig_fid": "3204", + "fid_2": "256", + "mc": "牛岚城墙国有塔山林场9号玻璃钢水窖", + "xsl": "0", + "dz": "牛岚分区西峪城墙", + "bz": "与影像不符 规格:5/联系电话:17653950669 17653950691", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3028", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94790108, + 35.5330304 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3028, + "fid_1": "3184", + "orig_fid": "3184", + "fid_2": "271", + "mc": "牛岚龙门沟1号国有塔山林场36蓄水池", + "xsl": "50", + "dz": "牛岚分区西峪龙门沟", + "bz": "规格:5*5*2/联系电话:17653950698\n17653950691", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3029", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94655927, + 35.53373321 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3029, + "fid_1": "3196", + "orig_fid": "3196", + "fid_2": "272", + "mc": "国有塔山林场38蓄水池", + "xsl": "0", + "dz": "牛岚分区西峪龙门沟", + "bz": "与影像不符 规格:5*5*2/联系电话:17653950698\n17653950691", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3030", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94527454, + 35.53406459 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3030, + "fid_1": "3202", + "orig_fid": "3202", + "fid_2": "273", + "mc": "国有塔山林场35蓄水池", + "xsl": "0", + "dz": "牛岚分区西峪龙门沟", + "bz": "与影像不符 规格:5*5*2/联系电话:17653950698\n17653950691", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.04 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3031", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00196575, + 35.52426683 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3031, + "fid_1": "3079", + "orig_fid": "3079", + "fid_2": "274", + "mc": "牛岚朝阳坡南沟下国有塔山林场31蓄水池", + "xsl": "50", + "dz": "牛岚分区朝阳坡黑山沟", + "bz": "规格:5*5*2/联系电话:17653950586", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3032", + "geometry": { + "type": "Point", + "coordinates": [ + 118.00459514, + 35.5272377 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3032, + "fid_1": "3119", + "orig_fid": "3119", + "fid_2": "276", + "mc": "牛岚朝阳坡护林点东上国有塔山林场28蓄水池", + "xsl": "200", + "dz": "牛岚分区朝阳坡林点北沟", + "bz": "规格:10*10*2/联系电话:17661625773", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3033", + "geometry": { + "type": "Point", + "coordinates": [ + 117.94767762, + 35.5330357 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3033, + "fid_1": "3186", + "orig_fid": "3186", + "fid_2": "277", + "mc": "牛岚龙门沟2号国有塔山林场37蓄水池", + "xsl": "50", + "dz": "牛岚分区西峪龙门沟", + "bz": "规格:5*5*2/联系电话:17653950698\n17653950691", + "jczt": "已建完", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号),森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 3.13 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3034", + "geometry": { + "type": "Point", + "coordinates": [ + 117.973727, + 35.526888 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3034, + "fid_1": "3106", + "orig_fid": "3106", + "fid_2": "279", + "mc": "大田庄乡26号蓄水池", + "xsl": "0", + "dz": "韩家庄村姚家沟3号", + "bz": "与影像不符 规格:10*10*3/联系电话:15666833161", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.09 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3035", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98599359, + 35.53235085 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3035, + "fid_1": "3180", + "orig_fid": "3180", + "fid_2": "280", + "mc": "大田庄乡27号蓄水池", + "xsl": "0", + "dz": "韩家庄村大梁4号", + "bz": "规格:10*10*3/联系电话:15666833161", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3036", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97976971, + 35.5337839 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3036, + "fid_1": "3197", + "orig_fid": "3197", + "fid_2": "281", + "mc": "大田庄乡22号蓄水池", + "xsl": "0", + "dz": "黄泥沟大斗沟2号", + "bz": "与影像不符 规格:10*10*3/联系电话:18305391116", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "aa", + "lx": "蓄水池-山水项目(统一编号)", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 4.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3037", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99112903, + 35.52048117 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3037, + "fid_1": "3026", + "orig_fid": "3026", + "fid_2": "412", + "mc": "大田庄赖沟子水库", + "xsl": "5000", + "dz": "赖沟子", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "水库", + "qufen": "水库", + "creater_id": "1", + "is_del": 0, + "mag": 1.91 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3038", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96574578, + 35.5209063 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3038, + "fid_1": "3030", + "orig_fid": "3030", + "fid_2": "426", + "mc": "团山子蓄水池", + "xsl": "300", + "dz": "团山子", + "bz": "", + "jczt": "建设中", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "森林保育水源地,蓄水池", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 0.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3039", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99191034, + 35.52605839 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3039, + "fid_1": "3100", + "orig_fid": "3100", + "fid_2": "892", + "mc": "黄泥沟混梁2号水坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "285", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3040", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98698049, + 35.52901081 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3040, + "fid_1": "3151", + "orig_fid": "3151", + "fid_2": "893", + "mc": "紫荆关路西坑塘拦水坝", + "xsl": "1000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "270", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 3.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3041", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98348221, + 35.51674248 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3041, + "fid_1": "3049", + "orig_fid": "3049", + "fid_2": "906", + "mc": "黄泥沟社区拦水坝", + "xsl": "5000", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "271", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3042", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99029544, + 35.52701144 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3042, + "fid_1": "3108", + "orig_fid": "3108", + "fid_2": "907", + "mc": "黄泥沟混梁西1号水坝", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "284", + "lx": "塘坝", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 1.2 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3043", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95232025, + 35.53756996 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3043, + "fid_1": "3203", + "orig_fid": "3203", + "fid_2": "989", + "mc": "塘坝", + "xsl": "", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "塘坝", + "creater_id": "1", + "is_del": 0, + "mag": 2.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3044", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96021906, + 35.53229727 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3044, + "fid_1": "3179", + "orig_fid": "3179", + "fid_2": "992", + "mc": "蓄水池", + "xsl": "", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 2.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3045", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96072054, + 35.53217533 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3045, + "fid_1": "3178", + "orig_fid": "3178", + "fid_2": "993", + "mc": "蓄水池", + "xsl": "", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "摸排", + "qufen": "蓄水池", + "creater_id": "1", + "is_del": 0, + "mag": 1.17 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3046", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99665585, + 35.52802063 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3046, + "fid_1": "3137", + "orig_fid": "3137", + "fid_2": "1000", + "mc": "黄泥沟﹉旗杆山1号", + "xsl": "300", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "可用", + "sfzcsb": "支持", + "jlstjl": "150", + "xszt": "200", + "appid": "", + "lx": "摸排", + "qufen": "蓄水池", + "creater_id": "0", + "is_del": 0, + "mag": 3.77 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3047", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96808247, + 35.52272001 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3047, + "fid_1": "3063", + "orig_fid": "3063", + "fid_2": "2333", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.79 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3048", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98208597, + 35.52708779 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3048, + "fid_1": "3111", + "orig_fid": "3111", + "fid_2": "2380", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3049", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96777349, + 35.52081121 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3049, + "fid_1": "3027", + "orig_fid": "3027", + "fid_2": "2413", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3050", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97185415, + 35.52083599 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3050, + "fid_1": "3028", + "orig_fid": "3028", + "fid_2": "2414", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3051", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96569441, + 35.52209795 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3051, + "fid_1": "3053", + "orig_fid": "3053", + "fid_2": "2415", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3052", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96704042, + 35.52713003 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3052, + "fid_1": "3114", + "orig_fid": "3114", + "fid_2": "2416", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3053", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97533029, + 35.5208812 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3053, + "fid_1": "3029", + "orig_fid": "3029", + "fid_2": "2417", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.35 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3054", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96860721, + 35.52115459 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3054, + "fid_1": "3031", + "orig_fid": "3031", + "fid_2": "2418", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3055", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97142516, + 35.52120741 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3055, + "fid_1": "3032", + "orig_fid": "3032", + "fid_2": "2419", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3056", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96677452, + 35.52127228 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3056, + "fid_1": "3034", + "orig_fid": "3034", + "fid_2": "2420", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3057", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96916444, + 35.5212854 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3057, + "fid_1": "3035", + "orig_fid": "3035", + "fid_2": "2421", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3058", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96900447, + 35.52131475 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3058, + "fid_1": "3036", + "orig_fid": "3036", + "fid_2": "2422", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3059", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97065992, + 35.52136298 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3059, + "fid_1": "3037", + "orig_fid": "3037", + "fid_2": "2423", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3060", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9937547, + 35.52121693 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3060, + "fid_1": "3033", + "orig_fid": "3033", + "fid_2": "2424", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3061", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97092037, + 35.52140589 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3061, + "fid_1": "3038", + "orig_fid": "3038", + "fid_2": "2425", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.6 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3062", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97062043, + 35.52142808 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3062, + "fid_1": "3039", + "orig_fid": "3039", + "fid_2": "2426", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3063", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9648075, + 35.52152078 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3063, + "fid_1": "3040", + "orig_fid": "3040", + "fid_2": "2427", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.84 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3064", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98880408, + 35.52817154 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3064, + "fid_1": "3140", + "orig_fid": "3140", + "fid_2": "2428", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3065", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98815714, + 35.52149127 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3065, + "fid_1": "3041", + "orig_fid": "3041", + "fid_2": "2429", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3066", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98949987, + 35.52133136 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3066, + "fid_1": "3042", + "orig_fid": "3042", + "fid_2": "2430", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3067", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97166071, + 35.52176435 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3067, + "fid_1": "3043", + "orig_fid": "3043", + "fid_2": "2431", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.67 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3068", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96531964, + 35.52185061 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3068, + "fid_1": "3044", + "orig_fid": "3044", + "fid_2": "2432", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3069", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96703007, + 35.52189249 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3069, + "fid_1": "3045", + "orig_fid": "3045", + "fid_2": "2433", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3070", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96655201, + 35.52197341 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3070, + "fid_1": "3047", + "orig_fid": "3047", + "fid_2": "2434", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3071", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96754664, + 35.52200922 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3071, + "fid_1": "3048", + "orig_fid": "3048", + "fid_2": "2435", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3072", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96626373, + 35.5220511 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3072, + "fid_1": "3051", + "orig_fid": "3051", + "fid_2": "2436", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3073", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9641779, + 35.5240094 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3073, + "fid_1": "3075", + "orig_fid": "3075", + "fid_2": "2437", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.38 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3074", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96551197, + 35.52206228 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3074, + "fid_1": "3052", + "orig_fid": "3052", + "fid_2": "2438", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.85 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3075", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98534576, + 35.52167385 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3075, + "fid_1": "3046", + "orig_fid": "3046", + "fid_2": "2439", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3076", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96972892, + 35.52204885 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3076, + "fid_1": "3050", + "orig_fid": "3050", + "fid_2": "2440", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.82 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3077", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96997833, + 35.52207532 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3077, + "fid_1": "3054", + "orig_fid": "3054", + "fid_2": "2441", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.1 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3078", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96919232, + 35.52217995 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3078, + "fid_1": "3055", + "orig_fid": "3055", + "fid_2": "2442", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3079", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96709722, + 35.52228645 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3079, + "fid_1": "3057", + "orig_fid": "3057", + "fid_2": "2443", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3080", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97608881, + 35.52000213 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3080, + "fid_1": "3058", + "orig_fid": "3058", + "fid_2": "2444", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.9 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3081", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99289522, + 35.52220903 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3081, + "fid_1": "3056", + "orig_fid": "3056", + "fid_2": "2445", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3082", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96910128, + 35.52243804 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3082, + "fid_1": "3059", + "orig_fid": "3059", + "fid_2": "2446", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3083", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96897603, + 35.5224481 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3083, + "fid_1": "3060", + "orig_fid": "3060", + "fid_2": "2447", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3084", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96937624, + 35.52246231 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3084, + "fid_1": "3061", + "orig_fid": "3061", + "fid_2": "2448", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3085", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96535722, + 35.52264249 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3085, + "fid_1": "3062", + "orig_fid": "3062", + "fid_2": "2449", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3086", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96650737, + 35.52281128 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3086, + "fid_1": "3064", + "orig_fid": "3064", + "fid_2": "2450", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.58 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3087", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9665712, + 35.5228438 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3087, + "fid_1": "3065", + "orig_fid": "3065", + "fid_2": "2451", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3088", + "geometry": { + "type": "Point", + "coordinates": [ + 117.966011, + 35.52318725 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3088, + "fid_1": "3067", + "orig_fid": "3067", + "fid_2": "2452", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.44 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3089", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98935761, + 35.52289521 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3089, + "fid_1": "3066", + "orig_fid": "3066", + "fid_2": "2453", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3090", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96807058, + 35.52321851 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3090, + "fid_1": "3068", + "orig_fid": "3068", + "fid_2": "2454", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.46 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3091", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99085837, + 35.52327055 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3091, + "fid_1": "3069", + "orig_fid": "3069", + "fid_2": "2455", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3092", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96408889, + 35.52359671 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3092, + "fid_1": "3070", + "orig_fid": "3070", + "fid_2": "2456", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3093", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96449796, + 35.52362118 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3093, + "fid_1": "3071", + "orig_fid": "3071", + "fid_2": "2457", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3094", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9630127, + 35.52381239 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3094, + "fid_1": "3072", + "orig_fid": "3072", + "fid_2": "2458", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3095", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96433233, + 35.5238781 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3095, + "fid_1": "3073", + "orig_fid": "3073", + "fid_2": "2459", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.81 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3096", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96683533, + 35.52402177 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3096, + "fid_1": "3076", + "orig_fid": "3076", + "fid_2": "2460", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3097", + "geometry": { + "type": "Point", + "coordinates": [ + 117.97031432, + 35.52399566 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3097, + "fid_1": "3074", + "orig_fid": "3074", + "fid_2": "2461", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3098", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9951004, + 35.52398468 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3098, + "fid_1": "3078", + "orig_fid": "3078", + "fid_2": "2462", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3099", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96685519, + 35.52432436 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3099, + "fid_1": "3080", + "orig_fid": "3080", + "fid_2": "2463", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3100", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96286605, + 35.52439932 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3100, + "fid_1": "3082", + "orig_fid": "3082", + "fid_2": "2464", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.5 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3101", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99014523, + 35.52433449 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3101, + "fid_1": "3081", + "orig_fid": "3081", + "fid_2": "2466", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3102", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96235067, + 35.52468045 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3102, + "fid_1": "3084", + "orig_fid": "3084", + "fid_2": "2467", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.98 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3103", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99224021, + 35.52441946 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3103, + "fid_1": "3083", + "orig_fid": "3083", + "fid_2": "2468", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.55 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3104", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99230102, + 35.5248644 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3104, + "fid_1": "3085", + "orig_fid": "3085", + "fid_2": "2469", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.66 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3105", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96276153, + 35.52521028 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3105, + "fid_1": "3089", + "orig_fid": "3089", + "fid_2": "2470", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.25 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3106", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99387971, + 35.52505311 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3106, + "fid_1": "3086", + "orig_fid": "3086", + "fid_2": "2471", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3107", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99209756, + 35.52508564 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3107, + "fid_1": "3087", + "orig_fid": "3087", + "fid_2": "2472", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3108", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99240643, + 35.52513532 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3108, + "fid_1": "3088", + "orig_fid": "3088", + "fid_2": "2473", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3109", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99049542, + 35.52702521 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3109, + "fid_1": "3109", + "orig_fid": "3109", + "fid_2": "2474", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.39 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3110", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98332172, + 35.52709152 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3110, + "fid_1": "3112", + "orig_fid": "3112", + "fid_2": "2475", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3111", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96730813, + 35.5273246 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3111, + "fid_1": "3121", + "orig_fid": "3121", + "fid_2": "2476", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3112", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95627327, + 35.5319014 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3112, + "fid_1": "3175", + "orig_fid": "3175", + "fid_2": "2477", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3113", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96928652, + 35.52497897 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3113, + "fid_1": "3092", + "orig_fid": "3092", + "fid_2": "2478", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.75 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3114", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99335368, + 35.52539829 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3114, + "fid_1": "3090", + "orig_fid": "3090", + "fid_2": "2479", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.56 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3115", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99272305, + 35.52550326 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3115, + "fid_1": "3091", + "orig_fid": "3091", + "fid_2": "2480", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.99 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3116", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96328377, + 35.5275123 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3116, + "fid_1": "3126", + "orig_fid": "3126", + "fid_2": "2481", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3117", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96764061, + 35.52753855 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3117, + "fid_1": "3127", + "orig_fid": "3127", + "fid_2": "2482", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3118", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95927253, + 35.52763115 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3118, + "fid_1": "3130", + "orig_fid": "3130", + "fid_2": "2483", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3119", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95883055, + 35.52965986 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3119, + "fid_1": "3156", + "orig_fid": "3156", + "fid_2": "2484", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.83 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3120", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9873408, + 35.52362003 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3120, + "fid_1": "3093", + "orig_fid": "3093", + "fid_2": "2485", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3121", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96151013, + 35.52581831 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3121, + "fid_1": "3094", + "orig_fid": "3094", + "fid_2": "2486", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3122", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96564238, + 35.52560991 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3122, + "fid_1": "3096", + "orig_fid": "3096", + "fid_2": "2487", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3123", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98244148, + 35.52620051 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3123, + "fid_1": "3098", + "orig_fid": "3098", + "fid_2": "2488", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3124", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96130356, + 35.52645174 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3124, + "fid_1": "3102", + "orig_fid": "3102", + "fid_2": "2489", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3125", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98265055, + 35.52636277 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3125, + "fid_1": "3101", + "orig_fid": "3101", + "fid_2": "2490", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.31 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3126", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99023626, + 35.52631558 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3126, + "fid_1": "3099", + "orig_fid": "3099", + "fid_2": "2491", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.49 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3127", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96705223, + 35.52669879 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3127, + "fid_1": "3103", + "orig_fid": "3103", + "fid_2": "2493", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3128", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96582431, + 35.5267976 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3128, + "fid_1": "3105", + "orig_fid": "3105", + "fid_2": "2494", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3129", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99121762, + 35.52675471 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3129, + "fid_1": "3104", + "orig_fid": "3104", + "fid_2": "2495", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3130", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96606314, + 35.52712116 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3130, + "fid_1": "3113", + "orig_fid": "3113", + "fid_2": "2496", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.62 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3131", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96332704, + 35.52713158 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3131, + "fid_1": "3115", + "orig_fid": "3115", + "fid_2": "2497", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3132", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99323313, + 35.52693659 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3132, + "fid_1": "3107", + "orig_fid": "3107", + "fid_2": "2498", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3133", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96299784, + 35.52733424 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3133, + "fid_1": "3122", + "orig_fid": "3122", + "fid_2": "2499", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.91 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3134", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96028113, + 35.52740056 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3134, + "fid_1": "3123", + "orig_fid": "3123", + "fid_2": "2500", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3135", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98328362, + 35.52725697 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3135, + "fid_1": "3118", + "orig_fid": "3118", + "fid_2": "2501", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.71 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3136", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95948618, + 35.5275137 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3136, + "fid_1": "3125", + "orig_fid": "3125", + "fid_2": "2502", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.64 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3137", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99399594, + 35.52723594 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3137, + "fid_1": "3117", + "orig_fid": "3117", + "fid_2": "2503", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.08 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3138", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96707044, + 35.52748184 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3138, + "fid_1": "3124", + "orig_fid": "3124", + "fid_2": "2504", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.89 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3139", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96503804, + 35.527608 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3139, + "fid_1": "3129", + "orig_fid": "3129", + "fid_2": "2505", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.91 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3140", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96028278, + 35.52773366 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3140, + "fid_1": "3131", + "orig_fid": "3131", + "fid_2": "2506", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.29 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3141", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96031667, + 35.52782983 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3141, + "fid_1": "3133", + "orig_fid": "3133", + "fid_2": "2507", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.74 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3142", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99057854, + 35.52759683 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3142, + "fid_1": "3128", + "orig_fid": "3128", + "fid_2": "2508", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.52 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3143", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96542919, + 35.52781903 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3143, + "fid_1": "3132", + "orig_fid": "3132", + "fid_2": "2509", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.41 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3144", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96220955, + 35.52787248 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3144, + "fid_1": "3134", + "orig_fid": "3134", + "fid_2": "2510", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.72 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3145", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95966709, + 35.52791323 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3145, + "fid_1": "3135", + "orig_fid": "3135", + "fid_2": "2511", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.16 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3146", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96407895, + 35.52664986 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3146, + "fid_1": "3136", + "orig_fid": "3136", + "fid_2": "2512", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.54 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3147", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96115989, + 35.52814079 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3147, + "fid_1": "3139", + "orig_fid": "3139", + "fid_2": "2513", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3148", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9604317, + 35.52819875 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3148, + "fid_1": "3141", + "orig_fid": "3141", + "fid_2": "2514", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3149", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9621902, + 35.52821216 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3149, + "fid_1": "3142", + "orig_fid": "3142", + "fid_2": "2515", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.65 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3150", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9648308, + 35.52826093 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3150, + "fid_1": "3145", + "orig_fid": "3145", + "fid_2": "2516", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3151", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96187516, + 35.52828931 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3151, + "fid_1": "3146", + "orig_fid": "3146", + "fid_2": "2517", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.34 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3152", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99150809, + 35.52802687 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3152, + "fid_1": "3138", + "orig_fid": "3138", + "fid_2": "2518", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3153", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96486463, + 35.52836644 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3153, + "fid_1": "3147", + "orig_fid": "3147", + "fid_2": "2519", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.06 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3154", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98828001, + 35.52824566 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3154, + "fid_1": "3143", + "orig_fid": "3143", + "fid_2": "2520", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3155", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95966338, + 35.52906165 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3155, + "fid_1": "3150", + "orig_fid": "3150", + "fid_2": "2521", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.45 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3156", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98629092, + 35.52888759 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3156, + "fid_1": "3148", + "orig_fid": "3148", + "fid_2": "2522", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.21 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3157", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95974352, + 35.52932188 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3157, + "fid_1": "3152", + "orig_fid": "3152", + "fid_2": "2523", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.73 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3158", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95882951, + 35.52940151 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3158, + "fid_1": "3154", + "orig_fid": "3154", + "fid_2": "2524", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.68 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3159", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95904884, + 35.53312489 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3159, + "fid_1": "3189", + "orig_fid": "3189", + "fid_2": "2525", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3160", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95841794, + 35.52944607 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3160, + "fid_1": "3155", + "orig_fid": "3155", + "fid_2": "2526", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.57 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3161", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9560963, + 35.52966875 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3161, + "fid_1": "3157", + "orig_fid": "3157", + "fid_2": "2527", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.32 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3162", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98780952, + 35.52968771 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3162, + "fid_1": "3158", + "orig_fid": "3158", + "fid_2": "2528", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.18 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3163", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9609375, + 35.52986074 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3163, + "fid_1": "3160", + "orig_fid": "3160", + "fid_2": "2529", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.7 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3164", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96145667, + 35.52986954 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3164, + "fid_1": "3161", + "orig_fid": "3161", + "fid_2": "2530", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.96 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3165", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99690105, + 35.52988742 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3165, + "fid_1": "3159", + "orig_fid": "3159", + "fid_2": "2531", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.86 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3166", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96323543, + 35.53015472 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3166, + "fid_1": "3162", + "orig_fid": "3162", + "fid_2": "2532", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3167", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98451323, + 35.53023171 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3167, + "fid_1": "3164", + "orig_fid": "3164", + "fid_2": "2533", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.48 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3168", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98795156, + 35.5301974 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3168, + "fid_1": "3163", + "orig_fid": "3163", + "fid_2": "2534", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.63 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3169", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98569833, + 35.53026069 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3169, + "fid_1": "3166", + "orig_fid": "3166", + "fid_2": "2535", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.53 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3170", + "geometry": { + "type": "Point", + "coordinates": [ + 117.99629564, + 35.53023476 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3170, + "fid_1": "3165", + "orig_fid": "3165", + "fid_2": "2536", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.23 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3171", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98257222, + 35.53039938 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3171, + "fid_1": "3167", + "orig_fid": "3167", + "fid_2": "2537", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3172", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96203048, + 35.5310899 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3172, + "fid_1": "3170", + "orig_fid": "3170", + "fid_2": "2538", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.95 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3173", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98706803, + 35.53092525 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3173, + "fid_1": "3169", + "orig_fid": "3169", + "fid_2": "2539", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.43 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3174", + "geometry": { + "type": "Point", + "coordinates": [ + 117.9556961, + 35.53151046 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3174, + "fid_1": "3171", + "orig_fid": "3171", + "fid_2": "2540", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.88 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3175", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96139505, + 35.53157538 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3175, + "fid_1": "3172", + "orig_fid": "3172", + "fid_2": "2541", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3176", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95858396, + 35.53162085 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3176, + "fid_1": "3173", + "orig_fid": "3173", + "fid_2": "2542", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.69 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3177", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95939479, + 35.53182797 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3177, + "fid_1": "3174", + "orig_fid": "3174", + "fid_2": "2543", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 2.4 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3178", + "geometry": { + "type": "Point", + "coordinates": [ + 117.96323769, + 35.53189053 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3178, + "fid_1": "3176", + "orig_fid": "3176", + "fid_2": "2544", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3179", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95958994, + 35.53205318 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3179, + "fid_1": "3177", + "orig_fid": "3177", + "fid_2": "2545", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.27 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3180", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95942104, + 35.53253901 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3180, + "fid_1": "3181", + "orig_fid": "3181", + "fid_2": "2546", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.01 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3181", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95818498, + 35.5329522 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3181, + "fid_1": "3182", + "orig_fid": "3182", + "fid_2": "2547", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.97 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3182", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95850309, + 35.53300625 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3182, + "fid_1": "3183", + "orig_fid": "3183", + "fid_2": "2548", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.61 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3183", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95711543, + 35.53302857 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3183, + "fid_1": "3185", + "orig_fid": "3185", + "fid_2": "2549", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.37 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3184", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95917741, + 35.53309233 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3184, + "fid_1": "3188", + "orig_fid": "3188", + "fid_2": "2550", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.03 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3185", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95862406, + 35.53323963 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3185, + "fid_1": "3192", + "orig_fid": "3192", + "fid_2": "2551", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 3.78 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3186", + "geometry": { + "type": "Point", + "coordinates": [ + 117.98445764, + 35.5331548 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3186, + "fid_1": "3190", + "orig_fid": "3190", + "fid_2": "2552", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.87 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3187", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95898982, + 35.53341014 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3187, + "fid_1": "3193", + "orig_fid": "3193", + "fid_2": "2553", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 0.93 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3188", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95844536, + 35.53347149 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3188, + "fid_1": "3195", + "orig_fid": "3195", + "fid_2": "2554", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 1.28 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3189", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95809812, + 35.53376578 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3189, + "fid_1": "3198", + "orig_fid": "3198", + "fid_2": "2555", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.47 + } + }, + { + "type": "Feature", + "id": "hebingshuiyuandibeibushan.3190", + "geometry": { + "type": "Point", + "coordinates": [ + 117.95854507, + 35.5338559 + ] + }, + "geometry_name": "geom", + "properties": { + "id": 3190, + "fid_1": "3199", + "orig_fid": "3199", + "fid_2": "2556", + "mc": "补充水源地", + "xsl": "0", + "dz": "", + "bz": "", + "jczt": "", + "sfhs": "", + "kyzt": "", + "sfzcsb": "", + "jlstjl": "", + "xszt": "", + "appid": "", + "lx": "补充水源地", + "qufen": "备用水源地", + "creater_id": "1", + "is_del": 0, + "mag": 4.73 + } + } + ], + "totalFeatures": 3190, + "numberMatched": 3190, + "numberReturned": 3190, + "timeStamp": "2024-07-18T08:24:48.200Z", + "crs": { + "type": "name", + "properties": { + "name": "urn:ogc:def:crs:EPSG::4326" + } + } +} \ No newline at end of file diff --git a/src/views/demo/tiankongdi/changearea/MapList/index.vue b/src/views/demo/tiankongdi/changearea/MapList/index.vue index d77b85ac..82c677d4 100644 --- a/src/views/demo/tiankongdi/changearea/MapList/index.vue +++ b/src/views/demo/tiankongdi/changearea/MapList/index.vue @@ -426,11 +426,20 @@ const getCollectList = () => { getInfoList(); }; const showSplitPolygon = ref(false); +const handlerRevertPolygon = (item)=>{ + +} const handlerSplitPolygon = (item) => { getCaseInfoById({id:item.processid}).then(res => { - showInfoData.value = res - showInfoData.value['processid'] = item.processid; - showSplitPolygon.value = true + + if(res){ + showInfoData.value = res + showInfoData.value['processid'] = item.processid; + showSplitPolygon.value = true + }else{ + message.error("数据为空"); + } + }) } const dataListSort = (type) => { @@ -484,8 +493,17 @@ function closeModal() { } function handleSuccess() {} const handleOperateClick = (e: Event) => { - handlerSplitPolygon(selectItem.value); - console.log('clickEEEEE', e,selectItem.value); + + if(!selectItem.value){ + message.warning("选择需要操作的数据"); + } + + if(e['key'] == 1){ + handlerSplitPolygon(selectItem.value); + }else if(e['key'] == 2){ + handlerRevertPolygon(selectItem.value) + } + }; diff --git a/src/views/demo/tiankongdi/curbspotcity/MapList/SplitPolygonModal/index.vue b/src/views/demo/tiankongdi/curbspotcity/MapList/SplitPolygonModal/index.vue index aa0cf628..2bd61fcc 100644 --- a/src/views/demo/tiankongdi/curbspotcity/MapList/SplitPolygonModal/index.vue +++ b/src/views/demo/tiankongdi/curbspotcity/MapList/SplitPolygonModal/index.vue @@ -678,7 +678,7 @@ params.parts.push(polygon); }) console.log("params",params); - + splitCase(params).then(res=>{ if(res.code == 200){ createMessage.success("操作成功!");