@nika-js/onlymap 0.6.20 → 0.6.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/CHANGELOG.md +19 -0
- package/README.md +2 -2
- package/dist/{LercDecode.es-DiDn51b8.js → LercDecode.es-Cm-Ah1Pr.js} +1 -1
- package/dist/actions.d.ts +94 -1
- package/dist/attribute-resolution.d.ts +55 -1
- package/dist/{basemap-Bvtudw-w.js → basemap-BCZ-MbEU.js} +2 -2
- package/dist/declarative-filter.d.ts +2 -16
- package/dist/effect-track.d.ts +94 -0
- package/dist/effects.d.ts +2 -0
- package/dist/elements/om-map.d.ts +9 -8
- package/dist/elements/om-story.d.ts +18 -0
- package/dist/{geoparquet-DFfq6-JJ.js → geoparquet-BaYtod1j.js} +1 -1
- package/dist/html-data.d.ts +14 -0
- package/dist/{index-DIHnIeho.js → index-BlUSpugF.js} +1 -1
- package/dist/{index-Cq0qmoDj.js → index-C2DPJtsQ.js} +2 -2
- package/dist/{index-CPthQWzC.js → index-Ddn4yvyL.js} +14997 -14636
- package/dist/{index-ZDGLuUoq.js → index-GkhsIJWB.js} +1 -1
- package/dist/{index-AlG5NjjQ.js → index-Qza7MX_l.js} +1 -1
- package/dist/internal-ids.d.ts +2 -0
- package/dist/ir-snapshot.d.ts +2 -0
- package/dist/ir.d.ts +8 -0
- package/dist/{lerc-C3kqqJ1B.js → lerc-Dt2MXtZG.js} +2 -2
- package/dist/onlymap.standalone.js +24234 -23873
- package/dist/onlymapjs.js +1 -1
- package/dist/parse-manifest.d.ts +8 -0
- package/dist/programmatic.d.ts +3 -2
- package/dist/{raster-6tndfpHv.js → raster-DBB0kjvs.js} +2 -2
- package/dist/{raster-pipeline-DVLch-nI.js → raster-pipeline-C9FDdaMd.js} +1 -1
- package/dist/react.js +18 -17
- package/dist/runtime-core.d.ts +34 -0
- package/dist/snapshot.d.ts +15 -0
- package/dist/version.d.ts +1 -1
- package/dist/{zarr-D5UCDgG7.js → zarr-9LzdL7Zm.js} +2 -2
- package/docs/stories.md +2 -0
- package/llms.txt +3 -2
- package/onlymapjs.attributes.json +1582 -0
- package/onlymapjs.html-data.json +282 -278
- package/package.json +2 -1
- package/skills/onlymapjs/SKILL.md +1 -1
- package/skills/onlymapjs/references/syntax.md +9 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ag as Be, ah as le, ai as ce, aj as De, ak as Oe, al as ke } from "./index-
|
|
1
|
+
import { ag as Be, ah as le, ai as ce, aj as De, ak as Oe, al as ke } from "./index-Ddn4yvyL.js";
|
|
2
2
|
import { y as ve, a as he, z as G, R as J, A as ue, C as Fe, F as je, n as xe, S as Ie, E as Ne } from "./recordbatch-Bpc0uxFn.js";
|
|
3
3
|
import { g as V, a as fe, b as Le, c as Ue, d as Me, e as qe, m as Ve } from "./table-accessors-CYWTzpQI.js";
|
|
4
4
|
import { c as $e } from "./convert-arrow-schema-DrAihRf9.js";
|
package/dist/internal-ids.d.ts
CHANGED
|
@@ -5,3 +5,5 @@
|
|
|
5
5
|
*/
|
|
6
6
|
/** Ids in this namespace are runtime-managed plumbing — excluded from ctx.layers, telemetry, and license gate counting. */
|
|
7
7
|
export declare const RUNTIME_INTERNAL_PREFIX = "__onlymapjs-";
|
|
8
|
+
/** Per-feature trace temp outline layers (`__onlymapjs-trace-<layer>--<featureId>`) — consulted by attribute-resolution (filter-extension skip) without importing the action registry. */
|
|
9
|
+
export declare const TRACE_TEMP_PREFIX = "__onlymapjs-trace-";
|
package/dist/ir-snapshot.d.ts
CHANGED
|
@@ -41,6 +41,8 @@ export interface LayerIRSnapshot {
|
|
|
41
41
|
categoryFilter?: LayerCategoryFilter;
|
|
42
42
|
/** Per-layer terrain mode when authored (`terrain` attribute) — absent = the type default. */
|
|
43
43
|
terrain?: "drape" | "offset" | "off";
|
|
44
|
+
/** Per-layer zoom visibility (`visible-zoom-range`) when authored — hidden outside min ≤ zoom < max. */
|
|
45
|
+
visibleZoomRange?: [number, number];
|
|
44
46
|
/**
|
|
45
47
|
* Resolved deck.gl props, made JSON-safe: compiled accessors appear as
|
|
46
48
|
* their updateTrigger fingerprint (`[accessor <shape>|<source>]`), other
|
package/dist/ir.d.ts
CHANGED
|
@@ -89,6 +89,14 @@ export interface LayerIR {
|
|
|
89
89
|
shape: Shape;
|
|
90
90
|
/** The raw `data` URL attribute, if any (ctx.layers metadata) — inline-JSON layers have none. */
|
|
91
91
|
dataUrl?: string;
|
|
92
|
+
/**
|
|
93
|
+
* Per-layer zoom visibility (`visible-zoom-range="[min, max]"`, public
|
|
94
|
+
* issue #38): hidden outside min ≤ zoom < max (minzoom/maxzoom
|
|
95
|
+
* convention). A RENDER gate composed with authored `visible` in
|
|
96
|
+
* buildLayers — the layer stays a full member of the scene (legend,
|
|
97
|
+
* switcher, ctx) while zoom-hidden.
|
|
98
|
+
*/
|
|
99
|
+
visibleZoomRange?: [number, number];
|
|
92
100
|
/**
|
|
93
101
|
* The authored live-source options that select this layer's transport
|
|
94
102
|
* (spec: "Live & Streaming Data"), retained on the IR rather than consumed
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { C as a, D as s } from "./raster-
|
|
1
|
+
import { C as a, D as s } from "./raster-DBB0kjvs.js";
|
|
2
2
|
const D = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
3
3
|
__proto__: null
|
|
4
4
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -8,7 +8,7 @@ var t;
|
|
|
8
8
|
})(t || (t = {}));
|
|
9
9
|
let l = !1;
|
|
10
10
|
async function d() {
|
|
11
|
-
const e = await import("./LercDecode.es-
|
|
11
|
+
const e = await import("./LercDecode.es-Cm-Ah1Pr.js");
|
|
12
12
|
return l || (await e.load(), l = !0), e;
|
|
13
13
|
}
|
|
14
14
|
async function i(e, r) {
|