mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 12:56:46 +08:00
23 lines
581 B
TypeScript
23 lines
581 B
TypeScript
// Type definitions for Microsoft.Maps.Traffic 7.0
|
|
// Project: http://msdn.microsoft.com/en-us/library/hh312840.aspx
|
|
// Definitions by: Eric Todd <https://github.com/ericrtodd>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare namespace Microsoft.Maps.Traffic {
|
|
|
|
export class TrafficManager {
|
|
|
|
constructor(map: Map);
|
|
|
|
hide(): void;
|
|
hideFlow(): void;
|
|
hideIncidents(): void;
|
|
hideLegend(): void;
|
|
show(): void;
|
|
showFlow(): void;
|
|
showIncidents(): void;
|
|
showLegend():void;
|
|
}
|
|
|
|
}
|