summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMinjune Kim <sena06.kim@samsung.com>2012-08-21 18:12:29 +0900
committerMinjune Kim <sena06.kim@samsung.com>2012-08-21 18:12:29 +0900
commite1b776d6d74d51e8aaa608b9d7fb34e11ce17fcf (patch)
treee9c3bb70bfdbd700cf482865b75d375676101e4e /src
parent140858710b2f71b790fb2212882c8aca3a76dc4a (diff)
downloadgeocoder-e1b776d6d74d51e8aaa608b9d7fb34e11ce17fcf.tar.gz
geocoder-e1b776d6d74d51e8aaa608b9d7fb34e11ce17fcf.tar.bz2
geocoder-e1b776d6d74d51e8aaa608b9d7fb34e11ce17fcf.zip
Diffstat (limited to 'src')
-rw-r--r--src/geocoder.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/geocoder.c b/src/geocoder.c
index cfcaa6c..8e448b2 100644
--- a/src/geocoder.c
+++ b/src/geocoder.c
@@ -155,11 +155,11 @@ int geocoder_create(geocoder_h* geocoder)
memset(handle, 0 , sizeof(geocoder_s));
- handle->object = location_new(LOCATION_METHOD_HYBRID);
+ handle->object = location_map_new(NULL);
if(handle->object == NULL)
{
free(handle);
- LOGE("[%s] GEOCODER_ERROR_SERVICE_NOT_AVAILABLE(0x%08x) : fail to location_new", __FUNCTION__, GEOCODER_ERROR_SERVICE_NOT_AVAILABLE);
+ LOGE("[%s] GEOCODER_ERROR_SERVICE_NOT_AVAILABLE(0x%08x) : fail to location_map_new", __FUNCTION__, GEOCODER_ERROR_SERVICE_NOT_AVAILABLE);
return GEOCODER_ERROR_SERVICE_NOT_AVAILABLE;
}
@@ -172,7 +172,7 @@ int geocoder_destroy(geocoder_h geocoder)
GEOCODER_NULL_ARG_CHECK(geocoder);
geocoder_s *handle = (geocoder_s*)geocoder;
- int ret = location_free(handle->object);
+ int ret = location_map_free(handle->object);
if(ret!=GEOCODER_ERROR_NONE)
{
return __convert_error_code(ret,(char*)__FUNCTION__);
@@ -202,7 +202,7 @@ int geocoder_get_address_from_position(geocoder_h geocoder, double latitude, dou
calldata->callback = callback;
calldata->data = user_data;
- ret = location_get_address_from_position_async(handle->object, pos, __cb_address_from_position, calldata);
+ ret = location_map_get_address_from_position_async(handle->object, pos, __cb_address_from_position, calldata);
location_position_free(pos);
if( ret != LOCATION_ERROR_NONE)
{
@@ -231,7 +231,7 @@ int geocoder_foreach_positions_from_address(geocoder_h geocoder,const char* add
calldata->data = user_data;
int ret;
- ret = location_get_position_from_freeformed_address_async(handle->object, addr_str,__cb_position_from_address, calldata);
+ ret = location_map_get_position_from_freeformed_address_async(handle->object, addr_str,__cb_position_from_address, calldata);
g_free(addr_str);
if( ret != LOCATION_ERROR_NONE)
{