]> git.street.me.uk Git - andy/viking.git/blob - src/mapnik_interface.h
Really empty GPS realtime layers.
[andy/viking.git] / src / mapnik_interface.h
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
26 extern "C" {
27 #endif
28
29 #include <glib.h>
30 #include <gdk-pixbuf/gdk-pixbuf.h>
31
32 typedef struct _MapnikInterface MapnikInterface;
33
34 void mapnik_interface_initialize (const char *plugins_dir, const char* font_dir, int font_dir_recurse);
35
36 MapnikInterface* mapnik_interface_new ();
37 void mapnik_interface_free (MapnikInterface* mi);
38
39 gchar* mapnik_interface_load_map_file ( MapnikInterface* mi,
40                                         const gchar *filename,
41                                         guint width,
42                                         guint height );
43
44 GdkPixbuf* mapnik_interface_render ( MapnikInterface* mi, double lat_tl, double lon_tl, double lat_br, double lon_br );
45
46 gchar* mapnik_interface_get_copyright ( MapnikInterface* mi );
47
48 GArray* mapnik_interface_get_parameters ( MapnikInterface* mi );
49
50 gchar * mapnik_interface_about ( void );
51
52 #ifdef __cplusplus
53 }
54 #endif
55
56 #endif