-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
35 changed files
with
345 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Leaflet debug page</title> | ||
|
||
<link rel="stylesheet" href="../../dist/leaflet.css" /> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
<link rel="stylesheet" href="../css/screen.css" /> | ||
|
||
<script type="text/javascript" src="../../build/deps.js"></script> | ||
<script src="../leaflet-include.js"></script> | ||
</head> | ||
<body> | ||
|
||
<div id="map"></div> | ||
|
||
<script type="text/javascript"> | ||
map = L.map('map', { center: [0, 0], zoom: 3, maxZoom: 4 }); | ||
|
||
L.Icon.Default.imagePath = 'http://cdn.leafletjs.com/leaflet-0.7.3/images'; | ||
|
||
|
||
var markerStatic = new L.Marker([0, -10], { | ||
draggable: false, | ||
title: 'Static' | ||
}); | ||
|
||
map.addLayer(markerStatic); | ||
markerStatic.bindPopup("Static"); | ||
|
||
|
||
var markerDraggable = new L.Marker([0, 10], { | ||
draggable: true, | ||
title: 'Draggable' | ||
}); | ||
|
||
map.addLayer(markerDraggable); | ||
markerDraggable.bindPopup("Draggable"); | ||
|
||
var poly = new L.Polygon([[0, 10], [0, 15.5], [0, 50], [20, 20.5]]); | ||
map.addLayer(poly); | ||
|
||
|
||
markerDraggable.on('click', function(e) { | ||
console.log('markerDraggable click'); | ||
}); | ||
markerStatic.on('click', function(e) { | ||
console.log('markerStatic click'); | ||
}) | ||
map.on('click', function(e) { | ||
console.log('map click'); | ||
}); | ||
|
||
poly.on('click', function(e) { | ||
console.log('poly click'); | ||
}); | ||
|
||
L.tileLayer('http://{s}.mqcdn.com/tiles/1.0.0/map/{z}/{x}/{y}.png', { | ||
attribution: "Map: Tiles Courtesy of MapQuest (OpenStreetMap, CC-BY-SA)", | ||
subdomains: ["otile1","otile2","otile3","otile4"], | ||
maxZoom: 12, | ||
minZoom: 2 | ||
}).addTo(map); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.