ol 10.3.2-dev.1733934697983 → 10.3.2-dev.1734184863760
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/ol.js +1 -1
- package/dist/ol.js.map +1 -1
- package/package.json +1 -1
- package/tileurlfunction.d.ts +0 -1
- package/tileurlfunction.js +0 -5
- package/util.js +1 -1
package/package.json
CHANGED
package/tileurlfunction.d.ts
CHANGED
|
@@ -22,5 +22,4 @@ export function createFromTileUrlFunctions(tileUrlFunctions: Array<import("./Til
|
|
|
22
22
|
* @return {string|undefined} Tile URL.
|
|
23
23
|
*/
|
|
24
24
|
export function nullTileUrlFunction(tileCoord: import("./tilecoord.js").TileCoord, pixelRatio: number, projection: import("./proj/Projection.js").default): string | undefined;
|
|
25
|
-
export { expandUrl } from "./uri.js";
|
|
26
25
|
//# sourceMappingURL=tileurlfunction.d.ts.map
|
package/tileurlfunction.js
CHANGED
|
@@ -85,8 +85,3 @@ export function createFromTileUrlFunctions(tileUrlFunctions) {
|
|
|
85
85
|
export function nullTileUrlFunction(tileCoord, pixelRatio, projection) {
|
|
86
86
|
return undefined;
|
|
87
87
|
}
|
|
88
|
-
|
|
89
|
-
/**
|
|
90
|
-
* TODO: Update ol-mapbox-style to import this from the uri.js module.
|
|
91
|
-
*/
|
|
92
|
-
export {expandUrl} from './uri.js';
|
package/util.js
CHANGED