private void SetSingleMarkerOnMap()
    {
        Coordinates location = GetCoordinatesOfCursor();

        mapWrapper.SetTemporalMarker(location);
        SetCoordinatesOnInputField(location.Latitude, location.Longitude);
    }
 public void TestSettingTemporalMarkerMakesMapHasATemporalMarker()
 {
     mapWrapper.SetTemporalMarker(temporalMarkerLocation);
     Assert.IsTrue(mapWrapper.HasTemporalMarker);
 }