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.
Files changed (46) hide show
  1. package/Tile.d.ts +4 -4
  2. package/Tile.js +2 -2
  3. package/VectorTile.d.ts +1 -1
  4. package/VectorTile.js +1 -1
  5. package/dist/ol.js +1 -1
  6. package/dist/ol.js.map +1 -1
  7. package/events/condition.d.ts +2 -2
  8. package/events/condition.js +1 -1
  9. package/featureloader.d.ts +2 -2
  10. package/featureloader.js +1 -1
  11. package/interaction/DragBox.d.ts +2 -2
  12. package/interaction/DragBox.js +2 -2
  13. package/interaction/DragPan.d.ts +2 -2
  14. package/interaction/DragPan.js +1 -1
  15. package/interaction/DragRotate.d.ts +3 -3
  16. package/interaction/DragRotate.js +2 -2
  17. package/interaction/DragRotateAndZoom.d.ts +2 -2
  18. package/interaction/DragRotateAndZoom.js +1 -1
  19. package/interaction/DragZoom.d.ts +3 -3
  20. package/interaction/DragZoom.js +2 -2
  21. package/interaction/Draw.d.ts +3 -3
  22. package/interaction/Draw.js +3 -3
  23. package/interaction/Extent.d.ts +1 -1
  24. package/interaction/Extent.js +1 -1
  25. package/interaction/KeyboardPan.d.ts +2 -2
  26. package/interaction/KeyboardPan.js +1 -1
  27. package/interaction/KeyboardZoom.d.ts +2 -2
  28. package/interaction/KeyboardZoom.js +1 -1
  29. package/interaction/Modify.d.ts +6 -6
  30. package/interaction/Modify.js +3 -3
  31. package/interaction/MouseWheelZoom.d.ts +2 -2
  32. package/interaction/MouseWheelZoom.js +1 -1
  33. package/interaction/Select.d.ts +12 -12
  34. package/interaction/Select.js +6 -6
  35. package/interaction/Translate.d.ts +8 -8
  36. package/interaction/Translate.js +4 -4
  37. package/package.json +1 -1
  38. package/source/Cluster.d.ts +2 -2
  39. package/source/Cluster.js +1 -1
  40. package/source/Vector.d.ts +2 -2
  41. package/source/Vector.js +2 -2
  42. package/style/Fill.d.ts +1 -1
  43. package/style/Fill.js +1 -1
  44. package/style/Style.d.ts +4 -4
  45. package/style/Style.js +2 -2
  46. 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 an {@link module :ol/Tile~Tile} for the tile and a
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 an {@link module :ol/tilecoord~TileCoord} for the tile
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 an {@link module:ol/Tile~Tile} for the tile and a
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 an {@link module:ol/tilecoord~TileCoord} for the tile
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 an {@link module:ol/Tile~Tile} for the tile and a
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 an {@link module:ol/tilecoord~TileCoord} for the tile
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 an {@link module:ol/source/VectorTile~VectorTile}'s `tileLoadFunction`.
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 an {@link module:ol/source/VectorTile~VectorTile}'s `tileLoadFunction`.
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