controls.attribution Boolean|Object (default: true)

Configures or disables the built-in attribution control.

Example - hide the attribution control

<div id="map"></div>
<script>
    $("#map").kendoMap({
        controls: {
            attribution: false
        },
        layers: [{
            type: "tile",
            urlTemplate: "http://a.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png",
            attribution: "&copy; OpenStreetMap"
        }]
    });
</script>

controls.attribution.position String (default: "bottomRight")

The position of the attribution control. Possible values include:

  • "topLeft"
  • "topRight"
  • "bottomRight"
  • "bottomLeft"

Example - position the attribution control

<div id="map"></div>
<script>
    $("#map").kendoMap({
        controls: {
            attribution: {
                position: "topRight"
            }
        },
        layers: [{
            type: "tile",
            urlTemplate: "http://a.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png",
            attribution: "&copy; OpenStreetMap"
        }]
    });
</script>
In this article