Merge pull request #30 from rokuz/added-area-border-color
Added border color for areas
This commit is contained in:
commit
8312fed1e7
1 changed files with 4 additions and 0 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Reference in a new issue