* @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().
*/
* @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.
* @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)
* @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
* @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
* @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,
* @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,
* @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,
* @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,
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;
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;