placeMarkerOnRover method
Places a marker at the rover's current position.
Implementation
void placeMarkerOnRover() {
if (!markers.any((e) => e.toGridBlock(centerPosition) == roverPosition.toGridBlock(centerPosition))) {
placeMarker(roverPosition);
}
}