From 44ce41d9db74fe8814182b583631154b42c23fca Mon Sep 17 00:00:00 2001 From: Matthieu Baumann Date: Tue, 11 Jun 2024 12:08:27 +0200 Subject: [PATCH] first commit --- CHANGELOG.md | 1 + examples/al-stcs-footprints.html | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aff38331..f02990c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ * [fixed] Change `RADECSYS` to `RADESYS` for `Aladin#getViewWCS` to follow fits standard deprecation * [feat] Add new method `Aladin#getViewImageBuffer` to get the current view as a PNG buffer +* [feat] New line rasterizer using GL instancing. ## 3.3.3 diff --git a/examples/al-stcs-footprints.html b/examples/al-stcs-footprints.html index 8a3c7a5e..d53b6004 100644 --- a/examples/al-stcs-footprints.html +++ b/examples/al-stcs-footprints.html @@ -11,7 +11,7 @@ A.init.then(() => { // Start up Aladin Lite - let aladin = A.aladin('#aladin-lite-div', {survey: "CDS/P/DSS2/color", target: 'Sgr a*', fov: 0.5, showContextMenu: true}); + let aladin = A.aladin('#aladin-lite-div', {survey: "CDS/P/DSS2/color", target: 'Sgr a*', fov: 0.5, showContextMenu: true, showCooGrid: true}); // This table contains a s_region column containing stcs expressed regions // that are automatically parsed aladin.addCatalog(A.catalogFromURL('https://aladin.cds.unistra.fr/AladinLite/doc/API/examples/data/alma-footprints.xml', {name: 'ALMA footprints', onClick: 'showTable', hoverColor: 'lightgreen'}));