Skip to main content
All docs
V25.1
  • DxMap.Height Property

    Specifies the component height.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [Parameter]
    public string Height { get; set; }

    Property Value

    Type Description
    String

    The height in CSS units.

    Remarks

    Use the Height and Width properties to specify the size of the DxMap component.

    <DxMap Zoom="14"
           Provider="MapProvider.Azure"
           Width="100%"
           Height="600px" >
        <DxMapApiKeys Azure="@MapApiKeyProvider.GetAzureProviderKey()" />
        <DxMapCenter GeoPosition="40.7061, -73.9969" />
    </DxMap>
    

    Run Demo: Map - Overview

    Note

    The maximum size of Google Static Maps images is 640 x 640 pixels. For more information, refer to the following article: Maps Static API Usage and Billing.

    See Also