Per Liedman
670662e718
Fix canvas redraw when style updates fill and/or weight ( #5034 )
...
Close #5031 .
2016-10-21 16:09:26 +02:00
Per Liedman
fa7accacef
Prevent canvas from firing multiple mouseover for same layer. ( #5033 )
...
Also, fire mouseover for at most one layer for every mousemove,
preventing overlapping features from firing multiple
mouseover/mouseout (#4495 ).
Close #5028 . Close #4495 .
2016-10-21 16:57:59 +03:00
ghybs
34dca3cfd9
Fix #5011 (canvas remove+add) ( #5024 )
...
Bug when using map option `preferCanvas: true` (canvas renderer for paths) and removing then adding back a vector within the same animation frame (typically in the same sequence, as done by Leaflet.markercluster at `"zoomend"` event, to remove layers and clusters outside visible bounds).
This commit clears the `_removed` flag from paths when they are added to the canvas.
Also added corresponding test suites.
2016-10-20 15:50:15 +03:00
Per Liedman
a97b87d033
Remove extra word from doc string
2016-10-20 08:22:50 +02:00
Yohan Boniface
bc82976430
Remove duplicated test in Draggable ( #5021 )
...
We already are testing for this._enabled some lines before.
2016-10-18 08:00:44 +02:00
erick
d2add3dd5c
docstrings: add clarification for projection; closes #4817 ( #5010 )
...
* Fix doc: add clarification for projection; closes #4817
Adds clarification in the documentation that specifies that the
`project` and `unproject` methods cannot take in arrays, but only
actual instances of `L.LatLng` and `L.Point`, respectively.
* Fix doc: add clarification for transform methods
Changes the word "real" for the word "actual" so that people don't
confuse actual instances of `L.Point` with coordinates using real
numbers.
2016-10-12 09:22:05 +02:00
Per Liedman
b144d2f13e
Fix docs typo: extend MyClass, not L.Class; close #5009
2016-10-10 12:49:19 +02:00
Iván Sánchez Ortega
16e04741a2
Docstrings: Marker.toGeoJSON
2016-10-06 09:15:05 +02:00
Per Liedman
350919b2ff
Use all four corners when projecting ImageOverlay during animation ( #4993 )
...
Close #4886 .
2016-10-02 22:07:05 +03:00
John Muccigrosso
7f350e4442
docstrings: Better description for easelinearity ( #4994 )
2016-10-02 16:23:11 +02:00
Vladimir Agafonkin
863cf74461
move zoom animation code into Map.js
2016-09-30 19:51:01 +03:00
Vladimir Agafonkin
ff73971294
move pan animation code into Map.js
2016-09-30 19:51:01 +03:00
Vladimir Agafonkin
5110298c45
get rid of separate Layer.Popup.js and Layer.Tooltip.js
2016-09-30 19:51:01 +03:00
Vladimir Agafonkin
88b593b7ab
move flyTo to Map.js
2016-09-30 19:51:01 +03:00
Vladimir Agafonkin
d0879e14af
move geolocation methods to Map.js
2016-09-30 19:51:01 +03:00
Vladimir Agafonkin
e3545bc9b9
move marker extensions to Marker.js
2016-09-30 19:51:01 +03:00
Iván Sánchez Ortega
9a1d786075
Version bump to 1.0.1
2016-09-30 14:19:56 +02:00
ghybs
d0ffe8a1ab
docstrings: L.GeoJSON functions to methods
...
Corrected docstrings of L.GeoJSON for methods (addData, resetStyle, setStyle) to be really counted as "methods" instead of static "functions" (geometryToLayer, coordsToLatLng, coordsToLatLngs, latLngToCoords, latLngsToCoords, asFeature)
2016-09-30 13:59:58 +03:00
ghybs
bc01b2b30b
docstrings: explicit effect of L.GeoJSON filter
...
Following https://stackoverflow.com/questions/39776919/how-to-reference-the-data-of-an-existing-geojson-leaflet-object/39787583#39787583 , sounds like the current definition "decide whether to show a feature or not" implies that the data is retained in memory, but just not shown.
Replaced "show" by "include" to try to make it clearer that the filtered out data is _lost_ (not retained at all within the group).
Also took the opportunity to add a note about changing the `filter` option dynamically (no re-evaluation of child layers, whether they meet the new filter conditions or not).
2016-09-30 13:59:58 +03:00
Jeff Barnes
837d190933
Fix webpack using valid image file for default icon path ( #4849 ) ( #4979 )
2016-09-30 13:11:52 +03:00
Babajide Fowotade
6b0808d6f0
Don't load class leaflet-tile-loaded in case of error ( #4980 )
2016-09-30 09:28:42 +02:00
ghybs
628fc04333
docstrings: update L.circle example to match new syntax ( #4974 )
...
docstrings: update L.circle example to match new syntax
2016-09-29 13:21:11 +02:00
Matthew Brener
9bb516970e
docstrings: its to it's where appropriate in GridLayer.js ( #4963 )
...
Very nitpicky I know.
2016-09-28 10:53:33 +02:00
Per Liedman
d10077e13e
Fire update event from VML renderer ( #4956 )
...
Close #4950 .
2016-09-27 19:59:40 +02:00
Vladimir Agafonkin
11533003c0
update version to 1.0.0
2016-09-27 13:32:00 +03:00
Edgard Lorraine Messias
6bb703ca7c
docstrings: Removed incorrect semicolon ( #4943 )
2016-09-27 10:05:17 +02:00
Edgard Lorraine Messias
db7482a561
docstrings: Removed incorrect semicolon ( #4942 )
2016-09-26 19:06:54 +02:00
Yohan Boniface
e28f7ae984
Do not fail when closing an interactive tooltip not yet added to the map ( #4937 )
2016-09-26 16:40:51 +03:00
ghybs
695b81f2fa
docstrings: L.geoJson → L.geoJSON ( #4933 )
...
Replaced factory example `L.geoJson` (from Leaflet 0.7) by `L.geoJSON` for consistency with the new factory signature rendered just below in the generated docs.
2016-09-23 10:14:56 +02:00
Iván Sánchez Ortega
c931d330fe
Delay firing the 'update' event on renderers (should fix #4928 ) ( #4929 )
2016-09-21 19:20:59 +03:00
Iván Sánchez Ortega
6e08ae427d
Improve docs for keypress events, local refs from leafdoc templates ( #4907 )
2016-09-21 17:38:23 +03:00
Alejandro Sánchez
cdbf4d5057
docstrings: return type of GridLayer.getContainer in ( #4904 )
2016-09-16 09:27:35 +02:00
Alejandro Sánchez
45775be981
docstrings: CRS.getProjectedBounds and CRS.distance ( #4918 )
2016-09-15 21:29:48 +02:00
Andris Nolendorfs
62fdf6f642
Fix handling of NaN in getScaleZoom ( #4914 )
...
* Fixed an issue when crs.zoom returns NaN in getScaleZoom
* Small documentation fixes
2016-09-15 09:46:53 +02:00
Iván Sánchez Ortega
63fd4edc76
wrap tileBounds if noWrap is false by @fyeah ( #4908 )
2016-09-12 16:59:21 +02:00
Alejandro Sánchez
55ef437723
Add opacity param to setOpacity jsdoc ( #4903 )
2016-09-10 23:05:08 +02:00
Per Liedman
ed1a612e6f
Make paths insensitive to the order of its map's moveend handlers ( #4855 )
...
* Make Paths always update after renderer updates
Close #4851
* Add test
* Add docs for update event
* Remove listener when layer is removed
2016-08-31 17:58:46 +03:00
Iván Sánchez Ortega
2ced69db12
docstrings: Expanded FeatureGroup docs. ( #4862 )
2016-08-31 17:57:03 +03:00
Baku
61513c9209
Update year ( #4850 )
2016-08-26 12:37:04 +02:00
Per Liedman
017d29c4eb
Just store array of listeners, count is no longer needed. ( #4842 )
...
* Just store array of listeners, count is no longer needed.
* Remove unused code
2016-08-25 17:23:58 +02:00
Yohan Boniface
7927708b40
Allow to create and open a tooltip without source ( fix #4827 ) ( #4836 )
2016-08-25 15:29:20 +02:00
Vladimir Agafonkin
db823b6967
Merge pull request #4841 from Leaflet/popup-remove-zoomanimation
...
Remove zoomAnimation from popup and divoverlay
2016-08-25 15:28:52 +02:00
Per Liedman
cee8edeaf2
Fix listener removal even if an event is firing
...
Close #4840 .
2016-08-25 15:20:51 +02:00
Iván Sánchez Ortega
32084ddbd8
Remove zoomanimation option from divOverlay, related to #4699
2016-08-25 15:20:12 +02:00
Iván Sánchez Ortega
eb82d4ee42
Removed Popup's _zoomanimated option from @fnicollet's changes from #4699
2016-08-25 15:10:04 +02:00
Per Liedman
0c6dc2ce1e
Make event firing reentrant
...
Close #4833
2016-08-24 09:26:53 +02:00
Iván Sánchez Ortega
e9957cfa02
Detect L.Icon.Default.imagePath using CSS. #4604 , #3696 , #4579 ( #4605 )
...
* CSS-based paths for L.Icon.Default. #4604 , #3696 , #4579
* Unit tests for default icons
* Make CSS icon path detection IE8-friendly
* Backwards compatibility for L.Icon.Default.imagePath override.
* Don't overwrite options
2016-08-22 16:40:03 +02:00
Steve
92baa9c73f
Throw error on call to L.Polygon getCenter before map add ( #4820 )
...
* Throw error on call to L.Polygon getCenter before map add
References #4740
* add polyline handling, tests, and docstring
2016-08-15 17:01:41 +02:00
Iván Sánchez Ortega
09937e39b0
Add a _leaflet_id to the map container to fix #4806 ( #4810 )
2016-08-11 09:10:46 +02:00
Iván Sánchez Ortega
e1e121c746
Docstrings: minor typo
2016-08-10 15:48:01 +02:00