updateLocation

fun updateLocation(location: VMELocation?)

Updates the users current physical location within the map.

Notes

Calls to this method before VMELifeCycleListener.mapDataDidLoad is called will be ignored.

Since

1.2

// From the implementation of your LocationListener interface.
@Override
void onLocationChanged(Location location) {
VMELocation lVMELocation = mMapController.createLocationFromLocation(location);
mMapController.updateLocation(lVMELocation);
}

Parameters

location

The location update to apply.