Java Code Examples for com.amap.api.maps.AMapException#printStackTrace()

The following examples show how to use com.amap.api.maps.AMapException#printStackTrace() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: OfflineMapActivity_Old.java    From TraceByAmap with MIT License 6 votes vote down vote up
/**
 * 继续下载所有暂停中
 */
private void startAllInPause() {
	if (amapManager == null) {
		return;
	}
	for (OfflineMapCity mapCity : amapManager.getDownloadingCityList()) {
		if (mapCity.getState() == OfflineMapStatus.PAUSE) {
			try {
				amapManager.downloadByCityName(mapCity.getCity());
			} catch (AMapException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		}
	}
}
 
Example 2
Source File: OfflineChild.java    From TraceByAmap with MIT License 6 votes vote down vote up
/**
 * 启动下载任务
 */
private synchronized boolean startDownload() {
	try {
		if (isProvince) {
			amapManager.downloadByProvinceName(mMapCity.getCity());
		} else {
			amapManager.downloadByCityName(mMapCity.getCity());
		}
		return true;
	} catch (AMapException e) {
		// TODO Auto-generated catch block
		e.printStackTrace();
		
		Toast.makeText(mContext, e.getErrorMessage(), Toast.LENGTH_SHORT).show();
		return false;
	}
}
 
Example 3
Source File: AmapDownloadMapFragment.java    From BmapLite with GNU General Public License v3.0 6 votes vote down vote up
@Override
public void onClickAmapDownloadOptions(String option, OfflineMapCity city) {
    if ("删除".equals(option)){
        delCity(city);
    }else if ("更新".equals(option)){
        updateCity(city);
    }else if ("开始".equals(option)){
        try {
            amapManager.downloadByCityCode(city.getCode());
        } catch (AMapException e) {
            e.printStackTrace();
            onMessage("下载失败");
        }
    }else if ("暂停".equals(option)){
        amapManager.pause();
    }
}
 
Example 4
Source File: AmapDownloadMapFragment.java    From BmapLite with Apache License 2.0 6 votes vote down vote up
@Override
public void onClickAmapDownloadOptions(String option, OfflineMapCity city) {
    if ("删除".equals(option)){
        delCity(city);
    }else if ("更新".equals(option)){
        updateCity(city);
    }else if ("开始".equals(option)){
        try {
            amapManager.downloadByCityCode(city.getCode());
        } catch (AMapException e) {
            e.printStackTrace();
            onMessage("下载失败");
        }
    }else if ("暂停".equals(option)){
        amapManager.pause();
    }
}
 
Example 5
Source File: AmapDownloadMapFragment.java    From BmapLite with GNU General Public License v3.0 5 votes vote down vote up
private void updateCity(OfflineMapCity city) {
    try {
        amapManager.downloadByCityCode(city.getCode());
    } catch (AMapException e) {
        e.printStackTrace();
        onMessage("更新失败");
    }
}
 
Example 6
Source File: AmapDownloadMapFragment.java    From BmapLite with Apache License 2.0 5 votes vote down vote up
private void updateCity(OfflineMapCity city) {
    try {
        amapManager.downloadByCityCode(city.getCode());
    } catch (AMapException e) {
        e.printStackTrace();
        onMessage("更新失败");
    }
}