当前位置: 代码迷 >> Android >> arcgis for android 途径绘制
  详细解决方案

arcgis for android 途径绘制

热度:60   发布时间:2016-04-28 01:01:24.0
arcgis for android 路径绘制
刚刚学习arcgis for android 现在需要做一个路径分析的功能,后台分析的点坐标不需要我来做,我只需要在前台画线,但是找了好多资料也没找到好用的,请教高人指点。
------解决思路----------------------
http://download.csdn.net/detail/lucky_tom/6544279,

------解决思路----------------------
RoutingParameters rp = new RoutingParameters();
NAFeaturesAsFeature rfaf = new NAFeaturesAsFeature();
@SuppressWarnings("unused")
StopGraphic point1 = new StopGraphic(str);
@SuppressWarnings("unused")
StopGraphic point2 = new StopGraphic(loc);
rfaf.setFeatures(sg);
rfaf.setCompressedRequest(true);
rp.setStops(rfaf);
  相关解决方案