block by aaizemberg 9236197

CAWS (leafletjs con maptiles de OSM)

Full Screen

index.html

<!DOCTYPE html>
<html>
<head>
	<title>Club Argentino de WUSHU</title>
	<meta charset="utf-8" />

	<meta name="viewport" content="width=device-width, initial-scale=1.0">

	<link rel="stylesheet" href="//leafletjs.com/dist/leaflet.css" />
</head>
<body>
	<div id="map" style="width: 100%; height: 600px"></div>

	<script src="//leafletjs.com/dist/leaflet.js"></script>
	<script>
		var map = L.map('map').setView([-34.6051541, -58.4280189], 16);

		L.tileLayer('//{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
			maxZoom: 18,
			attribution: '&copy; <a href="//openstreetmap.org">OpenStreetMap</a> contributors, <a href="//creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>'
		}).addTo(map);

		L.marker([-34.6051541, -58.4280189]).addTo(map).bindPopup("<b>CAWS</b><br>Club Argentino de Wushu<br><br><a href='//www.caws.com.ar/' target='_blank'>//www.caws.com.ar/</a>");
      
		var popup = L.popup();
	</script>
</body>
</html>