29 lines
556 B
HTML
29 lines
556 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<script src="dist/maplibre-gl.js"></script>
|
|
<link href="dist/maplibre-gl.css" rel="stylesheet"/>
|
|
<style>
|
|
html, body, #map {
|
|
margin: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="map" style="width: 100%; height: 100%"></div>
|
|
<script>
|
|
const map = new maplibregl.Map({
|
|
center: [13.388, 52.517],
|
|
zoom: 9.5,
|
|
container: 'map',
|
|
attributionControl: false
|
|
})
|
|
</script>
|
|
|
|
</body>
|
|
</html> |