]> git.street.me.uk Git - andy/viking.git/blame - src/mapnik_interface.h
Carto CSS support to generate Mapnik XML.
[andy/viking.git] / src / mapnik_interface.h
CommitLineData
5fa4fe86
RN
1/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2/*
3 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
4 *
5 * Copyright (C) 2015, Rob Norris <rw_norris@hotmail.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22#ifndef __VIKING_MAPNIK_IF_H
23#define __VIKING_MAPNIK_IF_H
24
25#ifdef __cplusplus
26extern "C" {
27#endif
28
29#include <gdk-pixbuf/gdk-pixbuf.h>
30
0658c2f1 31typedef struct _MapnikInterface MapnikInterface;
5fa4fe86 32
0658c2f1
RN
33void mapnik_interface_initialize (const char *plugins_dir, const char* font_dir, int font_dir_recurse);
34
35MapnikInterface* mapnik_interface_new ();
36void mapnik_interface_free (MapnikInterface* mi);
37
38int mapnik_interface_load_map_file ( MapnikInterface* mi,
39 const gchar *filename,
5fa4fe86
RN
40 guint width,
41 guint height );
42
0658c2f1 43GdkPixbuf* mapnik_interface_render ( MapnikInterface* mi, double lat_tl, double lon_tl, double lat_br, double lon_br );
5fa4fe86
RN
44
45#ifdef __cplusplus
46}
47#endif
48
49#endif