File: vector2.html

package info (click to toggle)
leaflet 1.7.1~dfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 16,996 kB
  • sloc: javascript: 16,627; makefile: 48; xml: 23; sh: 21
file content (60 lines) | stat: -rw-r--r-- 1,745 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
	<title>Leaflet debug page</title>

	<link rel="stylesheet" href="../../dist/leaflet.css" />

	<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 osmUrl = 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
			osmAttrib = '&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors',
			osm = L.tileLayer(osmUrl, {maxZoom: 18, attribution: osmAttrib});

		var svg = L.svg();

		var map = new L.Map('map', {layers: [osm], renderer: svg});

		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).bindPopup('Happy New Year!');

		// map.on('mousemove', function (e) {
		// 	circle.setLatLng(e.latlng);
		// });

		map.setView([36, 52], 3);

		var layersControl = new L.Control.Layers({
		}, {
			'poly': poly,
			'path': path,
			'circle': circle,
			'circleMarker': circleMarker,
			'canvas': canvas,
			'svg': svg,
		}, {collapsed: false});
		map.addControl(layersControl);
	</script>
</body>
</html>