arcgis andriod 加载影像
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了arcgis andriod 加载影像相关的知识,希望对你有一定的参考价值。
MapView mMapView;
......
String rasterPath = Environment.getExternalStorageDirectory().getPath() + "/raster/test.tif";
FileRasterSource rasterSource;
try {
rasterSource = new FileRasterSource(rasterPath);
} catch (IllegalArgumentException ie) {
Log.d(TAG, "null or empty path");
} catch (FileNotFoundException fe) {
Log.d(TAG, "raster file doesn‘t exist");
} catch (RuntimeException re) {
Log.d(TAG, "raster file can‘t be opened");
}
RasterLayer rasterLayer = new RasterLayer(rasterSource);
mMapView.addLayer(rasterLayer);
以上是关于arcgis andriod 加载影像的主要内容,如果未能解决你的问题,请参考以下文章
Arcgis Runtime for andriod 100 加载geodatabase
Arcgis Runtime for andriod 100 加载TPK