mapnik/plugins/input/osm/render.cpp

76 lines
2.4 KiB
C++
Raw Normal View History

2011-10-22 16:04:05 +02:00
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2011 Artem Pavlenko
*
* 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
*
*****************************************************************************/
// stl
#include <iostream>
#include <cmath>
// mapnik
2008-03-01 12:49:37 +01:00
#include <mapnik/map.hpp>
#include <mapnik/layer.hpp>
2009-12-16 21:02:06 +01:00
#include <mapnik/box2d.hpp>
2008-03-01 12:49:37 +01:00
#include <mapnik/agg_renderer.hpp>
#include <mapnik/image_util.hpp>
#include <mapnik/load_map.hpp>
#include <mapnik/datasource_cache.hpp>
#include <mapnik/font_engine_freetype.hpp>
#include <mapnik/projection.hpp>
2008-03-06 22:04:47 +01:00
int main(int argc,char *argv[])
2008-03-01 12:49:37 +01:00
{
2011-10-22 16:04:05 +02:00
if (argc < 6)
{
std::cerr << "Usage: render XMLfile w s e n [OSMfile]" << std::endl;
exit(0);
}
mapnik::datasource_cache::instance().register_datasources("/usr/local/lib/mapnik/input");
2011-10-22 16:04:05 +02:00
mapnik::freetype_engine::register_font("/usr/local/lib/mapnik/fonts/DejaVuSans.ttf");
mapnik::Map m(800, 800);
mapnik::load_map(m, argv[1]);
2011-10-22 16:04:05 +02:00
if (argc > 6)
2011-04-02 05:45:50 +02:00
{
2011-10-22 16:04:05 +02:00
mapnik::parameters p;
p["type"] = "osm";
p["file"] = argv[6];
for (int count = 0; count < m.layer_count(); count++)
{
mapnik::parameters q = m.get_layer(count).datasource()->params();
m.get_layer(count).set_datasource(mapnik::datasource_cache::instance().create(p));
2011-10-22 16:04:05 +02:00
}
2011-04-02 05:45:50 +02:00
}
2011-10-22 16:04:05 +02:00
mapnik::box2d<double> bbox (atof(argv[2]), atof(argv[3]), atof(argv[4]), atof(argv[5]));
2011-10-22 16:04:05 +02:00
m.zoom_to_box(bbox);
2011-04-02 05:45:50 +02:00
2011-10-22 16:04:05 +02:00
mapnik::image_32 buf (m.width(), m.height());
mapnik::agg_renderer<mapnik::image_32> r(m, buf);
r.apply();
2011-04-02 05:45:50 +02:00
2011-10-22 16:04:05 +02:00
mapnik::save_to_file<mapnik::image_data_32>(buf.data(), "blah.png", "png");
2011-04-02 05:45:50 +02:00
2011-10-22 16:04:05 +02:00
return 0;
2008-03-01 12:49:37 +01:00
}