53 lines
1.3 KiB
HTML
53 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Leaflet debug page</title>
|
|
|
|
<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/screen.css" />
|
|
|
|
<script src="../leaflet-include.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="map" style="width: 800px; height: 600px; border: 1px solid #ccc"></div>
|
|
|
|
<script src="route.js"></script>
|
|
<script>
|
|
var cloudmadeUrl = 'http://{s}.tile.cloudmade.com/BC9A493B41014CAABB98F0471D759707/997/256/{z}/{x}/{y}.png',
|
|
cloudmade = new L.TileLayer(cloudmadeUrl, {maxZoom: 18}),
|
|
map = new L.Map('map', {layers: [cloudmade], center: new L.LatLng(51.505, -0.04), zoom: 13});
|
|
|
|
|
|
var polygon = new L.Polygon([
|
|
[51.51, -0.1],
|
|
[51.5, -0.06],
|
|
[51.52, -0.03]
|
|
]);
|
|
|
|
polygon.editing.enable();
|
|
|
|
map.addLayer(polygon);
|
|
|
|
var polyline = new L.Polyline([
|
|
[51.50, -0.04],
|
|
[51.49, -0.02],
|
|
[51.51, 0],
|
|
[51.52, -0.02]
|
|
]);
|
|
|
|
polyline.editing.enable();
|
|
|
|
map.addLayer(polyline);
|
|
|
|
polygon.on('edit', function() {
|
|
console.log('Polygon was edited!');
|
|
});
|
|
polyline.on('edit', function() {
|
|
console.log('Polyline was edited!');
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|