This commit is contained in:
Komzpa 2012-06-05 22:46:57 +03:00
parent d06e727110
commit d3a1fc2123

View file

@ -678,13 +678,11 @@ if options.renderer == "mapnik":
height=entry["style"].get("icon-height", ""),
opacity=relaxedFloat(entry["style"].get("opacity", "1")))
if ("text" in entry["style"] and entry["style"].get("text-position","center")=='center'):
ttext = entry["style"]["text"].extract_tags().pop()
sql.add("(("+entry["sql"]+") and "+columnmap.get(ttext, (escape_sql_column(ttext),))[0] + " is NULL)")
sql.add("(("+entry["sql"]+") and "+columnmap.get(ttext, (ttext,))[0] + " is NULL)")
itags.update((escape_sql_column(ttext),))
if ttext in columnmap:
itags.update((columnmap[ttext][1],))
itags.update(columnmap[ttext][1])
else:
sql.add(entry["sql"])