/**
* The MIT License
* -------------------------------------------------------------
* Copyright (c) 2008, Rob Ellis, Brock Whitten, Brian Leroux, Joe Bowser, Dave Johnson, Nitobi
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.phonegap.model;
/**
* Stores geo location variables.
*
* @author Jose Noheda
*
*/
public class Position {
private double _lat = 0;
private double _lng = 0;
private float altitude = 0;
private float accuracy = 0;
private float alt_accuracy = 0;
private float heading = 0;
private float velocity = 0;
private long timestamp = 0;
public double getLatitude() {
return _lat;
}
public void setLatitude(double _lat) {
this._lat = _lat;
}
public double getLongitude() {
return _lng;
}
public void setLongitude(double _lng) {
this._lng = _lng;
}
public float getAltitude() {
return altitude;
}
public void setAltitude(float altitude) {
this.altitude = altitude;
}
public float getAccuracy() {
return accuracy;
}
public void setAccuracy(float accuracy) {
this.accuracy = accuracy;
}
public float getAltitudeAccuracy() {
return alt_accuracy;
}
public void setAltitudeAccuracy(float alt_accuracy) {
this.alt_accuracy = alt_accuracy;
}
public float getHeading() {
return heading;
}
public void setHeading(float heading) {
this.heading = heading;
}
public float getVelocity() {
return velocity;
}
public void setVelocity(float velocity) {
this.velocity = velocity;
}
public long getTimestamp() {
return timestamp;
}
public void setTimestamp(long timestamp) {
this.timestamp = timestamp;
}
public String toJavascript() {
return "new Position(new Coordinates(" + _lat + "," + _lng + "," + altitude + "," + accuracy + "," + heading + "," + velocity + "," + alt_accuracy + ")," + ( timestamp / 1000 ) + ")";
}
}