-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathol.html
More file actions
26 lines (25 loc) · 855 Bytes
/
Copy pathol.html
File metadata and controls
26 lines (25 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!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="./styles.css" />
<script src="https://cdn.jsdelivr.net/npm/ol@v7.3.0/dist/ol.js"></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/ol@v7.3.0/ol.css"
/>
<title>OpenLayers</title>
</head>
<body>
<div class="switch">
<input type="radio" name="switcher" id="OSM" checked="checked" />
<label for="OSM">OSM</label>
<input type="radio" name="switcher" id="Stad" />
<label for="Stad">Stadia</label>
</div>
<div id="map" class="map"></div>
<script type="module" src="./main.js"></script>
</body>
</html>