mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-03 23:42:50 +00:00
Merge pull request #8797 from springbov/bingmaps-missingtypedefs
Bingmaps missingtypedefs
This commit is contained in:
commit
45530e67e7
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 {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user