]> git.street.me.uk Git - andy/viking.git/blame - src/mapnik_interface.h
[DOC] Switch from ordered list to a itemitized list.
[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
581feeec 29#include <glib.h>
5fa4fe86
RN
30#include <gdk-pixbuf/gdk-pixbuf.h>
31
0658c2f1 32typedef struct _MapnikInterface MapnikInterface;
5fa4fe86 33
0658c2f1
RN
34void mapnik_interface_initialize (const char *plugins_dir, const char* font_dir, int font_dir_recurse);
35
36MapnikInterface* mapnik_interface_new ();
37void mapnik_interface_free (MapnikInterface* mi);
38
76bb97a4
RN
39gchar* mapnik_interface_load_map_file ( MapnikInterface* mi,
40 const gchar *filename,
41 guint width,
42 guint height );
5fa4fe86 43
0658c2f1 44GdkPixbuf* mapnik_interface_render ( MapnikInterface* mi, double lat_tl, double lon_tl, double lat_br, double lon_br );
5fa4fe86 45
465559f1
RN
46gchar* mapnik_interface_get_copyright ( MapnikInterface* mi );
47
581feeec
RN
48GArray* mapnik_interface_get_parameters ( MapnikInterface* mi );
49
c064c64c
RN
50gchar * mapnik_interface_about ( void );
51
5fa4fe86
RN
52#ifdef __cplusplus
53}
54#endif
55
56#endif