Skip to content

Commit 2edc5e0

Browse files
committed
Fix marker color bug
1 parent 6e87811 commit 2edc5e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

folium/map.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def __init__(self, color='blue', icon_color='white', icon='info-sign',
220220
warnings.warn('color argument of Icon should be one of: {}.'
221221
.format(self.color_options), stacklevel=2)
222222
self.options = parse_options(
223-
color=color,
223+
marker_color=color,
224224
icon_color=icon_color,
225225
icon=icon,
226226
prefix=prefix,

0 commit comments

Comments
 (0)