mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 21:01:34 +08:00
initial location snippets documentation
This commit is contained in:
@ -1,27 +1,76 @@
|
|||||||
import TKUnit = require("Tests/TKUnit");
|
// <snippet name="location">
|
||||||
|
// # Location
|
||||||
|
// Using the location requires the Location module.
|
||||||
|
// ``` JavaScript
|
||||||
|
//var LocationManager = require("location").LocationManager;
|
||||||
|
// ```
|
||||||
|
// </snippet>
|
||||||
|
|
||||||
|
import TKUnit = require("Tests/TKUnit");
|
||||||
import locationModule = require("location/location");
|
import locationModule = require("location/location");
|
||||||
import types = require("location/location-types");
|
import types = require("location/location-types");
|
||||||
|
|
||||||
var LocationManager = locationModule.LocationManager;
|
var LocationManager = locationModule.LocationManager;
|
||||||
var Location = locationModule.Location;
|
var Location = locationModule.Location;
|
||||||
|
|
||||||
|
// <snippet name="location">
|
||||||
|
// ## Other functions
|
||||||
|
// </snippet>
|
||||||
|
|
||||||
export var testIsEnabled = function () {
|
export var testIsEnabled = function () {
|
||||||
TKUnit.assert(LocationManager.isEnabled());
|
// <snippet name="location">
|
||||||
|
// ### Test are location services available for this device
|
||||||
|
// ``` JavaScript
|
||||||
|
var isEnabled = LocationManager.isEnabled();
|
||||||
|
// ```
|
||||||
|
// </snippet>
|
||||||
|
TKUnit.assert(isEnabled);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export var testDistance = function () {
|
||||||
|
// <snippet name="location">
|
||||||
|
// ### Get distance between two locations
|
||||||
|
// ``` JavaScript
|
||||||
|
//var Location = require("location").Location;
|
||||||
|
var locSofia = new Location();
|
||||||
|
locSofia.longitude = 42.696552;
|
||||||
|
locSofia.latitude = 23.32601;
|
||||||
|
var locNewYork = new Location();
|
||||||
|
locNewYork.longitude = 40.71448;
|
||||||
|
locNewYork.latitude = -74.00598;
|
||||||
|
var distance = LocationManager.distance(locSofia, locNewYork);
|
||||||
|
// ```
|
||||||
|
// </snippet>
|
||||||
|
TKUnit.assert((distance > 10780000) && (distance < 10860000), "invalid distance " + distance);
|
||||||
|
};
|
||||||
|
|
||||||
|
// <snippet name="location">
|
||||||
|
// ## Getting location
|
||||||
|
// </snippet>
|
||||||
|
|
||||||
export var testLocation = function () {
|
export var testLocation = function () {
|
||||||
var locationReceived;
|
var locationReceived;
|
||||||
|
|
||||||
|
// <snippet name="location">
|
||||||
|
// ### Receive continuous location updates
|
||||||
|
// ``` JavaScript
|
||||||
var locationManager = new LocationManager();
|
var locationManager = new LocationManager();
|
||||||
|
|
||||||
locationManager.startLocationMonitoring(function(location) {
|
locationManager.startLocationMonitoring(function(location) {
|
||||||
|
//console.log('Location received: ' + location);
|
||||||
|
// <hide>
|
||||||
locationReceived = true;
|
locationReceived = true;
|
||||||
|
// </hide>
|
||||||
}, function(error) {
|
}, function(error) {
|
||||||
//console.log('Location error received: ' + error);
|
//console.log('Location error received: ' + error);
|
||||||
|
// <hide>
|
||||||
locationReceived = error;
|
locationReceived = error;
|
||||||
|
// </hide>
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// ```
|
||||||
|
// </snippet>
|
||||||
var isReady = function () {
|
var isReady = function () {
|
||||||
return locationReceived;
|
return locationReceived;
|
||||||
}
|
}
|
||||||
@ -33,31 +82,42 @@ export var testLocation = function () {
|
|||||||
TKUnit.assert(true === locationReceived, locationReceived);
|
TKUnit.assert(true === locationReceived, locationReceived);
|
||||||
};
|
};
|
||||||
|
|
||||||
export var testDistance = function () {
|
|
||||||
var locSofia = new Location();
|
|
||||||
locSofia.longitude = 42.696552;
|
|
||||||
locSofia.latitude = 23.32601;
|
|
||||||
var locNewYork = new Location();
|
|
||||||
locNewYork.longitude = 40.71448;
|
|
||||||
locNewYork.latitude = -74.00598;
|
|
||||||
var distance = LocationManager.distance(locSofia, locNewYork);
|
|
||||||
TKUnit.assert((distance > 10780000) && (distance < 10860000), "invalid distance " + distance);
|
|
||||||
};
|
|
||||||
|
|
||||||
export var testLastKnownLocation = function () {
|
export var testLastKnownLocation = function () {
|
||||||
|
TKUnit.waitUntilReady(function () { return false; }, 1); // give it some time after the last test
|
||||||
|
// <snippet name="location">
|
||||||
|
// ### Get last known location
|
||||||
|
// ``` JavaScript
|
||||||
var locationManager = new LocationManager();
|
var locationManager = new LocationManager();
|
||||||
var lastKnownLocation = locationManager.lastKnownLocation;
|
var lastKnownLocation = locationManager.lastKnownLocation;
|
||||||
|
// ```
|
||||||
|
// </snippet>
|
||||||
TKUnit.assert((lastKnownLocation != null), "There is no last known location");
|
TKUnit.assert((lastKnownLocation != null), "There is no last known location");
|
||||||
};
|
};
|
||||||
|
|
||||||
function doOnce(options: locationModule.Options) {
|
function doOnce(options: locationModule.Options) {
|
||||||
var locationReceived;
|
var locationReceived;
|
||||||
|
// <snippet name="location">
|
||||||
|
// ### Get location once
|
||||||
|
// if there is `options.timeout` you will receive error on timeout. If `options.timeout` is 0 then the result is the same as the result from `LocationManager.lastKnownLocation`
|
||||||
|
// and there will be no wait. You can use `options.maximumAge` to specify you don't want to receive locations older than specified time in ms.
|
||||||
|
//
|
||||||
|
// ``` JavaScript
|
||||||
|
// var locationModule = require("location");
|
||||||
|
//// options can also look like { maximumAge: 2000, timeout: 20 }
|
||||||
|
// locationModule.getLocation({ maximumAge: 30000, timeout: 0 }).then(function (location) {
|
||||||
|
// console.log('Location received: ' + location);
|
||||||
|
// <hide>
|
||||||
locationModule.getLocation(options).then(function (location) {
|
locationModule.getLocation(options).then(function (location) {
|
||||||
locationReceived = true;
|
locationReceived = true;
|
||||||
|
// </hide>
|
||||||
}).fail(function (error) {
|
}).fail(function (error) {
|
||||||
//console.log('Location error received: ' + error);
|
//console.log('Location error received: ' + error);
|
||||||
|
// <hide>
|
||||||
locationReceived = error;
|
locationReceived = error;
|
||||||
|
// </hide>
|
||||||
});
|
});
|
||||||
|
// ```
|
||||||
|
// </snippet>
|
||||||
|
|
||||||
var isReady = function () {
|
var isReady = function () {
|
||||||
return locationReceived;
|
return locationReceived;
|
||||||
|
Reference in New Issue
Block a user