Карты Android получают событие прокрутки - PullRequest
6 голосов
/ 09 сентября 2010

В настоящее время я занимаюсь разработкой приложения с помощью Andoid Maps SDK.

Теперь я хотел бы получить уведомление, если пользователь прокручивает карту для загрузки дополнительных маркеров с сервера на основе нового центра карты.

Я уже искал функцию для регистрации слушателя, но ничего не нашел.

Есть ли способ получить информацию об изменениях в центре карты? Я не хочу реализовывать механизм опроса для этого ...: (

Ответы [ 2 ]

1 голос
/ 08 ноября 2011

Посмотрите на следующий пост в блоге (поставляется с кодом Github): http://bricolsoftconsulting.com/extending-mapview-to-add-a-change-event/

1 голос
/ 10 июня 2011

Я сделал это двумя способами:

Сенсорный слушатель. Установите сенсорный слушатель для просмотра карты. Каждый раз, когда пользователь поднимает палец (или двигается, или касается), вы можете перезагрузить его.

mapView.setOnTouchListener(new OnTouchListener() {

    public boolean onTouch(View v, MotionEvent event) {
        switch (event.getAction()) {
        case MotionEvent.ACTION_UP:
            // The user took their finger off the map, 
            // they probably just moved it to a new place.
            break;
            case MotionEvent.ACTION_MOVE:
            // The user is probably moving the map.
            break;
        }

        // Return false so that the map still moves.
        return false;
    }
});

Переопределить onLayout. Каждый раз, когда карта перемещается, вызывается onLayout. Если вы расширяете класс MapView, вы можете переопределить onLayout, чтобы перехватить это событие. Я установил здесь таймер, чтобы посмотреть, прекратилось ли движение.

public class ExtendedMapView extends MapView {
    private static final long STOP_TIMER_DELAY = 1500; // 1.5 seconds
    private ScheduledThreadPoolExecutor mExecutor;
    private OnMoveListener mOnMoveListener;
    private Future mStoppedMovingFuture;

    /**
     * Creates a new extended map view.
     * Make sure to override the other constructors if you plan to use them.
     */
    public ExtendedMapView(Context context, AttributeSet attrs) {
        super(context, attrs);
        mExecutor = new ScheduledThreadPoolExecutor(1);
    }

    public interface OnMoveListener {
        /**
         * Notifies that the map has moved. 
         * If the map is moving, this will be called frequently, so don't spend 
         * too much time in this function. If the stopped variable is true, 
         * then the map has stopped moving. This may be useful if you want to
         * refresh the map when the map moves, but not with every little movement.
         * 
         * @param mapView the map that moved
         * @param center the new center of the map
         * @param stopped true if the map is no longer moving
         */
        public void onMove(MapView mapView, GeoPoint center, boolean stopped);
    }

    @Override
    protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
        super.onLayout(changed, left, top, right, bottom);

        if (mOnMoveListener != null) {
            // Inform the listener that the map has moved.
            mOnMoveListener.onMove(this, getMapCenter(), false);

            // We also want to notify the listener when the map stops moving.
            // Every time the map moves, reset the timer. If the timer ever completes, 
            // then we know that the map has stopped moving.
            if (mStoppedMovingFuture != null) {
                mStoppedMovingFuture.cancel(false);
            }
            mStoppedMovingFuture = mExecutor.schedule(onMoveStop, STOP_TIMER_DELAY,
                    TimeUnit.MILLISECONDS);
        }
    }

    /**
     * This is run when we have stopped moving the map. 
     */
    private Runnable onMoveStop = new Runnable() {
        public void run() {
            if (mOnMoveListener != null) {
                mOnMoveListener.onMove(ExtendedMapView.this, getMapCenter(), true);
            }
        }
    };
}

Вы также можете использовать таймер в методе сенсорного прослушивания. Это был просто пример. Надеюсь, это поможет!

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...