20 lines
321 B
HTML
20 lines
321 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<style>
|
||
|
html, body {
|
||
|
height: 100%
|
||
|
}
|
||
|
.map {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
}
|
||
|
</style>
|
||
|
<title>OpenLayers example</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="map" class="map"></div>
|
||
|
<script src="./map.js"></script>
|
||
|
</body>
|
||
|
</html>
|