你的位置:首页 > 软件开发 > 操作系统 > andriod arcgis加载影像TIF

andriod arcgis加载影像TIF

发布时间:2016-03-06 15:00:08
private static final String TAG = "MainActivity"; private MapView mapView = null; @Override protected void onCreate(Bundle save ...
 private static final String TAG = "MainActivity";  private MapView mapView = null;  @Override  protected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_main);    this.mapView = (MapView)this.findViewById(R.id.map);    String rasterPath = Environment.getExternalStorageDirectory().getPath() +"/ArcGIS/samples/Raster/QL_IMage.tif"; //QL_IMage.tif,Landsat8Hawaii_naturecolor.tif    FileRasterSource rasterSource =null;    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);    this.mapView.addLayer(rasterLayer);

原标题:andriod arcgis加载影像TIF

关键词:

*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。

可能感兴趣文章

我的浏览记录