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.Height Property

Specifies the component height.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

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.Bing" Width="100%" Height="600px" >
    <DxMapApiKeys Bing="@MapApiKeyProvider.GetBingProviderKey()" />
    <DxMapCenter GeoPosition="40.7061, -73.9969" />
</DxMap>

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