@csn_chile/status_map_gnss
Version:
Mapa de status GNSS
42 lines (39 loc) • 1.2 kB
HTML
<html lang="en">
<head>
<title>Mouse Position</title>
<!-- The line below is only needed for old environments like Internet Explorer and Android 4.x -->
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList,URL"></script>
<style>
.map {
width: 100%;
height:400px;
}
</style>
<link rel="stylesheet" type="text/css" href="estilos.css">
</head>
<body>
<div id="map" class="map"></div>
<div id="mouse-position"></div>
<form>
<label>Projection </label>
<select id="projection">
<option value="EPSG:4326">EPSG:4326</option>
<option value="EPSG:3857">EPSG:3857</option>
</select>
<label>Precision </label>
<input id="precision" type="number" min="0" max="12" value="4"/>
</form>
<section></section>
<div id="popup" class="ol-popup">
<a href="#" id="popup-closer" class="ol-popup-closer"></a>
<div id="popup-content">
popup
</div>
</div>
<!-- popup -->
<script id="station_list">
</script>
<script src="default.js"></script>
</body>
</html>