Leaflet/debug/map-mobile.html

44 lines
1.4 KiB
HTML
Raw Normal View History

2010-09-16 21:09:04 +08:00
<!DOCTYPE html>
<html>
<head>
2010-12-15 23:14:59 +08:00
<title>Leaflet debug page</title>
2010-09-16 23:33:33 +08:00
2010-12-15 23:14:59 +08:00
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
2010-09-16 21:09:04 +08:00
<link rel="stylesheet" type="text/css" href="../dist/leaflet.css" />
<!--[if lte IE 8]><link rel="stylesheet" href="../dist/leaflet.ie.css" /><![endif]-->
2010-12-15 23:14:59 +08:00
<script type="text/javascript" src="include.js"></script>
2010-09-16 21:09:04 +08:00
<style type="text/css">
html, body, #map {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="map"></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);
2010-12-16 02:21:38 +08:00
var map = new L.Map('map').addLayer(cloudmade).setView(latlng, 15);
2010-09-21 16:43:50 +08:00
2010-12-16 02:21:38 +08:00
map.on('locationfound', function(e) {
var marker = new L.Marker(e.latlng);
map.addLayer(marker);
marker.bindPopup("<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.</p><p>Donec nec justo eget felis facilisis fermentum. Aliquam porttitor mauris sit amet orci. Aenean dignissim pellentesque felis.</p>");
});
2010-12-15 23:14:59 +08:00
2010-12-16 02:21:38 +08:00
map.locate();
2010-09-16 21:09:04 +08:00
</script>
</body>
</html>