mirror of
https://github.com/cds-astro/aladin-lite.git
synced 2025-12-12 07:40:26 -08:00
18 lines
450 B
HTML
18 lines
450 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';
|
|
A.init.then(() => {
|
|
let aladin = A.aladin('#aladin-lite-div', {fov: 70,projection: "AIT"});
|
|
|
|
let hsc = aladin.newImageSurvey("P/HSC/DR2/deep/g", {colormap:"Purples", imgFormat: "fits"});
|
|
aladin.setBaseImageLayer(hsc);
|
|
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |