diff --git a/reference.html b/reference.html index 94bf9e5f..a8ece6e6 100644 --- a/reference.html +++ b/reference.html @@ -1790,7 +1790,7 @@ var map = L.map('map', {
Used to load and display tile layers on the map, implements ILayer interface.
+Used to load and display tile layers on the map. Extends Layer.
Used to load and display a single image over specific bounds of the map, implements ILayer interface.
+Used to load and display a single image over specific bounds of the map. Extends Layer.
Used to group several layers and handle them as one. If you add it to the map, any layers added or removed from the group will be added/removed on the map as well. Implements ILayer interface.
+Used to group several layers and handle them as one. If you add it to the map, any layers added or removed from the group will be added/removed on the map as well. Extends Layer.
L.layerGroup([marker1, marker2])
.addLayer(polyline)
@@ -3186,7 +3186,7 @@ map.fitBounds(bounds);
Extended layerGroup that also has mouse events (propagated from members of the group) and a shared bindPopup method. Implements ILayer interface.
+Extended layerGroup that also has mouse events (propagated from members of the group) and a shared bindPopup method. Extends Layer.
L.featureGroup([marker1, marker2, polyline])
.bindPopup('Hello world!')
@@ -6202,7 +6202,7 @@ map.addControl(new MyControl());
Handler
-An interface implemented by interaction handlers.
+Implemented by map interaction handlers.