/***************************************************************************** * * 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 * *****************************************************************************/ // mapnik #include #include #include #include namespace mapnik { void draw_rect(image_32 &pixmap, box2d const& box) { int x0 = static_cast(box.minx()); int x1 = static_cast(box.maxx()); int y0 = static_cast(box.miny()); int y1 = static_cast(box.maxy()); unsigned color1 = 0xff0000ff; for (int x=x0; x void agg_renderer::process(debug_symbolizer const& sym, mapnik::feature_impl & feature, proj_transform const& prj_trans) { debug_symbolizer_mode_enum mode = get(sym, keys::mode, feature, common_.vars_, DEBUG_SYM_MODE_COLLISION); if (mode == DEBUG_SYM_MODE_COLLISION) { typename detector_type::query_iterator itr = common_.detector_->begin(); typename detector_type::query_iterator end = common_.detector_->end(); for ( ;itr!=end; ++itr) { draw_rect(pixmap_, itr->box); } } else if (mode == DEBUG_SYM_MODE_VERTEX) { for (auto const& geom : feature.paths()) { double x; double y; double z = 0; geom.rewind(0); unsigned cmd = 1; while ((cmd = geom.vertex(&x, &y)) != mapnik::SEG_END) { if (cmd == SEG_CLOSE) continue; prj_trans.backward(x,y,z); common_.t_.forward(&x,&y); pixmap_.setPixel(x,y,0xff0000ff); pixmap_.setPixel(x-1,y-1,0xff0000ff); pixmap_.setPixel(x+1,y+1,0xff0000ff); pixmap_.setPixel(x-1,y+1,0xff0000ff); pixmap_.setPixel(x+1,y-1,0xff0000ff); } } } } template void agg_renderer::process(debug_symbolizer const&, mapnik::feature_impl &, proj_transform const&); }