ol 9.2.5-dev.1718183112915 → 9.2.5-dev.1718470218102
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/Tile.d.ts +4 -4
- package/Tile.js +2 -2
- package/VectorTile.d.ts +1 -1
- package/VectorTile.js +1 -1
- package/dist/ol.js +1 -1
- package/dist/ol.js.map +1 -1
- package/events/condition.d.ts +2 -2
- package/events/condition.js +1 -1
- package/featureloader.d.ts +2 -2
- package/featureloader.js +1 -1
- package/interaction/DragBox.d.ts +2 -2
- package/interaction/DragBox.js +2 -2
- package/interaction/DragPan.d.ts +2 -2
- package/interaction/DragPan.js +1 -1
- package/interaction/DragRotate.d.ts +3 -3
- package/interaction/DragRotate.js +2 -2
- package/interaction/DragRotateAndZoom.d.ts +2 -2
- package/interaction/DragRotateAndZoom.js +1 -1
- package/interaction/DragZoom.d.ts +3 -3
- package/interaction/DragZoom.js +2 -2
- package/interaction/Draw.d.ts +3 -3
- package/interaction/Draw.js +3 -3
- package/interaction/Extent.d.ts +1 -1
- package/interaction/Extent.js +1 -1
- package/interaction/KeyboardPan.d.ts +2 -2
- package/interaction/KeyboardPan.js +1 -1
- package/interaction/KeyboardZoom.d.ts +2 -2
- package/interaction/KeyboardZoom.js +1 -1
- package/interaction/Modify.d.ts +6 -6
- package/interaction/Modify.js +3 -3
- package/interaction/MouseWheelZoom.d.ts +2 -2
- package/interaction/MouseWheelZoom.js +1 -1
- package/interaction/Select.d.ts +12 -12
- package/interaction/Select.js +6 -6
- package/interaction/Translate.d.ts +8 -8
- package/interaction/Translate.js +4 -4
- package/package.json +1 -1
- package/source/Cluster.d.ts +2 -2
- package/source/Cluster.js +1 -1
- package/source/Vector.d.ts +2 -2
- package/source/Vector.js +2 -2
- package/style/Fill.d.ts +1 -1
- package/style/Fill.js +1 -1
- package/style/Style.d.ts +4 -4
- package/style/Style.js +2 -2
- package/util.js +1 -1
package/Tile.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export default Tile;
|
|
2
2
|
/**
|
|
3
|
-
* A function that takes
|
|
3
|
+
* A function that takes a {@link module :ol/Tile~Tile} for the tile and a
|
|
4
4
|
* `{string}` for the url as arguments. The default is
|
|
5
5
|
* ```js
|
|
6
6
|
* source.setTileLoadFunction(function(tile, src) {
|
|
@@ -37,7 +37,7 @@ export type LoadFunction = (arg0: Tile, arg1: string) => void;
|
|
|
37
37
|
* {@link module :ol/source/Tile~TileSource} sources use a function of this type to get
|
|
38
38
|
* the url that provides a tile for a given tile coordinate.
|
|
39
39
|
*
|
|
40
|
-
* This function takes
|
|
40
|
+
* This function takes a {@link module :ol/tilecoord~TileCoord} for the tile
|
|
41
41
|
* coordinate, a `{number}` representing the pixel ratio and a
|
|
42
42
|
* {@link module :ol/proj/Projection~Projection} for the projection as arguments
|
|
43
43
|
* and returns a `{string}` representing the tile URL, or undefined if no tile
|
|
@@ -57,7 +57,7 @@ export type Options = {
|
|
|
57
57
|
interpolate?: boolean | undefined;
|
|
58
58
|
};
|
|
59
59
|
/**
|
|
60
|
-
* A function that takes
|
|
60
|
+
* A function that takes a {@link module:ol/Tile~Tile} for the tile and a
|
|
61
61
|
* `{string}` for the url as arguments. The default is
|
|
62
62
|
* ```js
|
|
63
63
|
* source.setTileLoadFunction(function(tile, src) {
|
|
@@ -96,7 +96,7 @@ export type Options = {
|
|
|
96
96
|
* {@link module:ol/source/Tile~TileSource} sources use a function of this type to get
|
|
97
97
|
* the url that provides a tile for a given tile coordinate.
|
|
98
98
|
*
|
|
99
|
-
* This function takes
|
|
99
|
+
* This function takes a {@link module:ol/tilecoord~TileCoord} for the tile
|
|
100
100
|
* coordinate, a `{number}` representing the pixel ratio and a
|
|
101
101
|
* {@link module:ol/proj/Projection~Projection} for the projection as arguments
|
|
102
102
|
* and returns a `{string}` representing the tile URL, or undefined if no tile
|
package/Tile.js
CHANGED
|
@@ -8,7 +8,7 @@ import {abstract} from './util.js';
|
|
|
8
8
|
import {easeIn} from './easing.js';
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
|
-
* A function that takes
|
|
11
|
+
* A function that takes a {@link module:ol/Tile~Tile} for the tile and a
|
|
12
12
|
* `{string}` for the url as arguments. The default is
|
|
13
13
|
* ```js
|
|
14
14
|
* source.setTileLoadFunction(function(tile, src) {
|
|
@@ -48,7 +48,7 @@ import {easeIn} from './easing.js';
|
|
|
48
48
|
* {@link module:ol/source/Tile~TileSource} sources use a function of this type to get
|
|
49
49
|
* the url that provides a tile for a given tile coordinate.
|
|
50
50
|
*
|
|
51
|
-
* This function takes
|
|
51
|
+
* This function takes a {@link module:ol/tilecoord~TileCoord} for the tile
|
|
52
52
|
* coordinate, a `{number}` representing the pixel ratio and a
|
|
53
53
|
* {@link module:ol/proj/Projection~Projection} for the projection as arguments
|
|
54
54
|
* and returns a `{string}` representing the tile URL, or undefined if no tile
|
package/VectorTile.d.ts
CHANGED
|
@@ -75,7 +75,7 @@ declare class VectorTile<FeatureType extends import("./Feature.js").FeatureLike>
|
|
|
75
75
|
*/
|
|
76
76
|
onError(): void;
|
|
77
77
|
/**
|
|
78
|
-
* Function for use in
|
|
78
|
+
* Function for use in a {@link module:ol/source/VectorTile~VectorTile}'s `tileLoadFunction`.
|
|
79
79
|
* Sets the features for the tile.
|
|
80
80
|
* @param {Array<FeatureType>} features Features.
|
|
81
81
|
* @api
|
package/VectorTile.js
CHANGED
|
@@ -118,7 +118,7 @@ class VectorTile extends Tile {
|
|
|
118
118
|
}
|
|
119
119
|
|
|
120
120
|
/**
|
|
121
|
-
* Function for use in
|
|
121
|
+
* Function for use in a {@link module:ol/source/VectorTile~VectorTile}'s `tileLoadFunction`.
|
|
122
122
|
* Sets the features for the tile.
|
|
123
123
|
* @param {Array<FeatureType>} features Features.
|
|
124
124
|
* @api
|