@(Html.Kendo().Map()
.Name("map")
.Center(50.000, 0)
.Zoom(2)
.Layers(layers =>
{
layers.Add()
.Style(style => style
.Fill(fill => fill.Color("#1996E4"))
.Stroke(stroke => stroke.Color("#FFFFFF"))
)
.Type(MapLayerType.Shape)
.DataSource(dataSource => dataSource
.GeoJson()
.Read(read => read.Url(Url.Content("~/Content/countries-sales.geo.json")))
);
})
.Events(events => events
.ShapeCreated("onShapeCreated")
.ShapeMouseEnter("onShapeMouseEnter")
.ShapeMouseLeave("onShapeMouseLeave")
.ShapeClick("onShapeClick")
)
.Zoomable(false)
)
DIEA
慕莱坞森