-
-
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.
Merge pull request #2290 from Leaflet/vectors2
Vectors 2.0
- Loading branch information
Showing
33 changed files
with
1,494 additions
and
1,461 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Leaflet debug page</title> | ||
|
||
<link rel="stylesheet" href="../../dist/leaflet.css" /> | ||
|
||
<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" style="width: 800px; height: 600px; border: 1px solid #ccc"></div> | ||
|
||
<script src="route.js"></script> | ||
<script> | ||
var cloudmadeUrl = 'http://{s}.tile.cloudmade.com/d4fc77ea4a63471cab2423e66626cbb6/997/256/{z}/{x}/{y}.png', | ||
cloudmade = new L.TileLayer(cloudmadeUrl, {maxZoom: 18}); | ||
|
||
var map = new L.Map('map', {layers: [cloudmade]}); | ||
|
||
map.addLayer(L.marker(route[0])); | ||
map.addLayer(L.marker(route[route.length - 1])); | ||
|
||
var canvas = L.canvas(); | ||
|
||
var poly = L.polyline([ | ||
[[60, 30], [60, 50], [40, 50]], | ||
[[20, 50], [20, 70], [0, 70]] | ||
], {color: 'red'}).addTo(map).bindPopup('Hello SVG'); | ||
|
||
var path = L.polygon([ | ||
[route, [[50.5, 30.5], [50.5, 40], [40, 40]]], | ||
[[[20, 0], [20, 40], [0, 40]]] | ||
], {renderer: canvas}).addTo(map).bindPopup('Hello Canvas'); | ||
|
||
var circle = L.circle([35, 0], 700000, {color: 'green', renderer: canvas}).addTo(map).bindPopup('Hello Circle'); | ||
var circleMarker = L.circleMarker([35, 30], {color: 'magenta', radius: 30}).addTo(map); | ||
|
||
map.setView([36, 52], 3); | ||
|
||
var layersControl = new L.Control.Layers({ | ||
}, { | ||
'poly': poly, | ||
'path': path, | ||
// 'rect': rect, | ||
'circle': circle, | ||
'circleMarker': circleMarker, | ||
'canvas': canvas, | ||
'svg': L.SVG.instance, | ||
}, {collapsed: false}); | ||
map.addControl(layersControl); | ||
</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
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.