Skip to main content
You are viewing help content for pre-release software. This document and the features it describes are subject to change.
All docs
V24.1

DxMap.ControlsVisible Property

Specifies whether or not map UI controls are visible.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

Declaration

[Parameter]
public bool ControlsVisible { get; set; }

Property Value

Type Description
Boolean

true to display the controls; otherwise, false.

Remarks

Set the ControlsVisible property to true to display map navigation and type controls. Note that this property is not in effect for Google Static Maps images since they are not interactive.

<DxMap Zoom="14" Provider="MapProvider.Bing" Width="450px" Height="400px" ControlsVisible="true" >
    <DxMapApiKeys Bing="your_bing_api_key" />
    <DxMapCenter Latitude="40.7061" Longitude="-73.9969"/>
</DxMap>

<DxMap Zoom="14" Provider="MapProvider.Google" Width="450px" Height="400px" ControlsVisible="true" >
    <DxMapApiKeys Google="your_google_api_key" />
    <DxMapCenter Latitude="40.7061" Longitude="-73.9969"/>
</DxMap>

maps with controls

See Also