2 * @defgroup Route Route
5 * For displaying a route on the map widget.
11 * Add a new route object to the parent's canvas
13 * @param parent The parent object
14 * @return The new object or NULL if it cannot be created
18 EAPI Evas_Object *elm_route_add(Evas_Object *parent);
21 EAPI void elm_route_emap_set(Evas_Object *obj, EMap_Route *emap);
25 * Get the minimum and maximum values along the longitude.
27 * @param obj The route object.
28 * @param min Pointer to store the minimum value.
29 * @param max Pointer to store the maximum value.
31 * @note If only one value is needed, the other pointer can be passed
36 EAPI void elm_route_longitude_min_max_get(const Evas_Object *obj, double *min, double *max);
39 * Get the minimum and maximum values along the latitude.
41 * @param obj The route object.
42 * @param min Pointer to store the minimum value.
43 * @param max Pointer to store the maximum value.
45 * @note If only one value is needed, the other pointer can be passed
50 EAPI void elm_route_latitude_min_max_get(const Evas_Object *obj, double *min, double *max);