ol-pmtiles 0.0.2: basic first-class support for OpenLayers

This commit is contained in:
Brandon Liu
2023-05-05 17:07:21 +08:00
parent c418539cd8
commit 23a3056a7f
6 changed files with 504 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
import DataTile from "ol/source/DataTile";
import * as pmtiles from "pmtiles";
class PMTilesRasterSource extends DataTile {
loadImage = (src) => {
return new Promise((resolve, reject) => {
const img = new Image();
img.addEventListener("load", () => resolve(img));
img.addEventListener("error", () => reject(new Error("load failed")));
img.src = src;
});
};
constructor(options) {
super({
state: "loading",
attributions: options.attributions,
tileSize: options.tileSize,
});
const p = new pmtiles.PMTiles(options.url);
p.getHeader().then((h) => {
this.tileGrid.minZoom = h.minZoom;
this.tileGrid.maxZoom = h.maxZoom;
this.setLoader(async (z, x, y) => {
const response = await p.getZxy(z, x, y);
const blob = new Blob([response.data]);
const src = URL.createObjectURL(blob);
const image = await this.loadImage(src);
URL.revokeObjectURL(src);
return image;
});
this.setState("ready");
});
}
}
export default PMTilesRasterSource;

View File

@@ -0,0 +1,53 @@
import VectorTile from "ol/source/VectorTile";
import TileState from "ol/TileState";
import { MVT } from "ol/format";
import * as pmtiles from "pmtiles";
class PMTilesVectorSource extends VectorTile {
tileLoadFunction = (tile, url) => {
// the URL construction is done internally by OL, so we need to parse it
// back out here using a hacky regex
const re = new RegExp(/pmtiles:\/\/(.+)\/(\d+)\/(\d+)\/(\d+)/);
const result = url.match(re);
const z = +result[2];
const x = +result[3];
const y = +result[4];
tile.setLoader((extent, resolution, projection) => {
tile.setState(TileState.LOADING);
this._p.getZxy(z, x, y).then((tile_result) => {
if (tile_result) {
const format = tile.getFormat();
const features = format.readFeatures(tile_result.data.buffer, {
extent: extent,
featureProjection: projection,
});
tile.setFeatures(features);
tile.setState(TileState.LOADED);
} else {
tile.setFeatures([]);
tile.setState(TileState.EMPTY);
} // TODO error state
});
});
};
constructor(options) {
super({
state: "loading",
url: "pmtiles://" + options.url + "/{z}/{x}/{y}",
format: new MVT(),
attributions: options.attributions,
});
this._p = new pmtiles.PMTiles(options.url);
this._p.getHeader().then((h) => {
this.tileGrid.minZoom = h.minZoom;
this.tileGrid.maxZoom = h.maxZoom;
this.setTileLoadFunction(this.tileLoadFunction);
this.setState("ready");
});
}
}
export default PMTilesVectorSource;

2
openlayers/src/index.js Normal file
View File

@@ -0,0 +1,2 @@
export { default as PMTilesRasterSource } from './PMTilesRasterSource.js';
export { default as PMTilesVectorSource } from './PMTilesVectorSource.js';