mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 22:30:01 +00:00
Merge pull request #8797 from springbov/bingmaps-missingtypedefs
Bingmaps missingtypedefs
This commit is contained in:
15
bingmaps/Microsoft.Maps.d.ts
vendored
15
bingmaps/Microsoft.Maps.d.ts
vendored
@@ -505,10 +505,21 @@ declare namespace Microsoft.Maps {
|
||||
export interface PositionOptionsErrorCallbackResult {
|
||||
internalError: PositionError;
|
||||
errorCode:number;
|
||||
}
|
||||
}
|
||||
|
||||
export interface PositionOptionsSuccessCallbackResult {
|
||||
center: Location;
|
||||
position: Position;
|
||||
}
|
||||
|
||||
export interface PositionOptions {
|
||||
enableHighAccuracy?: boolean;
|
||||
errorCallback?:(result:PositionOptionsErrorCallbackResult)=>void;
|
||||
errorCallback?: (result: PositionOptionsErrorCallbackResult) => void;
|
||||
showAccuracyCircle?: boolean;
|
||||
timeout?: number;
|
||||
updateMapView?: boolean;
|
||||
maximumAge?: number;
|
||||
successCallback?: (result: PositionOptionsSuccessCallbackResult) => void;
|
||||
}
|
||||
|
||||
export interface PositionCircleOptions {
|
||||
|
||||
Reference in New Issue
Block a user