-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
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
Reflections of points in sky atmosphere #6904
Comments
Thanks for reporting this @ollazarev, and thanks for including the code example! If possible, it would be a little bit easier for us if you could use our Sandcastle application for sample code instead of codepen: https://cesiumjs.org/Cesium/Build/Apps/Sandcastle/ As a workaround you can set Minimal Example: var viewer = new Cesium.Viewer('cesiumContainer');
function getEntity(coords) {
return new Cesium.Entity({
position : Cesium.Cartesian3.fromDegrees(coords[0], coords[1]),
point: {
pixelSize: 5,
}
});
}
viewer.entities.add(getEntity([-101.678, 57.7833]));
var entity4 = viewer.entities.add(getEntity([-79.38318429999998, 43.653226]));
var heading = Cesium.Math.toRadians(142.8074308297535);
var pitch = Cesium.Math.toRadians(-3.04226367144852);
var range = 15000.0;
var position = entity4.position.getValue(viewer.clock.currentTime);
viewer.camera.lookAt(position, new Cesium.HeadingPitchRange(heading, pitch, range)); @bagnell this is another log depth issue, can you look into this? I'm going to mark it 'next release' since it's a regression. |
This is a regression of #5501. The sandcastle demo there is reproducible once again.
|
This issue is marked for next release, so we should try to get in a fix for next week. Who is best to look at this, @hpinkos do you know? |
Thanks again for reporting this @ollazarev! This has been fixed and will be included in the 1.49 release available September 3rd. |
Look please at this example: editor view / full page view
In the example, four cities Entity are added to the map. All entities include Label and Point. When viewed from a certain angle, a reflection of points in the sky appears.
It has been experimentally verified that the more points on the map, the more points are reflected in the sky. As the camera moves, the points in the sky begin to flicker.
Below is the code setting the camera position:
The text was updated successfully, but these errors were encountered: