@maptiler/sdk 3.5.1-rc1 → 3.5.1-rc4
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/src/Map.d.ts
CHANGED
|
@@ -153,8 +153,6 @@ export declare class Map extends maplibregl.Map {
|
|
|
153
153
|
setSpace(space: CubemapDefinition): void;
|
|
154
154
|
private setSpaceFromStyle;
|
|
155
155
|
private setHaloFromStyle;
|
|
156
|
-
private setSpaceFromCurrentStyle;
|
|
157
|
-
private setHaloFromCurrentStyle;
|
|
158
156
|
private initSpace;
|
|
159
157
|
private initHalo;
|
|
160
158
|
getHalo(): RadialGradientLayer | undefined;
|
|
@@ -84,6 +84,12 @@ export declare class RadialGradientLayer implements CustomLayerInterface {
|
|
|
84
84
|
* @returns void
|
|
85
85
|
*/
|
|
86
86
|
onAdd(map: MapSDK, gl: WebGLRenderingContext | WebGL2RenderingContext): void;
|
|
87
|
+
/**
|
|
88
|
+
* Returns the current gradient configuration of the radial gradient layer.
|
|
89
|
+
*
|
|
90
|
+
* @returns {GradientDefinition} The current gradient configuration.
|
|
91
|
+
*/
|
|
92
|
+
getConfig(): GradientDefinition;
|
|
87
93
|
/**
|
|
88
94
|
* Animates the radial gradient into view by gradually scaling from 0 to the target scale.
|
|
89
95
|
*
|