mirror of
https://github.com/cds-astro/aladin-lite.git
synced 2026-01-13 21:47:20 -08:00
33 lines
784 B
HTML
33 lines
784 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
|
|
<link rel="stylesheet" href="../distrib/latest/aladin.min.css" />
|
|
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
|
|
|
|
|
|
<div id="aladin-lite-div" style="width: 500px; height: 500px"></div>
|
|
<div id='aladin-statsDiv'></div>
|
|
<script type="text/javascript" src="../distrib/latest/aladin.js" charset="utf-8"></script>
|
|
|
|
<script type="text/javascript">
|
|
var aladin = A.aladin('#aladin-lite-div', {cooFrame: 'galactic', target: 'orion'});
|
|
aladin.setBaseImageLayer('P/Mellinger/color');
|
|
aladin.setOverlayImageLayer(aladin.createImageSurvey('VTSS', 'VTSS', 'http://alasky.u-strasbg.fr/VTSS/Ha', 'galactic', 3, {imgFormat: 'png'}));
|
|
aladin.getOverlayImageLayer().setAlpha(1.0);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|