* \n The items of the list may be iterated using maps_item_list_foreach().
* \n To append an item to the list use maps_item_list_append().
* \n The items of the list may be removed maps_item_list_remove_all().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @see maps_item_list_create()
* @see maps_item_list_destroy()
* @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.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a list must be released using maps_item_list_destroy().
* \n @a list may be cloned using maps_item_list_clone().
*
* @brief Destroys the list handle and releases all its resources.
* @details This function destroys the list handle and releases all its
* resources.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] list The handle of list to be deleted
* @return 0 on success, otherwise a negative error value
* @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.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks If this function returns the value different from MAPS_ERROR_NONE,
* the cloned item will not be appended to the list.
*
* @details This function clones the list of item pointers @a origin and all its
* resources.
* \n The list handle @a origin may be created using maps_item_list_create().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a cloned must be released using maps_item_list_destroy().
*
* @param[in] origin The handle of list to be cloned
* @brief Appends an item to the list.
* @details This function appends an item @a data to the list of item pointers
* @a list.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks If @a clone_func is null, @a data will not be cloned.
*
* @param[in] list The handle of 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() procedure.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks The @a data must be released by you.
*
* @param[in] index The current index of item
* @brief Gets the items of the specified list.
* @details This function delivers items of a specified list via
* maps_item_list_foreach_cb() callback.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] list The handle of list
* @param[in] clone_func The function for cloning the list values
* @details This function is called once for each item of the given list while
* the list is being destroyed
* during the maps_item_list_remove_all() procedures.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks The return of this function is ignored.
*
* @param[in] data The pointer to the list item which is to be
* @brief Removes and destroys list item.
* @details This function removes the given items from the @a list and releases
* resources, assigned with it.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks The @a item is destroyed with #maps_item_list_free_cb. If this
* callback is NULL, item will not be destroyed.
*
* @brief Removes and destroys all list items.
* @details This function removes all items of the @a list and releases
* resources, assigned with them.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks Each item is destroyed with #maps_item_list_free_cb. If this
* callback is NULL, items will not be destroyed.
*
* @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.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] index The current index of item
* @param[in] data The pointer to the list item
/**
* @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 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks This function is useful while adding to the list an item of arbitrary type without cloning it.
* \n maps_item_list_foreach() is useful when cloning the value is required while adding to the list.
*
* maps_string_hashtable_remove().
* \n To check if key is added to the table use
* maps_string_hashtable_contains().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @see maps_string_hashtable_create()
* @see maps_string_hashtable_destroy()
* @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.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a table must be released using maps_string_hashtable_destroy().
* \n @a table may be cloned using maps_string_hashtable_clone().
*
* resources.
* @details This function destroys the Hash Table handle and releases all its
* resources.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks All strings stored in the table will be released.
*
* @param[in] table The handle of table to be destroyed
* resources.
* \n The list handle @a origin may be created using
* maps_string_hashtable_create().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a cloned must be released using maps_string_hashtable_destroy().
*
* @param[in] origin The handle of the table to be cloned
* @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.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] table The handle of the table
* @param[in] key The string value of "key"
* @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.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remark The @a value must be released using free().
*
* @param[in] table The handle of the table
/**
* @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 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks The resources, used by item will be released automatically.
*
* @param[in] table The handle of the table
* @details This function is called once for each key-value pair of the given
* table while the table is being iterated
* during the maps_string_hashtable_foreach() procedure.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks The @a key and @a value must be released using free().
*
* @param[in] index The current index of item
* @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.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] table The handle of table
* @param[in] callback The callback to be invoked for delivering each
* @brief Checks if key is in hash_table.
* @details This function checks if the specified key is in the Hash Table of
* strings.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] table The handle of the table
* @param[in] key The string value of "key"
* \n All key-value pairs of the table may be iterated using maps_int_hashtable_foreach().
* \n The key-value pair may be removed form the table using maps_int_hashtable_remove().
* \n To check if key is added to the table use maps_int_hashtable_contains().
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @see maps_int_hashtable_create()
* @see maps_int_hashtable_destroy()
* @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.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks @a table must be released using maps_int_hashtable_destroy().
* \n @a table may be cloned using maps_int_hashtable_clone().
*
* resources.
* @details This function destroys the Hash Table handle and releases all its
* resources.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks All integers stored in the table will be released.
*
* @param[in] table The handle of table to be destroyed
* its resources.
* \n The list handle @a origin may be created using
* maps_int_hashtable_create().
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks @a cloned must be released using maps_int_hashtable_destroy().
*
* @param[in] origin The handle of the table to be cloned
* @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.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] table The handle of the table
* @param[in] key The integer value of "key"
* table.
* @details This function gets the integer value associated with a integer key
* in the Hash Table.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] table The handle of the table
* @param[in] key The integer value of "key"
/*
* @brief Removes the key-value pair from the table.
* @details This function removes the key-value pair from the Hash Table.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks The resources, used by item will be released automatically.
*
* @param[in] table The handle of the table
* @details This function is called once for each key-value pair of the given
* table while the table is being iterated
* during the maps_int_hashtable_foreach() procedure.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] index The current index of item
* @param[in] total The total amount of items
* @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.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] table The handle of table
* @param[in] callback The callback to be invoked for delivering each
* @brief Checks if key is in hash_table.
* @details This function checks if the specified key is in the Hash Table of
* integers.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] table The handle of the table
* @param[in] key The integer value of "key"
* maps_item_hashtable_remove().
* \n To check if key is added to the table use
* maps_item_hashtable_contains().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @see maps_item_hashtable_create()
* @see maps_item_hashtable_destroy()
* @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.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a table must be released using maps_item_hashtable_destroy().
* \n @a table may be cloned using maps_item_hashtable_clone().
*
* resources.
* @details This function destroys the Hash Table handle and releases all its
* resources.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks All items stored in the table will be released with corresponding
* functions, specified during maps_item_hashtable_set().
*
* all its resources.
* \n The list handle @a origin may be created using
* maps_item_hashtable_create().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a cloned must be released using maps_item_hashtable_destroy().
*
* @param[in] origin The handle of the table to be cloned
* while it is being cloned during the maps_item_hashtable_clone() procedure.
* \n This function must be assigned while adding new item to the table using
* maps_item_hashtable_set().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks If this function returns the value different from MAPS_ERROR_NONE,
* the cloned item will not be appended to the list.
*
* \n It is also called while the item is removed with
* maps_item_hashtable_remove()
* or the item value is exchanged with a new one with maps_item_hashtable_set().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks The return of this function is ignored.
*
* @param[in] data The pointer to the table item which is to be
* which is useful while adding to the table an item of string type (char*).
* This function is intended to be passed as the @a clone_func argument in the
* maps_item_hashtable_set().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks This function will be called implicitly in the
* maps_item_hashtable_clone() procedure.
*
* which is useful while adding to the table an item of string type (char*).
* This function is intended to be passed as the @a free_func argument in the
* maps_item_hashtable_set().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks This function will be called implicitly in the
* maps_item_hashtable_destroy(), maps_item_hashtable_remove(),
* maps_item_hashtable_set() procedures.
* which is useful while adding to the table an item of integer type (int*).
* This function is intended to be passed as the @a clone_func argument in the
* maps_item_hashtable_set().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks This function will be called implicitly in the
* maps_item_hashtable_clone() procedure.
*
* which is useful while adding to the table an item of integer type (int*).
* This function is intended to be passed as the @a free_func argument in the
* maps_item_hashtable_set().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks This function will be called implicitly in the
* maps_item_hashtable_destroy(), maps_item_hashtable_remove(),
* maps_item_hashtable_set() procedures.
* 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
* clone_func argument in the maps_item_hashtable_set().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks This function will be called implicitly in the
* maps_item_hashtable_clone() procedure.
*
* type (double*).
* This function is intended to be passed as the @a free_func argument in the
* maps_item_hashtable_set().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks This function will be called implicitly in the
* maps_item_hashtable_destroy(), maps_item_hashtable_remove(),
* maps_item_hashtable_set() procedures.
* value in the table.
* @details This function sets the association between string key and string
* value in the Hash Table.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remark New instances of key and value will be put to the table. The key and
* value must be released.
* \n This function uses implicitly maps_item_hashtable_clone_string() and
* table.
* @details This function sets the association between string key and integer
* value in the Hash Table.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remark New instances of key and value will be put to the table. The key and
* value must be released.
* \n This function uses implicitly maps_item_hashtable_clone_int() and
* numeric value in the table.
* @details This function sets the association between string key and floating
* point numeric value in the Hash Table.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remark New instances of key and value will be put to the table. The key and
* value must be released.
* \n This function uses implicitly maps_item_hashtable_clone_int() and
* - maps_item_hashtable_set_int()
* - maps_item_hashtable_set_float()
* .
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remark New instances of key and value will be put to the table. The @a key
* and @a value must be released.
*
* value in the table.
* @details This function gets the association between string key and string
* value in the Hash Table.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remark @a value must be released using free().
*
* @param[in] table The handle of the table
* table.
* @details This function gets the association between string key and integer
* value in the Hash Table.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] table The handle of the table
* @param[in] key The string value of "key"
* numeric value in the table.
* @details This function gets the association between string key and floating
* point numeric value in the Hash Table.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] table The handle of the table
* @param[in] key The string value of "key"
* @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.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remark Th @a value must be released by you.
*
* @param[in] table The handle of the table
/**
* @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 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks The resources, used by item will be released automatically.
*
* @param[in] table The handle of the table
* @details This function is called once for each key-value pair of the given
* table while the table is being iterated
* during the maps_item_hashtable_foreach() procedure.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks The @a key and @a value must be released by you.
*
* @param[in] index The current index of item
* @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.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] table The handle of table
* @param[in] callback The callback to be invoked for delivering each
/**
* @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 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] table The handle of the table
* @param[in] key The string value of "key"
* @brief Creates a new place attribute handle.
* @details This function creates a new place attribute handle and allocates all
* needed resources.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a place attribute must be released using
* maps_place_attribute_destroy().
* \n @a attribute may be cloned using maps_place_attribute_clone().
/**
* @brief Sets the place attribute id.
* @details This function sets the place attribute id.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] attribute The handle to place attribute
* @param[in] id The place attribute id
/**
* @brief Sets the place attribute label.
* @details This function sets the place attribute label.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] attribute The handle to place attribute
* @param[in] label The place attribute label
/**
* @brief Sets the place attribute text.
* @details This function sets the place attribute text.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] attribute The handle to place attribute
* @param[in] text The place attribute text
* @brief Creates a new place contact handle.
* @details This function creates a new place contact handle and allocates all
* needed resources.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a place contact must be released using
* maps_place_contact_destroy().
* \n @a contact may be cloned using maps_place_contact_clone().
/**
* @brief Sets the place contact label
* @details This function sets the place contact label.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] contact The handle of contact contact
* @param[in] label The place contact label
/**
* @brief Sets the place contact type
* @details This function sets the place contact type.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] contact The handle to place contact
* @param[in] type The place contact type
/**
* @brief Sets the place contact value
* @details This function sets the place contact value.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] contact The handle to place contact
* @param[in] value The place contact value
* @brief Creates a new place editorial handle.
* @details This function creates a new place editorial handle and allocates all
* needed resources.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a editorial must be released using maps_place_editorial_destroy().
* \n @a editorial may be cloned using maps_place_editorial_clone().
*
/**
* @brief Sets the place editorial description.
* @details This function sets the place editorial description.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] editorial The handle of place editorial
* @param[in] description The place editorial description
/**
* @brief Sets the place editorial language.
* @details This function sets the place editorial language.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] editorial The handle of place editorial
* @param[in] language The place editorial language
/**
* @brief Sets the place editorial media.
* @details This function sets the place editorial media.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] editorial The handle of place editorial
* @param[in] media The place editorial media
* @brief Creates a new place image handle.
* @details This function creates a new place image handle and allocates all
* needed resources.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a image must be released using maps_place_image_destroy().
* \n @a image may be cloned using maps_place_image_clone().
*
/**
* @brief Sets the place image id.
* @details This function sets the place image id.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] image The handle of place image
* @param[in] id The place image id
/**
* @brief Sets the place image URL.
* @details This function sets the place image URL.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] image The handle of place image
* @param[in] url The place image url
/**
* @brief Sets the place image width.
* @details This function sets the place image width.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] image The handle of place image
* @param[in] width The place image width
/**
* @brief Sets the place image height.
* @details This function sets the place image height.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] image The handle of place image
* @param[in] height The place image height
/**
* @brief Sets the place image user link.
* @details This function sets the place image user link.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] image The handle of place image
* @param[in] user The place image user link
/**
* @brief Sets the place image media.
* @details This function sets the place image media.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] image The handle of place image
* @param[in] media The place image media
* @brief Creates a new place link object handle.
* @details This function creates a new place link object handle and allocates
* all needed resources.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a link must be released using maps_place_link_object_destroy().
* \n @a link may be cloned using maps_place_link_object_clone().
*
/**
* @brief Sets the place link object id.
* @details This function sets the place link object id.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] link The handle of place link object
* @param[in] id The place link object id
/**
* @brief Sets the place link object string.
* @details This function sets the place link object string.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] link The handle of place link object
* @param[in] string The place link object string
/**
* @brief Sets the place link object type.
* @details This function sets the place link object type.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] link The handle of place link object
* @param[in] type The place link object type
/**
* @brief Sets the place link object name.
* @details This function sets the place link object name.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] link The handle of place link object
* @param[in] name The place link object name
* @brief Creates a new place media handle.
* @details This function creates a new place media handle and allocates all
* needed resources.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a media must be released using maps_place_media_destroy().
* \n @a media may be cloned using maps_place_media_clone().
*
/**
* @brief Sets the place media attribution.
* @details This function sets the place media attribution.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] media The handle of place media
* @param[in] attribution The place media attribution
/**
* @brief Sets the place media supplier link.
* @details This function sets the place media supplier link.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] media The handle of place media
* @param[in] supplier The place media supplier link
/**
* @brief Sets the place media via link.
* @details This function sets the place media via link.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] media The handle of place media
* @param[in] via The place media via link
* @brief Creates a new place handle.
* @details This function creates a new place handle and allocates all needed
* resources.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a place must be released using maps_place_destroy().
* \n @a place may be cloned using maps_place_clone().
*
/**
* @brief Sets the place id.
* @details This function sets the place id.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] place The handle to place
* @param[in] id The place id
/**
* @brief Sets the place name.
* @details This function sets the place name.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] place The handle to place
* @param[in] name The place name
/**
* @brief Sets the place location.
* @details This function sets the place location.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] place The handle to place
* @param[in] location The place location
* @brief Sets the place distance from the center of the location.
* @details This function sets the place distance from the center of the
* location.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] place The handle to place
* @param[in] distance The place distance in meters
/**
* @brief Sets the place address.
* @details This function sets the place address.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] place The handle to place
* @param[in] address The place address
/**
* @brief Sets the place categories.
* @details This function sets the place categories.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] place The handle to place
* @param[in] categories The place category list
/**
* @brief Sets the place view URI.
* @details This function sets the place URI.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] place The handle to place
* @param[in] uri The place view uri
/**
* @brief Sets the place attributes.
* @details This function sets the place attributes.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] place The handle to place
* @param[in] attributes The place attribute list
/**
* @brief Sets the place contacts.
* @details This function sets the place contacts.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] place The handle to place
* @param[in] contacts The place contact list
/**
* @brief Sets the place editorials.
* @details This function sets the place editorials.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] place The handle to place
* @param[in] editorials The place editorial list
/**
* @brief Sets the place images.
* @details This function sets the place images.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] place The handle to place
* @param[in] images The place image list
/**
* @brief Sets the place review.
* @details This function sets the place reviews.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] place The handle to place
* @param[in] reviews The place review list
/**
* @brief Sets the place properties.
* @details This function sets the place properties.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] place The handle to place
* @param[in] properties The place properties list
/**
* @brief Sets the place rating.
* @details This function sets the place rating.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] place The handle to place image
* @param[in] rating The place rating
/**
* @brief Sets the place supplier link.
* @details This function sets the place supplier link.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] place The handle to place image
* @param[in] supplier The place supplier link
/**
* @brief Sets the place related link.
* @details This function sets the place related link.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] place The handle to place image
* @param[in] related The place related link
/**
* @brief Creates a place list having a set of places.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[out] place_list The place list handle
* @return 0 on success, otherwise a negative error value
* @brief Creates a new place rating handle.
* @details This function creates a new place rating handle and allocates all
* needed resources.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a rating must be released using maps_place_rating_destroy().
* \n @a rating may be cloned using maps_place_rating_clone().
*
/**
* @brief Sets the place rating count.
* @details This function sets the place rating count.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] rating The handle of place rating
* @param[in] count The place rating count
/**
* @brief Sets the place rating average.
* @details This function sets the place rating average.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] rating The handle of place rating
* @param[in] average The place rating average
* @brief Creates a new place review handle.
* @details This function creates a new place review handle and allocates all
* needed resources.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a review must be released using maps_place_review_destroy().
* \n @a review may be cloned using maps_place_review_clone().
*
/**
* @brief Sets the place review date.
* @details This function sets the place review date.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] review The handle to place review
* @param[in] date The place review date
/**
* @brief Sets the place review title.
* @details This function sets the place review title.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] review The handle to place review
* @param[in] title The place review title
/**
* @brief Sets the place review rating.
* @details This function sets the place review rating.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] review The handle to place review
* @param[in] rating The place review rating
/**
* @brief Sets the place review description.
* @details This function sets the place review description.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] review The handle to place review
* @param[in] description The place review description
/**
* @brief Sets the place review language.
* @details This function sets the place review language.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] review The handle to place review
* @param[in] language The place review language
/**
* @brief Sets the place review media.
* @details This function sets the place review media.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] review The handle to place review
* @param[in] media The place review media
/**
* @brief Sets the place review user link.
* @details This function sets the place review user link.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] review The handle to place review
* @param[in] user The place review user link
* @brief Creates a new place URL handle.
* @details This function creates a new place URL handle and allocates all
* needed resources.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a url must be released using maps_place_url_destroy().
* \n @a url may be cloned using maps_place_url_clone().
*
/**
* @brief Sets the place URL path.
* @details This function sets the place URL path.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] url The handle of place URL
* @param[in] path The place URL path
/**
* @brief Sets the place URL description.
* @details This function sets the place URL description.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] url The handle of place URL
* @param[in] description The place URL description
/**
* @brief The Maps Plugin handle.
* @details The handle of Maps Plugin instance.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*/
typedef void *maps_plugin_h;
/**
* @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 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a plugin and it resources must be released in
* maps_plugin_shutdown().
*
* @brief Destroys the Maps Plugin handle.
* @details This function destroys the maps plugin handle and releases all its
* resources.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] plugin The maps plugin handle to destroy
* @return 0 on success, otherwise a negative error value
/**
* @brief Returns a plugin info.
* @details This function returns a plugin info.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[out] info A plugin info
* @return 0 on success, otherwise a negative error value
* @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.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks To obtain the @a provider_key refer to corresponding Maps Provider
* documentation.
* \n For HERE Maps refer to https://developer.here.com/,
* @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_plugin_set_provider_key().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks The string @a provider_key must be released using free().
*
* @param[out] provider_key The Maps Key
* @brief Sets the Maps Preference.
* @details This function sets the Maps Preferences which are used in each Maps
* Plugin request to Maps Provider.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] preference The handle of Maps Preference
* @return 0 on success, otherwise a negative error value
* @details This function gets the Maps Preferences which are used in each Maps
* Plugin request to Maps Provider.
* \n Preferences can be set with maps_plugin_set_preference().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a preference must be released using maps_preference_destroy().
*
* @param[out] preference The handle of Maps Preference
/**
* @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 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] service The service to be checked
* @param[out] supported Is the service supported
/**
* @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 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] data The data feature to be checked
* @param[out] supported Is the data feature supported
* @brief Gets the position coordinates for a given address.
* @details This function obtains position coordinates for a given free-formed
* address string.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks This function requires network access.
* \n To cancel the request use maps_plugin_cancel_request().
*
* bounding box.
* @details This function obtains position coordinates for a given free-formed
* address string within the specified bounding box.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks This function requires network access.
* \n Polygonal bounding box is not supported.
* \n To cancel the request, use maps_plugin_cancel_request().
* @brief Gets the position coordinates for a given address.
* @details This function obtains position coordinates for a given structured
* address.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks This function requires network access.
* \n To cancel the request use maps_plugin_cancel_request().
* \n To check if Maps Provider is capable of Geocoding and which geocoding
* @brief Gets the address for a given position coordinates.
* @details This function obtains structured address information for a given
* position coordinates.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks This function requires network access.
* \n To cancel the request use maps_plugin_cancel_request().
* \n To check if Maps Provider is capable of reverse geocoding and which
* @brief Gets the address list for a given position coordinates list.
* @details This function obtains structured address information for a given
* position coordinates.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks This function requires network access.
* \n To cancel the request use maps_plugin_cancel_request().
* \n To check if Maps Provider is capable of Reverse Geocoding and which
* distance.
* @details This function obtains the Place information for a specified distance
* around a given coordinates position.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks This function requires network access.
* \n To cancel the search request use maps_plugin_cancel_request().
* \n To check if Maps Provider is capable of Place Search and which Place
* @brief Queries a Place information by a coordinates boundary.
* @details This function obtains the Place information for a specified
* coordinates boundary.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks This function requires network access.
* \n @a boundary is supporting only circle type bounds for search.
* \n To cancel the search request use maps_plugin_cancel_request().
* @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.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks This function requires network access.
* \n @a boundary is supporting only circle type bounds for search.
* \n To cancel the search request use maps_plugin_cancel_request().
/**
* @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 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks This function requires network access.
* \n To cancel the search request use maps_plugin_cancel_request().
* \n To check if Maps Provider is capable of Place Search and which Place
/**
* @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 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks This function requires network access.
* \n To cancel the search request use maps_plugin_cancel_request().
* \n To check if Maps Provider is capable of Place Search and which Place
* @brief Queries the Route from origin coordinate to a destination.
* @details This function obtains the Route information for a specified origin
* and destination coordinates.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks This function requires network access.
* \n To cancel the search request use maps_plugin_cancel_request().
* \n To check if Maps Provider is capable of Route Search and which Route
* @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.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks This function requires network access.
* \n To cancel the search request use maps_plugin_cancel_request().
* \n To check if Maps Provider is capable of Route Search and which Route
* @brief Cancels the service request.
* @details This function cancels the service request initiated by geocode,
* route or place search.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks This function requires network access.
*
* @param[in] request_id The request id
/**
* @brief Called when the map initialzing is finished.
* @details The Plugin invokes this callback when the initialzing of map is finished.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] view The maps view
*
/**
* @brief Create a maps view.
* @details This function create a maps view to the plugin.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] view The maps view
* @return 0 on success, otherwise a negative error value
/**
* @brief Destroy a maps view.
* @details This function destory a maps view to the plugin.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] view The maps view
* @return 0 on success, otherwise a negative error value
* @brief Request a map rendering.
* @details This function request a draw routine of the map location with a
* specified zoom factor and rotation angle.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] view The handle of maps_view
* @param[in] coordinates The coordinates of location to draw
* @details This function request the Plugin to move a map on a given delta
* screen coordinates. The current values of zoom or orientation are
* remaining same.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] view The handle of maps_view
* @param[in] delta_x The delta x
/**
* @brief Enables or disables the scalebar.
* @details This function enables or disables the scalebar.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks This function requires network access.
*
* @param[in] view The handle of maps_view
/**
* @brief Checks whether the scalebar is enabled or not.
* @details This function checks whether the scalebar is enabled or not.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] view The handle of maps_view
* @param[out]enabled The pointer to a boolean in which to store the enable status
* changed. The possible causes of changes are enumerated in
* #maps_view_object_operation_e ind nclude object adding, moving, removing,
* visibility modificating or editing object specific properties.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] view The handle of maps_view
* @param[in] object The object handle
* @brief Converts screen coordinates to the geographical coordinates.
* @details This function converts screen coordinates to the geographical
* coordinates accordingly to the current maps settings.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] view The handle of maps_view
* @param[in] x The x coordinate on the screen
* @brief Converts geographical coordinates to the screen coordinates.
* @details This function converts geographical coordinates to the screen
* coordinates accordingly to the current maps settings.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] view The handle of maps_view
* @param[in] coordinates The geographical coordinates
/**
* @brief Gets the minimal zooms level of the Map.
* @details This function gets the minimally available zoom level of the Map.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] view The handle of maps_view
* @param[out]min_zoom_level The minimally available zoom level
/**
* @brief Gets the maximal zooms level of the Map.
* @details This function gets the maximally available zoom level of the Map.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] view The handle of maps_view
* @param[out]max_zoom_level The maximally available zoom level
/**
* @brief Gets the central coordinates of a Map.
* @details This function gets the central coordinates of a Map.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks @a coordinates must be released using maps_coordinates_destroy().
*
* @param[in] view The handle of maps_view
/**
* @brief Gets raw pixels of the Map.
* @details This function gets raw pixels of the Map.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] view The view handle
* @param[out] data The pixels of the Map
* @remarks To create the handle use maps_plugin_info_create().
* \n To release the handle use maps_plugin_info_destroy().
* \n To clone the handle use maps_plugin_info_clone().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @see maps_plugin_info_create()
* @see maps_plugin_info_destroy()
* @brief Creates a new plugin info handle.
* @details This function creates a new plugin info handle and allocates all
* needed resources.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a info must be released using maps_plugin_info_destroy().
* \n @a info may be cloned using maps_plugin_info_clone().
*
* @brief Destroys the plugin info handle and releases all its resources.
* @details This function destroys the plugin info handle and releases all its
* resources.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] info The plugin info handle to destroy
* @return 0 on success, otherwise a negative error value
* @brief Clones the plugin info handle.
* @details This function clones the plugin info handle @a origin and all its
* resources.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a cloned must be released using maps_plugin_info_destroy().
*
* @param[in] origin The original plugin info handle
/**
* @brief Gets the plugin provider name.
* @details This function gets the plugin provider name.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a provider_name must be released using free().
*
* @param[in] info The handle of plugin info
/**
* @brief Sets the plugin provider name.
* @details This function sets the plugin provider name.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] info The handle of plugin info
* @param[in] provider_name The plugin info name
/**
* @brief Structure of the coordinates list.
- * @since_tizen 3.0
+ * @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.
*
* @see maps_coordinates_list_create()
/**
* @brief Structure of the address list.
- * @since_tizen 3.0
+ * @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.
*
* @see maps_address_list_create()
* @brief Creates a new route maneuver handle.
* @details This function creates a new route maneuver handle and allocates all
* needed resources.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a maneuver must be released using maps_route_maneuver_destroy().
* \n @a maneuver may be cloned using maps_route_maneuver_clone().
*
/**
* @brief Sets the route maneuver direction id.
* @details This function sets the route maneuver direction id.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] maneuver The maneuver handle
* @param[in] direction_id The direction ID
/**
* @brief Sets the route maneuver turn type.
* @details This function sets the route maneuver turn type.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] maneuver The maneuver handle
* @param[in] turn_type The turn type
/**
* @brief Sets the route maneuver road name.
* @details This function sets the route maneuver road name.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] maneuver The maneuver handle
* @param[in] road_name The current road name
/**
* @brief Sets the route maneuver instruction text.
* @details This function sets the route maneuver instruction text.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] maneuver The maneuver handle
* @param[in] instruction_text The current road name
/**
* @brief Sets the route maneuver locale.
* @details This function sets the route maneuver locale.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] maneuver The maneuver handle
* @param[in] locale The languages of instruction text and street
/**
* @brief Sets the route maneuver position.
* @details This function sets the route maneuver position.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] maneuver The maneuver handle
* @param[in] position The geographical position of maneuver
/**
* @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 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] maneuver The maneuver handle
* @param[in] time_to_next_instruction The time to next instruction
* @brief Sets the distance to next instruction in route maneuver.
* @details This function sets the distance to next instruction in route
* maneuver.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] maneuver The maneuver handle
* @param[in] distance_to_next_instruction The distance from the current
* @brief Creates a new route handle.
* @details This function creates a new route handle and allocates all needed
* resources.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a route must be released using maps_route_destroy().
* \n @a route may be cloned using maps_route_clone().
*
/**
* @brief Sets the route id.
* @details This function sets the route id.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] route The route handle
* @param[in] id The route ID
/**
* @brief Sets the route origin.
* @details This function sets the route origin.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] route The route handle
* @param[in] origin The origin of route
/**
* @brief Sets the route destination.
* @details This function sets the route destination.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] route The route handle
* @param[in] destination The destination of route
/**
* @brief Sets the route bounding box.
* @details This function sets the route bounding box.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] route The route handle
* @param[in] bounding_box The top bounding box
/**
* @brief Sets the route total distance.
* @details This function sets the route total distance.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] route The route handle
* @param[in] total_distance The distance of route in meters
/**
* @brief Sets the route total duration.
* @details This function sets the route total duration.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] route The route handle
* @param[in] total_duration The duration
/**
* @brief Sets the route transport mode.
* @details This function sets the route transport mode.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] route The route handle
* @param[in] transport_mode The transportation mode
/**
* @brief Sets the route distance units.
* @details This function sets the route distance units.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] maneuver The maneuver handle
* @param[in] distance_unit The distance units
/**
* @brief Sets the route path.
* @details This function sets the route path.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] route The route handle
* @param[in] path The coordinates list
/**
* @brief Sets the route segment list.
* @details This function sets the route segment list.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] route The route handle
* @param[in] segments The maneuvers list
/**
* @brief Sets the route properties.
* @details This function sets the route properties.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] route The route handle
* @param[in] properties The table of properties
* @brief Creates a new route segment handle.
* @details This function creates a new route segment handle and allocates all
* needed resources.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
* @remarks @a segment must be released using maps_route_segment_destroy().
* \n @a segment may be cloned using maps_route_segment_clone().
*
/**
* @brief Sets the route segment origin.
* @details This function sets the route segment origin.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] segment The segment handle
* @param[in] origin The origin of segment
/**
* @brief Sets the route segment destination.
* @details This function sets the route segment destination.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] segment The segment handle
* @param[in] destination The destination of segment
/**
* @brief Sets the route segment bounding box.
* @details This function sets the route segment bounding box.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] segment The segment handle
* @param[in] bounding_box The start angle of the segment
/**
* @brief Sets the route segment distance.
* @details This function sets the route segment distance.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] segment The segment handle
* @param[in] distance The distance of the segment
/**
* @brief Sets the route segment duration.
* @details This function sets the route segment duration.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] segment The segment handle
* @param[in] duration The duration of the segment
/**
* @brief Sets the route segment path.
* @details This function sets the route segment path.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] segment The segment handle
* @param[in] path The maneuver list
/**
* @brief Sets the route segment maneuver list.
* @details This function sets the route segment maneuver list.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] segment The segment handle
* @param[in] maneuvers The maneuver list
/**
* @brief Enumerations of operation types over the map view object
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*/
typedef enum _maps_view_object_operation_e {
MAPS_VIEW_OBJECT_ADD, /**< Indicates the add object operation */
/**
* @brief Enumerations of color space types
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*/
typedef enum _maps_view_colorspace_type_e
{
* @brief Zooms the map on the view.
* @details This function zooms the map on the View with real value of zoom
* factor.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @privlevel public
*
* @param[in] view The view handle
/**
* @brief Gets the zoom factor.
* @details This function gets the current zoom factor of View.
- * @since_tizen 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks zoom @a factor can be obtained also in maps_view_on_event_cb()
* callback, assigned using maps_view_set_event_cb() with the event
* type #MAPS_VIEW_EVENT_ACTION specified.
* @internal
* @brief Checks if a place data feature is supported.
* @details This function checks if a place data feature is supported.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] place The handle to place
* @param[in] data The feature to be checked
* @internal
* @brief Sets the supported place data features.
* @details This function sets the supported place data features.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] place The handle to place
* @param[in] supported_data The supported place data features
* @internal
* @brief Checks if a route data feature is supported.
* @details This function checks if a route data feature is supported.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] route The handle to route
* @param[in] data The feature to be checked
* @internal
* @brief Sets the supported route data features.
* @details This function sets the supported route data features.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] route The handle to route
* @param[in] supported_data The supported route data features
* @internal
* @brief Checks if a segment data feature is supported.
* @details This function checks if a segment data feature is supported.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] segment The handle to segment
* @param[in] data The feature to be checked
* @internal
* @brief Sets the supported segment data features.
* @details This function sets the supported segment data features.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] segment The handle to segment
* @param[in] supported_data The supported segment data features
* @brief Copies one string to another and releases receiver if needed.
* @details This function copies one string to another and releases receiver if
* needed.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[out] dst The destination string pointer.
* @param[in] src The original string pointer.
/*
* @brief Copies one string to another.
* @details This function copies one string to another.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
*
* @param[out] dst The destination string pointer.
* @param[in] src The original string pointer.
#include "gesture_detector.h"
#include <glib.h>
+#include <math.h>
extern bool _maps_view_is_gesture_available(maps_view_h view,