Package not found. Please check the package name and try again.
@panoramax/web-viewer 4.0.3-develop-b705794f → 4.0.3-develop-bcecb20b
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/CHANGELOG.md +1 -0
- package/build/index.css +1 -1
- package/build/index.css.map +1 -1
- package/build/index.js +2 -2
- package/build/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ui/Map.css +4 -0
- package/src/utils/map.js +5 -0
package/package.json
CHANGED
package/src/utils/map.js
CHANGED
|
@@ -220,6 +220,11 @@ export function combineStyles(parent, options) {
|
|
|
220
220
|
style.layers.push(capitalLayer);
|
|
221
221
|
}
|
|
222
222
|
|
|
223
|
+
// Fix for maxzoom on IGN tiles
|
|
224
|
+
if(style?.sources?.plan_ign) {
|
|
225
|
+
style.sources.plan_ign.maxzoom = 18;
|
|
226
|
+
}
|
|
227
|
+
|
|
223
228
|
return style;
|
|
224
229
|
}
|
|
225
230
|
|