diff --git a/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/BingMapsGeocoderService.java b/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/BingMapsGeocoderService.java index 20a936c173697538aa1f22fa7f9d8639e89840ea..c564e83f871993779bdbcba217eade878e7b3e53 100644 --- a/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/BingMapsGeocoderService.java +++ b/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/BingMapsGeocoderService.java @@ -16,10 +16,7 @@ package org.cesiumjs.cs.core; -import jsinterop.annotations.JsConstructor; -import jsinterop.annotations.JsMethod; -import jsinterop.annotations.JsOverlay; -import jsinterop.annotations.JsType; +import jsinterop.annotations.*; import org.cesiumjs.cs.core.options.BingMapsGeocoderServiceOptions; import org.cesiumjs.cs.promise.Promise; @@ -30,6 +27,24 @@ import org.cesiumjs.cs.promise.Promise; */ @JsType(isNative = true, namespace = "Cesium", name = "BingMapsGeocoderService") public class BingMapsGeocoderService implements GeocoderService { + /** + * Gets the credit to display after a geocode is performed. Typically this is used to credit the geocoder service. + */ + @JsProperty(name = "credit") + public native Credit credit(); + + /** + * The key for the Bing geocoder service + */ + @JsProperty(name = "key") + public native String key(); + + /** + * The URL endpoint for the Bing geocoder service + */ + @JsProperty(name = "url") + public native String url(); + @JsConstructor private BingMapsGeocoderService() { } diff --git a/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/IonGeocoderService.java b/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/IonGeocoderService.java index 01dd76ae494ce0fa2f89dfc2ed88d7dc0a74e7d8..98dd2ee16863a383d03f1c5e1ffad98531c74dfa 100644 --- a/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/IonGeocoderService.java +++ b/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/IonGeocoderService.java @@ -16,10 +16,7 @@ package org.cesiumjs.cs.core; -import jsinterop.annotations.JsConstructor; -import jsinterop.annotations.JsMethod; -import jsinterop.annotations.JsOverlay; -import jsinterop.annotations.JsType; +import jsinterop.annotations.*; import org.cesiumjs.cs.core.enums.GeocodeType; import org.cesiumjs.cs.core.options.IonGeocoderServiceOptions; import org.cesiumjs.cs.promise.Promise; @@ -32,6 +29,24 @@ import org.cesiumjs.cs.scene.Scene; */ @JsType(isNative = true, namespace = "Cesium", name = "IonGeocoderService") public class IonGeocoderService implements GeocoderService { + /** + * Gets the credit to display after a geocode is performed. Typically this is used to credit the geocoder service. + */ + @JsProperty(name = "credit") + public native Credit credit(); + + /** + * The key for the Bing geocoder service + */ + @JsProperty(name = "key") + public native String key(); + + /** + * The URL endpoint for the Bing geocoder service + */ + @JsProperty(name = "url") + public native String url(); + @JsConstructor private IonGeocoderService() { } diff --git a/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/OpenCageGeocoderService.java b/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/OpenCageGeocoderService.java index c3c1a15b2c52f86b639e3df7c3c036a366670cf4..93191e0d7d801be0678f865040cb58925c80b8b2 100644 --- a/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/OpenCageGeocoderService.java +++ b/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/OpenCageGeocoderService.java @@ -18,6 +18,7 @@ package org.cesiumjs.cs.core; import jsinterop.annotations.JsConstructor; import jsinterop.annotations.JsMethod; +import jsinterop.annotations.JsProperty; import jsinterop.annotations.JsType; import org.cesiumjs.cs.core.options.OpenCageGeocoderServiceOptions; import org.cesiumjs.cs.promise.Promise; @@ -30,6 +31,24 @@ import org.cesiumjs.cs.promise.Promise; */ @JsType(isNative = true, namespace = "Cesium", name = "OpenCageGeocoderService") public class OpenCageGeocoderService implements GeocoderService { + /** + * Gets the credit to display after a geocode is performed. Typically this is used to credit the geocoder service. + */ + @JsProperty(name = "credit") + public native Credit credit(); + + /** + * The key for the Bing geocoder service + */ + @JsProperty(name = "key") + public native String key(); + + /** + * The URL endpoint for the Bing geocoder service + */ + @JsProperty(name = "url") + public native String url(); + /** * @param resource The endpoint to the OpenCage server. diff --git a/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/PeliasGeocoderService.java b/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/PeliasGeocoderService.java index 5755c19df94b03feb49e797b32ffe6f0ba015b67..cedc9cbf9e6968b98af743247caf23463e631d62 100644 --- a/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/PeliasGeocoderService.java +++ b/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/core/PeliasGeocoderService.java @@ -18,6 +18,7 @@ package org.cesiumjs.cs.core; import jsinterop.annotations.JsConstructor; import jsinterop.annotations.JsMethod; +import jsinterop.annotations.JsProperty; import jsinterop.annotations.JsType; import org.cesiumjs.cs.core.enums.GeocodeType; import org.cesiumjs.cs.promise.Promise; @@ -29,6 +30,24 @@ import org.cesiumjs.cs.promise.Promise; */ @JsType(isNative = true, namespace = "Cesium", name = "PeliasGeocoderService") public class PeliasGeocoderService implements GeocoderService { + /** + * Gets the credit to display after a geocode is performed. Typically this is used to credit the geocoder service. + */ + @JsProperty(name = "credit") + public native Credit credit(); + + /** + * The key for the Bing geocoder service + */ + @JsProperty(name = "key") + public native String key(); + + /** + * The URL endpoint for the Bing geocoder service + */ + @JsProperty(name = "url") + public native String url(); + /** * Provides geocoding via a Pelias server. *