-
-
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.
Fix zoom when map container is scaled (#5794)
* fix zoom when container is scaled * add map-scaled debug page
- Loading branch information
1 parent
2a324b0
commit 899bdd4
Showing
2 changed files
with
42 additions
and
2 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,38 @@ | ||
<!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" /> | ||
|
||
<style> | ||
#map { | ||
width: 400px; | ||
height: 300px; | ||
transform: scale(1.5, 1.5); | ||
transform-origin: 0 0; | ||
} | ||
</style> | ||
|
||
<script src="../leaflet-include.js"></script> | ||
</head> | ||
<body> | ||
|
||
<div id="map"></div> | ||
|
||
<script> | ||
|
||
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); | ||
</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