mirror of
https://github.com/cds-astro/aladin-lite.git
synced 2026-01-08 03:12:43 -08:00
24 lines
653 B
HTML
24 lines
653 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="aladin-lite-div" style="width: 500px; height: 400px"></div>
|
|
<div id='aladin-statsDiv'></div>
|
|
<script type="text/javascript" src="./../aladin.js" charset="utf-8"></script>
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
let aladin;
|
|
A.init.then(() => {
|
|
aladin = A.aladin('#aladin-lite-div', {target: '14 18 16.868 +56 44 29.37', fov: 5, showContextMenu: true});
|
|
|
|
const c1 = A.catalogFromURL('https://raw.githubusercontent.com/bmatthieu3/SKA-Discovery-Service-Mockup/aladin/ObsCore/ObsCore_003.xml', {onClick: 'showTable'});
|
|
aladin.addCatalog(c1);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|