/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { DomSanitizer } from '@angular/platform-browser'; import { ShapeLayerOptions } from '@progress/kendo-charts'; import { ShapeOptions } from '@progress/kendo-drawing'; import { CollectionService } from '../common/collection.service'; import { ConfigurationService } from '../common/configuration.service'; import { LayerComponent } from './layer.component'; import * as i0 from "@angular/core"; /** * Represents the Kendo UI ShapeLayer component for Angular. Defines a vector shape layer bound to GeoJSON data. * * @example * ```typescript * @Component({ * selector: 'my-app', * template: ` * * * * * ` * }) * export class AppComponent { * public geoJsonData = { type: "FeatureCollection", features: [] }; * public shapeStyle = { fill: { color: "#007acc" }, stroke: { color: "#ffffff" } }; * } * ``` * * @remarks * Supported children components are: {@link ShapeTooltipComponent}. */ export declare class ShapeLayerComponent extends LayerComponent implements ShapeLayerOptions { protected configurationService: ConfigurationService; protected collectionService: CollectionService; protected sanitizer: DomSanitizer; /** * Sets the array of data items for this layer. */ data?: any; /** * Sets the default style for shapes. */ style?: ShapeOptions; constructor(configurationService: ConfigurationService, collectionService: CollectionService, sanitizer: DomSanitizer); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }