Skip to content

Commit bd5137a

Browse files
committed
add support for comp-op and scaling_method (ref https://github.com/mapnik/mapnik/issue/4045 mapnik/mapnik#4066)
1 parent c7a6c10 commit bd5137a

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/mapnik_symbolizer.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,12 @@ struct value_to_target
8787
case mapnik::property_types::target_double:
8888
put(sym_, key, static_cast<mapnik::value_double>(val));
8989
break;
90+
case mapnik::property_types::target_comp_op:
91+
case mapnik::property_types::target_scaling_method:
92+
{
93+
put(sym_, key, mapnik::enumeration_wrapper(val));
94+
break;
95+
}
9096
default:
9197
put(sym_, key, val);
9298
break;

0 commit comments

Comments
 (0)