在点击时将标记添加到地图 [英] Add marker to map on tap

查看:63
本文介绍了在点击时将标记添加到地图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 osmdroid 编写一个应用程序来显示地图,我想在用户点击地图时为其添加一个标记,实际上我已经能够使用运动事件来执行此操作,但是即使用户正在放大或缩小地图我不想要这个.这是我必须添加标记的代码:

I'm coding an application using osmdroid to show a map and i would like to add a marker to it when user taps over map, actually i have been able to do this usin motion event but this adds a marker even when user is zooming in or out the map i don't want this. This is the code i have to add the marker:

@Override    
    public boolean dispatchTouchEvent(MotionEvent ev) {
        int actionType = ev.getAction();
        switch (actionType) {
        case MotionEvent.ACTION_DOWN:
                Projection proj = myOpenMapView.getProjection();
                GeoPoint loc = (GeoPoint) proj.fromPixels((int)ev.getX(), (int)ev.getY()); 
                String longitude = Double.toString(((double)loc.getLongitudeE6())/1000000);
                String latitude = Double.toString(((double)loc.getLatitudeE6())/1000000);
                List<OverlayItem> anotherOverlayItemArray = new ArrayList<OverlayItem>();
                ExtendedOverlayItem mapItem = new ExtendedOverlayItem("", "", new GeoPoint((((double)loc.getLatitudeE6())/1000000), (((double)loc.getLongitudeE6())/1000000)), this);
                mapItem.setMarker(this.getResources().getDrawable(R.drawable.marker));
                anotherOverlayItemArray.add(mapItem);
                ItemizedIconOverlay<OverlayItem> anotherItemizedIconOverlay 
                 = new ItemizedIconOverlay<OverlayItem>(
                   this, anotherOverlayItemArray, null);
                myOpenMapView.getOverlays().add(anotherItemizedIconOverlay);
                Toast toast = Toast.makeText(getApplicationContext(), "Longitude: "+ longitude +" Latitude: "+ latitude , Toast.LENGTH_LONG);
                toast.show();

        }
        return super.dispatchTouchEvent(ev);
    }

我最终是这样解决的:

Overlay touchOverlay = new Overlay(this){
                    ItemizedIconOverlay<OverlayItem> anotherItemizedIconOverlay = null; 
                    @Override
                    protected void draw(Canvas arg0, MapView arg1, boolean arg2) {

                    }
                    @Override
                    public boolean onSingleTapConfirmed(final MotionEvent e, final MapView mapView) {
                        Projection proj = mapView.getProjection();
                        GeoPoint loc = (GeoPoint) proj.fromPixels((int)e.getX(), (int)e.getY()); 
                        longitude = Double.toString(((double)loc.getLongitudeE6())/1000000);
                        latitude = Double.toString(((double)loc.getLatitudeE6())/1000000);
                        ArrayList<OverlayItem> overlayArray = new ArrayList<OverlayItem>();
                        OverlayItem mapItem = new OverlayItem("", "", new GeoPoint((((double)loc.getLatitudeE6())/1000000), (((double)loc.getLongitudeE6())/1000000)));
                        mapItem.setMarker(marker);
                        overlayArray.add(mapItem);
                        if(anotherItemizedIconOverlay==null){
                            anotherItemizedIconOverlay = new ItemizedIconOverlay<OverlayItem>(getApplicationContext(), overlayArray,null);
                            myOpenMapView.getOverlays().add(anotherItemizedIconOverlay);
                            myOpenMapView.invalidate();
                        }else{
                            myOpenMapView.getOverlays().remove(anotherItemizedIconOverlay);
                            myOpenMapView.invalidate();
                            anotherItemizedIconOverlay = new ItemizedIconOverlay<OverlayItem>(getApplicationContext(), overlayArray,null);
                            myOpenMapView.getOverlays().add(anotherItemizedIconOverlay);
                        }
                        dlgThread();
                        return true;
                    }
                };
                myOpenMapView.getOverlays().add(touchOverlay);

推荐答案

您应该创建一个 Overlay 并覆盖 onSingleTapConfirmed() 方法以获得单击:

You should create an Overlay and override the onSingleTapConfirmed() method to get single-taps:

@Override
public boolean onSingleTapConfirmed(final MotionEvent event, final MapView mapView) {
    // Handle single-tap here, then return true.
    return true;
}

这篇关于在点击时将标记添加到地图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆