diff --git a/examples/index.ts b/examples/index.ts index 3eaec45..3f53482 100644 --- a/examples/index.ts +++ b/examples/index.ts @@ -53,3 +53,8 @@ const squadCombat = document.getElementById('drawSquadCombat') as HTMLElement; squadCombat.onclick = () => { new CesiumPlot.SquadCombat(Cesium, viewer, {}); }; + +const swallowtailSquadCombat = document.getElementById('drawSwallowtailSquadCombat') as HTMLElement; +swallowtailSquadCombat.onclick = () => { + new CesiumPlot.SwallowtailSquadCombat(Cesium, viewer, {}); +}; diff --git a/index.html b/index.html index 344aa9d..9e48d9b 100644 --- a/index.html +++ b/index.html @@ -41,8 +41,9 @@