From 7a5d7b12cd838f5fe6382fabd5a701dc26122414 Mon Sep 17 00:00:00 2001 From: Erik Krogh Kristensen Date: Mon, 1 Feb 2016 15:29:04 +0100 Subject: [PATCH] Leaflet: MultiPolygon was misspelled as MultiPolylgon. --- leaflet/leaflet.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/leaflet/leaflet.d.ts b/leaflet/leaflet.d.ts index 94e6ab51c..f5c9acaaf 100755 --- a/leaflet/leaflet.d.ts +++ b/leaflet/leaflet.d.ts @@ -2442,7 +2442,7 @@ declare namespace L { options: Map.MapOptions; /** - * Iterates over the layers of the map, optionally specifying context + * Iterates over the layers of the map, optionally specifying context * of the iterator function. */ eachLayer(fn: (layer: ILayer) => void, context?: any): Map; @@ -3058,7 +3058,7 @@ declare namespace L { */ function multiPolygon(latlngs: LatLng[][], options?: PolylineOptions): MultiPolygon; - export interface MultiPolylgonStatic extends ClassStatic { + export interface MultiPolygonStatic extends ClassStatic { /** * Instantiates a multi-polyline object given an array of latlngs arrays (one * for each individual polygon) and optionally an options object (the same @@ -3066,7 +3066,7 @@ declare namespace L { */ new(latlngs: LatLng[][], options?: PolylineOptions): MultiPolygon; } - export var MultiPolylgon: MultiPolylgonStatic; + export var MultiPolygon: MultiPolygonStatic; export interface MultiPolygon extends FeatureGroup { /** @@ -4182,7 +4182,7 @@ declare namespace L { * When this option is set, the TileLayer only loads tiles that are in the given geographical bounds. */ bounds?: LatLngBounds; - + /** * Custom keys may be specified in TileLayerOptions so they can be used in a provided URL template. */