-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
28 lines (18 loc) · 885 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<html>
<head>
<script type="text/javascript" src="leaflet/leaflet.js"></script>
<link rel="stylesheet" href="leaflet/leaflet.css" />
</head>
<body>
<script type="text/javascript">// <![CDATA[
window.onload = function () {
var cloudmadeUrl = 'http://{s}.tile.cloudmade.com/BC9A493B41014CAABB98F0471D759707/997/256/{z}/{x}/{y}.png';
var basemap = new L.TileLayer(cloudmadeUrl, {maxZoom: 18});
var latlng = new L.LatLng(43.0731, -89.4011);
var map = new L.Map('map', {center: latlng, zoom: 15, layers: [basemap]});
};
// ]]></script>
<div id="map" style="width: 100%; height: 600px; border: 1px solid #ccc;"></div>
</div>
</body>
</html>