2013-09-30 15:14:58 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2017-05-05 13:02:01 +02:00
|
|
|
* Copyright (C) 2017 Artem Pavlenko
|
2013-09-30 15:14:58 +02:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
// mapnik
|
2013-10-11 13:34:15 +02:00
|
|
|
#include <mapnik/json/topology.hpp>
|
2016-03-17 14:36:53 +01:00
|
|
|
#include <mapnik/json/topojson_utils.hpp>
|
2013-09-30 15:14:58 +02:00
|
|
|
// stl
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <fstream>
|
2014-10-22 01:37:27 +02:00
|
|
|
|
|
|
|
#pragma GCC diagnostic push
|
2015-11-08 02:53:09 +01:00
|
|
|
#include <mapnik/warning_ignore.hpp>
|
2013-10-02 16:14:27 +02:00
|
|
|
#include <boost/range/adaptor/reversed.hpp>
|
2014-10-22 01:37:27 +02:00
|
|
|
#pragma GCC diagnostic pop
|
2013-10-11 13:34:15 +02:00
|
|
|
|
2013-09-30 15:14:58 +02:00
|
|
|
#include "topojson_featureset.hpp"
|
|
|
|
|
|
|
|
topojson_featureset::topojson_featureset(mapnik::topojson::topology const& topo,
|
2013-10-03 18:12:33 +02:00
|
|
|
mapnik::transcoder const& tr,
|
2014-08-19 23:48:21 +02:00
|
|
|
array_type && index_array)
|
2013-10-02 16:14:27 +02:00
|
|
|
: ctx_(std::make_shared<mapnik::context_type>()),
|
|
|
|
topo_(topo),
|
2013-10-03 18:12:33 +02:00
|
|
|
tr_(tr),
|
2013-10-23 16:01:29 +02:00
|
|
|
index_array_(std::move(index_array)),
|
|
|
|
index_itr_(index_array_.begin()),
|
|
|
|
index_end_(index_array_.end()),
|
2015-05-09 15:07:16 +02:00
|
|
|
feature_id_(1) {}
|
2013-09-30 15:14:58 +02:00
|
|
|
|
|
|
|
topojson_featureset::~topojson_featureset() {}
|
|
|
|
|
|
|
|
mapnik::feature_ptr topojson_featureset::next()
|
|
|
|
{
|
|
|
|
if (index_itr_ != index_end_)
|
|
|
|
{
|
2014-08-19 23:48:21 +02:00
|
|
|
topojson_datasource::item_type const& item = *index_itr_++;
|
|
|
|
std::size_t index = item.second;
|
2013-09-30 15:14:58 +02:00
|
|
|
if ( index < topo_.geometries.size())
|
|
|
|
{
|
2013-10-01 20:17:07 +02:00
|
|
|
mapnik::topojson::geometry const& geom = topo_.geometries[index];
|
2014-08-12 17:16:17 +02:00
|
|
|
mapnik::feature_ptr feature = mapnik::util::apply_visitor(
|
2013-10-03 18:12:33 +02:00
|
|
|
mapnik::topojson::feature_generator<mapnik::context_ptr>(ctx_, tr_, topo_, feature_id_++),
|
2013-10-02 16:14:27 +02:00
|
|
|
geom);
|
|
|
|
return feature;
|
2013-09-30 15:14:58 +02:00
|
|
|
}
|
|
|
|
}
|
2013-10-02 16:14:27 +02:00
|
|
|
|
2013-09-30 15:14:58 +02:00
|
|
|
return mapnik::feature_ptr();
|
|
|
|
}
|