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
+12-8Lines changed: 12 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,17 +7,21 @@ Beta Releases
7
7
### b24 - 2014-01-06
8
8
9
9
* Breaking changes:
10
-
* Added `allowTextureFilterAnisotropic` (default: `true`) and `failIfMajorPerformanceCaveat` (default: `true`) properties to the `contextOption` property passed to `Viewer`, `CesiumWidget`, and `Scene` constructors and moved the existing properties to a new `webgl` sub-property. For example, code that looked like:
10
+
* Added `allowTextureFilterAnisotropic` (default: `true`) and `failIfMajorPerformanceCaveat` (default: `true`) properties to the `contextOptions` property passed to `Viewer`, `CesiumWidget`, and `Scene` constructors and moved the existing properties to a new `webgl` sub-property. For example, code that looked like:
11
11
12
12
var viewer = new Viewer('cesiumContainer', {
13
-
alpha : true
13
+
contextOptions : {
14
+
alpha : true
15
+
}
14
16
});
15
17
16
18
should now look like:
17
19
18
20
var viewer = new Viewer('cesiumContainer', {
19
-
webgl : {
20
-
alpha : true
21
+
contextOptions : {
22
+
webgl : {
23
+
alpha : true
24
+
}
21
25
}
22
26
});
23
27
* The read-only `Cartesian3` objects must now be cloned to camera properties instead of assigned. For example, code that looked like:
@@ -34,13 +38,13 @@ Beta Releases
34
38
* Removed prototype version of `BoundingSphere.transform`
35
39
*`Matrix4.multiplyByPoint` now returns a `Cartesian3` instead of a `Cartesian4`
36
40
* The minified, combined `Cesium.js` file now omits certain `DeveloperError` checks, to increase performance and reduce file size. When developing your application, we recommend using the unminified version locally for early error detection, then deploying the minified version to production.
41
+
* Fixed disabling `CentralBody.enableLighting`.
42
+
* Fixed `Geocoder` flights when following an object.
43
+
* The `Viewer` widget now clears `Geocoder` input when the user clicks the home button.
44
+
* The `Geocoder` input type has been changed to `search`, which improves usability (particularly on mobile devices). There were also some other minor styling improvements.
37
45
* Added `CentralBody.maximumScreenSpaceError`.
38
46
* Added `translateEventTypes`, `zoomEventTypes`, `rotateEventTypes`, `tiltEventTypes`, and `lookEventTypes` properties to `ScreenSpaceCameraController` to change the default mouse inputs.
39
47
* Added `Billboard.setPixelOffsetScaleByDistance`, `Label.setPixelOffsetScaleByDistance`, `DynamicBillboard.pixelOffsetScaleByDistance`, and `DynamicLabel.pixelOffsetScaleByDistance` to control minimum/maximum pixelOffset scaling based on camera distance.
40
-
* The `Viewer` widget now clears `Geocoder` input when the user clicks the home button.
41
-
* The `Geocoder` input type has been changed to `search`, which improves usability (particularly on mobile devices). There were also some other minor styling improvements.
42
-
* Fixed disabling `CentralBody.enableLighting`.
43
-
* Fixed geocoder flights when following an object.
44
48
* Added `BoundingSphere.transformsWithoutScale`
45
49
* Added `fromArray` function to `Matrix2`, `Matrix3` and `Matrix4`
0 commit comments