最近在项目中遇到这么一个情况,在MapView中要求实现绘制点、线、面。

  在这里面就会遇到这么一个问题,绘制折线和多边形型时,每点击一个点屏幕就会跟着晃,使用起来很不方便(使用Note2 触控笔),所以有没有一种方法让我点击绘制界面开始,地图界面锁死,在绘制结束时ontouch事件才响应。

  现在先说说思路,一般来说我设置MapView的OnTouch事件为Null,屏幕就不会跟着动了,但是同时OnTouch事件也没法使用了,这个方法不可用。但是流状线和流状面绘制是怎么实现的呢?经过查询,在OnTouch的中有以下两个方法:

public boolean onDragPointerMove(MotionEvent from, MotionEvent to)

public boolean onDragPointerUp(MotionEvent from, MotionEvent to)

这两个方法分别对应了按下时的滑动事件和滑动松开事件,我们让这两个方法在绘制折线和自定义面时返回false,屏幕就不会跟着跑了 。

MapOnTouchListener类如下:

  public class MyTouchListener extends MapOnTouchListener
{
MultiPath polyline,polygon,line,freepolygon;
DrawType type = DrawType.None;
Point startPoint = null;
MapView map = null;
DrawWidget drawwidget =null; private View calloutView =null; int graphicFreelineId = 0;
int graphicLineId = 0;
int graphicFreePloygonId = 0;
int graphicPloygonId = 0; public MyTouchListener(Context context, MapView view,DrawWidget d,View v) {
super(context, view);
map = view;
drawwidget=d;
calloutView = v;
} public void setType(DrawType type) {
this.type = type;
}
public DrawType getType() {
return this.type;
} @Override
public boolean onSingleTap(MotionEvent e)
{
if(type == DrawType.Point)
{
Geometry geo = map.toMapPoint(new Point(e.getX(), e.getY()));
Graphic gra = addGeometryToLocalDB(geo);
if(gra!=null){
GraUID =mGraphicsLayer.addGraphic(gra);//添加要素至数据库
//弹出callout窗口
Point coordinate=(Point) geo;
drawwidget.showCallout(coordinate, calloutView);
mMyTouchListener.setType(DrawType.None);
}
return true;
}else if(type == DrawType.Line){
//获取屏幕点击坐标点
Point point = map.toMapPoint(new Point(e.getX(), e.getY()));
if (startPoint == null) {
startPoint = point;
line = new Polyline();
line.startPath(point);
//添加节点信息
Graphic graphic = new Graphic(point,new SimpleMarkerSymbol(Color.BLACK,5,STYLE.CIRCLE));
tmpLayer.addGraphic(graphic);
//添加线要素
Graphic graphic_line = new Graphic(line,FeatureSymbol.lineSymbol_new);
graphicLineId = mGraphicsLayer.addGraphic(graphic_line);
} else{
//添加线要素节点
Graphic graphic_t = new Graphic(point,new SimpleMarkerSymbol(Color.BLACK,5,STYLE.CIRCLE));
tmpLayer.addGraphic(graphic_t);
//更新线信息
line.lineTo(point);
mGraphicsLayer.updateGraphic(graphicLineId, line);
}
}else if(type == DrawType.Polygon){
//获取屏幕点击坐标点
Point point = map.toMapPoint(new Point(e.getX(), e.getY()));
if (startPoint == null) {
startPoint = point;
polygon = new Polygon();
polygon.startPath(point);
//添加节点信息
Graphic graphic = new Graphic(point,new SimpleMarkerSymbol(Color.BLACK,5,STYLE.CIRCLE));
tmpLayer.addGraphic(graphic);
//添加多边形要素
Graphic graphic_polygon = new Graphic(polygon,FeatureSymbol.polygonSymbol_new);
graphicPloygonId = mGraphicsLayer.addGraphic(graphic_polygon);
} else{
//添加要素节点
Graphic graphic_t = new Graphic(point,new SimpleMarkerSymbol(Color.BLACK,5,STYLE.CIRCLE));
tmpLayer.addGraphic(graphic_t);
//更新多边形信息
polygon.lineTo(point);
mGraphicsLayer.updateGraphic(graphicPloygonId, polygon);
}
}
return false;
} @Override
public boolean onDoubleTap(MotionEvent event) {
tmpLayer.removeAll();
if (type == DrawType.Line) {
if(line!=null){
Graphic gral = addGeometryToLocalDB(line);//添加要素至数据库
if(gral!=null){
mGraphicsLayer.updateGraphic(graphicLineId,gral);
drawwidget.showCallout(startPoint, calloutView);
}else{
mGraphicsLayer.removeGraphic(graphicLineId);
}
}else{
Toast.makeText(DrawWidget.super.context,"未添加任务要素!",Toast.LENGTH_SHORT).show();
}
GraUID =graphicLineId;
startPoint = null;
line = null;
mMyTouchListener.setType(DrawType.None);
DrawWidget.super.showMessageBox("折线绘制结束!");
return true;
}else if(type == DrawType.Polygon){
if(polygon!=null){
Graphic gra = addGeometryToLocalDB(polygon);
if(gra!=null){
mGraphicsLayer.updateGraphic(graphicPloygonId,gra ); //添加要素至数据库
//弹出callout窗口
drawwidget.showCallout(startPoint, calloutView);
}else{
mGraphicsLayer.removeGraphic(graphicPloygonId);
}
}else{
Toast.makeText(DrawWidget.super.context,"未添加任务要素!",Toast.LENGTH_SHORT).show();
}
GraUID =graphicPloygonId;
startPoint = null;
polygon = null;
mMyTouchListener.setType(DrawType.None);
DrawWidget.super.showMessageBox("多边形绘制结束!");
return true;
}
return super.onDoubleTap(event);
} //@Override
public boolean onDragPointerMove(MotionEvent from, MotionEvent to)
{
Point mapPt = map.toMapPoint(to.getX(), to.getY());
if (type == DrawType.Freeline)
{
if (startPoint == null)
{
polyline = new Polyline();
startPoint = map.toMapPoint(from.getX(), from.getY());
polyline.startPath((float) startPoint.getX(), (float) startPoint.getY());
graphicFreelineId = mGraphicsLayer.addGraphic(new Graphic(polyline,FeatureSymbol.lineSymbol_new));
}
polyline.lineTo((float) mapPt.getX(), (float) mapPt.getY());
mGraphicsLayer.updateGraphic(graphicFreelineId,new Graphic(polyline,FeatureSymbol.lineSymbol_new));
return true;
}
else if (type == DrawType.FreePolygon)
{
//polygonSymbol.setAlpha(80);
if (startPoint == null)
{
freepolygon = new Polygon();
startPoint = map.toMapPoint(from.getX(), from.getY());
freepolygon.startPath((float) startPoint.getX(), (float) startPoint.getY());
graphicFreePloygonId = mGraphicsLayer.addGraphic(new Graphic(freepolygon,FeatureSymbol.polygonSymbol_new));
}
freepolygon.lineTo((float) mapPt.getX(), (float) mapPt.getY());
mGraphicsLayer.updateGraphic(graphicFreePloygonId, new Graphic(freepolygon,FeatureSymbol.polygonSymbol_new));
return true;
}else if(type == DrawType.Polygon||type == DrawType.Line){
return false;//返回false,使屏幕不滑动固定死(两个位置)
}
return super.onDragPointerMove(from, to);
} @Override
public boolean onDragPointerUp(MotionEvent from, MotionEvent to)
{
if(type == DrawType.Line ||type == DrawType.Polygon){
return false;//返回false,使屏幕不滑动固定死(两个位置)
}else if(type ==DrawType.Freeline ){
Graphic gral = addGeometryToLocalDB(polyline);//添加要素至数据库
if(gral!=null){
mGraphicsLayer.updateGraphic(graphicFreelineId,gral);
drawwidget.showCallout(startPoint, calloutView);
}else{
mGraphicsLayer.removeGraphic(graphicFreelineId);
}
GraUID = graphicFreelineId;
startPoint = null;
polyline = null;//流状线
DrawWidget.super.mapView.setOnTouchListener(mDefaultMyTouchListener);
}else if(type == DrawType.FreePolygon){
Graphic gra = addGeometryToLocalDB(freepolygon);
if(gra!=null){
mGraphicsLayer.updateGraphic(graphicFreePloygonId,gra);//添加要素至数据库
drawwidget.showCallout(startPoint, calloutView);
}else{
mGraphicsLayer.removeGraphic(graphicFreePloygonId);
}
GraUID = graphicFreePloygonId;
startPoint = null;
freepolygon = null;//流状面
DrawWidget.super.mapView.setOnTouchListener(mDefaultMyTouchListener);
}
return super.onDragPointerUp(from, to);
}

ArcGIS for Android 中实现要素绘制时固定MapView的更多相关文章

  1. Android中View的绘制过程 onMeasure方法简述 附有自定义View例子

    Android中View的绘制过程 onMeasure方法简述 附有自定义View例子 Android中View的绘制过程 当Activity获得焦点时,它将被要求绘制自己的布局,Android fr ...

  2. 【转】Android中View的绘制过程 onMeasure方法简述 附有自定义View例子

    Android中View的绘制过程 当Activity获得焦点时,它将被要求绘制自己的布局,Android framework将会处理绘制过程,Activity只需提供它的布局的根节点. 绘制过程从布 ...

  3. Android 中View的绘制机制源代码分析 三

    到眼下为止,measure过程已经解说完了,今天開始我们就来学习layout过程.只是在学习layout过程之前.大家有没有发现我换了编辑器,哈哈.最终下定决心从Html编辑器切换为markdown编 ...

  4. Android 中View的绘制机制源代码分析 一

    尊重原创: http://blog.csdn.net/yuanzeyao/article/details/46765113 差点儿相同半年没有写博客了,一是由于工作比較忙,二是认为没有什么内容值得写, ...

  5. Android 中View的绘制机制源代码分析 二

    尊重原创:http://blog.csdn.net/yuanzeyao/article/details/46842891 本篇文章接着上篇文章的内容来继续讨论View的绘制机制,上篇文章中我们主要解说 ...

  6. Android 中Activity生命周期分析:Android中横竖屏切换时的生命周期过程

    最近在面试Android,今天出了一个这样的题目,即如题: 我当时以为生命周期是这样的: onCreate --> onStart -- ---> onResume ---> onP ...

  7. Android中使用ListView绘制自定义表格(2)

    上回再写了<Android中使用ListView绘制自定义表格>后,很多人留言代码不全和没有数据样例.但因为项目原因,没法把源码全部贴上来.近两天,抽空简化了一下,做了一个例子. 效果图如 ...

  8. Android中View的绘制流程(专题讲解)

    Android中的UI视图有两种方式实现:.xml文件(实现代码和UI的分离)和代码实现. Android的UI框架基本概念: 1. Activity:基本的页面单元,Activity包含一个Wind ...

  9. Android中实现照片滑动时左右进出的动画的xml代码

    场景 Android中通过ImageSwitcher实现相册滑动查看照片功能(附代码下载): https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/det ...

随机推荐

  1. Centos 查看机器型号

    测试机器的硬件信息: 查看CPU信息(型号) # cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c 8 Intel(R) Xeon(R) CP ...

  2. RStudio版本管理 整合Git

    本文为原创,转载注明出处. 系统环境: win7 x64 R-3.1.0-win.exe RStudio-0.98.507.exe 前置条件:必须拥有github仓库: 如:https://githu ...

  3. 用 R 画中国分省市地图

    用 R 画中国分省市地图 (2010-11-18 16:25:34) 转载▼ 标签: 中国地图 营销 杂谈 分类: 数据分析 用R 也可以做出漂亮的依参数变化的中国地图. 主要参考(http://co ...

  4. java中的几种架构对象(PO,VO,DAO,BO,POJO)

    java中的几种对象(PO,VO,DAO,BO,POJO)   一.PO :(persistant object ),持久对象 可以看成是与数据库中的表相映射的java对象.使用Hibernate来生 ...

  5. 新编html网页设计从入门到精通 (龙马工作室) pdf扫描版

    新编html网页设计从入门到精通共分为21章,全面系统地讲解了html的发展历史及4.0版的新特性.基本概念.设计原则.文件结构.文件属性标记.用格式标记进行页面排版.使用图像装饰页面.超链接的使用. ...

  6. sql获取当日减去几天的几天前日期

    CONVERT(varchar(10),DATEADD(DAY, -220 ,CONVERT(nvarchar(10),getdate(),23)),23)

  7. C#类的成员(字段、属性、方法)

    前面定义的Person的类,里面的成员包括:字段.属性.方法.事件等,此外,前面说的嵌套类也是类的成员. a.类的成员为分:静态成员(static)和非静态成员 b.静态成员用static标识,不标识 ...

  8. python sys.sdout.write 和print 区别

    sys.sdout.write 标准输入相当于“%value%”,输出内容没有空格,而print输出带有空格,举个例子 用sys.sdout.write: import sys for i in ra ...

  9. 教大家一个看电视局免广告的方法--由UWP想到的

    将近一年(10个月)来一直在学习.NET技术,这其中包括C#.WPF.WCF和ASP.NET MVC,目前学习即将结束. 本人在学习WPF的过程中,也了解到有UWP这门技术,UWP技术目前来说主要是应 ...

  10. jsp内置对象request使用方法2

    <%@page import="java.text.SimpleDateFormat"%> <%@page import="java.util.Date ...