-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d00d3aa
commit 59a679a
Showing
34 changed files
with
1,990 additions
and
849 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
</head> | ||
<body> | ||
|
||
|
||
<div id="aladin-lite-div" style="width: 768px; height: 512px"></div> | ||
<script>let aladin; let hips;</script> | ||
<script type="module"> | ||
import A from '../src/js/A.js'; | ||
A.init.then(() => { | ||
aladin = A.aladin( | ||
'#aladin-lite-div', | ||
{ | ||
showSimbadPointerControl: true, | ||
projection: 'AIT', // set a projection | ||
fov: 360, // initial field of view in degrees | ||
target: '169.58868 +45.74914', // initial target | ||
cooFrame: 'icrs', // set galactic frame | ||
reticleColor: '#ff89ff', // change reticle color | ||
reticleSize: 64, // change reticle size | ||
showContextMenu: true, | ||
showFrame: true, | ||
showZoomControl:true, | ||
showSettingsControl:true, | ||
showCooGrid: true, | ||
fullScreen: true, | ||
samp: true, | ||
} | ||
); | ||
|
||
hips = aladin.newImageSurvey("https://alasky.cds.unistra.fr/CALIFA/V500DR2/"); | ||
aladin.setImageLayer(hips) | ||
|
||
/*let id; | ||
aladin.on("zoomChanged", () => { | ||
if (id) | ||
clearTimeout(id); | ||
id = setTimeout(() => { | ||
console.log("wheel stopped, new cone search here") | ||
}, 500); | ||
})*/ | ||
}); | ||
</script> | ||
<style> | ||
.aladin-cat-browser-box { | ||
width: 600px; | ||
} | ||
</style> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.