getStartPosition method
@return the default start position for the current map file. Make sure lateOpen
is
already executed
Implementation
@override
Future<LatLong?> getStartPosition() async {
await _lateOpen();
if (null != getMapFileInfo().startPosition) {
return getMapFileInfo().startPosition;
}
return getMapFileInfo().boundingBox.getCenterPoint();
}