Offline-capable geomap, meant for storing location bookmarks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: issue where tiles.json isn't cached

+6 -3
+2
README.md
··· 6 6 7 7 ![Screenshot](./www/static/brand/screenshot.png) 8 8 9 + ![Screenshot](./www/static/brand/screenshot-desktop.png) 10 + 9 11 ## Technologies 10 12 11 13 **App**
+2 -2
data/cli/commands/build-world.ts
··· 25 25 throw new Error(`Planet PBF not found: ${PLANET_PBF}`) 26 26 } 27 27 28 - await ensureDir(TILES_OUT_DIR) 29 - const outPath = join(TILES_OUT_DIR, `world_z${maxzoom}.pmtiles`) 28 + await ensureDir(join(TILES_OUT_DIR, 'world')) 29 + const outPath = join(TILES_OUT_DIR, 'world', `world_z${maxzoom}.pmtiles`) 30 30 31 31 // Patch maxzoom/basezoom into a temp config so one config file covers all tiers. 32 32 const base = JSON.parse(await Deno.readTextFile(CONFIG_WORLD_JSON))
+1 -1
deno.json
··· 1 1 { 2 - "version": "0.3.1", 2 + "version": "0.3.2", 3 3 "workspace": ["./data"], 4 4 "tasks": { 5 5 "data": "deno run -A ./data/cli/main.ts",
www/static/brand/screenshot-desktop.png

This is a binary file and will not be displayed.

+1
www/worker.ts
··· 27 27 '/static/icons/book.svg', 28 28 '/static/icons/bookmark.svg', 29 29 '/static/icons/x.svg', 30 + '/static/tiles/tiles.json', 30 31 '/dist/index.js', 31 32 '/manifest.json', 32 33 ]),