Chiefster
Chiefster

Reputation: 73

kendo ui maps mvc is not showing bing maps tile

I have a Kendo UI Html helper for creating a Kendo Map. I am able to bind remote data and display the markers. However the map tiles do not show up on the page. I am not sure what to do. Here is my markup. The mvc site is created as a Widget to use within sitefinity.

@(Html.Kendo().Map()
            .Name("trailerLocationMap")
            .Center(33.066826, -96.804286)
            .Zoom(4)
            .Layers(layers =>
            {
                    layers.Add()
                .Type(MapLayerType.Bing)
                .ImagerySet(MapLayersImagerySet.Road)
                 .Key("myKey");

            })

)

Upvotes: 0

Views: 228

Answers (1)

Jon R.
Jon R.

Reputation: 999

If you are using sitefinity 11 or above you need to add the Bing URLs to the web security configs. https://www.progress.com/documentation/sitefinity-cms/web-security-module

Upvotes: 0

Related Questions