Skip to content
Snippets Groups Projects
Commit a0c66726 authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

ENH: add support for filter in parser

parent c34340e4
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,9 @@ def start_element(name, attrs):
fout.write("{\nmapnik::feature_type_style style;\n")
if (name == 'Rule'):
fout.write("{\nmapnik::rule_type rule;\n")
if (name == 'Filter'):
fout.write("mapnik::filter_ptr filt = mapnik::create_filter(\"")
writeNextCharData=1
if (name == 'MaxScaleDenominator'):
fout.write("rule.set_max_scale(")
writeNextCharData=1
......@@ -53,6 +56,10 @@ def end_element(name):
currentStyleName = ""
if (name == 'Rule'):
fout.write("style.add_rule(rule);\n}\n")
if (name == 'Filter'):
fout.write("\");\n")
fout.write("rule.set_filter(filt);\n")
writeNextCharData=0
if (name == 'MaxScaleDenominator'):
fout.write("LLU);\n");
writeNextCharData=0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment