当前位置: 代码迷 >> Android >> ArcGis for Android中怎么获取自定义图层中的图片并旋转
  详细解决方案

ArcGis for Android中怎么获取自定义图层中的图片并旋转

热度:82   发布时间:2016-04-28 04:05:30.0
ArcGis for Android中如何获取自定义图层中的图片并旋转
RT,在GraphicsLayer自定义图层中,有一个图片,现在可以获取到手机的旋转角度,然后根据角度去旋转那个图片。现在只能remove掉GraphicsLayer后旋转图片重新添加到map中,这样的话会非常不连贯,达不到百度地图的旋转效果,请教大神们如何解决?
------解决思路----------------------
BitmapDrawable bd = new BitmapDrawable(context.getResources().openRawResource(R.drawable.main_icon_nav));
PictureMarkerSymbol arrow_symbol = new PictureMarkerSymbol(bd);
arrow_symbol.setAngle(bearing);   //角度
Graphic gArrow = new Graphic(p, arrow_symbol);
mGraphicsLayer.updateGraphic(sUid, graphic); 
  相关解决方案