2011-09-09 17:51:03 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Leaflet debug page</title>
|
|
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="../../dist/leaflet.css" />
|
|
|
|
<!--[if lte IE 8]><link rel="stylesheet" href="../../dist/leaflet.ie.css" /><![endif]-->
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="../css/mobile.css" />
|
|
|
|
|
|
|
|
<script src="../leaflet-include.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="map"></div>
|
|
|
|
|
|
|
|
<script>
|
2012-07-03 22:06:44 +08:00
|
|
|
var map = L.map('map')
|
|
|
|
.setView([51.505, -0.09], 13);
|
2011-09-09 17:51:03 +08:00
|
|
|
|
2012-07-03 22:06:44 +08:00
|
|
|
var cloudmade = L.tileLayer('http://{s}.tile.cloudmade.com/{key}/{styleId}/256/{z}/{x}/{y}.png', {
|
2012-02-16 00:23:34 +08:00
|
|
|
attribution: 'Map data © 2011 OpenStreetMap contributors, Imagery © 2011 CloudMade',
|
2012-07-03 22:06:44 +08:00
|
|
|
maxZoom: 18,
|
2012-02-16 00:23:34 +08:00
|
|
|
key: 'BC9A493B41014CAABB98F0471D759707',
|
|
|
|
styleId: 997
|
2012-07-03 22:06:44 +08:00
|
|
|
}).addTo(map);
|
|
|
|
|
|
|
|
L.marker([51.5, -0.09])
|
|
|
|
.bindPopup("<b>Hello world!</b><br />I am a popup.")
|
|
|
|
.addTo(map)
|
|
|
|
.openPopup();
|
|
|
|
|
|
|
|
L.circle([51.508, -0.11], 500, {color: '#f03', opacity: 0.7})
|
|
|
|
.bindPopup("I am a circle.")
|
|
|
|
.addTo(map);
|
|
|
|
|
|
|
|
L.polygon([
|
|
|
|
[51.509, -0.08],
|
|
|
|
[51.503, -0.06],
|
|
|
|
[51.51, -0.047]])
|
|
|
|
.bindPopup("I am a polygon.")
|
|
|
|
.addTo(map);
|
2011-09-09 17:51:03 +08:00
|
|
|
</script>
|
|
|
|
</body>
|
2012-02-15 23:50:22 +08:00
|
|
|
</html>
|