ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Mapping.DeviceLocation Namespace / MapDeviceLocationOptions Class / ShowAccuracyBuffer Property
Example

In This Topic
    ShowAccuracyBuffer Property
    In This Topic
    Gets and sets whether to show accuracy buffer on the map.
    Syntax
    Public Property ShowAccuracyBuffer As Boolean
    public bool ShowAccuracyBuffer {get; set;}
    Remarks
    The default is true. False hides the buffer.
    Example
    Get Current Map Device Location Options
    {
        //Gets the current device location options used by the MapDeviceLocationService
        var options = MapDeviceLocationService.Instance.GetDeviceLocationOptions();
        //Device location visibility on the map
        var visibility = options.DeviceLocationVisibility;
        //MappingDeviceLocationNavigationMode
        var navMode = options.NavigationMode;
        //Heading of the location from the device points to the top of the screen
        var trackUp = options.TrackUpNavigation;
        //Show accuracy buffer on the map
        var showBuffer = options.ShowAccuracyBuffer;
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also