Exemplo n.º 1
0
        void OnQRCodeRecognized(string qrCodeText)
        {
            Debug.Log("QR code found!\n" + qrCodeText);

            var location = Location.Parse(qrCodeText, DateTime.Now);

            if (location == null)
            {
                return;
            }

            history.Add(location);
            locationDisplay.Open(location);
        }
Exemplo n.º 2
0
 public void OpenLocation(Location location)
 {
     //Close();
     locationDisplay.Open(location);
 }