File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -342,6 +342,7 @@ def build_circle_dict(
342342 stroke_weight = 2 ,
343343 fill_color = "#FF0000" ,
344344 fill_opacity = 0.3 ,
345+ clickable = True
345346 ):
346347 """ Set a dictionary with the javascript class Circle parameters
347348
@@ -371,6 +372,7 @@ def build_circle_dict(
371372 "fill_opacity" : fill_opacity ,
372373 "center" : {"lat" : center_lat , "lng" : center_lng },
373374 "radius" : radius ,
375+ "clickable" : clickable
374376 }
375377
376378 return circle
Original file line number Diff line number Diff line change 130130 lat : raw_circles [ i ] . center . lat ,
131131 lng : raw_circles [ i ] . center . lng ,
132132 } ,
133- radius : raw_circles [ i ] . radius
133+ radius : raw_circles [ i ] . radius ,
134+ clickable : raw_circles [ i ] . clickable
134135 } ) ;
135136
136137 if ( raw_circles [ i ] . infobox )
You can’t perform that action at this time.
0 commit comments