mirror of
https://github.com/cds-astro/aladin-lite.git
synced 2025-12-12 07:40:26 -08:00
29 lines
836 B
HTML
29 lines
836 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<div id="aladin-lite-div" style="width: 1024px; height: 768px"></div>
|
|
|
|
<script type="module">
|
|
import A from '../src/js/A.js';
|
|
let aladin;
|
|
A.init.then(() => {
|
|
aladin = A.aladin(
|
|
'#aladin-lite-div',
|
|
{
|
|
survey: 'https://alasky.cds.unistra.fr/hips-cube-services/moment/hips:httpsalasky.cds.unistra.fr;MaNGA_DR13_Ncube%7Cmoment_order:0',
|
|
projection: 'AIT', // set a projection
|
|
fov: 0.1, // initial field of view in degrees
|
|
target: '135.0668750000, 40.2981666667', // initial target
|
|
cooFrame: 'equatorial', // set galactic frame
|
|
showCooGrid: true, // set the grid
|
|
fullScreen: true,
|
|
}
|
|
);
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|