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

MarkerTooltipComponent

Represents the Kendo UI MarkerTooltip component for Angular.

Configures the Marker Layer Tooltip.

typescript
@Component({
  selector: 'my-app',
  template: `
    <kendo-map>
      <kendo-map-layer type="marker" [data]="markers">
        <kendo-map-marker-layer-tooltip>
          <ng-template kendoMapMarkerTooltipTemplate let-title="title">
            <div>Marker: {{ title }}</div>
          </ng-template>
        </kendo-map-marker-layer-tooltip>
      </kendo-map-layer>
    </kendo-map>
  `
})
export class AppComponent {
  public markers = [{ title: 'Location A' }];
}

Selector

kendo-map-marker-layer-tooltip

Methods

notifyChanges

Updates the component fields with the specified values and refreshes the component.

Use this method when the configuration values cannot be set through the template.

ts
item.notifyChanges({ visible: true });
Parameters

changes

any

An object containing the updated input fields.

In this article
SelectorMethods
Not finding the help you need?
Contact Support