一、首先我们来看一个网络图层:

http://services.arcgisonline.com/arcgis/rest/services/World_Street_Map/MapServer,这是全球街道图。加载的代码也很简单:

 private static final String WORLD_STREETS_URL = "http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer";
private MapView mMapView = null;
private ArcGISTiledMapServiceLayer mWorldStreetsLayer = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main); mMapView = (MapView) findViewById(R.id.map_view);
mWorldStreetsLayer = new ArcGISTiledMapServiceLayer(WORLD_STREETS_URL);
mMapView.addLayer(mWorldStreetsLayer);
mWorldStreetsLayer.setOnStatusChangedListener(new OnStatusChangedListener() {
@Override
public void onStatusChanged(Object o, STATUS status) {
if (status==STATUS.INITIALIZED){
Log.i("huang","加载成功"); }else if(status==STATUS.INITIALIZATION_FAILED||status==STATUS.LAYER_LOADING_FAILED){
Log.i("huang","加载失败");
}
}
});
}

效果图

问:为什么用ArcGISTiledMapServiceLayer 加载而不用其他图层加载呢?

用浏览器打开
http://services.arcgisonline.com/arcgis/rest/services/World_Street_Map/MapServer,可以看到详细信息。
它的子图层只有一个:

下面是坐标信息,注意Single Fused Map Cache: true,支持缓存。
与Tile Info信息,


通过信息说明这是一个TiledLayer,而ArcGISTiledMapServiceLayer是TiledLayer子类的子类,看一下ArcGISTiledMapServiceLayer的介绍

点开World Street Map链接,
http://services.arcgisonline.com/arcgis/rest/services/World_Street_Map/MapServer/0,这是它的唯一子图层。真正加载的也是这个图层

Type虽然说是FeatureLayer,但它得用ArcGISFeatureLayer加载。

ArcGISFeatureLayer arcGISFeatureLayer = new ArcGISFeatureLayer(WORLD_STREETS_URL+"/0", ArcGISFeatureLayer.MODE.ONDEMAND);
SimpleFillSymbol simpleFillSymbol = new SimpleFillSymbol(Color.argb(0,0,0,0),SimpleFillSymbol.STYLE.SOLID); mMapView.addLayer(arcGISFeatureLayer);
arcGISFeatureLayer.setRenderer(new SimpleRenderer(simpleFillSymbol));
arcGISFeatureLayer.setOnStatusChangedListener(new OnStatusChangedListener() {
@Override
public void onStatusChanged(Object o, STATUS status) {
if (status==STATUS.INITIALIZED){
Log.i("huang","加载成功"); }else if(status==STATUS.INITIALIZATION_FAILED||status==STATUS.LAYER_LOADING_FAILED){
Log.i("huang","加载失败");
}
}
});

上面虽然加载成功,但并看不到图层,而且报错:

FeatureSetCallback.onError
com.esri.core.io.EsriServiceException: Requested operation is not supported by this service.
The requested capability is not supported. 仔细再看网络信息,


大体上知道为什么报 The requested capability is not supported。也就是不能用这种方法加载,而得用前面的代码加载!!!

ArcGISDynamicMapServiceLayer

服务地址:
http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/ESRI_StateCityHighway_USA/MapServer,这是美国的高铁图。
用浏览器打开,有三个子图层,Single Fused Map Cache: false!

下面是ArcGISDynamicMapServiceLayer的介绍:

加载代码 :

 private static final String DYNAMIC_USA_HIGHWAY_URL = "http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/ESRI_StateCityHighway_USA/MapServer";
private ArcGISDynamicMapServiceLayer usaHighwayLayer = null;
private MapView mMapView = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main); mMapView = (MapView) findViewById(R.id.map_view);
usaHighwayLayer = new ArcGISDynamicMapServiceLayer(DYNAMIC_USA_HIGHWAY_URL);
mMapView.addLayer(usaHighwayLayer);
usaHighwayLayer.setOnStatusChangedListener(new OnStatusChangedListener() {
@Override
public void onStatusChanged(Object o, STATUS status) {
if (status==STATUS.INITIALIZED){
Log.i("huang","加载成功"); }else if(status==STATUS.INITIALIZATION_FAILED||status==STATUS.LAYER_LOADING_FAILED){
Log.i("huang","加载失败");
}
}
});}

效果图

二、ArcGISFeatureLayer加载图层

服务地图
http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/ESRI_StateCityHighway_USA/MapServer/0,也就是上面服务的子图层。

 ArcGISFeatureLayer arcGISFeatureLayer = new ArcGISFeatureLayer("http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/ESRI_StateCityHighway_USA/MapServer/0", ArcGISFeatureLayer.MODE.ONDEMAND);
mMapView.addLayer(arcGISFeatureLayer);
arcGISFeatureLayer.setRenderer(new SimpleRenderer(new SimpleLineSymbol(Color.argb(250, 52, 17, 255),2)));
arcGISFeatureLayer.setOnStatusChangedListener(new OnStatusChangedListener() {
@Override
public void onStatusChanged(Object o, STATUS status) {
if (status==STATUS.INITIALIZED){
Log.i("huang","加载成功"); }else if(status==STATUS.INITIALIZATION_FAILED||status==STATUS.LAYER_LOADING_FAILED){
Log.i("huang","加载失败");
}
}
});

注意要设置setRenderer,效果

ArcGISFeatureLayer 具有FeatureLayer的一些查询方法,与前面几讲里FeatureLayer查询相似,这里不再讲了。

//查询要素方法
queryIds(Query query, CallbackListener<int[]> callback)
queryFeatures(Query query, CallbackListener<FeatureSet> callback)

http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/ESRI_StateCityHighway_USA/MapServer/0,页面底部,

点击Query进入查询要素界面,可直接 查询要素

where 1=1,点击Query(GET),可得到以下结果集

 

最新文章

  1. 用SignalR 2.0开发客服系统[系列1:实现群发通讯]
  2. 多对多关系&lt;EntityFramework6.0&gt;
  3. 多线程间通信之AutoResetEvent和ManualResetEvent的原理分析
  4. Yosemite 升级后第三方SSD TRIM失败不能进入系统处理
  5. 【运维】使用FC命令辅助查杀DLL木马
  6. [转载]Git常用命令
  7. RCTF Welpwn
  8. 改变iOS app的icon(iOS10.3)
  9. OSGI target环境配置过程
  10. [再寄小读者之数学篇](2014-06-22 求导数 [中国科学技术大学2014年高等数学B考研试题])
  11. leetCode58. 最后一个单词的长度
  12. 编写高质量代码:改善Java程序的151个建议 --[52~64]
  13. python语法_if判断
  14. django做redis缓存
  15. Linux下的shell与make
  16. Revit API 操作共享参数和项目参数
  17. LaTeX数学公式大全
  18. hdu 5055
  19. Python2.7-heapq
  20. kvm虚拟化二: 字符界面管理及 无人值守安装

热门文章

  1. Map接口框架图
  2. (1) Jenkins + Subversion + Maven + TestNG - 软件
  3. Visual Studio 2013 错误系统找不到指定文件,0x80070002
  4. c#中out参数的作用
  5. leetcode_357. Count Numbers with Unique Digits
  6. 最好的Sublime Text插件集合
  7. Java常用工具类---image图片处理工具类、Json工具类
  8. laravel学习:php写一个简单的ioc服务管理容器
  9. sehlle脚本获取linux服务器基本信息
  10. java中属性命名get字母大小写问题