Я добавил ниже привилегию
<privilege>http://tizen.org/privilege/mapservice</privilege>
<privilege>http://tizen.org/privilege/internet</privilege>
<privilege>http://tizen.org/privilege/network.get</privilege>
#include <maps_service.h>
#include <maps_view.h>
Я добавил очень простой вид.мое приложение не работает.Кто-нибудь, пожалуйста, помогите мне решить проблему
Evas_Object *img = evas_object_image_filled_add(e);
evas_object_show(img);
/* Service also created */
error = maps_view_create(ad->maps_service_handle, img, &(ad->map_view_handle));
if (error == MAPS_ERROR_NONE) {
/* Set a zoom level */
dlog_print(DLOG_ERROR, LOG_TAG, "MAPS_ERROR_NONE");
maps_view_set_zoom_level(ad->map_view_handle, 12);
/* Create a coordinate and set it to center */
maps_coordinates_h maps_coord;
maps_coordinates_create(DEFAULT_LAT, DEFAULT_LON, &maps_coord);
maps_view_set_center(ad->map_view_handle, maps_coord);
maps_coordinates_destroy(maps_coord);
}