mirror of
https://github.com/cds-astro/aladin-lite.git
synced 2026-01-11 12:46:05 -08:00
39 lines
1.6 KiB
HTML
39 lines
1.6 KiB
HTML
<!DOCTYPE>
|
|
<html>
|
|
<body>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
|
|
|
|
|
|
<!-- Aladin Lite CSS style file -->
|
|
<link rel="stylesheet" href="http://aladin.u-strasbg.fr/AladinLite/api/v2/latest/aladin.min.css" />
|
|
|
|
<!-- Aladin Lite has a dependency on the jQuery library -->
|
|
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.min.js" charset="utf-8"></script>
|
|
|
|
<!-- Aladin Lite container at requested dimensions -->
|
|
<div id="aladin-lite-div" style="width:700px;height:400px;"></div>
|
|
<input id="DSS" type="radio" name="survey" value="P/DSS2/color" checked><label for="DSS">DSS color<label>
|
|
<input id="DSS-blue" type="radio" name="survey" value="P/DSS2/blue"><label for="DSS-blue">DSS blue<label>
|
|
<input id="2MASS" type="radio" name="survey" value="P/2MASS/color"><label for="2MASS">2MASS<label>
|
|
<input id="allwise" type="radio" name="survey" value="P/allWISE/color"><label for="allwise">AllWISE<label>
|
|
<input id="glimpse" type="radio" name="survey" value="P/GLIMPSE360"><label for="glimpse">GLIMPSE 360<label>
|
|
|
|
<!-- Aladin Lite JS code -->
|
|
<script type="text/javascript" src="http://aladin.u-strasbg.fr/AladinLite/api/v2/latest/aladin.min.js" charset="utf-8"></script>
|
|
|
|
<!-- Creation of Aladin Lite instance with initial parameters -->
|
|
<script type="text/javascript">
|
|
var aladin = A.aladin('#aladin-lite-div', {survey: "P/DSS2/color", fov:1.5, target: "trifid"});
|
|
|
|
$('input[name=survey]').change(function() {
|
|
aladin.setImageSurvey($(this).val());
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|