3

新しいMapsAPIの場合、地図の[現在地]ピンを押しても、どちらonMapClick()も起動しないことに気付きました。onMarkerClick()

これは、マイロケーションタッチイベントが押されたこれらのイベントをリッスンするリスナーがどこかにいるはずだと私に示唆していますが、私は何も見つかりません。誰かがこれに対する解決策を持っていますか?

私はこのような回避策について考えてきました:

標準MyLocationアイコンを無効にして、[現在地]ピンのように機能する通常のマーカーを作成します。

myLocationPin = mMap.addMarker(new MarkerOptions()
                          .title("My Location")
                          .icon(BitmapDescriptorFactory.fromResource(R.drawable.mylocation)));

そして実装LocationSource.OnLocationChangedListener

public void onLocationChanged (Location location) {
    myLocationPin.position(new LatLng(location.latitude, location.longitude)); 
}

しかし、このアプローチには2つの問題があります。

  1. マーカーをオフにする方法がわかりません
  2. onLocationListenerデフォルトを置き換えた場合、自分で実装すると標準機能が機能しなくなるかどうかはわかりませんLocationSource。ドキュメントやソースコードが見つかりません。
4

2 に答える 2

1

この質問が投稿OnMyLocationChangeListenerされてから、APIに追加され、回避策の実装が(非常に)簡単になりました(つまり、カスタムはLocationSourceもう必要ありません)。

したがって、対応するコールバックMarkerを受信するために、[現在地]ドットの上に(同様のアイコンで)を描画できます。onMarkerClick()

public class DemoMapFragment extends SupportMapFragment implements OnMyLocationChangeListener, OnMarkerClickListener { 

    // Note that 'mMap' may be null if the Google Play services APK is not available. 
    private GoogleMap mMap; 
    private Marker myLocationMarker;
    private static BitmapDescriptor markerIconBitmapDescriptor;
    /* ... */

    @Override 
    public void onResume() { 
        super.onResume(); 
        setUpMapIfNeeded(); // Get a reference to the map      
        mMap.setMyLocationEnabled(true); // Enable the my-location layer 
        mMap.setOnMyLocationChangeListener(this); 
        mMap.setOnMarkerClickListener(this);
    }

    private void setUpMapIfNeeded() { 
        // Do a null check to confirm that we have not already instantiated the map. 
        if (mMap == null) { 
            mMap = getMap(); 
            // Check if we were successful in obtaining the map. 
            if (mMap != null) { 
                // The Map is verified. It is now safe to manipulate the map:

                // Load custom marker icon
                markerIconBitmapDescriptor = BitmapDescriptorFactory.fromResource(R.drawable.my_location_dot_icon); 

                // When the map is first loaded we need to add our marker on top of My Location dot
                myLocationMarker = mMap.addMarker(new MarkerOptions() 
                        .position(new LatLng(mMap.getMyLocation().getLatitude(),mMap.getMyLocation().getLongitude())) 
                        .icon(markerIconBitmapDescriptor)); 

                // Set default zoom 
                mMap.moveCamera(CameraUpdateFactory.zoomTo(15f)); 
            } 
        } 
    }   

    @Override
    public void onMyLocationChange(Location location) {
        // Remove the old marker object
        myLocationMarker.remove(); 

        // Add a new marker object at the new (My Location dot) location
        myLocationMarker = mMap.addMarker(new MarkerOptions() 
                .position(new LatLng(location().getLatitude(),location().getLongitude())) 
                .icon(markerIconBitmapDescriptor)); 
    }

    @Override
    public boolean onMarkerClick(Marker marker) {
        if (marker.equals(myLocationMarker)) {
            /* My Location dot callback ... */
        }
    }
}
于 2013-04-21T00:14:27.983 に答える
0

「何かを壊す」とはどういう意味ですか?詳細を教えていただけますか?

1つの代替手段として、システム位置情報サービスからの位置変更をリッスンすることもできます。アクティビティで位置情報サービスをリクエストする:

locationManager = (LocationManager)this.getSystemService(Context.LOCATION_SERVICE);
locatoinManager.requestLocationUpdates(LocationManager.GPS_PROVIDER,2000,2f,this);

あなたの活動はLocationListenerを拡張します

public void onLocationChange(Location location){
     yourLocationPin.position(new LatLng(location.latitude, location.longitude)); 
}
于 2013-01-17T18:18:14.763 に答える