blob: 4560ed0b1a4e8e1439528934f7108a34dc8da6e6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#include <gtk/gtk.h>
#include <glib.h>
#include <libebook/e-book.h>
#include <libebook/e-contact.h>
#include <geoclue/geoclue-geocode.h>
#include <champlain/champlain.h>
#include <champlain-gtk/champlain-gtk.h>
#include <clutter-gtk/clutter-gtk.h>
void
get_min_max (gdouble *min_lat, gdouble *max_lat,
gdouble *min_lng, gdouble *max_lng,
gdouble lat, gdouble lng);
GeoclueGeocode *get_geocoder (void);
void add_marker (
ChamplainLayer *layer,
gdouble lat, gdouble lng,
EContact *contact);
GHashTable *get_geoclue_from_address (const EContactAddress* addr);
void init_map (ChamplainView **view, GtkWidget **widget);
void create_map_window (GtkWidget *map_widget, const gchar *title);
|