Add @deprecated comments 65/291565/1
authorRajarajeswari Palacharla/Convergence S/W Group /SRI-Delhi/Engineer/Samsung Electronics <r.palacharla@samsung.com>
Tue, 18 Apr 2023 09:54:37 +0000 (15:24 +0530)
committerRajarajeswari Palacharla/Convergence S/W Group /SRI-Delhi/Engineer/Samsung Electronics <r.palacharla@samsung.com>
Tue, 18 Apr 2023 09:54:37 +0000 (15:24 +0530)
Change-Id: I58903bb8a67926a2e465c895697edd96dde8f1c6

51 files changed:
include/maps_address.h
include/maps_area.h
include/maps_coordinates.h
include/maps_error.h
include/maps_extra_types.h
include/maps_place.h
include/maps_place_attribute.h
include/maps_place_attribute_plugin.h
include/maps_place_category.h
include/maps_place_contact.h
include/maps_place_contact_plugin.h
include/maps_place_editorial.h
include/maps_place_editorial_plugin.h
include/maps_place_filter.h
include/maps_place_image.h
include/maps_place_image_plugin.h
include/maps_place_link_object.h
include/maps_place_link_object_plugin.h
include/maps_place_media.h
include/maps_place_media_plugin.h
include/maps_place_plugin.h
include/maps_place_rating.h
include/maps_place_rating_plugin.h
include/maps_place_review.h
include/maps_place_review_plugin.h
include/maps_place_url.h
include/maps_place_url_plugin.h
include/maps_plugin.h
include/maps_plugin_info.h
include/maps_plugin_types.h
include/maps_preference.h
include/maps_route.h
include/maps_route_maneuver.h
include/maps_route_maneuver_plugin.h
include/maps_route_plugin.h
include/maps_route_segment.h
include/maps_route_segment_plugin.h
include/maps_service.h
include/maps_service_internal.h
include/maps_types.h
include/maps_view.h
include/maps_view_event_data.h
include/maps_view_object.h
include/maps_view_object_plugin.h
include/maps_view_plugin.h
include/maps_view_snapshot.h
src/api/maps_condition.h
src/api/maps_place_private.h
src/api/maps_route_private.h
src/api/maps_route_segment_private.h
src/maps_util.h

index 2a38310..8d1e90f 100644 (file)
@@ -20,6 +20,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @defgroup CAPI_MAPS_ADDRESS_MODULE Address
  * @file maps_address.h
@@ -36,6 +37,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The address handle.
  * @details The address handle can be obtained via calling of maps_address_create().
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -44,6 +46,7 @@ typedef void *maps_address_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The address list handle.
  * @details The address list handle can be obtained via calling of maps_address_list_create().
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -55,6 +58,7 @@ typedef void *maps_address_list_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new address handle.
  * @details This function creates a new address handle and allocates all needed resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -74,6 +78,7 @@ int maps_address_create(maps_address_h *address);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the address handle and releases all its resources.
  * @details This function destroys the address handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -91,6 +96,7 @@ int maps_address_destroy(maps_address_h address);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the address handle.
  * @details This function clones the address handle @a origin and all its resources.\n
  *          Address handle @a origin may be created using maps_address_create().
@@ -115,6 +121,7 @@ int maps_address_clone(const maps_address_h origin, maps_address_h *cloned);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the building number of the address handle.
  * @details This function gets the building number of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -134,6 +141,7 @@ int maps_address_get_building_number(const maps_address_h address, char **buildi
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the street name of the address handle.
  * @details This function gets the street name of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -153,6 +161,7 @@ int maps_address_get_street(const maps_address_h address, char **street);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the district name of the address handle.
  * @details This function gets the district name of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -172,6 +181,7 @@ int maps_address_get_district(const maps_address_h address, char **district);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the city name of the address handle.
  * @details This function gets the city name of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -191,6 +201,7 @@ int maps_address_get_city(const maps_address_h address, char **city);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the state name of the address handle.
  * @details This function gets the state name of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -210,6 +221,7 @@ int maps_address_get_state(const maps_address_h address, char **state);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the country name of the address handle.
  * @details This function gets the country name of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -229,6 +241,7 @@ int maps_address_get_country(const maps_address_h address, char **country);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the country code of the address handle.
  * @details This function gets the country code of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -248,6 +261,7 @@ int maps_address_get_country_code(const maps_address_h address, char **country_c
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the county of the address handle.
  * @details This function gets the county of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -267,6 +281,7 @@ int maps_address_get_county(const maps_address_h address, char **county);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the postal code of the address handle.
  * @details This function gets the postal code of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -286,6 +301,7 @@ int maps_address_get_postal_code(const maps_address_h address, char **postal_cod
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the free text of the address handle.
  * @details This function gets the free text of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -308,6 +324,7 @@ int maps_address_get_freetext(const maps_address_h address, char **freetext);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the building number of the address handle.
  * @details This function sets the building number of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -325,6 +342,7 @@ int maps_address_set_building_number(maps_address_h address, const char *buildin
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the street name of the address handle.
  * @details This function sets the street name of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -343,6 +361,7 @@ int maps_address_set_street(maps_address_h address, const char *street);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the district name of the address handle.
  * @details This function sets the district name of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -361,6 +380,7 @@ int maps_address_set_district(maps_address_h address, const char *district);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the city name of the address handle.
  * @details This function sets the city name of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -379,6 +399,7 @@ int maps_address_set_city(maps_address_h address, const char *city);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the state name of the address handle.
  * @details This function sets the state name of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -397,6 +418,7 @@ int maps_address_set_state(maps_address_h address, const char *state);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the country name of the address handle.
  * @details This function sets the country name of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -415,6 +437,7 @@ int maps_address_set_country(maps_address_h address, const char *country);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the country code of the address handle.
  * @details This function sets the country code of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -433,6 +456,7 @@ int maps_address_set_country_code(maps_address_h address, const char *country_co
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the county of the address handle.
  * @details This function sets the county of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -451,6 +475,7 @@ int maps_address_set_county(maps_address_h address, const char *county);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the postal code of the address handle.
  * @details This function sets the postal code of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -469,6 +494,7 @@ int maps_address_set_postal_code(maps_address_h address, const char *postal_code
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the free text of the address handle.
  * @details This function sets the free text of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -487,6 +513,7 @@ int maps_address_set_freetext(maps_address_h address, const char *freetext);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates an address list having a set of addresses.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[out] address_list The address list handle
@@ -502,6 +529,7 @@ int maps_address_list_create(maps_address_list_h *address_list);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Appends an address to an address list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @remarks Don't release @a address before removed from the list using maps_address_list_remove().
@@ -521,6 +549,7 @@ int maps_address_list_append(maps_address_list_h address_list, maps_address_h ad
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Removes an address from an address list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @remarks @a address is just excepted from the list.\n
@@ -540,6 +569,7 @@ int maps_address_list_remove(maps_address_list_h address_list, maps_address_h ad
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the number of elements in an address list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] address_list The address list handle
@@ -556,6 +586,7 @@ int maps_address_list_get_length(maps_address_list_h address_list, int *length);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called iteratively to get address information.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] index The index of iteration
@@ -570,6 +601,7 @@ typedef bool (*maps_address_cb)(int index, maps_address_h address, void *user_da
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Retrieves all addresses by invoking a specific callback for each address of address list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] address_list The address list handle
@@ -588,6 +620,7 @@ int maps_address_list_foreach(maps_address_list_h address_list, maps_address_cb
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Frees all of the memory used by an address list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] address_list The address list handle
index 8b058d3..f5e6206 100644 (file)
@@ -23,6 +23,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @defgroup CAPI_MAPS_GEOAREA_MODULE Area
  * @file maps_area.h
@@ -39,6 +40,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Handle of the Geographical Area.
  * @details The Geographical Area handle can be obtained via call of maps_area_create_rectangle() or maps_area_create_circle().\n
  *          To release the handle use maps_area_destroy().\n
@@ -53,6 +55,7 @@ typedef void *maps_area_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumeration for supported types of the Geographical Area.
  * @details This enumeration represents allowed geographical type of Geographical Area: rectangular and circular.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -65,6 +68,7 @@ typedef enum {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Structure of the rectangular Geographical Area.
  * @details This structure represents a rectangular Geographical Area, specified with left top and right bottom coordinates.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -77,6 +81,7 @@ typedef struct _maps_area_rectangle_s {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Structure of the circular Geographical Area, specified with a center coordinates and a radius.
  * @details This structure represents a circular Geographical Area.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -89,6 +94,7 @@ typedef struct _maps_area_circle_s {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Structure of the Geographical Area.
  * @details This structure represents a Geographical Area, specified with a type, circular or rectangular, and appropriate coordinates and radius.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -105,6 +111,7 @@ typedef struct _maps_area_s {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a rectangular type of new Geographical Area with a specified information.
  * @details This function creates a rectangular type of new #maps_area_h with a specified left top and right bottom coordinates.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -131,6 +138,7 @@ int maps_area_create_rectangle(const maps_coordinates_h top_left, const maps_coo
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a circular type of new Geographical Area with a specified information.
  * @details This function creates a circular type of new #maps_area_h Geographical Area with a specified center coordinates and a radius.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -160,6 +168,7 @@ int maps_area_create_circle(const maps_coordinates_h center, const double radius
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the Geographical Area and releases all its resources.
  * @details This function destroys the Geographical Area #maps_area_h and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -178,6 +187,7 @@ int maps_area_destroy(maps_area_h area);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the Geographical Area.
  * @details This function makes a clone of the @a origin Geographical Area of type #maps_area_h.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index d7db0b1..4f46b34 100644 (file)
@@ -23,6 +23,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @defgroup CAPI_MAPS_COORDS_MODULE Coordinates
  * @file maps_coordinates.h
@@ -39,6 +40,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Handle of the Geographical Coordinates.
  * @details The Geographical Coordinates handle can be obtained via call of maps_coordinates_create().
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -49,6 +51,7 @@ typedef void *maps_coordinates_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Structure of the Geographical Coordinates.
  * @details This structure represents a Geographical Coordinates, specified with a @a latitude and @a longitude values.\n
  *          The @a latitude must be in range of [-90.0, 90.0].\n
@@ -66,6 +69,7 @@ typedef struct _maps_coordinates_s {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The coordinates list handle.
  * @details The coordinates list handle can be obtained via calling of maps_coordinates_list_create().
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -77,6 +81,7 @@ typedef void *maps_coordinates_list_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new instance of Geographical Coordinates and initiates a handle with it.
  * @details This function creates @a coordinates, a new instance of Geographical Coordinates of type #maps_coordinates_h with a specified @a latitude and @a longitude.\n
  *          New handle is assigned with this instance.
@@ -99,6 +104,7 @@ int maps_coordinates_create(const double latitude, const double longitude, maps_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the Geographical Coordinates and releases all its resources.
  * @details This function destroys the Geographical Coordinates #maps_coordinates_h and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -116,6 +122,7 @@ int maps_coordinates_destroy(maps_coordinates_h coordinates);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the Geographical Coordinates.
  * @details This function makes a clone of the @a origin Geographical Coordinates of type #maps_coordinates_h.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -139,6 +146,7 @@ int maps_coordinates_clone(const maps_coordinates_h origin, maps_coordinates_h *
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the latitude of the coordinates.
  * @details This function gets the @a latitude value of the coordinates handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -157,6 +165,7 @@ int maps_coordinates_get_latitude(const maps_coordinates_h coordinates, double *
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the longitude of the coordinates.
  * @details This function gets the @a longitude value of the coordinates handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -175,6 +184,7 @@ int maps_coordinates_get_longitude(const maps_coordinates_h coordinates, double
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the latitude and longitude of the coordinates.
  * @details This function gets the @a longitude and @a longitude value of the coordinates handle.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -197,6 +207,7 @@ int maps_coordinates_get_latitude_longitude(const maps_coordinates_h coordinates
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the latitude of the coordinates.
  * @details This function sets the @a latitude value of the coordinates handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -215,6 +226,7 @@ int maps_coordinates_set_latitude(maps_coordinates_h coordinates, const double l
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the longitude of the coordinates.
  * @details This function sets the @a longitude value of the coordinates handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -233,6 +245,7 @@ int maps_coordinates_set_longitude(maps_coordinates_h coordinates, const double
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the latitude and longitude of the coordinates.
  * @details This function sets the @a latitude and @a latitude value of the coordinates handle.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -252,6 +265,7 @@ int maps_coordinates_set_latitude_longitude(maps_coordinates_h coordinates, cons
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a coordinates list having a set of coordinates.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[out] coordinates_list The coordinates list handle
@@ -267,6 +281,7 @@ int maps_coordinates_list_create(maps_coordinates_list_h *coordinates_list);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Frees all of the memory used by a coordinates list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] coordinates_list The coordinates list handle
@@ -279,6 +294,7 @@ int maps_coordinates_list_destroy(maps_coordinates_list_h coordinates_list);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Appends a coordinates to a coordinates list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] coordinates_list The coordinates list handle
@@ -296,6 +312,7 @@ int maps_coordinates_list_append(maps_coordinates_list_h coordinates_list, maps_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Removes a coordinates from a coordinates list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] coordinates_list The coordinates list handle
@@ -312,6 +329,7 @@ int maps_coordinates_list_remove(maps_coordinates_list_h coordinates_list, maps_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the number of elements in a coordinates list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] coordinates_list The coordinates list handle
@@ -328,6 +346,7 @@ int maps_coordinates_list_get_length(maps_coordinates_list_h coordinates_list, i
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called iteratively to get a coordinates information.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] index The index of iteration
@@ -340,6 +359,7 @@ typedef bool (*maps_coordinates_cb) (int index, maps_coordinates_h coordinates,
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Retrieves all coordinates by invoking a specific callback for each coordinates of coordinates list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] coordinates_list The coordinates list handle
index 1f56320..8f2c4b6 100644 (file)
@@ -24,6 +24,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @file maps_error.h
  * @brief This file contains the list of errors of Maps API.
@@ -39,6 +40,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumeration for error codes for Maps Service and Plug-ins.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
index a5d1067..975dc6f 100644 (file)
@@ -20,6 +20,7 @@
 #include <tizen_type.h>
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_AND_PROVIDERS_MODULE
  * @defgroup CAPI_MAPS_CONTAINERS_MODULE Container Data Types
  *
@@ -37,6 +38,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_CONTAINERS_MODULE
  * @defgroup CAPI_MAPS_CONTAINERS_MODULE_ITEM_LIST Maps Item Lists
  *
@@ -49,6 +51,7 @@ extern "C" {
  */
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Item List handle.
  * @details The Item List handle can be obtained via call of
  * maps_item_list_create().
@@ -66,6 +69,7 @@ extern "C" {
 typedef void *maps_item_list_h;
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new list of item pointers.
  * @details This function creates a new instance of item pointer list, associate
  * a new handle with it and allocates all needed resources.
@@ -86,6 +90,7 @@ typedef void *maps_item_list_h;
 int maps_item_list_create(maps_item_list_h *list);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the list handle and releases all its resources.
  * @details This function destroys the list handle and releases all its
  * resources.
@@ -105,6 +110,7 @@ int maps_item_list_create(maps_item_list_h *list);
 int maps_item_list_destroy(maps_item_list_h list);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clone function, making a copy of a list item.
  * @details This function is called once for each item of the given list while
  * the list is being cloned during the maps_item_list_clone() procedure.
@@ -126,6 +132,7 @@ int maps_item_list_destroy(maps_item_list_h list);
 typedef int (*maps_item_list_clone_cb) (void *origin, void **cloned);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the list of item pointers.
  * @details This function clones the list of item pointers @a origin and all its
  * resources.
@@ -152,6 +159,7 @@ typedef int (*maps_item_list_clone_cb) (void *origin, void **cloned);
 int maps_item_list_clone(const maps_item_list_h origin, maps_item_list_clone_cb clone_func, maps_item_list_h *cloned);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Appends an item to the list.
  * @details This function appends an item @a data to the list of item pointers
  * @a list.
@@ -175,6 +183,7 @@ int maps_item_list_clone(const maps_item_list_h origin, maps_item_list_clone_cb
 int maps_item_list_append(maps_item_list_h list, const void *data, maps_item_list_clone_cb clone_func);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called once for each item while iterating through the given
  * list.
  * @details This function is called once for each item of the given list while
@@ -198,6 +207,7 @@ int maps_item_list_append(maps_item_list_h list, const void *data, maps_item_lis
 typedef bool(*maps_item_list_foreach_cb) (int index, int total, void *data, void *user_data);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the items of the specified list.
  * @details This function delivers items of a specified list via
  * maps_item_list_foreach_cb() callback.
@@ -226,6 +236,7 @@ typedef bool(*maps_item_list_foreach_cb) (int index, int total, void *data, void
 int maps_item_list_foreach(maps_item_list_h list, maps_item_list_clone_cb clone_func, maps_item_list_foreach_cb callback, void *user_data);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Free function, destroying a list item.
  * @details This function is called once for each item of the given list while
  * the list is being destroyed
@@ -246,6 +257,7 @@ int maps_item_list_foreach(maps_item_list_h list, maps_item_list_clone_cb clone_
 typedef int (*maps_item_list_free_cb) (void *data);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Removes and destroys list item.
  * @details This function removes the given items from the @a list and releases
  * resources, assigned with it.
@@ -272,6 +284,7 @@ typedef int (*maps_item_list_free_cb) (void *data);
 int maps_item_list_remove(maps_item_list_h list, void *item, maps_item_list_free_cb free_func);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Removes and destroys all list items.
  * @details This function removes all items of the @a list and releases
  * resources, assigned with them.
@@ -296,6 +309,7 @@ int maps_item_list_remove(maps_item_list_h list, void *item, maps_item_list_free
 int maps_item_list_remove_all(maps_item_list_h list, maps_item_list_free_cb free_func);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called once for each item while iterating through the given list.
  * @details This function is called once for each item of the given list while
  * the list is being iterated during the maps_item_list_foreach_noclone() procedure.
@@ -313,6 +327,7 @@ int maps_item_list_remove_all(maps_item_list_h list, maps_item_list_free_cb free
 typedef bool(*maps_item_list_foreach_noclone_cb) (int index, void *data, void *user_data);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the items of the specified list.
  * @details This function delivers items of a specified list via maps_item_list_foreach_noclone_cb() callback.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -339,6 +354,7 @@ typedef bool(*maps_item_list_foreach_noclone_cb) (int index, void *data, void *u
 int maps_item_list_foreach_noclone(maps_item_list_h list, maps_item_list_foreach_noclone_cb callback, void *user_data);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the number of elements in the specified list.
  * @since_tizen 3.0
  *
@@ -362,6 +378,7 @@ int maps_item_list_get_length(maps_item_list_h list, int *length);
 /*----------------------------------------------------------------------------*/
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_CONTAINERS_MODULE
  * @defgroup CAPI_MAPS_CONTAINERS_MODULE_STRING_HASHTABLE Maps String Hash Tables
  *
@@ -374,6 +391,7 @@ int maps_item_list_get_length(maps_item_list_h list, int *length);
  */
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The handle of Hash Table of strings.
  * @details The handle of Hash Table of strings can be obtained via call of
  * maps_string_hashtable_create().
@@ -397,6 +415,7 @@ int maps_item_list_get_length(maps_item_list_h list, int *length);
 typedef void *maps_string_hashtable_h;
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new Hash Table of strings.
  * @details This function creates a new instance of Hash Table of strings,
  * associate a new handle with it and allocates all needed resources.
@@ -417,6 +436,7 @@ typedef void *maps_string_hashtable_h;
 int maps_string_hashtable_create(maps_string_hashtable_h *table);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the Hash Table of strings and releases all its
  * resources.
  * @details This function destroys the Hash Table handle and releases all its
@@ -438,6 +458,7 @@ int maps_string_hashtable_create(maps_string_hashtable_h *table);
 int maps_string_hashtable_destroy(maps_string_hashtable_h table);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the Hash Table of strings.
  * @details This function clones the Hash Table of strings @a origin and all its
  * resources.
@@ -462,6 +483,7 @@ int maps_string_hashtable_destroy(maps_string_hashtable_h table);
 int maps_string_hashtable_clone(const maps_string_hashtable_h origin, maps_string_hashtable_h *cloned);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the association between string key and value in the table.
  * @details This function sets the association between string key and value in
  * the Hash Table.
@@ -484,6 +506,7 @@ int maps_string_hashtable_clone(const maps_string_hashtable_h origin, maps_strin
 int maps_string_hashtable_set(maps_string_hashtable_h table, const char *key, const char *value);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the string value associated with a string key in the table.
  * @details This function gets the string value associated with a string key in
  * the Hash Table.
@@ -507,6 +530,7 @@ int maps_string_hashtable_set(maps_string_hashtable_h table, const char *key, co
 int maps_string_hashtable_get(maps_string_hashtable_h table, const char *key, char **value);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Removes the key-value pair from the table.
  * @details This function removes the key-value pair from the Hash Table.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -528,6 +552,7 @@ int maps_string_hashtable_get(maps_string_hashtable_h table, const char *key, ch
 int maps_string_hashtable_remove(maps_string_hashtable_h table, const char *key);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called once for each key-value pair while iterating through
  * the given table.
  * @details This function is called once for each key-value pair of the given
@@ -552,6 +577,7 @@ int maps_string_hashtable_remove(maps_string_hashtable_h table, const char *key)
 typedef bool(*maps_string_hashtable_foreach_cb) (int index, int total, char *key, char *value, void *user_data);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the key-value pairs of the specified table.
  * @details This function delivers key-value pairs of a specified table via
  * maps_string_hashtable_foreach_cb() callback.
@@ -580,6 +606,7 @@ typedef bool(*maps_string_hashtable_foreach_cb) (int index, int total, char *key
 int maps_string_hashtable_foreach(maps_string_hashtable_h table, maps_string_hashtable_foreach_cb callback, void *user_data);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Checks if key is in hash_table.
  * @details This function checks if the specified key is in the Hash Table of
  * strings.
@@ -608,6 +635,7 @@ int maps_string_hashtable_contains(maps_string_hashtable_h table, const char *ke
 /*----------------------------------------------------------------------------*/
 
 /*
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_CONTAINERS_MODULE
  * @defgroup CAPI_MAPS_CONTAINERS_MODULE_INT_HASHTABLE Maps Integer Hash Tables
  *
@@ -620,6 +648,7 @@ int maps_string_hashtable_contains(maps_string_hashtable_h table, const char *ke
  */
 
 /*
+ * @deprecated Deprecated since 7.5.
  * @brief The handle of Hash Table of integers.
  * @details The handle of Hash Table of integers can be obtained via call of
  * maps_int_hashtable_create().
@@ -639,6 +668,7 @@ int maps_string_hashtable_contains(maps_string_hashtable_h table, const char *ke
 typedef void *maps_int_hashtable_h;
 
 /*
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new Hash Table of integers.
  * @details This function creates a new instance of Hash Table of integers,
  * associate a new handle with it and allocates all needed resources.
@@ -659,6 +689,7 @@ typedef void *maps_int_hashtable_h;
 int maps_int_hashtable_create(maps_int_hashtable_h *table);
 
 /*
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the Hash Table of integers and releases all its
  * resources.
  * @details This function destroys the Hash Table handle and releases all its
@@ -680,6 +711,7 @@ int maps_int_hashtable_create(maps_int_hashtable_h *table);
 int maps_int_hashtable_destroy(maps_int_hashtable_h table);
 
 /*
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the Hash Table of integers.
  * @details This function clones the Hash Table of integers @a origin and all
  * its resources.
@@ -704,6 +736,7 @@ int maps_int_hashtable_destroy(maps_int_hashtable_h table);
 int maps_int_hashtable_clone(const maps_int_hashtable_h origin, maps_int_hashtable_h *cloned);
 
 /*
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the association between integer key and value in the table.
  * @details This function sets the association between int key and value in
  * the Hash Table.
@@ -726,6 +759,7 @@ int maps_int_hashtable_clone(const maps_int_hashtable_h origin, maps_int_hashtab
 int maps_int_hashtable_set(maps_int_hashtable_h table, const int key, const int value);
 
 /*
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the integer value associated with an integer key in the
  * table.
  * @details This function gets the integer value associated with a integer key
@@ -749,6 +783,7 @@ int maps_int_hashtable_set(maps_int_hashtable_h table, const int key, const int
 int maps_int_hashtable_get(maps_int_hashtable_h table, const int key, int *value);
 
 /*
+ * @deprecated Deprecated since 7.5.
  * @brief Removes the key-value pair from the table.
  * @details This function removes the key-value pair from the Hash Table.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -770,6 +805,7 @@ int maps_int_hashtable_get(maps_int_hashtable_h table, const int key, int *value
 int maps_int_hashtable_remove(maps_int_hashtable_h table, const int key);
 
 /*
+ * @deprecated Deprecated since 7.5.
  * @brief Called once for each key-value pair while iterating through
  * the given table.
  * @details This function is called once for each key-value pair of the given
@@ -793,6 +829,7 @@ int maps_int_hashtable_remove(maps_int_hashtable_h table, const int key);
 typedef bool(*maps_int_hashtable_foreach_cb) (int index, int total, const int key, const int value, void *user_data);
 
 /*
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the key-value pairs of the specified table.
  * @details This function delivers key-value pairs of a specified table via
  * maps_int_hashtable_foreach_cb() callback.
@@ -821,6 +858,7 @@ typedef bool(*maps_int_hashtable_foreach_cb) (int index, int total, const int ke
 int maps_int_hashtable_foreach(maps_int_hashtable_h table, maps_int_hashtable_foreach_cb callback, void *user_data);
 
 /*
+ * @deprecated Deprecated since 7.5.
  * @brief Checks if key is in hash_table.
  * @details This function checks if the specified key is in the Hash Table of
  * integers.
@@ -849,6 +887,7 @@ int maps_int_hashtable_contains(maps_int_hashtable_h table, const int key, bool
 /*----------------------------------------------------------------------------*/
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_CONTAINERS_MODULE
  * @defgroup CAPI_MAPS_CONTAINERS_MODULE_ITEM_HASHTABLE Maps Item Hash Tables
  *
@@ -861,6 +900,7 @@ int maps_int_hashtable_contains(maps_int_hashtable_h table, const int key, bool
  */
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The handle of Hash Table of arbitrary items.
  * @details The handle of Hash Table of arbitrary items can be obtained via call
  * of maps_item_hashtable_create().
@@ -884,6 +924,7 @@ int maps_int_hashtable_contains(maps_int_hashtable_h table, const int key, bool
 typedef void *maps_item_hashtable_h;
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new Hash Table of arbitrary items.
  * @details This function creates a new instance of Hash Table of arbitrary
  * items, associate a new handle with it and allocates all needed resources.
@@ -904,6 +945,7 @@ typedef void *maps_item_hashtable_h;
 int maps_item_hashtable_create(maps_item_hashtable_h *table);
 
 /**
+* @deprecated Deprecated since 7.5.
 * @brief Destroys the Hash Table of arbitrary items and releases all its
 * resources.
  * @details This function destroys the Hash Table handle and releases all its
@@ -926,6 +968,7 @@ int maps_item_hashtable_create(maps_item_hashtable_h *table);
 int maps_item_hashtable_destroy(maps_item_hashtable_h table);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the Hash Table of arbitrary items.
  * @details This function clones the Hash Table of arbitrary items @a origin and
  * all its resources.
@@ -950,6 +993,7 @@ int maps_item_hashtable_destroy(maps_item_hashtable_h table);
 int maps_item_hashtable_clone(const maps_item_hashtable_h origin, maps_item_hashtable_h *cloned);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clone function, making a copy of a Hash Table item.
  * @details This function is called once for each item of the given Hash Table
  * while it is being cloned during the maps_item_hashtable_clone() procedure.
@@ -976,6 +1020,7 @@ int maps_item_hashtable_clone(const maps_item_hashtable_h origin, maps_item_hash
 typedef int (*maps_item_hashtable_clone_cb) (void *origin, void **cloned);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Free function, destroying an item of the Hash Table.
  * @details This function is called once for each item of the given Hash Table
  * while this item is to be destroyed during maps_item_hashtable_destroy().
@@ -1001,6 +1046,7 @@ typedef int (*maps_item_hashtable_clone_cb) (void *origin, void **cloned);
 typedef int (*maps_item_hashtable_free_cb) (void *data);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the table item of string type (char*).
  * @details This is a helper function of type #maps_item_hashtable_clone_cb,
  * which is useful while adding to the table an item of string type (char*).
@@ -1028,6 +1074,7 @@ typedef int (*maps_item_hashtable_free_cb) (void *data);
 int maps_item_hashtable_clone_string(void *origin, void **cloned);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the table item of string type (char*).
  * @details This is a helper function of type #maps_item_hashtable_free_cb,
  * which is useful while adding to the table an item of string type (char*).
@@ -1057,6 +1104,7 @@ int maps_item_hashtable_clone_string(void *origin, void **cloned);
 int maps_item_hashtable_free_string(void *data);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the table item of integer type (int*).
  * @details This is a helper function of type #maps_item_hashtable_clone_cb,
  * which is useful while adding to the table an item of integer type (int*).
@@ -1083,6 +1131,7 @@ int maps_item_hashtable_free_string(void *data);
 int maps_item_hashtable_clone_int(void *origin, void **cloned);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the table item of integer type (int*).
  * @details This is a helper function of type #maps_item_hashtable_free_cb,
  * which is useful while adding to the table an item of integer type (int*).
@@ -1112,7 +1161,8 @@ int maps_item_hashtable_clone_int(void *origin, void **cloned);
 int maps_item_hashtable_free_int(void *data);
 
 /**
-* @brief Clones the table item of floating point numeric type (double*).
+ * @deprecated Deprecated since 7.5.
+ * @brief Clones the table item of floating point numeric type (double*).
  * @details This is a helper function of type #maps_item_hashtable_clone_cb,
  * which is useful while adding to the table an item of floating point numeric
  * type (double*). This function is intended to be passed as the @a
@@ -1138,6 +1188,7 @@ int maps_item_hashtable_free_int(void *data);
 int maps_item_hashtable_clone_float(void *origin, void **cloned);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the table item of floating point numeric type
  * (double*).
  * @details This is a helper function of type #maps_item_hashtable_free_cb,
@@ -1169,6 +1220,7 @@ int maps_item_hashtable_clone_float(void *origin, void **cloned);
 int maps_item_hashtable_free_float(void *data);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the association between string key and string (char*)
  * value in the table.
  * @details This function sets the association between string key and string
@@ -1199,6 +1251,7 @@ int maps_item_hashtable_free_float(void *data);
 int maps_item_hashtable_set_string(maps_item_hashtable_h table, const char *key, const char *value);
 
  /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the association between string key and integer value in the
  * table.
  * @details This function sets the association between string key and integer
@@ -1229,6 +1282,7 @@ int maps_item_hashtable_set_string(maps_item_hashtable_h table, const char *key,
 int maps_item_hashtable_set_int(maps_item_hashtable_h table, const char *key, const int value);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the association between string key and floating point
  * numeric value in the table.
  * @details This function sets the association between string key and floating
@@ -1259,6 +1313,7 @@ int maps_item_hashtable_set_int(maps_item_hashtable_h table, const char *key, co
 int maps_item_hashtable_set_float(maps_item_hashtable_h table, const char *key, const double value);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the association between key and value in the table.
  * @details This function sets the association between string key and
  * arbitrary typed value in the Hash Table.
@@ -1314,6 +1369,7 @@ int maps_item_hashtable_set_float(maps_item_hashtable_h table, const char *key,
 int maps_item_hashtable_set(maps_item_hashtable_h table, const char *key, const void *value, maps_item_hashtable_clone_cb clone_func, maps_item_hashtable_free_cb free_func);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the association between string key and string (char*)
  * value in the table.
  * @details This function gets the association between string key and string
@@ -1341,6 +1397,7 @@ int maps_item_hashtable_set(maps_item_hashtable_h table, const char *key, const
 int maps_item_hashtable_get_string(maps_item_hashtable_h table, const char *key, char **value);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the association between string key and integer value in the
  * table.
  * @details This function gets the association between string key and integer
@@ -1367,6 +1424,7 @@ int maps_item_hashtable_get_string(maps_item_hashtable_h table, const char *key,
 int maps_item_hashtable_get_int(maps_item_hashtable_h table, const char *key, int *value);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the association between string key and floating point
  * numeric value in the table.
  * @details This function gets the association between string key and floating
@@ -1393,6 +1451,7 @@ int maps_item_hashtable_get_int(maps_item_hashtable_h table, const char *key, in
 int maps_item_hashtable_get_float(maps_item_hashtable_h table, const char *key, double *value);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the value associated with a string key in the table.
  * @details This function gets the value associated with a string key in the
  * Hash Table.
@@ -1416,6 +1475,7 @@ int maps_item_hashtable_get_float(maps_item_hashtable_h table, const char *key,
 int maps_item_hashtable_get(maps_item_hashtable_h table, const char *key, void **value);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Removes the key-value pair from the table.
  * @details This function removes the key-value pair from the Hash Table.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -1438,6 +1498,7 @@ int maps_item_hashtable_get(maps_item_hashtable_h table, const char *key, void *
 int maps_item_hashtable_remove(maps_item_hashtable_h table, const char *key);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called once for each key-value pair while iterating through the
  * given table.
  * @details This function is called once for each key-value pair of the given
@@ -1462,6 +1523,7 @@ int maps_item_hashtable_remove(maps_item_hashtable_h table, const char *key);
 typedef bool(*maps_item_hashtable_foreach_cb) (int index, int total, char *key, void *value, void *user_data);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the key-value pairs of the specified table.
  * @details This function delivers key-value pairs of a specified table via
  * maps_item_hashtable_foreach_cb() callback.
@@ -1489,6 +1551,7 @@ typedef bool(*maps_item_hashtable_foreach_cb) (int index, int total, char *key,
 int maps_item_hashtable_foreach(maps_item_hashtable_h table, maps_item_hashtable_foreach_cb callback, void *user_data);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Checks if key is in hash_table.
  * @details This function checks if the specified key is in the Hash Table.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index 59c2074..52374fb 100644 (file)
@@ -33,6 +33,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_DATA_MODULE Place
  * @file maps_place.h
@@ -49,6 +50,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The Place handle.
  * @details The handle of Place instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -61,6 +63,7 @@ typedef void *maps_place_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The Place list handle.
  * @details The handle of Place list instance.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -74,6 +77,7 @@ typedef void *maps_place_list_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when requesting the list of Place Properties.
  * @details This callback is invoked while iterating through the list of Place Properties.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -92,6 +96,7 @@ typedef bool(*maps_place_properties_cb) (int index, int total, char *key, void *
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when requesting the list of Place Categories.
  * @details This callback is invoked while iterating through the list of Place Categories.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -111,6 +116,7 @@ typedef bool(*maps_place_categories_cb) (int index, int total, maps_place_catego
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when requesting the list of Place Attributes.
  * @details This callback is invoked while iterating through the list of Place Attributes.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -130,6 +136,7 @@ typedef bool(*maps_place_attributes_cb) (int index, int total, maps_place_attrib
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when requesting the list of Place Contacts.
  * @details This callback is invoked while iterating through the list of Place Contacts.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -149,6 +156,7 @@ typedef bool(*maps_place_contacts_cb) (int index, int total, maps_place_contact_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when requesting the list of Place Editorial.
  * @details This callback is invoked while iterating through the list of Place Editorials.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -168,6 +176,7 @@ typedef bool(*maps_place_editorials_cb) (int index, int total, maps_place_editor
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when requesting the list of Place Image.
  * @details This callback is invoked while iterating through the list of Place Images.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -187,6 +196,7 @@ typedef bool(*maps_place_images_cb) (int index, int total, maps_place_image_h im
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when requesting the list of Place Review.
  * @details This callback is invoked while iterating through the list of Place Reviews.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -206,6 +216,7 @@ typedef bool(*maps_place_reviews_cb) (int index, int total, maps_place_review_h
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when requesting the list of Place.
  * @details This callback is invoked while iterating through the list of Place.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -231,6 +242,7 @@ typedef bool(*maps_place_cb) (int index, maps_place_h place, void *user_data);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the place handle and releases all its resources.
  * @details This function destroys the place handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -246,6 +258,7 @@ int maps_place_destroy(maps_place_h place);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the place handle.
  * @details This function clones the place handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -267,6 +280,7 @@ int maps_place_clone(const maps_place_h origin, maps_place_h *cloned);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place ID.
  * @details This function gets the place ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -283,6 +297,7 @@ int maps_place_get_id(const maps_place_h place, char **id);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place name.
  * @details This function gets the place name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -299,6 +314,7 @@ int maps_place_get_name(const maps_place_h place, char **name);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place view URI.
  * @details This function gets the place view URI.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -315,6 +331,7 @@ int maps_place_get_uri(const maps_place_h place, char **uri);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place location.
  * @details This function gets the place location.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -331,6 +348,7 @@ int maps_place_get_location(const maps_place_h place, maps_coordinates_h *locati
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place distance from the center of the location.
  * @details This function gets the place distance from the center of the location.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -346,6 +364,7 @@ int maps_place_get_distance(const maps_place_h place, int *distance);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place address.
  * @details This function gets the place address.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -361,6 +380,7 @@ int maps_place_get_distance(const maps_place_h place, int *distance);
 int maps_place_get_address(const maps_place_h place, maps_address_h *address);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place rating.
  * @details This function gets the place rating.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -377,6 +397,7 @@ int maps_place_get_rating(const maps_place_h place, maps_place_rating_h *rating)
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Retrieves all properties.
  * @details This function retrieves all place properties.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -397,6 +418,7 @@ int maps_place_foreach_property(const maps_place_h place, maps_place_properties_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Retrieves all categories
  * @details This function retrieves all place categories.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -417,6 +439,7 @@ int maps_place_foreach_category(const maps_place_h place, maps_place_categories_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Retrieves all attributes.
  * @details This function retrieves all place attributes.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -437,6 +460,7 @@ int maps_place_foreach_attribute(const maps_place_h place, maps_place_attributes
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Retrieves all contacts.
  * @details This function retrieves all place contacts.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -457,6 +481,7 @@ int maps_place_foreach_contact(const maps_place_h place, maps_place_contacts_cb
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Retrieves all editorials.
  * @details This function retrieves all place editorials.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -477,6 +502,7 @@ int maps_place_foreach_editorial(const maps_place_h place, maps_place_editorials
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Retrieves all images.
  * @details This function retrieves all place images.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -497,6 +523,7 @@ int maps_place_foreach_image(const maps_place_h place, maps_place_images_cb call
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Retrieves all reviews.
  * @details This function retrieves all place reviews.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -517,6 +544,7 @@ int maps_place_foreach_review(const maps_place_h place, maps_place_reviews_cb ca
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place supplier link.
  * @details This function gets the place supplier link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -533,6 +561,7 @@ int maps_place_get_supplier_link(const maps_place_h place, maps_place_link_objec
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place related link.
  * @details This function gets the place related link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -549,6 +578,7 @@ int maps_place_get_related_link(const maps_place_h place, maps_place_link_object
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Retrieves all places.
  * @details This function retrieves all places.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -571,6 +601,7 @@ int maps_place_list_foreach(const maps_place_list_h place_list, maps_place_cb ca
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Frees all of the memory used by a place list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] place_list The place list handle
index a5ba044..ecd2db5 100644 (file)
@@ -20,6 +20,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_ATTRIBUTE_MODULE Attribute
  * @file maps_place_attribute.h
@@ -36,6 +37,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The Place Attribute handle.
  * @details The handle of Place Attribute instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -51,6 +53,7 @@ typedef void *maps_place_attribute_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the place attribute handle and releases all its resources.
  * @details This function destroys the place attribute handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -66,6 +69,7 @@ int maps_place_attribute_destroy(maps_place_attribute_h attribute);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the place attribute handle.
  * @details This function clones the place attribute handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -87,6 +91,7 @@ int maps_place_attribute_clone(const maps_place_attribute_h origin, maps_place_a
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place attribute ID.
  * @details This function gets the place attribute ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -103,6 +108,7 @@ int maps_place_attribute_get_id(const maps_place_attribute_h attribute, char **i
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place attribute label.
  * @details This function gets the place attribute label.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -119,6 +125,7 @@ int maps_place_attribute_get_label(const maps_place_attribute_h attribute, char
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place attribute text.
  * @details This function gets the place attribute text.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index da30034..ea5716b 100644 (file)
@@ -20,6 +20,7 @@
 #include <maps_place_attribute.h>
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_PLACE_ATTRIBUTE_MODULE Attribute
  *
@@ -38,6 +39,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new place attribute handle.
  * @details This function creates a new place attribute handle and allocates all
  * needed resources.
@@ -59,6 +61,7 @@ extern "C" {
 int maps_place_attribute_create(maps_place_attribute_h *attribute);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place attribute ID.
  * @details This function sets the place attribute ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -78,6 +81,7 @@ int maps_place_attribute_create(maps_place_attribute_h *attribute);
 int maps_place_attribute_set_id(maps_place_attribute_h attribute, const char *id);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place attribute label.
  * @details This function sets the place attribute label.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -97,6 +101,7 @@ int maps_place_attribute_set_id(maps_place_attribute_h attribute, const char *id
 int maps_place_attribute_set_label(maps_place_attribute_h attribute, const char *label);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place attribute text.
  * @details This function sets the place attribute text.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index 9edbcb2..88cea30 100644 (file)
@@ -20,6 +20,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_CATEGORY_MODULE Category
  * @file maps_place_category.h
@@ -36,6 +37,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The Place Category handle.
  * @details The handle of Place Category instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -51,6 +53,7 @@ typedef void *maps_place_category_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new place category handle.
  * @details This function creates a new place category handle and allocates all needed resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -70,6 +73,7 @@ int maps_place_category_create(maps_place_category_h *category);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the place category handle.
  * @details This function clones the place category handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -88,6 +92,7 @@ int maps_place_category_clone(const maps_place_category_h origin, maps_place_cat
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the place category handle and releases all its resources.
  * @details This function destroys the place category handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -106,6 +111,7 @@ int maps_place_category_destroy(maps_place_category_h category);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place category ID.
  * @details This function gets the place category ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -122,6 +128,7 @@ int maps_place_category_get_id(const maps_place_category_h category, char **id);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place category name.
  * @details This function gets the place category name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -138,6 +145,7 @@ int maps_place_category_get_name(const maps_place_category_h category, char **na
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place category URL.
  * @details This function gets the place category URL.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -154,6 +162,7 @@ int maps_place_category_get_url(const maps_place_category_h category, char **url
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place category ID.
  * @details This function sets the place category ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -172,6 +181,7 @@ int maps_place_category_set_id(maps_place_category_h category, const char *id);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place category name.
  * @details This function sets the place category name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -190,6 +200,7 @@ int maps_place_category_set_name(maps_place_category_h category, const char *nam
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place category URL.
  * @details This function sets the place category URL.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index af20993..4187940 100644 (file)
@@ -20,6 +20,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_CONTACT_MODULE Contact
  * @file maps_place_contact.h
@@ -36,6 +37,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The Place Contact handle.
  * @details The handle of Place Contact instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -51,6 +53,7 @@ typedef void *maps_place_contact_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the place contact handle and releases all its resources.
  * @details This function destroys the place contact handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -66,6 +69,7 @@ int maps_place_contact_destroy(maps_place_contact_h contact);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the place contact handle.
  * @details This function clones the place contact handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -87,6 +91,7 @@ int maps_place_contact_clone(const maps_place_contact_h origin, maps_place_conta
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place contact label.
  * @details This function gets the place contact label.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -103,6 +108,7 @@ int maps_place_contact_get_label(const maps_place_contact_h contact, char **labe
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place contact type.
  * @details This function gets the place contact type.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -119,6 +125,7 @@ int maps_place_contact_get_type(const maps_place_contact_h contact, char **type)
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place contact value.
  * @details This function gets the place contact value.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index c3b632d..4ff8e5a 100644 (file)
@@ -20,6 +20,7 @@
 #include <maps_place_contact.h>
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_PLACE_CONTACT_MODULE Contact
  *
@@ -38,6 +39,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new place contact handle.
  * @details This function creates a new place contact handle and allocates all
  * needed resources.
@@ -59,6 +61,7 @@ extern "C" {
 int maps_place_contact_create(maps_place_contact_h *contact);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place contact label
  * @details This function sets the place contact label.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -78,6 +81,7 @@ int maps_place_contact_create(maps_place_contact_h *contact);
 int maps_place_contact_set_label(maps_place_contact_h contact, const char *label);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place contact type
  * @details This function sets the place contact type.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -97,6 +101,7 @@ int maps_place_contact_set_label(maps_place_contact_h contact, const char *label
 int maps_place_contact_set_type(maps_place_contact_h contact, const char *type);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place contact value
  * @details This function sets the place contact value.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index 5353eb5..d1b57c4 100644 (file)
@@ -23,6 +23,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_EDITORIAL_MODULE Editorial
  * @file maps_place_editorial.h
@@ -39,6 +40,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The Place Editorial handle.
  * @details The handle of Place Editorial instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -54,6 +56,7 @@ typedef void *maps_place_editorial_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the place editorial handle and releases all its resources.
  * @details This function destroys the place editorial handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -69,6 +72,7 @@ int maps_place_editorial_destroy(maps_place_editorial_h editorial);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the place editorial handle.
  * @details This function clones the place editorial handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -90,6 +94,7 @@ int maps_place_editorial_clone(const maps_place_editorial_h origin, maps_place_e
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place editorial description.
  * @details This function gets the place editorial description.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -106,6 +111,7 @@ int maps_place_editorial_get_description(const maps_place_editorial_h editorial,
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place editorial language.
  * @details This function gets the place editorial language.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -122,6 +128,7 @@ int maps_place_editorial_get_language(const maps_place_editorial_h editorial, ch
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place editorial media.
  * @details This function gets the place editorial media.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index 18eb16e..2be91e9 100644 (file)
@@ -20,6 +20,7 @@
 #include <maps_place_editorial.h>
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_PLACE_EDITORIAL_MODULE Editorial
  *
@@ -38,6 +39,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new place editorial handle.
  * @details This function creates a new place editorial handle and allocates all
  * needed resources.
@@ -58,6 +60,7 @@ extern "C" {
 int maps_place_editorial_create(maps_place_editorial_h *editorial);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place editorial description.
  * @details This function sets the place editorial description.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -77,6 +80,7 @@ int maps_place_editorial_create(maps_place_editorial_h *editorial);
 int maps_place_editorial_set_description(maps_place_editorial_h editorial, const char *description);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place editorial language.
  * @details This function sets the place editorial language.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -96,6 +100,7 @@ int maps_place_editorial_set_description(maps_place_editorial_h editorial, const
 int maps_place_editorial_set_language(maps_place_editorial_h editorial, const char *language);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place editorial media.
  * @details This function sets the place editorial media.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index 2ac0e76..61b0e23 100644 (file)
@@ -23,6 +23,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_FILTER_MODULE Filter
  * @file maps_place_filter.h
@@ -40,6 +41,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The Place Filter handle.
  * @details The handle of Place Filter instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -55,6 +57,7 @@ typedef void *maps_place_filter_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when requesting the list of Place Filter Properties.
  * @details This callback is invoked while iterating through the list of Place Filter Properties.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -76,6 +79,7 @@ typedef bool(*maps_place_filter_properties_cb) (int index, int total, char *key,
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new Place Filter handle.
  * @details This function creates a new place filter handle and allocates all needed resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -95,6 +99,7 @@ int maps_place_filter_create(maps_place_filter_h *filter);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the place filter handle and releases all its resources.
  * @details This function destroys the place filter handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -112,6 +117,7 @@ int maps_place_filter_destroy(maps_place_filter_h filter);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the place filter handle.
  * @details This function clones the place filter handle @a origin and all its resources.\n
  *          Place filter handle @a origin may be created using maps_place_filter_create().
@@ -136,6 +142,7 @@ int maps_place_filter_clone(const maps_place_filter_h origin, maps_place_filter_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the value of the specified key in the place filter.
  * @details This function gets the value of the specified key in the place filter.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -156,6 +163,7 @@ int maps_place_filter_get(const maps_place_filter_h filter, const char *key, cha
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the value of keyword.
  * @details This function gets the value of keyword.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -175,6 +183,7 @@ int maps_place_filter_get_keyword(const maps_place_filter_h filter, char **keywo
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place name.
  * @details This function gets the place name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -194,6 +203,7 @@ int maps_place_filter_get_place_name(const maps_place_filter_h filter, char **pl
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the category.
  * @details This function gets the category.\n
  *          For allowed values of keys, see the macros above.
@@ -214,6 +224,7 @@ int maps_place_filter_get_category(const maps_place_filter_h filter, maps_place_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Retrieves all filter properties.
  * @details This function retrieves all place filter properties.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -237,6 +248,7 @@ int maps_place_filter_foreach_property(const maps_place_filter_h filter, maps_pl
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place address.
  * @details This function gets the place address.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -259,6 +271,7 @@ int maps_place_filter_get_place_address(const maps_place_filter_h filter, char *
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the filter value.
  * @details This function sets the filter value in an assignment with a specified string key.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -278,6 +291,7 @@ int maps_place_filter_set(maps_place_filter_h filter, const char *key, const cha
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the keyword.
  * @details This function sets the keyword.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -296,6 +310,7 @@ int maps_place_filter_set_keyword(maps_place_filter_h filter, const char *keywor
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place name.
  * @details This function sets the place name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -314,6 +329,7 @@ int maps_place_filter_set_place_name(maps_place_filter_h filter, const char *pla
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the category.
  * @details This function sets the place name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -332,6 +348,7 @@ int maps_place_filter_set_category(maps_place_filter_h filter, const maps_place_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place address.
  * @details This function sets the place address.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
index aac1c51..fb596b7 100644 (file)
@@ -24,6 +24,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_IMAGE_MODULE Image
  * @file maps_place_image.h
@@ -40,6 +41,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The Place Image handle.
  * @details The handle of Place Image instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -55,6 +57,7 @@ typedef void *maps_place_image_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the place image handle and releases all its resources.
  * @details This function destroys the place image handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -70,6 +73,7 @@ int maps_place_image_destroy(maps_place_image_h image);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the place image handle.
  * @details This function clones the place image handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -91,6 +95,7 @@ int maps_place_image_clone(const maps_place_image_h origin, maps_place_image_h *
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place image ID.
  * @details This function gets the place image ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -107,6 +112,7 @@ int maps_place_image_get_id(const maps_place_image_h image, char **id);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place image URL.
  * @details This function gets the place image URL.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -123,6 +129,7 @@ int maps_place_image_get_url(const maps_place_image_h image, char **url);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place image width.
  * @details This function gets the place image width.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -138,6 +145,7 @@ int maps_place_image_get_width(const maps_place_image_h image, int *width);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place image height.
  * @details This function gets the place image height.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -153,6 +161,7 @@ int maps_place_image_get_height(const maps_place_image_h image, int *height);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place image user link.
  * @details This function gets the place image user link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -170,6 +179,7 @@ int maps_place_image_get_user_link(const maps_place_image_h image, maps_place_li
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place image media.
  * @details This function gets the place image media.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index ae9c00d..b277afa 100644 (file)
@@ -20,6 +20,7 @@
 #include <maps_place_image.h>
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_PLACE_IMAGE_MODULE Image
  *
@@ -38,6 +39,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new place image handle.
  * @details This function creates a new place image handle and allocates all
  * needed resources.
@@ -58,6 +60,7 @@ extern "C" {
 int maps_place_image_create(maps_place_image_h *image);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place image ID.
  * @details This function sets the place image ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -77,6 +80,7 @@ int maps_place_image_create(maps_place_image_h *image);
 int maps_place_image_set_id(maps_place_image_h image, const char *id);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place image URL.
  * @details This function sets the place image URL.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -96,6 +100,7 @@ int maps_place_image_set_id(maps_place_image_h image, const char *id);
 int maps_place_image_set_url(maps_place_image_h image, const char *url);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place image width.
  * @details This function sets the place image width.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -115,6 +120,7 @@ int maps_place_image_set_url(maps_place_image_h image, const char *url);
 int maps_place_image_set_width(maps_place_image_h image, const int width);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place image height.
  * @details This function sets the place image height.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -134,6 +140,7 @@ int maps_place_image_set_width(maps_place_image_h image, const int width);
 int maps_place_image_set_height(maps_place_image_h image, const int height);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place image user link.
  * @details This function sets the place image user link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -154,6 +161,7 @@ int maps_place_image_set_height(maps_place_image_h image, const int height);
 int maps_place_image_set_user_link(maps_place_image_h image, const maps_place_link_object_h user);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place image media.
  * @details This function sets the place image media.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index a9aeae4..f6412ed 100644 (file)
@@ -20,6 +20,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_LINK_MODULE Link
  * @file maps_place_link_object.h
@@ -35,6 +36,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The Place Link Object handle.
  * @details The handle of Place Link Object instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -50,6 +52,7 @@ typedef void *maps_place_link_object_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the place link object handle and releases all its resources.
  * @details This function destroys the place link object handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -65,6 +68,7 @@ int maps_place_link_object_destroy(maps_place_link_object_h link);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the place link object handle.
  * @details This function clones the place link object handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -86,6 +90,7 @@ int maps_place_link_object_clone(const maps_place_link_object_h origin, maps_pla
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place link object ID.
  * @details This function gets the place link object ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -102,6 +107,7 @@ int maps_place_link_object_get_id(const maps_place_link_object_h link, char **id
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place link object name.
  * @details This function gets the place link object name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -118,6 +124,7 @@ int maps_place_link_object_get_name(const maps_place_link_object_h link, char **
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place link object string.
  * @details This function gets the place link object string.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -134,6 +141,7 @@ int maps_place_link_object_get_string(const maps_place_link_object_h link, char
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place link object type.
  * @details This function gets the place link object type.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index ba643fa..d9e8cf8 100644 (file)
@@ -20,6 +20,7 @@
 #include <maps_place_link_object.h>
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_PLACE_LINK_MODULE Link
  *
@@ -38,6 +39,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new place link object handle.
  * @details This function creates a new place link object handle and allocates
  * all needed resources.
@@ -58,6 +60,7 @@ extern "C" {
 int maps_place_link_object_create(maps_place_link_object_h *link);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place link object ID.
  * @details This function sets the place link object ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -77,6 +80,7 @@ int maps_place_link_object_create(maps_place_link_object_h *link);
 int maps_place_link_object_set_id(maps_place_link_object_h link, const char *id);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place link object string.
  * @details This function sets the place link object string.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -96,6 +100,7 @@ int maps_place_link_object_set_id(maps_place_link_object_h link, const char *id)
 int maps_place_link_object_set_string(maps_place_link_object_h link, const char *string);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place link object type.
  * @details This function sets the place link object type.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -115,6 +120,7 @@ int maps_place_link_object_set_string(maps_place_link_object_h link, const char
 int maps_place_link_object_set_type(maps_place_link_object_h link, const char *type);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place link object name.
  * @details This function sets the place link object name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index 8347782..dce0fc0 100644 (file)
@@ -23,6 +23,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_MEDIA_MODULE Media
  * @file maps_place_media.h
@@ -39,6 +40,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The Place Media handle.
  * @details The handle of Place Media instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -54,6 +56,7 @@ typedef void *maps_place_media_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the place media handle and releases all its resources.
  * @details This function destroys the place media handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -69,6 +72,7 @@ int maps_place_media_destroy(maps_place_media_h media);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the place media handle.
  * @details This function clones the place media handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -90,6 +94,7 @@ int maps_place_media_clone(const maps_place_media_h origin, maps_place_media_h *
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place media attribution.
  * @details This function gets the place media attribution.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -106,6 +111,7 @@ int maps_place_media_get_attribution(const maps_place_media_h media, char **attr
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place media supplier link.
  * @details This function gets the place media supplier link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -123,6 +129,7 @@ int maps_place_media_get_supplier(const maps_place_media_h media, maps_place_lin
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place media "via" link.
  * @details This function gets the place media "via" link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index 2fe61ff..2ccb124 100644 (file)
@@ -20,6 +20,7 @@
 #include <maps_place_media.h>
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_PLACE_MEDIA_MODULE Media
  *
@@ -38,6 +39,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new place media handle.
  * @details This function creates a new place media handle and allocates all
  * needed resources.
@@ -58,6 +60,7 @@ extern "C" {
 int maps_place_media_create(maps_place_media_h *media);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place media attribution.
  * @details This function sets the place media attribution.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -77,6 +80,7 @@ int maps_place_media_create(maps_place_media_h *media);
 int maps_place_media_set_attribution(maps_place_media_h media, const char *attribution);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place media supplier link.
  * @details This function sets the place media supplier link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -96,6 +100,7 @@ int maps_place_media_set_attribution(maps_place_media_h media, const char *attri
 int maps_place_media_set_supplier(maps_place_media_h media, const maps_place_link_object_h supplier);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place media via link.
  * @details This function sets the place media via link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index 36663ed..955acea 100644 (file)
@@ -26,6 +26,7 @@
  */
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_PLACE_DATA_MODULE Place
  *
@@ -44,6 +45,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new place handle.
  * @details This function creates a new place handle and allocates all needed
  * resources.
@@ -64,6 +66,7 @@ extern "C" {
 int maps_place_create(maps_place_h *place);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place ID.
  * @details This function sets the place ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -83,6 +86,7 @@ int maps_place_create(maps_place_h *place);
 int maps_place_set_id(maps_place_h place, const char *id);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place name.
  * @details This function sets the place name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -102,6 +106,7 @@ int maps_place_set_id(maps_place_h place, const char *id);
 int maps_place_set_name(maps_place_h place, const char *name);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place location.
  * @details This function sets the place location.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -121,6 +126,7 @@ int maps_place_set_name(maps_place_h place, const char *name);
 int maps_place_set_location(maps_place_h place, const maps_coordinates_h location);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place distance from the center of the location.
  * @details This function sets the place distance from the center of the
  * location.
@@ -141,6 +147,7 @@ int maps_place_set_location(maps_place_h place, const maps_coordinates_h locatio
 int maps_place_set_distance(maps_place_h place, const int distance);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place address.
  * @details This function sets the place address.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -160,6 +167,7 @@ int maps_place_set_distance(maps_place_h place, const int distance);
 int maps_place_set_address(maps_place_h place, const maps_address_h address);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place categories.
  * @details This function sets the place categories.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -179,6 +187,7 @@ int maps_place_set_address(maps_place_h place, const maps_address_h address);
 int maps_place_set_categories(maps_place_h place, const maps_item_list_h categories);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place view URI.
  * @details This function sets the place URI.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -198,6 +207,7 @@ int maps_place_set_categories(maps_place_h place, const maps_item_list_h categor
 int maps_place_set_uri(maps_place_h place, const char *uri);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place attributes.
  * @details This function sets the place attributes.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -217,6 +227,7 @@ int maps_place_set_uri(maps_place_h place, const char *uri);
 int maps_place_set_attributes(maps_place_h place, const maps_item_list_h attributes);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place contacts.
  * @details This function sets the place contacts.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -236,6 +247,7 @@ int maps_place_set_attributes(maps_place_h place, const maps_item_list_h attribu
 int maps_place_set_contacts(maps_place_h place, const maps_item_list_h contacts);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place editorials.
  * @details This function sets the place editorials.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -255,6 +267,7 @@ int maps_place_set_contacts(maps_place_h place, const maps_item_list_h contacts)
 int maps_place_set_editorials(maps_place_h place, const maps_item_list_h editorials);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place images.
  * @details This function sets the place images.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -274,6 +287,7 @@ int maps_place_set_editorials(maps_place_h place, const maps_item_list_h editori
 int maps_place_set_images(maps_place_h place, const maps_item_list_h images);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place review.
  * @details This function sets the place reviews.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -293,6 +307,7 @@ int maps_place_set_images(maps_place_h place, const maps_item_list_h images);
 int maps_place_set_reviews(maps_place_h place, const maps_item_list_h reviews);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place properties.
  * @details This function sets the place properties.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -312,6 +327,7 @@ int maps_place_set_reviews(maps_place_h place, const maps_item_list_h reviews);
 int maps_place_set_properties(maps_place_h place, const maps_item_hashtable_h properties);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place rating.
  * @details This function sets the place rating.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -331,6 +347,7 @@ int maps_place_set_properties(maps_place_h place, const maps_item_hashtable_h pr
 int maps_place_set_rating(maps_place_h place, const maps_place_rating_h rating);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place supplier link.
  * @details This function sets the place supplier link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -350,6 +367,7 @@ int maps_place_set_rating(maps_place_h place, const maps_place_rating_h rating);
 int maps_place_set_supplier_link(maps_place_h place, const maps_place_link_object_h supplier);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place related link.
  * @details This function sets the place related link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -369,6 +387,7 @@ int maps_place_set_supplier_link(maps_place_h place, const maps_place_link_objec
 int maps_place_set_related_link(maps_place_h place, const maps_place_link_object_h related);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a place list having a set of places.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  *
index 8f37f15..f7e9b06 100644 (file)
@@ -23,6 +23,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_RATING_MODULE Rating
  * @file maps_place_rating.h
@@ -39,6 +40,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The Place Rating handle.
  * @details The handle of Place Rating instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -54,6 +56,7 @@ typedef void *maps_place_rating_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the place rating handle and releases all its resources.
  * @details This function destroys the place rating handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -69,6 +72,7 @@ int maps_place_rating_destroy(maps_place_rating_h rating);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the place rating handle.
  * @details This function clones the place rating handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -90,6 +94,7 @@ int maps_place_rating_clone(const maps_place_rating_h origin, maps_place_rating_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place rating count.
  * @details This function gets the place rating count.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -105,6 +110,7 @@ int maps_place_rating_get_count(const maps_place_rating_h rating, int *count);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place rating average.
  * @details This function gets the place rating average.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index df18515..b777ad6 100644 (file)
@@ -20,6 +20,7 @@
 #include <maps_place_rating.h>
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_PLACE_RATING_MODULE Rating
  *
@@ -38,6 +39,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new place rating handle.
  * @details This function creates a new place rating handle and allocates all
  * needed resources.
@@ -58,6 +60,7 @@ extern "C" {
 int maps_place_rating_create(maps_place_rating_h *rating);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place rating count.
  * @details This function sets the place rating count.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -77,6 +80,7 @@ int maps_place_rating_create(maps_place_rating_h *rating);
 int maps_place_rating_set_count(maps_place_rating_h rating, const int count);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place rating average.
  * @details This function sets the place rating average.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index fdda91b..e461baf 100644 (file)
@@ -24,6 +24,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_REVIEW_MODULE Review
  * @file maps_place_review.h
@@ -40,6 +41,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The Place Review handle.
  * @details The handle of Place Review instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -55,6 +57,7 @@ typedef void *maps_place_review_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the place review handle and releases all its resources.
  * @details This function destroys the place review handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -70,6 +73,7 @@ int maps_place_review_destroy(maps_place_review_h review);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the place review handle.
  * @details This function clones the place review handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -91,6 +95,7 @@ int maps_place_review_clone(const maps_place_review_h origin, maps_place_review_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place review date.
  * @details This function gets the place review date.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -107,6 +112,7 @@ int maps_place_review_get_date(const maps_place_review_h review, char **date);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place review title.
  * @details This function gets the place review title.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -123,6 +129,7 @@ int maps_place_review_get_title(const maps_place_review_h review, char **title);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place review rating.
  * @details This function gets the place review rating.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -138,6 +145,7 @@ int maps_place_review_get_rating(const maps_place_review_h review, double *ratin
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place review description.
  * @details This function gets the place review description.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -154,6 +162,7 @@ int maps_place_review_get_description(const maps_place_review_h review, char **d
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place review language.
  * @details This function gets the place review language.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -170,6 +179,7 @@ int maps_place_review_get_language(const maps_place_review_h review, char **lang
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place review media.
  * @details This function gets the place review media.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -187,6 +197,7 @@ int maps_place_review_get_media(const maps_place_review_h review, maps_place_med
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place review user link.
  * @details This function gets the place review user link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index 698695d..5bf9ecd 100644 (file)
@@ -23,6 +23,7 @@
 #include <maps_place_review.h>
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_PLACE_REVIEW_MODULE Review
  *
@@ -41,6 +42,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new place review handle.
  * @details This function creates a new place review handle and allocates all
  * needed resources.
@@ -61,6 +63,7 @@ extern "C" {
 int maps_place_review_create(maps_place_review_h *review);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place review date.
  * @details This function sets the place review date.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -80,6 +83,7 @@ int maps_place_review_create(maps_place_review_h *review);
 int maps_place_review_set_date(maps_place_review_h review, const char *date);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place review title.
  * @details This function sets the place review title.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -99,6 +103,7 @@ int maps_place_review_set_date(maps_place_review_h review, const char *date);
 int maps_place_review_set_title(maps_place_review_h review, const char *title);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place review rating.
  * @details This function sets the place review rating.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -118,6 +123,7 @@ int maps_place_review_set_title(maps_place_review_h review, const char *title);
 int maps_place_review_set_rating(maps_place_review_h review, const double rating);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place review description.
  * @details This function sets the place review description.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -137,6 +143,7 @@ int maps_place_review_set_rating(maps_place_review_h review, const double rating
 int maps_place_review_set_description(maps_place_review_h review, const char *description);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place review language.
  * @details This function sets the place review language.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -156,6 +163,7 @@ int maps_place_review_set_description(maps_place_review_h review, const char *de
 int maps_place_review_set_language(maps_place_review_h review, const char *language);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place review media.
  * @details This function sets the place review media.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -176,6 +184,7 @@ int maps_place_review_set_language(maps_place_review_h review, const char *langu
 int maps_place_review_set_media(maps_place_review_h review, const maps_place_media_h media);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place review user link.
  * @details This function sets the place review user link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index 3a2d1d1..36c6562 100644 (file)
@@ -20,6 +20,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_URL_MODULE URL
  * @file maps_place_url.h
@@ -36,6 +37,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The Place URL handle.
  * @details The handle of Place URL instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -51,6 +53,7 @@ typedef void *maps_place_url_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the place URL handle and releases all its resources.
  * @details This function destroys the place URL handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -66,6 +69,7 @@ int maps_place_url_destroy(maps_place_url_h url);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the place URL handle.
  * @details This function clones the place URL handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -87,6 +91,7 @@ int maps_place_url_clone(const maps_place_url_h origin, maps_place_url_h *cloned
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place URL path.
  * @details This function gets the place URL path.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -103,6 +108,7 @@ int maps_place_url_get_path(const maps_place_url_h url, char **path);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the place URL description.
  * @details This function gets the place URL description.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index 6d03a8c..7b91dcb 100644 (file)
@@ -20,6 +20,7 @@
 #include <maps_place_url.h>
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_PLACE_URL_MODULE URL
  *
@@ -38,6 +39,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new place URL handle.
  * @details This function creates a new place URL handle and allocates all
  * needed resources.
@@ -58,6 +60,7 @@ extern "C" {
 int maps_place_url_create(maps_place_url_h *url);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place URL path.
  * @details This function sets the place URL path.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -77,6 +80,7 @@ int maps_place_url_create(maps_place_url_h *url);
 int maps_place_url_set_path(maps_place_url_h url, const char *path);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the place URL description.
  * @details This function sets the place URL description.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index 07c49c4..42be7a5 100644 (file)
@@ -26,7 +26,7 @@
 #include <maps_service_internal.h>
 
 /**
- *
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_AND_PROVIDERS_MODULE Maps Plugin and Providers
  *
@@ -43,6 +43,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The Maps Plugin handle.
  * @details The handle of Maps Plugin instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -55,6 +56,7 @@ typedef void *maps_plugin_h;
  */
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Initialize a new Maps Plugin.
  * @details A maps plugin handle can be used to access a specified plugin.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -74,6 +76,7 @@ typedef void *maps_plugin_h;
 int maps_plugin_init(maps_plugin_h *plugin);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the Maps Plugin handle.
  * @details This function destroys the maps plugin handle and releases all its
  * resources.
@@ -90,6 +93,7 @@ int maps_plugin_init(maps_plugin_h *plugin);
 int maps_plugin_shutdown(maps_plugin_h plugin);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Returns a plugin info.
  * @details This function returns a plugin info.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -112,6 +116,7 @@ int maps_plugin_get_info(maps_plugin_info_h *info);
  */
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the Maps Key to be used in the Maps Plugin requests.
  * @details This function sets the Maps Key which will be used in each Maps
  * Plugin request to Maps Provider.
@@ -133,6 +138,7 @@ int maps_plugin_get_info(maps_plugin_info_h *info);
 int maps_plugin_set_provider_key(const char *provider_key);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the Maps Key which is to be used in the Maps Service
  * requests
  * @details This function gets the Maps Key which is to be used in each Maps
@@ -152,6 +158,7 @@ int maps_plugin_set_provider_key(const char *provider_key);
 int maps_plugin_get_provider_key(char **provider_key);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the Maps Preference.
  * @details This function sets the Maps Preferences which are used in each Maps
  * Plugin request to Maps Provider.
@@ -169,6 +176,7 @@ int maps_plugin_get_provider_key(char **provider_key);
 int maps_plugin_set_preference(maps_item_hashtable_h preference);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the Maps Preference.
  * @details This function gets the Maps Preferences which are used in each Maps
  * Plugin request to Maps Provider.
@@ -187,6 +195,7 @@ int maps_plugin_set_preference(maps_item_hashtable_h preference);
 int maps_plugin_get_preference(maps_item_hashtable_h *preference);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Checks if the Maps Plugin supports a request.
  * @details This function checks if the Maps Plugin supports a specified request.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -205,6 +214,7 @@ int maps_plugin_get_preference(maps_item_hashtable_h *preference);
 int maps_plugin_is_service_supported(maps_service_e service, bool *supported);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Checks if the Maps Plugin supports a data feature.
  * @details This function checks if the Maps Plugin supports a specified data feature.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -228,6 +238,7 @@ int maps_plugin_is_data_supported(maps_service_data_e data, bool *supported);
  */
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the position coordinates for a given address.
  * @details This function obtains position coordinates for a given free-formed
  * address string.
@@ -266,6 +277,7 @@ int maps_plugin_is_data_supported(maps_service_data_e data, bool *supported);
 int maps_plugin_geocode(const char *address, const maps_item_hashtable_h preference, maps_service_geocode_cb callback, void *user_data, int *request_id);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the position for a given address, within the specified
  * bounding box.
  * @details This function obtains position coordinates for a given free-formed
@@ -311,6 +323,7 @@ int maps_plugin_geocode(const char *address, const maps_item_hashtable_h prefere
 int maps_plugin_geocode_inside_area(const char *address, const maps_area_h bounds, const maps_item_hashtable_h preference, maps_service_geocode_cb callback, void *user_data, int *request_id);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the position coordinates for a given address.
  * @details This function obtains position coordinates for a given structured
  * address.
@@ -350,6 +363,7 @@ int maps_plugin_geocode_inside_area(const char *address, const maps_area_h bound
 int maps_plugin_geocode_by_structured_address(const maps_address_h address, const maps_preference_h preference, maps_service_geocode_cb callback, void *user_data, int *request_id);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the address for a given position coordinates.
  * @details This function obtains structured address information for a given
  * position coordinates.
@@ -388,6 +402,7 @@ int maps_plugin_geocode_by_structured_address(const maps_address_h address, cons
 int maps_plugin_reverse_geocode(double latitude, double longitude, const maps_item_hashtable_h preference, maps_service_reverse_geocode_cb callback, void *user_data, int *request_id);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the address list for a given position coordinates list.
  * @details This function obtains structured address information for a given
  * position coordinates.
@@ -430,6 +445,7 @@ int maps_plugin_multi_reverse_geocode(const maps_coordinates_list_h geocode_list
  */
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Queries a Place information by a coordinates position and a
  * distance.
  * @details This function obtains the Place information for a specified distance
@@ -473,6 +489,7 @@ int maps_plugin_multi_reverse_geocode(const maps_coordinates_list_h geocode_list
 int maps_plugin_search_place(const maps_coordinates_h position, int distance, const maps_place_filter_h filter, maps_preference_h preference, maps_service_search_place_cb callback, void *user_data, int *request_id);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Queries a Place information by a coordinates boundary.
  * @details This function obtains the Place information for a specified
  * coordinates boundary.
@@ -515,6 +532,7 @@ int maps_plugin_search_place(const maps_coordinates_h position, int distance, co
 int maps_plugin_search_place_by_area(const maps_area_h boundary, const maps_place_filter_h filter, maps_preference_h preference, maps_service_search_place_cb callback, void *user_data, int *request_id);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Queries a Place information by a free-formed address string.
  * @details This function obtains the Place information for a specified free-
  * formed address string.
@@ -558,6 +576,7 @@ int maps_plugin_search_place_by_area(const maps_area_h boundary, const maps_plac
 int maps_plugin_search_place_by_address(const char *address, const maps_area_h boundary, const maps_place_filter_h filter, maps_preference_h preference, maps_service_search_place_cb callback, void *user_data, int *request_id);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Queries a brief Place information by a coordinates boundary.
  * @details This function obtains the brief Place information for a specified coordinates boundary.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -595,6 +614,7 @@ int maps_plugin_search_place_by_address(const char *address, const maps_area_h b
 int maps_plugin_search_place_list(const maps_area_h boundary, const maps_place_filter_h filter, maps_preference_h preference, maps_service_search_place_list_cb callback, void *user_data, int *request_id);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Queries a Detail place information by a place uri.
  * @details This function obtains the Detail place information for a specified place uri
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -637,6 +657,7 @@ int maps_plugin_get_place_details(const char *url, maps_service_get_place_detail
  */
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Queries the Route from origin coordinate to a destination.
  * @details This function obtains the Route information for a specified origin
  * and destination coordinates.
@@ -674,6 +695,7 @@ int maps_plugin_get_place_details(const char *url, maps_service_get_place_detail
 int maps_plugin_search_route(const maps_coordinates_h origin, const maps_coordinates_h destination, maps_preference_h preference, maps_service_search_route_cb callback, void *user_data, int *request_id);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Queries the Route, passing through a specified way points.
  * @details This function obtains the Route information for the Route, passing
  * through a specified set of way points.
@@ -716,6 +738,7 @@ int maps_plugin_search_route_waypoints(const maps_coordinates_h *waypoint_list,
  */
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Cancels the service request.
  * @details This function cancels the service request initiated by geocode,
  * route or place search.
@@ -764,6 +787,7 @@ int maps_plugin_cancel_request(int request_id);
 /*----------------------------------------------------------------------------*/
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when the map initializing is finished.
  * @details The Plugin invokes this callback when the initializing of map is finished.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -777,6 +801,7 @@ int maps_plugin_cancel_request(int request_id);
 typedef void(*maps_plugin_map_view_ready_cb) (maps_view_h view);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Create a maps view.
  * @details This function create a maps view to the plugin.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -794,6 +819,7 @@ typedef void(*maps_plugin_map_view_ready_cb) (maps_view_h view);
 int maps_plugin_create_map_view(maps_view_h view, maps_plugin_map_view_ready_cb callback);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroy a maps view.
  * @details This function destroy a maps view to the plugin.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -810,6 +836,7 @@ int maps_plugin_create_map_view(maps_view_h view, maps_plugin_map_view_ready_cb
 int maps_plugin_destroy_map_view(maps_view_h view);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Request a map rendering.
  * @details This function request a draw routine of the map location with a
  * specified zoom factor and rotation angle.
@@ -834,6 +861,7 @@ int maps_plugin_destroy_map_view(maps_view_h view);
 int maps_plugin_render_map(maps_view_h view, const maps_coordinates_h coordinates, double zoom_factor, double rotation_angle);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Request the Plugin to move a map on a given delta.
  * @details This function request the Plugin to move a map on a given delta
  * screen coordinates. The current values of zoom or orientation are
@@ -859,6 +887,7 @@ int maps_plugin_render_map(maps_view_h view, const maps_coordinates_h coordinate
 int maps_plugin_move_center(maps_view_h view, int delta_x, int delta_y);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enables or disables the scalebar.
  * @details This function enables or disables the scalebar.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -877,6 +906,7 @@ int maps_plugin_move_center(maps_view_h view, int delta_x, int delta_y);
 int maps_plugin_set_scalebar(maps_view_h view, bool enable);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Checks whether the scalebar is enabled or not.
  * @details This function checks whether the scalebar is enabled or not.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -893,6 +923,7 @@ int maps_plugin_set_scalebar(maps_view_h view, bool enable);
 int maps_plugin_get_scalebar(maps_view_h view, bool *enabled);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Notifies that the visual object is changed.
  * @details This function notifies the Plugin that the visual object is
  * changed. The possible causes of changes are enumerated in
@@ -913,6 +944,7 @@ int maps_plugin_get_scalebar(maps_view_h view, bool *enabled);
 int maps_plugin_on_object(maps_view_h view, const maps_view_object_h object, maps_view_object_operation_e operation);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Converts screen coordinates to the geographical coordinates.
  * @details This function converts screen coordinates to the geographical
  * coordinates accordingly to the current maps settings.
@@ -934,6 +966,7 @@ int maps_plugin_on_object(maps_view_h view, const maps_view_object_h object, map
 int maps_plugin_screen_to_geography(maps_view_h view, int x, int y, maps_coordinates_h* coordinates);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Converts geographical coordinates to the screen coordinates.
  * @details This function converts geographical coordinates to the screen
  * coordinates accordingly to the current maps settings.
@@ -955,6 +988,7 @@ int maps_plugin_screen_to_geography(maps_view_h view, int x, int y, maps_coordin
 int maps_plugin_geography_to_screen(maps_view_h view, const maps_coordinates_h coordinates, int* x, int* y);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the minimal zooms level of the Map.
  * @details This function gets the minimally available zoom level of the Map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -969,6 +1003,7 @@ int maps_plugin_geography_to_screen(maps_view_h view, const maps_coordinates_h c
 int maps_plugin_get_min_zoom_level(maps_view_h view, int *min_zoom_level);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the maximal zooms level of the Map.
  * @details This function gets the maximally available zoom level of the Map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -983,6 +1018,7 @@ int maps_plugin_get_min_zoom_level(maps_view_h view, int *min_zoom_level);
 int maps_plugin_get_max_zoom_level(maps_view_h view, int *max_zoom_level);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the central coordinates of a Map.
  * @details This function gets the central coordinates of a Map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -1002,6 +1038,7 @@ int maps_plugin_get_max_zoom_level(maps_view_h view, int *max_zoom_level);
 int maps_plugin_get_center(maps_view_h view, maps_coordinates_h *coordinates);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets raw pixels of the Map.
  * @details This function gets raw pixels of the Map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
index e61dfbb..62abdec 100644 (file)
@@ -18,7 +18,7 @@
 #define __MAPS_SERVICE_PLUGIN_INFO_H__
 
 /**
- *
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_AND_PROVIDERS_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_INFO_MODULE Plugin info
  *
@@ -35,6 +35,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The Maps Plugin Info handle
  * @details The handle of Maps Plugin Info instance.
  * @remarks To create the handle use maps_plugin_info_create().
@@ -51,6 +52,7 @@ typedef void *maps_plugin_info_h;
 /*----------------------------------------------------------------------------*/
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new plugin info handle.
  * @details This function creates a new plugin info handle and allocates all
  * needed resources.
@@ -71,6 +73,7 @@ typedef void *maps_plugin_info_h;
 int maps_plugin_info_create(maps_plugin_info_h *info);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the plugin info handle and releases all its resources.
  * @details This function destroys the plugin info handle and releases all its
  * resources.
@@ -90,6 +93,7 @@ int maps_plugin_info_create(maps_plugin_info_h *info);
 int maps_plugin_info_destroy(maps_plugin_info_h info);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the plugin info handle.
  * @details This function clones the plugin info handle @a origin and all its
  * resources.
@@ -114,6 +118,7 @@ int maps_plugin_info_clone(const maps_plugin_info_h origin, maps_plugin_info_h *
 /*----------------------------------------------------------------------------*/
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the plugin provider name.
  * @details This function gets the plugin provider name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -133,6 +138,7 @@ int maps_plugin_info_clone(const maps_plugin_info_h origin, maps_plugin_info_h *
 int maps_plugin_info_get_provider_name(const maps_plugin_info_h info, char **provider_name);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the plugin provider name.
  * @details This function sets the plugin provider name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index 67ac6c2..8d6a7ad 100644 (file)
@@ -24,6 +24,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_CONTAINERS_MODULE
  * @defgroup CAPI_MAPS_CONTAINERS_MODULE_OBJECT_LIST Maps Object Lists
  *
@@ -36,6 +37,7 @@ extern "C" {
  */
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Structure of the coordinates list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @remarks #maps_coordinates_list_h is a void pointer to the #maps_coordinates_list_s.
@@ -46,6 +48,7 @@ extern "C" {
 typedef GList maps_coordinates_list_s;
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Structure of the address list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @remarks #maps_address_list_h is a void pointer to the #maps_address_list_s.
index 88a140a..869c302 100644 (file)
@@ -28,6 +28,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @defgroup CAPI_MAPS_PREFERENCE_MODULE Preference
  * @file maps_preference.h
@@ -55,6 +56,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Definition for the name of the preference indicating place type while searching the place.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -62,6 +64,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Definition for the name of the preference indicating sorting key while searching the place.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -69,6 +72,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Definition for the name of the preference indicating free-form address to avoid while computing the route.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -76,6 +80,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Definition for the name of the preference indicating structured address to avoid while computing the route.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -83,6 +88,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Definition for the name of the preference indicating circular geographical area to avoid while computing the route.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -90,6 +96,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Definition for the name of the preference indicating rectangular geographical area to avoid while computing the route.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  * @remarks The values are consist of top-left and bottom-right geo-coordinates, and comma or semicolon are used to delimit each value.\n
@@ -100,6 +107,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Definition for the name of the preference indicating that route should be computed within a specified bounding box.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -107,6 +115,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Definition for the name of the preference indicating that geometry parameters should be retrieved while route processing.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -114,6 +123,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Definition for the name of the preference indicating that route should be computed with geometry instructions.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -121,6 +131,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Definition for the name of the preference indicating that route should be computed with bounding box instructions.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -128,6 +139,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Definition for the name of the preference indicating that route should be computed correspondingly to retrieval instructions.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -135,6 +147,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Definition for the name of the preference indicating that route should be computed in accordance to real time traffic.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  * @remarks To enable realtime traffic, set the value to "true".
@@ -144,6 +157,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The Maps Preference handle.
  * @details The Maps Preference handle can be obtained via call of maps_preference_create().\n
  *          To release the handle use maps_preference_destroy().\n
@@ -157,6 +171,7 @@ typedef void *maps_preference_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumeration for allowed distance units.
  * @details This enumeration represents allowed distance units used in Maps Services.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -171,6 +186,7 @@ typedef enum _maps_distance_unit_e {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumeration for allowed route optimization option.
  * @details This enumeration represents allowed route optimization option used in Route Service.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -189,6 +205,7 @@ typedef enum _maps_route_optimization_e {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumeration for preferable route types.
  * @details This enumeration represents allowed route types used in Route Service.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -206,6 +223,7 @@ typedef enum _maps_route_transport_mode_e {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumeration for route feature weights.
  * @details This enumeration represents allowed route feature weights used in Route Service.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -223,6 +241,7 @@ typedef enum _maps_route_feature_weight_e {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumeration for route features.
  * @details This enumeration represents allowed route features used in Route Service.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -249,6 +268,7 @@ typedef enum _maps_route_request_feature_e {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when requesting the list of Maps Properties.
  * @details This callback is invoked while iterating through the list of Maps Properties.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -270,6 +290,7 @@ typedef bool(*maps_preference_properties_cb) (int index, int total, char *key, c
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new maps preference handle.
  * @details This function creates a new maps preference handle and allocates all needed resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -289,6 +310,7 @@ int maps_preference_create(maps_preference_h *preference);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the maps preference handle and releases all its resources.
  * @details This function destroys the maps preference handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -304,6 +326,7 @@ int maps_preference_destroy(maps_preference_h preference);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the maps preference handle.
  * @details This function clones the maps preference handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -325,6 +348,7 @@ int maps_preference_clone(const maps_preference_h origin, maps_preference_h *clo
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the distance unit.
  * @details This function gets the maps distance unit.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -340,6 +364,7 @@ int maps_preference_get_distance_unit(const maps_preference_h preference, maps_d
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the language.
  * @details This function gets the maps language.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -356,6 +381,7 @@ int maps_preference_get_language(const maps_preference_h preference, char **lang
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the max amount of results.
  * @details This function gets the max amount of results.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -371,6 +397,7 @@ int maps_preference_get_max_results(const maps_preference_h preference, int *max
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the country code.
  * @details This function gets the country code.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -387,6 +414,7 @@ int maps_preference_get_country_code(const maps_preference_h preference, char **
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route optimization.
  * @details This function gets the route optimization.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -402,6 +430,7 @@ int maps_preference_get_route_optimization(const maps_preference_h preference, m
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route transport mode.
  * @details This function gets the route transport mode.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -417,6 +446,7 @@ int maps_preference_get_route_transport_mode(const maps_preference_h preference,
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route feature weight.
  * @details This function gets the route feature weight.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -432,6 +462,7 @@ int maps_preference_get_route_feature_weight(const maps_preference_h preference,
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route feature.
  * @details This function gets the route feature.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -447,6 +478,7 @@ int maps_preference_get_route_feature(const maps_preference_h preference, maps_r
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the enable status of alternative routes.
  * @details This function retrieves the enable status of alternative route.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -462,6 +494,7 @@ int maps_preference_get_route_alternatives_enabled(const maps_preference_h prefe
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the maps preference value by key.
  * @details This function gets the maps preference value by key.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -479,6 +512,7 @@ int maps_preference_get(const maps_preference_h preference, const char *key, cha
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Retrieves all maps properties.
  * @details This function retrieves all maps properties.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -502,6 +536,7 @@ int maps_preference_foreach_property(const maps_preference_h preference, maps_pr
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the maps distance unit.
  * @details This function sets the maps distance unit.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -520,6 +555,7 @@ int maps_preference_set_distance_unit(maps_preference_h preference, const maps_d
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the maps language.
  * @details This function sets the maps language.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -543,6 +579,7 @@ int maps_preference_set_language(maps_preference_h preference, const char *langu
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the max amount of results.
  * @details This function sets the max amount of results.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -561,6 +598,7 @@ int maps_preference_set_max_results(maps_preference_h preference, const int max_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the maps country code.
  * @details This function sets the maps country code.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -579,6 +617,7 @@ int maps_preference_set_country_code(maps_preference_h preference, const char *c
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route optimization.
  * @details This function sets the route optimization.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -597,6 +636,7 @@ int maps_preference_set_route_optimization(maps_preference_h preference, const m
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route transport mode.
  * @details This function sets the route transport mode.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -615,6 +655,7 @@ int maps_preference_set_route_transport_mode(maps_preference_h preference, const
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route feature weight.
  * @details This function sets the route feature weight.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -633,6 +674,7 @@ int maps_preference_set_route_feature_weight(maps_preference_h preference, const
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route feature.
  * @details This function sets the route feature.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -651,6 +693,7 @@ int maps_preference_set_route_feature(maps_preference_h preference, const maps_r
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the enable status of alternative routes.
  * @details This function sets the alternative routes status.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -669,6 +712,7 @@ int maps_preference_set_route_alternatives_enabled(maps_preference_h preference,
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the preference value by key.
  * @details This function sets the preference value assigned with a specified key.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index 411d011..870552f 100644 (file)
@@ -27,6 +27,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_ROUTE_MODULE
  * @defgroup CAPI_MAPS_ROUTE_DATA_MODULE Route
  * @file maps_route.h
@@ -43,6 +44,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The Route handle.
  * @details The handle of Route instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -58,6 +60,7 @@ typedef void *maps_route_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when requesting the path of the Route.
  * @details This callback is invoked while iterating through the list of coordinates, composing the Route.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -77,6 +80,7 @@ typedef bool(*maps_route_path_cb) (int index, int total, maps_coordinates_h coor
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when requesting the segments of the Route.
  * @details This callback is invoked while iterating through the list of segments, composing the Route.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -96,6 +100,7 @@ typedef bool(*maps_route_segment_cb) (int index, int total, maps_route_segment_h
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when requesting the list of Route Properties.
  * @details This callback is invoked while iterating through the list of Route Properties.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -118,6 +123,7 @@ typedef bool(*maps_route_properties_cb) (int index, int total, char *key, void *
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the route handle and releases all its resources.
  * @details This function destroys the route handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -133,6 +139,7 @@ int maps_route_destroy(maps_route_h route);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the route handle.
  * @details This function clones the route handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -154,6 +161,7 @@ int maps_route_clone(const maps_route_h origin, maps_route_h *cloned);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route ID.
  * @details This function gets the route ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -170,6 +178,7 @@ int maps_route_get_route_id(const maps_route_h route, char **route_id);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route origin.
  * @details This function gets the route origin.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -188,6 +197,7 @@ int maps_route_get_origin(const maps_route_h route, maps_coordinates_h *origin);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route destination.
  * @details This function gets the route destination.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -206,6 +216,7 @@ int maps_route_get_destination(const maps_route_h route, maps_coordinates_h *des
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route bounding box.
  * @details This function gets the route bounding box.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -223,6 +234,7 @@ int maps_route_get_bounding_box(const maps_route_h route, maps_area_h *bounding_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route transport mode.
  * @details This function gets the route transport mode.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -239,6 +251,7 @@ int maps_route_get_transport_mode(const maps_route_h route, maps_route_transport
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route total distance.
  * @details This function gets the route total distance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -255,6 +268,7 @@ int maps_route_get_total_distance(const maps_route_h route, double *total_distan
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route total duration.
  * @details This function gets the route total duration.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -271,6 +285,7 @@ int maps_route_get_total_duration(const maps_route_h route, long *total_duration
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route distance units.
  * @details This function gets the route distance units.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -287,6 +302,7 @@ int maps_route_get_distance_unit(const maps_route_h route, maps_distance_unit_e
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Retrieves all properties.
  * @details This function retrieves all route properties.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -307,6 +323,7 @@ int maps_route_foreach_property(const maps_route_h route, maps_route_properties_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Retrieves all coordinates of the path.
  * @details This function retrieves all coordinates of the route path.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -327,6 +344,7 @@ int maps_route_foreach_path(const maps_route_h route, maps_route_path_cb callbac
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Retrieves all segments of the route.
  * @details This function retrieves all segments of the route.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index 5dd6085..53bfe7c 100644 (file)
@@ -23,6 +23,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_ROUTE_MODULE
  * @defgroup CAPI_MAPS_ROUTE_MANEUVER_MODULE Maneuver
  * @file maps_route_maneuver.h
@@ -39,6 +40,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The Route Maneuver handle.
  * @details The handle of Route Maneuver instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -51,6 +53,7 @@ typedef void *maps_route_maneuver_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumeration for direction type.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -68,6 +71,7 @@ typedef enum {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumeration for the turn type.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -94,6 +98,7 @@ typedef enum {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the route Maneuver handle and releases all its resources.
  * @details This function destroys the route Maneuver handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -109,6 +114,7 @@ int maps_route_maneuver_destroy(maps_route_maneuver_h maneuver);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the route Maneuver handle.
  * @details This function clones the route Maneuver handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -130,6 +136,7 @@ int maps_route_maneuver_clone(const maps_route_maneuver_h origin, maps_route_man
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route Maneuver direction ID.
  * @details This function gets the route Maneuver direction ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -146,6 +153,7 @@ int maps_route_maneuver_get_direction_id(const maps_route_maneuver_h maneuver, m
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route Maneuver turn type.
  * @details This function gets the route Maneuver turn type.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -162,6 +170,7 @@ int maps_route_maneuver_get_turn_type(const maps_route_maneuver_h maneuver, maps
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route Maneuver position.
  * @details This function gets the route Maneuver position.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -179,6 +188,7 @@ int maps_route_maneuver_get_position(const maps_route_maneuver_h maneuver, maps_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the road name of the route Maneuver.
  * @details This function gets the road name of the route Maneuver.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -195,7 +205,7 @@ int maps_route_maneuver_get_road_name(const maps_route_maneuver_h maneuver, char
 
 
 /**
- *
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the instruction text (narrative) of the route Maneuver.
  * @details This function gets the instruction text (narrative) of the route Maneuver.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -212,6 +222,7 @@ int maps_route_maneuver_get_instruction_text(const maps_route_maneuver_h maneuve
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route Maneuver locale.
  * @details This function gets the route Maneuver locale.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -228,6 +239,7 @@ int maps_route_maneuver_get_locale(const maps_route_maneuver_h maneuver, char **
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the time to next instruction of the route Maneuver.
  * @details This function gets the time to next instruction of the route Maneuver.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -243,6 +255,7 @@ int maps_route_maneuver_get_time_to_next_instruction(const maps_route_maneuver_h
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the distance to next instruction of the route Maneuver.
  * @details This function gets the distance to next instruction of the route Maneuver.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index 495446e..dac33af 100644 (file)
@@ -20,6 +20,7 @@
 #include <maps_route_maneuver.h>
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_ROUTE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_ROUTE_MANEUVER_MODULE Maneuver
  *
@@ -37,6 +38,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new route maneuver handle.
  * @details This function creates a new route maneuver handle and allocates all
  * needed resources.
@@ -57,6 +59,7 @@ extern "C" {
 int maps_route_maneuver_create(maps_route_maneuver_h *maneuver);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route maneuver direction ID.
  * @details This function sets the route maneuver direction ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -77,6 +80,7 @@ int maps_route_maneuver_create(maps_route_maneuver_h *maneuver);
 int maps_route_maneuver_set_direction_id(maps_route_maneuver_h maneuver, const maps_route_direction_e direction_id);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route maneuver turn type.
  * @details This function sets the route maneuver turn type.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -97,6 +101,7 @@ int maps_route_maneuver_set_direction_id(maps_route_maneuver_h maneuver, const m
 int maps_route_maneuver_set_turn_type(maps_route_maneuver_h maneuver, const maps_route_turn_type_e turn_type);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route maneuver road name.
  * @details This function sets the route maneuver road name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -116,6 +121,7 @@ int maps_route_maneuver_set_turn_type(maps_route_maneuver_h maneuver, const maps
 int maps_route_maneuver_set_road_name(maps_route_maneuver_h maneuver, const char *road_name);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route maneuver instruction text.
  * @details This function sets the route maneuver instruction text.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -135,6 +141,7 @@ int maps_route_maneuver_set_road_name(maps_route_maneuver_h maneuver, const char
 int maps_route_maneuver_set_instruction_text(maps_route_maneuver_h maneuver, const char *instruction_text);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route maneuver locale.
  * @details This function sets the route maneuver locale.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -154,6 +161,7 @@ int maps_route_maneuver_set_instruction_text(maps_route_maneuver_h maneuver, con
 int maps_route_maneuver_set_locale(maps_route_maneuver_h maneuver, const char *locale);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route maneuver position.
  * @details This function sets the route maneuver position.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -173,6 +181,7 @@ int maps_route_maneuver_set_locale(maps_route_maneuver_h maneuver, const char *l
 int maps_route_maneuver_set_position(maps_route_maneuver_h maneuver, const maps_coordinates_h position);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the time to next instruction in route maneuver.
  * @details This function sets the time to next instruction in route maneuver.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -192,6 +201,7 @@ int maps_route_maneuver_set_position(maps_route_maneuver_h maneuver, const maps_
 int maps_route_maneuver_set_time_to_next_instruction(maps_route_maneuver_h maneuver, const int time_to_next_instruction);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the distance to next instruction in route maneuver.
  * @details This function sets the distance to next instruction in route
  * maneuver.
index 219ede4..3b318a6 100644 (file)
@@ -26,7 +26,7 @@
  */
 
 /**
- *
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_ROUTE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_ROUTE_DATA_MODULE Route
  *
@@ -45,6 +45,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new route handle.
  * @details This function creates a new route handle and allocates all needed
  * resources.
@@ -65,6 +66,7 @@ extern "C" {
 int maps_route_create(maps_route_h *route);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route ID.
  * @details This function sets the route ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -84,6 +86,7 @@ int maps_route_create(maps_route_h *route);
 int maps_route_set_route_id(maps_route_h route, const char *id);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route origin.
  * @details This function sets the route origin.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -104,6 +107,7 @@ int maps_route_set_route_id(maps_route_h route, const char *id);
 int maps_route_set_origin(maps_route_h route, const maps_coordinates_h origin);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route destination.
  * @details This function sets the route destination.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -124,6 +128,7 @@ int maps_route_set_origin(maps_route_h route, const maps_coordinates_h origin);
 int maps_route_set_destination(maps_route_h route, const maps_coordinates_h destination);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route bounding box.
  * @details This function sets the route bounding box.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -143,6 +148,7 @@ int maps_route_set_destination(maps_route_h route, const maps_coordinates_h dest
 int maps_route_set_bounding_box(maps_route_h route, const maps_area_h bounding_box);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route total distance.
  * @details This function sets the route total distance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -162,6 +168,7 @@ int maps_route_set_bounding_box(maps_route_h route, const maps_area_h bounding_b
 int maps_route_set_total_distance(maps_route_h route, const double total_distance);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route total duration.
  * @details This function sets the route total duration.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -181,6 +188,7 @@ int maps_route_set_total_distance(maps_route_h route, const double total_distanc
 int maps_route_set_total_duration(maps_route_h route, const long total_duration);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route transport mode.
  * @details This function sets the route transport mode.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -201,6 +209,7 @@ int maps_route_set_total_duration(maps_route_h route, const long total_duration)
 int maps_route_set_transport_mode(maps_route_h route, const maps_route_transport_mode_e transport_mode);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route distance units.
  * @details This function sets the route distance units.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -221,6 +230,7 @@ int maps_route_set_transport_mode(maps_route_h route, const maps_route_transport
 int maps_route_set_distance_unit(maps_route_maneuver_h maneuver, const maps_distance_unit_e distance_unit);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route path.
  * @details This function sets the route path.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -240,6 +250,7 @@ int maps_route_set_distance_unit(maps_route_maneuver_h maneuver, const maps_dist
 int maps_route_set_path(maps_route_h route, const maps_item_list_h path);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route segment list.
  * @details This function sets the route segment list.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -260,6 +271,7 @@ int maps_route_set_path(maps_route_h route, const maps_item_list_h path);
 int maps_route_set_segments(maps_route_h route, const maps_item_list_h segments);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route properties.
  * @details This function sets the route properties.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index 592e2b0..0c3e8d1 100644 (file)
@@ -26,6 +26,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_ROUTE_MODULE
  * @defgroup CAPI_MAPS_ROUTE_SEGMENT_MODULE Segment
  * @file maps_route_segment.h
@@ -43,6 +44,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The Route Segment handle.
  * @details The handle of Route Segment instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -55,6 +57,7 @@ typedef void *maps_route_segment_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when requesting the path of the Route Segment.
  * @details This callback is invoked while iterating through the list of coordinates, composing the Route Segment.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -74,6 +77,7 @@ typedef bool(*maps_route_segment_path_cb) (int index, int total, maps_coordinate
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when requesting the Maneuvers of the Route Segment.
  * @details This callback is invoked while iterating through the list of Maneuvers, composing the Route Segment.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -96,6 +100,7 @@ typedef bool(*maps_route_segment_maneuver_cb) (int index, int total, maps_route_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the route segment handle and releases all its resources.
  * @details This function destroys the route segment handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -111,6 +116,7 @@ int maps_route_segment_destroy(maps_route_segment_h segment);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the route segment handle.
  * @details This function clones the route handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -132,6 +138,7 @@ int maps_route_segment_clone(const maps_route_segment_h origin, maps_route_segme
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route segment origin.
  * @details This function gets the route segment origin.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -149,6 +156,7 @@ int maps_route_segment_get_origin(const maps_route_segment_h segment, maps_coord
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route segment destination.
  * @details This function gets the route segment destination.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -166,6 +174,7 @@ int maps_route_segment_get_destination(const maps_route_segment_h segment, maps_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route segment bounding box.
  * @details This function gets the route segment bounding box.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -183,6 +192,7 @@ int maps_route_segment_get_bounding_box(const maps_route_segment_h segment, maps
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route segment distance.
  * @details This function gets the route segment distance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -198,6 +208,7 @@ int maps_route_segment_get_distance(const maps_route_segment_h segment, double *
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the route segment duration.
  * @details This function gets the route segment duration.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -213,6 +224,7 @@ int maps_route_segment_get_duration(const maps_route_segment_h segment, long *du
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Retrieves all coordinates of the path.
  * @details This function retrieves all coordinates of the route segment path.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -233,6 +245,7 @@ int maps_route_segment_foreach_path(const maps_route_segment_h segment, maps_rou
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Retrieves all Maneuvers of the path.
  * @details This function retrieves all Maneuvers of the route segment path.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index 2c4ad9e..a173d6c 100644 (file)
@@ -20,6 +20,7 @@
 #include <maps_route_segment.h>
 #include <maps_extra_types.h>
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_ROUTE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_ROUTE_SEGMENT_MODULE Segment
  *
@@ -37,6 +38,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new route segment handle.
  * @details This function creates a new route segment handle and allocates all
  * needed resources.
@@ -57,6 +59,7 @@ extern "C" {
 int maps_route_segment_create(maps_route_segment_h *segment);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route segment origin.
  * @details This function sets the route segment origin.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -76,6 +79,7 @@ int maps_route_segment_create(maps_route_segment_h *segment);
 int maps_route_segment_set_origin(maps_route_segment_h segment, const maps_coordinates_h origin);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route segment destination.
  * @details This function sets the route segment destination.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -95,6 +99,7 @@ int maps_route_segment_set_origin(maps_route_segment_h segment, const maps_coord
 int maps_route_segment_set_destination(maps_route_segment_h segment, const maps_coordinates_h destination);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route segment bounding box.
  * @details This function sets the route segment bounding box.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -114,6 +119,7 @@ int maps_route_segment_set_destination(maps_route_segment_h segment, const maps_
 int maps_route_segment_set_bounding_box(maps_route_segment_h segment, const maps_area_h bounding_box);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route segment distance.
  * @details This function sets the route segment distance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -133,6 +139,7 @@ int maps_route_segment_set_bounding_box(maps_route_segment_h segment, const maps
 int maps_route_segment_set_distance(maps_route_segment_h segment, const double distance);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route segment duration.
  * @details This function sets the route segment duration.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -152,6 +159,7 @@ int maps_route_segment_set_distance(maps_route_segment_h segment, const double d
 int maps_route_segment_set_duration(maps_route_segment_h segment, const long duration);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route segment path.
  * @details This function sets the route segment path.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -171,6 +179,7 @@ int maps_route_segment_set_duration(maps_route_segment_h segment, const long dur
 int maps_route_segment_set_path(maps_route_segment_h segment, const maps_item_list_h path);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the route segment maneuver list.
  * @details This function sets the route segment maneuver list.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
index db2aa2d..f9a6e74 100644 (file)
@@ -32,7 +32,7 @@
 
 
 /**
- *
+ * @deprecated Deprecated since 7.5.
  * @file maps_service.h
  * @brief This file contains the top level functions of Maps API
  *
@@ -51,6 +51,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @defgroup CAPI_MAPS_SERVICE_AND_PREFERENCE_MODULE Service and Providers
  * @addtogroup CAPI_MAPS_SERVICE_AND_PREFERENCE_MODULE
@@ -60,6 +61,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumeration for maps requests available in the Maps Service.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -84,6 +86,7 @@ typedef enum _maps_service_e {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumeration for maps features available in the Maps Service.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -110,6 +113,7 @@ typedef enum _maps_service_data_e {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when requesting available Maps Providers.
  * @details A Maps Service invokes this callback iteratively as long as available Maps Providers exist.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -126,6 +130,7 @@ typedef bool(*maps_service_provider_info_cb) (char *maps_provider, void *user_da
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets available Maps Providers.
  * @details This function delivers available Maps Providers via maps_service_provider_info_cb() callback.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -145,6 +150,7 @@ int maps_service_foreach_provider(maps_service_provider_info_cb callback, void *
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called with the information about user's consent.
  * @details The Maps Service invokes this callback when the information about user's consent is obtained.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -159,6 +165,7 @@ typedef void(*maps_service_request_user_consent_cb) (bool consented, const char
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the user's consent to use maps data.
  * @details The function gets information whether the user agreed that the application can use maps data.
  *          If maps_service_request_user_consent() is called when the user didn't agree yet, a popup is shown and
@@ -188,6 +195,7 @@ int maps_service_request_user_consent(const char *maps_provider, maps_service_re
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new Maps Service and assigns it with a handle.
  * @details While Maps Service is being created, a Maps Provider is initialized and linked with Maps Service handle.
  *          A Maps Service handle is used to query Maps Provider performing services, such as Geocoding, Searching Places, and Routing.
@@ -232,6 +240,7 @@ int maps_service_create(const char *maps_provider, maps_service_h *maps);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the Maps Service handle and releases all its resources.
  * @details This function releases all used resources of the Maps Service and Maps Provider.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -251,6 +260,7 @@ int maps_service_destroy(maps_service_h maps);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the Maps Key to be used in the requests of Maps Service.
  * @details This function sets the Maps Provider's Key which will be used in each Maps Service request to Maps Provider.\n
  *          Maps Key can be obtained with maps_service_get_provider_key().
@@ -276,6 +286,7 @@ int maps_service_set_provider_key(maps_service_h maps, const char *provider_key)
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the Maps Key which is to be used in the Maps Service requests
  * @details This function gets the Maps Key which is to be used in each Maps Service request to Maps Provider.\n
  *          Maps Key can be set with maps_service_set_provider_key().
@@ -297,6 +308,7 @@ int maps_service_get_provider_key(const maps_service_h maps, char **provider_key
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the Maps Preference.
  * @details This function sets the Maps Preferences which are used in each Maps Service request to Maps Provider.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -316,6 +328,7 @@ int maps_service_set_preference(maps_service_h maps, maps_preference_h preferenc
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the Maps Preference.
  * @details This function gets the Maps Preferences which are used in each Maps Service request to Maps Provider.\n
  *          Preferences can be set with maps_service_set_preference().
@@ -337,6 +350,7 @@ int maps_service_get_preference(maps_service_h maps, maps_preference_h *preferen
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Checks if the Maps Service supports a request.
  * @details This function checks if the Maps Service supports a specified request.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -356,6 +370,7 @@ int maps_service_provider_is_service_supported(const maps_service_h maps, maps_s
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Checks if the Maps Service supports a data feature.
  * @details This function checks if the Maps Service supports a specified data feature.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -381,6 +396,7 @@ int maps_service_provider_is_data_supported(const maps_service_h maps, maps_serv
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Cancels the service request.
  * @details This function cancels the service request initiated by geocoding and searching places and routes.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -437,6 +453,7 @@ int maps_service_cancel_request(const maps_service_h maps, int request_id);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @defgroup CAPI_MAPS_GEOCODER_MODULE Geocoder
  * @if WEARABLE
@@ -465,6 +482,7 @@ int maps_service_cancel_request(const maps_service_h maps, int request_id);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called once for each position coordinates converted from the given address information.
  * @details The Maps Service invokes this callback while iterating through the list of obtained coordinates of the specified place.\n
  *          If search is failed, the value of @a total is 0 and @a coordinates is NULL.
@@ -492,6 +510,7 @@ typedef bool(*maps_service_geocode_cb) (maps_error_e result, int request_id, int
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when the address information is converted from position information.
  * @details The Maps Service invokes this callback when the address is obtained from the specified coordinates.\n
  *          If search is failed, the value of @a total is 0 and @a address is NULL.
@@ -516,6 +535,7 @@ typedef void (*maps_service_reverse_geocode_cb) (maps_error_e result, int reques
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the position coordinates for a given address.\n
  *        The request is asynchronous.
  * @details This function obtains position coordinates for a given free-formed address string.
@@ -559,6 +579,7 @@ int maps_service_geocode(const maps_service_h maps, const char *address, const m
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the position for a given address within the specified bounding box.\n
  *        The request is asynchronous.
  * @details This function obtains position coordinates for a given free-formed address string within the specified bounding box.
@@ -606,6 +627,7 @@ int maps_service_geocode_inside_area(const maps_service_h maps, const char *addr
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the position coordinates for a given address.\n
  *        The request is asynchronous.
  * @details This function obtains position coordinates for a given structured address.
@@ -650,6 +672,7 @@ int maps_service_geocode_by_structured_address(const maps_service_h maps, const
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the address for a given position coordinates.\n
  *        The request is asynchronous.
  * @details This function obtains structured address information for a given position coordinates.
@@ -693,6 +716,7 @@ int maps_service_reverse_geocode(const maps_service_h maps, double latitude, dou
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when respond to a request of multi reverse geocoding.
  * @details The Maps Service invokes this callback once when gets the response from map service provider.\n
  *          The value of @a total is same with requested coordinates list size.
@@ -720,6 +744,7 @@ typedef bool (*maps_service_multi_reverse_geocode_cb) (maps_error_e result, int
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the address list for a given position coordinates list.\n
  *        The request is asynchronous.
  * @details This function obtains structured address information.
@@ -771,6 +796,7 @@ int maps_service_multi_reverse_geocode(const maps_service_h maps, maps_coordinat
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @defgroup CAPI_MAPS_PLACE_MODULE Places
  * @if WEARABLE
@@ -794,6 +820,7 @@ int maps_service_multi_reverse_geocode(const maps_service_h maps, maps_coordinat
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called for each result of Place Search request.
  * @details The Maps Service invokes this callback while iterating through the set of obtained Place data.\n
  *          If search is failed, the value of @a total is 0 and @a place is NULL.
@@ -822,6 +849,7 @@ typedef bool(*maps_service_search_place_cb) (maps_error_e error, int request_id,
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called for Place list of Place Search request.
  * @details The Maps Service invokes this callback when the Place data obtained from the specified coordinates.\n
  *          If search is failed, the value of @a total is 0 and @a place_list is NULL.
@@ -845,6 +873,7 @@ typedef void(*maps_service_search_place_list_cb) (maps_error_e error, int reques
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called for Place detail information of Place Search request.
  * @details The Maps Service invokes this callback when the Place detail data obtained from the specified uri.\n
  *          If search is failed, @a place is NULL.
@@ -866,6 +895,7 @@ typedef void(*maps_service_get_place_details_cb) (maps_error_e error, int reques
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Queries a Place information by a coordinates position and a distance.\n
  *        The request is asynchronous.
  * @details This function obtains the Place information for a specified distance around a given coordinates position.
@@ -917,6 +947,7 @@ int maps_service_search_place(const maps_service_h maps, const maps_coordinates_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Queries a Place information by a coordinates boundary.\n
  *        The request is asynchronous.
  * @details This function obtains the Place information for a specified coordinates boundary.
@@ -968,6 +999,7 @@ int maps_service_search_place_by_area(const maps_service_h maps, const maps_area
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Queries a Place information by a free-formed address string.\n
  *        The request is asynchronous.
  * @details This function obtains the Place information for a specified free-formed address string.
@@ -1020,6 +1052,7 @@ int maps_service_search_place_by_address(const maps_service_h maps, const char *
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Queries a brief Place information by a coordinates boundary./n
  *        The request is asynchronous.
  * @details This function obtains the brief Place information for a specified coordinates boundary.
@@ -1064,6 +1097,7 @@ int maps_service_search_place_list(const maps_service_h maps, const maps_area_h
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Queries a Detail Place information by a place uri.\n
  *        The request is asynchronous.
  * @details This function obtains the Detail Place information for a specified place uri.
@@ -1118,6 +1152,7 @@ int maps_service_get_place_details(const maps_service_h maps, const char *uri, m
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @defgroup CAPI_MAPS_ROUTE_MODULE Routes
  * @if WEARABLE
@@ -1142,6 +1177,7 @@ int maps_service_get_place_details(const maps_service_h maps, const char *uri, m
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when the requested routes are found.
  * @details The Maps Service invokes this callback while iterating through the set of obtained Routes.\n
  *          If search is failed, the value of @a total is 0 and @a route is NULL.
@@ -1169,6 +1205,7 @@ typedef bool(*maps_service_search_route_cb) (maps_error_e error, int request_id,
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Queries the Route from origin coordinates to destination.\n
  *        The request is asynchronous.
  * @details This function gets the Route information for a specified origin and destination coordinates.
@@ -1215,6 +1252,7 @@ int maps_service_search_route(const maps_service_h maps, const maps_coordinates_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Queries the Route, passing through a specified way points.\n
  *        The request is asynchronous.
  * @details This function gets the Route information for the Route, passing through a specified set of way points.
index 018a279..2f7d8c2 100644 (file)
@@ -19,6 +19,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @file maps_service_internal.h
  * @brief This file contains the functions related to Maps API.
  *
@@ -29,6 +30,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called with the information about user's consent.
  * @details The Maps Service invokes this callback when the information about user's consent is obtained.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -40,6 +42,7 @@ extern "C" {
 typedef void(*maps_service_request_user_consent_with_handle_cb) (bool consented, void *user_data);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a new Maps Service and assigns it with a handle.
  * @details While Maps Service is being created, a Maps Provider is initialized and linked with Maps Service handle.
  *          A Maps Service handle is used to query Maps Provider performing services, such as Geocoding, Searching Places, and Routing.
@@ -71,6 +74,7 @@ typedef void(*maps_service_request_user_consent_with_handle_cb) (bool consented,
 int maps_service_create_without_user_consent(const char *maps_provider, maps_service_h *maps);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the user's consent to use maps data.
  * @details The function gets information whether the user agreed that the application can use maps data.
  *          If maps_service_request_user_consent_with_handle() is called when the user didn't agree yet, a popup is shown and
@@ -97,6 +101,7 @@ int maps_service_create_without_user_consent(const char *maps_provider, maps_ser
 int maps_service_request_user_consent_with_handle(const maps_service_h maps, maps_service_request_user_consent_with_handle_cb callback, void *user_data);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @internal
  * @brief Gets the user's consent to use maps service.
  * @details This function gets the user's consent.
@@ -115,6 +120,7 @@ int maps_service_request_user_consent_with_handle(const maps_service_h maps, map
 int maps_service_get_user_consent(const maps_service_h maps, bool *consent);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @internal
  * @brief Sets the user's consent to use maps service.
  * @details This function sets the user's consent.
index 05caf13..3ca0c24 100644 (file)
@@ -20,6 +20,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @file maps_types.h
  * @brief This file contains the top level functions of Maps API.
  */
@@ -30,6 +31,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @defgroup CAPI_MAPS_SERVICE_TYPES_MODULE Primary types
  * @addtogroup CAPI_MAPS_SERVICE_TYPES_MODULE
@@ -39,6 +41,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The Maps Service handle
  * @details The Maps Service handle can be created by calling of maps_service_create().\n
  *          To release the handle use maps_service_destroy().
@@ -50,6 +53,7 @@ typedef void *maps_service_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The View handle
  * @details The handle of View instance.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
index 4fe859f..3164c1f 100644 (file)
@@ -26,6 +26,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @defgroup CAPI_MAPS_VIEW_MODULE View
  * @if WEARABLE
@@ -63,6 +64,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumeration for View types (themes).
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  */
@@ -75,6 +77,7 @@ typedef enum _maps_view_type_e {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when requesting the list of visual objects of the View.
  * @details This callback is invoked while iterating through the list of visual objects added to the View.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -92,6 +95,7 @@ typedef bool(*maps_view_object_cb) (int index, int total, maps_view_object_h obj
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when the View event occurs.
  * @details The View Panel invokes this callback when the map event occurs.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -117,6 +121,7 @@ typedef void(*maps_view_on_event_cb) (maps_view_event_type_e type, maps_view_eve
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates the View and link it to the instance of maps service.
  * @details This function creates a new View widget, allocates all needed resources and issues its handle.\n
  *          The newly created View is linked to the specified map's service.\n
@@ -155,6 +160,7 @@ int maps_view_create(maps_service_h maps, Evas_Object *obj, maps_view_h *view);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the View.
  * @details This function destroys the View, releases its handle and all allocated resources, unlinks the View from the instance of maps service.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -177,6 +183,7 @@ int maps_view_destroy(maps_view_h view);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Centers the map on a given geographical coordinates.
  * @details This function centers the map on a given geographical coordinates using current zoom and orientation.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -206,6 +213,7 @@ int maps_view_set_center(maps_view_h view, maps_coordinates_h coordinates);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the central coordinates of a map.
  * @details This function gets the current central coordinates of a map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -230,6 +238,7 @@ int maps_view_get_center(const maps_view_h view, maps_coordinates_h *coordinates
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets zoom level of the map.
  * @details This function sets the integer zoom level of the map.\n
  *          If the specified zoom level exceeds the maps Provider allowed zoom range,
@@ -262,6 +271,7 @@ int maps_view_set_zoom_level(maps_view_h view, int level);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets zoom level of the map.
  * @details This function gets the current integer zoom level of the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -282,6 +292,7 @@ int maps_view_get_zoom_level(const maps_view_h view, int *level);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the minimal zoom level of the map.
  * @details This function sets the minimally allowed zoom level of the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -308,6 +319,7 @@ int maps_view_set_min_zoom_level(maps_view_h view, int level);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the minimal zoom level of the map.
  * @details This function gets the minimally allowed zoom level of the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -329,6 +341,7 @@ int maps_view_get_min_zoom_level(const maps_view_h view, int *min_zoom_level);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the maximal zoom level of the map.
  * @details This function sets the maximally allowed zoom level of the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -355,6 +368,7 @@ int maps_view_set_max_zoom_level(maps_view_h view, int level);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the maximal zoom level of the map.
  * @details This function gets the maximally allowed zoom level of the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -376,6 +390,7 @@ int maps_view_get_max_zoom_level(const maps_view_h view, int *max_zoom_level);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the orientation on the View.
  * @details This function sets the rotation angle of the View.\n
  *          If the specified rotation angle exceeds the [0..360] range,
@@ -404,6 +419,7 @@ int maps_view_set_orientation(maps_view_h view, double angle);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the orientation.
  * @details This function gets the current map rotation angle on the View.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -426,6 +442,7 @@ int maps_view_get_orientation(const maps_view_h view, double *rotation_angle);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Converts screen coordinates to the geographical coordinates.
  * @details This function converts screen coordinates to the geographical coordinates accordingly to the current map zoom and orientation.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -454,6 +471,7 @@ int maps_view_screen_to_geolocation(maps_view_h view, int x, int y, maps_coordin
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Converts geographical coordinates to the screen coordinates.
  * @details This function converts geographical coordinates to the screen
  *          coordinates accordingly to the current map zoom and orientation.
@@ -486,6 +504,7 @@ int maps_view_geolocation_to_screen(maps_view_h view, const maps_coordinates_h c
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets View type.
  * @details This function switches the View to a specified type, one of listed in #maps_view_type_e enumeration.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -513,6 +532,7 @@ int maps_view_set_type(maps_view_h view, maps_view_type_e type);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets View type.
  * @details This function gets the type of the given View.\n
  *          The type options are defined in the #maps_view_type_e enumeration.
@@ -534,6 +554,7 @@ int maps_view_get_type(const maps_view_h view, maps_view_type_e *type);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Indicates whether the map should show the 3D buildings layer.
  * @details This function is called to indicate whether 3D buildings should be shown as a layer on the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -563,6 +584,7 @@ int maps_view_set_buildings_enabled(maps_view_h view, bool enable);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Queries whether the map has the 3D buildings layer enabled.
  * @details This function checks whether the map is set to show the 3D buildings layer.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -582,6 +604,7 @@ int maps_view_get_buildings_enabled(const maps_view_h view, bool *enable);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Indicates whether the map should show the traffic layer.
  * @details This function is called to indicate whether traffic conditions should be shown as a layer on the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -611,6 +634,7 @@ int maps_view_set_traffic_enabled(maps_view_h view, bool enable);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Queries whether the map has the traffic layer enabled.
  * @details This function checks whether the map is set to show the traffic layer.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -630,6 +654,7 @@ int maps_view_get_traffic_enabled(const maps_view_h view, bool *enable);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Indicates whether the map should show the public transit layer.
  * @details This function is called to indicate whether public transit routes should be shown as a layer on the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -659,6 +684,7 @@ int maps_view_set_public_transit_enabled(maps_view_h view, bool enable);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Queries whether the map has the public transit layer enabled.
  * @details This function checks whether the map is set to show the public transit routes layer.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -678,6 +704,7 @@ int maps_view_get_public_transit_enabled(const maps_view_h view, bool *enable);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets View language.
  * @details This function sets the language to the given View.\n
  *          Note that map display language is different from places and route language.
@@ -713,6 +740,7 @@ int maps_view_set_language(maps_view_h view, const char *language);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets View language.
  * @details This function gets the language set to the View.\n
  *          Note that map display language is different from places and route language.
@@ -735,6 +763,7 @@ int maps_view_get_language(const maps_view_h view, char **language);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enables or disables scalebar.
  * @details This function enables or disables scalebar.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -760,6 +789,7 @@ int maps_view_set_scalebar_enabled(maps_view_h view, bool enable);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets whether the scalebar is enabled or not.
  * @details This function gets whether the scalebar is enabled or not.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -781,6 +811,7 @@ int maps_view_get_scalebar_enabled(const maps_view_h view, bool *enabled);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the View port.
  * @details This function gets the View port as a pointer on Evas_Object.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -799,6 +830,7 @@ int maps_view_get_viewport(const maps_view_h view, Evas_Object **viewport);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets geometry of View port.
  * @details This function set the position and (rectangular) size of the given View.\n
  *          The position, naturally, will be relative to the top left corner of the parent window.
@@ -830,6 +862,7 @@ int maps_view_set_screen_location(maps_view_h view, int x, int y, int width, int
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets geometry of View port.
  * @details This function retrieves the position and (rectangular) size of the given View.\n
  *          The position, naturally, will be relative to the top left corner of the parent window.
@@ -855,6 +888,7 @@ int maps_view_get_screen_location(const maps_view_h view, int *x, int *y, int *w
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Moves the View.
  * @details This function moves View.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -877,6 +911,7 @@ int maps_view_move(maps_view_h view, int x, int y);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Resizes the View.
  * @details This function changes the size of the given View.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -906,6 +941,7 @@ int maps_view_resize(maps_view_h view, int width, int height);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Shows or hides the View.
  * @details This function changes the visibility of View on the screen.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -925,6 +961,7 @@ int maps_view_set_visibility(maps_view_h view, bool visible);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the View visibility.
  * @details This function retrieves whether or not the given View is visible.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -947,6 +984,7 @@ int maps_view_get_visibility(const maps_view_h view, bool *visible);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the event callback.
  * @details This function sets the callback which will be invoked every time the View processes the user's gesture, action and objects over the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -970,6 +1008,7 @@ int maps_view_set_event_cb(maps_view_h view, maps_view_event_type_e type, maps_v
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Unsets the event callback.
  * @details This function unsets the event callback.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -990,6 +1029,7 @@ int maps_view_unset_event_cb(maps_view_h view, maps_view_event_type_e type);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enables or disables the map gesture.
  * @details This function enables or disables the map gesture.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -1010,6 +1050,7 @@ int maps_view_set_gesture_enabled(maps_view_h view, maps_view_gesture_e gesture,
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Checks whether the map gesture is enabled or not.
  * @details This function checks whether the map gesture is enabled or not.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -1035,6 +1076,7 @@ int maps_view_get_gesture_enabled(const maps_view_h view, maps_view_gesture_e ge
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Adds a visual object on the map.
  * @details This function adds a visual object on the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -1064,6 +1106,7 @@ int maps_view_add_object(maps_view_h view, maps_view_object_h object);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Removes a visual object from the map.
  * @details This function removes a visual object from the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -1089,6 +1132,7 @@ int maps_view_remove_object(maps_view_h view, maps_view_object_h object);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Removes all visual objects from the map.
  * @details This function removes all visual object from the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -1112,6 +1156,7 @@ int maps_view_remove_all_objects(maps_view_h view);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Retrieves all visual objects on the map.
  * @details This function retrieves all visual objects previously added to the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
index 66abf5c..0b264c1 100644 (file)
@@ -19,7 +19,7 @@
 #define __MAPS_VIEW_EVENT_DATA_H__
 
 /**
- *
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_VIEW_MODULE
  * @defgroup CAPI_MAPS_VIEW_EVENT_DATA_MODULE View Event Data
  * @file maps_view_event_data.h
@@ -76,6 +76,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The View Event data handle.
  * @details The handle of View Event Data instance.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -88,6 +89,7 @@ typedef void *maps_view_event_data_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumeration for View actions.
  * @details This is an enumeration of View actions capable to perform.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -107,6 +109,7 @@ typedef enum _maps_view_action_e {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumeration for user gestures over View.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  */
@@ -123,6 +126,7 @@ typedef enum _maps_view_gesture_e {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumeration for map event types.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  */
@@ -135,6 +139,7 @@ typedef enum _maps_view_event_type_e {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the event data handle.
  * @details This function destroys the event data handle and releases all its resources.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -152,6 +157,7 @@ int maps_view_event_data_destroy(maps_view_event_data_h event);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Clones the event handle.
  * @details This function clones the event handle @a origin and all its resources.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -173,6 +179,7 @@ int maps_view_event_data_clone(const maps_view_event_data_h origin, maps_view_ev
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the event type.
  * @details This function gets the event type.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -193,6 +200,7 @@ int maps_view_event_data_get_type(const maps_view_event_data_h event, maps_view_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the event gesture type.
  * @details This function gets the event gesture type if the event type is #MAPS_VIEW_EVENT_GESTURE or #MAPS_VIEW_EVENT_OBJECT.
  *          Otherwise it returns #MAPS_ERROR_INVALID_PARAMETER.
@@ -214,6 +222,7 @@ int maps_view_event_data_get_gesture_type(const maps_view_event_data_h event, ma
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the event action type.
  * @details This function gets the event action type if the event type is #MAPS_VIEW_EVENT_ACTION.
  *          Otherwise, it returns #MAPS_ERROR_INVALID_PARAMETER.
@@ -235,6 +244,7 @@ int maps_view_event_data_get_action_type(const maps_view_event_data_h event, map
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the new map center coordinates.
  * @details This function gets the new map center coordinates if the event type is #MAPS_VIEW_EVENT_ACTION.
  *          Otherwise, it returns #MAPS_ERROR_INVALID_PARAMETER.
@@ -258,6 +268,7 @@ int maps_view_event_data_get_center(const maps_view_event_data_h event, maps_coo
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the new map center movement coordinates delta.
  * @details This function gets the screen coordinates delta of map center movement if the event type is #MAPS_VIEW_EVENT_ACTION.
  *          Otherwise, it returns #MAPS_ERROR_INVALID_PARAMETER.
@@ -280,6 +291,7 @@ int maps_view_event_data_get_delta(const maps_view_event_data_h event, int *delt
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the event screen coordinates.
  * @details This function gets the event screen coordinates if the event type is #MAPS_VIEW_EVENT_GESTURE or #MAPS_VIEW_EVENT_OBJECT.
  *          Otherwise, it returns #MAPS_ERROR_INVALID_PARAMETER.
@@ -302,6 +314,7 @@ int maps_view_event_data_get_position(const maps_view_event_data_h event, int *x
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the event geographic coordinates.
  * @details This function gets the event geographic coordinates if the event type is #MAPS_VIEW_EVENT_GESTURE.
  *          Otherwise, it returns #MAPS_ERROR_INVALID_PARAMETER.
@@ -325,6 +338,7 @@ int maps_view_event_data_get_coordinates(const maps_view_event_data_h event, map
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the number of fingers, detected in the event.
  * @details This function gets the number of user's fingers detected in the event if the event type is #MAPS_VIEW_EVENT_GESTURE or #MAPS_VIEW_EVENT_OBJECT.
  *          Otherwise, it returns #MAPS_ERROR_INVALID_PARAMETER.
@@ -346,6 +360,7 @@ int maps_view_event_data_get_fingers(const maps_view_event_data_h event, int *fi
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets zoom factor of zoom gesture or action.
  * @details This function gets the corresponding zoom factor if the event type is #MAPS_VIEW_EVENT_GESTURE or #MAPS_VIEW_EVENT_ACTION.
  *          Otherwise, it returns the #MAPS_ERROR_INVALID_PARAMETER.
@@ -367,6 +382,7 @@ int maps_view_event_data_get_zoom_factor(const maps_view_event_data_h event, dou
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets rotation angle of rotation gesture or action.
  * @details This function gets the corresponding rotation angle if the event type is #MAPS_VIEW_EVENT_GESTURE or #MAPS_VIEW_EVENT_ACTION.
  *          Otherwise, it returns #MAPS_ERROR_INVALID_PARAMETER.
@@ -388,6 +404,7 @@ int maps_view_event_data_get_rotation_angle(const maps_view_event_data_h event,
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets object of event.
  * @details When the event type is #MAPS_VIEW_EVENT_OBJECT, this function gets the corresponding object handle.
  *          Otherwise, it returns #MAPS_ERROR_INVALID_PARAMETER.
index 7c351e4..ed5e9d8 100644 (file)
@@ -24,6 +24,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_VIEW_MODULE
  * @defgroup CAPI_MAPS_VIEW_OBJECT_MODULE View Object
  * @file maps_view_object.h
@@ -45,6 +46,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief The View Object handle.
  * @details The handle of an arbitrary visual object instance.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -61,6 +63,7 @@ typedef void *maps_view_object_h;
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumeration for visual object types.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  */
@@ -73,6 +76,7 @@ typedef enum _maps_view_object_type_e {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumeration for map marker types.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  */
@@ -83,6 +87,7 @@ typedef enum _maps_view_marker_type_e {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumeration for overlay types.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  */
@@ -94,6 +99,7 @@ typedef enum _maps_view_overlay_type_e {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when requesting the list of points of the polyline.
  * @details This callback is invoked while iterating through the list of points, added to the polyline.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -113,6 +119,7 @@ typedef bool(*maps_view_object_polyline_point_cb) (int index, int total, maps_co
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Called when requesting the list of points of the polygon.
  * @details This callback is invoked while iterating through the list of points, added to the polygon.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -138,6 +145,7 @@ typedef bool(*maps_view_object_polygon_point_cb) (int index, int total, maps_coo
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a marker visual object.
  * @details This function creates a marker on a given geographical coordinates.
  *          The marker is specified with a given image file and a type.
@@ -170,6 +178,7 @@ int maps_view_object_create_marker(maps_coordinates_h coordinates, const char *i
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a polyline visual object.
  * @details This function creates a polyline visual object, specified with a list of geographical coordinates, line width and color.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -201,6 +210,7 @@ int maps_view_object_create_polyline(maps_coordinates_list_h coordinates, unsign
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates a polygon visual object.
  * @details This function creates a polygon visual object, specified with a list of geographical coordinates and fill color.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -231,6 +241,7 @@ int maps_view_object_create_polygon(maps_coordinates_list_h coordinates, unsigne
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Creates an overlay object.
  * @details This function creates an overlay object to contain Evas objects.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -260,6 +271,7 @@ int maps_view_object_create_overlay(maps_coordinates_h coordinates, Evas_Object
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Destroys the object.
  * @details This function destroys the object handle and releases all its resources.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -278,6 +290,7 @@ int maps_view_object_destroy(maps_view_object_h object);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the object type.
  * @details This function gets the object type.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -298,6 +311,7 @@ int maps_view_object_get_type(maps_view_object_h object, maps_view_object_type_e
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Shows the object.
  * @details This function changes the visibility of the given object on the View.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -316,6 +330,7 @@ int maps_view_object_set_visible(maps_view_object_h object, bool visible);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the object visibility.
  * @details This function retrieves whether or not the given object is visible.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -340,6 +355,7 @@ int maps_view_object_get_visible(const maps_view_object_h object, bool *visible)
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets points to the polyline.
  * @details This function sets point list to the polyline.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -363,6 +379,7 @@ int maps_view_object_polyline_set_polyline(maps_view_object_h polyline, maps_coo
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Retrieves all points, added to the polyline.
  * @details This function retrieves all points, added to the polyline.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -386,6 +403,7 @@ int maps_view_object_polyline_foreach_point(maps_view_object_h polyline, maps_co
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the polyline color.
  * @details This function sets the polyline color on canvas.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -408,6 +426,7 @@ int maps_view_object_polyline_set_color(maps_view_object_h polyline, unsigned ch
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the polyline color.
  * @details This function gets the polyline color on canvas.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -431,6 +450,7 @@ int maps_view_object_polyline_get_color(const maps_view_object_h polyline, unsig
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the polyline width.
  * @details This function sets the polyline width on canvas.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -450,6 +470,7 @@ int maps_view_object_polyline_set_width(maps_view_object_h polyline, int width);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the polyline width.
  * @details This function gets the polyline width on canvas.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -476,6 +497,7 @@ int maps_view_object_polyline_get_width(const maps_view_object_h polyline, int *
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets points to the polygon.
  * @details This function sets point list to the polygon.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -498,6 +520,7 @@ int maps_view_object_polygon_set_polygon(maps_view_object_h polygon, maps_coordi
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Retrieves all points, added to the polygon.
  * @details This function retrieves all points, added to the polygon.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -523,6 +546,7 @@ int maps_view_object_polygon_foreach_point(maps_view_object_h polygon, maps_coor
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets polygon fill color.
  * @details This function sets the polygon fill color on canvas.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -544,6 +568,7 @@ int maps_view_object_polygon_set_fill_color(maps_view_object_h polygon, unsigned
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets polygon fill color.
  * @details This function gets the polygon fill color on canvas.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -572,6 +597,7 @@ int maps_view_object_polygon_get_fill_color(const maps_view_object_h polygon, un
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the marker coordinates.
  * @details This function sets the marker geographical coordinates.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -593,6 +619,7 @@ int maps_view_object_marker_set_coordinates(maps_view_object_h marker, maps_coor
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the marker screen size.
  * @details This function sets the marker screen size.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -615,6 +642,7 @@ int maps_view_object_marker_resize(maps_view_object_h marker, int width, int hei
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the marker image file path.
  * @details This function sets the marker image file path.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -636,6 +664,7 @@ int maps_view_object_marker_set_image_file(maps_view_object_h marker, const char
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the marker image file path.
  * @details This function gets the marker image file path.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -657,6 +686,7 @@ int maps_view_object_marker_get_image_file(const maps_view_object_h marker, char
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the marker coordinates.
  * @details This function gets the marker geographical coordinates.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -679,6 +709,7 @@ int maps_view_object_marker_get_coordinates(const maps_view_object_h marker, map
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the marker screen size.
  * @details This function gets the marker size on the screen.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -699,6 +730,7 @@ int maps_view_object_marker_get_size(const maps_view_object_h marker, int *width
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the marker type.
  * @details This function gets the marker type.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -717,6 +749,7 @@ int maps_view_object_marker_get_type(const maps_view_object_h marker, maps_view_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the marker z-order.
  * @details This function sets the z-order.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -736,6 +769,7 @@ int maps_view_object_marker_set_z_order(maps_view_object_h marker, int z_order);
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the marker z-order.
  * @details This function gets the z-order.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -761,6 +795,7 @@ int maps_view_object_marker_get_z_order(const maps_view_object_h marker, int *z_
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the Evas object.
  * @details This function gets the Evas object.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -779,6 +814,7 @@ int maps_view_object_overlay_get_object(maps_view_object_h overlay, Evas_Object
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the overlay coordinates.
  * @details This function sets the overlay geographical coordinates.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -800,6 +836,7 @@ int maps_view_object_overlay_set_coordinates(maps_view_object_h overlay, maps_co
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the overlay coordinates.
  * @details This function gets the overlay geographical coordinates.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -823,6 +860,7 @@ int maps_view_object_overlay_get_coordinates(const maps_view_object_h overlay, m
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the minimal zoom level for overlay.
  * @details This function sets the minimally allowed zoom level of the map to show the overlay.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -843,6 +881,7 @@ int maps_view_object_overlay_set_min_zoom_level(maps_view_object_h overlay, int
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the minimal zoom level for overlay.
  * @details This function gets the minimally allowed zoom level of the map to show the overlay.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -863,6 +902,7 @@ int maps_view_object_overlay_get_min_zoom_level(const maps_view_object_h overlay
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the minimal zoom level for overlay.
  * @details This function sets the minimally allowed zoom level of the map to show the overlay.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -883,6 +923,7 @@ int maps_view_object_overlay_set_max_zoom_level(maps_view_object_h overlay, int
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the minimal zoom level for overlay.
  * @details This function gets the minimally allowed zoom level of the map to show the overlay.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
index 244ead2..7e13786 100644 (file)
@@ -20,6 +20,7 @@
 #include <maps_view_object.h>
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_VIEW_MODULE
  * @defgroup CAPI_MAPS_VIEW_OBJECT_MODULE View Object
  *
@@ -42,6 +43,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumerations of operation types over the map view object
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  */
@@ -54,6 +56,7 @@ typedef enum _maps_view_object_operation_e {
 } maps_view_object_operation_e;
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the marker screen size.
  * @details This function sets the marker screen size.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
index 8014181..6c92ddf 100644 (file)
@@ -20,6 +20,7 @@
 #include <maps_view.h>
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_VIEW_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_VIEW_MODULE View
  *
@@ -36,6 +37,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumerations of color space types
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  */
@@ -45,6 +47,7 @@ typedef enum _maps_view_colorspace_type_e {
 } maps_view_colorspace_type_e;
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Zooms the map on the view.
  * @details This function zooms the map on the View with real value of zoom
  * factor.
@@ -76,6 +79,7 @@ typedef enum _maps_view_colorspace_type_e {
 int maps_view_set_zoom_factor(maps_view_h view, double zoom_factor);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the zoom factor.
  * @details This function gets the current zoom factor of View.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -100,6 +104,7 @@ int maps_view_set_zoom_factor(maps_view_h view, double zoom_factor);
 int maps_view_get_zoom_factor(const maps_view_h view, double *zoom_factor);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Get the view handle of maps plugin.
  * @details This function gets the view handle of maps plugin.
  *
@@ -117,6 +122,7 @@ int maps_view_get_zoom_factor(const maps_view_h view, double *zoom_factor);
 int maps_view_get_maps_plugin_view_handle(maps_view_h view, void **maps_plugin_view_handle);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Set the view handle of maps plugin.
  * @details This function sets the view handle of maps plugin.
  *
@@ -134,6 +140,7 @@ int maps_view_get_maps_plugin_view_handle(maps_view_h view, void **maps_plugin_v
 int maps_view_set_maps_plugin_view_handle(maps_view_h view, void *maps_plugin_view_handle);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Gets the scale factor of View.
  * @details This function gets the current scale factor of View.
  * @since_tizen 4.0
@@ -154,6 +161,7 @@ int maps_view_set_maps_plugin_view_handle(maps_view_h view, void *maps_plugin_vi
 int maps_view_get_scale_factor(maps_view_h view, double *scale_factor);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Sets the scale factor of View.
  * @details This function sets the current scale factor of View.
  * @remarks View is resizable based on this scale factor.
index 920ee4b..bffe8f4 100644 (file)
@@ -23,6 +23,7 @@
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_VIEW_MODULE
  * @defgroup CAPI_MAPS_VIEW_SNAPSHOT_MODULE Snapshot
  * @file maps_view_snapshot.h
@@ -39,6 +40,7 @@ extern "C" {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Enumeration for snapshot file format type.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  */
@@ -49,6 +51,7 @@ typedef enum _maps_view_snapshot_format_type_e {
 
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief Captures a snapshot of the Map View.\n
  *        The request is synchronous.
  * @details This function retrieves an image of a map currently represented on the Map View.
index 6aece43..2af9e55 100644 (file)
 #include <maps_types.h>
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief      Gets if privilege is consented
  */
 bool maps_condition_check_privilege(void);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief      Gets if maps feature is supported
  */
 bool maps_condition_check_maps_feature(void);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief      Gets if network.internet feature is supported
  * @remarks    If target is not a wearable gear, it returns true always.
  */
 bool maps_condition_check_internet_feature(void);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief      Gets if maps service is supported
  */
 bool maps_condition_check_service_supported(maps_service_h maps, maps_service_e service);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief      Gets if maps service data is supported
  */
 bool maps_condition_check_data_supported(maps_service_h maps, maps_service_data_e data);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief      Gets if maps service is supported
  */
 bool maps_condition_check_view_service_supported(maps_view_h maps, maps_service_e service);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief      Gets if maps service data is supported
  */
 bool maps_condition_check_view_data_supported(maps_view_h view, maps_service_data_e data);
index ec45b61..300c235 100644 (file)
@@ -21,6 +21,7 @@
 #include <maps_extra_types.h>
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup    CAPI_MAPS_PLACE_MODULE
  * @defgroup   CAPI_MAPS_PLACE_DATA_MODULE Place
  *
@@ -38,6 +39,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @internal
  * @brief      Checks if a place data feature is supported.
  * @details This function checks if a place data feature is supported.
@@ -58,6 +60,7 @@ int _maps_place_is_data_supported(const maps_place_h place,
                                  maps_service_data_e data, bool *supported);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @internal
  * @brief      Sets the supported place data features.
  * @details This function sets the supported place data features.
index 6b7783a..3fd8dc3 100644 (file)
@@ -21,6 +21,7 @@
 #include <maps_extra_types.h>
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @file maps_route_private.h
  * @brief This file contains the functions related to Route information.
  *
@@ -35,6 +36,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @internal
  * @brief      Checks if a route data feature is supported.
  * @details This function checks if a route data feature is supported.
@@ -55,6 +57,7 @@ int _maps_route_is_data_supported(const maps_route_h route,
                                  maps_service_data_e data, bool *supported);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @internal
  * @brief      Sets the supported route data features.
  * @details This function sets the supported route data features.
index c2b0a26..33fbf68 100644 (file)
@@ -21,6 +21,7 @@
 #include <maps_extra_types.h>
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @ingroup    CAPI_MAPS_ROUTE_MODULE
  * @defgroup   CAPI_MAPS_ROUTE_SEGMENT_MODULE Segment
  *
@@ -37,6 +38,7 @@ extern "C" {
 #endif
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @internal
  * @brief      Checks if a segment data feature is supported.
  * @details This function checks if a segment data feature is supported.
@@ -58,6 +60,7 @@ int _maps_route_segment_is_data_supported(const maps_route_segment_h segment,
                                          bool *supported);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @internal
  * @brief      Sets the supported segment data features.
  * @details This function sets the supported segment data features.
index ee1f636..3a7d108 100755 (executable)
@@ -83,6 +83,7 @@
 #define _S(s) #s
 
 /*
+ * @deprecated Deprecated since 7.5.
  * @brief      Copies one string to another and releases receiver if needed.
  * @details This function copies one string to another and releases receiver if
  * needed.
@@ -98,6 +99,7 @@
 int maps_set_string(const char *src, const int max_length, char **dst);
 
 /*
+ * @deprecated Deprecated since 7.5.
  * @brief      Copies one string to another.
  * @details This function copies one string to another.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -112,6 +114,7 @@ int maps_set_string(const char *src, const int max_length, char **dst);
 int maps_get_string(const char *src, const int max_length, char **dst);
 
 /**
+ * @deprecated Deprecated since 7.5.
  * @brief      Get the screen dpi of current device.
  * @details This function gets the screen dpi of current device.
  *