Example #1
0
        /**
         * Removes a listener from the list of those that will be notified when the user's location or
         * orientation changes.
         */

        public void removeOnChangedListener(IOnChangedListener listener)
        {
            _listeners.Remove(listener);
        }
Example #2
0
        /**
         * Adds a listener that will be notified when the user's location or orientation changes.
         */

        public void addOnChangedListener(IOnChangedListener listener)
        {
            _listeners.Add(listener);
        }