location Tracking Button Toggle Modes
var locationTrackingButtonToggleModes: ArrayList<VMELocationTrackingMode>
Content copied to clipboard
The current location tracking modes handled by the VME location tracker button, default values are <VMELocationTrackingMode.NONE,VMELocationTrackingMode.FOLLOW>
Notes
This method allows to switch between tracking modes with the VME tracker button. 2 modes at least are needed in the list, with no duplicate. Default values in the VMELocationTrackerView are <VMELocationTrackingMode.NONE,VMELocationTrackingMode.FOLLOW>
Since
1.19
List<VMELocationTrackingMode> lToggleTrackingModes = new ArrayList<>();
lToggleTrackingModes.add(VMELocationTrackingMode.NONE);
lToggleTrackingModes.add(VMELocationTrackingMode.CUSTOM);
lToggleTrackingModes.add(VMELocationTrackingMode.FOLLOW);
mMapController.setLocationTrackingButtonToggleModes(lToggleTrackingModes);
Content copied to clipboard