Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

L.Layer and L.Evented docs #3097

Closed
wants to merge 7 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove interface references
  • Loading branch information
patrickarlt committed Dec 26, 2014
commit a9458c8afd2dac80efff4466be796b67bf1fa742
10 changes: 5 additions & 5 deletions reference.html
Original file line number Diff line number Diff line change
Expand Up @@ -1772,7 +1772,7 @@ <h3>Methods</h3>

<h2 id="tilelayer">TileLayer</h2>

<p>Used to load and display tile layers on the map, implements <a href="#layer">ILayer</a> interface.</p>
<p>Used to load and display tile layers on the map. Extends <a href="#layer">Layer</a>.</p>

<h3>Usage example</h3>

Expand Down Expand Up @@ -2216,7 +2216,7 @@ <h3>Methods</h3>

<h2 id="imageoverlay">ImageOverlay</h2>

<p>Used to load and display a single image over specific bounds of the map, implements <a href="#layer">ILayer</a> interface.</p>
<p>Used to load and display a single image over specific bounds of the map. Extends <a href="#layer">Layer</a>.</p>

<h3>Usage example</h3>

Expand Down Expand Up @@ -3047,7 +3047,7 @@ <h3>Methods</h3>

<h2 id="layergroup">LayerGroup</h2>

<p>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 <a href="#layer">ILayer</a> interface.</p>
<p>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 <a href="#layer">Layer</a>.</p>

<pre><code class="javascript">L.layerGroup([marker1, marker2])
.addLayer(polyline)
Expand Down Expand Up @@ -3159,7 +3159,7 @@ <h3>Methods</h3>

<h2 id="featuregroup">FeatureGroup</h2>

<p>Extended <a href="#layergroup">layerGroup</a> that also has mouse events (propagated from members of the group) and a shared bindPopup method. Implements <a href="#layer">ILayer</a> interface.</p>
<p>Extended <a href="#layergroup">layerGroup</a> that also has mouse events (propagated from members of the group) and a shared bindPopup method. Extends <a href="#layer">Layer</a>.</p>

<pre><code class="javascript">L.featureGroup([marker1, marker2, polyline])
.bindPopup('Hello world!')
Expand Down Expand Up @@ -6166,7 +6166,7 @@ <h3 id="control-positions">Control Positions</h3>


<h2 id="handler">Handler</h2>
<p>An interface implemented by <a href="#map-interaction-handlers">interaction handlers</a>.</p>
<p>Implemented by <a href="#map-interaction-handlers">map interaction handlers</a>.</p>

<table data-id='handler'>
<tr>
Expand Down