Tile generation

This commit is contained in:
cracklesparkle
2024-09-09 17:49:32 +09:00
parent ddacbcd837
commit 8c8c619143
5 changed files with 361 additions and 68 deletions

View File

@ -0,0 +1,12 @@
import { Extent } from "../interfaces/map"
const epsg3857extent = [
-20037508.342789244,
-20037508.342789244,
20037508.342789244,
20037508.342789244
] as Extent
export {
epsg3857extent
}