mirror of
https://github.com/protomaps/PMTiles.git
synced 2026-02-04 19:01:08 +00:00
app: Rewrite of PMTiles viewer (pmtiles.io) [#49, #551, #555, #556] * Rewrite the app using SolidJS / Tailwind. * Make the map view mobile friendly. * Add an archive inspector for viewing the low level structure of PMTiles. * Add a tile inspector for viewing a single tile in isolation. * Support TileJSON. * Support raster archives.
18 lines
603 B
HTML
18 lines
603 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="theme-color" content="#3131DC"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>PMTiles viewer</title>
|
|
<link rel="preconnect" href="https://api.protomaps.com"/>
|
|
<link rel="preconnect" href="https://protomaps.github.io"/>
|
|
<link rel="preconnect" href="https://unpkg.com"/>
|
|
<link rel="preconnect" href="https://demo-bucket.protomaps.com"/>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/PageMap.tsx"></script>
|
|
</body>
|
|
</html>
|