3.6 KiB
3.6 KiB
Leaflet Changelog
0.2 (master)
Highlights
- Added WMS support (
TileLayer.WMS
). - Added different projections support, having
EPSG:3857
,EPSG:4326
andEPSG:3395
out of the box (throughcrs
option inMap
). Thanks to @Miroff & @Komzpa for great advice and explanation regarding this.
Improvements
- Added
TileLayer.Canvas
for easy creation of canvas-based tile layers. Circle
is now zoom-dependent (with radius in meters); circle of a permanent size is now calledL.CircleMarker
.- Added
mouseover
andmouseout
events to map, markers and paths; added mapmousemove
event. - Added
setLatLngs
,spliceLatLngs
,addLatLng
,getLatLngs
methods to polylines and polygons. - Added
setLatLng
andsetRadius
methods toCircle
andCircleMarker
. LatLngBounds contains
method now acceptsLatLng
in addition toLatLngBounds
, the same forBounds contains
andPoint
- Added TMS tile numbering support through
TileLayer
scheme: 'tms'
option (by @tmcw). - Added
opacity
option toTileLayer
. - Added
setLatLng
method toMarker
. - Added
title
option toMarker
. - Added
maxZoom
argument tomap.locateAndSetView
method. - Improved geolocation error handling: better error messages, explicit timeout, set world view on locateAndSetView failure. #61
- Improved
LatLngBounds
&Bounds
to allow their instantiation without arguments (by @snc). - Improved
debug/leaflet-include.js
script to allow using it outside ofdebug
folder (by @antonj). - Added
Makefile
for buildingleaflet.js
on non-Windows machines (by @tmcw). - Improved
Popup
to accept HTML elements in addition to strings as its content.
Bug fixes
- Disabled zoom animation on Android by default because it's buggy on some devices (will be enabled back when it's stable enough). #32
- Fixed a bug where map would occasionally break while multi-touch-zooming on iOS. #32
- Fixed a bug where paths would not appear in IE8.
- Fixed a bug where zooming is broken if the map contains a polygon and you zoom to an area where it's not visible. #47
- Fixed a bug where closed polylines would not appear on the map.
- Fixed a bug where marker that was added, removed and then added again would not appear on the map. #66
- Fixed a bug where some tiles would not load when panning across the date line. #97
- Fixed a bug where map div with
position: absolute
is reset torelative
. #100 - Fixed a bug that caused an error when trying to add a marker without shadow in its icon.
- Fixed a bug where popup content would not update on
setContent
call. #94 - Fixed incorrect zoom animation & popup styling in Opera 11.11.
- Fixed a bug where double click zoom wouldn't work if popup is opened on map click
- Fixed a bug with click propagation on popup close button. #99
- Fixed a bug where map isn't displayed in Firefox when there's an
img { max-width: 100% }
rule. - Fixed inability to remove ImageOverlay layer.
- Fixed popup fade animation in Firefox and Opera.
0.1 (2011-05-13)
- Initial Leaflet release.