最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

mapbox-gl開發(fā)教程(十五):加載三維模型

2023-03-01 09:37 作者:地理信息技術雜談  | 我要投稿

--mapbox-gl是一個開源、基于webgl技術的前端地圖類庫--

開發(fā)教程篇十五:加載三維模型mapbox-gl加載三維模型,是通過集成three.js,實現(xiàn)支持格式的模型加載,官網(wǎng)提供了一個加載gltf格式模型。

mapbox-gl集成three.js是通過自定義圖層的形式,關鍵代碼如下:

//引用three.js庫,根據(jù)開發(fā)的實際,需要引用不同的插件

script?src="https://unpkg.com/three@0.106.2/build/three.min.js"

script?src="https://unpkg.com/three@0.106.2/examples/js/loaders/GLTFLoader.js"

//設置地圖上一點的坐標為three.js的基點坐標,建立轉(zhuǎn)換坐標系
var?modelOrigin?=?[148.9819,?-35.39847];

var?modelAltitude?=?0;

//three.js默認是Y軸向上(Y-up),需要進行一個角度轉(zhuǎn)換
var?modelRotate?=?[Math.PI?/?2,?0,?0];

var?modelAsMercatorCoordinate?=?mapboxgl.MercatorCoordinate.fromLngLat(modelOrigin,modelAltitude);

//?three.js對象轉(zhuǎn)換成地圖位置的轉(zhuǎn)換參數(shù)設置(平移、旋轉(zhuǎn)、縮放)

var?modelTransform?=?{

translateX:?modelAsMercatorCoordinate.x,

translateY:?modelAsMercatorCoordinate.y,

translateZ:?modelAsMercatorCoordinate.z,

rotateX:?modelRotate[0],

rotateY:?modelRotate[1],

rotateZ:?modelRotate[2],

scale:?modelAsMercatorCoordinate.meterInMercatorCoordinateUnits()};

自定義圖層的onAdd方法中,新建一個three.js的場景,設置燈光、添加模型等場景對象,具體參見示例代碼;

render方法,根據(jù)平移、旋轉(zhuǎn)、縮放,生成變換矩陣,對three.js場景中的對象進行實時轉(zhuǎn)換,達到和底圖場景保持一致。

render:?function?(gl,?matrix)?{var?rotationX?=...;

var?rotationY?=?...;

var?rotationZ?=?...;

var?m?=?new?THREE.Matrix4().fromArray(matrix);

var?l?=?new?THREE.Matrix4().makeTranslation(...

).scale(new?THREE.Vector3(...)).multiply(rotationX).multiply(rotationY).multiply(rotationZ);

this.camera.projectionMatrix?=?m.multiply(l);

this.renderer.state.reset();

this.renderer.render(this.scene,?this.camera);

this.map.triggerRepaint();

如果需要同時加載多個模型,參見公眾號文章:mapbox-gl中three.js對象的位置,計算距離,在three.js場景中,添加多個模型隊形
參考頁:https://docs.mapbox.com/mapbox-gl-js/example/add-3d-model/

mapbox-gl開發(fā)教程(十五):加載三維模型的評論 (共 條)

分享到微博請遵守國家法律
启东市| 洛浦县| 博白县| 长治县| 青铜峡市| 永新县| 琼结县| 林周县| 拉萨市| 台前县| 双流县| 濮阳市| 化隆| 开江县| 湟源县| 香港 | 茌平县| 肥西县| 临沭县| 湟源县| 湘乡市| 朝阳县| 习水县| 句容市| 哈尔滨市| 东安县| 仪征市| 阜新| 田东县| 清镇市| 宁夏| 兴化市| 香港| 宁强县| 平泉县| 星座| 温州市| 宁河县| 于都县| 德格县| 永城市|