fix black tile flickering bug, update changelog, build
This commit is contained in:
parent
6afc7d87d5
commit
bc39d7036b
@ -13,9 +13,13 @@ Leaflet Changelog
|
||||
|
||||
### Bug fixes
|
||||
|
||||
* Fixed a bug where default marker icons wouldn't work if Leaflet include url contained a query string.
|
||||
* Fixed a bug where `TileLayer.WMS` wouldn't take `insertAtTheBottom` option into account (by [@bmcbride](https://github.com/bmcbride)). [#478](https://github.com/CloudMade/Leaflet/pull/478)
|
||||
|
||||
## 0.3.1 (14.02.2012)
|
||||
|
||||
* Fixed a regression where default marker icons wouldn't work if Leaflet include url contained a query string.
|
||||
* Fixed a regression where tiles sometimes flickered with black on panning in iOS.
|
||||
|
||||
## 0.3 (13.02.2012)
|
||||
|
||||
### Major features
|
||||
|
@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<title>Leaflet debug page</title>
|
||||
|
||||
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
|
||||
<link rel="stylesheet" href="../../dist/leaflet.css" />
|
||||
<!--[if lte IE 8]><link rel="stylesheet" href="../../dist/leaflet.ie.css" /><![endif]-->
|
||||
|
@ -6,6 +6,8 @@
|
||||
<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 src="../leaflet-include.js"></script>
|
||||
|
2
dist/leaflet-src.js
vendored
2
dist/leaflet-src.js
vendored
@ -1613,7 +1613,7 @@ L.TileLayer = L.Class.extend({
|
||||
|
||||
unloadInvisibleTiles: L.Browser.mobile,
|
||||
updateWhenIdle: L.Browser.mobile,
|
||||
reuseTiles: L.Browser.mobile
|
||||
reuseTiles: false
|
||||
},
|
||||
|
||||
initialize: function (url, options, urlParams) {
|
||||
|
2
dist/leaflet.js
vendored
2
dist/leaflet.js
vendored
File diff suppressed because one or more lines are too long
@ -21,7 +21,7 @@ L.TileLayer = L.Class.extend({
|
||||
|
||||
unloadInvisibleTiles: L.Browser.mobile,
|
||||
updateWhenIdle: L.Browser.mobile,
|
||||
reuseTiles: L.Browser.mobile
|
||||
reuseTiles: false
|
||||
},
|
||||
|
||||
initialize: function (url, options, urlParams) {
|
||||
|
Loading…
Reference in New Issue
Block a user