34 lines
768 B
HTML
34 lines
768 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.2.0/dist/leaflet.css" integrity="sha512-M2wvCLH6DSRazYeZRIm1JnYyh22purTM+FDB5CsyxtQJYeKq83arPe5wgbNmcFXGqiSH2XR8dT/fJISVA1r/zQ==" crossorigin=""/>
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
<meta charset="utf-8" />
|
|
<style>
|
|
#content {
|
|
height: 100%;
|
|
height: 100vh;
|
|
}
|
|
.leaflet-container {
|
|
height: calc(100vh - 64px);
|
|
max-height: 100%;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
}
|
|
#drawer_uiComponents {
|
|
margin: 10px;
|
|
}
|
|
body .leaflet-div-icon {
|
|
border: 0;
|
|
}
|
|
body .material-icons {
|
|
font-size: 32px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="content">
|
|
|
|
</div>
|
|
<script src="public/dist/main.js"></script>
|
|
</body>
|