Add icon defaults to leaflet.

This commit is contained in:
Michael Miller
2013-08-15 13:11:29 -04:00
parent 8220ab27e7
commit 3ac74fcfda
+8
View File
@@ -1898,12 +1898,20 @@ declare module L {
}
interface IconDefaults {
imagePath: string;
}
export class Icon {
/**
* Creates an icon instance with the given options.
*/
constructor(options: IconOptions);
/**
* Default properties for newly constructed icons.
*/
public static Default : IconDefaults;
}
export interface DivIconOptions {