DxMap.Width Property
Specifies the component width.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[Parameter]
public string Width { get; set; }
Property Value
Type | Description |
---|---|
String | The width 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