From e494b68abfe60e08ae43d8050e32147385155912 Mon Sep 17 00:00:00 2001 From: Felix Fung Date: Tue, 17 Sep 2013 17:06:48 -0400 Subject: [PATCH] Leaflet FeatureGroup extends LayerGroup From "http://leafletjs.com/reference.html#featuregroup" L.FeatureGroup Extended LayerGroup that also has mouse events (propagated from members of the group) and a shared bindPopup method. Implements ILayer interface. --- leaflet/leaflet.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leaflet/leaflet.d.ts b/leaflet/leaflet.d.ts index 336f51cd9..c2db9a109 100644 --- a/leaflet/leaflet.d.ts +++ b/leaflet/leaflet.d.ts @@ -1449,7 +1449,7 @@ declare module L { } - export class FeatureGroup implements ILayer, IEventPowered { + export class FeatureGroup extends LayerGroup implements ILayer, IEventPowered { /** * Create a layer group, optionally given an initial set of layers. */