Leaflet/CHANGELOG.md

32 lines
2.2 KiB
Markdown
Raw Normal View History

2011-05-17 19:19:42 +08:00
Leaflet Changelog
=================
2011-05-17 02:45:36 +08:00
2011-05-17 19:19:42 +08:00
## 0.2 (master)
* Added **WMS support** (`TileLayer.WMS`), currently EPSG:3857 only.
2011-05-28 01:20:54 +08:00
* 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 called `L.CircleMarker`.
2011-05-20 16:19:51 +08:00
* Added `mouseover` and `mouseout` events to map, markers and paths; added map `mousemove` event.
* Added `setLatLngs`, `spliceLatLngs`, `addLatLng`, `getLatLngs` methods to polylines and polygons.
* `LatLngBounds contains` method now accepts `LatLng` in addition to `LatLngBounds`, the same for `Bounds contains` and `Point`
2011-05-23 19:09:15 +08:00
* Added `opacity` option for tile layers.
2011-05-19 22:59:22 +08:00
* Added `setLatLng` method to `L.Marker`.
* Added `maxZoom` argument to `map.locateAndSetView` method.
2011-05-27 23:36:11 +08:00
* Added `DomEvent.getTarget` method.
2011-05-23 19:09:15 +08:00
* Improved geolocation error handling: better error messages, explicit timeout, set world view on locateAndSetView failure. [#61](http://github.com/CloudMade/Leaflet/issues/61)
* Disabled zoom animation on Android by default because it's buggy on some devices (will be enabled back when it's stable enough). [#32](http://github.com/CloudMade/Leaflet/issues/32)
* Fixed a bug where map would occasionally break while multi-touch-zooming on iOS. [#32](http://github.com/CloudMade/Leaflet/issues/32)
* Fixed a bug where paths would not appear in IE8.
2011-05-23 19:09:15 +08:00
* 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](http://github.com/CloudMade/Leaflet/issues/47)
* Fixed a bug where closed polylines would not appear on the map.
2011-05-23 19:19:44 +08:00
* Fixed a bug where marker that was added, removed and then added again would not appear on the map. [#66](http://github.com/CloudMade/Leaflet/issues/66)
* Fixed a bug that caused an error when trying to add a marker without shadow in its icon.
2011-05-20 21:34:45 +08:00
* 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
2011-05-18 17:15:52 +08:00
* 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.
2011-05-25 23:30:30 +08:00
* Fixed popup fade animation in Firefox and Opera
2011-05-17 02:45:36 +08:00
## 0.1 (2011-05-13)
2011-05-16 22:52:00 +08:00
* Initial Leaflet release.