mirror of
https://github.com/cds-astro/aladin-lite.git
synced 2026-01-08 03:12:43 -08:00
30 lines
1.3 KiB
HTML
30 lines
1.3 KiB
HTML
|
|
<html>
|
|
|
|
<link rel="stylesheet" href="http://aladin.u-strasbg.fr/AladinLite/api/v2/latest/aladin.min.css" />
|
|
|
|
<script type="text/javascript" src="http://aladin.u-strasbg.fr/AladinLite/api/v2/latest/jquery-1.9.1.min.js" charset="utf-8"></script>
|
|
<!-- insert this snippet where you want Aladin Lite viewer to appear and after the loading of jQuery -->
|
|
CGPS:
|
|
<div id="aladin-lite-div-cgps" style="width:300px;height:300px;"></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 a1 = $.aladin('#aladin-lite-div-cgps', {zoom:120});
|
|
a1.setImageSurvey(a1.createImageSurvey("P/CGPS/II", "P/CGPS/II", 'http://cade.irap.omp.eu/documents/Ancillary/4Aladin/CGPS_II/', 'galactic', 4));
|
|
a1.setFrame('Galactic');
|
|
a1.gotoPosition(340, 65);
|
|
</script>
|
|
|
|
BOLOCAM:
|
|
<div id="aladin-lite-div-bgps" style="width:300px;height:300px;"></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 a2 = $.aladin('#aladin-lite-div-bgps', {zoom:120});
|
|
a2.setImageSurvey(a2.createImageSurvey('BOLOCAM', 'BOLOCAM', 'http://cade.irap.omp.eu/documents/Ancillary/4Aladin/BOLOCAM/', 'Galactic', 3));
|
|
a2.setFrame('Galactic');
|
|
a2.gotoPosition(340, 65);
|
|
</script>
|
|
|
|
</html>
|
|
|