码迷,mamicode.com
首页 > 其他好文 > 详细

ceisum_加载倾斜摄影模型

时间:2018-05-17 18:16:38      阅读:960      评论:0      收藏:0      [点我收藏+]

标签:使用   rto   graph   cart   ons   other   mode   color   ready   

  osgb转换为3Dtiles格式(使用工具转换)

  然后加载到cesium中(加载代码见下,可以控制模型高度)

  

var offset = function(height,tileset) {
  console.log(height);
  height = Number(height);
  if (isNaN(height)) {
    return;
  }
  var cartographic = Cesium.Cartographic.fromCartesian(tileset.boundingSphere.center);
  var surface = Cesium.Cartesian3.fromRadians(cartographic.longitude, cartographic.latitude, 0.0);
  var offset = Cesium.Cartesian3.fromRadians(cartographic.longitude, cartographic.latitude, height);
  var translation = Cesium.Cartesian3.subtract(offset, surface, new Cesium.Cartesian3());
  tileset.modelMatrix = Cesium.Matrix4.fromTranslation(translation);
};
// 加载倾斜摄影模型
var tileset = new Cesium.Cesium3DTileset({ url: ‘/‘ });
tileset.readyPromise.then(function(tileset) {
  viewer.scene.primitives.add(tileset);
  offset(100,tileset);
  var boundingSphere = tileset.boundingSphere;
  viewer.camera.viewBoundingSphere(boundingSphere, new Cesium.HeadingPitchRange(0.0, -0.5, boundingSphere.radius));
  viewer.camera.lookAtTransform(Cesium.Matrix4.IDENTITY);
}).otherwise(function(error) {
  console.log(error);
});

 

ceisum_加载倾斜摄影模型

标签:使用   rto   graph   cart   ons   other   mode   color   ready   

原文地址:https://www.cnblogs.com/dongzhiwu/p/9052230.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!