mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-26 22:40:03 +03:00
24 lines
461 B
HTML
24 lines
461 B
HTML
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="abstreet.css">
|
|
</head>
|
|
<body>
|
|
|
|
<script type="module">
|
|
import { OSMViewer } from "./osm_viewer/osm_viewer.bundle.js";
|
|
let app = new OSMViewer("app");
|
|
|
|
document.addEventListener("DOMContentLoaded", function(event) {
|
|
app.loadAndStart();
|
|
});
|
|
</script>
|
|
|
|
<div class="widgetry-app full-screen-widgetry-app" id="app">
|
|
<div class="preloading">
|
|
<h1>OSM Viewer</h1>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|