Merge pull request #864 from michaelgmiller/master

Add icon defaults to leaflet.
This commit is contained in:
Boris Yankov
2013-08-16 08:01:18 -07:00
+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 {