diff --git a/reference.html b/reference.html index a8ece6e6..a38465d2 100644 --- a/reference.html +++ b/reference.html @@ -5888,7 +5888,7 @@ MyEventedClass = L.Class.extend({

Layer

-

The base class for all Leaflet layers that impliments basic shared methods and functionality. Can be extended to create custom layers by extending L.Layer and implimenting the onAdd and onRemove methods.

+

The base class for all Leaflet layers that implements basic shared methods and functionality. Can be extended to create custom layers by extending L.Layer and implementing the onAdd and onRemove methods.

Implementing Custom Layers

@@ -5902,7 +5902,7 @@ MyEventedClass = L.Class.extend({

Methods

-

Every layer should extend from L.Layer and impliment the following methods:

+

Every layer should extend from L.Layer and implement the following methods:

@@ -6044,7 +6044,7 @@ var myLayer = new MyCustomLayer(latlng).addTo(map);

Control

-

Controls represents a UI element in one of the corners of the map. Implemented by zoom, attribution, scale and layers controls. Can be used to create custom controls by extending L.Control and implimenting the onAdd and onRemove methods.

+

Controls represents a UI element in one of the corners of the map. Implemented by zoom, attribution, scale and layers controls. Can be used to create custom controls by extending L.Control and implementing the onAdd and onRemove methods.

Methods