blob: deb7c4977918a87822a6a83ca89dbf2f27032650 [file] [log] [blame]
var Coordinates = require('cordova/plugin/Coordinates');
var Position = function(coords, timestamp) {
if (coords) {
this.coords = new Coordinates(coords.latitude, coords.longitude, coords.altitude, coords.accuracy, coords.heading, coords.velocity, coords.altitudeAccuracy);
} else {
this.coords = new Coordinates();
}
this.timestamp = (timestamp !== undefined) ? timestamp : new Date().getTime();
};
module.exports = Position;