[9.0][maps-service] Fixed Typos 86/318386/1 accepted/tizen_9.0_unified accepted/tizen_unified accepted/tizen_unified_toolchain accepted/tizen_unified_x accepted/tizen_unified_x_asan tizen tizen_9.0 accepted/tizen/9.0/unified/20241030.233131 accepted/tizen/unified/20240930.083352 accepted/tizen/unified/toolchain/20241004.101219 accepted/tizen/unified/x/20240930.134641 accepted/tizen/unified/x/asan/20241013.235454 tizen_9.0_m2_release
authorPriya Kohli <priya.kohli@samsung.com>
Fri, 27 Sep 2024 08:55:16 +0000 (14:25 +0530)
committerPriya Kohli <priya.kohli@samsung.com>
Fri, 27 Sep 2024 08:55:16 +0000 (14:25 +0530)
Change-Id: I43872e4d55dfc42691623558673d650560f8a692
Signed-off-by: Priya Kohli <priya.kohli@samsung.com>
include/maps_coordinates.h
include/maps_service.h

index bfd772698a6f758324db22ef7cd3314d3b761307..6144cbfb54d731d8beeaf6f9fc27af92817e4a77 100644 (file)
@@ -42,7 +42,7 @@ extern "C" {
  * @deprecated Deprecated since 8.0.
  * @brief Handle of the Geographical Coordinates.
  * @details The Geographical Coordinates handle can be obtained via call of maps_coordinates_create().
- * @since_tize 2.4
+ * @since_tizen 2.4
  * @remarks To release the handle use maps_coordinates_destroy().\n
  *          To clone the handle use maps_coordinates_clone().
  */
@@ -55,7 +55,7 @@ typedef void *maps_coordinates_h;
  * @details This structure represents a Geographical Coordinates, specified with a @a latitude and @a longitude values.\n
  *          The @a latitude must be in range of [-90.0, 90.0].\n
  *          The @a longitude must be in range of [-180.0, 180.0].
- * @since_tize 2.4
+ * @since_tizen 2.4
  * @remarks #maps_coordinates_h is a void pointer to the #maps_coordinates_h.
  * @remarks Do not use #maps_coordinates_s directly if you are an application developer.
  *          Using #maps_coordinates_h is recommended.
@@ -84,7 +84,7 @@ typedef void *maps_coordinates_list_h;
  * @brief Creates a new instance of Geographical Coordinates and initiates a handle with it.
  * @details This function creates @a coordinates, a new instance of Geographical Coordinates of type #maps_coordinates_h with a specified @a latitude and @a longitude.\n
  *          New handle is assigned with this instance.
- * @since_tize 2.4
+ * @since_tizen 2.4
  * @remarks @a coordinates must be released using maps_coordinates_destroy().\n
  *          @a coordinates may be cloned using maps_coordinates_clone().
  * @param[in] latitude The latitude [-90.0 ~ 90.0] (degrees)
@@ -106,7 +106,7 @@ int maps_coordinates_create(const double latitude, const double longitude, maps_
  * @deprecated Deprecated since 8.0.
  * @brief Destroys the Geographical Coordinates and releases all its resources.
  * @details This function destroys the Geographical Coordinates #maps_coordinates_h and releases all its resources.
- * @since_tize 2.4
+ * @since_tizen 2.4
  * @param[in] coordinates The coordinate handle to destroy
  * @return @c 0 on coordinates,
  *         otherwise a negative error value
@@ -124,7 +124,7 @@ int maps_coordinates_destroy(maps_coordinates_h coordinates) TIZEN_DEPRECATED_AP
  * @deprecated Deprecated since 8.0.
  * @brief Clones the Geographical Coordinates.
  * @details This function makes a clone of the @a origin Geographical Coordinates of type #maps_coordinates_h.
- * @since_tize 2.4
+ * @since_tizen 2.4
  * @remarks @a cloned must be released using maps_coordinates_destroy().
  * @param[in] origin The original coordinate handle
  * @param[out] cloned A cloned coordinate handle
@@ -148,7 +148,7 @@ int maps_coordinates_clone(const maps_coordinates_h origin, maps_coordinates_h *
  * @deprecated Deprecated since 8.0.
  * @brief Gets the latitude of the coordinates.
  * @details This function gets the @a latitude value of the coordinates handle.
- * @since_tize 2.4
+ * @since_tizen 2.4
  * @param[in] coordinates The coordinate handle
  * @param[out] latitude The latitude of the coordinate handle
  * @return @c 0 on success,
@@ -167,7 +167,7 @@ int maps_coordinates_get_latitude(const maps_coordinates_h coordinates, double *
  * @deprecated Deprecated since 8.0.
  * @brief Gets the longitude of the coordinates.
  * @details This function gets the @a longitude value of the coordinates handle.
- * @since_tize 2.4
+ * @since_tizen 2.4
  * @param[in] coordinates The coordinate handle
  * @param[out] longitude The longitude of the coordinate handle
  * @return @c 0 on success,
@@ -209,7 +209,7 @@ int maps_coordinates_get_latitude_longitude(const maps_coordinates_h coordinates
  * @deprecated Deprecated since 8.0.
  * @brief Sets the latitude of the coordinates.
  * @details This function sets the @a latitude value of the coordinates handle.
- * @since_tize 2.4
+ * @since_tizen 2.4
  * @param[in] coordinates The coordinate handle
  * @param[in] latitude The latitude of the coordinate handle
  * @return @c 0 on success,
@@ -228,7 +228,7 @@ int maps_coordinates_set_latitude(maps_coordinates_h coordinates, const double l
  * @deprecated Deprecated since 8.0.
  * @brief Sets the longitude of the coordinates.
  * @details This function sets the @a longitude value of the coordinates handle.
- * @since_tize 2.4
+ * @since_tizen 2.4
  * @param[in] coordinates The coordinate handle
  * @param[out] longitude The longitude of the coordinate handle
  * @return @c 0 on success,
index 245d63f8db9508f1283a2d5f1bc8a26a96ca91d7..8a289ecfb06ed334acfd71a2d59f822993856df4 100644 (file)
@@ -74,12 +74,12 @@ typedef enum _maps_service_e {
        MAPS_SERVICE_SEARCH_ROUTE, /**< Indicates that maps_service_search_route() service is allowed */
        MAPS_SERVICE_SEARCH_ROUTE_WAYPOINTS, /**< Indicates that maps_service_search_route_waypoints() service is allowed */
        MAPS_SERVICE_CANCEL_REQUEST, /**< Indicates that maps_service_cancel_request() service is allowed */
-       MAPS_SERVICE_MULTI_REVERSE_GEOCODE, /**< Indicates that maps_service_multi_reverse_geocode() service is allowed (Since 3.0) @endif */
-       MAPS_SERVICE_SEARCH_PLACE_LIST, /**< Indicates that maps_service_search_place_list() service is allowed (Since 3.0) @endif */
-       MAPS_SERVICE_SEARCH_GET_PLACE_DETAILS, /**< Indicates that maps_service_search_get_place_details() service is allowed (Since 3.0) @endif */
+       MAPS_SERVICE_MULTI_REVERSE_GEOCODE, /**< Indicates that maps_service_multi_reverse_geocode() service is allowed (Since 3.0) */
+       MAPS_SERVICE_SEARCH_PLACE_LIST, /**< Indicates that maps_service_search_place_list() service is allowed (Since 3.0) */
+       MAPS_SERVICE_SEARCH_GET_PLACE_DETAILS, /**< Indicates that maps_service_search_get_place_details() service is allowed (Since 3.0) */
 
-       MAPS_SERVICE_VIEW = 0x100, /**< Indicates that maps view service is allowed (Since 3.0) @endif */
-       MAPS_SERVICE_VIEW_SNAPSHOT /**< Indicates that maps view snapshot service is allowed (Since 3.0) @endif */
+       MAPS_SERVICE_VIEW = 0x100, /**< Indicates that maps view service is allowed (Since 3.0) */
+       MAPS_SERVICE_VIEW_SNAPSHOT /**< Indicates that maps view snapshot service is allowed (Since 3.0) */
 } maps_service_e;
 
 
@@ -103,10 +103,10 @@ typedef enum _maps_service_data_e {
        MAPS_ROUTE_SEGMENTS_PATH, /**< Indicates that the Route Data Structure is defined as a list of Segments while each segment is defined as a Path */
        MAPS_ROUTE_SEGMENTS_MANEUVERS, /**< Indicates that the Route Data Structure is defined as a list of Segments while each segment is defined as a list of Maneuvers*/
 
-       MAPS_VIEW_TRAFFIC = 0x100, /**< Indicates the availability of traffic information on the Map (Since 3.0) @endif */
-       MAPS_VIEW_PUBLIC_TRANSIT, /**< Indicates the availability of public transit information on the Map (Since 3.0) @endif */
-       MAPS_VIEW_BUILDING, /**< Indicates the availability of 3D building drawable on the Map (Since 3.0) @endif */
-       MAPS_VIEW_SCALEBAR /**< Indicates the availability of scale bar on the Map (Since 3.0) @endif */
+       MAPS_VIEW_TRAFFIC = 0x100, /**< Indicates the availability of traffic information on the Map (Since 3.0) */
+       MAPS_VIEW_PUBLIC_TRANSIT, /**< Indicates the availability of public transit information on the Map (Since 3.0) */
+       MAPS_VIEW_BUILDING, /**< Indicates the availability of 3D building drawable on the Map (Since 3.0) */
+       MAPS_VIEW_SCALEBAR /**< Indicates the availability of scale bar on the Map (Since 3.0) */
 } maps_service_data_e;