You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In 3D mode, with the following code, I can reach the maximum possible level (25) while zooming.
However in CV, the maximum level I can reach in this area is 15 (as reported by Cesium Inspector's Show Tile Coordinates), so the image is blurry.
var viewer = new Cesium.Viewer('cesiumContainer', {sceneMode: Cesium.SceneMode.COLUMBUS_VIEW});
var cesiumTerrainProviderMeshes = new Cesium.CesiumTerrainProvider({
url : 'https://assets.agi.com/stk-terrain/world',
requestWaterMask : true,
requestVertexNormals : true
});
viewer.terrainProvider = cesiumTerrainProviderMeshes;
var Cartesian3 = Cesium.Cartesian3;
var cameraPostion = new Cartesian3(4419887.063689054, 560837.210807391, 4555926.042467477);
viewer.camera.setView({
destination: cameraPostion
});
var scene = viewer.scene;
var entity = viewer.entities.add({
position: cameraPostion,
point: {
pixelSize: 10
}
});
viewer.extend(Cesium.viewerCesiumInspectorMixin);
The text was updated successfully, but these errors were encountered:
In 3D mode, with the following code, I can reach the maximum possible level (25) while zooming.
However in CV, the maximum level I can reach in this area is 15 (as reported by Cesium Inspector's
Show Tile Coordinates
), so the image is blurry.The text was updated successfully, but these errors were encountered: