ol 9.1.1-dev.1715102817264 → 9.1.1-dev.1715179008055
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 +2 -2
- package/dist/ol.js.map +1 -1
- package/package.json +1 -1
- package/source/ogcTileUtil.js +1 -1
- package/util.js +1 -1
package/package.json
CHANGED
package/source/ogcTileUtil.js
CHANGED
|
@@ -111,7 +111,7 @@ export function appendCollectionsQueryParam(tileUrlTemplate, collections) {
|
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
// making sure we can always construct a URL instance.
|
|
114
|
-
const url = new URL(tileUrlTemplate, 'file
|
|
114
|
+
const url = new URL(tileUrlTemplate, 'file:/');
|
|
115
115
|
|
|
116
116
|
if (url.pathname.split('/').includes('collections')) {
|
|
117
117
|
logError(
|
package/util.js
CHANGED