// Type definitions for Microsoft.Maps.AdvancedShapes 7.0 // Project: http://msdn.microsoft.com/en-us/library/hh921952.aspx // Definitions by: Eric Todd // Definitions: https://github.com/borisyankov/DefinitelyTyped /// declare module Microsoft.Maps.AdvancedShapes { export class EntityCollection { constructor(options?: EntityCollectionOptions); clear(): void; get(index: number): Entity; getLength(): number; getVisible(): boolean; getZIndex(): number; indexOf(entity: Entity): number; insert(entity: Entity, index: number): void; pop(): Entity; push(entity: Entity): void; remove(entity: Entity): Entity; removeAt(index: number): Entity; setOptions(options: EntityCollectionOptions): void; toString(): string; } export class Polygon implements Entity { constructor(locations: Array, options?: PolygonOptions); getFillColor(): Color; getLocations(): Array; getStrokeColor(): Color; getStrokeDashArray(): string; getStrokeThickness(): number; getVisible(): boolean; setLocations(locations: Location[]): void; setOptions(options: PolylineOptions): void; toString(): string; } }