VMEBuildingListener

abstract class VMEBuildingListener

Interface definition of methods that are invoked when building related event occurs within the map.

Since

1.17

VMEBuildingListener buildingListener = new VMEBuildingListener() {
@Override
public boolean mapDidSelectBuilding(String buildingID, VMEPosition position) {
// ...
return true;
}
};
mMapController.setBuildingListener(buildingListener);
mMapController.loadMapData();

Constructors

Link copied to clipboard
fun VMEBuildingListener()

Functions

Link copied to clipboard
open fun mapDidSelectBuilding(buildingID: String, position: VMEPosition?): Boolean

Notifies the listener that a building has been selected.