mapspinner 0.1.21 → 0.1.22
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/package.json
CHANGED
|
@@ -168,7 +168,7 @@ export async function initMapspinnerPlanet(gl, opts = {}) {
|
|
|
168
168
|
// quadtree levels (L14/L15/L16, ~28m/~14m/~7m cells) -- the close-approach overdraw tail -- so the deepest
|
|
169
169
|
// LOD is now L13 (~56m cell). Pairs with the LOD_STEP push (each region still resolves levels-finer-per-
|
|
170
170
|
// distance, just capped three steps shallower). Live override window.__maxLevel.
|
|
171
|
-
const maxLevel = opts.maxLevel ??
|
|
171
|
+
const maxLevel = opts.maxLevel ?? 11;
|
|
172
172
|
// splitFactor 2.0 over-subdivided ~5-20x: the baseline measured px/poly edge median
|
|
173
173
|
// 0.73 (orbit) / 1.56 (lowalt), far below the user's 4-50 px target, which also
|
|
174
174
|
// saturated the atlas (1920/1920) and drove tileGenMs to ~950ms. The live sweep
|