We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reported on the forum: https://groups.google.com/forum/?hl=en#!topic/cesium-dev/lUUFr2-LvGc
var viewer = new Cesium.Viewer('cesiumContainer'); var material = new Cesium.ImageMaterialProperty({ image: '../images/Cesium_Logo_overlay.png', repeat: new Cesium.Cartesian2(1.0, 1.0) }); var wall_1 = viewer.entities.add({ id: 'wall_1', name: 'Two-position wall', wall: { positions: Cesium.Cartesian3.fromDegreesArray([ -110.0, 38.0, -109.0, 38.0]), maximumHeights: [ 10000.0, 10000.0 ], minimumHeights: [ 0.0, 0.0 ], material: material } }); var wall_2 = viewer.entities.add({ id: 'wall_2', name: 'Three-position wall', wall: { positions: Cesium.Cartesian3.fromDegreesArray([ -110.0, 39.0, -109.5, 39.0, -109.0, 39.0]), maximumHeights: [ 10000.0, 10000.0, 10000.0 ], minimumHeights: [ 0.0, 0.0, 0.0 ], material: material } }); viewer.zoomTo(wall_2);
The text was updated successfully, but these errors were encountered:
3b8b2ae
Merge pull request #2873 from AnalyticalGraphicsInc/issue2872
168dd31
Fix #2872: Incorrect WallGeometry texture coordinates
actual fix for #2872
2926c2f
No branches or pull requests
Reported on the forum: https://groups.google.com/forum/?hl=en#!topic/cesium-dev/lUUFr2-LvGc
The text was updated successfully, but these errors were encountered: