mirror of
https://github.com/cds-astro/aladin-lite.git
synced 2025-12-30 14:42:20 -08:00
39 lines
991 B
HTML
39 lines
991 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
|
|
<link rel="stylesheet" href="../distrib/latest/aladin.min.css" />
|
|
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
|
|
|
|
|
|
<div id="aladin-lite-div" style="width: 500px; height: 400px"></div>
|
|
<div id='aladin-statsDiv'></div>
|
|
<script type="text/javascript" src="../distrib/latest/aladin.js" charset="utf-8"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
// Start up Aladin Lite
|
|
var aladin = A.aladin('#aladin-lite-div');
|
|
aladin.setImageSurvey(aladin.createImageSurvey('Planck-color', 'Planck-color', 'http://skies.esac.esa.int/planck/HFI_SkyMap_217_2048_R2_02_full_HiPS', 'galactic', 3, {imgFormat: 'jpg'}));
|
|
aladin.gotoObject('M 51');
|
|
aladin.setFoV(65);
|
|
|
|
|
|
/*
|
|
aladin.setImageSurvey(aladin.createImageSurvey("AKARI-FIS-color", "AKARI-FIS-color", 'http://skies.esac.esa.int/AKARI/color/', 'galactic', 7));
|
|
aladin.gotoObject('M 51');
|
|
aladin.setFoV(0.15);
|
|
*/
|
|
|
|
|
|
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|