mirror of
https://github.com/cds-astro/aladin-lite.git
synced 2026-01-11 12:46:05 -08:00
27 lines
938 B
HTML
27 lines
938 B
HTML
<!DOCTYPE>
|
|
<html>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
<body>
|
|
<!-- 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>
|
|
|
|
<!-- 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"});
|
|
</script>
|
|
</body>
|
|
</html>
|