-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2136 from danzel/rtl
Correct rtl again
- Loading branch information
Showing
6 changed files
with
81 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Leaflet debug page</title> | ||
|
||
<link rel="stylesheet" href="../../dist/leaflet.css" /> | ||
<!--[if lte IE 8]><link rel="stylesheet" href="../../dist/leaflet.ie.css" /><![endif]--> | ||
|
||
<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"> | ||
|
||
var cloudmade = L.tileLayer('http://{s}.tile.cloudmade.com/{key}/997/256/{z}/{x}/{y}.png', { | ||
maxZoom: 18, | ||
attribution: 'Map data © 2011 OpenStreetMap contributors, Imagery © 2011 CloudMade', | ||
key: 'd4fc77ea4a63471cab2423e66626cbb6' | ||
}); | ||
|
||
var map = L.map('map') | ||
.setView([50.5, 30.51], 15) | ||
.addLayer(cloudmade); | ||
|
||
map.on('click', function(e) { | ||
L.popup().setLatLng(e.latlng).setContent('Hello').openOn(map); | ||
}); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<html dir="rtl"> | ||
<head> | ||
|
||
<link rel="stylesheet" href="../../dist/leaflet.css" /> | ||
<!--[if lte IE 8]><link rel="stylesheet" href="../../dist/leaflet.ie.css" /><![endif]--> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
<link rel="stylesheet" href="../css/mobile.css" /> | ||
|
||
<script type="text/javascript" src="../../build/deps.js"></script> | ||
<script src="../leaflet-include.js"></script> | ||
<style> | ||
#map { height: 100%; } | ||
</style> | ||
</head> | ||
<body> | ||
<div id="map"></div> | ||
<script> | ||
var map = L.map('map').setView([51.505, -0.09], 13); | ||
L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png').addTo(map); | ||
map.on('click', function(e) { | ||
L.popup().setLatLng(e.latlng).setContent('Hello').openOn(map); | ||
}); | ||
|
||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters