[ACR-703] Add maps feature 52/80452/16
authorjomui <jongmun.woo@samsung.com>
Mon, 18 Jul 2016 06:55:01 +0000 (15:55 +0900)
committerchanywa <cbible.kim@samsung.com>
Thu, 4 Aug 2016 00:25:24 +0000 (09:25 +0900)
Signed-off-by: jomui <jongmun.woo@samsung.com>
Change-Id: I3b9b252d3feb7707eaf54e5f1f24136001f1e377

26 files changed:
doc/maps_service_doc.h
include/maps_address.h
include/maps_area.h
include/maps_coordinates.h
include/maps_place.h
include/maps_place_attribute.h
include/maps_place_category.h
include/maps_place_contact.h
include/maps_place_editorial.h
include/maps_place_filter.h
include/maps_place_image.h
include/maps_place_link_object.h
include/maps_place_media.h
include/maps_place_rating.h
include/maps_place_review.h
include/maps_place_url.h
include/maps_preference.h
include/maps_route.h
include/maps_route_maneuver.h
include/maps_route_segment.h
include/maps_service.h
include/maps_types.h [new file with mode: 0644]
include/maps_view.h
include/maps_view_event_data.h
include/maps_view_object.h
include/maps_view_snapshot.h

index ea74bd3200613eb55b07bc6836cbfc8d7247c04f..2af7937ab6f441b2d6a8f6d1712ad09d84bc36e0 100644 (file)
  * Maps API allows a Developer to choose one of Map Providers which are being
  * included as plugins
  *
- *
- *
- * @section    CAPI_MAPS_SERVICE_MODULE_FEATURE Features
- *
  * Geocoding
  * - The Maps Geocoding API allows translating an address to its geographical
  * location defined in terms of latitude and longitude; the input can be a
  * The developer is allowed to choose one of map providers by manipulating map
  * plug-ins.
  *
+ *
+ * @section CAPI_MAPS_SERVICE_MODULE_FEATURE Related Features
+ * This API is related with the following features:\n
+ * - http://tizen.org/feature/maps\n
+ *
+ * It is recommended to design feature related codes in your application for reliability.\n
+ * You can check if a device supports the related features for this API by using @ref CAPI_SYSTEM_SYSTEM_INFO_MODULE, thereby controlling the procedure of your application.\n
+ * To ensure your application is only running on the device with specific features, please define the features in your manifest file using the manifest editor in the SDK.\n
+ * More details on featuring your application can be found from <a href="https://developer.tizen.org/development/tools/native-tools/manifest-text-editor#feature"><b>Feature Element</b>.</a>
+ *
  */
 
 #endif /*__MAPS_SERVICE_DOC_H__ */
index 7017325fb71b084e82d9d9d0060b272e3b8aa78f..a1a1d3ca999bb94d6fef029ef787657d7b2fed9c 100644 (file)
@@ -63,6 +63,7 @@ typedef void *maps_address_list_h;
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_address_destroy()
  * @see maps_address_clone()
@@ -79,6 +80,7 @@ int maps_address_create(maps_address_h *address);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -101,6 +103,7 @@ int maps_address_destroy(maps_address_h address);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a origin is created using maps_address_create().
  *
@@ -122,6 +125,7 @@ int maps_address_clone(const maps_address_h origin, maps_address_h *cloned);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -142,6 +146,7 @@ int maps_address_get_building_number(const maps_address_h address,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -161,6 +166,7 @@ int maps_address_get_street(const maps_address_h address, char **street);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -180,6 +186,7 @@ int maps_address_get_district(const maps_address_h address, char **district);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -199,6 +206,7 @@ int maps_address_get_city(const maps_address_h address, char **city);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -218,6 +226,7 @@ int maps_address_get_state(const maps_address_h address, char **state);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -237,6 +246,7 @@ int maps_address_get_country(const maps_address_h address, char **country);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -257,6 +267,7 @@ int maps_address_get_country_code(const maps_address_h address,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -276,6 +287,7 @@ int maps_address_get_county(const maps_address_h address, char **county);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -296,6 +308,7 @@ int maps_address_get_postal_code(const maps_address_h address,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -316,6 +329,7 @@ int maps_address_get_freetext(const maps_address_h address, char **freetext);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -335,6 +349,7 @@ int maps_address_set_building_number(maps_address_h address,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -353,6 +368,7 @@ int maps_address_set_street(maps_address_h address, const char *street);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -371,6 +387,7 @@ int maps_address_set_district(maps_address_h address, const char *district);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -389,6 +406,7 @@ int maps_address_set_city(maps_address_h address, const char *city);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -407,6 +425,7 @@ int maps_address_set_state(maps_address_h address, const char *state);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -425,6 +444,7 @@ int maps_address_set_country(maps_address_h address, const char *country);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -444,6 +464,7 @@ int maps_address_set_country_code(maps_address_h address,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -462,6 +483,7 @@ int maps_address_set_county(maps_address_h address, const char *county);
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -481,6 +503,7 @@ int maps_address_set_postal_code(maps_address_h address,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a address is created using maps_address_create().
  *
@@ -498,6 +521,7 @@ int maps_address_set_freetext(maps_address_h address, const char *freetext);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_address_list_destroy()
  */
@@ -514,6 +538,7 @@ int maps_address_list_create(maps_address_list_h *address_list);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_address_list_create()
  * @see maps_address_list_destroy()
@@ -532,6 +557,7 @@ int maps_address_list_append(maps_address_list_h address_list, maps_address_h ad
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_address_list_create()
  * @see maps_address_list_destroy()
@@ -548,6 +574,7 @@ int maps_address_list_remove(maps_address_list_h address_list, maps_address_h ad
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_address_list_create()
  * @see maps_address_list_destroy()
@@ -580,6 +607,7 @@ typedef bool (*maps_address_cb)(int index, maps_address_h address, void *user_da
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_address_list_create()
  * @see maps_address_list_destroy()
@@ -596,6 +624,7 @@ int maps_address_list_foreach(maps_address_list_h address_list,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_address_list_create()
  */
index 66813bc7a0db5a1161057646ccd068998f52eab4..b4362a5d0a698bdb7115efffd913687199fe6d07 100644 (file)
@@ -126,6 +126,7 @@ typedef struct _maps_area_s {
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a top_left and @a bottom_right are created using
  * maps_coordinates_create().
@@ -159,6 +160,7 @@ int maps_area_create_rectangle(const maps_coordinates_h top_left,
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a center is created using maps_coordinates_create().
  *
@@ -184,6 +186,7 @@ int maps_area_create_circle(const maps_coordinates_h center,
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a area can be created using maps_area_create_rectangle() or
  * maps_area_create_circle().
@@ -206,6 +209,7 @@ int maps_area_destroy(maps_area_h area);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a origin is created using maps_area_create_rectangle() or
  * maps_area_create_circle().
index 97285a1a341b09bed293d31f08f13b2be6cf0fa5..fa2f7d53ec2fac1b812222fce31e6cbe1089a97f 100644 (file)
@@ -17,6 +17,8 @@
 #ifndef __MAPS_COORDINATES_H__
 #define __MAPS_COORDINATES_H__
 
+#include <tizen_type.h>
+
 /**
  * @ingroup    CAPI_MAPS_SERVICE_MODULE
  * @defgroup   CAPI_MAPS_COORDS_MODULE Coordinates
@@ -87,6 +89,7 @@ typedef void *maps_coordinates_list_h;
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_coordinates_clone()
  * @see maps_coordinates_destroy()
@@ -105,6 +108,7 @@ int maps_coordinates_create(const double latitude, const double longitude,
  * @return     0 on coordinates, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a coordinates are created using maps_coordinates_create_rectangle().
  *
@@ -126,6 +130,7 @@ int maps_coordinates_destroy(maps_coordinates_h coordinates);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a origin is created using maps_coordinates_create().
  *
@@ -147,6 +152,7 @@ int maps_coordinates_clone(const maps_coordinates_h origin,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a coordinates are created using maps_coordinates_create().
  *
@@ -166,6 +172,7 @@ int maps_coordinates_get_latitude(const maps_coordinates_h coordinates,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a coordinates are created using maps_coordinates_create().
  *
@@ -187,6 +194,7 @@ int maps_coordinates_get_longitude(const maps_coordinates_h coordinates,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a coordinates are created using maps_coordinates_create().
  *
@@ -208,6 +216,7 @@ int maps_coordinates_get_latitude_longitude(const maps_coordinates_h coordinates
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a coordinates are created using maps_coordinates_create().
  *
@@ -227,6 +236,7 @@ int maps_coordinates_set_latitude(maps_coordinates_h coordinates,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a coordinates are created using maps_coordinates_create().
  *
@@ -248,6 +258,7 @@ int maps_coordinates_set_longitude(maps_coordinates_h coordinates,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a coordinates are created using maps_coordinates_create().
  *
@@ -267,6 +278,7 @@ int maps_coordinates_set_latitude_longitude(maps_coordinates_h coordinates,
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_coordinates_list_destroy()
  */
@@ -279,6 +291,7 @@ int maps_coordinates_list_create(maps_coordinates_list_h *coordinates_list);
  * @param[in]  coordinates_list        coordinates list handle
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_coordinates_list_create()
  */
@@ -294,6 +307,7 @@ int maps_coordinates_list_destroy(maps_coordinates_list_h coordinates_list);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_coordinates_list_create()
  * @see maps_coordinates_list_destroy()
@@ -310,6 +324,7 @@ int maps_coordinates_list_append(maps_coordinates_list_h coordinates_list,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_coordinates_list_create()
  * @see maps_coordinates_list_destroy()
@@ -326,6 +341,7 @@ int maps_coordinates_list_remove(maps_coordinates_list_h coordinates_list,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_coordinates_list_create()
  * @see maps_coordinates_list_destroy()
@@ -356,6 +372,7 @@ typedef bool (*maps_coordinates_cb) (int index, maps_coordinates_h coordinates,
  * @param[in]  user_data       The user data to be passed to the callback function
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_coordinates_list_create()
  * @see maps_coordinates_list_destroy()
index 0a2bcebd636f9bf0a6676fde2d1af9401555cf8c..ad56c221d02c7626875c07e7cb3363cf46109b20 100644 (file)
@@ -292,6 +292,7 @@ typedef bool(*maps_place_cb) (int index, maps_place_h place, void *user_data);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_clone()
  */
@@ -310,6 +311,7 @@ int maps_place_destroy(maps_place_h place);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_destroy()
  */
@@ -328,6 +330,7 @@ int maps_place_clone(const maps_place_h origin, maps_place_h *cloned);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_get_id(const maps_place_h place, char **id);
 
@@ -342,6 +345,7 @@ int maps_place_get_id(const maps_place_h place, char **id);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_get_name(const maps_place_h place, char **name);
 
@@ -356,6 +360,7 @@ int maps_place_get_name(const maps_place_h place, char **name);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_get_uri(const maps_place_h place, char **uri);
 
@@ -370,6 +375,7 @@ int maps_place_get_uri(const maps_place_h place, char **uri);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_get_location(const maps_place_h place,
                            maps_coordinates_h *location);
@@ -385,6 +391,7 @@ int maps_place_get_location(const maps_place_h place,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_get_distance(const maps_place_h place, int *distance);
 
@@ -434,6 +441,7 @@ int maps_place_get_rating(const maps_place_h place,
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_NOT_FOUND Result not found
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @post This function invokes maps_place_properties_cb() repeatedly to retrieve
  * each property.
@@ -656,6 +664,7 @@ int maps_place_list_foreach(const maps_place_list_h place_list, maps_place_cb ca
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_list_foreach()
  */
index 4ff539c72b87e3f343cc79f1512c0d396fea7f97..bb8d39d3ff6803a010b42f11419b89773a77576b 100644 (file)
@@ -60,6 +60,7 @@ typedef void *maps_place_attribute_h;
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_attribute_clone()
  */
@@ -78,6 +79,7 @@ int maps_place_attribute_destroy(maps_place_attribute_h attribute);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_attribute_destroy()
  */
@@ -97,6 +99,7 @@ int maps_place_attribute_clone(const maps_place_attribute_h origin,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_attribute_get_id(const maps_place_attribute_h attribute,
                                char **id);
@@ -112,6 +115,7 @@ int maps_place_attribute_get_id(const maps_place_attribute_h attribute,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_attribute_get_label(const maps_place_attribute_h attribute,
                                   char **label);
@@ -127,6 +131,7 @@ int maps_place_attribute_get_label(const maps_place_attribute_h attribute,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_attribute_get_text(const maps_place_attribute_h attribute,
                                  char **text);
index 8b3118b452a4581612cb9279c17b405e755ae7af..5edd2ffa55869422faeb29cb268b2b78376cb52f 100644 (file)
@@ -63,6 +63,7 @@ typedef void *maps_place_category_h;
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_category_destroy()
  * @see maps_place_category_clone()
@@ -83,6 +84,7 @@ int maps_place_category_create(maps_place_category_h *category);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_category_destroy()
  */
@@ -101,6 +103,7 @@ int maps_place_category_clone(const maps_place_category_h origin,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_category_clone()
  */
@@ -120,6 +123,7 @@ int maps_place_category_destroy(maps_place_category_h category);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_category_get_id(const maps_place_category_h category,
                                                                char **id);
@@ -136,6 +140,7 @@ int maps_place_category_get_id(const maps_place_category_h category,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_category_get_name(const maps_place_category_h category,
                                                                char **name);
@@ -152,6 +157,7 @@ int maps_place_category_get_name(const maps_place_category_h category,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_category_get_url(const maps_place_category_h category,
                                                                char **url);
@@ -167,6 +173,7 @@ int maps_place_category_get_url(const maps_place_category_h category,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a category is created using maps_place_category_create().
  *
@@ -187,6 +194,7 @@ int maps_place_category_set_id(maps_place_category_h category,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a category is created using maps_place_category_create().
  *
@@ -207,6 +215,7 @@ int maps_place_category_set_name(maps_place_category_h category,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a category is created using maps_place_category_create().
  *
index 33c774e61dafadfaba2af9a1ce11419a3f808d46..46badfa113b06d28d078b05765b48383c7ada665 100644 (file)
@@ -59,6 +59,7 @@ typedef void *maps_place_contact_h;
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_contact_clone()
  */
@@ -77,6 +78,7 @@ int maps_place_contact_destroy(maps_place_contact_h contact);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_contact_destroy()
  */
@@ -96,6 +98,7 @@ int maps_place_contact_clone(const maps_place_contact_h origin,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_contact_get_label(const maps_place_contact_h contact,
                                 char **label);
@@ -111,6 +114,7 @@ int maps_place_contact_get_label(const maps_place_contact_h contact,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_contact_get_type(const maps_place_contact_h contact,
                                char **type);
@@ -126,6 +130,7 @@ int maps_place_contact_get_type(const maps_place_contact_h contact,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_contact_get_value(const maps_place_contact_h contact,
                                 char **value);
index 2a322475b2d422e329b0d1341ffac14c5b4d9554..28a8f661d60b143351ca78d13165236a5e9553d1 100644 (file)
@@ -62,6 +62,7 @@ typedef void *maps_place_editorial_h;
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_editorial_clone()
  */
@@ -80,6 +81,7 @@ int maps_place_editorial_destroy(maps_place_editorial_h editorial);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_editorial_destroy()
  */
@@ -99,6 +101,7 @@ int maps_place_editorial_clone(const maps_place_editorial_h origin,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_editorial_get_description(const maps_place_editorial_h
                                         editorial, char **description);
@@ -114,6 +117,7 @@ int maps_place_editorial_get_description(const maps_place_editorial_h
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_editorial_get_language(const maps_place_editorial_h editorial,
                                      char **language);
@@ -129,6 +133,7 @@ int maps_place_editorial_get_language(const maps_place_editorial_h editorial,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see #maps_place_media_h
  */
index bfe17ea13d015b2fb13e2559bbdc97eb51fdfb09..c759e5089ec31e93cba6ea88f19a23a2002f4ead 100644 (file)
@@ -90,6 +90,7 @@ typedef bool(*maps_place_filter_properties_cb) (int index, int total,
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_filter_destroy()
  * @see maps_place_filter_clone()
@@ -106,6 +107,7 @@ int maps_place_filter_create(maps_place_filter_h *filter);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a filter is created using maps_place_filter_create().
  *
@@ -129,6 +131,7 @@ int maps_place_filter_destroy(maps_place_filter_h filter);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a origin is created using maps_place_filter_create().
  *
@@ -153,6 +156,7 @@ int maps_place_filter_clone(const maps_place_filter_h origin,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a filter is created using maps_place_filter_create().
  *
@@ -173,6 +177,7 @@ int maps_place_filter_get(const maps_place_filter_h filter, const char *key,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a filter is created using maps_place_filter_create().
  *
@@ -193,6 +198,7 @@ int maps_place_filter_get_keyword(const maps_place_filter_h filter,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a filter is created using maps_place_filter_create().
  *
@@ -214,6 +220,7 @@ int maps_place_filter_get_place_name(const maps_place_filter_h filter,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a filter is created using maps_place_filter_create().
  *
@@ -236,6 +243,7 @@ int maps_place_filter_get_category(const maps_place_filter_h filter,
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_NOT_FOUND Result not found
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a filter is created using maps_place_filter_create().
  *
@@ -262,6 +270,7 @@ int maps_place_filter_foreach_property(const maps_place_filter_h filter,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a filter is created using maps_place_filter_create().
  *
@@ -286,6 +295,7 @@ int maps_place_filter_get_place_address(const maps_place_filter_h filter,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a filter is created using maps_place_filter_create().
  *
@@ -305,6 +315,7 @@ int maps_place_filter_set(maps_place_filter_h filter, const char *key,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a filter is created using maps_place_filter_create().
  *
@@ -324,6 +335,7 @@ int maps_place_filter_set_keyword(maps_place_filter_h filter,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a filter is created using maps_place_filter_create().
  *
@@ -343,6 +355,7 @@ int maps_place_filter_set_place_name(maps_place_filter_h filter,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a filter is created using maps_place_filter_create().
  *
@@ -362,6 +375,7 @@ int maps_place_filter_set_category(maps_place_filter_h filter,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a filter is created using maps_place_filter_create().
  *
index 32a8c8e0d56b36ca65617b1a452fe4e615c31bf8..e497c72bdc66189519c30bf1f4a36dba8b1ce95e 100644 (file)
@@ -61,6 +61,7 @@ typedef void *maps_place_image_h;
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_image_clone()
  */
@@ -79,6 +80,7 @@ int maps_place_image_destroy(maps_place_image_h image);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_image_destroy()
  */
@@ -98,6 +100,7 @@ int maps_place_image_clone(const maps_place_image_h origin,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_image_get_id(const maps_place_image_h image, char **id);
 
@@ -112,6 +115,7 @@ int maps_place_image_get_id(const maps_place_image_h image, char **id);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_image_get_url(const maps_place_image_h image, char **url);
 
@@ -125,6 +129,7 @@ int maps_place_image_get_url(const maps_place_image_h image, char **url);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_image_get_width(const maps_place_image_h image, int *width);
 
@@ -138,6 +143,7 @@ int maps_place_image_get_width(const maps_place_image_h image, int *width);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_image_get_height(const maps_place_image_h image, int *height);
 
@@ -152,6 +158,7 @@ int maps_place_image_get_height(const maps_place_image_h image, int *height);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see #maps_place_link_object_h
  */
@@ -169,6 +176,7 @@ int maps_place_image_get_user_link(const maps_place_image_h image,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see #maps_place_media_h
  */
index 7de77416bcfce5e92591484d048fc959a9e346a6..9d0411d5a8aad096d44a71bdf11d7f91b2087321 100644 (file)
@@ -61,6 +61,7 @@ typedef void *maps_place_link_object_h;
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_link_object_clone()
  */
@@ -79,6 +80,7 @@ int maps_place_link_object_destroy(maps_place_link_object_h link);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_link_object_destroy()
  */
@@ -98,6 +100,7 @@ int maps_place_link_object_clone(const maps_place_link_object_h origin,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_link_object_get_id(const maps_place_link_object_h link,
                                  char **id);
@@ -113,6 +116,7 @@ int maps_place_link_object_get_id(const maps_place_link_object_h link,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_link_object_get_name(const maps_place_link_object_h link,
                                    char **name);
@@ -128,6 +132,7 @@ int maps_place_link_object_get_name(const maps_place_link_object_h link,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_link_object_get_string(const maps_place_link_object_h link,
                                      char **string);
@@ -143,6 +148,7 @@ int maps_place_link_object_get_string(const maps_place_link_object_h link,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_link_object_get_type(const maps_place_link_object_h link,
                                    char **type);
index a5adf2fd6b1419769c7093d1ccac8d683c886893..f9c03a49fa44b1ed4059e7a538f8392234b5779a 100644 (file)
@@ -60,6 +60,7 @@ typedef void *maps_place_media_h;
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_media_clone()
  */
@@ -78,6 +79,7 @@ int maps_place_media_destroy(maps_place_media_h media);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_media_destroy()
  */
@@ -97,6 +99,7 @@ int maps_place_media_clone(const maps_place_media_h origin,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_media_get_attribution(const maps_place_media_h media,
                                     char **attribution);
@@ -112,6 +115,7 @@ int maps_place_media_get_attribution(const maps_place_media_h media,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see #maps_place_link_object_h
  */
@@ -129,6 +133,7 @@ int maps_place_media_get_supplier(const maps_place_media_h media,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see #maps_place_link_object_h
  */
index 362d92c142398b5f6f57368474e23dc5488dc514..897dce4d0037316bfccea84165850f6070fe9522 100644 (file)
@@ -60,6 +60,7 @@ typedef void *maps_place_rating_h;
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_rating_clone()
  */
@@ -78,6 +79,7 @@ int maps_place_rating_destroy(maps_place_rating_h rating);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_rating_destroy()
  */
@@ -96,6 +98,7 @@ int maps_place_rating_clone(const maps_place_rating_h origin,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_rating_get_count(const maps_place_rating_h rating, int *count);
 
@@ -109,6 +112,7 @@ int maps_place_rating_get_count(const maps_place_rating_h rating, int *count);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_rating_get_average(const maps_place_rating_h rating,
                                  double *average);
index 60d18fd02df857fad7a6b35a154cf1db9f3d6edc..f809187ba5b3101a313b72f47c34794b171b6831 100644 (file)
@@ -61,6 +61,7 @@ typedef void *maps_place_review_h;
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_review_clone()
  */
@@ -79,6 +80,7 @@ int maps_place_review_destroy(maps_place_review_h review);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_review_destroy()
  */
@@ -98,6 +100,7 @@ int maps_place_review_clone(const maps_place_review_h origin,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_review_get_date(const maps_place_review_h review, char **date);
 
@@ -112,6 +115,7 @@ int maps_place_review_get_date(const maps_place_review_h review, char **date);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_review_get_title(const maps_place_review_h review,
                                char **title);
@@ -126,6 +130,7 @@ int maps_place_review_get_title(const maps_place_review_h review,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_review_get_rating(const maps_place_review_h review,
                                 double *rating);
@@ -141,6 +146,7 @@ int maps_place_review_get_rating(const maps_place_review_h review,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_review_get_description(const maps_place_review_h review,
                                      char **description);
@@ -156,6 +162,7 @@ int maps_place_review_get_description(const maps_place_review_h review,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_review_get_language(const maps_place_review_h review,
                                   char **language);
@@ -171,6 +178,7 @@ int maps_place_review_get_language(const maps_place_review_h review,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see #maps_place_media_h
  */
@@ -188,6 +196,7 @@ int maps_place_review_get_media(const maps_place_review_h review,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see #maps_place_link_object_h
  */
index 5d67ec755717377876be727ce855c454e29f98fd..05c429cd86496c8f4d66978fde0a5a08602d3ecc 100644 (file)
@@ -59,6 +59,7 @@ typedef void *maps_place_url_h;
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER   Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_url_clone()
  */
@@ -77,6 +78,7 @@ int maps_place_url_destroy(maps_place_url_h url);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER   Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_place_url_destroy()
  */
@@ -96,6 +98,7 @@ int maps_place_url_clone(const maps_place_url_h origin,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER   Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_url_get_path(const maps_place_url_h url, char **path);
 
@@ -110,6 +113,7 @@ int maps_place_url_get_path(const maps_place_url_h url, char **path);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER   Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_place_url_get_description(const maps_place_url_h url, char **desc);
 
index 81c0700555f77cb7b7c6994541e4f1869da9b1ad..88862a22954a4471ca5296ed813635e732b0ecf3 100644 (file)
@@ -292,6 +292,7 @@ typedef bool(*maps_preference_properties_cb) (int index, int total, char *key,
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_preference_destroy()
  * @see maps_preference_clone()
@@ -309,6 +310,7 @@ int maps_preference_create(maps_preference_h *preference);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_preference_clone()
  */
@@ -327,6 +329,7 @@ int maps_preference_destroy(maps_preference_h preference);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_preference_destroy()
  */
@@ -345,6 +348,7 @@ int maps_preference_clone(const maps_preference_h origin,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_preference_get_distance_unit(const maps_preference_h preference,
                                                                maps_distance_unit_e *unit);
@@ -360,6 +364,7 @@ int maps_preference_get_distance_unit(const maps_preference_h preference,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_preference_get_language(const maps_preference_h preference,
                                                                char **language);
@@ -374,6 +379,7 @@ int maps_preference_get_language(const maps_preference_h preference,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_preference_get_max_results(const maps_preference_h preference,
                                                                int *max_results);
@@ -389,6 +395,7 @@ int maps_preference_get_max_results(const maps_preference_h preference,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_preference_get_country_code(const maps_preference_h preference,
                                                                char **country_code);
@@ -403,6 +410,7 @@ int maps_preference_get_country_code(const maps_preference_h preference,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_preference_get_route_optimization(const maps_preference_h preference,
                                                                maps_route_optimization_e * optimization);
@@ -417,6 +425,7 @@ int maps_preference_get_route_optimization(const maps_preference_h preference,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_preference_get_route_transport_mode(const maps_preference_h preference,
                                                                maps_route_transport_mode_e *transport_mode);
@@ -431,6 +440,7 @@ int maps_preference_get_route_transport_mode(const maps_preference_h preference,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_preference_get_route_feature_weight(const maps_preference_h preference,
                                                                maps_route_feature_weight_e *feature_weight);
@@ -445,6 +455,7 @@ int maps_preference_get_route_feature_weight(const maps_preference_h preference,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_preference_get_route_feature(const maps_preference_h preference,
                                                                maps_route_feature_e *feature);
@@ -459,6 +470,7 @@ int maps_preference_get_route_feature(const maps_preference_h preference,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_preference_get_route_alternatives_enabled(const maps_preference_h preference,
                                                                bool *enable);
@@ -475,6 +487,7 @@ int maps_preference_get_route_alternatives_enabled(const maps_preference_h prefe
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_preference_get(const maps_preference_h preference,
                                                                const char *key, char **value);
@@ -494,6 +507,7 @@ int maps_preference_get(const maps_preference_h preference,
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_NOT_FOUND Result not found
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @post This function invokes maps_preference_properties_cb() repeatedly to
  * retrieve each property.
@@ -515,6 +529,7 @@ int maps_preference_foreach_property(const maps_preference_h preference,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a preference is created using maps_preference_create().
  *
@@ -539,6 +554,7 @@ int maps_preference_set_distance_unit(maps_preference_h preference,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a preference is created using maps_preference_create().
  *
@@ -558,6 +574,7 @@ int maps_preference_set_language(maps_preference_h preference,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a preference is created using maps_preference_create().
  *
@@ -577,6 +594,7 @@ int maps_preference_set_max_results(maps_preference_h preference,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a preference is created using maps_preference_create().
  *
@@ -596,6 +614,7 @@ int maps_preference_set_country_code(maps_preference_h preference,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a preference is created using maps_preference_create().
  *
@@ -615,6 +634,7 @@ int maps_preference_set_route_optimization(maps_preference_h preference,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a preference is created using maps_preference_create().
  *
@@ -634,6 +654,7 @@ int maps_preference_set_route_transport_mode(maps_preference_h preference,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a preference is created using maps_preference_create().
  *
@@ -653,6 +674,7 @@ int maps_preference_set_route_feature_weight(maps_preference_h preference,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a preference is created using maps_preference_create().
  *
@@ -672,6 +694,7 @@ int maps_preference_set_route_feature(maps_preference_h preference,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a preference is created using maps_preference_create().
  *
@@ -693,6 +716,7 @@ int maps_preference_set_route_alternatives_enabled(maps_preference_h preference,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a preference is created using maps_preference_create().
  *
index de231ca7e40e5c8dc57de9d7f627d4c9c783ee09..fb28e9affbd7ee46bafb9ebaa7b2498528ff5913 100644 (file)
@@ -143,6 +143,7 @@ typedef bool(*maps_route_properties_cb) (int index, int total, char *key,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_route_clone()
  */
@@ -161,6 +162,7 @@ int maps_route_destroy(maps_route_h route);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_route_destroy()
  */
@@ -179,6 +181,7 @@ int maps_route_clone(const maps_route_h origin, maps_route_h *cloned);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_route_get_route_id(const maps_route_h route, char **route_id);
 
@@ -193,6 +196,7 @@ int maps_route_get_route_id(const maps_route_h route, char **route_id);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_route_get_destination()
  * @see #maps_coordinates_h
@@ -211,6 +215,7 @@ int maps_route_get_origin(const maps_route_h route,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_route_get_origin()
  * @see #maps_coordinates_h
@@ -229,6 +234,7 @@ int maps_route_get_destination(const maps_route_h route,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see #maps_area_h
  */
@@ -245,6 +251,7 @@ int maps_route_get_bounding_box(const maps_route_h route,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see #maps_route_transport_mode_e
  */
@@ -262,6 +269,7 @@ int maps_route_get_transport_mode(const maps_route_h route,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_route_get_total_duration()
  */
@@ -278,6 +286,7 @@ int maps_route_get_total_distance(const maps_route_h route,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_route_get_total_distance()
  */
@@ -294,6 +303,7 @@ int maps_route_get_total_duration(const maps_route_h route,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see #maps_distance_unit_e
  */
@@ -314,6 +324,7 @@ int maps_route_get_distance_unit(const maps_route_h route,
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_NOT_FOUND Result not found
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @post This function invokes maps_route_properties_cb() repeatedly to retrieve
  * each property.
index 9de680a4d8131c46a88260244cddafe3cc025275..e14aafddeac461dae35a54a5cb9892d9af1435fc 100644 (file)
@@ -99,6 +99,7 @@ typedef enum {
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_route_maneuver_clone()
  */
@@ -117,6 +118,7 @@ int maps_route_maneuver_destroy(maps_route_maneuver_h maneuver);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY               Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_route_maneuver_destroy()
  */
@@ -135,6 +137,7 @@ int maps_route_maneuver_clone(const maps_route_maneuver_h origin,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see #maps_route_direction_e
  */
@@ -151,6 +154,7 @@ int maps_route_maneuver_get_direction_id(const maps_route_maneuver_h maneuver,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see #maps_route_turn_type_e
  */
@@ -168,6 +172,7 @@ int maps_route_maneuver_get_turn_type(const maps_route_maneuver_h maneuver,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see #maps_coordinates_h
  */
@@ -185,6 +190,7 @@ int maps_route_maneuver_get_position(const maps_route_maneuver_h maneuver,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_route_maneuver_get_road_name(const maps_route_maneuver_h maneuver,
                                      char **road_name);
@@ -202,6 +208,7 @@ int maps_route_maneuver_get_road_name(const maps_route_maneuver_h maneuver,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_route_maneuver_get_instruction_text(const maps_route_maneuver_h
                                             maneuver,
@@ -219,6 +226,7 @@ int maps_route_maneuver_get_instruction_text(const maps_route_maneuver_h
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_route_maneuver_get_locale(const maps_route_maneuver_h maneuver,
                                   char **locale);
@@ -236,6 +244,7 @@ int maps_route_maneuver_get_locale(const maps_route_maneuver_h maneuver,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_route_maneuver_get_time_to_next_instruction(const maps_route_maneuver_h
                                                     maneuver,
@@ -253,6 +262,7 @@ int maps_route_maneuver_get_time_to_next_instruction(const maps_route_maneuver_h
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_route_maneuver_get_distance_to_next_instruction(const
                                                         maps_route_maneuver_h
index b31acd2821098b00d8f16cedb375c71fd2cdf171..2ab28ae705fcc05f5e7e8cf071ffc11e674e601f 100644 (file)
@@ -115,6 +115,7 @@ typedef bool(*maps_route_segment_maneuver_cb) (int index, int total,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER   Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_route_segment_clone()
  */
@@ -133,6 +134,7 @@ int maps_route_segment_destroy(maps_route_segment_h segment);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see maps_route_segment_destroy()
  */
@@ -152,6 +154,7 @@ int maps_route_segment_clone(const maps_route_segment_h origin,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see #maps_coordinates_h
  */
@@ -169,6 +172,7 @@ int maps_route_segment_get_origin(const maps_route_segment_h segment,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see #maps_coordinates_h
  */
@@ -186,6 +190,7 @@ int maps_route_segment_get_destination(const maps_route_segment_h segment,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see #maps_area_h
  */
@@ -202,6 +207,7 @@ int maps_route_segment_get_bounding_box(const maps_route_segment_h segment,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_route_segment_get_distance(const maps_route_segment_h segment,
                                    double *distance);
@@ -216,6 +222,7 @@ int maps_route_segment_get_distance(const maps_route_segment_h segment,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
 int maps_route_segment_get_duration(const maps_route_segment_h segment,
                                    long *duration);
index 0ca6830ce2ec433a366bc5e8b796c27e436e5c6e..0f7c2164c69c69856bab869b31bd68d7923ed845 100644 (file)
@@ -18,6 +18,7 @@
 #define __MAPS_SERVICE_H__
 
 #include <tizen_type.h>
+#include <maps_types.h>
 #include <maps_error.h>
 #include <maps_address.h>
 #include <maps_area.h>
@@ -101,17 +102,6 @@ typedef enum _maps_service_data_e {
        MAPS_VIEW_SCALEBAR                              /**< Indicates the availability of scale bar on the Map @if MOBILE (Since 3.0) @endif */
 } maps_service_data_e;
 
-/**
- * @brief      The Maps Service handle
- * @details The Maps Service handle can be created by calling of maps_service_create().
- * \n To release the handle use maps_service_destroy().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
- *
- * @see maps_service_create()
- * @see maps_service_destroy()
- */
-typedef void *maps_service_h;
-
 
 /**
  * @brief      Called when requesting available Maps Providers.
@@ -146,6 +136,7 @@ typedef bool(*maps_service_provider_info_cb) (char *maps_provider,
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_NOT_FOUND Result not found
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @post This function invokes maps_service_provider_info_cb() to deliver Maps
  * Provider information.
diff --git a/include/maps_types.h b/include/maps_types.h
new file mode 100644 (file)
index 0000000..7a85a5a
--- /dev/null
@@ -0,0 +1,74 @@
+/*
+ * Copyright (c) 2014 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef __MAPS_TYPES_H__
+#define __MAPS_TYPES_H__
+
+/**
+ *
+ * @file maps_types.h
+ * @brief This file contains the top level functions of Maps API
+ *
+ */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**
+ * @ingroup    CAPI_MAPS_SERVICE_MODULE
+ * @defgroup   CAPI_MAPS_SERVICE_TYPES_MODULE Primary types
+ *
+ * @addtogroup CAPI_MAPS_SERVICE_TYPES_MODULE
+ * @{
+ * @brief This provides definitions of primary types.
+ *
+ */
+
+
+/**
+ * @brief      The Maps Service handle
+ * @details The Maps Service handle can be created by calling of maps_service_create().
+ * \n To release the handle use maps_service_destroy().
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
+ *
+ * @see maps_service_create()
+ * @see maps_service_destroy()
+ */
+typedef void *maps_service_h;
+
+
+/**
+ * @brief      The View handle
+ * @details The handle of View instance.
+ * @remarks To release the handle use maps_view_destroy().
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
+ *
+ * @see maps_view_create()
+ * @see maps_view_destroy()
+ */
+typedef void *maps_view_h;
+
+/**
+ * @}
+ */
+
+
+
+#ifdef __cplusplus
+}
+#endif
+#endif                         /* __MAPS_TYPES_H__ */
index 6de81eb93e7e484455651e92da8e8c6a1799b63b..be61b736b3b7b2d08b2e17665ef942839335cf5d 100644 (file)
@@ -18,8 +18,9 @@
 #define __MAPS_VIEW_H__
 
 #include <Evas.h>
-#include <maps_view_object.h>
+#include <maps_types.h>
 #include <maps_view_event_data.h>
+#include <maps_view_snapshot.h>
 
 /**
  *
 extern "C" {
 #endif
 
-/**
- * @brief      The Maps Service handle
- * @details The Maps Service handle can be created by calling of maps_service_create().
- * \n To release the handle use maps_service_destroy().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
- *
- * @see maps_service_create()
- * @see maps_service_destroy()
- */
-typedef void *maps_service_h;
-
- /**
- * @brief      The View handle
- * @details The handle of View instance.
- * @remarks To release the handle use maps_view_destroy().
- * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
- *
- * @see maps_view_create()
- * @see maps_view_destroy()
- */
-typedef void *maps_view_h;
 
 /**
  * @brief      Enumeration of View types (themes)
@@ -170,6 +150,7 @@ typedef void(*maps_view_on_event_cb) (maps_view_event_type_e type, maps_view_eve
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_PERMISSION_DENIED Permission Denied
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a maps is created using maps_service_create().
  * @pre @a obj is recommended using a smart object.
@@ -198,6 +179,7 @@ int maps_view_create(maps_service_h maps, Evas_Object *obj, maps_view_h *view);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_PERMISSION_DENIED Permission Denied
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a View is created using maps_view_create().
  *
@@ -254,6 +236,7 @@ int maps_view_set_center(maps_view_h view, maps_coordinates_h coordinates);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -309,6 +292,7 @@ int maps_view_set_zoom_level(maps_view_h view, int level);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -333,6 +317,7 @@ int maps_view_get_zoom_level(const maps_view_h view, int *level);
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_INVALID_OPERATION Operation is not valid
  * @retval     #MAPS_ERROR_PERMISSION_DENIED Permission Denied
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -357,6 +342,7 @@ int maps_view_set_min_zoom_level(maps_view_h view, int level);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_INVALID_OPERATION Operation is not valid
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -381,6 +367,7 @@ int maps_view_get_min_zoom_level(const maps_view_h view, int *min_zoom_level);
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_INVALID_OPERATION Operation is not valid
  * @retval     #MAPS_ERROR_PERMISSION_DENIED Permission Denied
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -405,6 +392,7 @@ int maps_view_set_max_zoom_level(maps_view_h view, int level);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_INVALID_OPERATION Operation is not valid
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -455,6 +443,7 @@ int maps_view_set_orientation(maps_view_h view, double angle);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -487,6 +476,7 @@ int maps_view_get_orientation(const maps_view_h view, double *rotation_angle);
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_PERMISSION_DENIED Permission Denied
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -516,6 +506,7 @@ int maps_view_screen_to_geolocation(maps_view_h view,
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_PERMISSION_DENIED Permission Denied
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  * @pre @a coordinates is created using maps_coordinates_create().
@@ -573,6 +564,7 @@ int maps_view_set_type(maps_view_h view, maps_view_type_e type);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -624,6 +616,7 @@ int maps_view_set_buildings_enabled(maps_view_h view, bool enable);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -674,6 +667,7 @@ int maps_view_set_traffic_enabled(maps_view_h view, bool enable);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -724,6 +718,7 @@ int maps_view_set_public_transit_enabled(maps_view_h view, bool enable);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -787,6 +782,7 @@ int maps_view_set_language(maps_view_h view, const char *language);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -832,6 +828,7 @@ int maps_view_set_scalebar_enabled(maps_view_h view, bool enable);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -855,6 +852,7 @@ int maps_view_get_scalebar_enabled(const maps_view_h view, bool *enabled);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -913,6 +911,7 @@ int maps_view_set_screen_location(maps_view_h view, int x, int y, int width, int
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -935,6 +934,7 @@ int maps_view_get_screen_location(const maps_view_h view, int *x, int *y, int *w
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -985,6 +985,7 @@ int maps_view_resize(maps_view_h view, int width, int height);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -1005,6 +1006,7 @@ int maps_view_set_visibility(maps_view_h view, bool visible);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -1031,6 +1033,7 @@ int maps_view_get_visibility(const maps_view_h view, bool *visible);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -1052,6 +1055,7 @@ int maps_view_set_event_cb(maps_view_h view, maps_view_event_type_e type,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  * @pre the event callback is registered using maps_view_set_event_cb()
@@ -1073,6 +1077,7 @@ int maps_view_unset_event_cb(maps_view_h view, maps_view_event_type_e type);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  *
@@ -1093,6 +1098,7 @@ int maps_view_set_gesture_enabled(maps_view_h view, maps_view_gesture_e gesture,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  * @pre @a enabled status set ad default or modified using
@@ -1122,6 +1128,7 @@ int maps_view_get_gesture_enabled(const maps_view_h view, maps_view_gesture_e ge
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_PERMISSION_DENIED Permission Denied
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  * @pre @a object is created using #maps_view_object_create_marker(),
@@ -1152,6 +1159,7 @@ int maps_view_add_object(maps_view_h view, maps_view_object_h object);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_PERMISSION_DENIED Permission Denied
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  * @pre @a object is added using maps_view_add_object().
@@ -1176,6 +1184,7 @@ int maps_view_remove_object(maps_view_h view, maps_view_object_h object);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_PERMISSION_DENIED Permission Denied
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  * @pre objects are added using maps_view_add_object().
@@ -1200,6 +1209,7 @@ int maps_view_remove_all_objects(maps_view_h view);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_NOT_FOUND Result not found
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a view is created using maps_view_create().
  * @pre objects are added using maps_view_add_object().
@@ -1216,15 +1226,6 @@ int maps_view_remove_all_objects(maps_view_h view);
 int maps_view_foreach_object(const maps_view_h view, maps_view_object_cb callback, void *user_data);
 
 
-
-/*----------------------------------------------------------------------------*/
-/*
- * Snapshot Capture Service
- */
-
-#include <maps_view_snapshot.h>
-
-
 /**
  * @}
  */
index fa4bfd60e3c42402fda6fa317a3e4b0c70d85a2a..34c973cbd54f873880e5c89468275aa7c4c4bdc2 100644 (file)
@@ -140,6 +140,7 @@ typedef enum _maps_view_event_type_e {
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a event may be obtained in maps_view_on_event_cb()
  *
@@ -161,6 +162,7 @@ int maps_view_event_data_destroy(maps_view_event_data_h event);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a event may be obtained in maps_view_on_event_cb()
  *
@@ -181,6 +183,7 @@ int maps_view_event_data_clone(const maps_view_event_data_h origin, maps_view_ev
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a event may be obtained in maps_view_on_event_cb()
  *
@@ -204,6 +207,7 @@ int maps_view_event_data_get_type(const maps_view_event_data_h event, maps_view_
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a event may be obtained in maps_view_on_event_cb()
  *
@@ -226,6 +230,7 @@ int maps_view_event_data_get_gesture_type(const maps_view_event_data_h event, ma
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a event may be obtained in maps_view_on_event_cb()
  *
@@ -250,6 +255,7 @@ int maps_view_event_data_get_action_type(const maps_view_event_data_h event, map
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a event may be obtained in maps_view_on_event_cb()
  *
@@ -274,6 +280,7 @@ int maps_view_event_data_get_center(const maps_view_event_data_h event, maps_coo
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a event may be obtained in maps_view_on_event_cb()
  *
@@ -297,6 +304,7 @@ int maps_view_event_data_get_delta(const maps_view_event_data_h event, int *delt
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a event may be obtained in maps_view_on_event_cb()
  *
@@ -319,6 +327,7 @@ int maps_view_event_data_get_position(const maps_view_event_data_h event, int *x
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a event may be obtained in maps_view_on_event_cb()
  *
@@ -343,6 +352,7 @@ int maps_view_event_data_get_coordinates(const maps_view_event_data_h event, map
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a event may be obtained in maps_view_on_event_cb()
  *
@@ -365,6 +375,7 @@ int maps_view_event_data_get_fingers(const maps_view_event_data_h event, int *fi
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a event may be obtained in maps_view_on_event_cb()
  *
@@ -387,6 +398,7 @@ int maps_view_event_data_get_zoom_factor(const maps_view_event_data_h event, dou
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a event may be obtained in maps_view_on_event_cb()
  *
@@ -410,6 +422,7 @@ int maps_view_event_data_get_rotation_angle(const maps_view_event_data_h event,
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a event may be obtained in maps_view_on_event_cb()
  *
index baceecb2dc4ee37cda1eaa79e42e14ec9a251546..66ceba135cc5289520d9ab33d24b8e571cb90b82 100644 (file)
@@ -168,6 +168,7 @@ typedef bool(*maps_view_object_polygon_point_cb) (int index, int total,
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_PERMISSION_DENIED Permission Denied
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a coordinates are created using map_coordinates_create().
  *
@@ -202,6 +203,7 @@ int maps_view_object_create_marker(maps_coordinates_h coordinates,
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a coordinates is created using maps_coordinates_list_create().
  *
@@ -236,6 +238,7 @@ int maps_view_object_create_polyline(maps_coordinates_list_h coordinates,
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a coordinates is created using maps_coordinates_list_create().
  *
@@ -267,6 +270,7 @@ int maps_view_object_create_polygon(maps_coordinates_list_h coordinates,
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a coordinates is created using maps_coordinates_list_create().
  *
@@ -291,6 +295,7 @@ int maps_view_object_create_overlay(maps_coordinates_h coordinates,
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @see #maps_view_object_h
  * @see maps_view_object_create_marker()
@@ -310,6 +315,7 @@ int maps_view_object_destroy(maps_view_object_h object);
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a object is created using maps_view_object_create_marker(),
  * maps_view_object_create_polyline() or maps_view_object_create_polygon().
@@ -331,6 +337,7 @@ int maps_view_object_get_type(maps_view_object_h object, maps_view_object_type_e
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a object is created using maps_view_object_create_marker(),
  * maps_view_object_create_polyline(), maps_view_object_create_polygon().
@@ -351,6 +358,7 @@ int maps_view_object_set_visible(maps_view_object_h object, bool visible);
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a object is created using maps_view_object_create_marker(),
  * maps_view_object_create_polyline(), maps_view_object_create_polygon().
@@ -376,6 +384,7 @@ int maps_view_object_get_visible(const maps_view_object_h object, bool *visible)
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a polyline is created using maps_view_object_create_polyline().
  * @pre @a points are created using maps_coordinates_list_create().
@@ -402,6 +411,7 @@ int maps_view_object_polyline_set_polyline(maps_view_object_h polyline, maps_coo
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a polyline is created using maps_view_object_create_polyline().
  * @post This function invokes maps_view_object_polyline_point_cb() repeatedly to
@@ -428,6 +438,7 @@ int maps_view_object_polyline_foreach_point(maps_view_object_h polyline,
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a polyline is created using maps_view_object_create_polyline().
  *
@@ -455,6 +466,7 @@ int maps_view_object_polyline_set_color(maps_view_object_h polyline,
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a polyline is created using maps_view_object_create_polyline().
  * @pre color components may be previously set using
@@ -477,6 +489,7 @@ int maps_view_object_polyline_get_color(const maps_view_object_h polyline,
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a polyline is created using maps_view_object_create_polyline().
  *
@@ -496,6 +509,7 @@ int maps_view_object_polyline_set_width(maps_view_object_h polyline, int width);
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a polyline is created using maps_view_object_create_polyline().
  * @pre @a width may be previously set using maps_view_object_polyline_set_width().
@@ -522,6 +536,7 @@ int maps_view_object_polyline_get_width(const maps_view_object_h polyline, int *
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a polygon is created using maps_view_object_create_polygon().
  * @pre @a points are created using maps_coordinates_list_create().
@@ -548,6 +563,7 @@ int maps_view_object_polygon_set_polygon(maps_view_object_h polygon, maps_coordi
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_NOT_FOUND Result not found
  * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a polygon is created using maps_view_object_create_polygon().
  * @post This function invokes maps_view_object_polygon_point_cb() repeatedly to
@@ -574,6 +590,7 @@ int maps_view_object_polygon_foreach_point(maps_view_object_h polygon,
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a polygon is created using maps_view_object_create_polygon().
  *
@@ -600,6 +617,7 @@ int maps_view_object_polygon_set_fill_color(maps_view_object_h polygon,
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a polygon is created using maps_view_object_create_polygon().
  * @pre fill color components may be previously set using
@@ -627,6 +645,7 @@ int maps_view_object_polygon_get_fill_color(const maps_view_object_h polygon,
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a marker is created using maps_view_object_create_marker().
  * @pre @a coordinates are created using maps_coordinates_create().
@@ -649,6 +668,7 @@ int maps_view_object_marker_set_coordinates(maps_view_object_h marker, maps_coor
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a marker is created using maps_view_object_create_marker().
  *
@@ -670,6 +690,7 @@ int maps_view_object_marker_resize(maps_view_object_h marker, int width, int hei
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_PERMISSION_DENIED Permission Denied
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a marker is created using maps_view_object_create_marker().
  *
@@ -690,6 +711,7 @@ int maps_view_object_marker_set_image_file(maps_view_object_h marker, const char
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a marker is created using maps_view_object_create_marker().
  * @pre @a file_path may be set previously using maps_view_object_marker_set_image_file().
@@ -712,6 +734,7 @@ int maps_view_object_marker_get_image_file(const maps_view_object_h marker, char
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a marker is created using maps_view_object_create_marker().
  * @pre @a coordinates may be set previously using maps_view_object_marker_set_coordinates().
@@ -735,6 +758,7 @@ int maps_view_object_marker_get_coordinates(const maps_view_object_h marker, map
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a marker is created using maps_view_object_create_marker().
  * @pre @a width and @a height may be set previously using maps_view_object_marker_resize().
@@ -755,6 +779,7 @@ int maps_view_object_marker_get_size(const maps_view_object_h marker, int *width
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a marker is created using maps_view_object_create_marker().
  *
@@ -774,6 +799,7 @@ int maps_view_object_marker_get_type(const maps_view_object_h marker, maps_view_
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a marker is created using maps_view_object_create_marker().
  *
@@ -792,6 +818,7 @@ int maps_view_object_marker_set_z_order(maps_view_object_h marker, int z_order);
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a marker is created using maps_view_object_create_marker().
  *
@@ -818,6 +845,7 @@ int maps_view_object_marker_get_z_order(const maps_view_object_h marker, int *z_
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a marker is created using maps_view_object_create_overlay().
  *
@@ -835,6 +863,7 @@ int maps_view_object_overlay_get_object(maps_view_object_h overlay, Evas_Object
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a overlay is created using maps_view_object_create_overlay().
  * @pre @a coordinates are created using maps_coordinates_create().
@@ -859,6 +888,7 @@ int maps_view_object_overlay_set_coordinates(maps_view_object_h overlay, maps_co
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a overlay is created using maps_view_object_create_overlay().
  * @pre @a coordinates may be set previously using maps_view_object_overlay_set_coordinates().
@@ -880,6 +910,7 @@ int maps_view_object_overlay_get_coordinates(const maps_view_object_h overlay, m
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a overlay is created using maps_view_object_create_overlay().
  *
@@ -901,6 +932,7 @@ int maps_view_object_overlay_set_min_zoom_level(maps_view_object_h overlay, int
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a overlay is created using maps_view_object_create_overlay().
  *
@@ -921,6 +953,7 @@ int maps_view_object_overlay_get_min_zoom_level(const maps_view_object_h overlay
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a overlay is created using maps_view_object_create_overlay().
  *
@@ -942,6 +975,7 @@ int maps_view_object_overlay_set_max_zoom_level(maps_view_object_h overlay, int
  * @return     0, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre @a overlay is created using maps_view_object_create_overlay().
  *
index 521301474c767ae30d411c28906945f57d2b725c..8474e1813faee6ebd528dc9d1d3a53553c2e4eea 100644 (file)
@@ -17,6 +17,7 @@
 #ifndef __MAPS_VIEW_SNAPSHOT_H__
 #define __MAPS_VIEW_SNAPSHOT_H__
 
+#include <maps_types.h>
 
 /**
  * @ingroup    CAPI_MAPS_VIEW_MODULE
@@ -71,6 +72,7 @@ typedef enum _maps_view_snapshot_format_type_e
  * @retval     #MAPS_ERROR_SERVICE_NOT_AVAILABLE Service not available
  * @retval     #MAPS_ERROR_PERMISSION_DENIED Permission Denied
  * @retval     #MAPS_ERROR_INVALID_OPERATION Operation is not valid
+ * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
  * @pre Call maps_service_create() and map_view_create() to issue Maps Service
  * and Map View handles respectively.