Beispiel #1
0
    public void UsePhoneLocation()
    {
        _weatherController.ManuallySetGPSCoordValues = false;
        _weatherController.GetCoordinates();

        latText.text = _weatherController.GetCurrentCoord().Latitude.ToString();
        lonText.text = _weatherController.GetCurrentCoord().Longitude.ToString();

        _weatherController.StartRetrieveWeatherCoroutine();
    }