New to Kendo UI for jQueryStart a free 30-day trial

Tooltip.animation

configuration

A collection of {Animation} objects, used to change default animations. A value of false will disable all animations in the widget.

<div id="map"></div>
<script>
  $("#map").kendoMap({
    layers: [{
      type: "tile",
      urlTemplate: "https://a.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png",
      attribution: "&copy; OpenStreetMap"
    }],
    markers: [
      {
        location: [42, 27],
        tooltip: {
          content: 'Map tooltip',
          animation: {
            open: {
              effects: "fade:in",
              duration: 1000
            },
            close: {
              effects: "fade:out",
              duration: 1000
            }
          }
        }
      }
    ]
  });
</script>

The animation that will be used when a Tooltip closes.

<div id="map"></div>
<script>
  $("#map").kendoMap({
    layers: [{
      type: "tile",
      urlTemplate: "https://a.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png",
      attribution: "&copy; OpenStreetMap"
    }],
    markers: [
      {
        location: [42, 27],
        tooltip: {
          content: 'Map tooltip',
          animation: {                
            close: {
              effects: "fade:out",
              duration: 1000
            }
          }
        }
      }
    ]
  });
</script>

The animation that will be used when a Tooltip opens.

<div id="map"></div>
<script>
  $("#map").kendoMap({
    layers: [{
      type: "tile",
      urlTemplate: "https://a.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png",
      attribution: "&copy; OpenStreetMap"
    }],
    markers: [
      {
        location: [42, 27],
        tooltip: {
          content: 'Map tooltip',
          animation: {                
            open: {
              effects: "fade:in",
              duration: 1000
            }
          }
        }
      }
    ]
  });
</script>