mirror of
https://github.com/Leaflet/Leaflet.git
synced 2025-12-08 21:26:14 +00:00
26 lines
771 B
HTML
26 lines
771 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Leaflet debug page</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="../dist/leaflet.css" />
|
|
<script type="text/javascript" src="include.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="map" style="width: 500px; height: 500px; border: 1px solid #ccc"></div>
|
|
|
|
<script type="text/javascript">
|
|
|
|
var cloudmadeUrl = 'http://{s}.tile.cloudmade.com/BC9A493B41014CAABB98F0471D759707/997/256/{z}/{x}/{y}.png',
|
|
cloudmade = new L.TileLayer(cloudmadeUrl, {maxZoom: 18}),
|
|
latlng = new L.LatLng(50.5, 30.51);
|
|
|
|
var map = new L.Map('map').addLayer(cloudmade).setView(latlng, 15);
|
|
|
|
var marker = new L.Marker(latlng).on('click', function() { alert("Hi!"); });
|
|
map.addLayer(marker);
|
|
|
|
</script>
|
|
</body>
|
|
</html> |