日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > javascript >内容正文

javascript

QGIS离线GeoJSON数据,使用Cesium加载并根据楼层高度拉伸(weixin公众号【图说GIS】)

發布時間:2024/3/7 javascript 47 豆豆
生活随笔 收集整理的這篇文章主要介紹了 QGIS离线GeoJSON数据,使用Cesium加载并根据楼层高度拉伸(weixin公众号【图说GIS】) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

前言

往往好多事情是需求推動的,正好一個網友在群里問到”怎么讓Cesium加載GeoJSON的白膜并貼在地形上?“,聯系到他,要了他的數據,完成了代碼并測試通過。正好出差,而且一個人工作之余無事(加之西寧不知咋搞的,賓館旁的市政作業挖掘機22:35還不歇息,可謂是驚天動地啊),通過從數據的獲取到加載進行研究并作出記錄,希望能幫到更多的人!

1. QGIS離線GeoJSON白膜數據
《QGIS離線數據或瓦片并使用Cesium調用離線瓦片》已經寫了相關內容,可惜當時未導出GeoJSON數據,此次基本按照當時得操作步驟進行數據離線。將重要數據作為記錄。

  • 打開OpenStreetMap,框選下載數據,移除相關不相關數據


  • 將其導出為GeoJSON
  • 移除非相關的面狀要素,右鍵Toggle Editing,刪除院子等面狀要素,然后save
  • 添加樓層floor字段,并編輯所有數據,至此制作完成

2. Cesium加載并根據樓層高度拉伸

  • 代碼
<!DOCTYPE html> <html lang="en"><head><meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" /><meta name="theme-color" content="#000000" /><link href="../../Cesium/Widgets/widgets.css" rel="stylesheet"><script type="text/javascript" src="../../Cesium/Cesium.js"></script><script src="../config.js"></script><title>building</title> </head><body style="margin: 0px;width:100%;height:100%;"><div id="cesiumContainer" style="width:100%;height:100%;position:absolute;"></div> </body> <script>//created by onegiser at 2021-10-25const key='天地圖key'const viewer = new Cesium.Viewer('cesiumContainer', {imageryProviderViewModels: [new Cesium.ProviderViewModel({name: "天地圖影像",iconUrl: "/imgs/map/tdt_img.jpg",creationFunction: () => {const imgImageryProvider = new Cesium.WebMapTileServiceImageryProvider({url: 'http://t{s}.tianditu.gov.cn/img_w/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=img&STYLE=default&TILEMATRIXSET=w&FORMAT=tiles&TILEMATRIX={TileMatrix}&TILEROW={TileRow}&TILECOL={TileCol}&tk='+key,layer: 'img_w',style: 'default',format: 'tiles',tileMatrixSetID: 'GoogleMapsCompatible',subdomains: ['0', '1', '2', '3', '4', '5', '6', '7'],minimumLevel: 0,maximumLevel: 18})return [imgImageryProvider]}})],terrainProvider: new Cesium.CesiumTerrainProvider({url: 'https://www.supermapol.com/realspace/services/3D-stk_terrain/rest/realspace/datas/info/data/path',invisibility: true})})const promise = Cesium.GeoJsonDataSource.load('../datas/jzw.geojson')promise.then((dataSource) => {const entities = dataSource.entities.values;for (let i = 0; i < entities.length; i++) {const entity = entities[i];const { properties, polygon } = entitylet extrudedHeight = 300if (properties && properties.floor._value) {extrudedHeight = properties.floor._value * 3}let color = "#fff2cc"if (extrudedHeight <= 50) {color = "#FFFACD"} else if (extrudedHeight <= 100) {color = "#CAE1FF"} else if (extrudedHeight <= 300) {color = "#CD6839"}entity.polygon = new Cesium.PolygonGraphics({hierarchy: polygon.hierarchy,heightReference: Cesium.HeightReference.CLAMP_TO_GROUND,extrudedHeight,material: Cesium.Color.fromCssColorString(color),})viewer.entities.add(entity)}})const x = 103.8768888, y = 36.0348739viewer.camera.flyTo({destination: Cesium.Cartesian3.fromDegrees(x, y, 3000),});</script></html>
  • 效果示意圖

  • 附數據內容
  • { "type": "FeatureCollection", "name": "jzw", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, "features": [ { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "406993124", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "apartments", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 30 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8755367, 36.0337026 ], [ 103.8758049, 36.0336505 ], [ 103.8757727, 36.0335422 ], [ 103.8757174, 36.033553 ], [ 103.8756871, 36.0334508 ], [ 103.8755074, 36.0334856 ], [ 103.8755377, 36.0335878 ], [ 103.8755045, 36.0335943 ], [ 103.8755367, 36.0337026 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "406993128", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "apartments", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 32 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8759819, 36.0338328 ], [ 103.8762501, 36.0337808 ], [ 103.876218, 36.0336725 ], [ 103.8761626, 36.0336832 ], [ 103.8761323, 36.033581 ], [ 103.8759526, 36.0336159 ], [ 103.875983, 36.0337181 ], [ 103.8759497, 36.0337245 ], [ 103.8759819, 36.0338328 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "415840930", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 16 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8746381, 36.0341949 ], [ 103.8751879, 36.0340778 ], [ 103.8751569, 36.0339824 ], [ 103.874607, 36.0340996 ], [ 103.8746381, 36.0341949 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "415841054", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8751451, 36.0335984 ], [ 103.8750347, 36.0332965 ], [ 103.8748874, 36.0333317 ], [ 103.8749976, 36.0336333 ], [ 103.8743731, 36.0337826 ], [ 103.8743394, 36.0336904 ], [ 103.8741776, 36.0337291 ], [ 103.8742561, 36.033944 ], [ 103.8751899, 36.0337208 ], [ 103.8751451, 36.0335984 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "464541339", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8780282, 36.0346422 ], [ 103.8781669, 36.0346098 ], [ 103.8780738, 36.0343492 ], [ 103.8779351, 36.0343816 ], [ 103.8780282, 36.0346422 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "464541341", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 100 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8773037, 36.0347327 ], [ 103.8774205, 36.0347054 ], [ 103.8773988, 36.0346448 ], [ 103.877422, 36.0346394 ], [ 103.8773758, 36.0345103 ], [ 103.8772359, 36.034543 ], [ 103.8773037, 36.0347327 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "464541343", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8777194, 36.0340346 ], [ 103.877755, 36.0340263 ], [ 103.8778594, 36.0343186 ], [ 103.8780533, 36.0342733 ], [ 103.8778979, 36.0338385 ], [ 103.8776039, 36.0339072 ], [ 103.8776159, 36.0339406 ], [ 103.8770869, 36.0340643 ], [ 103.8771273, 36.0341775 ], [ 103.8777208, 36.0340388 ], [ 103.8777194, 36.0340346 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "464541344", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8772241, 36.0344873 ], [ 103.8777766, 36.0343581 ], [ 103.8777362, 36.034245 ], [ 103.8771836, 36.0343741 ], [ 103.8772241, 36.0344873 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "464541345", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8784125, 36.0352433 ], [ 103.8782967, 36.034911 ], [ 103.8781484, 36.0349448 ], [ 103.8781999, 36.0350924 ], [ 103.8782173, 36.0350884 ], [ 103.8782495, 36.0351809 ], [ 103.8777285, 36.0352997 ], [ 103.8777735, 36.0354287 ], [ 103.8783853, 36.0352892 ], [ 103.8784125, 36.0352433 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "464541346", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 16 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8775717, 36.0353123 ], [ 103.8777261, 36.0352771 ], [ 103.8776684, 36.0351114 ], [ 103.8776859, 36.0351074 ], [ 103.8777081, 36.0351712 ], [ 103.8781203, 36.0350772 ], [ 103.8780762, 36.0349506 ], [ 103.8776465, 36.0350486 ], [ 103.877492, 36.0350838 ], [ 103.8775717, 36.0353123 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "464541347", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 13 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8768612, 36.0355515 ], [ 103.8768695, 36.0355688 ], [ 103.8768846, 36.0355828 ], [ 103.8769046, 36.0355919 ], [ 103.8769272, 36.0355948 ], [ 103.8769498, 36.0355914 ], [ 103.876957, 36.0356116 ], [ 103.8774077, 36.0355062 ], [ 103.8773609, 36.0353754 ], [ 103.8769683, 36.0354671 ], [ 103.8769558, 36.0354321 ], [ 103.8769735, 36.035428 ], [ 103.8769063, 36.0352399 ], [ 103.8769614, 36.0352271 ], [ 103.8769671, 36.0352429 ], [ 103.8774641, 36.0351267 ], [ 103.8774202, 36.0350039 ], [ 103.8767269, 36.035166 ], [ 103.8768279, 36.0354487 ], [ 103.8768163, 36.0354514 ], [ 103.8768528, 36.0355535 ], [ 103.8768612, 36.0355515 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "464541351", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8772486, 36.0348422 ], [ 103.8772048, 36.0347198 ], [ 103.8766284, 36.0348545 ], [ 103.8767132, 36.0350917 ], [ 103.8768371, 36.0350628 ], [ 103.8767961, 36.034948 ], [ 103.8772486, 36.0348422 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "464541352", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8771433, 36.0345469 ], [ 103.8770996, 36.0344244 ], [ 103.8765231, 36.0345591 ], [ 103.8766079, 36.0347964 ], [ 103.8767318, 36.0347674 ], [ 103.8766908, 36.0346526 ], [ 103.8771433, 36.0345469 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "464541353", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8768909, 36.034239 ], [ 103.8769413, 36.0343801 ], [ 103.877094, 36.0343444 ], [ 103.877042, 36.0341988 ], [ 103.8770166, 36.0342048 ], [ 103.8769732, 36.0340834 ], [ 103.8763984, 36.0342177 ], [ 103.8764196, 36.0342772 ], [ 103.8764047, 36.0342807 ], [ 103.8764798, 36.0344909 ], [ 103.8766401, 36.0344534 ], [ 103.8766064, 36.0343589 ], [ 103.876589, 36.034363 ], [ 103.8765714, 36.0343137 ], [ 103.8768909, 36.034239 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "466179377", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.877031, 36.0357647 ], [ 103.8771193, 36.0357449 ], [ 103.8771692, 36.0358909 ], [ 103.8772706, 36.036187 ], [ 103.8771082, 36.0362234 ], [ 103.8769809, 36.0358516 ], [ 103.8769791, 36.0358259 ], [ 103.8769877, 36.0358012 ], [ 103.8770056, 36.03578 ], [ 103.877031, 36.0357647 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "466179378", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8771692, 36.0358909 ], [ 103.8775037, 36.035816 ], [ 103.8774537, 36.03567 ], [ 103.8771193, 36.0357449 ], [ 103.8771692, 36.0358909 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "466179380", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8777575, 36.0355636 ], [ 103.8775712, 36.0356053 ], [ 103.8776075, 36.0357112 ], [ 103.8775931, 36.0357145 ], [ 103.8777247, 36.0360988 ], [ 103.8778714, 36.036066 ], [ 103.8777449, 36.0356966 ], [ 103.8777989, 36.0356845 ], [ 103.8777575, 36.0355636 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "466179387", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 40 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8766499, 36.0357566 ], [ 103.8763238, 36.035823 ], [ 103.8763509, 36.03591 ], [ 103.8766378, 36.0358516 ], [ 103.8767098, 36.036083 ], [ 103.8768492, 36.0360546 ], [ 103.8767767, 36.0358216 ], [ 103.8766499, 36.0357566 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "466179389", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": "\"addr:housenumber\"=>\"7\",\"height\"=>\"30\"", "floor": 30 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8761593, 36.035982 ], [ 103.8761284, 36.0358827 ], [ 103.8759365, 36.0359218 ], [ 103.8759296, 36.0358996 ], [ 103.8757255, 36.0359412 ], [ 103.8757149, 36.0359072 ], [ 103.8754953, 36.0359519 ], [ 103.8755291, 36.0360606 ], [ 103.8757483, 36.036016 ], [ 103.8757532, 36.0360317 ], [ 103.8759555, 36.0359905 ], [ 103.875966, 36.0360242 ], [ 103.8761258, 36.0359917 ], [ 103.876172, 36.0361404 ], [ 103.8762874, 36.0361169 ], [ 103.8762403, 36.0359655 ], [ 103.8761593, 36.035982 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "695662453", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 20 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8783064, 36.0355553 ], [ 103.878428, 36.0359106 ], [ 103.8786141, 36.0358689 ], [ 103.8784924, 36.0355137 ], [ 103.878481, 36.03549 ], [ 103.8784608, 36.0354705 ], [ 103.8784339, 36.0354572 ], [ 103.8784032, 36.0354517 ], [ 103.878372, 36.0354544 ], [ 103.8783434, 36.0354651 ], [ 103.8783206, 36.0354826 ], [ 103.878306, 36.0355051 ], [ 103.8783011, 36.0355303 ], [ 103.8783064, 36.0355553 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "695662522", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 32 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8760033, 36.0348803 ], [ 103.8763281, 36.0348086 ], [ 103.876293, 36.0347046 ], [ 103.8759682, 36.0347763 ], [ 103.8760033, 36.0348803 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "695662523", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8753086, 36.0345246 ], [ 103.8759879, 36.0343747 ], [ 103.875955, 36.0342773 ], [ 103.8752758, 36.0344273 ], [ 103.8753086, 36.0345246 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "695662524", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8750593, 36.0345415 ], [ 103.8751476, 36.034522 ], [ 103.8751236, 36.0344509 ], [ 103.8750353, 36.0344704 ], [ 103.8750593, 36.0345415 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "695662527", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 20 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8749948, 36.0348456 ], [ 103.8752073, 36.0347987 ], [ 103.8751557, 36.0346461 ], [ 103.8750478, 36.0346699 ], [ 103.8749433, 36.034693 ], [ 103.8749948, 36.0348456 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "695662528", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 20 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8754401, 36.0350213 ], [ 103.8757814, 36.034946 ], [ 103.8757271, 36.0347849 ], [ 103.8753857, 36.0348603 ], [ 103.8754401, 36.0350213 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "695662529", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 20 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8753381, 36.0355202 ], [ 103.8762125, 36.0353271 ], [ 103.8761634, 36.0351816 ], [ 103.875289, 36.0353746 ], [ 103.8753381, 36.0355202 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "716709408", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 20 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8775268, 36.0349584 ], [ 103.8780036, 36.034847 ], [ 103.8779372, 36.0346613 ], [ 103.8774604, 36.0347726 ], [ 103.8775268, 36.0349584 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "716709415", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8784468, 36.0337828 ], [ 103.8789906, 36.0336527 ], [ 103.8789564, 36.0335594 ], [ 103.8784127, 36.0336895 ], [ 103.8784468, 36.0337828 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "716709416", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8785085, 36.0341103 ], [ 103.8791611, 36.0339542 ], [ 103.8791254, 36.0338566 ], [ 103.8784728, 36.0340127 ], [ 103.8785085, 36.0341103 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "716709417", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8791151, 36.0345462 ], [ 103.8786821, 36.0346498 ], [ 103.8787204, 36.0347545 ], [ 103.8791534, 36.0346509 ], [ 103.8791254, 36.0345745 ], [ 103.8794563, 36.0344954 ], [ 103.8794178, 36.0343901 ], [ 103.8790869, 36.0344693 ], [ 103.8791151, 36.0345462 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "716709418", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 13 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8786077, 36.0343966 ], [ 103.8789956, 36.0343039 ], [ 103.8789645, 36.0342188 ], [ 103.8785766, 36.0343116 ], [ 103.8786077, 36.0343966 ] ] ] ] } }, { "type": "Feature", "properties": { "osm_id": null, "osm_way_id": "716709442", "name": null, "type": null, "aeroway": null, "amenity": null, "admin_level": null, "barrier": null, "boundary": null, "building": "yes", "craft": null, "geological": null, "historic": null, "land_area": null, "landuse": null, "leisure": null, "man_made": null, "military": null, "natural": null, "office": null, "place": null, "shop": null, "sport": null, "tourism": null, "other_tags": null, "floor": 50 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.8774464, 36.0335768 ], [ 103.8778755, 36.0334813 ], [ 103.8778323, 36.0333543 ], [ 103.8774032, 36.0334498 ], [ 103.8774464, 36.0335768 ] ] ] ] } } ] }

    總結

    以上是生活随笔為你收集整理的QGIS离线GeoJSON数据,使用Cesium加载并根据楼层高度拉伸(weixin公众号【图说GIS】)的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

    主站蜘蛛池模板: 视频国产在线 | a级一级黄色片 | 在线超碰91 | 国偷自产av一区二区三区麻豆 | 国产成人亚洲精品无码h在线 | 亚洲国产精品久久久久久 | 久久夜色网 | 日韩精品久久久久久久 | 国产美女作爱全过程免费视频 | 欧美国产一级片 | 亚洲精品日韩丝袜精品 | 国产男女在线 | 三男一女吃奶添下面 | 青青草原国产视频 | 与子敌伦刺激对白播放的优点 | 女儿朋友 | 一级特黄aa| 草比视频在线观看 | 操碰人人 | 久久免费看视频 | 日本免费网站在线观看 | 日韩一区在线免费观看 | 免费毛片视频网站 | 超碰操 | 在线免费看污视频 | 鲁在线视频 | 禁漫天堂黄漫画无遮挡观看 | 亚洲欧美精品在线观看 | 欧美男人操女人 | 国产精品成人国产乱 | 午夜之声l性8电台lx8电台 | 国产视频久久久久 | 中文字幕第七页 | 黄色麻豆视频 | 五月天婷婷在线观看 | 日韩人妻精品一区二区三区 | 老熟妻内射精品一区 | 亚洲欧美自拍另类 | 国产白丝袜美女久久久久 | 亚洲免费久久 | 一线毛片 | 欧美三级视频在线观看 | 中文字幕在线视频一区 | 国产精品99无码一区二区视频 | 小镇姑娘1979版 | 高hnp视频 | 国产高清免费在线观看 | 欧美性猛交xxxx黑人 | 亚洲宅男天堂 | 亚洲国产三区 | 国产suv精品一区二区60 | 天堂av网在线 | 国产白丝袜美女久久久久 | 国产精品天干天干 | 亚洲精品无码久久 | 女人18毛片水真多 | 国产浮力第一页 | 日韩欧美第一页 | 精品人伦一区二区三区蜜桃免费 | 日本一区二区视频 | 捆绑无遮挡打光屁股 | 在线干 | 中文字幕人妻一区二区三区 | 欧美成人区 | 日本激情电影 | 成都免费高清电影 | 日人视频 | 黄色电影在线视频 | 国产小视频网站 | 日韩91精品| 欧美一区二区最爽乱淫视频免费看 | 日韩av一区二区三区 | 色女孩综合网 | 欧美无遮挡 | 亚洲视屏| 精精国产xxxx视频在线播放 | 动漫精品一区一码二码三码四码 | 成全世界免费高清观看 | 国产做a视频 | 国产男女网站 | 日韩精品一二区 | 五月网站| 亚洲综合日韩精品欧美综合区 | 亚洲精品美女久久久 | 人人模人人爽 | 超碰在线中文 | 99ri在线观看 | 99热.com| 涩涩视频网站在线观看 | 亚洲毛片在线播放 | 精品国产一区二区三区久久久 | 在线综合av| 日韩精品一区二区三区在线播放 | 尤物视频在线观看视频 | 亚洲同性gay激情无套 | 丰满熟女一区二区三区 | 国产一区二区精品在线 | 久久影院视频 | 成人免费视频国产免费 |