30 lines
865 B
HTML
30 lines
865 B
HTML
<!doctype html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<title>Mapa de ollas populares de Montevideo</title>
|
|
<meta name="description" content="Mapa de ollas populares de Montevideo">
|
|
<meta name="author" content="SitePoint">
|
|
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"
|
|
integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="
|
|
crossorigin=""
|
|
/>
|
|
<style>
|
|
#mapid { height: 1000px; }
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="mapid"></div>
|
|
|
|
<!-- Make sure you put this AFTER Leaflet's CSS -->
|
|
<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"
|
|
integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="
|
|
crossorigin=""></script>
|
|
<script src="scripts.js"></script>
|
|
</body>
|
|
</html>
|