Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.3 KiB
57 lines
1.3 KiB
<!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 osmUrl = 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', |
|
osmAttrib = '© <a href="http://openstreetmap.org/copyright">OpenStreetMap</a> contributors', |
|
osm = L.tileLayer(osmUrl, {maxZoom: 18, attribution: osmAttrib}); |
|
|
|
var map = L.map('map') |
|
.setView([51.505, -0.09], 13) |
|
.addLayer(osm); |
|
|
|
L.marker([51.5, -0.09]).addTo(map) |
|
.bindPopup("<b>Hello world!</b><br />I am a popup.").openPopup(); |
|
|
|
L.circle([51.508, -0.11], 500, { |
|
color: 'red', |
|
fillColor: '#f03', |
|
fillOpacity: 0.5 |
|
}).addTo(map).bindPopup("I am a circle."); |
|
|
|
L.polygon([ |
|
[51.509, -0.08], |
|
[51.503, -0.06], |
|
[51.51, -0.047] |
|
]).addTo(map).bindPopup("I am a polygon."); |
|
|
|
var popup = L.popup(); |
|
|
|
function onMapClick(e) { |
|
popup |
|
.setLatLng(e.latlng) |
|
.setContent("You clicked the map at " + e.latlng.toString()) |
|
.openOn(map); |
|
} |
|
|
|
map.on('click', onMapClick); |
|
|
|
</script> |
|
</body> |
|
</html>
|
|
|