28 lines
446 B
HTML
28 lines
446 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Title</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="style.css"/>
|
|
<link rel="stylesheet" href="asset/leaflet/leaflet.css"/>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div id="map"></div>
|
|
|
|
|
|
<style>
|
|
#map { height: 500px; }
|
|
</style>
|
|
|
|
|
|
<script src="asset/leaflet/leaflet.js"></script>
|
|
|
|
<script src="asset/js/map.js"></script>
|
|
|
|
</body>
|
|
</html>
|
|
|