diff --git a/reference.html b/reference.html
index 4be3fe65..0d1ce1b0 100644
--- a/reference.html
+++ b/reference.html
@@ -185,7 +185,7 @@ var map = L.map('map', {
layers |
- ILayer[] |
+ Layer[] |
null |
Layers that will be added to the map initially. |
@@ -841,7 +841,7 @@ var map = L.map('map', {
addLayer(
- <ILayer> layer
+ <Layer> layer
|
this |
@@ -849,7 +849,7 @@ var map = L.map('map', {
removeLayer(
- <ILayer> layer )
+ <Layer> layer )
|
this |
@@ -857,7 +857,7 @@ var map = L.map('map', {
hasLayer(
- <ILayer> layer )
+ <Layer> layer )
|
Boolean |
@@ -918,7 +918,7 @@ var map = L.map('map', {
Removes the given control from the map. |
getRenderer(
- <ILayer> layer)
+ <Layer> layer)
|
Renderer |
@@ -1669,11 +1669,11 @@ var map = L.map('map', {
L.popup(
<Popup options> options?,
- <ILayer> source? )
+ <Layer> source? )
|
- Instantiates a Popup object given an optional options object that describes its appearance and location and an optional source object that is used to tag the popup with a reference to the ILayer to which it refers. |
+ Instantiates a Popup object given an optional options object that describes its appearance and location and an optional source object that is used to tag the popup with a reference to the Layer to which it refers. |
@@ -2979,7 +2979,7 @@ map.fitBounds(bounds);
L.LayerGroup(
- <ILayer[]> layers? )
+ <Layer[]> layers? )
|
@@ -3005,7 +3005,7 @@ map.fitBounds(bounds);
addLayer(
- <ILayer> layer )
+ <Layer> layer )
|
this |
@@ -3013,7 +3013,7 @@ map.fitBounds(bounds);
removeLayer(
- <ILayer> layer )
+ <Layer> layer )
|
this |
@@ -3029,7 +3029,7 @@ map.fitBounds(bounds);
hasLayer(
- <ILayer> layer )
+ <Layer> layer )
|
Boolean |
@@ -3040,7 +3040,7 @@ map.fitBounds(bounds);
<String> id )
- ILayer |
+ Layer |
Returns the layer with the given id. |
@@ -3093,7 +3093,7 @@ map.fitBounds(bounds);
L.featureGroup(
- <ILayer[]> layers? )
+ <Layer[]> layers? )
|
@@ -3245,7 +3245,7 @@ map.fitBounds(bounds);
onEachFeature(
<GeoJSON> featureData,
- <ILayer> layer )
+ <Layer> layer )
|
Function that will be called on each created feature layer. Useful for attaching events and popups to features. |
@@ -3253,7 +3253,7 @@ map.fitBounds(bounds);
filter(
<GeoJSON> featureData,
- <ILayer> layer )
+ <Layer> layer )
|
Function that will be used to decide whether to show a feature or not. |
@@ -3319,7 +3319,7 @@ map.fitBounds(bounds);
<Function> pointToLayer? )
- ILayer |
+ Layer |
Creates a layer from a given GeoJSON feature. |
@@ -4455,7 +4455,7 @@ L.control.layers(baseLayers, overlays).addTo(map);
addBaseLayer(
- <ILayer> layer,
+ <Layer> layer,
<String> name )
|
this |
@@ -4463,7 +4463,7 @@ L.control.layers(baseLayers, overlays).addTo(map);
addOverlay(
- <ILayer> layer,
+ <Layer> layer,
<String> name )
|
this |
@@ -4471,7 +4471,7 @@ L.control.layers(baseLayers, overlays).addTo(map);
removeLayer(
- <ILayer> layer )
+ <Layer> layer )
|
this |
Remove the given layer from the control. |
@@ -6657,7 +6657,7 @@ map.addControl(new MyControl());
layer |
- ILayer |
+ Layer |
The layer that was added or removed. |
@@ -6672,7 +6672,7 @@ map.addControl(new MyControl());
layer |
- ILayer |
+ Layer |
The layer that was added or removed. |
@@ -6742,7 +6742,7 @@ map.addControl(new MyControl());
layer |
- ILayer |
+ Layer |
The layer for the GeoJSON feature that is being added to the map. |