2012-02-17 14:36:46 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Leaflet debug page</title>
|
|
|
|
|
|
|
|
<meta name="viewport" content="initial-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]-->
|
|
|
|
|
|
|
|
<script src="../leaflet-include.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="map" style="width: 500px; height: 500px;"></div>
|
2012-02-21 13:08:28 +08:00
|
|
|
<input type="button" value="Set blue rectangle bounds as current map extent." onclick="resetBounds();" />
|
2012-02-17 14:36:46 +08:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
var cloudmadeUrl = 'http://{s}.tile.cloudmade.com/BC9A493B41014CAABB98F0471D759707/997/256/{z}/{x}/{y}.png',
|
|
|
|
cloudmadeAttribution = 'Map data © 2011 OpenStreetMap contributors, Imagery © 2011 CloudMade',
|
|
|
|
cloudmade = new L.TileLayer(cloudmadeUrl, {maxZoom: 18, attribution: cloudmadeAttribution});;
|
|
|
|
|
|
|
|
var bounds = new L.LatLngBounds(new L.LatLng(54.559322, -5.767822), new L.LatLng(56.1210604, -3.021240));
|
|
|
|
var bounds2 = new L.LatLngBounds(new L.LatLng(56.2124322195806, -3.427734375), new L.LatLng(56.307776937156945, -3.2560729980468746));
|
|
|
|
|
|
|
|
var rectangle = new L.Rectangle(bounds);
|
|
|
|
var styledRectangle = new L.Rectangle(bounds2, {
|
|
|
|
fillColor: "#ff7800",
|
|
|
|
color: "#000000",
|
|
|
|
opacity: 1,
|
|
|
|
weight: 2
|
|
|
|
});
|
|
|
|
|
|
|
|
rectangle.on("click", function () {
|
|
|
|
alert("you clicked a rectangle.")
|
|
|
|
});
|
|
|
|
|
|
|
|
var map = new L.Map('map', {
|
|
|
|
center: bounds.getCenter(),
|
|
|
|
zoom: 7,
|
|
|
|
layers: [cloudmade]
|
|
|
|
});
|
|
|
|
|
|
|
|
map.addLayer(rectangle).addLayer(styledRectangle);
|
|
|
|
|
2012-02-21 13:08:28 +08:00
|
|
|
function resetBounds() {
|
|
|
|
rectangle.setBounds(map.getBounds());
|
|
|
|
}
|
|
|
|
|
2012-02-17 14:36:46 +08:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|