mirror of
https://github.com/cds-astro/aladin-lite.git
synced 2025-12-30 22:52:18 -08:00
21 lines
683 B
HTML
21 lines
683 B
HTML
|
|
<html>
|
|
|
|
<link rel="stylesheet" href="../distrib/aladin-0.5.1.min.css" />
|
|
|
|
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
|
|
<!-- insert this snippet where you want Aladin Lite viewer to appear and after the loading of jQuery -->
|
|
VTS-Ha:
|
|
<div id="aladin-lite-div" style="width:600px;height:600px;"></div>
|
|
<script type="text/javascript" src="../distrib/aladin-0.5.1.js" charset="utf-8"></script>
|
|
<script type="text/javascript">
|
|
var a1 = $.aladin('#aladin-lite-div', {zoom:120});
|
|
a1.setImageSurvey(a1.createImageSurvey("VTS Ha", "VTS Ha", 'http://alasky.u-strasbg.fr/VTSS/Ha/', 'galactic', 3));
|
|
a1.setFrame('Galactic');
|
|
a1.gotoPosition(340, 65);
|
|
</script>
|
|
|
|
|
|
</html>
|
|
|