bruce-cesium 2.7.0 → 2.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bruce-cesium.es5.js +5 -3
- package/dist/bruce-cesium.es5.js.map +1 -1
- package/dist/bruce-cesium.umd.js +4 -2
- package/dist/bruce-cesium.umd.js.map +1 -1
- package/dist/lib/bruce-cesium.js +1 -1
- package/dist/lib/rendering/view-render-engine.js +3 -1
- package/dist/lib/rendering/view-render-engine.js.map +1 -1
- package/dist/types/bruce-cesium.d.ts +1 -1
- package/package.json +1 -1
package/dist/bruce-cesium.umd.js
CHANGED
|
@@ -11951,7 +11951,9 @@
|
|
|
11951
11951
|
pitch: Cesium.Math.toRadians(+camera.pitch),
|
|
11952
11952
|
roll: Cesium.Math.toRadians(+camera.roll)
|
|
11953
11953
|
},
|
|
11954
|
-
duration: transition != 0 ? transition / 1000 : 0
|
|
11954
|
+
duration: transition != 0 ? transition / 1000 : 0,
|
|
11955
|
+
// Make it ease in and out.
|
|
11956
|
+
easingFunction: Cesium.EasingFunction.CUBIC_IN_OUT
|
|
11955
11957
|
});
|
|
11956
11958
|
}
|
|
11957
11959
|
}
|
|
@@ -15156,7 +15158,7 @@
|
|
|
15156
15158
|
ViewerUtils.CreateWidgets = CreateWidgets;
|
|
15157
15159
|
})(exports.ViewerUtils || (exports.ViewerUtils = {}));
|
|
15158
15160
|
|
|
15159
|
-
var VERSION$1 = "2.7.
|
|
15161
|
+
var VERSION$1 = "2.7.1";
|
|
15160
15162
|
|
|
15161
15163
|
exports.VERSION = VERSION$1;
|
|
15162
15164
|
exports.CesiumViewMonitor = CesiumViewMonitor;
|