colouring-montreal/tileserver/public/index.html

25 lines
556 B
HTML
Raw Normal View History

2018-07-30 05:25:34 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Map</title>
<link rel="stylesheet" href="/css/vendor/leaflet.css">
<style>
#map {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
</style>
</head>
<body>
<div id="map"></div>
<script src="/js/vendor/leaflet.js"></script>
<script src="/js/main.js"></script>
</body>
</html>