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

Represents the Kendo UI Layers component for Angular. Contains a collection of one or more map layers.

Definition

Package:@progress/kendo-angular-map

Selector:kendo-map-layers

Syntax:

TS
@Component({
  selector: 'my-app',
  template: `
    <kendo-map>
      <kendo-map-layers>
        <kendo-map-tile-layer [urlTemplate]="tileUrl"></kendo-map-tile-layer>
        <kendo-map-shape-layer [data]="shapeData"></kendo-map-shape-layer>
      </kendo-map-layers>
    </kendo-map>
  `
})
export class AppComponent {
  public tileUrl = (args: any) => `https://tile.openstreetmap.org/${args.z}/${args.x}/${args.y}.png`;
  public shapeData = [];
}
In this article
Definition
Not finding the help you need?
Contact Support