mirror of
https://github.com/maplibre/martin.git
synced 2024-12-18 20:31:54 +03:00
7f18b6bbf2
Add an optional web UI interface for Martin, including docker-based cross-compilation support. The UI itself is a placeholder with a logo, but will grow in subsequent PRs. This was branched off of https://github.com/maplibre/martin/pull/1142 to address the PR feedback from @nyurik . --------- Co-authored-by: Yuri Astrakhan <yuriastrakhan@gmail.com> Co-authored-by: Tomer Ronen <tomer207@gmail.com> Co-authored-by: tomeronen <45331634+tomeronen@users.noreply.github.com>
25 lines
1012 B
HTML
25 lines
1012 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<link rel="icon" type="image/x-icon" href="/_/assets/favicon.ico">
|
|
<meta property="og:url" content="https://maplibre.org"/>
|
|
<meta property="og:title" content="Martin — vector tiles server"/>
|
|
<meta property="og:description"
|
|
content="Blazing fast and lightweight PostGIS, MBtiles and PMtiles tile server, tile generation, and mbtiles tooling."/>
|
|
<meta property="og:image" content="/martin.png"/>
|
|
<meta name="msapplication-TileColor" content="#ffffff">
|
|
<meta name="msapplication-TileImage" content="/_/assets/favicons/ms-icon-144x144.png">
|
|
<meta name="theme-color" content="#ffffff">
|
|
<title>Martin — vector tiles server</title>
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
You need to enable JavaScript to run this app.
|
|
</noscript>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|