每次打开cesium默认加载bing地图,但是我想让它默认加载mapbox的地图,应该怎么操作呢 萌新,附上一段可能对你们没有什么用但是我用了好几天才了解的代码 加载gltf模型 var entities = viewer.entities.add({
position : Cesium.Cartesian3.fromDegrees(-123.0766419,44.0503706),
model : {
uri : 'gltf文件路径'
}
}); 隐藏页面控件 var viewer = new Cesium.Viewer('cesiumContainer',{
geocoder:true,
homeButton:true,
sceneModePicker:false,
baseLayerPicker:true,
navigationHelpButton:true,
animation:false,
creditContainer:"credit",
timeline:false,
fullscreenButton:true,
vrButton:true,
// skyBox : new Cesium.SkyBox({
// sources : {
// positiveX : 'stars/TychoSkymapII.t3_08192x04096_80_px.jpg',
// negativeX : 'stars/TychoSkymapII.t3_08192x04096_80_mx.jpg',
// positiveY : 'stars/TychoSkymapII.t3_08192x04096_80_py.jpg',
// negativeY : 'stars/TychoSkymapII.t3_08192x04096_80_my.jpg',
// positiveZ : 'stars/TychoSkymapII.t3_08192x04096_80_pz.jpg',
// negativeZ : 'stars/TychoSkymapII.t3_08192x04096_80_mz.jpg'
// }
// })
});