mirror of
https://github.com/cds-astro/aladin-lite.git
synced 2026-01-01 15:50:08 -08:00
24 lines
554 B
HTML
24 lines
554 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
|
|
<!--<link rel="stylesheet" href="./aladin.css" />-->
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<script src="https://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="./../aladin.js" charset="utf-8"></script>
|
|
|
|
<script type="text/javascript">
|
|
let aladin;
|
|
A.init.then(() => {
|
|
aladin = A.aladin('#aladin-lite-div', {target: 'M51', fov: 360, fullScreen: true});
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|