Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 27, 2019 18:39
Show Gist options
  • Save parzibyte/40f99c66051b3e0ea6a0420f3ca08b8d to your computer and use it in GitHub Desktop.
Save parzibyte/40f99c66051b3e0ea6a0420f3ca08b8d to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1,
shrink-to-fit=no">
<meta name="author" content="Parzibyte">
<title>Demostración OpenLayers</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/ol.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<main role="main" class="container-fluid">
<div class="row">
<div class="col-12">
<h1>Demostración mapas con OpenLayers</h1>
</div>
<div class="col-12 mb-2">
<div class="form-group">
<label for="selectCategorias">Categoría:</label>
<select class="form-control" id="selectCategorias">
<option value="veterinarias">Veterinarias</option>
<option value="pizzerias">Pizzerías</option>
</select>
</div>
</div>
<div class="col-12">
<div id="mapa"></div>
</div>
</div>
</main>
<script type="text/javascript" src="js/ol.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment