Merge pull request #6694 from lediur/patch-1

Allow for custom keys in TileLayerOptions
This commit is contained in:
Basarat Ali Syed
2015-11-15 12:04:46 +11:00
+5
View File
@@ -4176,6 +4176,11 @@ 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.
*/
[additionalKeys: string]: any;
}
}