treeadvisor/server/static/index.html

40 lines
1.0 KiB
HTML
Raw Normal View History

2021-08-26 01:13:49 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dresden Tree Advisor</title>
<link rel="stylesheet" href="leaflet.css" />
<script src="leaflet.js"></script>
<style>
#map { margin: 0; padding: 0; width: 100vw; height: 100vh; }
body { margin: 0; padding: 0; font-family: sans-serif; }
2021-08-28 21:58:29 +02:00
.leaflet-div-icon {
background: none;
border: none;
}
.tree-icon {
overflow: visible;
}
.tree-icon img {
border-radius: 100%;
}
.tree-label {
margin: 0;
overflow: visible;
text-align: center;
font-size: small;
line-height: 1.1em;
color: black;
text-shadow: -1px -1px 0px white, 1px -1px 0px white, -1px 1px 0px white, 1px 1px 0px white;
}
2021-08-26 01:13:49 +02:00
</style>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
</head>
<body>
<div id="map"></div>
<script src="app.js"></script>
</body>
</html>