JavaScript/jQuery Map - center
An object, a string, or an array specifying which part of the map is displayed at the UI component's center using coordinates. The UI component can change this value if autoAdjust is enabled.
Raised Events:
onOptionChanged
You can specify the center value in one of the following formats:
- { lat: 40.749825, lng: -73.987963}
- "40.749825, -73.987963"
- [40.749825, -73.987963]
- "Brooklyn Bridge,New York,NY"
When you use the Map as an ASP.NET MVC 5 Control or a DevExtreme-Based ASP.NET Core Control, this property accepts either a string value indicating the address, or two double
type values indicating the coordinates.
Razor C#
Razor VB
@(Html.DevExtreme().Map() .Center("Brooklyn Bridge,New York,NY") // ===== or ===== .Center(40.74982, -73.987963) )
@(Html.DevExtreme().Map() _ .Center("Brooklyn Bridge,New York,NY") _ ' ===== or ===== .Center(40.74982, -73.987963) )
Feedback