maplibre-gl-raster 0.6.3 → 0.7.0
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/{RasterControl-yo9x-ULo.js → RasterControl-CNxONQGm.js} +27 -6
- package/dist/{RasterControl-yo9x-ULo.js.map → RasterControl-CNxONQGm.js.map} +1 -1
- package/dist/index.mjs +2 -2
- package/dist/maplibre-gl-raster.css +65 -3
- package/dist/react.mjs +1 -1
- package/dist/types/index.d.ts +268 -0
- package/package.json +1 -1
|
@@ -19138,6 +19138,7 @@ var AddDataSection = class {
|
|
|
19138
19138
|
trigger.focus();
|
|
19139
19139
|
input.value = sample.url;
|
|
19140
19140
|
loadBtn.disabled = input.value.trim().length === 0;
|
|
19141
|
+
submitUrl();
|
|
19141
19142
|
});
|
|
19142
19143
|
menu.appendChild(option);
|
|
19143
19144
|
}
|
|
@@ -19196,7 +19197,7 @@ var AddDataSection = class {
|
|
|
19196
19197
|
this.el = el("div", { className: "mlr-section mlr-add-data" }, el("div", {
|
|
19197
19198
|
className: "mlr-section-title",
|
|
19198
19199
|
text: "Add data"
|
|
19199
|
-
}), ...sampleRow ? [sampleRow] : []
|
|
19200
|
+
}), urlRow, dropZone, beforeIdInput, ...sampleRow ? [sampleRow] : []);
|
|
19200
19201
|
}
|
|
19201
19202
|
};
|
|
19202
19203
|
//#endregion
|
|
@@ -19211,6 +19212,7 @@ var EngineSection = class {
|
|
|
19211
19212
|
/** Root element to insert into the panel. */
|
|
19212
19213
|
el;
|
|
19213
19214
|
_select;
|
|
19215
|
+
_help;
|
|
19214
19216
|
constructor(options) {
|
|
19215
19217
|
this._select = select([{
|
|
19216
19218
|
value: "maplibre-gl-raster",
|
|
@@ -19221,10 +19223,29 @@ var EngineSection = class {
|
|
|
19221
19223
|
}], options.value, (next) => options.onChange(next), "render-engine");
|
|
19222
19224
|
const title = el("span", {
|
|
19223
19225
|
className: "mlr-section-title",
|
|
19224
|
-
text: "Rendering engine"
|
|
19225
|
-
title: HELP$1
|
|
19226
|
+
text: "Rendering engine"
|
|
19226
19227
|
});
|
|
19227
|
-
|
|
19228
|
+
const helpButton = el("button", {
|
|
19229
|
+
className: "mlr-info-button",
|
|
19230
|
+
type: "button",
|
|
19231
|
+
text: "i",
|
|
19232
|
+
title: HELP$1,
|
|
19233
|
+
ariaLabel: "Rendering engine help",
|
|
19234
|
+
attrs: { "aria-expanded": "false" }
|
|
19235
|
+
});
|
|
19236
|
+
this._help = el("div", {
|
|
19237
|
+
className: "mlr-tooltip",
|
|
19238
|
+
text: HELP$1,
|
|
19239
|
+
attrs: { role: "tooltip" }
|
|
19240
|
+
});
|
|
19241
|
+
this._help.hidden = true;
|
|
19242
|
+
const setHelpOpen = (open) => {
|
|
19243
|
+
this._help.hidden = !open;
|
|
19244
|
+
helpButton.setAttribute("aria-expanded", String(open));
|
|
19245
|
+
};
|
|
19246
|
+
helpButton.addEventListener("click", () => setHelpOpen(this._help.hidden === true));
|
|
19247
|
+
helpButton.addEventListener("blur", () => setHelpOpen(false));
|
|
19248
|
+
this.el = el("div", { className: "mlr-section mlr-engine" }, el("div", { className: "mlr-section-title-row" }, title, helpButton), this._help, this._select);
|
|
19228
19249
|
}
|
|
19229
19250
|
/** Reflects the active engine on the select (e.g. after a programmatic
|
|
19230
19251
|
* change). */
|
|
@@ -21116,6 +21137,6 @@ var RasterControl = class {
|
|
|
21116
21137
|
}
|
|
21117
21138
|
};
|
|
21118
21139
|
//#endregion
|
|
21119
|
-
export {
|
|
21140
|
+
export { autoRangeFor as C, percentileFromHistogram as D, computeAutoStats as E, readBandNames as O, colormaps_default as S, MAX_SAMPLE_TILES as T, COLORMAP_DISPLAY_NAMES as _, LayerManager as a, COLORMAP_ROW_COUNT as b, loadColormapSprite as c, classNames as d, debounce as f, loadGeoTIFF as g, throttle as h, DEFAULT_ENGINE as i, createResilientEpsgResolver as k, sampleColormapStops as l, generateId as m, Colorbar as n, PALETTE_COLORMAP as o, formatNumericValue as p, readPixelValues as r, isKnownColormap as s, RasterControl as t, clamp as u, COLORMAP_NAMES as v, statsForBand as w, colormapDisplayName as x, COLORMAP_OPTIONS as y };
|
|
21120
21141
|
|
|
21121
|
-
//# sourceMappingURL=RasterControl-
|
|
21142
|
+
//# sourceMappingURL=RasterControl-CNxONQGm.js.map
|