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
+2
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,8 @@ Change Log
4
4
### 1.30 - 2017-02-01
5
5
* Deprecated
6
6
* The properties `url` and `key` will be removed from `GeocoderViewModel` in 1.31. These properties will be available on geocoder services that support them, like `BingMapsGeocoderService`.
7
+
* Breaking changes
8
+
* Removed separate `heading`, `pitch`, `roll` parameters from `Transform.headingPitchRollToFixedFrame` and `Transform.headingPitchRollQuaternion`. Pass a `headingPitchRoll` object instead. [#4843](https://github.com/AnalyticalGraphicsInc/cesium/pull/4843)
7
9
* Added support for custom geocoder services and autocomplete [#4723](https://github.com/AnalyticalGraphicsInc/cesium/pull/4723).
// Shift arguments using assignments to encourage JIT optimization.
480
-
ellipsoid=pitch;
481
-
result=roll;
482
-
heading=headingPitchRoll.heading;
483
-
pitch=headingPitchRoll.pitch;
484
-
roll=headingPitchRoll.roll;
485
-
}else{
486
-
deprecationWarning('headingPitchRollToFixedFrame','headingPitchRollToFixedFrame with separate heading, pitch, and roll arguments was deprecated in 1.27. It will be removed in 1.30. Use a HeadingPitchRoll object.');
// Shift arguments using assignment to encourage JIT optimization.
525
-
hpr=headingPitchRoll;
526
-
ellipsoid=pitch;
527
-
result=roll;
528
-
}else{
529
-
deprecationWarning('headingPitchRollQuaternion','headingPitchRollQuaternion with separate heading, pitch, and roll arguments was deprecated in 1.27. It will be removed in 1.30. Use a HeadingPitchRoll object.');
0 commit comments