6

タッチイベントの上にあるすべてのオブジェクトを識別するために、GeoPointをスクリーンポイントに変換したいと思います。だから、私はこれを試しました:

Projection projection = this.mapView.getProjection(); 
GeoPoint gie = new GeoPoint(lat, lon);
Point po = new Point();
projection.toPixels(gie, po);

ただし、po.xとpo.yは画面座標ではなく、マップビュー座標がlat、lonではなくピクセル単位です。

アンドロイド開発者のウェブサイトから:

toPixels(GeoPoint in、android.graphics.Point out)指定されたGeoPointを、このプロジェクションを提供したMapViewの左上を基準にした画面上のピクセル座標に変換します。

それで、それを正しい画面座標に変換することは可能ですか?

上記の例のように、 + touchイベントの隣にあるすべてのxGeoPoint知りたいです。

----------------------------------------------------------------
(0,0) -----------> x                                           |
  |                                                            |
  |                                                            | 
  |                                                            |  <-- My screen
  |                              + (touch event)               |
 \/                            x (my GeoPoint)                 |
  y                                                            |
                                                               | 
---------------------------------------------------------------- 

私はそのようなタッチイベントを取得します:

@Override
public boolean onTouchEvent(MotionEvent event) {
    float x = event.getX();
    float y = event.getY();

ここで、このコードでは、xとyは実際の画面座標です(マップビューのものではなく、ハードウェアのもの)

GeoPointでx、y画面座標を変換して、GeoPointと比較することもできますが、ズームレベルが原因で、必要なものを取得できません。

4

2 に答える 2

2

ビューによって処理されなかったイベント用のonTouchEventを使用している理由がわかりません。onTouch(View v0、MotionEvent e)を使用すると、ビューに関連する情報が得られ、ビューのgetLeftメソッドとgetBottomメソッドを使用して画面座標を計算できます。次のように、画面の右下を占めるマップビューを使用してプロジェクトを作成する場合:

main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
    <com.google.android.maps.MapView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/map"
        android:layout_width="220dp"
        android:layout_height="220dp"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:apiKey="Your API key"
        android:clickable="true" />
</RelativeLayout>

次に、このコードを実行します

public class GoogleMapsTouchActivity extends MapActivity implements OnTouchListener {

    private MapController mMapCtrlr;
    private MapView mMapVw;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
    @Override
    protected void onResume() {
        super.onResume();
        mMapVw = (MapView) findViewById(R.id.map);
        mMapVw.setReticleDrawMode(MapView.ReticleDrawMode.DRAW_RETICLE_OVER);
        mMapCtrlr = mMapVw.getController();
        mMapCtrlr.setZoom(15);
        mMapCtrlr.setCenter(new GeoPoint(53500000, -3000000));
        mMapVw.setOnTouchListener(this);
    }

    @Override
    public boolean onTouch(View v0, MotionEvent e) {
        // Only fires if Mapview touched
        float x = e.getX(); // relative to VIEW
        float y = e.getY(); // relative to VIEW
        float x2; // relative to SCREEN
        float y2; // relative to SCREEN
        if (e.getAction() == MotionEvent.ACTION_DOWN) {
            Toast.makeText(this, "View x = " + x + " View y = " + y, Toast.LENGTH_SHORT).show();
            x2 = mMapVw.getLeft() + x;
            y2 = mMapVw.getBottom() + y;
            Toast.makeText(this, "Screen x = " + x2 + " Screen y = " + y2, Toast.LENGTH_SHORT).show();
            GeoPoint gPt = mMapVw.getProjection().fromPixels((int) x,   (int)y);
            Toast.makeText(this, "Lat = " + gPt.getLatitudeE6() + " Lon = " + gPt.getLongitudeE6(), Toast.LENGTH_SHORT).show();

        }
        return false;
    }
    @Override
    public boolean onTouchEvent(MotionEvent e) {
        // Only fires if screen touched outside a view
        float x = e.getX();
        float y = e.getY();
        if (e.getAction() == MotionEvent.ACTION_DOWN) {
            Toast.makeText(this, "Got touch EVENT x = " + x + " y = " + y, Toast.LENGTH_SHORT).show();
        }
        return super.onTouchEvent(e);
    }
    @Override
    protected boolean isRouteDisplayed() {return false;}
}

ビューとマップビューの外側の領域をクリックすると、トーストメッセージですべてが明確になります。

于 2012-05-21T14:49:43.010 に答える
1

私は解決策を見つけました、それがそれを得る最良の方法であるかどうかはわかりませんが、それはうまくいきます!

画面の現在の境界を画面座標で返すメソッドgetScreenRect()である@nicktの助けに感謝します。

ここにコード:

float pisteX;
float pisteY;
Projection projection = this.mapView.getProjection(); 
Point pt = new Point();
GeoPoint gie = new GeoPoint(latitude,longitude);
Rect rec = mapView.getScreenRect(new Rect());
projection.toPixels(gie, pt);
pisteX = pt.x-rec.left; // car X screen coord
pisteY = pt.y-rec.top; // car Y screen coord
于 2012-05-22T09:08:33.513 に答える