fixed tizen_version, @since_tizen for the Wearable profile 68/74768/1
authorchanywa <cbible.kim@samsung.com>
Wed, 15 Jun 2016 11:43:00 +0000 (20:43 +0900)
committerchanywa <cbible.kim@samsung.com>
Wed, 15 Jun 2016 11:43:00 +0000 (20:43 +0900)
Change-Id: Ibac94c02719b51c5e9f0c7dd2a1f0d8921f7fdc4

24 files changed:
include/maps_extra_types.h
include/maps_place_attribute_plugin.h
include/maps_place_contact_plugin.h
include/maps_place_editorial_plugin.h
include/maps_place_image_plugin.h
include/maps_place_link_object_plugin.h
include/maps_place_media_plugin.h
include/maps_place_plugin.h
include/maps_place_rating_plugin.h
include/maps_place_review_plugin.h
include/maps_place_url_plugin.h
include/maps_plugin.h
include/maps_plugin_info.h
include/maps_plugin_types.h
include/maps_route_maneuver_plugin.h
include/maps_route_plugin.h
include/maps_route_segment_plugin.h
include/maps_view_object_plugin.h
include/maps_view_plugin.h
src/api/maps_place_private.h
src/api/maps_route_private.h
src/api/maps_route_segment_private.h
src/maps_util.h
src/view/gesture_detector.cpp

index 4d5cf60..b3320e3 100755 (executable)
@@ -57,7 +57,7 @@ extern "C" {
  * \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()
@@ -69,7 +69,7 @@ typedef void *maps_item_list_h;
  * @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().
  *
@@ -88,7 +88,7 @@ int maps_item_list_create(maps_item_list_h *list);
  * @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
@@ -106,7 +106,7 @@ int maps_item_list_destroy(maps_item_list_h list);
  * @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.
  *
@@ -128,7 +128,7 @@ typedef int (*maps_item_list_clone_cb) (void *origin, void **cloned);
  * @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
@@ -154,7 +154,7 @@ int maps_item_list_clone(const maps_item_list_h origin,
  * @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
@@ -179,7 +179,7 @@ int maps_item_list_append(maps_item_list_h list, const void *data,
  * @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
@@ -201,7 +201,7 @@ typedef bool(*maps_item_list_foreach_cb) (int index, int total, void *data,
  * @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
@@ -232,7 +232,7 @@ int maps_item_list_foreach(maps_item_list_h list,
  * @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
@@ -251,7 +251,7 @@ typedef int (*maps_item_list_free_cb) (void *data);
  * @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.
  *
@@ -278,7 +278,7 @@ int maps_item_list_remove(maps_item_list_h list,
  * @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.
  *
@@ -302,7 +302,7 @@ int maps_item_list_remove_all(maps_item_list_h list,
  * @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
@@ -318,7 +318,7 @@ typedef bool(*maps_item_list_foreach_noclone_cb) (int index, void *data, void *u
 /**
  * @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.
  *
@@ -373,7 +373,7 @@ int maps_item_list_foreach_noclone(maps_item_list_h list, maps_item_list_foreach
  * 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()
@@ -385,7 +385,7 @@ typedef void *maps_string_hashtable_h;
  * @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().
  *
@@ -405,7 +405,7 @@ int maps_string_hashtable_create(maps_string_hashtable_h *table);
  * 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
@@ -426,7 +426,7 @@ int maps_string_hashtable_destroy(maps_string_hashtable_h table);
  * 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
@@ -448,7 +448,7 @@ int maps_string_hashtable_clone(const maps_string_hashtable_h origin,
  * @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"
@@ -470,7 +470,7 @@ int maps_string_hashtable_set(maps_string_hashtable_h table, const char *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
@@ -492,7 +492,7 @@ int maps_string_hashtable_get(maps_string_hashtable_h table, const char *key,
 /**
  * @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
@@ -516,7 +516,7 @@ int maps_string_hashtable_remove(maps_string_hashtable_h 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
@@ -540,7 +540,7 @@ typedef bool(*maps_string_hashtable_foreach_cb) (int index, int total,
  * @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
@@ -569,7 +569,7 @@ int maps_string_hashtable_foreach(maps_string_hashtable_h table,
  * @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"
@@ -616,7 +616,7 @@ int maps_string_hashtable_contains(maps_string_hashtable_h table,
  * \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()
@@ -628,7 +628,7 @@ typedef void *maps_int_hashtable_h;
  * @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().
  *
@@ -648,7 +648,7 @@ int maps_int_hashtable_create(maps_int_hashtable_h *table);
  * 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
@@ -669,7 +669,7 @@ int maps_int_hashtable_destroy(maps_int_hashtable_h table);
  * 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
@@ -691,7 +691,7 @@ int maps_int_hashtable_clone(const maps_int_hashtable_h origin,
  * @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"
@@ -714,7 +714,7 @@ int maps_int_hashtable_set(maps_int_hashtable_h table, const int 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"
@@ -735,7 +735,7 @@ int maps_int_hashtable_get(maps_int_hashtable_h table, const int 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
@@ -759,7 +759,7 @@ int maps_int_hashtable_remove(maps_int_hashtable_h 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
@@ -782,7 +782,7 @@ typedef bool(*maps_int_hashtable_foreach_cb) (int index, int total,
  * @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
@@ -811,7 +811,7 @@ int maps_int_hashtable_foreach(maps_int_hashtable_h table,
  * @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"
@@ -862,7 +862,7 @@ int maps_int_hashtable_contains(maps_int_hashtable_h table,
  * 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()
@@ -874,7 +874,7 @@ typedef void *maps_item_hashtable_h;
  * @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().
  *
@@ -894,7 +894,7 @@ int maps_item_hashtable_create(maps_item_hashtable_h *table);
 * 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().
  *
@@ -916,7 +916,7 @@ int maps_item_hashtable_destroy(maps_item_hashtable_h table);
  * 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
@@ -940,7 +940,7 @@ int maps_item_hashtable_clone(const maps_item_hashtable_h origin,
  * 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.
  *
@@ -967,7 +967,7 @@ typedef int (*maps_item_hashtable_clone_cb) (void *origin, void **cloned);
  * \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
@@ -991,7 +991,7 @@ typedef int (*maps_item_hashtable_free_cb) (void *data);
  * 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.
  *
@@ -1017,7 +1017,7 @@ int maps_item_hashtable_clone_string(void *origin, void **cloned);
  * 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.
@@ -1045,7 +1045,7 @@ int maps_item_hashtable_free_string(void *data);
  * 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.
  *
@@ -1070,7 +1070,7 @@ int maps_item_hashtable_clone_int(void *origin, void **cloned);
  * 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.
@@ -1098,7 +1098,7 @@ int maps_item_hashtable_free_int(void *data);
  * 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.
  *
@@ -1125,7 +1125,7 @@ int maps_item_hashtable_clone_float(void *origin, void **cloned);
  * 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.
@@ -1152,7 +1152,7 @@ int maps_item_hashtable_free_float(void *data);
  * 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
@@ -1182,7 +1182,7 @@ int maps_item_hashtable_set_string(maps_item_hashtable_h table,
  * 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
@@ -1212,7 +1212,7 @@ int maps_item_hashtable_set_int(maps_item_hashtable_h table, const char *key,
  * 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
@@ -1261,7 +1261,7 @@ int maps_item_hashtable_set_float(maps_item_hashtable_h table,
  * - 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.
  *
@@ -1299,7 +1299,7 @@ int maps_item_hashtable_set(maps_item_hashtable_h table, const char *key,
  * 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
@@ -1326,7 +1326,7 @@ int maps_item_hashtable_get_string(maps_item_hashtable_h 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"
@@ -1352,7 +1352,7 @@ int maps_item_hashtable_get_int(maps_item_hashtable_h table, const char *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"
@@ -1377,7 +1377,7 @@ int maps_item_hashtable_get_float(maps_item_hashtable_h table,
  * @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
@@ -1399,7 +1399,7 @@ int maps_item_hashtable_get(maps_item_hashtable_h table, const char *key,
 /**
  * @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
@@ -1423,7 +1423,7 @@ int maps_item_hashtable_remove(maps_item_hashtable_h table, const char *key);
  * @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
@@ -1447,7 +1447,7 @@ typedef bool(*maps_item_hashtable_foreach_cb) (int index, int total,
  * @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
@@ -1475,7 +1475,7 @@ int maps_item_hashtable_foreach(maps_item_hashtable_h table,
 /**
  * @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"
index be6a8b0..8958682 100644 (file)
@@ -41,7 +41,7 @@ extern "C" {
  * @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().
@@ -60,7 +60,7 @@ int maps_place_attribute_create(maps_place_attribute_h *attribute);
 /**
  * @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
@@ -79,7 +79,7 @@ int maps_place_attribute_set_id(maps_place_attribute_h attribute,
 /**
  * @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
@@ -98,7 +98,7 @@ int maps_place_attribute_set_label(maps_place_attribute_h attribute,
 /**
  * @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
index 5ca41fd..0d17aa1 100644 (file)
@@ -41,7 +41,7 @@ extern "C" {
  * @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().
@@ -60,7 +60,7 @@ int maps_place_contact_create(maps_place_contact_h *contact);
 /**
  * @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
@@ -79,7 +79,7 @@ int maps_place_contact_set_label(maps_place_contact_h contact,
 /**
  * @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
@@ -98,7 +98,7 @@ int maps_place_contact_set_type(maps_place_contact_h contact,
 /**
  * @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
index 7825e0a..2104506 100644 (file)
@@ -41,7 +41,7 @@ extern "C" {
  * @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().
  *
@@ -59,7 +59,7 @@ int maps_place_editorial_create(maps_place_editorial_h *editorial);
 /**
  * @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
@@ -78,7 +78,7 @@ int maps_place_editorial_set_description(maps_place_editorial_h editorial,
 /**
  * @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
@@ -97,7 +97,7 @@ int maps_place_editorial_set_language(maps_place_editorial_h editorial,
 /**
  * @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
index 7b81873..89c582b 100644 (file)
@@ -41,7 +41,7 @@ extern "C" {
  * @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().
  *
@@ -59,7 +59,7 @@ int maps_place_image_create(maps_place_image_h *image);
 /**
  * @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
@@ -77,7 +77,7 @@ int maps_place_image_set_id(maps_place_image_h image, const char *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
@@ -95,7 +95,7 @@ int maps_place_image_set_url(maps_place_image_h image, const char *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
@@ -113,7 +113,7 @@ int maps_place_image_set_width(maps_place_image_h image, const int 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
@@ -131,7 +131,7 @@ int maps_place_image_set_height(maps_place_image_h image, const int 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
@@ -151,7 +151,7 @@ int maps_place_image_set_user_link(maps_place_image_h image,
 /**
  * @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
index 63785e7..5c3f045 100644 (file)
@@ -41,7 +41,7 @@ extern "C" {
  * @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().
  *
@@ -59,7 +59,7 @@ int maps_place_link_object_create(maps_place_link_object_h *link);
 /**
  * @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
@@ -78,7 +78,7 @@ int maps_place_link_object_set_id(maps_place_link_object_h link,
 /**
  * @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
@@ -97,7 +97,7 @@ int maps_place_link_object_set_string(maps_place_link_object_h link,
 /**
  * @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
@@ -116,7 +116,7 @@ int maps_place_link_object_set_type(maps_place_link_object_h link,
 /**
  * @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
index fa8e411..2ece4ae 100644 (file)
@@ -41,7 +41,7 @@ extern "C" {
  * @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().
  *
@@ -59,7 +59,7 @@ int maps_place_media_create(maps_place_media_h *media);
 /**
  * @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
@@ -78,7 +78,7 @@ int maps_place_media_set_attribution(maps_place_media_h media,
 /**
  * @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
@@ -97,7 +97,7 @@ int maps_place_media_set_supplier(maps_place_media_h media,
 /**
  * @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
index faf5c81..869fa45 100644 (file)
@@ -47,7 +47,7 @@ extern "C" {
  * @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().
  *
@@ -65,7 +65,7 @@ int maps_place_create(maps_place_h *place);
 /**
  * @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
@@ -83,7 +83,7 @@ int maps_place_set_id(maps_place_h place, const char *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
@@ -101,7 +101,7 @@ int maps_place_set_name(maps_place_h place, const char *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
@@ -121,7 +121,7 @@ int maps_place_set_location(maps_place_h place,
  * @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
@@ -139,7 +139,7 @@ int maps_place_set_distance(maps_place_h place, const int distance);
 /**
  * @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
@@ -157,7 +157,7 @@ int maps_place_set_address(maps_place_h place, const maps_address_h 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
@@ -176,7 +176,7 @@ int maps_place_set_categories(maps_place_h place,
 /**
  * @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
@@ -194,7 +194,7 @@ int maps_place_set_uri(maps_place_h place, const char *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
@@ -213,7 +213,7 @@ int maps_place_set_attributes(maps_place_h place,
 /**
  * @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
@@ -232,7 +232,7 @@ int maps_place_set_contacts(maps_place_h place,
 /**
  * @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
@@ -251,7 +251,7 @@ int maps_place_set_editorials(maps_place_h place,
 /**
  * @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
@@ -269,7 +269,7 @@ int maps_place_set_images(maps_place_h place, const maps_item_list_h images);
 /**
  * @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
@@ -288,7 +288,7 @@ int maps_place_set_reviews(maps_place_h place,
 /**
  * @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
@@ -307,7 +307,7 @@ int maps_place_set_properties(maps_place_h place,
 /**
  * @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
@@ -326,7 +326,7 @@ int maps_place_set_rating(maps_place_h place,
 /**
  * @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
@@ -345,7 +345,7 @@ int maps_place_set_supplier_link(maps_place_h place,
 /**
  * @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
@@ -363,7 +363,7 @@ int maps_place_set_related_link(maps_place_h place,
 
 /**
  * @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
index 7f3668a..bda2948 100644 (file)
@@ -41,7 +41,7 @@ extern "C" {
  * @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().
  *
@@ -59,7 +59,7 @@ int maps_place_rating_create(maps_place_rating_h *rating);
 /**
  * @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
@@ -77,7 +77,7 @@ int maps_place_rating_set_count(maps_place_rating_h rating, const int 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
index 329b612..102b34a 100644 (file)
@@ -44,7 +44,7 @@ extern "C" {
  * @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().
  *
@@ -62,7 +62,7 @@ int maps_place_review_create(maps_place_review_h *review);
 /**
  * @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
@@ -80,7 +80,7 @@ int maps_place_review_set_date(maps_place_review_h review, const char *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
@@ -99,7 +99,7 @@ int maps_place_review_set_title(maps_place_review_h review,
 /**
  * @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
@@ -118,7 +118,7 @@ int maps_place_review_set_rating(maps_place_review_h review,
 /**
  * @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
@@ -137,7 +137,7 @@ int maps_place_review_set_description(maps_place_review_h review,
 /**
  * @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
@@ -156,7 +156,7 @@ int maps_place_review_set_language(maps_place_review_h review,
 /**
  * @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
@@ -176,7 +176,7 @@ int maps_place_review_set_media(maps_place_review_h review,
 /**
  * @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
index 7a97cbd..d1b0b81 100644 (file)
@@ -41,7 +41,7 @@ extern "C" {
  * @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().
  *
@@ -59,7 +59,7 @@ int maps_place_url_create(maps_place_url_h *url);
 /**
  * @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
@@ -77,7 +77,7 @@ int maps_place_url_set_path(maps_place_url_h url, const char *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
index 92567b6..4b5e980 100755 (executable)
@@ -44,7 +44,7 @@ extern "C" {
 /**
  * @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;
 
@@ -56,7 +56,7 @@ 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().
  *
@@ -75,7 +75,7 @@ int maps_plugin_init(maps_plugin_h *plugin);
  * @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
@@ -89,7 +89,7 @@ int maps_plugin_shutdown(maps_plugin_h plugin);
 /**
  * @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
@@ -111,7 +111,7 @@ int maps_plugin_get_info(maps_plugin_info_h *info);
  * @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/,
@@ -133,7 +133,7 @@ int maps_plugin_set_provider_key(const char *provider_key);
  * @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
@@ -150,7 +150,7 @@ int maps_plugin_get_provider_key(char **provider_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
@@ -168,7 +168,7 @@ int maps_plugin_set_preference(maps_item_hashtable_h preference);
  * @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
@@ -184,7 +184,7 @@ int maps_plugin_get_preference(maps_item_hashtable_h *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
@@ -202,7 +202,7 @@ int maps_plugin_is_service_supported(maps_service_e service, bool *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
@@ -226,7 +226,7 @@ int maps_plugin_is_data_supported(maps_service_data_e data, bool *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().
  *
@@ -268,7 +268,7 @@ int maps_plugin_geocode(const char *address,
  * 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().
@@ -316,7 +316,7 @@ int maps_plugin_geocode_inside_area(const char *address,
  * @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
@@ -359,7 +359,7 @@ int maps_plugin_geocode_by_structured_address(const maps_address_h address,
  * @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
@@ -400,7 +400,7 @@ int maps_plugin_reverse_geocode(double latitude, double longitude,
  * @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
@@ -445,7 +445,7 @@ int maps_plugin_multi_reverse_geocode(const maps_coordinates_list_h geocode_list
  * 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
@@ -491,7 +491,7 @@ int maps_plugin_search_place(const maps_coordinates_h position, int distance,
  * @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().
@@ -537,7 +537,7 @@ int maps_plugin_search_place_by_area(const maps_area_h boundary,
  * @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().
@@ -584,7 +584,7 @@ int maps_plugin_search_place_by_address(const char *address,
 /**
  * @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
@@ -626,7 +626,7 @@ int maps_plugin_search_place_list(const maps_area_h boundary,
 /**
  * @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
@@ -673,7 +673,7 @@ int maps_plugin_get_place_details(const char *url,
  * @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
@@ -714,7 +714,7 @@ int maps_plugin_search_route(const maps_coordinates_h origin,
  * @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
@@ -760,7 +760,7 @@ int maps_plugin_search_route_waypoints(const maps_coordinates_h *waypoint_list,
  * @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
@@ -807,7 +807,7 @@ int maps_plugin_cancel_request(int 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
  *
@@ -820,7 +820,7 @@ typedef void(*maps_plugin_map_view_ready_cb) (maps_view_h hView);
 /**
  * @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
@@ -835,7 +835,7 @@ int maps_plugin_create_map_view(maps_view_h view, maps_plugin_map_view_ready_cb
 /**
  * @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
@@ -851,7 +851,7 @@ int maps_plugin_destroy_map_view(maps_view_h view);
  * @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
@@ -879,7 +879,7 @@ int maps_plugin_render_map(maps_view_h view, const maps_coordinates_h coordinate
  * @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
@@ -904,7 +904,7 @@ int maps_plugin_move_center(maps_view_h view, int delta_x, int delta_y);
 /**
  * @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
@@ -921,7 +921,7 @@ int maps_plugin_set_scalebar(maps_view_h view, bool enable);
 /**
  * @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
@@ -939,7 +939,7 @@ int maps_plugin_get_scalebar(maps_view_h view, bool *enabled);
  * 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
@@ -957,7 +957,7 @@ int maps_plugin_on_object(maps_view_h view, const maps_view_object_h object,
  * @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
@@ -978,7 +978,7 @@ int maps_plugin_screen_to_geography(maps_view_h view, int x, int y,
  * @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
@@ -998,7 +998,7 @@ int maps_plugin_geography_to_screen(maps_view_h view, const maps_coordinates_h c
 /**
  * @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
@@ -1011,7 +1011,7 @@ int maps_plugin_get_min_zoom_level(maps_view_h view, int *min_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
@@ -1024,7 +1024,7 @@ int maps_plugin_get_max_zoom_level(maps_view_h view, int *max_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
@@ -1042,7 +1042,7 @@ int maps_plugin_get_center(maps_view_h view, maps_coordinates_h *coordinates);
 /**
  * @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
index 3c08b79..5894dc2 100644 (file)
@@ -40,7 +40,7 @@ extern "C" {
  * @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()
@@ -54,7 +54,7 @@ typedef void *maps_plugin_info_h;
  * @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().
  *
@@ -73,7 +73,7 @@ int maps_plugin_info_create(maps_plugin_info_h *info);
  * @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
@@ -91,7 +91,7 @@ int maps_plugin_info_destroy(maps_plugin_info_h info);
  * @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
@@ -114,7 +114,7 @@ int maps_plugin_info_clone(const maps_plugin_info_h origin,
 /**
  * @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
@@ -133,7 +133,7 @@ int maps_plugin_info_get_provider_name(const maps_plugin_info_h 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
index adef71d..d5f4d71 100755 (executable)
@@ -37,7 +37,7 @@ extern "C" {
 
 /**
  * @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()
@@ -47,7 +47,7 @@ typedef GList maps_coordinates_list_s;
 
 /**
  * @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()
index 71db098..2d36d5d 100644 (file)
@@ -40,7 +40,7 @@ extern "C" {
  * @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().
  *
@@ -58,7 +58,7 @@ int maps_route_maneuver_create(maps_route_maneuver_h *maneuver);
 /**
  * @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
@@ -79,7 +79,7 @@ int maps_route_maneuver_set_direction_id(maps_route_maneuver_h maneuver,
 /**
  * @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
@@ -99,7 +99,7 @@ int maps_route_maneuver_set_turn_type(maps_route_maneuver_h maneuver,
 /**
  * @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
@@ -118,7 +118,7 @@ int maps_route_maneuver_set_road_name(maps_route_maneuver_h maneuver,
 /**
  * @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
@@ -137,7 +137,7 @@ int maps_route_maneuver_set_instruction_text(maps_route_maneuver_h maneuver,
 /**
  * @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
@@ -157,7 +157,7 @@ int maps_route_maneuver_set_locale(maps_route_maneuver_h maneuver,
 /**
  * @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
@@ -176,7 +176,7 @@ int maps_route_maneuver_set_position(maps_route_maneuver_h 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
@@ -197,7 +197,7 @@ int maps_route_maneuver_set_time_to_next_instruction(maps_route_maneuver_h
  * @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
index c146013..81b7e3a 100644 (file)
@@ -48,7 +48,7 @@ extern "C" {
  * @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().
  *
@@ -66,7 +66,7 @@ int maps_route_create(maps_route_h *route);
 /**
  * @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
@@ -84,7 +84,7 @@ int maps_route_set_route_id(maps_route_h route, const char *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
@@ -104,7 +104,7 @@ int maps_route_set_origin(maps_route_h 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
@@ -124,7 +124,7 @@ int maps_route_set_destination(maps_route_h 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
@@ -143,7 +143,7 @@ int maps_route_set_bounding_box(maps_route_h route,
 /**
  * @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
@@ -162,7 +162,7 @@ int maps_route_set_total_distance(maps_route_h route,
 /**
  * @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
@@ -181,7 +181,7 @@ int maps_route_set_total_duration(maps_route_h route,
 /**
  * @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
@@ -202,7 +202,7 @@ int maps_route_set_transport_mode(maps_route_h route,
 /**
  * @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
@@ -222,7 +222,7 @@ int maps_route_set_distance_unit(maps_route_maneuver_h maneuver,
 /**
  * @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
@@ -240,7 +240,7 @@ int maps_route_set_path(maps_route_h route, const maps_item_list_h path);
 /**
  * @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
@@ -260,7 +260,7 @@ int maps_route_set_segments(maps_route_h route,
 /**
  * @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
index e9d9f81..1c0b432 100755 (executable)
@@ -40,7 +40,7 @@ extern "C" {
  * @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().
  *
@@ -58,7 +58,7 @@ int maps_route_segment_create(maps_route_segment_h *segment);
 /**
  * @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
@@ -77,7 +77,7 @@ int maps_route_segment_set_origin(maps_route_segment_h 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
@@ -96,7 +96,7 @@ int maps_route_segment_set_destination(maps_route_segment_h 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
@@ -115,7 +115,7 @@ int maps_route_segment_set_bounding_box(maps_route_segment_h 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
@@ -134,7 +134,7 @@ int maps_route_segment_set_distance(maps_route_segment_h 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
@@ -153,7 +153,7 @@ int maps_route_segment_set_duration(maps_route_segment_h 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
@@ -172,7 +172,7 @@ int maps_route_segment_set_path(maps_route_segment_h segment,
 /**
  * @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
index 1c7de8c..9b0ac82 100644 (file)
@@ -43,7 +43,7 @@ extern "C" {
 
 /**
  * @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 */
index 20ea9e5..73e8580 100644 (file)
@@ -37,7 +37,7 @@ extern "C" {
 
 /**
  * @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
 {
@@ -49,7 +49,7 @@ 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
@@ -78,7 +78,7 @@ int maps_view_set_zoom_factor(maps_view_h view, double zoom_factor);
 /**
  * @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.
index 2144374..ec45b61 100755 (executable)
@@ -41,7 +41,7 @@ extern "C" {
  * @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
@@ -61,7 +61,7 @@ int _maps_place_is_data_supported(const maps_place_h place,
  * @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
index 065f387..6b7783a 100755 (executable)
@@ -38,7 +38,7 @@ extern "C" {
  * @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
@@ -58,7 +58,7 @@ int _maps_route_is_data_supported(const maps_route_h route,
  * @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
index 54fa501..c2b0a26 100755 (executable)
@@ -40,7 +40,7 @@ extern "C" {
  * @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
@@ -61,7 +61,7 @@ int _maps_route_segment_is_data_supported(const maps_route_segment_h segment,
  * @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
index 7ee5ed9..6fea677 100755 (executable)
@@ -73,7 +73,7 @@
  * @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.
@@ -87,7 +87,7 @@ int maps_set_string(const char *src, const int max_length, char **dst);
 /*
  * @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.
index c589250..c9e3dcc 100644 (file)
@@ -17,6 +17,7 @@
 
 #include "gesture_detector.h"
 #include <glib.h>
+#include <math.h>
 
 
 extern bool _maps_view_is_gesture_available(maps_view_h view,