From 603c0225571b0058dbc9084d8a10c4ebee942359 Mon Sep 17 00:00:00 2001 From: Kasper Fromm Pedersen Date: Thu, 20 Oct 2016 17:29:27 +0200 Subject: [PATCH] Adding imagePath property I just added the imagePath property to the L.Icon.Default.imagePath (http://leafletjs.com/reference-1.0.0.html#icon-default-option) --- leaflet/leaflet.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/leaflet/leaflet.d.ts b/leaflet/leaflet.d.ts index c67c02e29b..0cdb84d113 100644 --- a/leaflet/leaflet.d.ts +++ b/leaflet/leaflet.d.ts @@ -1343,6 +1343,7 @@ declare namespace L { export interface Icon extends Layer { createIcon(oldIcon?: HTMLElement): HTMLElement; createShadow(oldIcon?: HTMLElement): HTMLElement; + imagePath: string; } export namespace Icon {