关于地图上的用户交互,我试图在两个不同的变量中获取源和目标。对源和目标使用单个标记。在onTouchEvent
方法中无法区分来源和目的地。
有了这些点,我想计算距离并通过用户交互在地图上动态绘制路线。
这是我的代码
public boolean onTouchEvent(MotionEvent event, MapView mapView) {
final int action=event.getAction();
final int x=(int)event.getX();
final int y=(int)event.getY();
boolean result=false;
if (action==MotionEvent.ACTION_DOWN) {
for (OverlayItem item : items) {
Point p=new Point(0,0);
map.getProjection().toPixels(item.getPoint(), p);
if (hitTest(item, marker, x-p.x, y-p.y)) {
result=true;
inDrag=item;
items.remove(inDrag);
populate();
xDragTouchOffset=0;
yDragTouchOffset=0;
setDragImagePosition(p.x, p.y);
dragImage.setVisibility(View.VISIBLE);
xDragTouchOffset=x-p.x;
yDragTouchOffset=y-p.y;
break;
}
}
}
else if (action==MotionEvent.ACTION_MOVE && inDrag!=null) {
setDragImagePosition(x, y);
result=true;
}
else if (action==MotionEvent.ACTION_UP && inDrag!=null) {
dragImage.setVisibility(View.GONE);
GeoPoint pt=map.getProjection().fromPixels(x-xDragTouchOffset,
y-yDragTouchOffset);
slatlng[0] = pt.getLatitudeE6()/1E6;
slatlng[1] = pt.getLongitudeE6()/1E6;
urlString = getUrl(slatlng[0], slatlng[1], dlatlng[0],dlatlng[1]);
try {
distance = getDistance(urlString);
} catch (Exception e) {
e.printStackTrace();
}
System.out.println("Distance : "+distance);
System.out.println("Lat : " +slatlng[0]+"Lng :"+slatlng[1]);
OverlayItem toDrop=new OverlayItem(pt, inDrag.getTitle(),
inDrag.getSnippet());
items.add(toDrop);
populate();
inDrag=null;
result=true;
}
return(result || super.onTouchEvent(event, mapView));
}