2014-12-30 04:14:33 +08:00
|
|
|
<!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([50.5, 30.51], 15)
|
|
|
|
.addLayer(osm);
|
|
|
|
|
2015-01-07 02:34:19 +08:00
|
|
|
var features = new L.FeatureGroup([
|
|
|
|
L.marker(getRandomLatLng(map)),
|
|
|
|
L.polyline([
|
2014-12-30 05:50:23 +08:00
|
|
|
getRandomLatLng(map),
|
|
|
|
getRandomLatLng(map),
|
|
|
|
getRandomLatLng(map)
|
2015-01-07 02:34:19 +08:00
|
|
|
]),
|
|
|
|
L.polygon([
|
|
|
|
getRandomLatLng(map),
|
|
|
|
getRandomLatLng(map),
|
|
|
|
getRandomLatLng(map),
|
|
|
|
getRandomLatLng(map)
|
|
|
|
])
|
|
|
|
]);
|
2014-12-30 04:14:33 +08:00
|
|
|
|
|
|
|
features.bindPopup(function(layer){
|
2014-12-30 05:50:23 +08:00
|
|
|
return 'Leaflet ID is ' + layer._leaflet_id;
|
2014-12-30 04:14:33 +08:00
|
|
|
}).addTo(map);
|
|
|
|
|
2015-01-07 02:34:19 +08:00
|
|
|
var content = L.DomUtil.create('p', 'custom-popup');
|
|
|
|
content.innerText = 'I\'m a red polygon';
|
|
|
|
|
2015-01-02 23:34:16 +08:00
|
|
|
var polygon = L.polygon([
|
|
|
|
getRandomLatLng(map),
|
|
|
|
getRandomLatLng(map),
|
|
|
|
getRandomLatLng(map),
|
|
|
|
getRandomLatLng(map)
|
|
|
|
], {
|
|
|
|
color: 'red'
|
2015-01-07 02:34:19 +08:00
|
|
|
}).bindPopup(content).addTo(map);
|
2015-01-02 23:34:16 +08:00
|
|
|
|
|
|
|
var polyline = L.polyline([
|
|
|
|
getRandomLatLng(map),
|
|
|
|
getRandomLatLng(map),
|
2015-05-08 20:01:13 +08:00
|
|
|
getRandomLatLng(map)
|
2015-01-02 23:34:16 +08:00
|
|
|
], {
|
|
|
|
color: 'red'
|
|
|
|
}).bindPopup('I\'m a red polyline').addTo(map);
|
|
|
|
|
|
|
|
var marker = L.circleMarker(getRandomLatLng(map), {
|
2015-03-15 03:13:44 +08:00
|
|
|
color: 'red',
|
|
|
|
radius: 25
|
2015-01-02 23:34:16 +08:00
|
|
|
}).bindPopup('I\'m a red circle').addTo(map);
|
2014-12-30 04:14:33 +08:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|