@artstesh/maps 9.1.0-alpha.1 → 9.1.0-alpha.2
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/fesm2022/maps-components-src-map.mjs +21 -1
- package/dist/fesm2022/maps-components-src-map.mjs.map +1 -1
- package/dist/fesm2022/maps-components.mjs +21 -1
- package/dist/fesm2022/maps-components.mjs.map +1 -1
- package/dist/index.d.ts +15 -0
- package/dist/src/map/index.d.ts +15 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1108,6 +1108,14 @@ declare class GeotiffTileLayerSettings {
|
|
|
1108
1108
|
* The priority of showing - layers with higher zIndex cover others in case of collisions
|
|
1109
1109
|
*/
|
|
1110
1110
|
zIndex: number;
|
|
1111
|
+
/**
|
|
1112
|
+
* Represents the size of a block in a specific context, typically used to define dimensions or capacity.
|
|
1113
|
+
*
|
|
1114
|
+
* Optional property that, if defined, specifies the numerical value for the block size.
|
|
1115
|
+
*
|
|
1116
|
+
* @type {number|undefined}
|
|
1117
|
+
*/
|
|
1118
|
+
blockSize?: number;
|
|
1111
1119
|
/**
|
|
1112
1120
|
* Creates a copy of the given tile layer settings.
|
|
1113
1121
|
*
|
|
@@ -1157,6 +1165,13 @@ declare class GeotiffTileLayerSettings {
|
|
|
1157
1165
|
* @return {GeotiffTileLayerSettings} - A new instance of GeotiffTileLayerSettings with the opacity set.
|
|
1158
1166
|
*/
|
|
1159
1167
|
setOpacity(opacity: number): GeotiffTileLayerSettings;
|
|
1168
|
+
/**
|
|
1169
|
+
* Sets the block size for the GeoTIFF tile layer.
|
|
1170
|
+
*
|
|
1171
|
+
* @param {number} blockSize - The size of the block to be set. This value typically defines the number of pixels for determining how data is grouped in tiles.
|
|
1172
|
+
* @return {GeotiffTileLayerSettings} A new instance of `GeotiffTileLayerSettings` with the updated block size.
|
|
1173
|
+
*/
|
|
1174
|
+
setBlockSize(blockSize: number): GeotiffTileLayerSettings;
|
|
1160
1175
|
/**
|
|
1161
1176
|
* Checks if the current instance of GeotiffTileLayerSettings is equal to the given model.
|
|
1162
1177
|
* @param {GeotiffTileLayerSettings} model - The model to compare against.
|
package/dist/src/map/index.d.ts
CHANGED
|
@@ -1108,6 +1108,14 @@ declare class GeotiffTileLayerSettings {
|
|
|
1108
1108
|
* The priority of showing - layers with higher zIndex cover others in case of collisions
|
|
1109
1109
|
*/
|
|
1110
1110
|
zIndex: number;
|
|
1111
|
+
/**
|
|
1112
|
+
* Represents the size of a block in a specific context, typically used to define dimensions or capacity.
|
|
1113
|
+
*
|
|
1114
|
+
* Optional property that, if defined, specifies the numerical value for the block size.
|
|
1115
|
+
*
|
|
1116
|
+
* @type {number|undefined}
|
|
1117
|
+
*/
|
|
1118
|
+
blockSize?: number;
|
|
1111
1119
|
/**
|
|
1112
1120
|
* Creates a copy of the given tile layer settings.
|
|
1113
1121
|
*
|
|
@@ -1157,6 +1165,13 @@ declare class GeotiffTileLayerSettings {
|
|
|
1157
1165
|
* @return {GeotiffTileLayerSettings} - A new instance of GeotiffTileLayerSettings with the opacity set.
|
|
1158
1166
|
*/
|
|
1159
1167
|
setOpacity(opacity: number): GeotiffTileLayerSettings;
|
|
1168
|
+
/**
|
|
1169
|
+
* Sets the block size for the GeoTIFF tile layer.
|
|
1170
|
+
*
|
|
1171
|
+
* @param {number} blockSize - The size of the block to be set. This value typically defines the number of pixels for determining how data is grouped in tiles.
|
|
1172
|
+
* @return {GeotiffTileLayerSettings} A new instance of `GeotiffTileLayerSettings` with the updated block size.
|
|
1173
|
+
*/
|
|
1174
|
+
setBlockSize(blockSize: number): GeotiffTileLayerSettings;
|
|
1160
1175
|
/**
|
|
1161
1176
|
* Checks if the current instance of GeotiffTileLayerSettings is equal to the given model.
|
|
1162
1177
|
* @param {GeotiffTileLayerSettings} model - The model to compare against.
|