1 #include "Elementary.h"
4 # include "elementary_config.h"
8 map_module_source_name_get(void)
10 return strdup("test_map");
14 map_module_tile_zoom_min_get(void)
20 map_module_tile_zoom_max_get(void)
26 map_module_tile_url_get(Evas_Object *obj __UNUSED__, int x, int y, int zoom)
29 snprintf(buf, sizeof(buf), "http://tile.openstreetmap.org/%d/%d/%d.png",
35 map_module_route_source_get(void)
41 map_module_route_url_get(Evas_Object *obj __UNUSED__, const char *type_name __UNUSED__, int method __UNUSED__, double flon __UNUSED__, double flat __UNUSED__, double tlon __UNUSED__, double tlat __UNUSED__)
47 map_module_name_url_get(Evas_Object *obj __UNUSED__, int method __UNUSED__, const char *name __UNUSED__, double lon __UNUSED__, double lat __UNUSED__)
53 map_module_tile_geo_to_coord(const Evas_Object *obj __UNUSED__, int zoom __UNUSED__, double lon __UNUSED__, double lat __UNUSED__, int size __UNUSED__, int *x __UNUSED__, int *y __UNUSED__)
59 map_module_tile_coord_to_geo(const Evas_Object *obj __UNUSED__, int zoom __UNUSED__, int x __UNUSED__, int y __UNUSED__, int size __UNUSED__, double *lon __UNUSED__, double *lat __UNUSED__)
71 _module_shutdown(void)
75 EINA_MODULE_INIT(_module_init);
76 EINA_MODULE_SHUTDOWN(_module_shutdown);