@maptiler/sdk 3.1.0-rc3 → 3.1.0-rc5
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/maptiler-sdk.mjs +566 -551
- package/dist/maptiler-sdk.mjs.map +1 -1
- package/dist/src/Map.d.ts +4 -2
- package/package.json +1 -1
package/dist/src/Map.d.ts
CHANGED
|
@@ -144,6 +144,10 @@ export declare class Map extends maplibregl.Map {
|
|
|
144
144
|
private halo?;
|
|
145
145
|
getSpace(): CubemapLayer | undefined;
|
|
146
146
|
setSpace(space: CubemapDefinition): void;
|
|
147
|
+
private setSpaceFromCurrentStyle;
|
|
148
|
+
private setHaloFromCurrentStyle;
|
|
149
|
+
private initSpace;
|
|
150
|
+
private initHalo;
|
|
147
151
|
getHalo(): RadialGradientLayer | undefined;
|
|
148
152
|
setHalo(halo: GradientDefinition): void;
|
|
149
153
|
private options;
|
|
@@ -164,8 +168,6 @@ export declare class Map extends maplibregl.Map {
|
|
|
164
168
|
private isStyleLocalized;
|
|
165
169
|
private languageIsUpdated;
|
|
166
170
|
constructor(options: MapOptions);
|
|
167
|
-
private initSpace;
|
|
168
|
-
private initHalo;
|
|
169
171
|
/**
|
|
170
172
|
* Recreates the map instance with the same options.
|
|
171
173
|
* Useful for WebGL context loss.
|