csk-gis-frame-work 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/baseSetting/config/mapConfig.js +48 -0
- package/baseSetting/gis-data/examples-data/3DTile/Tileset/tileset.json +124 -0
- package/baseSetting/gis-data/examples-data/client-analysis/buffer-hash-4.json +1 -0
- package/baseSetting/gis-data/examples-data/client-analysis/point.json +47 -0
- package/baseSetting/gis-data/examples-data/echarts/griddata.js +3 -0
- package/baseSetting/gis-data/examples-data/echarts/line-bus.json +1 -0
- package/baseSetting/gis-data/examples-data/echarts/weibo.geojson +1 -0
- package/baseSetting/gis-data/examples-data/echarts/weibo.json +1 -0
- package/baseSetting/gis-data/examples-data/echartsgl/beijing/buildings.xml +1 -0
- package/baseSetting/gis-data/examples-data/echartsgl/newyork/buildings.json +17178 -0
- package/baseSetting/gis-data/examples-data/echartsgl/shenzhen//346/267/261/345/234/263/350/275/250/350/277/271/347/272/277.json +24 -0
- package/baseSetting/gis-data/examples-data/echartsgl/shenzhen//351/201/223/350/267/25703.json +1949 -0
- package/baseSetting/gis-data/examples-data/geojson/animate-marker.json +15007 -0
- package/baseSetting/gis-data/examples-data/geojson/arc.js +256 -0
- package/baseSetting/gis-data/examples-data/geojson/chiacgo_bounds.geojson +9 -0
- package/baseSetting/gis-data/examples-data/geojson/china-city.geojson +355 -0
- package/baseSetting/gis-data/examples-data/geojson/china-xian.geojson +2428 -0
- package/baseSetting/gis-data/examples-data/geojson/china.geojson +42 -0
- package/baseSetting/gis-data/examples-data/geojson/countries.geojson +181 -0
- package/baseSetting/gis-data/examples-data/geojson/line-string.json +1020 -0
- package/baseSetting/gis-data/examples-data/geojson/washington_bounds.geojson +6 -0
- package/baseSetting/gis-data/examples-data/geojson/washington_point.geojson +153 -0
- package/baseSetting/gis-data/examples-data/geojson/wuhan_bounds.geojson +29 -0
- package/baseSetting/gis-data/examples-data/kml/Earthquake_2012.js +203 -0
- package/baseSetting/gis-data/examples-data/kml/KML_Samples.kml +915 -0
- package/baseSetting/gis-data/examples-data/mapbox/changestyle.json +2980 -0
- package/baseSetting/gis-data/examples-data/mapbox/sprite.json +3634 -0
- package/baseSetting/gis-data/examples-data/mapv/china-point.geojson +2 -0
- package/baseSetting/gis-data/examples-data/mapv/china-point.json +2 -0
- package/baseSetting/gis-data/examples-data/mapv/china.geojson +40 -0
- package/baseSetting/gis-data/examples-data/mapv/china.json +40 -0
- package/baseSetting/gis-data/examples-data/model/Airplane/Airplane.dae +333 -0
- package/baseSetting/gis-data/examples-data/model/Airplane/Airplane.gltf +802 -0
- package/baseSetting/gis-data/examples-data/model/fireExtinguisher.gltf +455 -0
- package/baseSetting/gis-data/sources_layers.js +2002 -0
- package/baseSetting/images/map/done.png +0 -0
- package/baseSetting/images/map/error.png +0 -0
- package/baseSetting/images/map/invalid.png +0 -0
- package/baseSetting/images/map/map.png +0 -0
- package/baseSetting/images/map/point.png +0 -0
- package/baseSetting/images/map/todo.png +0 -0
- package/baseSetting/style/DevMapConfig.js +33 -0
- package/baseSetting/style/getDefaultFonts.py +23 -0
- package/baseSetting/utils/TokenUtils.js +15 -0
- package/index.js +42 -0
- package/mapboxgl/js/common/AnnotationLayer.js +341 -0
- package/mapboxgl/js/common/BoundaryLayer.js +271 -0
- package/mapboxgl/js/common/ClusterLayer.js +498 -0
- package/mapboxgl/js/common/FlowLayer.js +234 -0
- package/mapboxgl/js/common/FlowingLayer.js +325 -0
- package/mapboxgl/js/common/HeatmapLayer.js +280 -0
- package/mapboxgl/js/common/ILayer.js +89 -0
- package/mapboxgl/js/common/LocationLayer.js +791 -0
- package/mapboxgl/js/common/PulserLayer.js +244 -0
- package/mapboxgl/js/common/SelectionLayer.js +315 -0
- package/mapboxgl/js/common/SimpleCircleLayer.js +465 -0
- package/mapboxgl/js/common/SimpleFillLayer.js +475 -0
- package/mapboxgl/js/common/SimpleLineLayer.js +430 -0
- package/mapboxgl/js/common/SimpleMarkerLayer.js +468 -0
- package/mapboxgl/js/common/StatsCircleLayer.js +351 -0
- package/mapboxgl/js/common/TrackingLayer.js +845 -0
- package/mapboxgl/js/common/VideoClusterLayer.js +539 -0
- package/mapboxgl/js/common/VideoLayer.js +334 -0
- package/mapboxgl/js/drainer/DrainEntityAnalystProvider.js +550 -0
- package/mapboxgl/js/drainer/DrainEntityProvider.js +557 -0
- package/mapboxgl/js/drainer/DrainEntityStatsLayer.js +144 -0
- package/mapboxgl/js/drainer/DrainUnitLayer.js +130 -0
- package/mapboxgl/js/drainer/DrainageEntityLayer.js +145 -0
- package/mapboxgl/js/drainer/DrainageEntityProvider.js +222 -0
- package/mapboxgl/js/drainer/DrainageUnitFlowLayer.js +137 -0
- package/mapboxgl/js/drainer/DrainageUnitlineLayer.js +154 -0
- package/mapboxgl/js/drainer/DrainageUnitlineProvider.js +140 -0
- package/mapboxgl/js/drainer/DrainerSearchProvider.js +274 -0
- package/mapboxgl/js/draw/CircleDrawing.js +238 -0
- package/mapboxgl/js/draw/DrawingProvider.js +533 -0
- package/mapboxgl/js/draw/DynamicBuffer.js +220 -0
- package/mapboxgl/js/draw/PointDrawing.js +189 -0
- package/mapboxgl/js/draw/PolygonDrawing.js +538 -0
- package/mapboxgl/js/draw/PolylineDrawing.js +597 -0
- package/mapboxgl/js/draw/RectangleDrawing.js +217 -0
- package/mapboxgl/js/draw/SplitPoylgon.js +214 -0
- package/mapboxgl/js/draw/mapConfig.js +240 -0
- package/mapboxgl/js/dynamic/BuildingsiteLayer.js +179 -0
- package/mapboxgl/js/dynamic/BusinessProvider.js +547 -0
- package/mapboxgl/js/dynamic/DefectLayer.js +137 -0
- package/mapboxgl/js/dynamic/EventLayer.js +151 -0
- package/mapboxgl/js/dynamic/StaffLayer.js +233 -0
- package/mapboxgl/js/dynamic/StoreLayer.js +143 -0
- package/mapboxgl/js/dynamic/VehicleLayer.js +236 -0
- package/mapboxgl/js/dynamic/WorkorderLayer.js +110 -0
- package/mapboxgl/js/editor/DeleteMarkerLayer.js +184 -0
- package/mapboxgl/js/editor/EditorProvider.js +2270 -0
- package/mapboxgl/js/editor/SurveyProvider.js +253 -0
- package/mapboxgl/js/equipment/AlarmLayer.js +117 -0
- package/mapboxgl/js/equipment/EquipCODLayer.js +119 -0
- package/mapboxgl/js/equipment/EquipDoorLayer.js +119 -0
- package/mapboxgl/js/equipment/EquipFloodedLayer.js +118 -0
- package/mapboxgl/js/equipment/EquipFlowLayer.js +119 -0
- package/mapboxgl/js/equipment/EquipFlowingLayer.js +103 -0
- package/mapboxgl/js/equipment/EquipLiquidLayer.js +121 -0
- package/mapboxgl/js/equipment/EquipNh3Layer.js +119 -0
- package/mapboxgl/js/equipment/EquipOtherLayer.js +123 -0
- package/mapboxgl/js/equipment/EquipPumpLayer.js +119 -0
- package/mapboxgl/js/equipment/EquipRaingaugeLayer.js +116 -0
- package/mapboxgl/js/equipment/EquipSpeedLayer.js +119 -0
- package/mapboxgl/js/equipment/EquipWellLayer.js +119 -0
- package/mapboxgl/js/equipment/EquipmentLayer.js +116 -0
- package/mapboxgl/js/equipment/EquipmentProvider.js +545 -0
- package/mapboxgl/js/equipment/EquippHLayer.js +119 -0
- package/mapboxgl/js/equipment/OverflowLayer.js +167 -0
- package/mapboxgl/js/equipment/WarnLayer.js +120 -0
- package/mapboxgl/js/event/EventBranchPipeLayer.js +108 -0
- package/mapboxgl/js/event/EventDefectLayer.js +119 -0
- package/mapboxgl/js/event/EventDrainerLayer.js +119 -0
- package/mapboxgl/js/event/EventLayer.js +123 -0
- package/mapboxgl/js/event/EventMixLayer.js +119 -0
- package/mapboxgl/js/event/EventOtherLayer.js +119 -0
- package/mapboxgl/js/event/EventOtherWaterLayer.js +109 -0
- package/mapboxgl/js/event/EventPolicyWaterLayer.js +119 -0
- package/mapboxgl/js/event/EventPourLayer.js +119 -0
- package/mapboxgl/js/event/EventProvider.js +426 -0
- package/mapboxgl/js/event/EventWaterLayer.js +108 -0
- package/mapboxgl/js/facility/DitchLayer.js +171 -0
- package/mapboxgl/js/facility/FacilityProvider.js +523 -0
- package/mapboxgl/js/facility/FlapLayer.js +196 -0
- package/mapboxgl/js/facility/GateLayer.js +166 -0
- package/mapboxgl/js/facility/InterceptionLayer.js +166 -0
- package/mapboxgl/js/facility/InterceptionsewLayer.js +166 -0
- package/mapboxgl/js/facility/OutfallLayer.js +166 -0
- package/mapboxgl/js/facility/PatrolareaLayer.js +177 -0
- package/mapboxgl/js/facility/RaininletLayer.js +166 -0
- package/mapboxgl/js/facility/StorageLayer.js +166 -0
- package/mapboxgl/js/geog/AreaBoundaryProvider.js +282 -0
- package/mapboxgl/js/geog/BoundaryProvider.js +266 -0
- package/mapboxgl/js/geog/GMLProvider.js +146 -0
- package/mapboxgl/js/geog/GeoJsonProvider.js +336 -0
- package/mapboxgl/js/geog/IconProvider.js +481 -0
- package/mapboxgl/js/geog/IndexedDBProvider.js +467 -0
- package/mapboxgl/js/geog/LayerProvider.js +275 -0
- package/mapboxgl/js/geog/LocationProvider.js +227 -0
- package/mapboxgl/js/geog/MapProvider.js +179 -0
- package/mapboxgl/js/geog/SelectionProvider.js +99 -0
- package/mapboxgl/js/geog/WKTProvider.js +180 -0
- package/mapboxgl/js/layers/CircleLayer.js +471 -0
- package/mapboxgl/js/layers/ClusterLayer.js +529 -0
- package/mapboxgl/js/layers/FillLayer.js +407 -0
- package/mapboxgl/js/layers/FlowingLayer.js +315 -0
- package/mapboxgl/js/layers/HeatmapLayer.js +263 -0
- package/mapboxgl/js/layers/IconClusterLayer.js +497 -0
- package/mapboxgl/js/layers/LineLayer.js +442 -0
- package/mapboxgl/js/layers/MarkerLayer.js +504 -0
- package/mapboxgl/js/layers/Pulser.js +84 -0
- package/mapboxgl/js/layers/PulserLayer.js +161 -0
- package/mapboxgl/js/layers/TextLayer.js +352 -0
- package/mapboxgl/js/pipe/BufferLayer.js +142 -0
- package/mapboxgl/js/pipe/DrainageAreaLayer.js +272 -0
- package/mapboxgl/js/pipe/DrainageAreaProvider.js +823 -0
- package/mapboxgl/js/pipe/DrainagePointLayer.js +258 -0
- package/mapboxgl/js/pipe/LayerManagerProvider.js +1499 -0
- package/mapboxgl/js/pipe/MapQueryProvider.js +879 -0
- package/mapboxgl/js/pipe/QueryResultsLayer.js +799 -0
- package/mapboxgl/js/pipeline/ConnholeLayer.js +134 -0
- package/mapboxgl/js/pipeline/LabelLayer.js +310 -0
- package/mapboxgl/js/pipeline/ManholeLayer.js +563 -0
- package/mapboxgl/js/pipeline/PipeflowLayer.js +490 -0
- package/mapboxgl/js/pipeline/PipelineErrorLayer.js +180 -0
- package/mapboxgl/js/pipeline/PipelineFlowLayer.js +213 -0
- package/mapboxgl/js/pipeline/PipelineLayer.js +509 -0
- package/mapboxgl/js/pipeline/PipenetErrorProvider.js +352 -0
- package/mapboxgl/js/pipeline/PipenetFaultProvider.js +219 -0
- package/mapboxgl/js/pipeline/PipenetInProvider.js +514 -0
- package/mapboxgl/js/pipeline/PipenetMixingFlowLayer.js +329 -0
- package/mapboxgl/js/pipeline/PipenetMixingLayer.js +155 -0
- package/mapboxgl/js/pipeline/PipenetMixingProvider.js +163 -0
- package/mapboxgl/js/pipeline/PipenetProvider.js +1042 -0
- package/mapboxgl/js/pipenet/PipenetAnalystProvider.js +393 -0
- package/mapboxgl/js/pipenet/PipenetConnectivityProvider.js +166 -0
- package/mapboxgl/js/pipenet/PipenetDownstreamProvider.js +276 -0
- package/mapboxgl/js/pipenet/PipenetFlowingLayer.js +312 -0
- package/mapboxgl/js/pipenet/PipenetServiceRangeProvider.js +386 -0
- package/mapboxgl/js/pipenet/PipenetUpdownstreamProvider.js +507 -0
- package/mapboxgl/js/pipenet/PipenetUpstreamProvider.js +311 -0
- package/mapboxgl/js/pipenet/PipenetWhereaboutsProvider.js +342 -0
- package/mapboxgl/js/plant/FlylineLayer.js +304 -0
- package/mapboxgl/js/plant/PlantLayer.js +166 -0
- package/mapboxgl/js/plant/PlantPumpProvider.js +788 -0
- package/mapboxgl/js/plant/PumpLayer.js +166 -0
- package/mapboxgl/js/plant/RuralSewageLayer.js +166 -0
- package/mapboxgl/js/plant/ServiceRangeLayer.js +130 -0
- package/mapboxgl/js/plant/VideoProvider.js +145 -0
- package/mapboxgl/js/three/ThreeGltfProvider.js +245 -0
- package/mapboxgl/js/utils/CesiumUtils.js +109 -0
- package/mapboxgl/js/utils/ColorUtils.js +48 -0
- package/mapboxgl/js/utils/CommonUtils.js +65 -0
- package/mapboxgl/js/utils/DataUtils.js +138 -0
- package/mapboxgl/js/utils/GeoJsonUtils.js +357 -0
- package/mapboxgl/js/utils/GeogUtils.js +300 -0
- package/mapboxgl/js/utils/LayerUtils.js +160 -0
- package/mapboxgl/js/utils/MapUtils.js +128 -0
- package/mapboxgl/js/utils/NetworkUtils.js +21 -0
- package/mapboxgl/js/utils/PipenetUtils.js +100 -0
- package/mapboxgl/js/utils/ProjUtils.js +32 -0
- package/mapboxgl/js/utils/SpatialRefUtils.js +198 -0
- package/mapboxgl/js/utils/SvgUtils.js +133 -0
- package/mapboxgl/js/utils/VerifyUtils.js +73 -0
- package/mapboxgl/js/widget/Pulser.js +88 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/0-255.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/1024-1279.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/10240-10495.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/10496-10751.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/10752-11007.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/11008-11263.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/11264-11519.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/11520-11775.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/11776-12031.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/12032-12287.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/12288-12543.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/12544-12799.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/1280-1535.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/12800-13055.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/13056-13311.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/13312-13567.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/13568-13823.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/13824-14079.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/14080-14335.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/14336-14591.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/14592-14847.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/14848-15103.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/15104-15359.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/1536-1791.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/15360-15615.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/15616-15871.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/15872-16127.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/16128-16383.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/16384-16639.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/16640-16895.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/16896-17151.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/17152-17407.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/17408-17663.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/17664-17919.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/1792-2047.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/17920-18175.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/18176-18431.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/18432-18687.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/18688-18943.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/18944-19199.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/19200-19455.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/19456-19711.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/19712-19967.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/19968-20223.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/20224-20479.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/2048-2303.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/20480-20735.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/20736-20991.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/20992-21247.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/21248-21503.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/21504-21759.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/21760-22015.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/22016-22271.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/22272-22527.pbf +154 -9
- package/mapboxgl/style/fonts/Microsoft YaHei/22528-22783.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/22784-23039.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/2304-2559.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/23040-23295.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/23296-23551.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/23552-23807.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/23808-24063.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/24064-24319.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/24320-24575.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/24576-24831.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/24832-25087.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/25088-25343.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/25344-25599.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/256-511.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/2560-2815.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/25600-25855.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/25856-26111.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/26112-26367.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/26368-26623.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/26624-26879.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/26880-27135.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/27136-27391.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/27392-27647.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/27648-27903.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/27904-28159.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/2816-3071.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/28160-28415.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/28416-28671.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/28672-28927.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/28928-29183.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/29184-29439.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/29440-29695.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/29696-29951.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/29952-30207.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/30208-30463.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/30464-30719.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/3072-3327.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/30720-30975.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/30976-31231.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/31232-31487.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/31488-31743.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/31744-31999.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/32000-32255.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/32256-32511.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/32512-32767.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/32768-33023.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/33024-33279.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/3328-3583.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/33280-33535.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/33536-33791.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/33792-34047.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/34048-34303.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/34304-34559.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/34560-34815.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/34816-35071.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/35072-35327.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/35328-35583.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/35584-35839.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/3584-3839.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/35840-36095.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/36096-36351.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/36352-36607.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/36608-36863.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/36864-37119.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/37120-37375.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/37376-37631.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/37632-37887.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/37888-38143.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/38144-38399.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/3840-4095.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/38400-38655.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/38656-38911.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/38912-39167.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/39168-39423.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/39424-39679.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/39680-39935.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/39936-40191.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/40192-40447.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/40448-40703.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/40704-40959.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/4096-4351.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/40960-41215.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/41216-41471.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/41472-41727.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/41728-41983.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/41984-42239.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/42240-42495.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/42496-42751.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/42752-43007.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/43008-43263.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/43264-43519.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/4352-4607.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/43520-43775.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/43776-44031.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/44032-44287.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/44288-44543.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/44544-44799.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/44800-45055.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/45056-45311.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/45312-45567.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/45568-45823.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/45824-46079.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/4608-4863.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/46080-46335.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/46336-46591.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/46592-46847.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/46848-47103.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/47104-47359.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/47360-47615.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/47616-47871.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/47872-48127.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/48128-48383.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/48384-48639.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/4864-5119.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/48640-48895.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/48896-49151.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/49152-49407.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/49408-49663.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/49664-49919.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/49920-50175.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/50176-50431.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/50432-50687.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/50688-50943.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/50944-51199.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/512-767.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/5120-5375.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/51200-51455.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/51456-51711.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/51712-51967.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/51968-52223.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/52224-52479.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/52480-52735.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/52736-52991.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/52992-53247.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/53248-53503.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/53504-53759.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/5376-5631.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/53760-54015.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/54016-54271.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/54272-54527.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/54528-54783.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/54784-55039.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/55040-55295.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/55296-55551.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/55552-55807.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/55808-56063.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/56064-56319.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/5632-5887.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/56320-56575.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/56576-56831.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/56832-57087.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/57088-57343.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/57344-57599.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/57600-57855.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/57856-58111.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/58112-58367.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/58368-58623.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/58624-58879.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/5888-6143.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/58880-59135.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/59136-59391.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/59392-59647.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/59648-59903.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/59904-60159.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/60160-60415.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/60416-60671.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/60672-60927.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/60928-61183.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/61184-61439.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/6144-6399.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/61440-61695.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/61696-61951.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/61952-62207.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/62208-62463.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/62464-62719.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/62720-62975.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/62976-63231.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/63232-63487.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/63488-63743.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/63744-63999.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/6400-6655.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/64000-64255.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/64256-64511.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/64512-64767.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/64768-65023.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/65024-65279.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/65280-65535.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/6656-6911.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/6912-7167.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/7168-7423.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/7424-7679.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/768-1023.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/7680-7935.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/7936-8191.pbf +3 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/8192-8447.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/8448-8703.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/8704-8959.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/8960-9215.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/9216-9471.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/9472-9727.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/9728-9983.pbf +0 -0
- package/mapboxgl/style/fonts/Microsoft YaHei/9984-10239.pbf +4 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/0-255.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/1024-1279.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/10240-10495.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/10496-10751.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/10752-11007.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/11008-11263.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/11264-11519.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/11520-11775.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/11776-12031.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/12032-12287.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/12288-12543.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/12544-12799.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/1280-1535.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/12800-13055.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/13056-13311.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/13312-13567.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/13568-13823.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/13824-14079.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/14080-14335.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/14336-14591.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/14592-14847.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/14848-15103.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/16384-16639.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/16640-16895.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/16896-17151.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/17152-17407.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/1792-2047.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/18432-18687.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/19968-20223.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/20224-20479.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/2048-2303.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/20736-20991.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/21248-21503.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/21504-21759.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/21760-22015.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/22016-22271.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/22272-22527.pbf +118 -19
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/22528-22783.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/22784-23039.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/2304-2559.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/23040-23295.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/23552-23807.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/24064-24319.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/24320-24575.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/24576-24831.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/24832-25087.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/25088-25343.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/25344-25599.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/256-511.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/2560-2815.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/25600-25855.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/25856-26111.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/26112-26367.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/26368-26623.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/2816-3071.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/3072-3327.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/31744-31999.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/32000-32255.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/32256-32511.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/32512-32767.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/32768-33023.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/33024-33279.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/3328-3583.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/33536-33791.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/33792-34047.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/34048-34303.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/34304-34559.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/34560-34815.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/34816-35071.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/35072-35327.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/35328-35583.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/3584-3839.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/35840-36095.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/36096-36351.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/36352-36607.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/36608-36863.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/37120-37375.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/37376-37631.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/37888-38143.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/38144-38399.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/38400-38655.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/38656-38911.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/38912-39167.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/39168-39423.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/39424-39679.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/39680-39935.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/39936-40191.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/40448-40703.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/40704-40959.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/40960-41215.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/41216-41471.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/41472-41727.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/41728-41983.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/41984-42239.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/42240-42495.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/42496-42751.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/42752-43007.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/43008-43263.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/43264-43519.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/43776-44031.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/44032-44287.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/44288-44543.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/44544-44799.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/44800-45055.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/45056-45311.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/45312-45567.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/45568-45823.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/46080-46335.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/46336-46591.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/46592-46847.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/46848-47103.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/47104-47359.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/47360-47615.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/47872-48127.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/48128-48383.pbf +78 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/48384-48639.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/49664-49919.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/50176-50431.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/50432-50687.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/50688-50943.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/50944-51199.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/512-767.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/5120-5375.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/51200-51455.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/51456-51711.pbf +117 -4
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/51712-51967.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/51968-52223.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/52480-52735.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/52736-52991.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/52992-53247.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/5376-5631.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/5632-5887.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/5888-6143.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/6144-6399.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/6400-6655.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/6656-6911.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/6912-7167.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/7168-7423.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/7424-7679.pbf +3 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/7680-7935.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/8192-8447.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/8448-8703.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/8704-8959.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/8960-9215.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/9216-9471.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/9472-9727.pbf +0 -0
- package/mapboxgl/style/fonts/Open Sans Regular,Arial Unicode MS Regular/9984-10239.pbf +0 -0
- package/mapboxgl/style/sprite/dark/sprite.json +1 -0
- package/mapboxgl/style/sprite/dark/sprite.png +0 -0
- package/mapboxgl/style/sprite/dark/sprite@2x.json +1 -0
- package/mapboxgl/style/sprite/dark/sprite@2x.png +0 -0
- package/mapboxgl/utils/mapbox.js +3821 -0
- package/mapboxgl/utils/mapbox_native.js +2037 -0
- package/mapboxgl/utils/mapboxgl.md +138 -0
- package/mapgis/js/datalayer/arcgis-layer/ArcGISMapImageLayer.js +586 -0
- package/mapgis/js/datalayer/arcgis-layer/ArcGISTileLayer.js +515 -0
- package/mapgis/js/datalayer/arcgis-layer/ArcGISVectorTileLayer.js +907 -0
- package/mapgis/js/datalayer/common-layer/Cesium3DTilesCacheLayer.js +1036 -0
- package/mapgis/js/datalayer/common-layer/EchartsLayer.js +861 -0
- package/mapgis/js/datalayer/igs-layer/IGSFeatureLayer.js +863 -0
- package/mapgis/js/datalayer/igs-layer/IGSImageryLayer.js +460 -0
- package/mapgis/js/datalayer/igs-layer/IGSImageryTileLayer.js +404 -0
- package/mapgis/js/datalayer/igs-layer/IGSMapImageLayer.js +607 -0
- package/mapgis/js/datalayer/igs-layer/IGSTileLayer.js +397 -0
- package/mapgis/js/datalayer/igs-layer/IGSVectorTileLayer.js +580 -0
- package/mapgis/js/datalayer/igs-layer/ISSceneLayer.js +328 -0
- package/mapgis/js/datalayer/igs-layer/ImageryLayer.js +463 -0
- package/mapgis/js/datalayer/igs-layer/ImageryTileLayer.js +413 -0
- package/mapgis/js/datalayer/index.js +206 -0
- package/mapgis/js/datalayer/ogc-layer/wfsLayer.js +670 -0
- package/mapgis/js/datalayer/ogc-layer/wmsLayer.js +418 -0
- package/mapgis/js/datalayer/ogc-layer/wmtsLayer.js +419 -0
- package/mapgis/utils/mapgis-common.js +2945 -0
- package/package.json +31 -0
|
@@ -0,0 +1,2980 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 8,
|
|
3
|
+
"name": "OSM全中国经纬度 Style",
|
|
4
|
+
"metadata": {
|
|
5
|
+
"mapbox:autocomposite": false,
|
|
6
|
+
"mapbox:type": "template",
|
|
7
|
+
"maputnik:renderer": "mbgljs",
|
|
8
|
+
"openmaptiles:version": "3.x"
|
|
9
|
+
},
|
|
10
|
+
"sources": {
|
|
11
|
+
"OSM全中国经纬度": {
|
|
12
|
+
"type": "vector",
|
|
13
|
+
"tiles": [
|
|
14
|
+
"http://develop.smaryun.com:6163/igs/rest/mrms/tile/OSM全中国经纬度/{z}/{y}/{x}?type=cpbf"
|
|
15
|
+
],
|
|
16
|
+
"minZoom": 0,
|
|
17
|
+
"maxZoom": 10
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"sprite": "http://develop.smaryun.com:6163/igs/rest/mrms/vtiles/sprite",
|
|
21
|
+
"glyphs": "http://develop.smaryun.com:6163/igs/rest/mrms/vtiles/fonts/{fontstack}/{range}.pbf",
|
|
22
|
+
"layers": [
|
|
23
|
+
{
|
|
24
|
+
"id": "背景图",
|
|
25
|
+
"type": "fill",
|
|
26
|
+
"source": "OSM全中国经纬度",
|
|
27
|
+
"source-layer": "背景图",
|
|
28
|
+
"minzoom": 0,
|
|
29
|
+
"maxzoom": 10,
|
|
30
|
+
"layout": {
|
|
31
|
+
"visibility": "visible"
|
|
32
|
+
},
|
|
33
|
+
"paint": {
|
|
34
|
+
"fill-outline-color": "rgba(0, 0, 0, 1)",
|
|
35
|
+
"fill-color": "rgba(175,205,220,1.0)"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"id": "省级行政区",
|
|
40
|
+
"type": "fill",
|
|
41
|
+
"source": "OSM全中国经纬度",
|
|
42
|
+
"source-layer": "省级行政区",
|
|
43
|
+
"minzoom": 0,
|
|
44
|
+
"maxzoom": 10,
|
|
45
|
+
"layout": {
|
|
46
|
+
"visibility": "visible"
|
|
47
|
+
},
|
|
48
|
+
"paint": {
|
|
49
|
+
"fill-outline-color": "rgba(0, 0, 0, 1)",
|
|
50
|
+
"fill-color": "rgba(0,0,0,1.0)"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"source": "OSM全中国经纬度",
|
|
55
|
+
"minZoom": 0,
|
|
56
|
+
"maxZoom": 24,
|
|
57
|
+
"type": "fill",
|
|
58
|
+
"key": "观光胜地",
|
|
59
|
+
"id": "观光胜地",
|
|
60
|
+
"description": "观光胜地",
|
|
61
|
+
"info": "观光胜地",
|
|
62
|
+
"layout": { "visibility": "visible" },
|
|
63
|
+
"paint": { "fill-color": "#323432" },
|
|
64
|
+
"source-layer": "观光胜地"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"source": "OSM全中国经纬度",
|
|
68
|
+
"minZoom": 0,
|
|
69
|
+
"maxZoom": 24,
|
|
70
|
+
"type": "fill",
|
|
71
|
+
"key": "公园POI面",
|
|
72
|
+
"id": "公园POI面",
|
|
73
|
+
"description": "公园POI面",
|
|
74
|
+
"info": "公园POI面",
|
|
75
|
+
"layout": { "visibility": "visible" },
|
|
76
|
+
"paint": { "fill-color": "#40635d" },
|
|
77
|
+
"source-layer": "公园POI面"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"source": "OSM全中国经纬度",
|
|
81
|
+
"minZoom": 0,
|
|
82
|
+
"maxZoom": 24,
|
|
83
|
+
"type": "fill",
|
|
84
|
+
"key": "医院",
|
|
85
|
+
"id": "医院",
|
|
86
|
+
"description": "医院",
|
|
87
|
+
"info": "医院",
|
|
88
|
+
"layout": { "visibility": "visible" },
|
|
89
|
+
"paint": { "fill-color": "#4e545f" },
|
|
90
|
+
"source-layer": "医院"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"source": "OSM全中国经纬度",
|
|
94
|
+
"minZoom": 0,
|
|
95
|
+
"maxZoom": 24,
|
|
96
|
+
"type": "fill",
|
|
97
|
+
"key": "大学",
|
|
98
|
+
"id": "大学",
|
|
99
|
+
"description": "大学",
|
|
100
|
+
"info": "大学",
|
|
101
|
+
"layout": { "visibility": "visible" },
|
|
102
|
+
"paint": { "fill-color": "#191A1A" },
|
|
103
|
+
"source-layer": "大学"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"source": "OSM全中国经纬度",
|
|
107
|
+
"minZoom": 0,
|
|
108
|
+
"maxZoom": 24,
|
|
109
|
+
"type": "fill",
|
|
110
|
+
"key": "学校",
|
|
111
|
+
"id": "学校",
|
|
112
|
+
"description": "学校",
|
|
113
|
+
"info": "学校",
|
|
114
|
+
"layout": { "visibility": "visible" },
|
|
115
|
+
"paint": { "fill-color": "#4c575d" },
|
|
116
|
+
"source-layer": "学校"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"source": "OSM全中国经纬度",
|
|
120
|
+
"minZoom": 0,
|
|
121
|
+
"maxZoom": 24,
|
|
122
|
+
"type": "fill",
|
|
123
|
+
"key": "动物园",
|
|
124
|
+
"id": "动物园",
|
|
125
|
+
"description": "动物园",
|
|
126
|
+
"info": "动物园",
|
|
127
|
+
"layout": { "visibility": "visible" },
|
|
128
|
+
"paint": { "fill-color": "#191A1A" },
|
|
129
|
+
"source-layer": "动物园"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"source": "OSM全中国经纬度",
|
|
133
|
+
"minZoom": 0,
|
|
134
|
+
"maxZoom": 24,
|
|
135
|
+
"type": "fill",
|
|
136
|
+
"key": "图书馆",
|
|
137
|
+
"id": "图书馆",
|
|
138
|
+
"description": "图书馆",
|
|
139
|
+
"info": "图书馆",
|
|
140
|
+
"layout": { "visibility": "visible" },
|
|
141
|
+
"paint": { "fill-color": "#191A1A" },
|
|
142
|
+
"source-layer": "图书馆"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"source": "OSM全中国经纬度",
|
|
146
|
+
"minZoom": 0,
|
|
147
|
+
"maxZoom": 24,
|
|
148
|
+
"type": "fill",
|
|
149
|
+
"key": "高尔夫",
|
|
150
|
+
"id": "高尔夫",
|
|
151
|
+
"description": "高尔夫",
|
|
152
|
+
"info": "高尔夫",
|
|
153
|
+
"layout": { "visibility": "visible" },
|
|
154
|
+
"paint": { "fill-color": "#40635d" },
|
|
155
|
+
"source-layer": "高尔夫"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"source": "OSM全中国经纬度",
|
|
159
|
+
"minZoom": 0,
|
|
160
|
+
"maxZoom": 24,
|
|
161
|
+
"type": "fill",
|
|
162
|
+
"key": "体育馆",
|
|
163
|
+
"id": "体育馆",
|
|
164
|
+
"description": "体育馆",
|
|
165
|
+
"info": "体育馆",
|
|
166
|
+
"layout": { "visibility": "visible" },
|
|
167
|
+
"paint": { "fill-color": "#40635d" },
|
|
168
|
+
"source-layer": "体育馆"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"source": "OSM全中国经纬度",
|
|
172
|
+
"minZoom": 0,
|
|
173
|
+
"maxZoom": 24,
|
|
174
|
+
"type": "fill",
|
|
175
|
+
"key": "POI",
|
|
176
|
+
"id": "POI",
|
|
177
|
+
"description": "POI",
|
|
178
|
+
"info": "POI",
|
|
179
|
+
"layout": { "visibility": "none" },
|
|
180
|
+
"paint": {},
|
|
181
|
+
"source-layer": "POI"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"source": "OSM全中国经纬度",
|
|
185
|
+
"minZoom": 0,
|
|
186
|
+
"maxZoom": 24,
|
|
187
|
+
"type": "fill",
|
|
188
|
+
"key": "矮树地",
|
|
189
|
+
"id": "矮树地",
|
|
190
|
+
"description": "矮树地",
|
|
191
|
+
"info": "矮树地",
|
|
192
|
+
"layout": { "visibility": "visible" },
|
|
193
|
+
"paint": { "fill-color": "#40635d" },
|
|
194
|
+
"source-layer": "矮树地"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"source": "OSM全中国经纬度",
|
|
198
|
+
"minZoom": 0,
|
|
199
|
+
"maxZoom": 24,
|
|
200
|
+
"type": "fill",
|
|
201
|
+
"key": "草地",
|
|
202
|
+
"id": "草地",
|
|
203
|
+
"description": "草地",
|
|
204
|
+
"info": "草地",
|
|
205
|
+
"layout": { "visibility": "visible" },
|
|
206
|
+
"paint": { "fill-color": " #343332" },
|
|
207
|
+
"source-layer": "草地"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"source": "OSM全中国经纬度",
|
|
211
|
+
"minZoom": 0,
|
|
212
|
+
"maxZoom": 24,
|
|
213
|
+
"type": "fill",
|
|
214
|
+
"key": "分配土地",
|
|
215
|
+
"id": "分配土地",
|
|
216
|
+
"description": "分配土地",
|
|
217
|
+
"info": "分配土地",
|
|
218
|
+
"layout": { "visibility": "visible" },
|
|
219
|
+
"paint": {},
|
|
220
|
+
"source-layer": "分配土地"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"source": "OSM全中国经纬度",
|
|
224
|
+
"minZoom": 0,
|
|
225
|
+
"maxZoom": 24,
|
|
226
|
+
"type": "fill",
|
|
227
|
+
"key": "工厂",
|
|
228
|
+
"id": "工厂",
|
|
229
|
+
"description": "工厂",
|
|
230
|
+
"info": "工厂",
|
|
231
|
+
"layout": { "visibility": "visible" },
|
|
232
|
+
"paint": { "fill-color": "#333333" },
|
|
233
|
+
"source-layer": "工厂"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"source": "OSM全中国经纬度",
|
|
237
|
+
"minZoom": 0,
|
|
238
|
+
"maxZoom": 24,
|
|
239
|
+
"type": "fill",
|
|
240
|
+
"key": "公园",
|
|
241
|
+
"id": "公园",
|
|
242
|
+
"description": "公园",
|
|
243
|
+
"info": "公园",
|
|
244
|
+
"layout": { "visibility": "visible" },
|
|
245
|
+
"paint": { "fill-color": "#40635d" },
|
|
246
|
+
"source-layer": "公园"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"source": "OSM全中国经纬度",
|
|
250
|
+
"minZoom": 0,
|
|
251
|
+
"maxZoom": 24,
|
|
252
|
+
"type": "fill",
|
|
253
|
+
"key": "果园",
|
|
254
|
+
"id": "果园",
|
|
255
|
+
"description": "果园",
|
|
256
|
+
"info": "果园",
|
|
257
|
+
"layout": { "visibility": "visible" },
|
|
258
|
+
"paint": {},
|
|
259
|
+
"source-layer": "果园"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"source": "OSM全中国经纬度",
|
|
263
|
+
"minZoom": 0,
|
|
264
|
+
"maxZoom": 24,
|
|
265
|
+
"type": "fill",
|
|
266
|
+
"key": "荒地",
|
|
267
|
+
"id": "荒地",
|
|
268
|
+
"description": "荒地",
|
|
269
|
+
"info": "荒地",
|
|
270
|
+
"layout": { "visibility": "visible" },
|
|
271
|
+
"paint": { "fill-color": "#B8DDA5" },
|
|
272
|
+
"source-layer": "荒地"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"source": "OSM全中国经纬度",
|
|
276
|
+
"minZoom": 0,
|
|
277
|
+
"maxZoom": 24,
|
|
278
|
+
"type": "fill",
|
|
279
|
+
"key": "军事用地",
|
|
280
|
+
"id": "军事用地",
|
|
281
|
+
"description": "军事用地",
|
|
282
|
+
"info": "军事用地",
|
|
283
|
+
"layout": { "visibility": "visible" },
|
|
284
|
+
"paint": { "fill-color": " #4a645f" },
|
|
285
|
+
"source-layer": "军事用地"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"source": "OSM全中国经纬度",
|
|
289
|
+
"minZoom": 0,
|
|
290
|
+
"maxZoom": 24,
|
|
291
|
+
"type": "fill",
|
|
292
|
+
"key": "矿地",
|
|
293
|
+
"id": "矿地",
|
|
294
|
+
"description": "矿地",
|
|
295
|
+
"info": "矿地",
|
|
296
|
+
"layout": { "visibility": "visible" },
|
|
297
|
+
"paint": { "fill-color": "#808080" },
|
|
298
|
+
"source-layer": "矿地"
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"source": "OSM全中国经纬度",
|
|
302
|
+
"minZoom": 0,
|
|
303
|
+
"maxZoom": 24,
|
|
304
|
+
"type": "fill",
|
|
305
|
+
"key": "零售地",
|
|
306
|
+
"id": "零售地",
|
|
307
|
+
"description": "零售地",
|
|
308
|
+
"info": "零售地",
|
|
309
|
+
"layout": { "visibility": "visible" },
|
|
310
|
+
"paint": {
|
|
311
|
+
"fill-color": {
|
|
312
|
+
"stops": [
|
|
313
|
+
[13, " #4a5768"],
|
|
314
|
+
[14, " #424d5c"]
|
|
315
|
+
]
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
"source-layer": "零售地"
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"source": "OSM全中国经纬度",
|
|
322
|
+
"minZoom": 0,
|
|
323
|
+
"maxZoom": 24,
|
|
324
|
+
"type": "fill",
|
|
325
|
+
"key": "牧场",
|
|
326
|
+
"id": "牧场",
|
|
327
|
+
"description": "牧场",
|
|
328
|
+
"info": "牧场",
|
|
329
|
+
"layout": { "visibility": "visible" },
|
|
330
|
+
"paint": { "fill-color": "#40635d" },
|
|
331
|
+
"source-layer": "牧场"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"source": "OSM全中国经纬度",
|
|
335
|
+
"minZoom": 0,
|
|
336
|
+
"maxZoom": 24,
|
|
337
|
+
"type": "fill",
|
|
338
|
+
"key": "墓地",
|
|
339
|
+
"id": "墓地",
|
|
340
|
+
"description": "墓地",
|
|
341
|
+
"info": "墓地",
|
|
342
|
+
"layout": { "visibility": "visible" },
|
|
343
|
+
"paint": { "fill-color": " #4a645f" },
|
|
344
|
+
"source-layer": "墓地"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"source": "OSM全中国经纬度",
|
|
348
|
+
"minZoom": 0,
|
|
349
|
+
"maxZoom": 24,
|
|
350
|
+
"type": "fill",
|
|
351
|
+
"key": "农业用地",
|
|
352
|
+
"id": "农业用地",
|
|
353
|
+
"description": "农业用地",
|
|
354
|
+
"info": "农业用地",
|
|
355
|
+
"layout": { "visibility": "visible" },
|
|
356
|
+
"paint": { "fill-color": "#343332", "fill-outline-color": "#343332" },
|
|
357
|
+
"source-layer": "农业用地"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"source": "OSM全中国经纬度",
|
|
361
|
+
"minZoom": 0,
|
|
362
|
+
"maxZoom": 24,
|
|
363
|
+
"type": "fill",
|
|
364
|
+
"key": "葡萄园",
|
|
365
|
+
"id": "葡萄园",
|
|
366
|
+
"description": "葡萄园",
|
|
367
|
+
"info": "葡萄园",
|
|
368
|
+
"layout": { "visibility": "visible" },
|
|
369
|
+
"paint": {},
|
|
370
|
+
"source-layer": "葡萄园"
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"source": "OSM全中国经纬度",
|
|
374
|
+
"minZoom": 0,
|
|
375
|
+
"maxZoom": 24,
|
|
376
|
+
"type": "fill",
|
|
377
|
+
"key": "森林",
|
|
378
|
+
"id": "森林",
|
|
379
|
+
"description": "森林",
|
|
380
|
+
"info": "森林",
|
|
381
|
+
"layout": { "visibility": "visible" },
|
|
382
|
+
"paint": { "fill-color": "#40635d" },
|
|
383
|
+
"source-layer": "森林"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"source": "OSM全中国经纬度",
|
|
387
|
+
"minZoom": 0,
|
|
388
|
+
"maxZoom": 24,
|
|
389
|
+
"type": "fill",
|
|
390
|
+
"key": "商业用地",
|
|
391
|
+
"id": "商业用地",
|
|
392
|
+
"description": "商业用地",
|
|
393
|
+
"info": "商业用地",
|
|
394
|
+
"layout": { "visibility": "visible" },
|
|
395
|
+
"paint": { "fill-color": "#424d5c" },
|
|
396
|
+
"source-layer": "商业用地"
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"source": "OSM全中国经纬度",
|
|
400
|
+
"minZoom": 0,
|
|
401
|
+
"maxZoom": 24,
|
|
402
|
+
"type": "fill",
|
|
403
|
+
"key": "自然保护区",
|
|
404
|
+
"id": "自然保护区",
|
|
405
|
+
"description": "自然保护区",
|
|
406
|
+
"info": "自然保护区",
|
|
407
|
+
"layout": { "visibility": "visible" },
|
|
408
|
+
"paint": { "fill-color": "#40635d" },
|
|
409
|
+
"source-layer": "自然保护区"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"source": "OSM全中国经纬度",
|
|
413
|
+
"minZoom": 0,
|
|
414
|
+
"maxZoom": 24,
|
|
415
|
+
"type": "fill",
|
|
416
|
+
"key": "娱乐用地",
|
|
417
|
+
"id": "娱乐用地",
|
|
418
|
+
"description": "娱乐用地",
|
|
419
|
+
"info": "娱乐用地",
|
|
420
|
+
"layout": { "visibility": "visible" },
|
|
421
|
+
"paint": { "fill-color": "#191A1A" },
|
|
422
|
+
"source-layer": "娱乐用地"
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"source": "OSM全中国经纬度",
|
|
426
|
+
"minZoom": 0,
|
|
427
|
+
"maxZoom": 24,
|
|
428
|
+
"type": "fill",
|
|
429
|
+
"key": "住宅用地",
|
|
430
|
+
"id": "住宅用地",
|
|
431
|
+
"description": "住宅用地",
|
|
432
|
+
"info": "住宅用地",
|
|
433
|
+
"layout": { "visibility": "visible" },
|
|
434
|
+
"paint": {
|
|
435
|
+
"fill-color": {
|
|
436
|
+
"stops": [
|
|
437
|
+
[6, "#4a5768"],
|
|
438
|
+
[8, "#424d5c"]
|
|
439
|
+
]
|
|
440
|
+
}
|
|
441
|
+
},
|
|
442
|
+
"source-layer": "住宅用地"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"source": "OSM全中国经纬度",
|
|
446
|
+
"minZoom": 0,
|
|
447
|
+
"maxZoom": 24,
|
|
448
|
+
"type": "fill",
|
|
449
|
+
"key": "岛",
|
|
450
|
+
"id": "岛",
|
|
451
|
+
"description": "岛",
|
|
452
|
+
"info": "岛",
|
|
453
|
+
"layout": { "visibility": "visible" },
|
|
454
|
+
"paint": { "fill-color": "#424d5c" },
|
|
455
|
+
"source-layer": "岛"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"source": "OSM全中国经纬度",
|
|
459
|
+
"minZoom": 0,
|
|
460
|
+
"maxZoom": 24,
|
|
461
|
+
"type": "fill",
|
|
462
|
+
"key": "城市",
|
|
463
|
+
"id": "城市",
|
|
464
|
+
"description": "城市",
|
|
465
|
+
"info": "城市",
|
|
466
|
+
"layout": { "visibility": "visible" },
|
|
467
|
+
"paint": { "fill-color": "#343332" },
|
|
468
|
+
"source-layer": "城市"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"source": "OSM全中国经纬度",
|
|
472
|
+
"minZoom": 0,
|
|
473
|
+
"maxZoom": 24,
|
|
474
|
+
"type": "fill",
|
|
475
|
+
"key": "城镇",
|
|
476
|
+
"id": "城镇",
|
|
477
|
+
"description": "城镇",
|
|
478
|
+
"info": "城镇",
|
|
479
|
+
"layout": { "visibility": "visible" },
|
|
480
|
+
"paint": { "fill-color": "#191A1A" },
|
|
481
|
+
"source-layer": "城镇"
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"source": "OSM全中国经纬度",
|
|
485
|
+
"minZoom": 0,
|
|
486
|
+
"maxZoom": 24,
|
|
487
|
+
"type": "fill",
|
|
488
|
+
"key": "地区",
|
|
489
|
+
"id": "地区",
|
|
490
|
+
"description": "地区",
|
|
491
|
+
"info": "地区",
|
|
492
|
+
"layout": { "visibility": "visible" },
|
|
493
|
+
"paint": { "fill-color": "#E1E8DB" },
|
|
494
|
+
"source-layer": "地区"
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"source": "OSM全中国经纬度",
|
|
498
|
+
"minZoom": 0,
|
|
499
|
+
"maxZoom": 24,
|
|
500
|
+
"type": "fill",
|
|
501
|
+
"key": "乡村",
|
|
502
|
+
"id": "乡村",
|
|
503
|
+
"description": "乡村",
|
|
504
|
+
"info": "乡村",
|
|
505
|
+
"layout": { "visibility": "visible" },
|
|
506
|
+
"paint": { "fill-color": "#343332" },
|
|
507
|
+
"source-layer": "乡村"
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"source": "OSM全中国经纬度",
|
|
511
|
+
"minZoom": 0,
|
|
512
|
+
"maxZoom": 24,
|
|
513
|
+
"type": "fill",
|
|
514
|
+
"key": "村庄",
|
|
515
|
+
"id": "村庄",
|
|
516
|
+
"description": "村庄",
|
|
517
|
+
"info": "村庄",
|
|
518
|
+
"layout": { "visibility": "visible" },
|
|
519
|
+
"paint": { "fill-color": "#343332" },
|
|
520
|
+
"source-layer": "村庄"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"source": "OSM全中国经纬度",
|
|
524
|
+
"minZoom": 0,
|
|
525
|
+
"maxZoom": 24,
|
|
526
|
+
"type": "fill",
|
|
527
|
+
"key": "小村庄",
|
|
528
|
+
"id": "小村庄",
|
|
529
|
+
"description": "小村庄",
|
|
530
|
+
"info": "小村庄",
|
|
531
|
+
"layout": { "visibility": "visible" },
|
|
532
|
+
"paint": { "fill-color": "#272726" },
|
|
533
|
+
"source-layer": "小村庄"
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"source": "OSM全中国经纬度",
|
|
537
|
+
"minZoom": 0,
|
|
538
|
+
"maxZoom": 24,
|
|
539
|
+
"type": "fill",
|
|
540
|
+
"key": "郊区",
|
|
541
|
+
"id": "郊区",
|
|
542
|
+
"description": "郊区",
|
|
543
|
+
"info": "郊区",
|
|
544
|
+
"layout": { "visibility": "visible" },
|
|
545
|
+
"paint": { "fill-color": "#40635d" },
|
|
546
|
+
"source-layer": "郊区"
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"source": "OSM全中国经纬度",
|
|
550
|
+
"minZoom": 0,
|
|
551
|
+
"maxZoom": 24,
|
|
552
|
+
"type": "fill",
|
|
553
|
+
"key": "农田",
|
|
554
|
+
"id": "农田",
|
|
555
|
+
"description": "农田",
|
|
556
|
+
"info": "农田",
|
|
557
|
+
"layout": { "visibility": "visible" },
|
|
558
|
+
"paint": { "fill-color": "#343332" },
|
|
559
|
+
"source-layer": "农田"
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
"source": "OSM全中国经纬度",
|
|
563
|
+
"minZoom": 0,
|
|
564
|
+
"maxZoom": 24,
|
|
565
|
+
"type": "fill",
|
|
566
|
+
"key": "所在地",
|
|
567
|
+
"id": "所在地",
|
|
568
|
+
"description": "所在地",
|
|
569
|
+
"info": "所在地",
|
|
570
|
+
"layout": { "visibility": "visible" },
|
|
571
|
+
"paint": {},
|
|
572
|
+
"source-layer": "所在地"
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"source": "OSM全中国经纬度",
|
|
576
|
+
"minZoom": 12,
|
|
577
|
+
"maxZoom": 24,
|
|
578
|
+
"type": "fill-extrusion",
|
|
579
|
+
"key": "建筑",
|
|
580
|
+
"id": "建筑",
|
|
581
|
+
"description": "建筑",
|
|
582
|
+
"info": "建筑",
|
|
583
|
+
"layout": { "visibility": "visible" },
|
|
584
|
+
"paint": {
|
|
585
|
+
"fill-extrusion-color": "#2C2C2B",
|
|
586
|
+
"fill-extrusion-height": 10
|
|
587
|
+
},
|
|
588
|
+
"source-layer": "建筑"
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"source": "OSM全中国经纬度",
|
|
592
|
+
"minZoom": 0,
|
|
593
|
+
"maxZoom": 24,
|
|
594
|
+
"type": "fill",
|
|
595
|
+
"key": "出租车站区",
|
|
596
|
+
"id": "出租车站区",
|
|
597
|
+
"description": "出租车站",
|
|
598
|
+
"info": "出租车站",
|
|
599
|
+
"layout": { "visibility": "visible" },
|
|
600
|
+
"paint": {},
|
|
601
|
+
"source-layer": "出租车站"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"source": "OSM全中国经纬度",
|
|
605
|
+
"minZoom": 0,
|
|
606
|
+
"maxZoom": 24,
|
|
607
|
+
"type": "fill",
|
|
608
|
+
"key": "飞机场区",
|
|
609
|
+
"id": "飞机场区",
|
|
610
|
+
"description": "飞机场",
|
|
611
|
+
"info": "飞机场",
|
|
612
|
+
"layout": { "visibility": "visible" },
|
|
613
|
+
"paint": { "fill-color": "#BDE2DC" },
|
|
614
|
+
"source-layer": "飞机场"
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"source": "OSM全中国经纬度",
|
|
618
|
+
"minZoom": 0,
|
|
619
|
+
"maxZoom": 24,
|
|
620
|
+
"type": "fill",
|
|
621
|
+
"key": "公交车站区",
|
|
622
|
+
"id": "公交车站区",
|
|
623
|
+
"description": "公交车站",
|
|
624
|
+
"info": "公交车站",
|
|
625
|
+
"layout": { "visibility": "visible" },
|
|
626
|
+
"paint": { "fill-color": "#4c575d" },
|
|
627
|
+
"source-layer": "公交车站"
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
"source": "OSM全中国经纬度",
|
|
631
|
+
"minZoom": 0,
|
|
632
|
+
"maxZoom": 24,
|
|
633
|
+
"type": "fill",
|
|
634
|
+
"key": "汽车站区",
|
|
635
|
+
"id": "汽车站区",
|
|
636
|
+
"description": "汽车站",
|
|
637
|
+
"info": "汽车站",
|
|
638
|
+
"layout": { "visibility": "visible" },
|
|
639
|
+
"paint": { "fill-color": "#BDE2DC" },
|
|
640
|
+
"source-layer": "汽车站"
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"source": "OSM全中国经纬度",
|
|
644
|
+
"minZoom": 0,
|
|
645
|
+
"maxZoom": 24,
|
|
646
|
+
"type": "fill",
|
|
647
|
+
"key": "机动轨道区",
|
|
648
|
+
"id": "机动轨道区",
|
|
649
|
+
"description": "机动轨道",
|
|
650
|
+
"info": "机动轨道",
|
|
651
|
+
"layout": { "visibility": "visible" },
|
|
652
|
+
"paint": { "fill-color": "#BDE2DC" },
|
|
653
|
+
"source-layer": "机动轨道"
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
"source": "OSM全中国经纬度",
|
|
657
|
+
"minZoom": 0,
|
|
658
|
+
"maxZoom": 24,
|
|
659
|
+
"type": "fill",
|
|
660
|
+
"key": "机动站区",
|
|
661
|
+
"id": "机动站区",
|
|
662
|
+
"description": "机动站",
|
|
663
|
+
"info": "机动站",
|
|
664
|
+
"layout": { "visibility": "visible" },
|
|
665
|
+
"paint": { "fill-color": "#bde2dc", "fill-opacity": 1 },
|
|
666
|
+
"source-layer": "机动站"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"source": "OSM全中国经纬度",
|
|
670
|
+
"minZoom": 0,
|
|
671
|
+
"maxZoom": 24,
|
|
672
|
+
"type": "fill",
|
|
673
|
+
"key": "码头渡轮区",
|
|
674
|
+
"id": "码头渡轮区",
|
|
675
|
+
"description": "码头渡轮",
|
|
676
|
+
"info": "码头渡轮",
|
|
677
|
+
"layout": { "visibility": "visible" },
|
|
678
|
+
"paint": {},
|
|
679
|
+
"source-layer": "码头渡轮"
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"source": "OSM全中国经纬度",
|
|
683
|
+
"minZoom": 0,
|
|
684
|
+
"maxZoom": 24,
|
|
685
|
+
"type": "fill",
|
|
686
|
+
"key": "名胜古迹区",
|
|
687
|
+
"id": "名胜古迹区",
|
|
688
|
+
"description": "名胜古迹",
|
|
689
|
+
"info": "名胜古迹",
|
|
690
|
+
"layout": { "visibility": "visible" },
|
|
691
|
+
"paint": { "fill-color": "#4a4a4a" },
|
|
692
|
+
"source-layer": "名胜古迹"
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"source": "OSM全中国经纬度",
|
|
696
|
+
"minZoom": 0,
|
|
697
|
+
"maxZoom": 24,
|
|
698
|
+
"type": "fill",
|
|
699
|
+
"key": "堤坝区",
|
|
700
|
+
"id": "堤坝区",
|
|
701
|
+
"description": "堤坝",
|
|
702
|
+
"info": "堤坝",
|
|
703
|
+
"layout": { "visibility": "visible" },
|
|
704
|
+
"paint": {},
|
|
705
|
+
"source-layer": "堤坝"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"source": "OSM全中国经纬度",
|
|
709
|
+
"minZoom": 0,
|
|
710
|
+
"maxZoom": 24,
|
|
711
|
+
"type": "fill",
|
|
712
|
+
"key": "停车场区",
|
|
713
|
+
"id": "停车场区",
|
|
714
|
+
"description": "停车场",
|
|
715
|
+
"info": "停车场",
|
|
716
|
+
"layout": { "visibility": "visible" },
|
|
717
|
+
"paint": { "fill-color": "#505c6d" },
|
|
718
|
+
"source-layer": "停车场"
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
"source": "OSM全中国经纬度",
|
|
722
|
+
"minZoom": 0,
|
|
723
|
+
"maxZoom": 24,
|
|
724
|
+
"type": "fill",
|
|
725
|
+
"key": "地下停车场区",
|
|
726
|
+
"id": "地下停车场区",
|
|
727
|
+
"description": "地下停车场",
|
|
728
|
+
"info": "地下停车场",
|
|
729
|
+
"layout": { "visibility": "visible" },
|
|
730
|
+
"paint": { "fill-color": "#333333" },
|
|
731
|
+
"source-layer": "地下停车场"
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"source": "OSM全中国经纬度",
|
|
735
|
+
"minZoom": 0,
|
|
736
|
+
"maxZoom": 24,
|
|
737
|
+
"type": "fill",
|
|
738
|
+
"key": "多层停车场区",
|
|
739
|
+
"id": "多层停车场区",
|
|
740
|
+
"description": "多层停车场",
|
|
741
|
+
"info": "多层停车场",
|
|
742
|
+
"layout": { "visibility": "visible" },
|
|
743
|
+
"paint": { "fill-color": "#333333" },
|
|
744
|
+
"source-layer": "多层停车场"
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"source": "OSM全中国经纬度",
|
|
748
|
+
"minZoom": 0,
|
|
749
|
+
"maxZoom": 24,
|
|
750
|
+
"type": "fill",
|
|
751
|
+
"key": "自行车停车场区",
|
|
752
|
+
"id": "自行车停车场区",
|
|
753
|
+
"description": "自行车停车场",
|
|
754
|
+
"info": "自行车停车场",
|
|
755
|
+
"layout": { "visibility": "visible" },
|
|
756
|
+
"paint": { "fill-color": "#D8E6ED" },
|
|
757
|
+
"source-layer": "自行车停车场"
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"source": "OSM全中国经纬度",
|
|
761
|
+
"minZoom": 0,
|
|
762
|
+
"maxZoom": 24,
|
|
763
|
+
"type": "fill",
|
|
764
|
+
"key": "公共服务区区",
|
|
765
|
+
"id": "公共服务区区",
|
|
766
|
+
"description": "公共服务区",
|
|
767
|
+
"info": "公共服务区",
|
|
768
|
+
"layout": { "visibility": "visible" },
|
|
769
|
+
"paint": { "fill-color": "#505c6d" },
|
|
770
|
+
"source-layer": "公共服务区"
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"source": "OSM全中国经纬度",
|
|
774
|
+
"minZoom": 0,
|
|
775
|
+
"maxZoom": 24,
|
|
776
|
+
"type": "fill",
|
|
777
|
+
"key": "滑道区",
|
|
778
|
+
"id": "滑道区",
|
|
779
|
+
"description": "滑道",
|
|
780
|
+
"info": "滑道",
|
|
781
|
+
"layout": { "visibility": "visible" },
|
|
782
|
+
"paint": {},
|
|
783
|
+
"source-layer": "滑道"
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
"source": "OSM全中国经纬度",
|
|
787
|
+
"minZoom": 0,
|
|
788
|
+
"maxZoom": 24,
|
|
789
|
+
"type": "fill",
|
|
790
|
+
"key": "加油站区",
|
|
791
|
+
"id": "加油站区",
|
|
792
|
+
"description": "加油站",
|
|
793
|
+
"info": "加油站",
|
|
794
|
+
"layout": { "visibility": "visible" },
|
|
795
|
+
"paint": { "fill-color": "#505c6d" },
|
|
796
|
+
"source-layer": "加油站"
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
"source": "OSM全中国经纬度",
|
|
800
|
+
"minZoom": 0,
|
|
801
|
+
"maxZoom": 24,
|
|
802
|
+
"type": "fill",
|
|
803
|
+
"key": "码头区",
|
|
804
|
+
"id": "码头区",
|
|
805
|
+
"description": "码头",
|
|
806
|
+
"info": "码头",
|
|
807
|
+
"layout": { "visibility": "visible" },
|
|
808
|
+
"paint": {},
|
|
809
|
+
"source-layer": "码头"
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"source": "OSM全中国经纬度",
|
|
813
|
+
"minZoom": 0,
|
|
814
|
+
"maxZoom": 24,
|
|
815
|
+
"type": "fill",
|
|
816
|
+
"key": "瀑布区",
|
|
817
|
+
"id": "瀑布区",
|
|
818
|
+
"description": "瀑布",
|
|
819
|
+
"info": "瀑布",
|
|
820
|
+
"layout": { "visibility": "visible" },
|
|
821
|
+
"paint": {},
|
|
822
|
+
"source-layer": "瀑布"
|
|
823
|
+
},
|
|
824
|
+
{
|
|
825
|
+
"source": "OSM全中国经纬度",
|
|
826
|
+
"minZoom": 0,
|
|
827
|
+
"maxZoom": 24,
|
|
828
|
+
"type": "fill",
|
|
829
|
+
"key": "水坝区",
|
|
830
|
+
"id": "水坝区",
|
|
831
|
+
"description": "水坝",
|
|
832
|
+
"info": "水坝",
|
|
833
|
+
"layout": { "visibility": "visible" },
|
|
834
|
+
"paint": { "fill-color": "#627a84" },
|
|
835
|
+
"source-layer": "水坝"
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"source": "OSM全中国经纬度",
|
|
839
|
+
"minZoom": 0,
|
|
840
|
+
"maxZoom": 24,
|
|
841
|
+
"type": "fill",
|
|
842
|
+
"key": "闸门区",
|
|
843
|
+
"id": "闸门区",
|
|
844
|
+
"description": "闸门",
|
|
845
|
+
"info": "闸门",
|
|
846
|
+
"layout": { "visibility": "visible" },
|
|
847
|
+
"paint": {},
|
|
848
|
+
"source-layer": "闸门"
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
"source": "OSM全中国经纬度",
|
|
852
|
+
"minZoom": 0,
|
|
853
|
+
"maxZoom": 24,
|
|
854
|
+
"type": "fill",
|
|
855
|
+
"key": "坝区",
|
|
856
|
+
"id": "坝区",
|
|
857
|
+
"description": "坝",
|
|
858
|
+
"info": "坝",
|
|
859
|
+
"layout": { "visibility": "visible" },
|
|
860
|
+
"paint": {},
|
|
861
|
+
"source-layer": "坝"
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
"source": "OSM全中国经纬度",
|
|
865
|
+
"minZoom": 0,
|
|
866
|
+
"maxZoom": 24,
|
|
867
|
+
"type": "fill",
|
|
868
|
+
"key": "冰川区",
|
|
869
|
+
"id": "冰川区",
|
|
870
|
+
"description": "冰川",
|
|
871
|
+
"info": "冰川",
|
|
872
|
+
"layout": { "visibility": "visible" },
|
|
873
|
+
"paint": {},
|
|
874
|
+
"source-layer": "冰川"
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
"source": "OSM全中国经纬度",
|
|
878
|
+
"minZoom": 0,
|
|
879
|
+
"maxZoom": 24,
|
|
880
|
+
"type": "fill",
|
|
881
|
+
"key": "洞穴区",
|
|
882
|
+
"id": "洞穴区",
|
|
883
|
+
"description": "洞穴",
|
|
884
|
+
"info": "洞穴",
|
|
885
|
+
"layout": { "visibility": "visible" },
|
|
886
|
+
"paint": {},
|
|
887
|
+
"source-layer": "洞穴"
|
|
888
|
+
},
|
|
889
|
+
{
|
|
890
|
+
"source": "OSM全中国经纬度",
|
|
891
|
+
"minZoom": 0,
|
|
892
|
+
"maxZoom": 24,
|
|
893
|
+
"type": "fill",
|
|
894
|
+
"key": "海滩区",
|
|
895
|
+
"id": "海滩区",
|
|
896
|
+
"description": "海滩",
|
|
897
|
+
"info": "海滩",
|
|
898
|
+
"layout": { "visibility": "visible" },
|
|
899
|
+
"paint": {},
|
|
900
|
+
"source-layer": "海滩"
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
"source": "OSM全中国经纬度",
|
|
904
|
+
"minZoom": 0,
|
|
905
|
+
"maxZoom": 24,
|
|
906
|
+
"type": "fill",
|
|
907
|
+
"key": "泉水区",
|
|
908
|
+
"id": "泉水区",
|
|
909
|
+
"description": "泉水",
|
|
910
|
+
"info": "泉水",
|
|
911
|
+
"layout": { "visibility": "visible" },
|
|
912
|
+
"paint": {},
|
|
913
|
+
"source-layer": "泉水"
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"source": "OSM全中国经纬度",
|
|
917
|
+
"minZoom": 0,
|
|
918
|
+
"maxZoom": 24,
|
|
919
|
+
"type": "fill",
|
|
920
|
+
"key": "山峰区",
|
|
921
|
+
"id": "山峰区",
|
|
922
|
+
"description": "山峰",
|
|
923
|
+
"info": "山峰",
|
|
924
|
+
"layout": { "visibility": "visible" },
|
|
925
|
+
"paint": {},
|
|
926
|
+
"source-layer": "山峰"
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
"source": "OSM全中国经纬度",
|
|
930
|
+
"minZoom": 0,
|
|
931
|
+
"maxZoom": 24,
|
|
932
|
+
"type": "fill",
|
|
933
|
+
"key": "树区",
|
|
934
|
+
"id": "树区",
|
|
935
|
+
"description": "树",
|
|
936
|
+
"info": "树",
|
|
937
|
+
"layout": { "visibility": "visible" },
|
|
938
|
+
"paint": { "fill-color": "#323432" },
|
|
939
|
+
"source-layer": "树"
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
"source": "OSM全中国经纬度",
|
|
943
|
+
"minZoom": 0,
|
|
944
|
+
"maxZoom": 24,
|
|
945
|
+
"type": "fill",
|
|
946
|
+
"key": "悬崖区",
|
|
947
|
+
"id": "悬崖区",
|
|
948
|
+
"description": "悬崖",
|
|
949
|
+
"info": "悬崖",
|
|
950
|
+
"layout": { "visibility": "visible" },
|
|
951
|
+
"paint": {},
|
|
952
|
+
"source-layer": "悬崖"
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
"source": "OSM全中国经纬度",
|
|
956
|
+
"minZoom": 0,
|
|
957
|
+
"maxZoom": 24,
|
|
958
|
+
"type": "fill",
|
|
959
|
+
"key": "水库区",
|
|
960
|
+
"id": "水库区",
|
|
961
|
+
"description": "水库",
|
|
962
|
+
"info": "水库",
|
|
963
|
+
"layout": { "visibility": "visible" },
|
|
964
|
+
"paint": { "fill-color": "#627a84" },
|
|
965
|
+
"source-layer": "水库"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"source": "OSM全中国经纬度",
|
|
969
|
+
"minZoom": 0,
|
|
970
|
+
"maxZoom": 24,
|
|
971
|
+
"type": "fill",
|
|
972
|
+
"key": "水区",
|
|
973
|
+
"id": "水区",
|
|
974
|
+
"description": "水",
|
|
975
|
+
"info": "水",
|
|
976
|
+
"layout": { "visibility": "visible" },
|
|
977
|
+
"paint": { "fill-color": "#627a84" },
|
|
978
|
+
"source-layer": "水"
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"source": "OSM全中国经纬度",
|
|
982
|
+
"minZoom": 0,
|
|
983
|
+
"maxZoom": 24,
|
|
984
|
+
"type": "fill",
|
|
985
|
+
"key": "湿地区",
|
|
986
|
+
"id": "湿地区",
|
|
987
|
+
"description": "湿地",
|
|
988
|
+
"info": "湿地",
|
|
989
|
+
"layout": { "visibility": "visible" },
|
|
990
|
+
"paint": { "fill-color": "#40635d" },
|
|
991
|
+
"source-layer": "湿地"
|
|
992
|
+
},
|
|
993
|
+
{
|
|
994
|
+
"source": "OSM全中国经纬度",
|
|
995
|
+
"minZoom": 0,
|
|
996
|
+
"maxZoom": 24,
|
|
997
|
+
"type": "fill",
|
|
998
|
+
"key": "河流流域区",
|
|
999
|
+
"id": "河流流域区",
|
|
1000
|
+
"description": "河流流域",
|
|
1001
|
+
"info": "河流流域",
|
|
1002
|
+
"layout": { "visibility": "visible" },
|
|
1003
|
+
"paint": { "fill-color": "#5d757e" },
|
|
1004
|
+
"source-layer": "河流流域"
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
"source": "OSM全中国经纬度",
|
|
1008
|
+
"minZoom": 0,
|
|
1009
|
+
"maxZoom": 24,
|
|
1010
|
+
"type": "fill",
|
|
1011
|
+
"key": "船坞区",
|
|
1012
|
+
"id": "船坞区",
|
|
1013
|
+
"description": "船坞",
|
|
1014
|
+
"info": "船坞",
|
|
1015
|
+
"layout": { "visibility": "visible" },
|
|
1016
|
+
"paint": { "fill-color": "#B5CFFF" },
|
|
1017
|
+
"source-layer": "船坞"
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
"source": "OSM全中国经纬度",
|
|
1021
|
+
"minZoom": 0,
|
|
1022
|
+
"maxZoom": 24,
|
|
1023
|
+
"type": "fill",
|
|
1024
|
+
"key": "冰川地区区",
|
|
1025
|
+
"id": "冰川地区区",
|
|
1026
|
+
"description": "冰川地区",
|
|
1027
|
+
"info": "冰川地区",
|
|
1028
|
+
"layout": { "visibility": "visible" },
|
|
1029
|
+
"paint": { "fill-color": "#FFFFFF" },
|
|
1030
|
+
"source-layer": "冰川地区"
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
"source": "OSM全中国经纬度",
|
|
1034
|
+
"minZoom": 0,
|
|
1035
|
+
"maxZoom": 24,
|
|
1036
|
+
"type": "line",
|
|
1037
|
+
"key": "河流线",
|
|
1038
|
+
"id": "河流线",
|
|
1039
|
+
"description": "河流",
|
|
1040
|
+
"info": "河流",
|
|
1041
|
+
"layout": { "visibility": "visible" },
|
|
1042
|
+
"paint": {
|
|
1043
|
+
"line-color": "#627a84",
|
|
1044
|
+
"line-width": {
|
|
1045
|
+
"stops": [
|
|
1046
|
+
[3, 0.5],
|
|
1047
|
+
[10, 2]
|
|
1048
|
+
]
|
|
1049
|
+
}
|
|
1050
|
+
},
|
|
1051
|
+
"source-layer": "河流"
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
"source": "OSM全中国经纬度",
|
|
1055
|
+
"minZoom": 0,
|
|
1056
|
+
"maxZoom": 24,
|
|
1057
|
+
"type": "line",
|
|
1058
|
+
"key": "bcb4af50-34d0-49a9-95ed-a406129e10b0",
|
|
1059
|
+
"id": "bcb4af50-34d0-49a9-95ed-a406129e10b0",
|
|
1060
|
+
"description": "河流",
|
|
1061
|
+
"info": "河流",
|
|
1062
|
+
"layout": { "visibility": "visible" },
|
|
1063
|
+
"paint": {
|
|
1064
|
+
"line-color": {
|
|
1065
|
+
"stops": [
|
|
1066
|
+
[6, "#424d5c"],
|
|
1067
|
+
[8, "#5e5298"]
|
|
1068
|
+
]
|
|
1069
|
+
},
|
|
1070
|
+
"line-width": {
|
|
1071
|
+
"stops": [
|
|
1072
|
+
[3, 3.5],
|
|
1073
|
+
[10, 6]
|
|
1074
|
+
]
|
|
1075
|
+
},
|
|
1076
|
+
"line-opacity": 0.05
|
|
1077
|
+
},
|
|
1078
|
+
"source-layer": "河流"
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
"source": "OSM全中国经纬度",
|
|
1082
|
+
"minZoom": 0,
|
|
1083
|
+
"maxZoom": 24,
|
|
1084
|
+
"type": "line",
|
|
1085
|
+
"key": "运河线",
|
|
1086
|
+
"id": "运河线",
|
|
1087
|
+
"description": "运河",
|
|
1088
|
+
"info": "运河",
|
|
1089
|
+
"layout": { "visibility": "visible" },
|
|
1090
|
+
"paint": {
|
|
1091
|
+
"line-color": "#5d757e",
|
|
1092
|
+
"line-width": {
|
|
1093
|
+
"stops": [
|
|
1094
|
+
[0, 0.5],
|
|
1095
|
+
[12, 1],
|
|
1096
|
+
[15, 3],
|
|
1097
|
+
[20, 5]
|
|
1098
|
+
]
|
|
1099
|
+
}
|
|
1100
|
+
},
|
|
1101
|
+
"source-layer": "运河"
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
"source": "OSM全中国经纬度",
|
|
1105
|
+
"minZoom": 0,
|
|
1106
|
+
"maxZoom": 24,
|
|
1107
|
+
"type": "line",
|
|
1108
|
+
"key": "排水道线",
|
|
1109
|
+
"id": "排水道线",
|
|
1110
|
+
"description": "排水道",
|
|
1111
|
+
"info": "排水道",
|
|
1112
|
+
"layout": { "visibility": "visible" },
|
|
1113
|
+
"paint": { "line-color": "#8DCBF7" },
|
|
1114
|
+
"source-layer": "排水道"
|
|
1115
|
+
},
|
|
1116
|
+
{
|
|
1117
|
+
"source": "OSM全中国经纬度",
|
|
1118
|
+
"minZoom": 0,
|
|
1119
|
+
"maxZoom": 24,
|
|
1120
|
+
"type": "line",
|
|
1121
|
+
"key": "溪流线",
|
|
1122
|
+
"id": "溪流线",
|
|
1123
|
+
"description": "溪流",
|
|
1124
|
+
"info": "溪流",
|
|
1125
|
+
"layout": { "visibility": "visible" },
|
|
1126
|
+
"paint": { "line-color": "#627a84" },
|
|
1127
|
+
"source-layer": "溪流"
|
|
1128
|
+
},
|
|
1129
|
+
{
|
|
1130
|
+
"source": "OSM全中国经纬度",
|
|
1131
|
+
"minZoom": 0,
|
|
1132
|
+
"maxZoom": 24,
|
|
1133
|
+
"type": "line",
|
|
1134
|
+
"key": "铁路线虚部",
|
|
1135
|
+
"id": "铁路线虚部",
|
|
1136
|
+
"description": "铁路",
|
|
1137
|
+
"info": "铁路",
|
|
1138
|
+
"layout": { "visibility": "none" },
|
|
1139
|
+
"paint": { "line-color": "#000000", "line-width": 3 },
|
|
1140
|
+
"source-layer": "铁路"
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
"source": "OSM全中国经纬度",
|
|
1144
|
+
"minZoom": 0,
|
|
1145
|
+
"maxZoom": 24,
|
|
1146
|
+
"type": "line",
|
|
1147
|
+
"key": "铁路线实部",
|
|
1148
|
+
"id": "铁路线实部",
|
|
1149
|
+
"description": "铁路",
|
|
1150
|
+
"info": "铁路",
|
|
1151
|
+
"layout": { "visibility": "none" },
|
|
1152
|
+
"paint": {
|
|
1153
|
+
"line-dasharray": {
|
|
1154
|
+
"stops": [
|
|
1155
|
+
[0, [3, 3]],
|
|
1156
|
+
[10, [2, 4]],
|
|
1157
|
+
[15, [5, 5]],
|
|
1158
|
+
[20, [6, 6]]
|
|
1159
|
+
]
|
|
1160
|
+
},
|
|
1161
|
+
"line-width": 2,
|
|
1162
|
+
"line-color": "#ffffff"
|
|
1163
|
+
},
|
|
1164
|
+
"source-layer": "铁路"
|
|
1165
|
+
},
|
|
1166
|
+
{
|
|
1167
|
+
"source": "OSM全中国经纬度",
|
|
1168
|
+
"minZoom": 0,
|
|
1169
|
+
"maxZoom": 24,
|
|
1170
|
+
"type": "line",
|
|
1171
|
+
"key": "小铁路线",
|
|
1172
|
+
"id": "小铁路线",
|
|
1173
|
+
"description": "小铁路",
|
|
1174
|
+
"info": "小铁路",
|
|
1175
|
+
"layout": { "visibility": "visible" },
|
|
1176
|
+
"paint": { "line-color": "#ffffff" },
|
|
1177
|
+
"source-layer": "小铁路"
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"source": "OSM全中国经纬度",
|
|
1181
|
+
"minZoom": 0,
|
|
1182
|
+
"maxZoom": 24,
|
|
1183
|
+
"type": "line",
|
|
1184
|
+
"key": "窄轨铁路",
|
|
1185
|
+
"id": "窄轨铁路",
|
|
1186
|
+
"description": "窄轨铁路",
|
|
1187
|
+
"info": "窄轨铁路",
|
|
1188
|
+
"layout": { "visibility": "visible" },
|
|
1189
|
+
"paint": {},
|
|
1190
|
+
"source-layer": "窄轨铁路"
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
"source": "OSM全中国经纬度",
|
|
1194
|
+
"minZoom": 0,
|
|
1195
|
+
"maxZoom": 24,
|
|
1196
|
+
"type": "line",
|
|
1197
|
+
"key": "单轨铁路",
|
|
1198
|
+
"id": "单轨铁路",
|
|
1199
|
+
"description": "单轨铁路",
|
|
1200
|
+
"info": "单轨铁路",
|
|
1201
|
+
"layout": { "visibility": "visible" },
|
|
1202
|
+
"paint": {
|
|
1203
|
+
"line-width": {
|
|
1204
|
+
"stops": [
|
|
1205
|
+
[14, 4],
|
|
1206
|
+
[20, 8]
|
|
1207
|
+
]
|
|
1208
|
+
},
|
|
1209
|
+
"line-color": "#383e47"
|
|
1210
|
+
},
|
|
1211
|
+
"source-layer": "单轨铁路"
|
|
1212
|
+
},
|
|
1213
|
+
{
|
|
1214
|
+
"source": "OSM全中国经纬度",
|
|
1215
|
+
"minZoom": 0,
|
|
1216
|
+
"maxZoom": 24,
|
|
1217
|
+
"type": "line",
|
|
1218
|
+
"key": "电车轨道",
|
|
1219
|
+
"id": "电车轨道",
|
|
1220
|
+
"description": "电车轨道",
|
|
1221
|
+
"info": "电车轨道",
|
|
1222
|
+
"layout": { "visibility": "visible" },
|
|
1223
|
+
"paint": { "line-color": "#ffffff", "line-width": 2 },
|
|
1224
|
+
"source-layer": "电车轨道"
|
|
1225
|
+
},
|
|
1226
|
+
{
|
|
1227
|
+
"source": "OSM全中国经纬度",
|
|
1228
|
+
"minZoom": 0,
|
|
1229
|
+
"maxZoom": 24,
|
|
1230
|
+
"type": "line",
|
|
1231
|
+
"key": "缆索轨道",
|
|
1232
|
+
"id": "缆索轨道",
|
|
1233
|
+
"description": "缆索轨道",
|
|
1234
|
+
"info": "缆索轨道",
|
|
1235
|
+
"layout": { "visibility": "visible" },
|
|
1236
|
+
"paint": {},
|
|
1237
|
+
"source-layer": "缆索轨道"
|
|
1238
|
+
},
|
|
1239
|
+
{
|
|
1240
|
+
"source": "OSM全中国经纬度",
|
|
1241
|
+
"minZoom": 0,
|
|
1242
|
+
"maxZoom": 24,
|
|
1243
|
+
"type": "line",
|
|
1244
|
+
"key": "轻轨轨道",
|
|
1245
|
+
"id": "轻轨轨道",
|
|
1246
|
+
"description": "轻轨轨道",
|
|
1247
|
+
"info": "轻轨轨道",
|
|
1248
|
+
"layout": { "visibility": "visible" },
|
|
1249
|
+
"paint": {
|
|
1250
|
+
"line-color": "#a363b1",
|
|
1251
|
+
"line-width": {
|
|
1252
|
+
"stops": [
|
|
1253
|
+
[0, 1],
|
|
1254
|
+
[20, 2]
|
|
1255
|
+
]
|
|
1256
|
+
}
|
|
1257
|
+
},
|
|
1258
|
+
"source-layer": "轻轨轨道"
|
|
1259
|
+
},
|
|
1260
|
+
{
|
|
1261
|
+
"source": "OSM全中国经纬度",
|
|
1262
|
+
"minZoom": 11,
|
|
1263
|
+
"maxZoom": 24,
|
|
1264
|
+
"type": "line",
|
|
1265
|
+
"key": "地铁",
|
|
1266
|
+
"id": "地铁",
|
|
1267
|
+
"description": "地铁",
|
|
1268
|
+
"info": "地铁",
|
|
1269
|
+
"layout": { "visibility": "visible" },
|
|
1270
|
+
"paint": {
|
|
1271
|
+
"line-color": "#191A1A",
|
|
1272
|
+
"line-width": {
|
|
1273
|
+
"stops": [
|
|
1274
|
+
[0, 1],
|
|
1275
|
+
[10, 3],
|
|
1276
|
+
[15, 7],
|
|
1277
|
+
[20, 10]
|
|
1278
|
+
]
|
|
1279
|
+
}
|
|
1280
|
+
},
|
|
1281
|
+
"source-layer": "地铁"
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
"source": "OSM全中国经纬度",
|
|
1285
|
+
"minZoom": 0,
|
|
1286
|
+
"maxZoom": 24,
|
|
1287
|
+
"type": "line",
|
|
1288
|
+
"key": "人行道",
|
|
1289
|
+
"id": "人行道",
|
|
1290
|
+
"description": "人行道",
|
|
1291
|
+
"info": "人行道",
|
|
1292
|
+
"layout": { "visibility": "visible" },
|
|
1293
|
+
"paint": {
|
|
1294
|
+
"line-color": {
|
|
1295
|
+
"stops": [
|
|
1296
|
+
[13, "#363e49"],
|
|
1297
|
+
[14, "#323943"]
|
|
1298
|
+
]
|
|
1299
|
+
},
|
|
1300
|
+
"line-dasharray": [1, 1],
|
|
1301
|
+
"line-width": {
|
|
1302
|
+
"stops": [
|
|
1303
|
+
[14, 0.5],
|
|
1304
|
+
[19, 4]
|
|
1305
|
+
]
|
|
1306
|
+
}
|
|
1307
|
+
},
|
|
1308
|
+
"source-layer": "人行道"
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
"source": "OSM全中国经纬度",
|
|
1312
|
+
"minZoom": 0,
|
|
1313
|
+
"maxZoom": 24,
|
|
1314
|
+
"type": "line",
|
|
1315
|
+
"key": "轨道",
|
|
1316
|
+
"id": "轨道",
|
|
1317
|
+
"description": "轨道",
|
|
1318
|
+
"info": "轨道",
|
|
1319
|
+
"layout": { "visibility": "visible" },
|
|
1320
|
+
"paint": {
|
|
1321
|
+
"line-color": "#2c3035",
|
|
1322
|
+
"line-width": {
|
|
1323
|
+
"stops": [
|
|
1324
|
+
[15, 0.5],
|
|
1325
|
+
[18, 10]
|
|
1326
|
+
]
|
|
1327
|
+
}
|
|
1328
|
+
},
|
|
1329
|
+
"source-layer": "轨道"
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
"source": "OSM全中国经纬度",
|
|
1333
|
+
"minZoom": 0,
|
|
1334
|
+
"maxZoom": 24,
|
|
1335
|
+
"type": "line",
|
|
1336
|
+
"key": "轨道_向导_1",
|
|
1337
|
+
"id": "轨道_向导_1",
|
|
1338
|
+
"description": "轨道_向导_1",
|
|
1339
|
+
"info": "轨道_向导_1",
|
|
1340
|
+
"layout": { "visibility": "visible" },
|
|
1341
|
+
"paint": {},
|
|
1342
|
+
"source-layer": "轨道_向导_1"
|
|
1343
|
+
},
|
|
1344
|
+
{
|
|
1345
|
+
"source": "OSM全中国经纬度",
|
|
1346
|
+
"minZoom": 0,
|
|
1347
|
+
"maxZoom": 24,
|
|
1348
|
+
"type": "line",
|
|
1349
|
+
"key": "轨道_向导_2",
|
|
1350
|
+
"id": "轨道_向导_2",
|
|
1351
|
+
"description": "轨道_向导_2",
|
|
1352
|
+
"info": "轨道_向导_2",
|
|
1353
|
+
"layout": { "visibility": "visible" },
|
|
1354
|
+
"paint": {},
|
|
1355
|
+
"source-layer": "轨道_向导_2"
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
"source": "OSM全中国经纬度",
|
|
1359
|
+
"minZoom": 0,
|
|
1360
|
+
"maxZoom": 24,
|
|
1361
|
+
"type": "line",
|
|
1362
|
+
"key": "轨道_向导_3",
|
|
1363
|
+
"id": "轨道_向导_3",
|
|
1364
|
+
"description": "轨道_向导_3",
|
|
1365
|
+
"info": "轨道_向导_3",
|
|
1366
|
+
"layout": { "visibility": "visible" },
|
|
1367
|
+
"paint": {},
|
|
1368
|
+
"source-layer": "轨道_向导_3"
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
"source": "OSM全中国经纬度",
|
|
1372
|
+
"minZoom": 0,
|
|
1373
|
+
"maxZoom": 24,
|
|
1374
|
+
"type": "line",
|
|
1375
|
+
"key": "轨道_向导_4",
|
|
1376
|
+
"id": "轨道_向导_4",
|
|
1377
|
+
"description": "轨道_向导_4",
|
|
1378
|
+
"info": "轨道_向导_4",
|
|
1379
|
+
"layout": { "visibility": "visible" },
|
|
1380
|
+
"paint": {},
|
|
1381
|
+
"source-layer": "轨道_向导_4"
|
|
1382
|
+
},
|
|
1383
|
+
{
|
|
1384
|
+
"source": "OSM全中国经纬度",
|
|
1385
|
+
"minZoom": 0,
|
|
1386
|
+
"maxZoom": 24,
|
|
1387
|
+
"type": "line",
|
|
1388
|
+
"key": "轨道_向导_5",
|
|
1389
|
+
"id": "轨道_向导_5",
|
|
1390
|
+
"description": "轨道_向导_5",
|
|
1391
|
+
"info": "轨道_向导_5",
|
|
1392
|
+
"layout": { "visibility": "visible" },
|
|
1393
|
+
"paint": {},
|
|
1394
|
+
"source-layer": "轨道_向导_5"
|
|
1395
|
+
},
|
|
1396
|
+
{
|
|
1397
|
+
"source": "OSM全中国经纬度",
|
|
1398
|
+
"minZoom": 12,
|
|
1399
|
+
"maxZoom": 24,
|
|
1400
|
+
"type": "line",
|
|
1401
|
+
"key": "公共服务道路",
|
|
1402
|
+
"id": "公共服务道路",
|
|
1403
|
+
"description": "公共服务道路",
|
|
1404
|
+
"info": "公共服务道路",
|
|
1405
|
+
"layout": { "visibility": "visible" },
|
|
1406
|
+
"paint": {
|
|
1407
|
+
"line-color": "#343a41",
|
|
1408
|
+
"line-width": {
|
|
1409
|
+
"stops": [
|
|
1410
|
+
[0, 1],
|
|
1411
|
+
[11, 1.25],
|
|
1412
|
+
[20, 4]
|
|
1413
|
+
]
|
|
1414
|
+
},
|
|
1415
|
+
"line-dasharray": [1, 1]
|
|
1416
|
+
},
|
|
1417
|
+
"source-layer": "公共服务道路"
|
|
1418
|
+
},
|
|
1419
|
+
{
|
|
1420
|
+
"source": "OSM全中国经纬度",
|
|
1421
|
+
"minZoom": 0,
|
|
1422
|
+
"maxZoom": 24,
|
|
1423
|
+
"type": "line",
|
|
1424
|
+
"key": "小路线",
|
|
1425
|
+
"id": "小路线",
|
|
1426
|
+
"description": "小路",
|
|
1427
|
+
"info": "小路",
|
|
1428
|
+
"layout": { "visibility": "visible" },
|
|
1429
|
+
"paint": { "line-color": "#343a41" },
|
|
1430
|
+
"source-layer": "小路"
|
|
1431
|
+
},
|
|
1432
|
+
{
|
|
1433
|
+
"source": "OSM全中国经纬度",
|
|
1434
|
+
"minZoom": 0,
|
|
1435
|
+
"maxZoom": 24,
|
|
1436
|
+
"type": "line",
|
|
1437
|
+
"key": "一级道路",
|
|
1438
|
+
"id": "一级道路",
|
|
1439
|
+
"description": "一级道路",
|
|
1440
|
+
"info": "一级道路",
|
|
1441
|
+
"layout": { "line-cap": "round", "visibility": "visible" },
|
|
1442
|
+
"filter": ["all", ["==", "编码", "空"]],
|
|
1443
|
+
"paint": {
|
|
1444
|
+
"line-color": "#fff",
|
|
1445
|
+
"line-width": {
|
|
1446
|
+
"stops": [
|
|
1447
|
+
[0, 1.31],
|
|
1448
|
+
[10, 2.97],
|
|
1449
|
+
[15, 7],
|
|
1450
|
+
[20, 10]
|
|
1451
|
+
]
|
|
1452
|
+
}
|
|
1453
|
+
},
|
|
1454
|
+
"source-layer": "一级道路"
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
"source": "OSM全中国经纬度",
|
|
1458
|
+
"minZoom": 0,
|
|
1459
|
+
"maxZoom": 24,
|
|
1460
|
+
"type": "line",
|
|
1461
|
+
"key": "一级道路_链接",
|
|
1462
|
+
"id": "一级道路_链接",
|
|
1463
|
+
"description": "一级道路_链接",
|
|
1464
|
+
"info": "一级道路_链接",
|
|
1465
|
+
"layout": { "line-cap": "round", "visibility": "visible" },
|
|
1466
|
+
"paint": {
|
|
1467
|
+
"line-color": {
|
|
1468
|
+
"stops": [
|
|
1469
|
+
[13, "#40464f"],
|
|
1470
|
+
[14, "#343a41"]
|
|
1471
|
+
]
|
|
1472
|
+
},
|
|
1473
|
+
"line-width": {
|
|
1474
|
+
"base": 1.5,
|
|
1475
|
+
"stops": [
|
|
1476
|
+
[12.5, 0.5],
|
|
1477
|
+
[14, 2],
|
|
1478
|
+
[18, 18]
|
|
1479
|
+
]
|
|
1480
|
+
}
|
|
1481
|
+
},
|
|
1482
|
+
"source-layer": "一级道路_链接"
|
|
1483
|
+
},
|
|
1484
|
+
{
|
|
1485
|
+
"source": "OSM全中国经纬度",
|
|
1486
|
+
"minZoom": 13,
|
|
1487
|
+
"maxZoom": 24,
|
|
1488
|
+
"type": "line",
|
|
1489
|
+
"key": "fc37771b-cff8-4b64-9ca7-a11292988f1e",
|
|
1490
|
+
"id": "fc37771b-cff8-4b64-9ca7-a11292988f1e",
|
|
1491
|
+
"description": "二级道路",
|
|
1492
|
+
"info": "二级道路",
|
|
1493
|
+
"layout": { "line-cap": "round", "visibility": "visible" },
|
|
1494
|
+
"paint": {
|
|
1495
|
+
"line-color": "#586c89",
|
|
1496
|
+
"line-width": {
|
|
1497
|
+
"stops": [
|
|
1498
|
+
[5, 1],
|
|
1499
|
+
[10, 1.5],
|
|
1500
|
+
[18, 19]
|
|
1501
|
+
]
|
|
1502
|
+
}
|
|
1503
|
+
},
|
|
1504
|
+
"source-layer": "二级道路"
|
|
1505
|
+
},
|
|
1506
|
+
{
|
|
1507
|
+
"source": "OSM全中国经纬度",
|
|
1508
|
+
"minZoom": 0,
|
|
1509
|
+
"maxZoom": 24,
|
|
1510
|
+
"type": "line",
|
|
1511
|
+
"key": "二级道路",
|
|
1512
|
+
"id": "二级道路",
|
|
1513
|
+
"description": "二级道路",
|
|
1514
|
+
"info": "二级道路",
|
|
1515
|
+
"layout": { "line-cap": "round", "visibility": "visible" },
|
|
1516
|
+
"paint": {
|
|
1517
|
+
"line-color": {
|
|
1518
|
+
"stops": [
|
|
1519
|
+
[13, "#343a41"],
|
|
1520
|
+
[14, "#2e3238"]
|
|
1521
|
+
]
|
|
1522
|
+
},
|
|
1523
|
+
"line-width": {
|
|
1524
|
+
"base": 1.5,
|
|
1525
|
+
"stops": [
|
|
1526
|
+
[8.5, 0.5],
|
|
1527
|
+
[10, 0.75],
|
|
1528
|
+
[18, 32]
|
|
1529
|
+
]
|
|
1530
|
+
}
|
|
1531
|
+
},
|
|
1532
|
+
"source-layer": "二级道路"
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
"source": "OSM全中国经纬度",
|
|
1536
|
+
"minZoom": 0,
|
|
1537
|
+
"maxZoom": 24,
|
|
1538
|
+
"type": "line",
|
|
1539
|
+
"key": "二级道路_链接",
|
|
1540
|
+
"id": "二级道路_链接",
|
|
1541
|
+
"description": "二级道路_链接",
|
|
1542
|
+
"info": "二级道路_链接",
|
|
1543
|
+
"layout": { "line-cap": "round", "visibility": "visible" },
|
|
1544
|
+
"paint": {
|
|
1545
|
+
"line-color": {
|
|
1546
|
+
"stops": [
|
|
1547
|
+
[13, "#343a41"],
|
|
1548
|
+
[14, "#2e3238"]
|
|
1549
|
+
]
|
|
1550
|
+
},
|
|
1551
|
+
"line-width": {
|
|
1552
|
+
"base": 1.5,
|
|
1553
|
+
"stops": [
|
|
1554
|
+
[12.5, 0.5],
|
|
1555
|
+
[14, 2],
|
|
1556
|
+
[18, 18]
|
|
1557
|
+
]
|
|
1558
|
+
}
|
|
1559
|
+
},
|
|
1560
|
+
"source-layer": "二级道路_链接"
|
|
1561
|
+
},
|
|
1562
|
+
{
|
|
1563
|
+
"source": "OSM全中国经纬度",
|
|
1564
|
+
"minZoom": 0,
|
|
1565
|
+
"maxZoom": 24,
|
|
1566
|
+
"type": "line",
|
|
1567
|
+
"key": "三级道路",
|
|
1568
|
+
"id": "三级道路",
|
|
1569
|
+
"description": "三级道路",
|
|
1570
|
+
"info": "三级道路",
|
|
1571
|
+
"layout": { "visibility": "visible" },
|
|
1572
|
+
"paint": {
|
|
1573
|
+
"line-color": {
|
|
1574
|
+
"stops": [
|
|
1575
|
+
[13, "#343a41"],
|
|
1576
|
+
[14, "#2e3238"]
|
|
1577
|
+
]
|
|
1578
|
+
},
|
|
1579
|
+
"line-width": {
|
|
1580
|
+
"stops": [
|
|
1581
|
+
[0, 1],
|
|
1582
|
+
[12, 2],
|
|
1583
|
+
[15, 4],
|
|
1584
|
+
[20, 5]
|
|
1585
|
+
]
|
|
1586
|
+
}
|
|
1587
|
+
},
|
|
1588
|
+
"source-layer": "三级道路"
|
|
1589
|
+
},
|
|
1590
|
+
{
|
|
1591
|
+
"source": "OSM全中国经纬度",
|
|
1592
|
+
"minZoom": 0,
|
|
1593
|
+
"maxZoom": 24,
|
|
1594
|
+
"type": "line",
|
|
1595
|
+
"key": "三级道路_链接",
|
|
1596
|
+
"id": "三级道路_链接",
|
|
1597
|
+
"description": "三级道路_链接",
|
|
1598
|
+
"info": "三级道路_链接",
|
|
1599
|
+
"layout": { "visibility": "visible" },
|
|
1600
|
+
"paint": {
|
|
1601
|
+
"line-color": {
|
|
1602
|
+
"stops": [
|
|
1603
|
+
[13, "#40464f"],
|
|
1604
|
+
[14, "#343a41"]
|
|
1605
|
+
]
|
|
1606
|
+
}
|
|
1607
|
+
},
|
|
1608
|
+
"source-layer": "三级道路_链接"
|
|
1609
|
+
},
|
|
1610
|
+
{
|
|
1611
|
+
"source": "OSM全中国经纬度",
|
|
1612
|
+
"minZoom": 0,
|
|
1613
|
+
"maxZoom": 24,
|
|
1614
|
+
"type": "line",
|
|
1615
|
+
"key": "主干道线",
|
|
1616
|
+
"id": "主干道线",
|
|
1617
|
+
"description": "主干道",
|
|
1618
|
+
"info": "主干道",
|
|
1619
|
+
"layout": { "visibility": "visible" },
|
|
1620
|
+
"paint": {
|
|
1621
|
+
"line-color": {
|
|
1622
|
+
"stops": [
|
|
1623
|
+
[7, "#7190bc"],
|
|
1624
|
+
[11, "#566881"]
|
|
1625
|
+
]
|
|
1626
|
+
},
|
|
1627
|
+
"line-width": {
|
|
1628
|
+
"base": 1.5,
|
|
1629
|
+
"stops": [
|
|
1630
|
+
[5, 0.75],
|
|
1631
|
+
[18, 18]
|
|
1632
|
+
]
|
|
1633
|
+
}
|
|
1634
|
+
},
|
|
1635
|
+
"source-layer": "主干道"
|
|
1636
|
+
},
|
|
1637
|
+
{
|
|
1638
|
+
"source": "OSM全中国经纬度",
|
|
1639
|
+
"minZoom": 0,
|
|
1640
|
+
"maxZoom": 24,
|
|
1641
|
+
"type": "line",
|
|
1642
|
+
"key": "主干道_链接",
|
|
1643
|
+
"id": "主干道_链接",
|
|
1644
|
+
"description": "主干道_链接",
|
|
1645
|
+
"info": "主干道_链接",
|
|
1646
|
+
"layout": { "line-cap": "round", "visibility": "visible" },
|
|
1647
|
+
"paint": {
|
|
1648
|
+
"line-color": {
|
|
1649
|
+
"stops": [
|
|
1650
|
+
[7, "#7190bc"],
|
|
1651
|
+
[11, "#566881"]
|
|
1652
|
+
]
|
|
1653
|
+
},
|
|
1654
|
+
"line-width": {
|
|
1655
|
+
"stops": [
|
|
1656
|
+
[12, 0.5],
|
|
1657
|
+
[14, 2],
|
|
1658
|
+
[18, 18]
|
|
1659
|
+
]
|
|
1660
|
+
}
|
|
1661
|
+
},
|
|
1662
|
+
"source-layer": "主干道_链接"
|
|
1663
|
+
},
|
|
1664
|
+
{
|
|
1665
|
+
"source": "OSM全中国经纬度",
|
|
1666
|
+
"minZoom": 0,
|
|
1667
|
+
"maxZoom": 24,
|
|
1668
|
+
"type": "line",
|
|
1669
|
+
"key": "高速公路",
|
|
1670
|
+
"id": "高速公路",
|
|
1671
|
+
"description": "高速公路",
|
|
1672
|
+
"info": "高速公路",
|
|
1673
|
+
"layout": { "line-cap": "round", "visibility": "visible" },
|
|
1674
|
+
"filter": ["all", ["==", "fclass", "motorway"]],
|
|
1675
|
+
"paint": {
|
|
1676
|
+
"line-color": {
|
|
1677
|
+
"stops": [
|
|
1678
|
+
[7, "#7190bc"],
|
|
1679
|
+
[11, "#566881"]
|
|
1680
|
+
]
|
|
1681
|
+
},
|
|
1682
|
+
"line-width": {
|
|
1683
|
+
"stops": [
|
|
1684
|
+
[0, 1],
|
|
1685
|
+
[12, 2],
|
|
1686
|
+
[15, 5],
|
|
1687
|
+
[20, 7]
|
|
1688
|
+
]
|
|
1689
|
+
}
|
|
1690
|
+
},
|
|
1691
|
+
"source-layer": "高速公路"
|
|
1692
|
+
},
|
|
1693
|
+
{
|
|
1694
|
+
"source": "OSM全中国经纬度",
|
|
1695
|
+
"minZoom": 0,
|
|
1696
|
+
"maxZoom": 24,
|
|
1697
|
+
"type": "line",
|
|
1698
|
+
"key": "高速公路_链接",
|
|
1699
|
+
"id": "高速公路_链接",
|
|
1700
|
+
"description": "高速公路_链接",
|
|
1701
|
+
"info": "高速公路_链接",
|
|
1702
|
+
"layout": { "line-cap": "round", "visibility": "visible" },
|
|
1703
|
+
"paint": {
|
|
1704
|
+
"line-color": {
|
|
1705
|
+
"stops": [
|
|
1706
|
+
[7, "#7190bc"],
|
|
1707
|
+
[11, "#566881"]
|
|
1708
|
+
]
|
|
1709
|
+
},
|
|
1710
|
+
"line-width": {
|
|
1711
|
+
"stops": [
|
|
1712
|
+
[12, 0.5],
|
|
1713
|
+
[14, 2],
|
|
1714
|
+
[18, 18]
|
|
1715
|
+
]
|
|
1716
|
+
}
|
|
1717
|
+
},
|
|
1718
|
+
"source-layer": "高速公路_链接"
|
|
1719
|
+
},
|
|
1720
|
+
{
|
|
1721
|
+
"source": "OSM全中国经纬度",
|
|
1722
|
+
"minZoom": 0,
|
|
1723
|
+
"maxZoom": 24,
|
|
1724
|
+
"type": "line",
|
|
1725
|
+
"key": "大车道",
|
|
1726
|
+
"id": "大车道",
|
|
1727
|
+
"description": "大车道",
|
|
1728
|
+
"info": "大车道",
|
|
1729
|
+
"layout": { "visibility": "visible" },
|
|
1730
|
+
"paint": { "line-color": "#ffffff" },
|
|
1731
|
+
"source-layer": "大车道"
|
|
1732
|
+
},
|
|
1733
|
+
{
|
|
1734
|
+
"source": "OSM全中国经纬度",
|
|
1735
|
+
"minZoom": 0,
|
|
1736
|
+
"maxZoom": 24,
|
|
1737
|
+
"type": "line",
|
|
1738
|
+
"key": "行人道",
|
|
1739
|
+
"id": "行人道",
|
|
1740
|
+
"description": "行人道",
|
|
1741
|
+
"info": "行人道",
|
|
1742
|
+
"layout": { "visibility": "visible" },
|
|
1743
|
+
"paint": {
|
|
1744
|
+
"line-color": {
|
|
1745
|
+
"stops": [
|
|
1746
|
+
[13, "#343a41"],
|
|
1747
|
+
[14, "#2e3238"]
|
|
1748
|
+
]
|
|
1749
|
+
},
|
|
1750
|
+
"line-width": {
|
|
1751
|
+
"stops": [
|
|
1752
|
+
[8.5, 0.3],
|
|
1753
|
+
[10, 0.5],
|
|
1754
|
+
[18, 10]
|
|
1755
|
+
]
|
|
1756
|
+
}
|
|
1757
|
+
},
|
|
1758
|
+
"source-layer": "行人道"
|
|
1759
|
+
},
|
|
1760
|
+
{
|
|
1761
|
+
"source": "OSM全中国经纬度",
|
|
1762
|
+
"minZoom": 0,
|
|
1763
|
+
"maxZoom": 24,
|
|
1764
|
+
"type": "line",
|
|
1765
|
+
"key": "流动街道",
|
|
1766
|
+
"id": "流动街道",
|
|
1767
|
+
"description": "流动街道",
|
|
1768
|
+
"info": "流动街道",
|
|
1769
|
+
"layout": { "visibility": "visible" },
|
|
1770
|
+
"paint": {
|
|
1771
|
+
"line-color": {
|
|
1772
|
+
"stops": [
|
|
1773
|
+
[13, "#40464f"],
|
|
1774
|
+
[14, "#343a41"]
|
|
1775
|
+
]
|
|
1776
|
+
},
|
|
1777
|
+
"line-width": {
|
|
1778
|
+
"stops": [
|
|
1779
|
+
[12.5, 0.5],
|
|
1780
|
+
[14, 2],
|
|
1781
|
+
[18, 18]
|
|
1782
|
+
]
|
|
1783
|
+
}
|
|
1784
|
+
},
|
|
1785
|
+
"source-layer": "流动街道"
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
"source": "OSM全中国经纬度",
|
|
1789
|
+
"minZoom": 0,
|
|
1790
|
+
"maxZoom": 24,
|
|
1791
|
+
"type": "line",
|
|
1792
|
+
"key": "台阶线",
|
|
1793
|
+
"id": "台阶线",
|
|
1794
|
+
"description": "台阶",
|
|
1795
|
+
"info": "台阶",
|
|
1796
|
+
"layout": { "visibility": "visible" },
|
|
1797
|
+
"paint": {},
|
|
1798
|
+
"source-layer": "台阶"
|
|
1799
|
+
},
|
|
1800
|
+
{
|
|
1801
|
+
"source": "OSM全中国经纬度",
|
|
1802
|
+
"minZoom": 0,
|
|
1803
|
+
"maxZoom": 24,
|
|
1804
|
+
"type": "line",
|
|
1805
|
+
"key": "住宅道路",
|
|
1806
|
+
"id": "住宅道路",
|
|
1807
|
+
"description": "住宅道路",
|
|
1808
|
+
"info": "住宅道路",
|
|
1809
|
+
"layout": { "visibility": "visible" },
|
|
1810
|
+
"paint": {},
|
|
1811
|
+
"source-layer": "住宅道路"
|
|
1812
|
+
},
|
|
1813
|
+
{
|
|
1814
|
+
"source": "OSM全中国经纬度",
|
|
1815
|
+
"minZoom": 0,
|
|
1816
|
+
"maxZoom": 24,
|
|
1817
|
+
"type": "line",
|
|
1818
|
+
"key": "自行车道",
|
|
1819
|
+
"id": "自行车道",
|
|
1820
|
+
"description": "自行车道",
|
|
1821
|
+
"info": "自行车道",
|
|
1822
|
+
"layout": { "visibility": "visible" },
|
|
1823
|
+
"paint": {},
|
|
1824
|
+
"source-layer": "自行车道"
|
|
1825
|
+
},
|
|
1826
|
+
{
|
|
1827
|
+
"source": "OSM全中国经纬度",
|
|
1828
|
+
"minZoom": 0,
|
|
1829
|
+
"maxZoom": 24,
|
|
1830
|
+
"type": "line",
|
|
1831
|
+
"key": "不明道路",
|
|
1832
|
+
"id": "不明道路",
|
|
1833
|
+
"description": "不明道路",
|
|
1834
|
+
"info": "不明道路",
|
|
1835
|
+
"layout": { "visibility": "visible" },
|
|
1836
|
+
"paint": {},
|
|
1837
|
+
"source-layer": "不明道路"
|
|
1838
|
+
},
|
|
1839
|
+
{
|
|
1840
|
+
"source": "OSM全中国经纬度",
|
|
1841
|
+
"minZoom": 0,
|
|
1842
|
+
"maxZoom": 24,
|
|
1843
|
+
"type": "line",
|
|
1844
|
+
"key": "未分类道路",
|
|
1845
|
+
"id": "未分类道路",
|
|
1846
|
+
"description": "未分类道路",
|
|
1847
|
+
"info": "未分类道路",
|
|
1848
|
+
"layout": { "visibility": "visible" },
|
|
1849
|
+
"paint": {},
|
|
1850
|
+
"source-layer": "未分类道路"
|
|
1851
|
+
},
|
|
1852
|
+
{
|
|
1853
|
+
"source": "OSM全中国经纬度",
|
|
1854
|
+
"minZoom": 11,
|
|
1855
|
+
"maxZoom": 24,
|
|
1856
|
+
"type": "symbol",
|
|
1857
|
+
"key": "商业用地注记",
|
|
1858
|
+
"id": "商业用地注记",
|
|
1859
|
+
"description": "商业用地",
|
|
1860
|
+
"info": "商业用地",
|
|
1861
|
+
"layout": {
|
|
1862
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
1863
|
+
"text-size": 12,
|
|
1864
|
+
"text-field": "{name}",
|
|
1865
|
+
"icon-image": "340202_超市",
|
|
1866
|
+
"text-offset": [2.5, 0],
|
|
1867
|
+
"icon-offset": [-2.5, 0],
|
|
1868
|
+
"visibility": "visible"
|
|
1869
|
+
},
|
|
1870
|
+
"paint": {
|
|
1871
|
+
"text-color": "#92a0dd",
|
|
1872
|
+
"text-halo-color": "#212121",
|
|
1873
|
+
"text-halo-width": 2
|
|
1874
|
+
},
|
|
1875
|
+
"source-layer": "商业用地"
|
|
1876
|
+
},
|
|
1877
|
+
{
|
|
1878
|
+
"source": "OSM全中国经纬度",
|
|
1879
|
+
"minZoom": 11,
|
|
1880
|
+
"maxZoom": 24,
|
|
1881
|
+
"type": "symbol",
|
|
1882
|
+
"key": "POI点",
|
|
1883
|
+
"id": "POI点",
|
|
1884
|
+
"description": "POI点",
|
|
1885
|
+
"info": "POI点",
|
|
1886
|
+
"layout": { "visibility": "visible" },
|
|
1887
|
+
"paint": {},
|
|
1888
|
+
"source-layer": "POI点"
|
|
1889
|
+
},
|
|
1890
|
+
{
|
|
1891
|
+
"source": "OSM全中国经纬度",
|
|
1892
|
+
"minZoom": 11,
|
|
1893
|
+
"maxZoom": 24,
|
|
1894
|
+
"type": "symbol",
|
|
1895
|
+
"key": "住宅用地注记",
|
|
1896
|
+
"id": "住宅用地注记",
|
|
1897
|
+
"description": "住宅用地",
|
|
1898
|
+
"info": "住宅用地",
|
|
1899
|
+
"layout": {
|
|
1900
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
1901
|
+
"text-size": 11,
|
|
1902
|
+
"text-field": "{name}",
|
|
1903
|
+
"icon-image": "310300_单幢房屋、普通房屋",
|
|
1904
|
+
"icon-size": 1,
|
|
1905
|
+
"icon-offset": [-25, 0],
|
|
1906
|
+
"visibility": "visible"
|
|
1907
|
+
},
|
|
1908
|
+
"paint": {
|
|
1909
|
+
"text-halo-color": "#212121",
|
|
1910
|
+
"text-halo-width": 2,
|
|
1911
|
+
"text-color": "#c7cbd1",
|
|
1912
|
+
"icon-translate": [-10, 0]
|
|
1913
|
+
},
|
|
1914
|
+
"source-layer": "住宅用地"
|
|
1915
|
+
},
|
|
1916
|
+
{
|
|
1917
|
+
"source": "OSM全中国经纬度",
|
|
1918
|
+
"minZoom": 11,
|
|
1919
|
+
"maxZoom": 24,
|
|
1920
|
+
"type": "symbol",
|
|
1921
|
+
"key": "观光胜地注记",
|
|
1922
|
+
"id": "观光胜地注记",
|
|
1923
|
+
"description": "观光胜地",
|
|
1924
|
+
"info": "观光胜地",
|
|
1925
|
+
"layout": {
|
|
1926
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
1927
|
+
"text-field": "{name}",
|
|
1928
|
+
"text-size": 13,
|
|
1929
|
+
"icon-image": "350100_古迹、遗址",
|
|
1930
|
+
"icon-offset": [-2, 0],
|
|
1931
|
+
"text-offset": [2, 0],
|
|
1932
|
+
"visibility": "visible"
|
|
1933
|
+
},
|
|
1934
|
+
"paint": {
|
|
1935
|
+
"text-halo-color": "#1A1A1A",
|
|
1936
|
+
"text-halo-width": 2,
|
|
1937
|
+
"text-color": "#B3B3B3"
|
|
1938
|
+
},
|
|
1939
|
+
"source-layer": "观光胜地"
|
|
1940
|
+
},
|
|
1941
|
+
{
|
|
1942
|
+
"source": "OSM全中国经纬度",
|
|
1943
|
+
"minZoom": 11,
|
|
1944
|
+
"maxZoom": 24,
|
|
1945
|
+
"type": "symbol",
|
|
1946
|
+
"key": "大学注记",
|
|
1947
|
+
"id": "大学注记",
|
|
1948
|
+
"description": "大学图层信息",
|
|
1949
|
+
"info": "大学图层信息",
|
|
1950
|
+
"layout": {
|
|
1951
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
1952
|
+
"text-size": 12,
|
|
1953
|
+
"text-field": "{name}",
|
|
1954
|
+
"visibility": "visible"
|
|
1955
|
+
},
|
|
1956
|
+
"paint": {
|
|
1957
|
+
"text-halo-color": "#1a1a1a",
|
|
1958
|
+
"text-halo-width": 2,
|
|
1959
|
+
"text-color": "#B3B3B3"
|
|
1960
|
+
},
|
|
1961
|
+
"source-layer": "大学"
|
|
1962
|
+
},
|
|
1963
|
+
{
|
|
1964
|
+
"source": "OSM全中国经纬度",
|
|
1965
|
+
"minZoom": 7,
|
|
1966
|
+
"maxZoom": 24,
|
|
1967
|
+
"type": "symbol",
|
|
1968
|
+
"key": "医院注记",
|
|
1969
|
+
"id": "医院注记",
|
|
1970
|
+
"description": "医院图层信息",
|
|
1971
|
+
"info": "医院图层信息",
|
|
1972
|
+
"layout": {
|
|
1973
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
1974
|
+
"text-field": "{name}",
|
|
1975
|
+
"text-size": 12,
|
|
1976
|
+
"visibility": "visible"
|
|
1977
|
+
},
|
|
1978
|
+
"paint": {
|
|
1979
|
+
"text-halo-color": "#131c20",
|
|
1980
|
+
"text-halo-width": 2,
|
|
1981
|
+
"text-color": "#b7869f"
|
|
1982
|
+
},
|
|
1983
|
+
"source-layer": "医院"
|
|
1984
|
+
},
|
|
1985
|
+
{
|
|
1986
|
+
"source": "OSM全中国经纬度",
|
|
1987
|
+
"minZoom": 0,
|
|
1988
|
+
"maxZoom": 24,
|
|
1989
|
+
"type": "symbol",
|
|
1990
|
+
"key": "工厂注记",
|
|
1991
|
+
"id": "工厂注记",
|
|
1992
|
+
"description": "工厂图层信息",
|
|
1993
|
+
"info": "工厂图层信息",
|
|
1994
|
+
"layout": {
|
|
1995
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
1996
|
+
"text-field": "{name}",
|
|
1997
|
+
"text-size": 12,
|
|
1998
|
+
"visibility": "visible"
|
|
1999
|
+
},
|
|
2000
|
+
"paint": {
|
|
2001
|
+
"text-color": "#c7cbd1",
|
|
2002
|
+
"text-halo-color": "#131c20",
|
|
2003
|
+
"text-halo-width": 2
|
|
2004
|
+
},
|
|
2005
|
+
"source-layer": "工厂"
|
|
2006
|
+
},
|
|
2007
|
+
{
|
|
2008
|
+
"source": "OSM全中国经纬度",
|
|
2009
|
+
"minZoom": 0,
|
|
2010
|
+
"maxZoom": 24,
|
|
2011
|
+
"type": "symbol",
|
|
2012
|
+
"key": "学校注记",
|
|
2013
|
+
"id": "学校注记",
|
|
2014
|
+
"description": "学校图层信息",
|
|
2015
|
+
"info": "学校图层信息",
|
|
2016
|
+
"layout": {
|
|
2017
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2018
|
+
"text-size": 11,
|
|
2019
|
+
"text-field": "{name}",
|
|
2020
|
+
"visibility": "visible"
|
|
2021
|
+
},
|
|
2022
|
+
"paint": {
|
|
2023
|
+
"text-halo-color": "#212121",
|
|
2024
|
+
"text-halo-width": 2,
|
|
2025
|
+
"text-color": "#ffffff"
|
|
2026
|
+
},
|
|
2027
|
+
"source-layer": "学校"
|
|
2028
|
+
},
|
|
2029
|
+
{
|
|
2030
|
+
"source": "OSM全中国经纬度",
|
|
2031
|
+
"minZoom": 0,
|
|
2032
|
+
"maxZoom": 24,
|
|
2033
|
+
"type": "symbol",
|
|
2034
|
+
"key": "首都点",
|
|
2035
|
+
"id": "首都点",
|
|
2036
|
+
"description": "首都点",
|
|
2037
|
+
"info": "首都点",
|
|
2038
|
+
"layout": {
|
|
2039
|
+
"text-field": "{name}",
|
|
2040
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2041
|
+
"text-allow-overlap": true,
|
|
2042
|
+
"visibility": "visible"
|
|
2043
|
+
},
|
|
2044
|
+
"paint": {
|
|
2045
|
+
"text-halo-width": 2,
|
|
2046
|
+
"text-halo-color": "#4a4a4a",
|
|
2047
|
+
"text-color": "#ffffff"
|
|
2048
|
+
},
|
|
2049
|
+
"source-layer": "首都点"
|
|
2050
|
+
},
|
|
2051
|
+
{
|
|
2052
|
+
"source": "OSM全中国经纬度",
|
|
2053
|
+
"minZoom": 0,
|
|
2054
|
+
"maxZoom": 24,
|
|
2055
|
+
"type": "symbol",
|
|
2056
|
+
"key": "省会城市",
|
|
2057
|
+
"id": "省会城市",
|
|
2058
|
+
"description": "省会城市",
|
|
2059
|
+
"info": "省会城市",
|
|
2060
|
+
"layout": {
|
|
2061
|
+
"text-field": "{name}",
|
|
2062
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2063
|
+
"text-allow-overlap": true,
|
|
2064
|
+
"visibility": "visible"
|
|
2065
|
+
},
|
|
2066
|
+
"paint": {
|
|
2067
|
+
"text-halo-color": "#3a4a5f",
|
|
2068
|
+
"text-halo-width": 2,
|
|
2069
|
+
"text-color": "#b3bdcc"
|
|
2070
|
+
},
|
|
2071
|
+
"source-layer": "省会城市"
|
|
2072
|
+
},
|
|
2073
|
+
{
|
|
2074
|
+
"source": "OSM全中国经纬度",
|
|
2075
|
+
"minZoom": 0,
|
|
2076
|
+
"maxZoom": 24,
|
|
2077
|
+
"type": "symbol",
|
|
2078
|
+
"key": "岛屿点",
|
|
2079
|
+
"id": "岛屿点",
|
|
2080
|
+
"description": "岛屿点",
|
|
2081
|
+
"info": "岛屿点",
|
|
2082
|
+
"layout": {
|
|
2083
|
+
"text-field": "{name}",
|
|
2084
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2085
|
+
"text-size": 14,
|
|
2086
|
+
"visibility": "visible"
|
|
2087
|
+
},
|
|
2088
|
+
"paint": {
|
|
2089
|
+
"text-halo-color": "#3a4a5f",
|
|
2090
|
+
"text-halo-width": 1,
|
|
2091
|
+
"text-color": "#b3bdcc"
|
|
2092
|
+
},
|
|
2093
|
+
"source-layer": "岛屿点"
|
|
2094
|
+
},
|
|
2095
|
+
{
|
|
2096
|
+
"source": "OSM全中国经纬度",
|
|
2097
|
+
"minZoom": 0,
|
|
2098
|
+
"maxZoom": 24,
|
|
2099
|
+
"type": "symbol",
|
|
2100
|
+
"key": "城市点",
|
|
2101
|
+
"id": "城市点",
|
|
2102
|
+
"description": "城市点",
|
|
2103
|
+
"info": "城市点",
|
|
2104
|
+
"layout": {
|
|
2105
|
+
"text-field": "{name}",
|
|
2106
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2107
|
+
"text-size": 12,
|
|
2108
|
+
"visibility": "visible"
|
|
2109
|
+
},
|
|
2110
|
+
"paint": {
|
|
2111
|
+
"text-halo-color": "#3a4a5f",
|
|
2112
|
+
"text-halo-width": 1,
|
|
2113
|
+
"text-color": "#b3bdcc"
|
|
2114
|
+
},
|
|
2115
|
+
"source-layer": "城市点"
|
|
2116
|
+
},
|
|
2117
|
+
{
|
|
2118
|
+
"source": "OSM全中国经纬度",
|
|
2119
|
+
"minZoom": 0,
|
|
2120
|
+
"maxZoom": 24,
|
|
2121
|
+
"type": "symbol",
|
|
2122
|
+
"key": "市镇点",
|
|
2123
|
+
"id": "市镇点",
|
|
2124
|
+
"description": "市镇点",
|
|
2125
|
+
"info": "市镇点",
|
|
2126
|
+
"layout": {
|
|
2127
|
+
"text-field": "{name}",
|
|
2128
|
+
"text-size": 11,
|
|
2129
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2130
|
+
"visibility": "visible"
|
|
2131
|
+
},
|
|
2132
|
+
"paint": {
|
|
2133
|
+
"text-halo-color": "#1A1A1A",
|
|
2134
|
+
"text-halo-width": 1,
|
|
2135
|
+
"text-color": "#D9D9D9"
|
|
2136
|
+
},
|
|
2137
|
+
"source-layer": "市镇点"
|
|
2138
|
+
},
|
|
2139
|
+
{
|
|
2140
|
+
"source": "OSM全中国经纬度",
|
|
2141
|
+
"minZoom": 0,
|
|
2142
|
+
"maxZoom": 24,
|
|
2143
|
+
"type": "symbol",
|
|
2144
|
+
"key": "地区点",
|
|
2145
|
+
"id": "地区点",
|
|
2146
|
+
"description": "地区点",
|
|
2147
|
+
"info": "地区点",
|
|
2148
|
+
"layout": {
|
|
2149
|
+
"text-field": "{name}",
|
|
2150
|
+
"text-size": 12,
|
|
2151
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2152
|
+
"visibility": "visible"
|
|
2153
|
+
},
|
|
2154
|
+
"paint": { "text-halo-color": "#ffffff", "text-halo-width": 1 },
|
|
2155
|
+
"source-layer": "地区点"
|
|
2156
|
+
},
|
|
2157
|
+
{
|
|
2158
|
+
"source": "OSM全中国经纬度",
|
|
2159
|
+
"minZoom": 0,
|
|
2160
|
+
"maxZoom": 24,
|
|
2161
|
+
"type": "symbol",
|
|
2162
|
+
"key": "乡村点",
|
|
2163
|
+
"id": "乡村点",
|
|
2164
|
+
"description": "乡村点",
|
|
2165
|
+
"info": "乡村点",
|
|
2166
|
+
"layout": {
|
|
2167
|
+
"text-field": "{name}",
|
|
2168
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2169
|
+
"visibility": "visible"
|
|
2170
|
+
},
|
|
2171
|
+
"paint": {
|
|
2172
|
+
"text-color": "#b3bdcc",
|
|
2173
|
+
"text-halo-color": "#3a4a5f",
|
|
2174
|
+
"text-halo-width": 1
|
|
2175
|
+
},
|
|
2176
|
+
"source-layer": "乡村点"
|
|
2177
|
+
},
|
|
2178
|
+
{
|
|
2179
|
+
"source": "OSM全中国经纬度",
|
|
2180
|
+
"minZoom": 0,
|
|
2181
|
+
"maxZoom": 24,
|
|
2182
|
+
"type": "symbol",
|
|
2183
|
+
"key": "村庄点",
|
|
2184
|
+
"id": "村庄点",
|
|
2185
|
+
"description": "村庄点",
|
|
2186
|
+
"info": "村庄点",
|
|
2187
|
+
"layout": {
|
|
2188
|
+
"text-field": "{name}",
|
|
2189
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2190
|
+
"text-size": 11,
|
|
2191
|
+
"visibility": "visible"
|
|
2192
|
+
},
|
|
2193
|
+
"paint": {
|
|
2194
|
+
"text-halo-color": "#131c20",
|
|
2195
|
+
"text-halo-width": 1.5,
|
|
2196
|
+
"text-color": "#c7cbd1"
|
|
2197
|
+
},
|
|
2198
|
+
"source-layer": "村庄点"
|
|
2199
|
+
},
|
|
2200
|
+
{
|
|
2201
|
+
"source": "OSM全中国经纬度",
|
|
2202
|
+
"minZoom": 0,
|
|
2203
|
+
"maxZoom": 24,
|
|
2204
|
+
"type": "symbol",
|
|
2205
|
+
"key": "小村庄点",
|
|
2206
|
+
"id": "小村庄点",
|
|
2207
|
+
"description": "小村庄点",
|
|
2208
|
+
"info": "小村庄点",
|
|
2209
|
+
"layout": {
|
|
2210
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2211
|
+
"text-field": "{name}",
|
|
2212
|
+
"text-size": 11,
|
|
2213
|
+
"visibility": "visible"
|
|
2214
|
+
},
|
|
2215
|
+
"paint": {
|
|
2216
|
+
"text-halo-color": "#1A1A1A",
|
|
2217
|
+
"text-halo-width": 1,
|
|
2218
|
+
"text-color": "#BFBFBF"
|
|
2219
|
+
},
|
|
2220
|
+
"source-layer": "小村庄点"
|
|
2221
|
+
},
|
|
2222
|
+
{
|
|
2223
|
+
"source": "OSM全中国经纬度",
|
|
2224
|
+
"minZoom": 12,
|
|
2225
|
+
"maxZoom": 24,
|
|
2226
|
+
"type": "symbol",
|
|
2227
|
+
"key": "所在地点",
|
|
2228
|
+
"id": "所在地点",
|
|
2229
|
+
"description": "所在地点",
|
|
2230
|
+
"info": "所在地点",
|
|
2231
|
+
"layout": {
|
|
2232
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2233
|
+
"text-field": "{name}",
|
|
2234
|
+
"text-size": 11,
|
|
2235
|
+
"visibility": "visible"
|
|
2236
|
+
},
|
|
2237
|
+
"paint": {
|
|
2238
|
+
"text-halo-width": 2,
|
|
2239
|
+
"text-halo-color": "#212121",
|
|
2240
|
+
"text-color": "#7fa674"
|
|
2241
|
+
},
|
|
2242
|
+
"source-layer": "所在地点"
|
|
2243
|
+
},
|
|
2244
|
+
{
|
|
2245
|
+
"source": "OSM全中国经纬度",
|
|
2246
|
+
"minZoom": 0,
|
|
2247
|
+
"maxZoom": 24,
|
|
2248
|
+
"type": "symbol",
|
|
2249
|
+
"key": "农场点",
|
|
2250
|
+
"id": "农场点",
|
|
2251
|
+
"description": "农场点",
|
|
2252
|
+
"info": "农场点",
|
|
2253
|
+
"layout": {
|
|
2254
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2255
|
+
"text-field": "{name}",
|
|
2256
|
+
"visibility": "visible"
|
|
2257
|
+
},
|
|
2258
|
+
"paint": {
|
|
2259
|
+
"text-color": "#7fa674",
|
|
2260
|
+
"text-halo-color": "#131c20",
|
|
2261
|
+
"text-halo-width": 1
|
|
2262
|
+
},
|
|
2263
|
+
"source-layer": "农场点"
|
|
2264
|
+
},
|
|
2265
|
+
{
|
|
2266
|
+
"source": "OSM全中国经纬度",
|
|
2267
|
+
"minZoom": 0,
|
|
2268
|
+
"maxZoom": 24,
|
|
2269
|
+
"type": "symbol",
|
|
2270
|
+
"key": "郊区点",
|
|
2271
|
+
"id": "郊区点",
|
|
2272
|
+
"description": "郊区点",
|
|
2273
|
+
"info": "郊区点",
|
|
2274
|
+
"layout": {
|
|
2275
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2276
|
+
"text-field": "{name}",
|
|
2277
|
+
"text-size": 13,
|
|
2278
|
+
"visibility": "visible"
|
|
2279
|
+
},
|
|
2280
|
+
"paint": {
|
|
2281
|
+
"text-halo-color": "#131c20",
|
|
2282
|
+
"text-halo-width": 2,
|
|
2283
|
+
"text-color": "#c7cbd1"
|
|
2284
|
+
},
|
|
2285
|
+
"source-layer": "郊区点"
|
|
2286
|
+
},
|
|
2287
|
+
{
|
|
2288
|
+
"source": "OSM全中国经纬度",
|
|
2289
|
+
"minZoom": 0,
|
|
2290
|
+
"maxZoom": 24,
|
|
2291
|
+
"type": "symbol",
|
|
2292
|
+
"key": "出租车停靠位置",
|
|
2293
|
+
"id": "出租车停靠位置",
|
|
2294
|
+
"description": "出租车停靠位置",
|
|
2295
|
+
"info": "出租车停靠位置",
|
|
2296
|
+
"layout": { "visibility": "visible" },
|
|
2297
|
+
"paint": {},
|
|
2298
|
+
"source-layer": "出租车停靠位置"
|
|
2299
|
+
},
|
|
2300
|
+
{
|
|
2301
|
+
"source": "OSM全中国经纬度",
|
|
2302
|
+
"minZoom": 0,
|
|
2303
|
+
"maxZoom": 24,
|
|
2304
|
+
"type": "symbol",
|
|
2305
|
+
"key": "电车点",
|
|
2306
|
+
"id": "电车点",
|
|
2307
|
+
"description": "电车点",
|
|
2308
|
+
"info": "电车点",
|
|
2309
|
+
"layout": { "visibility": "visible" },
|
|
2310
|
+
"paint": {},
|
|
2311
|
+
"source-layer": "电车点"
|
|
2312
|
+
},
|
|
2313
|
+
{
|
|
2314
|
+
"source": "OSM全中国经纬度",
|
|
2315
|
+
"minZoom": 0,
|
|
2316
|
+
"maxZoom": 24,
|
|
2317
|
+
"type": "symbol",
|
|
2318
|
+
"key": "渡轮码头点",
|
|
2319
|
+
"id": "渡轮码头点",
|
|
2320
|
+
"description": "渡轮码头点",
|
|
2321
|
+
"info": "渡轮码头点",
|
|
2322
|
+
"layout": { "visibility": "visible" },
|
|
2323
|
+
"paint": {},
|
|
2324
|
+
"source-layer": "渡轮码头点"
|
|
2325
|
+
},
|
|
2326
|
+
{
|
|
2327
|
+
"source": "OSM全中国经纬度",
|
|
2328
|
+
"minZoom": 0,
|
|
2329
|
+
"maxZoom": 24,
|
|
2330
|
+
"type": "symbol",
|
|
2331
|
+
"key": "公交车站点",
|
|
2332
|
+
"id": "公交车站点",
|
|
2333
|
+
"description": "公交车站点",
|
|
2334
|
+
"info": "公交车站点",
|
|
2335
|
+
"layout": { "visibility": "visible" },
|
|
2336
|
+
"paint": {},
|
|
2337
|
+
"source-layer": "公交车站点"
|
|
2338
|
+
},
|
|
2339
|
+
{
|
|
2340
|
+
"source": "OSM全中国经纬度",
|
|
2341
|
+
"minZoom": 0,
|
|
2342
|
+
"maxZoom": 24,
|
|
2343
|
+
"type": "symbol",
|
|
2344
|
+
"key": "机动轨道点",
|
|
2345
|
+
"id": "机动轨道点",
|
|
2346
|
+
"description": "机动轨道点",
|
|
2347
|
+
"info": "机动轨道点",
|
|
2348
|
+
"layout": { "visibility": "visible" },
|
|
2349
|
+
"paint": {},
|
|
2350
|
+
"source-layer": "机动轨道点"
|
|
2351
|
+
},
|
|
2352
|
+
{
|
|
2353
|
+
"source": "OSM全中国经纬度",
|
|
2354
|
+
"minZoom": 0,
|
|
2355
|
+
"maxZoom": 24,
|
|
2356
|
+
"type": "symbol",
|
|
2357
|
+
"key": "机动站点",
|
|
2358
|
+
"id": "机动站点",
|
|
2359
|
+
"description": "机动站点",
|
|
2360
|
+
"info": "机动站点",
|
|
2361
|
+
"layout": { "visibility": "visible" },
|
|
2362
|
+
"paint": {},
|
|
2363
|
+
"source-layer": "机动站点"
|
|
2364
|
+
},
|
|
2365
|
+
{
|
|
2366
|
+
"source": "OSM全中国经纬度",
|
|
2367
|
+
"minZoom": 0,
|
|
2368
|
+
"maxZoom": 24,
|
|
2369
|
+
"type": "symbol",
|
|
2370
|
+
"key": "汽车站点",
|
|
2371
|
+
"id": "汽车站点",
|
|
2372
|
+
"description": "汽车站点",
|
|
2373
|
+
"info": "汽车站点",
|
|
2374
|
+
"layout": { "visibility": "visible" },
|
|
2375
|
+
"paint": {},
|
|
2376
|
+
"source-layer": "汽车站点"
|
|
2377
|
+
},
|
|
2378
|
+
{
|
|
2379
|
+
"source": "OSM全中国经纬度",
|
|
2380
|
+
"minZoom": 0,
|
|
2381
|
+
"maxZoom": 24,
|
|
2382
|
+
"type": "symbol",
|
|
2383
|
+
"key": "名胜古迹点",
|
|
2384
|
+
"id": "名胜古迹点",
|
|
2385
|
+
"description": "名胜古迹点",
|
|
2386
|
+
"info": "名胜古迹点",
|
|
2387
|
+
"layout": { "visibility": "visible" },
|
|
2388
|
+
"paint": {},
|
|
2389
|
+
"source-layer": "名胜古迹点"
|
|
2390
|
+
},
|
|
2391
|
+
{
|
|
2392
|
+
"source": "OSM全中国经纬度",
|
|
2393
|
+
"minZoom": 0,
|
|
2394
|
+
"maxZoom": 24,
|
|
2395
|
+
"type": "symbol",
|
|
2396
|
+
"key": "自行车停车场点",
|
|
2397
|
+
"id": "自行车停车场点",
|
|
2398
|
+
"description": "自行车停车场点",
|
|
2399
|
+
"info": "自行车停车场点",
|
|
2400
|
+
"layout": { "visibility": "visible" },
|
|
2401
|
+
"paint": {},
|
|
2402
|
+
"source-layer": "自行车停车场点"
|
|
2403
|
+
},
|
|
2404
|
+
{
|
|
2405
|
+
"source": "OSM全中国经纬度",
|
|
2406
|
+
"minZoom": 0,
|
|
2407
|
+
"maxZoom": 24,
|
|
2408
|
+
"type": "symbol",
|
|
2409
|
+
"key": "闸门点",
|
|
2410
|
+
"id": "闸门点",
|
|
2411
|
+
"description": "闸门点",
|
|
2412
|
+
"info": "闸门点",
|
|
2413
|
+
"layout": { "visibility": "visible" },
|
|
2414
|
+
"paint": {},
|
|
2415
|
+
"source-layer": "闸门点"
|
|
2416
|
+
},
|
|
2417
|
+
{
|
|
2418
|
+
"source": "OSM全中国经纬度",
|
|
2419
|
+
"minZoom": 0,
|
|
2420
|
+
"maxZoom": 24,
|
|
2421
|
+
"type": "symbol",
|
|
2422
|
+
"key": "旋转点",
|
|
2423
|
+
"id": "旋转点",
|
|
2424
|
+
"description": "旋转点",
|
|
2425
|
+
"info": "旋转点",
|
|
2426
|
+
"layout": { "visibility": "visible" },
|
|
2427
|
+
"paint": {},
|
|
2428
|
+
"source-layer": "旋转点"
|
|
2429
|
+
},
|
|
2430
|
+
{
|
|
2431
|
+
"source": "OSM全中国经纬度",
|
|
2432
|
+
"minZoom": 0,
|
|
2433
|
+
"maxZoom": 24,
|
|
2434
|
+
"type": "symbol",
|
|
2435
|
+
"key": "停车点",
|
|
2436
|
+
"id": "停车点",
|
|
2437
|
+
"description": "停车点",
|
|
2438
|
+
"info": "停车点",
|
|
2439
|
+
"layout": { "visibility": "visible" },
|
|
2440
|
+
"paint": {},
|
|
2441
|
+
"source-layer": "停车点"
|
|
2442
|
+
},
|
|
2443
|
+
{
|
|
2444
|
+
"source": "OSM全中国经纬度",
|
|
2445
|
+
"minZoom": 0,
|
|
2446
|
+
"maxZoom": 24,
|
|
2447
|
+
"type": "symbol",
|
|
2448
|
+
"key": "停车场点",
|
|
2449
|
+
"id": "停车场点",
|
|
2450
|
+
"description": "停车场点",
|
|
2451
|
+
"info": "停车场点",
|
|
2452
|
+
"layout": { "visibility": "visible" },
|
|
2453
|
+
"paint": {},
|
|
2454
|
+
"source-layer": "停车场点"
|
|
2455
|
+
},
|
|
2456
|
+
{
|
|
2457
|
+
"source": "OSM全中国经纬度",
|
|
2458
|
+
"minZoom": 0,
|
|
2459
|
+
"maxZoom": 24,
|
|
2460
|
+
"type": "symbol",
|
|
2461
|
+
"key": "摄像头点",
|
|
2462
|
+
"id": "摄像头点",
|
|
2463
|
+
"description": "摄像头点",
|
|
2464
|
+
"info": "摄像头点",
|
|
2465
|
+
"layout": { "visibility": "visible" },
|
|
2466
|
+
"paint": {},
|
|
2467
|
+
"source-layer": "摄像头点"
|
|
2468
|
+
},
|
|
2469
|
+
{
|
|
2470
|
+
"source": "OSM全中国经纬度",
|
|
2471
|
+
"minZoom": 0,
|
|
2472
|
+
"maxZoom": 24,
|
|
2473
|
+
"type": "symbol",
|
|
2474
|
+
"key": "浅滩点",
|
|
2475
|
+
"id": "浅滩点",
|
|
2476
|
+
"description": "浅滩点",
|
|
2477
|
+
"info": "浅滩点",
|
|
2478
|
+
"layout": { "visibility": "visible" },
|
|
2479
|
+
"paint": {},
|
|
2480
|
+
"source-layer": "浅滩点"
|
|
2481
|
+
},
|
|
2482
|
+
{
|
|
2483
|
+
"source": "OSM全中国经纬度",
|
|
2484
|
+
"minZoom": 0,
|
|
2485
|
+
"maxZoom": 24,
|
|
2486
|
+
"type": "symbol",
|
|
2487
|
+
"key": "瀑布点",
|
|
2488
|
+
"id": "瀑布点",
|
|
2489
|
+
"description": "瀑布点",
|
|
2490
|
+
"info": "瀑布点",
|
|
2491
|
+
"layout": { "visibility": "visible" },
|
|
2492
|
+
"paint": {},
|
|
2493
|
+
"source-layer": "瀑布点"
|
|
2494
|
+
},
|
|
2495
|
+
{
|
|
2496
|
+
"source": "OSM全中国经纬度",
|
|
2497
|
+
"minZoom": 0,
|
|
2498
|
+
"maxZoom": 24,
|
|
2499
|
+
"type": "symbol",
|
|
2500
|
+
"key": "码头点",
|
|
2501
|
+
"id": "码头点",
|
|
2502
|
+
"description": "码头点",
|
|
2503
|
+
"info": "码头点",
|
|
2504
|
+
"layout": { "visibility": "visible" },
|
|
2505
|
+
"paint": {},
|
|
2506
|
+
"source-layer": "码头点"
|
|
2507
|
+
},
|
|
2508
|
+
{
|
|
2509
|
+
"source": "OSM全中国经纬度",
|
|
2510
|
+
"minZoom": 0,
|
|
2511
|
+
"maxZoom": 24,
|
|
2512
|
+
"type": "symbol",
|
|
2513
|
+
"key": "路灯点",
|
|
2514
|
+
"id": "路灯点",
|
|
2515
|
+
"description": "路灯点",
|
|
2516
|
+
"info": "路灯点",
|
|
2517
|
+
"layout": { "visibility": "visible" },
|
|
2518
|
+
"paint": {},
|
|
2519
|
+
"source-layer": "路灯点"
|
|
2520
|
+
},
|
|
2521
|
+
{
|
|
2522
|
+
"source": "OSM全中国经纬度",
|
|
2523
|
+
"minZoom": 0,
|
|
2524
|
+
"maxZoom": 24,
|
|
2525
|
+
"type": "symbol",
|
|
2526
|
+
"key": "加油站点",
|
|
2527
|
+
"id": "加油站点",
|
|
2528
|
+
"description": "加油站点",
|
|
2529
|
+
"info": "加油站点",
|
|
2530
|
+
"layout": { "visibility": "visible" },
|
|
2531
|
+
"paint": {},
|
|
2532
|
+
"source-layer": "加油站点"
|
|
2533
|
+
},
|
|
2534
|
+
{
|
|
2535
|
+
"source": "OSM全中国经纬度",
|
|
2536
|
+
"minZoom": 0,
|
|
2537
|
+
"maxZoom": 24,
|
|
2538
|
+
"type": "symbol",
|
|
2539
|
+
"key": "环状交叉路口",
|
|
2540
|
+
"id": "环状交叉路口",
|
|
2541
|
+
"description": "环状交叉路口",
|
|
2542
|
+
"info": "环状交叉路口",
|
|
2543
|
+
"layout": { "visibility": "visible" },
|
|
2544
|
+
"paint": {},
|
|
2545
|
+
"source-layer": "环状交叉路口"
|
|
2546
|
+
},
|
|
2547
|
+
{
|
|
2548
|
+
"source": "OSM全中国经纬度",
|
|
2549
|
+
"minZoom": 0,
|
|
2550
|
+
"maxZoom": 24,
|
|
2551
|
+
"type": "symbol",
|
|
2552
|
+
"key": "河堤点",
|
|
2553
|
+
"id": "河堤点",
|
|
2554
|
+
"description": "河堤点",
|
|
2555
|
+
"info": "河堤点",
|
|
2556
|
+
"layout": { "visibility": "visible" },
|
|
2557
|
+
"paint": {},
|
|
2558
|
+
"source-layer": "河堤点"
|
|
2559
|
+
},
|
|
2560
|
+
{
|
|
2561
|
+
"source": "OSM全中国经纬度",
|
|
2562
|
+
"minZoom": 0,
|
|
2563
|
+
"maxZoom": 24,
|
|
2564
|
+
"type": "symbol",
|
|
2565
|
+
"key": "公共服务点",
|
|
2566
|
+
"id": "公共服务点",
|
|
2567
|
+
"description": "公共服务点",
|
|
2568
|
+
"info": "公共服务点",
|
|
2569
|
+
"layout": { "visibility": "visible" },
|
|
2570
|
+
"paint": {},
|
|
2571
|
+
"source-layer": "公共服务点"
|
|
2572
|
+
},
|
|
2573
|
+
{
|
|
2574
|
+
"source": "OSM全中国经纬度",
|
|
2575
|
+
"minZoom": 0,
|
|
2576
|
+
"maxZoom": 24,
|
|
2577
|
+
"type": "symbol",
|
|
2578
|
+
"key": "多层停车场点",
|
|
2579
|
+
"id": "多层停车场点",
|
|
2580
|
+
"description": "多层停车场点",
|
|
2581
|
+
"info": "多层停车场点",
|
|
2582
|
+
"layout": { "visibility": "visible" },
|
|
2583
|
+
"paint": {},
|
|
2584
|
+
"source-layer": "多层停车场点"
|
|
2585
|
+
},
|
|
2586
|
+
{
|
|
2587
|
+
"source": "OSM全中国经纬度",
|
|
2588
|
+
"minZoom": 0,
|
|
2589
|
+
"maxZoom": 24,
|
|
2590
|
+
"type": "symbol",
|
|
2591
|
+
"key": "地下停车场点",
|
|
2592
|
+
"id": "地下停车场点",
|
|
2593
|
+
"description": "地下停车场点",
|
|
2594
|
+
"info": "地下停车场点",
|
|
2595
|
+
"layout": { "visibility": "visible" },
|
|
2596
|
+
"paint": {},
|
|
2597
|
+
"source-layer": "地下停车场点"
|
|
2598
|
+
},
|
|
2599
|
+
{
|
|
2600
|
+
"source": "OSM全中国经纬度",
|
|
2601
|
+
"minZoom": 0,
|
|
2602
|
+
"maxZoom": 24,
|
|
2603
|
+
"type": "symbol",
|
|
2604
|
+
"key": "堤坝点",
|
|
2605
|
+
"id": "堤坝点",
|
|
2606
|
+
"description": "堤坝点",
|
|
2607
|
+
"info": "堤坝点",
|
|
2608
|
+
"layout": { "visibility": "visible" },
|
|
2609
|
+
"paint": {},
|
|
2610
|
+
"source-layer": "堤坝点"
|
|
2611
|
+
},
|
|
2612
|
+
{
|
|
2613
|
+
"source": "OSM全中国经纬度",
|
|
2614
|
+
"minZoom": 0,
|
|
2615
|
+
"maxZoom": 24,
|
|
2616
|
+
"type": "symbol",
|
|
2617
|
+
"key": "船台滑道点",
|
|
2618
|
+
"id": "船台滑道点",
|
|
2619
|
+
"description": "船台滑道点",
|
|
2620
|
+
"info": "船台滑道点",
|
|
2621
|
+
"layout": { "visibility": "visible" },
|
|
2622
|
+
"paint": {},
|
|
2623
|
+
"source-layer": "船台滑道点"
|
|
2624
|
+
},
|
|
2625
|
+
{
|
|
2626
|
+
"source": "OSM全中国经纬度",
|
|
2627
|
+
"minZoom": 0,
|
|
2628
|
+
"maxZoom": 24,
|
|
2629
|
+
"type": "symbol",
|
|
2630
|
+
"key": "高速公路连接点",
|
|
2631
|
+
"id": "高速公路连接点",
|
|
2632
|
+
"description": "高速公路连接点",
|
|
2633
|
+
"info": "高速公路连接点",
|
|
2634
|
+
"layout": { "visibility": "visible" },
|
|
2635
|
+
"paint": {},
|
|
2636
|
+
"source-layer": "高速公路连接点"
|
|
2637
|
+
},
|
|
2638
|
+
{
|
|
2639
|
+
"source": "OSM全中国经纬度",
|
|
2640
|
+
"minZoom": 0,
|
|
2641
|
+
"maxZoom": 24,
|
|
2642
|
+
"type": "symbol",
|
|
2643
|
+
"key": "信号灯点",
|
|
2644
|
+
"id": "信号灯点",
|
|
2645
|
+
"description": "信号灯点",
|
|
2646
|
+
"info": "信号灯点",
|
|
2647
|
+
"layout": { "visibility": "visible" },
|
|
2648
|
+
"paint": {},
|
|
2649
|
+
"source-layer": "信号灯点"
|
|
2650
|
+
},
|
|
2651
|
+
{
|
|
2652
|
+
"source": "OSM全中国经纬度",
|
|
2653
|
+
"minZoom": 0,
|
|
2654
|
+
"maxZoom": 24,
|
|
2655
|
+
"type": "symbol",
|
|
2656
|
+
"key": "十字路口",
|
|
2657
|
+
"id": "十字路口",
|
|
2658
|
+
"description": "十字路口",
|
|
2659
|
+
"info": "十字路口",
|
|
2660
|
+
"layout": { "visibility": "visible" },
|
|
2661
|
+
"paint": {},
|
|
2662
|
+
"source-layer": "十字路口"
|
|
2663
|
+
},
|
|
2664
|
+
{
|
|
2665
|
+
"source": "OSM全中国经纬度",
|
|
2666
|
+
"minZoom": 0,
|
|
2667
|
+
"maxZoom": 24,
|
|
2668
|
+
"type": "symbol",
|
|
2669
|
+
"key": "树木点",
|
|
2670
|
+
"id": "树木点",
|
|
2671
|
+
"description": "树木",
|
|
2672
|
+
"info": "树木",
|
|
2673
|
+
"layout": { "visibility": "visible" },
|
|
2674
|
+
"paint": {},
|
|
2675
|
+
"source-layer": "树木"
|
|
2676
|
+
},
|
|
2677
|
+
{
|
|
2678
|
+
"source": "OSM全中国经纬度",
|
|
2679
|
+
"minZoom": 0,
|
|
2680
|
+
"maxZoom": 24,
|
|
2681
|
+
"type": "symbol",
|
|
2682
|
+
"key": "山顶点",
|
|
2683
|
+
"id": "山顶点",
|
|
2684
|
+
"description": "山顶",
|
|
2685
|
+
"info": "山顶",
|
|
2686
|
+
"layout": { "visibility": "visible" },
|
|
2687
|
+
"paint": {},
|
|
2688
|
+
"source-layer": "山顶"
|
|
2689
|
+
},
|
|
2690
|
+
{
|
|
2691
|
+
"source": "OSM全中国经纬度",
|
|
2692
|
+
"minZoom": 0,
|
|
2693
|
+
"maxZoom": 24,
|
|
2694
|
+
"type": "symbol",
|
|
2695
|
+
"key": "沙滩点",
|
|
2696
|
+
"id": "沙滩点",
|
|
2697
|
+
"description": "沙滩",
|
|
2698
|
+
"info": "沙滩",
|
|
2699
|
+
"layout": { "visibility": "visible" },
|
|
2700
|
+
"paint": {},
|
|
2701
|
+
"source-layer": "沙滩"
|
|
2702
|
+
},
|
|
2703
|
+
{
|
|
2704
|
+
"source": "OSM全中国经纬度",
|
|
2705
|
+
"minZoom": 0,
|
|
2706
|
+
"maxZoom": 24,
|
|
2707
|
+
"type": "symbol",
|
|
2708
|
+
"key": "泉眼点",
|
|
2709
|
+
"id": "泉眼点",
|
|
2710
|
+
"description": "泉眼",
|
|
2711
|
+
"info": "泉眼",
|
|
2712
|
+
"layout": { "visibility": "visible" },
|
|
2713
|
+
"paint": {},
|
|
2714
|
+
"source-layer": "泉眼"
|
|
2715
|
+
},
|
|
2716
|
+
{
|
|
2717
|
+
"source": "OSM全中国经纬度",
|
|
2718
|
+
"minZoom": 0,
|
|
2719
|
+
"maxZoom": 24,
|
|
2720
|
+
"type": "symbol",
|
|
2721
|
+
"key": "峭壁点",
|
|
2722
|
+
"id": "峭壁点",
|
|
2723
|
+
"description": "峭壁",
|
|
2724
|
+
"info": "峭壁",
|
|
2725
|
+
"layout": { "visibility": "visible" },
|
|
2726
|
+
"paint": {},
|
|
2727
|
+
"source-layer": "峭壁"
|
|
2728
|
+
},
|
|
2729
|
+
{
|
|
2730
|
+
"source": "OSM全中国经纬度",
|
|
2731
|
+
"minZoom": 0,
|
|
2732
|
+
"maxZoom": 24,
|
|
2733
|
+
"type": "symbol",
|
|
2734
|
+
"key": "火山口点",
|
|
2735
|
+
"id": "火山口点",
|
|
2736
|
+
"description": "火山口",
|
|
2737
|
+
"info": "火山口",
|
|
2738
|
+
"layout": { "visibility": "visible" },
|
|
2739
|
+
"paint": {},
|
|
2740
|
+
"source-layer": "火山口"
|
|
2741
|
+
},
|
|
2742
|
+
{
|
|
2743
|
+
"source": "OSM全中国经纬度",
|
|
2744
|
+
"minZoom": 0,
|
|
2745
|
+
"maxZoom": 24,
|
|
2746
|
+
"type": "symbol",
|
|
2747
|
+
"key": "洞穴口点",
|
|
2748
|
+
"id": "洞穴口点",
|
|
2749
|
+
"description": "洞穴口",
|
|
2750
|
+
"info": "洞穴口",
|
|
2751
|
+
"layout": { "visibility": "visible" },
|
|
2752
|
+
"paint": {},
|
|
2753
|
+
"source-layer": "洞穴口"
|
|
2754
|
+
},
|
|
2755
|
+
{
|
|
2756
|
+
"source": "OSM全中国经纬度",
|
|
2757
|
+
"minZoom": 0,
|
|
2758
|
+
"maxZoom": 24,
|
|
2759
|
+
"type": "symbol",
|
|
2760
|
+
"key": "冰洞点",
|
|
2761
|
+
"id": "冰洞点",
|
|
2762
|
+
"description": "冰洞",
|
|
2763
|
+
"info": "冰洞",
|
|
2764
|
+
"layout": { "visibility": "visible" },
|
|
2765
|
+
"paint": {},
|
|
2766
|
+
"source-layer": "冰洞"
|
|
2767
|
+
},
|
|
2768
|
+
{
|
|
2769
|
+
"source": "OSM全中国经纬度",
|
|
2770
|
+
"minZoom": 11,
|
|
2771
|
+
"maxZoom": 24,
|
|
2772
|
+
"type": "symbol",
|
|
2773
|
+
"key": "公园POI面注记",
|
|
2774
|
+
"id": "公园POI面注记",
|
|
2775
|
+
"description": "公园POI面",
|
|
2776
|
+
"info": "公园POI面",
|
|
2777
|
+
"layout": {
|
|
2778
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2779
|
+
"text-field": "{name}",
|
|
2780
|
+
"text-size": 13,
|
|
2781
|
+
"symbol-avoid-edges": false,
|
|
2782
|
+
"text-allow-overlap": false,
|
|
2783
|
+
"text-ignore-placement": false,
|
|
2784
|
+
"text-optional": false,
|
|
2785
|
+
"symbol-spacing": 1500,
|
|
2786
|
+
"text-max-width": 80,
|
|
2787
|
+
"text-letter-spacing": 0,
|
|
2788
|
+
"icon-offset": [-2.5, 0],
|
|
2789
|
+
"icon-image": "340303_陵园",
|
|
2790
|
+
"text-offset": [2.5, 0],
|
|
2791
|
+
"visibility": "visible"
|
|
2792
|
+
},
|
|
2793
|
+
"paint": {
|
|
2794
|
+
"text-color": "#7fa674",
|
|
2795
|
+
"text-halo-color": "#212121",
|
|
2796
|
+
"text-halo-width": 2
|
|
2797
|
+
},
|
|
2798
|
+
"source-layer": "公园POI面"
|
|
2799
|
+
},
|
|
2800
|
+
{
|
|
2801
|
+
"source": "OSM全中国经纬度",
|
|
2802
|
+
"minZoom": 11,
|
|
2803
|
+
"maxZoom": 24,
|
|
2804
|
+
"type": "symbol",
|
|
2805
|
+
"key": "铁路注记",
|
|
2806
|
+
"id": "铁路注记",
|
|
2807
|
+
"description": "铁路",
|
|
2808
|
+
"info": "铁路",
|
|
2809
|
+
"layout": {
|
|
2810
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2811
|
+
"text-field": "{name}",
|
|
2812
|
+
"text-size": 13,
|
|
2813
|
+
"symbol-placement": "line",
|
|
2814
|
+
"visibility": "visible"
|
|
2815
|
+
},
|
|
2816
|
+
"paint": {
|
|
2817
|
+
"text-halo-color": "#212121",
|
|
2818
|
+
"text-halo-width": 2,
|
|
2819
|
+
"text-color": "#999999"
|
|
2820
|
+
},
|
|
2821
|
+
"source-layer": "铁路"
|
|
2822
|
+
},
|
|
2823
|
+
{
|
|
2824
|
+
"source": "OSM全中国经纬度",
|
|
2825
|
+
"minZoom": 0,
|
|
2826
|
+
"maxZoom": 24,
|
|
2827
|
+
"type": "symbol",
|
|
2828
|
+
"key": "4c4b4561-cdbc-467f-b7c4-2958489c946a",
|
|
2829
|
+
"id": "4c4b4561-cdbc-467f-b7c4-2958489c946a",
|
|
2830
|
+
"description": "主干道",
|
|
2831
|
+
"info": "主干道",
|
|
2832
|
+
"layout": {
|
|
2833
|
+
"text-field": "{ref}",
|
|
2834
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2835
|
+
"icon-image": "rectangle-yellow-3",
|
|
2836
|
+
"icon-size": {
|
|
2837
|
+
"stops": [
|
|
2838
|
+
[7, 0.3],
|
|
2839
|
+
[14, 0.6]
|
|
2840
|
+
]
|
|
2841
|
+
},
|
|
2842
|
+
"text-size": {
|
|
2843
|
+
"stops": [
|
|
2844
|
+
[0, 7],
|
|
2845
|
+
[16, 12]
|
|
2846
|
+
]
|
|
2847
|
+
},
|
|
2848
|
+
"text-padding": 2,
|
|
2849
|
+
"symbol-placement": "line",
|
|
2850
|
+
"icon-padding": 2,
|
|
2851
|
+
"visibility": "visible"
|
|
2852
|
+
},
|
|
2853
|
+
"filter": ["all", ["!=", "ref", ""]],
|
|
2854
|
+
"paint": { "text-color": "#000000" },
|
|
2855
|
+
"source-layer": "主干道"
|
|
2856
|
+
},
|
|
2857
|
+
{
|
|
2858
|
+
"source": "OSM全中国经纬度",
|
|
2859
|
+
"minZoom": 11,
|
|
2860
|
+
"maxZoom": 24,
|
|
2861
|
+
"type": "symbol",
|
|
2862
|
+
"key": "一级道路注记",
|
|
2863
|
+
"id": "一级道路注记",
|
|
2864
|
+
"description": "一级道路",
|
|
2865
|
+
"info": "一级道路",
|
|
2866
|
+
"layout": {
|
|
2867
|
+
"text-field": "{name}",
|
|
2868
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2869
|
+
"text-size": 11,
|
|
2870
|
+
"symbol-placement": "line",
|
|
2871
|
+
"visibility": "visible"
|
|
2872
|
+
},
|
|
2873
|
+
"paint": {
|
|
2874
|
+
"text-halo-color": "#212121",
|
|
2875
|
+
"text-halo-width": 2,
|
|
2876
|
+
"text-color": "#C7C7C7"
|
|
2877
|
+
},
|
|
2878
|
+
"source-layer": "一级道路"
|
|
2879
|
+
},
|
|
2880
|
+
{
|
|
2881
|
+
"source": "OSM全中国经纬度",
|
|
2882
|
+
"minZoom": 11,
|
|
2883
|
+
"maxZoom": 24,
|
|
2884
|
+
"type": "symbol",
|
|
2885
|
+
"key": "2567f02b-a1b9-4301-8596-e9eb4abea26f",
|
|
2886
|
+
"id": "2567f02b-a1b9-4301-8596-e9eb4abea26f",
|
|
2887
|
+
"description": "一级道路",
|
|
2888
|
+
"info": "一级道路",
|
|
2889
|
+
"layout": {
|
|
2890
|
+
"text-field": "{name}",
|
|
2891
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2892
|
+
"text-size": 11,
|
|
2893
|
+
"symbol-placement": "line",
|
|
2894
|
+
"visibility": "visible"
|
|
2895
|
+
},
|
|
2896
|
+
"paint": {
|
|
2897
|
+
"text-halo-color": "#212121",
|
|
2898
|
+
"text-halo-width": 2,
|
|
2899
|
+
"text-color": "#9b9b9b"
|
|
2900
|
+
},
|
|
2901
|
+
"source-layer": "二级道路"
|
|
2902
|
+
},
|
|
2903
|
+
{
|
|
2904
|
+
"source": "OSM全中国经纬度",
|
|
2905
|
+
"minZoom": 11,
|
|
2906
|
+
"maxZoom": 24,
|
|
2907
|
+
"type": "symbol",
|
|
2908
|
+
"key": "高速公路注记",
|
|
2909
|
+
"id": "高速公路注记",
|
|
2910
|
+
"description": "高速公路",
|
|
2911
|
+
"info": "高速公路",
|
|
2912
|
+
"layout": {
|
|
2913
|
+
"text-field": "{ref}",
|
|
2914
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2915
|
+
"text-size": 11,
|
|
2916
|
+
"symbol-placement": "point",
|
|
2917
|
+
"symbol-spacing": 100,
|
|
2918
|
+
"icon-image": "cn-nths-expy-2",
|
|
2919
|
+
"icon-size": 0.35,
|
|
2920
|
+
"symbol-avoid-edges": false,
|
|
2921
|
+
"text-padding": 40,
|
|
2922
|
+
"visibility": "visible"
|
|
2923
|
+
},
|
|
2924
|
+
"paint": {
|
|
2925
|
+
"text-halo-color": "#131c20",
|
|
2926
|
+
"text-halo-width": 1,
|
|
2927
|
+
"text-color": "#c7cbd1"
|
|
2928
|
+
},
|
|
2929
|
+
"source-layer": "高速公路"
|
|
2930
|
+
},
|
|
2931
|
+
{
|
|
2932
|
+
"source": "OSM全中国经纬度",
|
|
2933
|
+
"minZoom": 11,
|
|
2934
|
+
"maxZoom": 24,
|
|
2935
|
+
"type": "symbol",
|
|
2936
|
+
"key": "地铁注记",
|
|
2937
|
+
"id": "地铁注记",
|
|
2938
|
+
"description": "地铁",
|
|
2939
|
+
"info": "地铁",
|
|
2940
|
+
"layout": {
|
|
2941
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2942
|
+
"text-field": "{name}",
|
|
2943
|
+
"symbol-placement": "line",
|
|
2944
|
+
"text-size": 13,
|
|
2945
|
+
"visibility": "visible"
|
|
2946
|
+
},
|
|
2947
|
+
"paint": {
|
|
2948
|
+
"text-halo-color": "#212121",
|
|
2949
|
+
"text-halo-width": 2,
|
|
2950
|
+
"text-color": "#999999"
|
|
2951
|
+
},
|
|
2952
|
+
"source-layer": "地铁"
|
|
2953
|
+
},
|
|
2954
|
+
{
|
|
2955
|
+
"source": "OSM全中国经纬度",
|
|
2956
|
+
"minZoom": 12,
|
|
2957
|
+
"maxZoom": 24,
|
|
2958
|
+
"type": "symbol",
|
|
2959
|
+
"key": "自然保护区注记",
|
|
2960
|
+
"id": "自然保护区注记",
|
|
2961
|
+
"description": "自然保护区信息",
|
|
2962
|
+
"info": "自然保护区信息",
|
|
2963
|
+
"layout": {
|
|
2964
|
+
"text-font": ["微软雅黑", "微软雅黑"],
|
|
2965
|
+
"text-size": 11,
|
|
2966
|
+
"text-field": "{name}",
|
|
2967
|
+
"visibility": "visible"
|
|
2968
|
+
},
|
|
2969
|
+
"paint": {
|
|
2970
|
+
"text-halo-color": "#191A1A",
|
|
2971
|
+
"text-halo-width": 2,
|
|
2972
|
+
"text-color": "#999999"
|
|
2973
|
+
},
|
|
2974
|
+
"source-layer": "自然保护区"
|
|
2975
|
+
}
|
|
2976
|
+
],
|
|
2977
|
+
"id": "OSM全中国经纬度-id",
|
|
2978
|
+
"crs": null,
|
|
2979
|
+
"path": "D:\\GIS\\Tiles\\VectorTiles\\FileBase\\OSM全中国经纬度"
|
|
2980
|
+
}
|