mirror of
https://github.com/cds-astro/aladin-lite.git
synced 2026-01-16 06:53:24 -08:00
39 lines
898 B
HTML
39 lines
898 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
|
|
/* body {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
*/
|
|
html, body, #aladin-lite-div {
|
|
height: 600px;
|
|
width: 800px;
|
|
}
|
|
</style>
|
|
|
|
<link rel="stylesheet" href="http://aladin.u-strasbg.fr/AladinLite/api/v2/latest/aladin.min.css" />
|
|
</head>
|
|
<body>
|
|
|
|
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
|
|
|
|
|
|
<div id="aladin-lite-div" ></div>
|
|
<script type="text/javascript" src="http://aladin.u-strasbg.fr/AladinLite/api/v2/latest/aladin.min.js" charset="utf-8"></script>
|
|
|
|
<script type="text/javascript">
|
|
var aladin = $.aladin('#aladin-lite-div', {survey: "P/DSS2/color", zoom: 140, cooFrame: 'galactic'});
|
|
|
|
var prog = aladin.createProgressiveCatalog('http://alasky.u-strasbg.fr/cats/SIMBAD', 'galactic', 8, {name: 'Prog. SIMBAD', sourceSize: 8});
|
|
aladin.addCatalog(prog);
|
|
|
|
|
|
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|