Merge pull request #30 from rokuz/added-area-border-color

Added border color for areas
This commit is contained in:
Ilya Zverev 2017-02-14 12:56:02 +04:00 committed by GitHub
commit 8312fed1e7

View file

@ -345,6 +345,10 @@ def komap_mapswithme(options):
dr_line.join = dr_linejoins.get(st.get('casing-linejoin', 'round'), ROUNDJOIN)
dr_element.lines.extend([dr_line])
if ('fill-color' in st) and (float(st.get('fill-opacity', 1)) > 0):
dr_element.area.border.color = mwm_encode_color(colors, st, "casing")
dr_element.area.border.width = st.get('casing-width', 0) * WIDTH_SCALE
# Let's try without this additional line style overhead. Needed only for casing in road endings.
# if st.get('casing-linecap', st.get('linecap', 'round')) != 'butt':
# dr_line = LineRuleProto()