== topojson ==
+ use boost::variant<> for storing properties + parse properties as top level key/value pairs
This commit is contained in:
parent
ac8ececf1c
commit
11fabe0fcb
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ struct feature_generator : public boost::static_visitor<mapnik::feature_ptr>
|
||||||
{
|
{
|
||||||
for (auto const& p : *poly.props)
|
for (auto const& p : *poly.props)
|
||||||
{
|
{
|
||||||
feature->put_new(std::get<0>(p), mapnik::value(1LL)/*std::get<1>(p)*/);
|
feature->put_new(std::get<0>(p), mapnik::value(1LL)/*std::get<1>(p)*/); // TODO
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return feature;
|
return feature;
|
||||||
|
|
Loading…
Reference in a new issue