From 22d18908f72fe750986a874c4bae59634bed41d7 Mon Sep 17 00:00:00 2001 From: Kevin Visscher Date: Tue, 12 Apr 2016 16:21:16 +0200 Subject: [PATCH] Add option that can be set for CircleMarker (#8912) --- leaflet/leaflet.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/leaflet/leaflet.d.ts b/leaflet/leaflet.d.ts index 6c487c3eb..37abb90fb 100644 --- a/leaflet/leaflet.d.ts +++ b/leaflet/leaflet.d.ts @@ -3383,6 +3383,11 @@ declare namespace L { */ className?: string; + /** + * Sets the radius of a circle marker. + */ + radius?: number; + } }