2006-10-19 00:44:37 +02:00
|
|
|
/*****************************************************************************
|
2012-02-02 02:53:35 +01:00
|
|
|
*
|
2006-10-19 00:44:37 +02:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2011-10-23 15:04:25 +02:00
|
|
|
* Copyright (C) 2011 Artem Pavlenko
|
2006-10-19 00:44:37 +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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2011-01-13 19:45:40 +01:00
|
|
|
#ifndef MAPNIK_SCALE_DENOMINATOR_HPP
|
|
|
|
#define MAPNIK_SCALE_DENOMINATOR_HPP
|
|
|
|
|
2011-10-23 16:09:47 +02:00
|
|
|
// mapnik
|
2006-11-13 11:13:14 +01:00
|
|
|
#include <mapnik/config.hpp>
|
2006-10-19 00:44:37 +02:00
|
|
|
|
|
|
|
namespace mapnik {
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
class Map;
|
|
|
|
MAPNIK_DECL double scale_denominator(Map const& map, bool geographic);
|
2006-10-19 00:44:37 +02:00
|
|
|
}
|
2011-01-13 19:45:40 +01:00
|
|
|
|
2011-04-01 07:32:25 +02:00
|
|
|
#endif // MAPNIK_SCALE_DENOMINATOR_HPP
|