Платформа ЦРНП "Мирокод" для разработки проектов
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.
40 lines
1.2 KiB
40 lines
1.2 KiB
<!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 type="text/javascript"> |
|
var map = new L.Map('map'); |
|
|
|
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, {attribution: osmAttrib}), |
|
osm2 = L.tileLayer(osmUrl, {attribution: osmAttrib}); |
|
|
|
var nexrad = new L.TileLayer.WMS("http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r.cgi", { |
|
layers: 'nexrad-n0r-900913', |
|
format: 'image/png', |
|
transparent: true, |
|
attribution: "Weather data © 2011 IEM Nexrad", |
|
opacity: 0.4 |
|
}); |
|
|
|
var bounds = new L.LatLngBounds(new L.LatLng(32, -126), new L.LatLng(50, -64)); |
|
|
|
map.addLayer(osm).addLayer(nexrad).fitBounds(bounds); |
|
|
|
L.control.layers({"CM": osm, "CM2": osm2}, {"NexRad": nexrad}).addTo(map); |
|
</script> |
|
</body> |
|
</html>
|
|
|