Files
aladin-lite/_canvas/js/Location.js
2014-10-23 07:07:36 +00:00

25 lines
613 B
JavaScript

/******************************************************************************
* Aladin HTML5 project
*
* File Location.js
*
* Author: Thomas Boch[CDS]
*
*****************************************************************************/
Location = function(locationDiv) {
this.div = $(locationDiv);
};
Location.prototype.update = function(lon, lat, cooFrame) {
var coo = new Coo(lon, lat, 7);
if (cooFrame==CooFrameEnum.J2000) {
this.div.html('α, δ: ' + coo.format('s/'));
}
else {
this.div.html('l, b: ' + coo.format('d/'));
}
};