@igo2/geo 21.0.0-next.27 → 21.0.0-next.28
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/fesm2022/igo2-geo.mjs
CHANGED
|
@@ -20306,7 +20306,7 @@ class OptionsApiService extends OptionsService {
|
|
|
20306
20306
|
const config = inject(ConfigService);
|
|
20307
20307
|
const options = config.getConfig('optionsApi');
|
|
20308
20308
|
super();
|
|
20309
|
-
this.urlApi = options?.url;
|
|
20309
|
+
this.urlApi = options?.enabled === false ? undefined : options?.url;
|
|
20310
20310
|
this.provideContextUri = options?.provideContextUri ?? false;
|
|
20311
20311
|
}
|
|
20312
20312
|
getWMSOptions(baseOptions, detailedContextUri) {
|