双击侦听器从mapview获取纬度/经度

时间:2016-03-01 15:03:34

标签: android google-maps

 Projection proj = mapView.getProjection();
                GeoPoint loc = proj.fromPixels((int)ev.getX(), (int)ev.getY()); 
                String longitude = Double.toString(((double)loc.getLongitudeE6())/1000000);
                String latitude = Double.toString(((double)loc.getLatitudeE6())/1000000);

我可以在dispatchTouchEvent(MotionEvent ev)上获得纬度/经度 但我希望它是双击单击器

1 个答案:

答案 0 :(得分:1)

您可以这样做:

    private void clearButton_Click(object sender, EventArgs e)
    {
        presentedCSRRichText.Text.Clear();
    }