Leaflet/debug/tests/rtl.html

41 lines
933 B
HTML
Raw Normal View History

2013-10-30 05:22:19 +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>
<style>
body {
direction: rtl;
}
</style>
</head>
<body>
<p>Click the map to place a popup at the mouse location</p>
<div id="map"></div>
<script type="text/javascript">
2014-03-04 23:54:41 +08:00
var osm = L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
2014-03-05 00:04:00 +08:00
attribution: '&copy; <a href="http://openstreetmap.org/copyright">OpenStreetMap</a> contributors',
2013-10-30 05:22:19 +08:00
});
var map = L.map('map')
.setView([50.5, 30.51], 15)
2014-03-04 23:54:41 +08:00
.addLayer(osm);
2013-10-30 05:22:19 +08:00
map.on('click', function(e) {
L.popup().setLatLng(e.latlng).setContent('Hello').openOn(map);
});
</script>
</body>
</html>