mirror of
https://github.com/cds-astro/aladin-lite.git
synced 2026-01-14 05:57:51 -08:00
28 lines
666 B
HTML
28 lines
666 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: 400px"></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', {survey: 'P/DSS2/red', target: 'M51', fov: 0.3});
|
|
var cat = A.catalogFromURL('http://0.0.0.0:42195/bug-tracking/data/allwise-m51.vot', {sourceSize:4, color: 'pink'}, null, false);
|
|
aladin.addCatalog(cat);
|
|
|
|
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|