From a2a478cae7d053acb11a916f7cc0b9ad6503a979 Mon Sep 17 00:00:00 2001 From: iSergio Date: Sun, 1 Dec 2024 00:01:03 +0300 Subject: [PATCH 1/2] CesiumJS up to 1.119 --- cesiumjs4gwt-main/pom.xml | 2 +- cesiumjs4gwt-showcase/pom.xml | 2 +- pom.xml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cesiumjs4gwt-main/pom.xml b/cesiumjs4gwt-main/pom.xml index d12cf9fa..3358e088 100644 --- a/cesiumjs4gwt-main/pom.xml +++ b/cesiumjs4gwt-main/pom.xml @@ -7,7 +7,7 @@ cesiumjs4gwt org.cesiumjs - 1.118.0 + 1.119.0 CesiumJS GWT Wrapper diff --git a/cesiumjs4gwt-showcase/pom.xml b/cesiumjs4gwt-showcase/pom.xml index 1f033681..afc258b2 100644 --- a/cesiumjs4gwt-showcase/pom.xml +++ b/cesiumjs4gwt-showcase/pom.xml @@ -6,7 +6,7 @@ cesiumjs4gwt org.cesiumjs - 1.118.0 + 1.119.0 CesiumJS GWT Showcase diff --git a/pom.xml b/pom.xml index 90e4f70a..b900ae51 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ org.cesiumjs cesiumjs4gwt pom - 1.118.0 + 1.119.0 CesiumJS GWT Framework -- GitLab From 4640addad6f267d3ca494aa1779c25dc79f35f26 Mon Sep 17 00:00:00 2001 From: iSergio Date: Sun, 1 Dec 2024 00:01:15 +0300 Subject: [PATCH 2/2] Added Ellipsoid.default to allow a central place to specify a default ellipsoid value to be used throughout the API where an ellipsoid is not otherwise specified. --- .../src/main/java/org/cesiumjs/cs/core/Ellipsoid.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/Ellipsoid.java b/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/Ellipsoid.java index 5a19200d..7efef308 100644 --- a/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/Ellipsoid.java +++ b/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/Ellipsoid.java @@ -30,6 +30,12 @@ public class Ellipsoid { */ public static int packedLength; + /** + * The default ellipsoid used when not otherwise specified. + */ + @JsProperty(name = "default") + public static native Ellipsoid defaultEllipsoid(); + /** * An Ellipsoid instance initialized to a sphere with the lunar radius. */ -- GitLab