Inspector improvements (#218)

* conditionally reposition map if map hash wasn't passed [#49]

* add 20230408 basemap to viewer presets
This commit is contained in:
Brandon Liu
2023-07-08 20:35:24 +08:00
committed by GitHub
parent 314d36272a
commit befa393ad9
2 changed files with 21 additions and 10 deletions

View File

@@ -9,6 +9,10 @@ import "maplibre-gl/dist/maplibre-gl.css";
import { schemeSet3 } from "d3-scale-chromatic";
import base_theme from "protomaps-themes-base";
const INITIAL_ZOOM = 0;
const INITIAL_LNG = 0;
const INITIAL_LAT = 0;
maplibregl.setRTLTextPlugin(
"https://unpkg.com/@mapbox/mapbox-gl-rtl-text@0.2.3/mapbox-gl-rtl-text.min.js",
() => {},
@@ -367,8 +371,8 @@ function MaplibreMap(props: { file: PMTiles }) {
const map = new maplibregl.Map({
container: mapContainerRef.current!,
hash: "map",
zoom: 0,
center: [0, 0],
zoom: INITIAL_ZOOM,
center: [INITIAL_LNG, INITIAL_LAT],
style: {
version: 8,
sources: {},
@@ -433,7 +437,12 @@ function MaplibreMap(props: { file: PMTiles }) {
if (mapRef.current) {
let map = mapRef.current;
let header = await props.file.getHeader();
if (
map.getCenter().lng === INITIAL_LNG &&
map.getCenter().lat == INITIAL_LAT &&
map.getZoom() === INITIAL_ZOOM
) {
// the map hash was not passed, so auto-detect the initial viewport based on metadata
map.fitBounds(
[
[header.minLon, header.minLat],
@@ -441,6 +450,7 @@ function MaplibreMap(props: { file: PMTiles }) {
],
{ animate: false }
);
}
let style: any; // TODO maplibre types (not any)
if (

View File

@@ -97,6 +97,7 @@ const ExampleList = styled("div", {
});
const EXAMPLE_FILES = [
"https://r2-public.protomaps.com/protomaps-sample-datasets/protomaps-basemap-opensource-20230408.pmtiles",
"https://protomaps.github.io/PMTiles/protomaps(vector)ODbL_firenze.pmtiles",
"https://protomaps.github.io/PMTiles/stamen_toner(raster)CC-BY+ODbL_z3.pmtiles",
"https://r2-public.protomaps.com/protomaps-sample-datasets/cb_2018_us_zcta510_500k.pmtiles",