/// <summary>
        /// Gets the fullname for the zone on this position.
        /// </summary>
        public static String GetZoneName(this Vector3 position)
        {
            var shortName = NativeWrappers.GetNameOfZone(position);

            Game.LogTrivial(shortName);
            return(ZoneNameProvider.GetFullname(shortName));
        }