Sha256: c0bb6260512376515335193f72a1a1eba036794bb5b17678c0cd8412cd81df90

Contents?: true

Size: 891 Bytes

Versions: 5

Compression:

Stored size: 891 Bytes

Contents

<!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">

		var map = L.map('map', {
			crs: L.CRS.Simple
		}).setView([0, 0], 0);

		L.polygon([
			[-200, -50],
			[-40, 250],
			[200, 100]
		]).addTo(map);


		L.marker([-200, -200]).addTo(map);
		L.marker([200, -200]).addTo(map);
		L.marker([200, 200]).addTo(map);
		L.marker([-200, 200]).addTo(map);

		L.marker([0, 0]).addTo(map);

		L.imageOverlay('http://leafletjs.com/docs/images/logo.png', [[0, 0], [73, 220]]).addTo(map);


	</script>
</body>
</html>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
leaflet-js-0.7.0.4 lib/leaflet/debug/map/simple-proj.html
leaflet-js-0.7.0.3 lib/leaflet/debug/map/simple-proj.html
leaflet-js-0.7.0.2 lib/leaflet/debug/map/simple-proj.html
leaflet-js-0.7.0.1 lib/leaflet/debug/map/simple-proj.html
leaflet-js-0.7.0 lib/leaflet/debug/map/simple-proj.html