You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
873 B
28 lines
873 B
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8" /> |
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
|
<link |
|
rel="stylesheet" |
|
href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" |
|
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A==" |
|
crossorigin="" |
|
/> |
|
<link rel="stylesheet" href="/static/index.css" /> |
|
|
|
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script> |
|
<script src="/static/vendor/vue.min.js"></script> |
|
|
|
<title>Map</title> |
|
</head> |
|
|
|
<body> |
|
<div id="app"></div> |
|
|
|
<script src="/static/js/models/geometries.js"></script> |
|
<script src="/static/js/map.js"></script> |
|
<script src="/static/js/index.js"></script> |
|
</body> |
|
</html>
|
|
|