textless icons fix
This commit is contained in:
parent
9f1689339a
commit
e200bfc743
1 changed files with 1 additions and 1 deletions
|
@ -291,7 +291,7 @@ for zoom, zsheet in mapniksheet.iteritems():
|
|||
xml = xml_style_start()
|
||||
for entry in zsheet[zindex]:
|
||||
if entry["type"] in entry_types:
|
||||
if "icon-image" in entry["style"] and "text" not in entry["style"] and entry["style"].get("text-position","center")!='center':
|
||||
if "icon-image" in entry["style"] and ("text" not in entry["style"] or ("text" not in entry["style"] and entry["style"].get("text-position","center")!='center')):
|
||||
xml += xml_rule_start()
|
||||
xml += x_scale
|
||||
xml += xml_filter(entry["rulestring"])
|
||||
|
|
Loading…
Add table
Reference in a new issue