Skip to content

Commit 4cd4461

Browse files
authored
Merge pull request #1108 from Conengmo/fix-marker-color
Fix marker color bug
2 parents 6e87811 + 2edc5e0 commit 4cd4461

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)