ArcGIS Pro 3.2 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 bool ShowAccuracyBuffer {get; set;}
    Public Property ShowAccuracyBuffer As Boolean
    Remarks
    The default is true. False hides the buffer.
    Example
    Get Current Map Device Location Options
    var options = MapDeviceLocationService.Instance.GetDeviceLocationOptions();
    
    var visibility = options.DeviceLocationVisibility;
    var navMode = options.NavigationMode;
    var trackUp = options.TrackUpNavigation;
    var showBuffer = options.ShowAccuracyBuffer;
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also