mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Set "external ambient module declaration" for "location".
This commit is contained in:
@@ -7,8 +7,7 @@
|
|||||||
// </snippet>
|
// </snippet>
|
||||||
|
|
||||||
import TKUnit = require("Tests/TKUnit");
|
import TKUnit = require("Tests/TKUnit");
|
||||||
import locationModule = require("location/location");
|
import locationModule = require("location");
|
||||||
import types = require("location/location-types");
|
|
||||||
|
|
||||||
var LocationManager = locationModule.LocationManager;
|
var LocationManager = locationModule.LocationManager;
|
||||||
var Location = locationModule.Location;
|
var Location = locationModule.Location;
|
||||||
|
|||||||
237
location/location.d.ts
vendored
237
location/location.d.ts
vendored
@@ -1,119 +1,122 @@
|
|||||||
import promises = require("promises");
|
|
||||||
|
declare module "location" {
|
||||||
|
import promises = require("promises");
|
||||||
|
|
||||||
export declare enum Accuracy {
|
enum Accuracy {
|
||||||
// in meters
|
// in meters
|
||||||
ANY,
|
ANY,
|
||||||
HIGH,
|
HIGH,
|
||||||
|
}
|
||||||
|
|
||||||
|
// For future usage
|
||||||
|
//class LocationRegion {
|
||||||
|
// public latitude: number;
|
||||||
|
// public longitude: number;
|
||||||
|
|
||||||
|
// public raduis: number; // radius in meters
|
||||||
|
//}
|
||||||
|
|
||||||
|
class Location {
|
||||||
|
latitude: number;
|
||||||
|
longitude: number;
|
||||||
|
|
||||||
|
altitude: number; // in meters
|
||||||
|
|
||||||
|
horizontalAccuracy: number; // in meters
|
||||||
|
verticalAccuracy: number; // in meters
|
||||||
|
|
||||||
|
speed: number; // in m/s
|
||||||
|
|
||||||
|
direction: number; // in degrees
|
||||||
|
|
||||||
|
timestamp: Date;
|
||||||
|
|
||||||
|
public android: any; // android Location
|
||||||
|
public ios: any; // iOS CLLocation
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Options {
|
||||||
|
/**
|
||||||
|
* Specifies desired accuracy in meters. Defaults to DesiredAccuracy.HIGH
|
||||||
|
*/
|
||||||
|
desiredAccuracy?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update distance filter in meters. Specifies how often to update. Default on iOS is no filter, on Android it is 0 meters
|
||||||
|
*/
|
||||||
|
updateDistance?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Minimum time interval between location updates, in milliseconds (ignored on iOS)
|
||||||
|
*/
|
||||||
|
minimumUpdateTime?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* how old locations to receive in ms.
|
||||||
|
*/
|
||||||
|
maximumAge?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* how long to wait for a location in ms.
|
||||||
|
*/
|
||||||
|
timeout?: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
class LocationManager {
|
||||||
|
/**
|
||||||
|
* Report are location services switched ON for this device (on Android) or application (iOS)
|
||||||
|
*/
|
||||||
|
static isEnabled(): boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Measure distance in meters between two locations
|
||||||
|
*/
|
||||||
|
static distance(loc1: Location, loc2: Location): number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Specifies desired accuracy in meters. Defaults to DesiredAccuracy.HIGH
|
||||||
|
*/
|
||||||
|
desiredAccuracy: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update distance filter in meters. Specifies how often to update. Default on iOS is no filter, on Android it is 0 meters
|
||||||
|
*/
|
||||||
|
updateDistance: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Minimum time interval between location updates, in milliseconds (ignored on iOS)
|
||||||
|
*/
|
||||||
|
minimumUpdateTime: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* True if location listener is already started. In this case all other start requests will be ignored
|
||||||
|
*/
|
||||||
|
isStarted: boolean;
|
||||||
|
|
||||||
|
// monitoring
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Starts location monitoring.
|
||||||
|
*/
|
||||||
|
startLocationMonitoring(onLocation: (location: Location) => any, onError?: (error: Error) => any, options?: Options);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stops location monitoring
|
||||||
|
*/
|
||||||
|
stopLocationMonitoring();
|
||||||
|
|
||||||
|
// other
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns last known location from device's location services or null of no known last location
|
||||||
|
*/
|
||||||
|
lastKnownLocation: Location;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fires a single shot location search. If you specify timeout in options, location search will fail on timeout.
|
||||||
|
* If you specify timeout = 0 it just requests the last known location. However if you specify maximumAge and the
|
||||||
|
* location received is older it won't be received
|
||||||
|
*/
|
||||||
|
var getLocation: (options?: Options) => promises.Promise<Location>;
|
||||||
}
|
}
|
||||||
|
|
||||||
// For future usage
|
|
||||||
//export declare class LocationRegion {
|
|
||||||
// public latitude: number;
|
|
||||||
// public longitude: number;
|
|
||||||
|
|
||||||
// public raduis: number; // radius in meters
|
|
||||||
//}
|
|
||||||
|
|
||||||
export declare class Location {
|
|
||||||
latitude: number;
|
|
||||||
longitude: number;
|
|
||||||
|
|
||||||
altitude: number; // in meters
|
|
||||||
|
|
||||||
horizontalAccuracy: number; // in meters
|
|
||||||
verticalAccuracy: number; // in meters
|
|
||||||
|
|
||||||
speed: number; // in m/s
|
|
||||||
|
|
||||||
direction: number; // in degrees
|
|
||||||
|
|
||||||
timestamp: Date;
|
|
||||||
|
|
||||||
public android: any; // android Location
|
|
||||||
public ios: any; // iOS CLLocation
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface Options {
|
|
||||||
/**
|
|
||||||
* Specifies desired accuracy in meters. Defaults to DesiredAccuracy.HIGH
|
|
||||||
*/
|
|
||||||
desiredAccuracy?: number;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Update distance filter in meters. Specifies how often to update. Default on iOS is no filter, on Android it is 0 meters
|
|
||||||
*/
|
|
||||||
updateDistance?: number;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Minimum time interval between location updates, in milliseconds (ignored on iOS)
|
|
||||||
*/
|
|
||||||
minimumUpdateTime?: number;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* how old locations to receive in ms.
|
|
||||||
*/
|
|
||||||
maximumAge?: number;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* how long to wait for a location in ms.
|
|
||||||
*/
|
|
||||||
timeout?: number;
|
|
||||||
}
|
|
||||||
|
|
||||||
export declare class LocationManager {
|
|
||||||
/**
|
|
||||||
* Report are location services switched ON for this device (on Android) or application (iOS)
|
|
||||||
*/
|
|
||||||
static isEnabled(): boolean;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Measure distance in meters between two locations
|
|
||||||
*/
|
|
||||||
static distance(loc1: Location, loc2: Location): number;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Specifies desired accuracy in meters. Defaults to DesiredAccuracy.HIGH
|
|
||||||
*/
|
|
||||||
desiredAccuracy: number;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Update distance filter in meters. Specifies how often to update. Default on iOS is no filter, on Android it is 0 meters
|
|
||||||
*/
|
|
||||||
updateDistance: number;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Minimum time interval between location updates, in milliseconds (ignored on iOS)
|
|
||||||
*/
|
|
||||||
minimumUpdateTime: number;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* True if location listener is already started. In this case all other start requests will be ignored
|
|
||||||
*/
|
|
||||||
isStarted: boolean;
|
|
||||||
|
|
||||||
// monitoring
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Starts location monitoring.
|
|
||||||
*/
|
|
||||||
startLocationMonitoring(onLocation: (location: Location) => any, onError?: (error: Error) => any, options?: Options);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Stops location monitoring
|
|
||||||
*/
|
|
||||||
stopLocationMonitoring();
|
|
||||||
|
|
||||||
// other
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns last known location from device's location services or null of no known last location
|
|
||||||
*/
|
|
||||||
lastKnownLocation: Location;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Fires a single shot location search. If you specify timeout in options, location search will fail on timeout.
|
|
||||||
* If you specify timeout = 0 it just requests the last known location. However if you specify maximumAge and the
|
|
||||||
* location received is older it won't be received
|
|
||||||
*/
|
|
||||||
export declare var getLocation: (options?: Options) => promises.Promise<Location>;
|
|
||||||
|
|||||||
Reference in New Issue
Block a user