I think what I'm looking for is how do I set a style if my code looks like this:
@using (Html.BeginForm()) {
@(Html.Kendo().Map()
.Name("map")
.Center(41.668107, -95.744821)
.Zoom(5)
.Events(events => events
.Click("onClick")
)
.Layers(layers => {
layers.Add()
.Type(MapLayerType.Tile)
.UrlTemplate("http://#= subdomain #.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png")
.Subdomains("a", "b", "c")
})
.Markers(markers => {
foreach (var site in Model) {
if (@Model != null) {
double[] locationInfo = new[] { Convert.ToDouble(site.Lat), Convert.ToDouble(site.Lng) };
markers.Add()
.Location(locationInfo)
.Shape(site.SiteColor)
.Title(site.SiteName)
.Tooltip(tooltip => tooltip.Content(site.Company + "<
br
/>" + site.SiteName + "<
br
/>" + site.SiteAddress));
}
}
})
)
}
How would I add a style to the Navigator to make display larger?