Skip to content

class PickListener

PavelTychinin edited this page Dec 22, 2021 · 6 revisions

Interface for a callback to receive the picked objects, triggered after a call to LocationViewController pickMapObject(float, float). The listener is set with setPickListener. The callback will be run on the main (UI) thread and return MapObjectPickResult

Referenced from: LocationViewController.

public abstract class PickListener {
    public PickListener() {}
    public abstract void onMapObjectPickComplete(MapObjectPickResult res, Point point);
}

Clone this wiki locally