VMEPoi Listener
Interface definition of methods that are invoked when poi related events occur.
Since
1.12
VMEPoiListener poiListener = new VMEPoiListener() {
@Override
public boolean mapDidSelectPoi(String poiID, VMEPosition position) {
// ...
return true;
}
};
mMapController.setPoiListener(poiListener);
mMapController.loadMap();
Content copied to clipboard
Constructors
Functions
Link copied to clipboard
open fun mapDidSelectPoi(poiID: String?, position: VMEPosition?): Boolean
Content copied to clipboard
Notifies the listener that a poi has been selected.