Esempio n. 1
0
        private void OnMapClick()
        {
            // Get the coordinates where the user clicked.
            Vector2 coords = OnlineMapsControlBase.instance.GetCoords();

            // Get elevation on click point
            OnlineMapsGoogleElevation.Find(coords).OnComplete += OnComplete;
        }
Esempio n. 2
0
 private void OnMapClick()
 {
     // Get elevation on click point
     OnlineMapsGoogleElevation.Find(OnlineMapsControlBase.instance.GetCoords()).OnComplete += OnComplete;
 }