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
Copy file name to clipboardexpand all lines: CHANGES.md
+6
Original file line number
Diff line number
Diff line change
@@ -16,12 +16,18 @@ Change Log
16
16
* Deprecated `PerspectiveOffCenterFrustum.getPixelSize`, use `PerspectiveOffCenterFrustum.getPixelDimensions` instead. It will be removed in 1.17.
17
17
* Deprecated `Scene\HeadingPitchRange`, use `Core\HeadingPitchRange` instead. It will be removed in 1.17.
18
18
* Deprecated `jsonp` use `loadJsonp` instead. It will be removed in 1.17.
19
+
* Deprecated `Camera.viewRectangle`, use `Camera.setView({destination: rectangle})` instead. It will be removed in 1.17.
20
+
* The following options to `Camera.setView` have been deprecated and will be removed in 1.17:
21
+
*`position`: use `destination` instead.
22
+
*`positionCartographic`: convert to a `Cartesian3` and use `destination` instead.
23
+
*`heading`, `pitch` and `roll`: use `orientation.heading/pitch/roll` instead.
19
24
* Decreased GPU memory usage in `BillboardCollection` and `LabelCollection` by using the WebGL ANGLE_instanced_arrays extension.
20
25
* Added CZML examples to Sandcastle. See the new CZML tab.
21
26
* Fixed token issue in `ArcGisMapServerImageryProvider`.
22
27
*`ImageryLayerFeatureInfo` now has an `imageryLayer` property, indicating the layer that contains the feature.
23
28
* Added `BoxOutlineGeometry.fromAxisAlignedBoundingBox` and `BoxGeometry.fromAxisAlignedBoundingBox` functions.
24
29
* The WebGL setting of `failIfMajorPerformanceCaveat` now defaults to `false`, which is the official WebGL default. This improves compatibility with out-of-date drivers and remote desktop sessions. Cesium will run slower in these cases instead of simply failing to load.
30
+
* Changed `Camera.setView` to take the same parameter options as `Camera.flyTo`. `options.destination` takes a rectangle, `options.orientation` works with heading/pitch/roll or direction/up, and `options.endTransform` was added.
0 commit comments