create-swdg-frontend 0.1.6 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +31 -13
- package/bin/index.js +3 -244
- package/lib/argv.js +43 -0
- package/lib/cli.js +141 -0
- package/lib/constants.js +24 -0
- package/lib/gis.js +92 -0
- package/lib/manifest.js +23 -0
- package/lib/prompts.js +55 -0
- package/lib/scaffold.js +118 -0
- package/package.json +6 -2
- package/scripts/sync-template.js +120 -0
- package/scripts/validate-template.mjs +74 -0
- package/stubs/tsconfig.node.json +11 -0
- package/stubs/types-env.d.ts +9 -0
- package/stubs/vite.config.ts +64 -0
- package/template/.env.example +6 -0
- package/template/.github/workflows/ci.yml +23 -0
- package/template/.github/workflows/release.yml +69 -0
- package/template/.husky/commit-msg +42 -42
- package/template/.husky/pre-commit +2 -2
- package/template/.husky/prepare-commit-msg +0 -0
- package/template/.lintstagedrc +5 -5
- package/template/.prettierignore +26 -26
- package/template/.prettierrc.cjs +10 -10
- package/template/.stylelintignore +1 -1
- package/template/.stylelintrc.json +12 -6
- package/template/README.md +99 -36
- package/template/auto-imports.d.ts +10 -0
- package/template/commitlint.config.cjs +64 -64
- package/template/docs/MAINTAINER.md +77 -0
- package/template/docs/ONBOARDING.md +284 -0
- package/template/docs/TESTING.md +104 -0
- package/template/eslint.config.js +97 -96
- package/template/index.html +17 -17
- package/template/interface/user.ts +5 -5
- package/template/package.json +88 -86
- package/template/pnpm-lock.yaml +6360 -0
- package/template/postcss.config.js +5 -0
- package/template/scripts/gen-api.cjs +280 -230
- package/template/scripts/release.mjs +53 -59
- package/template/scripts/set-release-version.mjs +46 -0
- package/template/scripts/test-pipeline.mjs +85 -0
- package/template/scripts/test-scaffold.mjs +197 -0
- package/template/scripts/test-template.mjs +52 -0
- package/template/scripts/verify.mjs +28 -0
- package/template/scripts/vite-plugin-cesium-dev.ts +56 -0
- package/template/src/App.vue +6 -6
- package/template/src/api/README.md +7 -3
- package/template/src/assets/favicon.svg +49 -49
- package/template/src/components/Body/index.vue +80 -16
- package/template/src/components/CesiumViewer/index.vue +36 -0
- package/template/src/components/Header/index.vue +19 -8
- package/template/src/components/OnboardingDeck/index.vue +449 -0
- package/template/src/data/onboardingSlides.ts +208 -0
- package/template/src/directive/focus.ts +9 -9
- package/template/src/layout/BasicLayout.vue +28 -28
- package/template/src/main.ts +25 -33
- package/template/src/router/index.ts +30 -24
- package/template/src/router/routeUtils.ts +13 -0
- package/template/src/stores/README.md +3 -3
- package/template/src/stores/useCounter.ts +12 -12
- package/template/src/styles/alerts.less +85 -85
- package/template/src/styles/global.css +326 -326
- package/template/src/styles/shell.css +232 -0
- package/template/src/utils/alert.ts +58 -58
- package/template/src/utils/axios-middleware.js +180 -0
- package/template/src/utils/cesium/index.ts +71 -0
- package/template/src/utils/components.ts +21 -21
- package/template/src/utils/composables/useAlert.ts +14 -14
- package/template/src/utils/composables/useFeatureGis.ts +24 -0
- package/template/src/utils/http.ts +5 -0
- package/template/src/views/examples/cesium/index.vue +85 -0
- package/template/src/views/examples/guide/index.vue +42 -0
- package/template/src/views/examples/test/index.vue +63 -0
- package/template/src/views/index.vue +8 -9
- package/template/src/vite-env.d.ts +1 -1
- package/template/tests/README.md +7 -6
- package/template/tests/e2e/README.md +3 -3
- package/template/tests/setup.ts +1 -1
- package/template/tests/unit/onboardingSlides.test.ts +20 -0
- package/template/tests/unit/router.utils.test.ts +21 -0
- package/template/tests/unit/scaffold.lib.test.ts +44 -0
- package/template/tests/unit/useFeatureGis.test.ts +14 -0
- package/template/tests/utils/helpers.ts +1 -1
- package/template/tsconfig.json +51 -51
- package/template/tsconfig.node.json +11 -11
- package/template/types/README.md +3 -3
- package/template/types/env.d.ts +13 -0
- package/template/types/global.d.ts +9 -9
- package/template/vite.config.ts +89 -75
- package/template/vitest.config.ts +22 -9
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_0.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_1.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_10.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_11.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_12.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_13.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_14.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_15.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_16.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_17.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_18.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_19.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_2.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_20.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_21.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_22.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_23.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_24.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_25.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_26.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_27.json +0 -438
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_3.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_4.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_5.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_6.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_7.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_8.json +0 -1012
- package/template/public/Cesium1.119/Assets/IAU2006_XYS/IAU2006_XYS_9.json +0 -1012
- package/template/public/Cesium1.119/Assets/Images/bing_maps_credit.png +0 -0
- package/template/public/Cesium1.119/Assets/Images/cesium_credit.png +0 -0
- package/template/public/Cesium1.119/Assets/Images/google_earth_credit.png +0 -0
- package/template/public/Cesium1.119/Assets/Images/ion-credit.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/LensFlare/DirtMask.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/LensFlare/StarBurst.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/0/0/0.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/0/1/0.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/1/0/0.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/1/0/1.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/1/1/0.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/1/1/1.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/1/2/0.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/1/2/1.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/1/3/0.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/1/3/1.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/0/0.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/0/1.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/0/2.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/0/3.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/1/0.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/1/1.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/1/2.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/1/3.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/2/0.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/2/1.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/2/2.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/2/3.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/3/0.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/3/1.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/3/2.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/3/3.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/4/0.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/4/1.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/4/2.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/4/3.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/5/0.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/5/1.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/5/2.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/5/3.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/6/0.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/6/1.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/6/2.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/6/3.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/7/0.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/7/1.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/7/2.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/2/7/3.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/NaturalEarthII/tilemapresource.xml +0 -14
- package/template/public/Cesium1.119/Assets/Textures/SkyBox/tycho2t3_80_mx.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/SkyBox/tycho2t3_80_my.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/SkyBox/tycho2t3_80_mz.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/SkyBox/tycho2t3_80_px.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/SkyBox/tycho2t3_80_py.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/SkyBox/tycho2t3_80_pz.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/airfield.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/airport.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/alcohol-shop.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/america-football.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/art-gallery.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/bakery.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/bank.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/bar.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/baseball.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/basketball.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/beer.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/bicycle.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/building.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/bus.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/cafe.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/camera.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/campsite.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/car.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/cemetery.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/cesium.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/chemist.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/cinema.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/circle-stroked.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/circle.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/city.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/clothing-store.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/college.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/commercial.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/cricket.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/cross.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/dam.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/danger.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/disability.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/dog-park.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/embassy.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/emergency-telephone.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/entrance.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/farm.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/fast-food.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/ferry.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/fire-station.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/fuel.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/garden.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/gift.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/golf.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/grocery.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/hairdresser.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/harbor.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/heart.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/heliport.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/hospital.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/ice-cream.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/industrial.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/land-use.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/laundry.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/library.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/lighthouse.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/lodging.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/logging.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/london-underground.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/marker-stroked.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/marker.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/minefield.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/mobilephone.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/monument.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/museum.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/music.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/oil-well.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/park.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/park2.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/parking-garage.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/parking.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/pharmacy.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/pitch.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/place-of-worship.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/playground.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/police.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/polling-place.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/post.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/prison.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/rail-above.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/rail-light.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/rail-metro.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/rail-underground.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/rail.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/religious-christian.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/religious-jewish.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/religious-muslim.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/restaurant.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/roadblock.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/rocket.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/school.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/scooter.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/shop.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/skiing.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/slaughterhouse.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/soccer.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/square-stroked.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/square.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/star-stroked.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/star.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/suitcase.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/swimming.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/telephone.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/tennis.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/theatre.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/toilets.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/town-hall.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/town.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/triangle-stroked.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/triangle.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/village.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/warehouse.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/waste-basket.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/water.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/wetland.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/maki/zoo.png +0 -0
- package/template/public/Cesium1.119/Assets/Textures/moonSmall.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/pin.svg +0 -1
- package/template/public/Cesium1.119/Assets/Textures/waterNormals.jpg +0 -0
- package/template/public/Cesium1.119/Assets/Textures/waterNormalsSmall.jpg +0 -0
- package/template/public/Cesium1.119/Assets/approximateTerrainHeights.json +0 -10924
- package/template/public/Cesium1.119/Cesium.js +0 -185772
- package/template/public/Cesium1.119/ThirdParty/Workers/package.json +0 -3
- package/template/public/Cesium1.119/ThirdParty/Workers/pako_deflate.min.js +0 -1681
- package/template/public/Cesium1.119/ThirdParty/Workers/pako_inflate.min.js +0 -1489
- package/template/public/Cesium1.119/ThirdParty/Workers/z-worker-pako.js +0 -1070
- package/template/public/Cesium1.119/ThirdParty/basis_transcoder.wasm +0 -0
- package/template/public/Cesium1.119/ThirdParty/draco_decoder.wasm +0 -0
- package/template/public/Cesium1.119/ThirdParty/google-earth-dbroot-parser.js +0 -11424
- package/template/public/Cesium1.119/Widgets/Animation/Animation.css +0 -127
- package/template/public/Cesium1.119/Widgets/Animation/lighter.css +0 -78
- package/template/public/Cesium1.119/Widgets/BaseLayerPicker/BaseLayerPicker.css +0 -112
- package/template/public/Cesium1.119/Widgets/BaseLayerPicker/lighter.css +0 -28
- package/template/public/Cesium1.119/Widgets/Cesium3DTilesInspector/Cesium3DTilesInspector.css +0 -104
- package/template/public/Cesium1.119/Widgets/CesiumInspector/CesiumInspector.css +0 -115
- package/template/public/Cesium1.119/Widgets/CesiumWidget/CesiumWidget.css +0 -119
- package/template/public/Cesium1.119/Widgets/CesiumWidget/lighter.css +0 -14
- package/template/public/Cesium1.119/Widgets/FullscreenButton/FullscreenButton.css +0 -8
- package/template/public/Cesium1.119/Widgets/Geocoder/Geocoder.css +0 -72
- package/template/public/Cesium1.119/Widgets/Geocoder/lighter.css +0 -17
- package/template/public/Cesium1.119/Widgets/I3SBuildingSceneLayerExplorer/I3SBuildingSceneLayerExplorer.css +0 -27
- package/template/public/Cesium1.119/Widgets/Images/ImageryProviders/ArcGisMapServiceWorldHillshade.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/ImageryProviders/ArcGisMapServiceWorldImagery.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/ImageryProviders/ArcGisMapServiceWorldOcean.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/ImageryProviders/bingAerial.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/ImageryProviders/bingAerialLabels.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/ImageryProviders/bingRoads.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/ImageryProviders/blueMarble.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/ImageryProviders/earthAtNight.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/ImageryProviders/mapQuestOpenStreetMap.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/ImageryProviders/mapboxSatellite.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/ImageryProviders/mapboxStreets.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/ImageryProviders/mapboxTerrain.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/ImageryProviders/naturalEarthII.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/ImageryProviders/openStreetMap.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/ImageryProviders/sentinel-2.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/ImageryProviders/stadiaAlidadeSmooth.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/ImageryProviders/stadiaAlidadeSmoothDark.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/ImageryProviders/stamenToner.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/ImageryProviders/stamenWatercolor.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/NavigationHelp/Mouse.svg +0 -84
- package/template/public/Cesium1.119/Widgets/Images/NavigationHelp/MouseLeft.svg +0 -76
- package/template/public/Cesium1.119/Widgets/Images/NavigationHelp/MouseMiddle.svg +0 -76
- package/template/public/Cesium1.119/Widgets/Images/NavigationHelp/MouseRight.svg +0 -76
- package/template/public/Cesium1.119/Widgets/Images/NavigationHelp/Touch.svg +0 -120
- package/template/public/Cesium1.119/Widgets/Images/NavigationHelp/TouchDrag.svg +0 -129
- package/template/public/Cesium1.119/Widgets/Images/NavigationHelp/TouchRotate.svg +0 -76
- package/template/public/Cesium1.119/Widgets/Images/NavigationHelp/TouchTilt.svg +0 -135
- package/template/public/Cesium1.119/Widgets/Images/NavigationHelp/TouchZoom.svg +0 -74
- package/template/public/Cesium1.119/Widgets/Images/TerrainProviders/CesiumWorldTerrain.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/TerrainProviders/Ellipsoid.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/TimelineIcons.png +0 -0
- package/template/public/Cesium1.119/Widgets/Images/info-loading.gif +0 -0
- package/template/public/Cesium1.119/Widgets/InfoBox/InfoBox.css +0 -94
- package/template/public/Cesium1.119/Widgets/InfoBox/InfoBoxDescription.css +0 -178
- package/template/public/Cesium1.119/Widgets/NavigationHelpButton/NavigationHelpButton.css +0 -95
- package/template/public/Cesium1.119/Widgets/NavigationHelpButton/lighter.css +0 -38
- package/template/public/Cesium1.119/Widgets/PerformanceWatchdog/PerformanceWatchdog.css +0 -15
- package/template/public/Cesium1.119/Widgets/ProjectionPicker/ProjectionPicker.css +0 -46
- package/template/public/Cesium1.119/Widgets/SceneModePicker/SceneModePicker.css +0 -72
- package/template/public/Cesium1.119/Widgets/SelectionIndicator/SelectionIndicator.css +0 -22
- package/template/public/Cesium1.119/Widgets/Timeline/Timeline.css +0 -103
- package/template/public/Cesium1.119/Widgets/Timeline/lighter.css +0 -18
- package/template/public/Cesium1.119/Widgets/VRButton/VRButton.css +0 -8
- package/template/public/Cesium1.119/Widgets/Viewer/Viewer.css +0 -107
- package/template/public/Cesium1.119/Widgets/VoxelInspector/VoxelInspector.css +0 -18
- package/template/public/Cesium1.119/Widgets/lighter.css +0 -246
- package/template/public/Cesium1.119/Widgets/lighterShared.css +0 -46
- package/template/public/Cesium1.119/Widgets/shared.css +0 -103
- package/template/public/Cesium1.119/Widgets/widgets.css +0 -1376
- package/template/public/Cesium1.119/Workers/chunk-3C7WC463.js +0 -611
- package/template/public/Cesium1.119/Workers/chunk-3JW36LZF.js +0 -166
- package/template/public/Cesium1.119/Workers/chunk-4BTGX3WJ.js +0 -264
- package/template/public/Cesium1.119/Workers/chunk-4WRMLZA7.js +0 -128
- package/template/public/Cesium1.119/Workers/chunk-7Z5IIKOJ.js +0 -8046
- package/template/public/Cesium1.119/Workers/chunk-ABGXSJNX.js +0 -341
- package/template/public/Cesium1.119/Workers/chunk-AMQUWUD4.js +0 -269
- package/template/public/Cesium1.119/Workers/chunk-ATPDRNKI.js +0 -28
- package/template/public/Cesium1.119/Workers/chunk-BMHPVZ4H.js +0 -199
- package/template/public/Cesium1.119/Workers/chunk-CBEO3SHS.js +0 -1102
- package/template/public/Cesium1.119/Workers/chunk-CV7DLCWG.js +0 -485
- package/template/public/Cesium1.119/Workers/chunk-DQO6B4EQ.js +0 -76
- package/template/public/Cesium1.119/Workers/chunk-ED3TLP6D.js +0 -91
- package/template/public/Cesium1.119/Workers/chunk-EFZKO5RU.js +0 -42
- package/template/public/Cesium1.119/Workers/chunk-F5IHREXR.js +0 -2678
- package/template/public/Cesium1.119/Workers/chunk-FKRG4HDY.js +0 -516
- package/template/public/Cesium1.119/Workers/chunk-FYOYUPXG.js +0 -399
- package/template/public/Cesium1.119/Workers/chunk-GFN7NNSJ.js +0 -65
- package/template/public/Cesium1.119/Workers/chunk-HEEMUCG6.js +0 -92
- package/template/public/Cesium1.119/Workers/chunk-HSWA4OEL.js +0 -672
- package/template/public/Cesium1.119/Workers/chunk-IAC5XVZV.js +0 -287
- package/template/public/Cesium1.119/Workers/chunk-II4VNKYR.js +0 -50
- package/template/public/Cesium1.119/Workers/chunk-ILGBPNP6.js +0 -28
- package/template/public/Cesium1.119/Workers/chunk-IRH46BDL.js +0 -124
- package/template/public/Cesium1.119/Workers/chunk-IUA6FAOZ.js +0 -31
- package/template/public/Cesium1.119/Workers/chunk-K4ASOM65.js +0 -331
- package/template/public/Cesium1.119/Workers/chunk-KCIZBVXL.js +0 -258
- package/template/public/Cesium1.119/Workers/chunk-KF5NF354.js +0 -162
- package/template/public/Cesium1.119/Workers/chunk-KRKI6AAO.js +0 -773
- package/template/public/Cesium1.119/Workers/chunk-KZNJOCYU.js +0 -162
- package/template/public/Cesium1.119/Workers/chunk-O5IJ3OGP.js +0 -857
- package/template/public/Cesium1.119/Workers/chunk-OO23RBLX.js +0 -183
- package/template/public/Cesium1.119/Workers/chunk-P37AI2DW.js +0 -85
- package/template/public/Cesium1.119/Workers/chunk-PDMQLSBL.js +0 -108
- package/template/public/Cesium1.119/Workers/chunk-PEYJTJPE.js +0 -73
- package/template/public/Cesium1.119/Workers/chunk-POASMU2N.js +0 -2372
- package/template/public/Cesium1.119/Workers/chunk-PXCJYT2S.js +0 -73
- package/template/public/Cesium1.119/Workers/chunk-Q6L7X3LP.js +0 -538
- package/template/public/Cesium1.119/Workers/chunk-QB3MDM4J.js +0 -1670
- package/template/public/Cesium1.119/Workers/chunk-R6KGAEF6.js +0 -392
- package/template/public/Cesium1.119/Workers/chunk-RXTBM4OI.js +0 -57
- package/template/public/Cesium1.119/Workers/chunk-SB224QGV.js +0 -72
- package/template/public/Cesium1.119/Workers/chunk-T6BE4RZK.js +0 -37
- package/template/public/Cesium1.119/Workers/chunk-TAMCUKAR.js +0 -814
- package/template/public/Cesium1.119/Workers/chunk-TMSETF7M.js +0 -579
- package/template/public/Cesium1.119/Workers/chunk-TOGHF3VN.js +0 -376
- package/template/public/Cesium1.119/Workers/chunk-UH2WFNTA.js +0 -111
- package/template/public/Cesium1.119/Workers/chunk-V7JEDBOE.js +0 -573
- package/template/public/Cesium1.119/Workers/chunk-VBIROZR5.js +0 -633
- package/template/public/Cesium1.119/Workers/chunk-W23CU777.js +0 -271
- package/template/public/Cesium1.119/Workers/chunk-X5IHHI6X.js +0 -173
- package/template/public/Cesium1.119/Workers/chunk-XHX2UPDO.js +0 -217
- package/template/public/Cesium1.119/Workers/combineGeometry.js +0 -53
- package/template/public/Cesium1.119/Workers/createBoxGeometry.js +0 -45
- package/template/public/Cesium1.119/Workers/createBoxOutlineGeometry.js +0 -189
- package/template/public/Cesium1.119/Workers/createCircleGeometry.js +0 -148
- package/template/public/Cesium1.119/Workers/createCircleOutlineGeometry.js +0 -105
- package/template/public/Cesium1.119/Workers/createCoplanarPolygonGeometry.js +0 -293
- package/template/public/Cesium1.119/Workers/createCoplanarPolygonOutlineGeometry.js +0 -143
- package/template/public/Cesium1.119/Workers/createCorridorGeometry.js +0 -830
- package/template/public/Cesium1.119/Workers/createCorridorOutlineGeometry.js +0 -417
- package/template/public/Cesium1.119/Workers/createCylinderGeometry.js +0 -47
- package/template/public/Cesium1.119/Workers/createCylinderOutlineGeometry.js +0 -170
- package/template/public/Cesium1.119/Workers/createEllipseGeometry.js +0 -58
- package/template/public/Cesium1.119/Workers/createEllipseOutlineGeometry.js +0 -51
- package/template/public/Cesium1.119/Workers/createEllipsoidGeometry.js +0 -46
- package/template/public/Cesium1.119/Workers/createEllipsoidOutlineGeometry.js +0 -45
- package/template/public/Cesium1.119/Workers/createFrustumGeometry.js +0 -45
- package/template/public/Cesium1.119/Workers/createFrustumOutlineGeometry.js +0 -164
- package/template/public/Cesium1.119/Workers/createGeometry.js +0 -159
- package/template/public/Cesium1.119/Workers/createGroundPolylineGeometry.js +0 -911
- package/template/public/Cesium1.119/Workers/createPlaneGeometry.js +0 -185
- package/template/public/Cesium1.119/Workers/createPlaneOutlineGeometry.js +0 -93
- package/template/public/Cesium1.119/Workers/createPolygonGeometry.js +0 -884
- package/template/public/Cesium1.119/Workers/createPolygonOutlineGeometry.js +0 -359
- package/template/public/Cesium1.119/Workers/createPolylineGeometry.js +0 -349
- package/template/public/Cesium1.119/Workers/createPolylineVolumeGeometry.js +0 -262
- package/template/public/Cesium1.119/Workers/createPolylineVolumeOutlineGeometry.js +0 -177
- package/template/public/Cesium1.119/Workers/createRectangleGeometry.js +0 -787
- package/template/public/Cesium1.119/Workers/createRectangleOutlineGeometry.js +0 -299
- package/template/public/Cesium1.119/Workers/createSimplePolylineGeometry.js +0 -294
- package/template/public/Cesium1.119/Workers/createSphereGeometry.js +0 -84
- package/template/public/Cesium1.119/Workers/createSphereOutlineGeometry.js +0 -83
- package/template/public/Cesium1.119/Workers/createTaskProcessorWorker.js +0 -28
- package/template/public/Cesium1.119/Workers/createVectorTileClampedPolylines.js +0 -289
- package/template/public/Cesium1.119/Workers/createVectorTileGeometries.js +0 -258
- package/template/public/Cesium1.119/Workers/createVectorTilePoints.js +0 -79
- package/template/public/Cesium1.119/Workers/createVectorTilePolygons.js +0 -275
- package/template/public/Cesium1.119/Workers/createVectorTilePolylines.js +0 -176
- package/template/public/Cesium1.119/Workers/createVerticesFromGoogleEarthEnterpriseBuffer.js +0 -375
- package/template/public/Cesium1.119/Workers/createVerticesFromHeightmap.js +0 -1772
- package/template/public/Cesium1.119/Workers/createVerticesFromQuantizedTerrainMesh.js +0 -425
- package/template/public/Cesium1.119/Workers/createWallGeometry.js +0 -320
- package/template/public/Cesium1.119/Workers/createWallOutlineGeometry.js +0 -229
- package/template/public/Cesium1.119/Workers/decodeDraco.js +0 -227
- package/template/public/Cesium1.119/Workers/decodeGoogleEarthEnterprisePacket.js +0 -1836
- package/template/public/Cesium1.119/Workers/decodeI3S.js +0 -924
- package/template/public/Cesium1.119/Workers/transcodeKTX2.js +0 -3180
- package/template/public/Cesium1.119/Workers/transferTypedArrayTest.js +0 -34
- package/template/public/Cesium1.119/Workers/upsampleQuantizedTerrainMesh.js +0 -534
- package/template/public/Cesium1.119/index.cjs +0 -185632
- package/template/public/Cesium1.119/index.js +0 -182874
- package/template/src/views/Test/index.vue +0 -23
- package/template/tests/unit/example.test.ts +0 -7
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Cesium - https://github.com/CesiumGS/cesium
|
|
4
|
-
* Version 1.119
|
|
5
|
-
*
|
|
6
|
-
* Copyright 2011-2022 Cesium Contributors
|
|
7
|
-
*
|
|
8
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
9
|
-
* you may not use this file except in compliance with the License.
|
|
10
|
-
* You may obtain a copy of the License at
|
|
11
|
-
*
|
|
12
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
13
|
-
*
|
|
14
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
15
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
16
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
17
|
-
* See the License for the specific language governing permissions and
|
|
18
|
-
* limitations under the License.
|
|
19
|
-
*
|
|
20
|
-
* Columbus View (Pat. Pend.)
|
|
21
|
-
*
|
|
22
|
-
* Portions licensed separately.
|
|
23
|
-
* See https://github.com/CesiumGS/cesium/blob/main/LICENSE.md for full licensing details.
|
|
24
|
-
*/
|
|
25
|
-
|
|
26
|
-
import { a as i } from "./chunk-4BTGX3WJ.js";
|
|
27
|
-
import "./chunk-BMHPVZ4H.js";
|
|
28
|
-
import "./chunk-ILGBPNP6.js";
|
|
29
|
-
import "./chunk-P37AI2DW.js";
|
|
30
|
-
import "./chunk-T6BE4RZK.js";
|
|
31
|
-
import "./chunk-X5IHHI6X.js";
|
|
32
|
-
import "./chunk-TMSETF7M.js";
|
|
33
|
-
import "./chunk-7Z5IIKOJ.js";
|
|
34
|
-
import "./chunk-KZNJOCYU.js";
|
|
35
|
-
import { a as t, d as c } from "./chunk-POASMU2N.js";
|
|
36
|
-
import "./chunk-R6KGAEF6.js";
|
|
37
|
-
import "./chunk-3C7WC463.js";
|
|
38
|
-
import "./chunk-II4VNKYR.js";
|
|
39
|
-
import "./chunk-IUA6FAOZ.js";
|
|
40
|
-
import "./chunk-UH2WFNTA.js";
|
|
41
|
-
import { e as o } from "./chunk-PEYJTJPE.js";
|
|
42
|
-
function a(r, n) {
|
|
43
|
-
return (
|
|
44
|
-
o(n) && (r = i.unpack(r, n)),
|
|
45
|
-
(r._center = t.clone(r._center)),
|
|
46
|
-
(r._ellipsoid = c.clone(r._ellipsoid)),
|
|
47
|
-
i.createGeometry(r)
|
|
48
|
-
);
|
|
49
|
-
}
|
|
50
|
-
var p = a;
|
|
51
|
-
export { p as default };
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Cesium - https://github.com/CesiumGS/cesium
|
|
4
|
-
* Version 1.119
|
|
5
|
-
*
|
|
6
|
-
* Copyright 2011-2022 Cesium Contributors
|
|
7
|
-
*
|
|
8
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
9
|
-
* you may not use this file except in compliance with the License.
|
|
10
|
-
* You may obtain a copy of the License at
|
|
11
|
-
*
|
|
12
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
13
|
-
*
|
|
14
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
15
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
16
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
17
|
-
* See the License for the specific language governing permissions and
|
|
18
|
-
* limitations under the License.
|
|
19
|
-
*
|
|
20
|
-
* Columbus View (Pat. Pend.)
|
|
21
|
-
*
|
|
22
|
-
* Portions licensed separately.
|
|
23
|
-
* See https://github.com/CesiumGS/cesium/blob/main/LICENSE.md for full licensing details.
|
|
24
|
-
*/
|
|
25
|
-
|
|
26
|
-
import { a as e } from "./chunk-TOGHF3VN.js";
|
|
27
|
-
import "./chunk-ILGBPNP6.js";
|
|
28
|
-
import "./chunk-HEEMUCG6.js";
|
|
29
|
-
import "./chunk-P37AI2DW.js";
|
|
30
|
-
import "./chunk-T6BE4RZK.js";
|
|
31
|
-
import "./chunk-X5IHHI6X.js";
|
|
32
|
-
import "./chunk-TMSETF7M.js";
|
|
33
|
-
import "./chunk-7Z5IIKOJ.js";
|
|
34
|
-
import "./chunk-KZNJOCYU.js";
|
|
35
|
-
import "./chunk-POASMU2N.js";
|
|
36
|
-
import "./chunk-R6KGAEF6.js";
|
|
37
|
-
import "./chunk-3C7WC463.js";
|
|
38
|
-
import "./chunk-II4VNKYR.js";
|
|
39
|
-
import "./chunk-IUA6FAOZ.js";
|
|
40
|
-
import "./chunk-UH2WFNTA.js";
|
|
41
|
-
import { e as o } from "./chunk-PEYJTJPE.js";
|
|
42
|
-
function i(r, t) {
|
|
43
|
-
return (o(t) && (r = e.unpack(r, t)), e.createGeometry(r));
|
|
44
|
-
}
|
|
45
|
-
var a = i;
|
|
46
|
-
export { a as default };
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Cesium - https://github.com/CesiumGS/cesium
|
|
4
|
-
* Version 1.119
|
|
5
|
-
*
|
|
6
|
-
* Copyright 2011-2022 Cesium Contributors
|
|
7
|
-
*
|
|
8
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
9
|
-
* you may not use this file except in compliance with the License.
|
|
10
|
-
* You may obtain a copy of the License at
|
|
11
|
-
*
|
|
12
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
13
|
-
*
|
|
14
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
15
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
16
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
17
|
-
* See the License for the specific language governing permissions and
|
|
18
|
-
* limitations under the License.
|
|
19
|
-
*
|
|
20
|
-
* Columbus View (Pat. Pend.)
|
|
21
|
-
*
|
|
22
|
-
* Portions licensed separately.
|
|
23
|
-
* See https://github.com/CesiumGS/cesium/blob/main/LICENSE.md for full licensing details.
|
|
24
|
-
*/
|
|
25
|
-
|
|
26
|
-
import { a as t } from "./chunk-KCIZBVXL.js";
|
|
27
|
-
import "./chunk-ILGBPNP6.js";
|
|
28
|
-
import "./chunk-P37AI2DW.js";
|
|
29
|
-
import "./chunk-T6BE4RZK.js";
|
|
30
|
-
import "./chunk-X5IHHI6X.js";
|
|
31
|
-
import "./chunk-TMSETF7M.js";
|
|
32
|
-
import "./chunk-7Z5IIKOJ.js";
|
|
33
|
-
import "./chunk-KZNJOCYU.js";
|
|
34
|
-
import "./chunk-POASMU2N.js";
|
|
35
|
-
import "./chunk-R6KGAEF6.js";
|
|
36
|
-
import "./chunk-3C7WC463.js";
|
|
37
|
-
import "./chunk-II4VNKYR.js";
|
|
38
|
-
import "./chunk-IUA6FAOZ.js";
|
|
39
|
-
import "./chunk-UH2WFNTA.js";
|
|
40
|
-
import { e as n } from "./chunk-PEYJTJPE.js";
|
|
41
|
-
function u(r, e) {
|
|
42
|
-
return (n(r.buffer, e) && (r = t.unpack(r, e)), t.createGeometry(r));
|
|
43
|
-
}
|
|
44
|
-
var a = u;
|
|
45
|
-
export { a as default };
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Cesium - https://github.com/CesiumGS/cesium
|
|
4
|
-
* Version 1.119
|
|
5
|
-
*
|
|
6
|
-
* Copyright 2011-2022 Cesium Contributors
|
|
7
|
-
*
|
|
8
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
9
|
-
* you may not use this file except in compliance with the License.
|
|
10
|
-
* You may obtain a copy of the License at
|
|
11
|
-
*
|
|
12
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
13
|
-
*
|
|
14
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
15
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
16
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
17
|
-
* See the License for the specific language governing permissions and
|
|
18
|
-
* limitations under the License.
|
|
19
|
-
*
|
|
20
|
-
* Columbus View (Pat. Pend.)
|
|
21
|
-
*
|
|
22
|
-
* Portions licensed separately.
|
|
23
|
-
* See https://github.com/CesiumGS/cesium/blob/main/LICENSE.md for full licensing details.
|
|
24
|
-
*/
|
|
25
|
-
|
|
26
|
-
import { c as r } from "./chunk-CBEO3SHS.js";
|
|
27
|
-
import "./chunk-HEEMUCG6.js";
|
|
28
|
-
import "./chunk-PDMQLSBL.js";
|
|
29
|
-
import "./chunk-T6BE4RZK.js";
|
|
30
|
-
import "./chunk-X5IHHI6X.js";
|
|
31
|
-
import "./chunk-TMSETF7M.js";
|
|
32
|
-
import "./chunk-7Z5IIKOJ.js";
|
|
33
|
-
import "./chunk-KZNJOCYU.js";
|
|
34
|
-
import "./chunk-POASMU2N.js";
|
|
35
|
-
import "./chunk-R6KGAEF6.js";
|
|
36
|
-
import "./chunk-3C7WC463.js";
|
|
37
|
-
import "./chunk-II4VNKYR.js";
|
|
38
|
-
import "./chunk-IUA6FAOZ.js";
|
|
39
|
-
import "./chunk-UH2WFNTA.js";
|
|
40
|
-
import { e as o } from "./chunk-PEYJTJPE.js";
|
|
41
|
-
function i(e, t) {
|
|
42
|
-
return (o(t) && (e = r.unpack(e, t)), r.createGeometry(e));
|
|
43
|
-
}
|
|
44
|
-
var a = i;
|
|
45
|
-
export { a as default };
|
|
@@ -1,164 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Cesium - https://github.com/CesiumGS/cesium
|
|
4
|
-
* Version 1.119
|
|
5
|
-
*
|
|
6
|
-
* Copyright 2011-2022 Cesium Contributors
|
|
7
|
-
*
|
|
8
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
9
|
-
* you may not use this file except in compliance with the License.
|
|
10
|
-
* You may obtain a copy of the License at
|
|
11
|
-
*
|
|
12
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
13
|
-
*
|
|
14
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
15
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
16
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
17
|
-
* See the License for the specific language governing permissions and
|
|
18
|
-
* limitations under the License.
|
|
19
|
-
*
|
|
20
|
-
* Columbus View (Pat. Pend.)
|
|
21
|
-
*
|
|
22
|
-
* Portions licensed separately.
|
|
23
|
-
* See https://github.com/CesiumGS/cesium/blob/main/LICENSE.md for full licensing details.
|
|
24
|
-
*/
|
|
25
|
-
|
|
26
|
-
import { a as k, b as _, c as j } from "./chunk-CBEO3SHS.js";
|
|
27
|
-
import "./chunk-HEEMUCG6.js";
|
|
28
|
-
import "./chunk-PDMQLSBL.js";
|
|
29
|
-
import { a as A } from "./chunk-T6BE4RZK.js";
|
|
30
|
-
import { b as N, c as g, d as F } from "./chunk-X5IHHI6X.js";
|
|
31
|
-
import { d as T } from "./chunk-TMSETF7M.js";
|
|
32
|
-
import { f as s } from "./chunk-7Z5IIKOJ.js";
|
|
33
|
-
import { a as b } from "./chunk-KZNJOCYU.js";
|
|
34
|
-
import { a } from "./chunk-POASMU2N.js";
|
|
35
|
-
import "./chunk-R6KGAEF6.js";
|
|
36
|
-
import "./chunk-3C7WC463.js";
|
|
37
|
-
import "./chunk-II4VNKYR.js";
|
|
38
|
-
import { a as d } from "./chunk-IUA6FAOZ.js";
|
|
39
|
-
import { b as h } from "./chunk-UH2WFNTA.js";
|
|
40
|
-
import { e as w } from "./chunk-PEYJTJPE.js";
|
|
41
|
-
var L = 0,
|
|
42
|
-
C = 1;
|
|
43
|
-
function l(e) {
|
|
44
|
-
(h.typeOf.object("options", e),
|
|
45
|
-
h.typeOf.object("options.frustum", e.frustum),
|
|
46
|
-
h.typeOf.object("options.origin", e.origin),
|
|
47
|
-
h.typeOf.object("options.orientation", e.orientation));
|
|
48
|
-
let t = e.frustum,
|
|
49
|
-
o = e.orientation,
|
|
50
|
-
u = e.origin,
|
|
51
|
-
c = d(e._drawNearPlane, !0),
|
|
52
|
-
m,
|
|
53
|
-
p;
|
|
54
|
-
(t instanceof _
|
|
55
|
-
? ((m = L), (p = _.packedLength))
|
|
56
|
-
: t instanceof k && ((m = C), (p = k.packedLength)),
|
|
57
|
-
(this._frustumType = m),
|
|
58
|
-
(this._frustum = t.clone()),
|
|
59
|
-
(this._origin = a.clone(u)),
|
|
60
|
-
(this._orientation = s.clone(o)),
|
|
61
|
-
(this._drawNearPlane = c),
|
|
62
|
-
(this._workerName = "createFrustumOutlineGeometry"),
|
|
63
|
-
(this.packedLength = 2 + p + a.packedLength + s.packedLength));
|
|
64
|
-
}
|
|
65
|
-
l.pack = function (e, t, o) {
|
|
66
|
-
(h.typeOf.object("value", e), h.defined("array", t), (o = d(o, 0)));
|
|
67
|
-
let u = e._frustumType,
|
|
68
|
-
c = e._frustum;
|
|
69
|
-
return (
|
|
70
|
-
(t[o++] = u),
|
|
71
|
-
u === L
|
|
72
|
-
? (_.pack(c, t, o), (o += _.packedLength))
|
|
73
|
-
: (k.pack(c, t, o), (o += k.packedLength)),
|
|
74
|
-
a.pack(e._origin, t, o),
|
|
75
|
-
(o += a.packedLength),
|
|
76
|
-
s.pack(e._orientation, t, o),
|
|
77
|
-
(o += s.packedLength),
|
|
78
|
-
(t[o] = e._drawNearPlane ? 1 : 0),
|
|
79
|
-
t
|
|
80
|
-
);
|
|
81
|
-
};
|
|
82
|
-
var E = new _(),
|
|
83
|
-
G = new k(),
|
|
84
|
-
R = new s(),
|
|
85
|
-
S = new a();
|
|
86
|
-
l.unpack = function (e, t, o) {
|
|
87
|
-
(h.defined("array", e), (t = d(t, 0)));
|
|
88
|
-
let u = e[t++],
|
|
89
|
-
c;
|
|
90
|
-
u === L
|
|
91
|
-
? ((c = _.unpack(e, t, E)), (t += _.packedLength))
|
|
92
|
-
: ((c = k.unpack(e, t, G)), (t += k.packedLength));
|
|
93
|
-
let m = a.unpack(e, t, S);
|
|
94
|
-
t += a.packedLength;
|
|
95
|
-
let p = s.unpack(e, t, R);
|
|
96
|
-
t += s.packedLength;
|
|
97
|
-
let P = e[t] === 1;
|
|
98
|
-
if (!w(o))
|
|
99
|
-
return new l({ frustum: c, origin: m, orientation: p, _drawNearPlane: P });
|
|
100
|
-
let n = u === o._frustumType ? o._frustum : void 0;
|
|
101
|
-
return (
|
|
102
|
-
(o._frustum = c.clone(n)),
|
|
103
|
-
(o._frustumType = u),
|
|
104
|
-
(o._origin = a.clone(m, o._origin)),
|
|
105
|
-
(o._orientation = s.clone(p, o._orientation)),
|
|
106
|
-
(o._drawNearPlane = P),
|
|
107
|
-
o
|
|
108
|
-
);
|
|
109
|
-
};
|
|
110
|
-
l.createGeometry = function (e) {
|
|
111
|
-
let t = e._frustumType,
|
|
112
|
-
o = e._frustum,
|
|
113
|
-
u = e._origin,
|
|
114
|
-
c = e._orientation,
|
|
115
|
-
m = e._drawNearPlane,
|
|
116
|
-
p = new Float64Array(3 * 4 * 2);
|
|
117
|
-
j._computeNearFarPlanes(u, c, t, o, p);
|
|
118
|
-
let P = new A({
|
|
119
|
-
position: new F({
|
|
120
|
-
componentDatatype: b.DOUBLE,
|
|
121
|
-
componentsPerAttribute: 3,
|
|
122
|
-
values: p,
|
|
123
|
-
}),
|
|
124
|
-
}),
|
|
125
|
-
n,
|
|
126
|
-
r,
|
|
127
|
-
y = m ? 2 : 1,
|
|
128
|
-
i = new Uint16Array(8 * (y + 1)),
|
|
129
|
-
f = m ? 0 : 1;
|
|
130
|
-
for (; f < 2; ++f)
|
|
131
|
-
((n = m ? f * 8 : 0),
|
|
132
|
-
(r = f * 4),
|
|
133
|
-
(i[n] = r),
|
|
134
|
-
(i[n + 1] = r + 1),
|
|
135
|
-
(i[n + 2] = r + 1),
|
|
136
|
-
(i[n + 3] = r + 2),
|
|
137
|
-
(i[n + 4] = r + 2),
|
|
138
|
-
(i[n + 5] = r + 3),
|
|
139
|
-
(i[n + 6] = r + 3),
|
|
140
|
-
(i[n + 7] = r));
|
|
141
|
-
for (f = 0; f < 2; ++f)
|
|
142
|
-
((n = (y + f) * 8),
|
|
143
|
-
(r = f * 4),
|
|
144
|
-
(i[n] = r),
|
|
145
|
-
(i[n + 1] = r + 4),
|
|
146
|
-
(i[n + 2] = r + 1),
|
|
147
|
-
(i[n + 3] = r + 5),
|
|
148
|
-
(i[n + 4] = r + 2),
|
|
149
|
-
(i[n + 5] = r + 6),
|
|
150
|
-
(i[n + 6] = r + 3),
|
|
151
|
-
(i[n + 7] = r + 7));
|
|
152
|
-
return new g({
|
|
153
|
-
attributes: P,
|
|
154
|
-
indices: i,
|
|
155
|
-
primitiveType: N.LINES,
|
|
156
|
-
boundingSphere: T.fromVertices(p),
|
|
157
|
-
});
|
|
158
|
-
};
|
|
159
|
-
var O = l;
|
|
160
|
-
function D(e, t) {
|
|
161
|
-
return (w(t) && (e = O.unpack(e, t)), O.createGeometry(e));
|
|
162
|
-
}
|
|
163
|
-
var I = D;
|
|
164
|
-
export { I as default };
|
|
@@ -1,159 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Cesium - https://github.com/CesiumGS/cesium
|
|
4
|
-
* Version 1.119
|
|
5
|
-
*
|
|
6
|
-
* Copyright 2011-2022 Cesium Contributors
|
|
7
|
-
*
|
|
8
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
9
|
-
* you may not use this file except in compliance with the License.
|
|
10
|
-
* You may obtain a copy of the License at
|
|
11
|
-
*
|
|
12
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
13
|
-
*
|
|
14
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
15
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
16
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
17
|
-
* See the License for the specific language governing permissions and
|
|
18
|
-
* limitations under the License.
|
|
19
|
-
*
|
|
20
|
-
* Columbus View (Pat. Pend.)
|
|
21
|
-
*
|
|
22
|
-
* Portions licensed separately.
|
|
23
|
-
* See https://github.com/CesiumGS/cesium/blob/main/LICENSE.md for full licensing details.
|
|
24
|
-
*/
|
|
25
|
-
|
|
26
|
-
import { a as d } from "./chunk-FKRG4HDY.js";
|
|
27
|
-
import { a as w } from "./chunk-PXCJYT2S.js";
|
|
28
|
-
import "./chunk-SB224QGV.js";
|
|
29
|
-
import "./chunk-QB3MDM4J.js";
|
|
30
|
-
import "./chunk-ABGXSJNX.js";
|
|
31
|
-
import "./chunk-DQO6B4EQ.js";
|
|
32
|
-
import "./chunk-TAMCUKAR.js";
|
|
33
|
-
import "./chunk-PDMQLSBL.js";
|
|
34
|
-
import "./chunk-P37AI2DW.js";
|
|
35
|
-
import "./chunk-T6BE4RZK.js";
|
|
36
|
-
import "./chunk-X5IHHI6X.js";
|
|
37
|
-
import "./chunk-TMSETF7M.js";
|
|
38
|
-
import "./chunk-7Z5IIKOJ.js";
|
|
39
|
-
import "./chunk-KZNJOCYU.js";
|
|
40
|
-
import "./chunk-POASMU2N.js";
|
|
41
|
-
import "./chunk-R6KGAEF6.js";
|
|
42
|
-
import "./chunk-3C7WC463.js";
|
|
43
|
-
import "./chunk-II4VNKYR.js";
|
|
44
|
-
import { a as k } from "./chunk-IUA6FAOZ.js";
|
|
45
|
-
import { a as y } from "./chunk-UH2WFNTA.js";
|
|
46
|
-
import { a, b as p, e as r } from "./chunk-PEYJTJPE.js";
|
|
47
|
-
var b = p({
|
|
48
|
-
"./combineGeometry.js": () => import("./combineGeometry.js"),
|
|
49
|
-
"./createBoxGeometry.js": () => import("./createBoxGeometry.js"),
|
|
50
|
-
"./createBoxOutlineGeometry.js": () =>
|
|
51
|
-
import("./createBoxOutlineGeometry.js"),
|
|
52
|
-
"./createCircleGeometry.js": () => import("./createCircleGeometry.js"),
|
|
53
|
-
"./createCircleOutlineGeometry.js": () =>
|
|
54
|
-
import("./createCircleOutlineGeometry.js"),
|
|
55
|
-
"./createCoplanarPolygonGeometry.js": () =>
|
|
56
|
-
import("./createCoplanarPolygonGeometry.js"),
|
|
57
|
-
"./createCoplanarPolygonOutlineGeometry.js": () =>
|
|
58
|
-
import("./createCoplanarPolygonOutlineGeometry.js"),
|
|
59
|
-
"./createCorridorGeometry.js": () => import("./createCorridorGeometry.js"),
|
|
60
|
-
"./createCorridorOutlineGeometry.js": () =>
|
|
61
|
-
import("./createCorridorOutlineGeometry.js"),
|
|
62
|
-
"./createCylinderGeometry.js": () => import("./createCylinderGeometry.js"),
|
|
63
|
-
"./createCylinderOutlineGeometry.js": () =>
|
|
64
|
-
import("./createCylinderOutlineGeometry.js"),
|
|
65
|
-
"./createEllipseGeometry.js": () => import("./createEllipseGeometry.js"),
|
|
66
|
-
"./createEllipseOutlineGeometry.js": () =>
|
|
67
|
-
import("./createEllipseOutlineGeometry.js"),
|
|
68
|
-
"./createEllipsoidGeometry.js": () => import("./createEllipsoidGeometry.js"),
|
|
69
|
-
"./createEllipsoidOutlineGeometry.js": () =>
|
|
70
|
-
import("./createEllipsoidOutlineGeometry.js"),
|
|
71
|
-
"./createFrustumGeometry.js": () => import("./createFrustumGeometry.js"),
|
|
72
|
-
"./createFrustumOutlineGeometry.js": () =>
|
|
73
|
-
import("./createFrustumOutlineGeometry.js"),
|
|
74
|
-
"./createGeometry.js": () => import("./createGeometry.js"),
|
|
75
|
-
"./createGroundPolylineGeometry.js": () =>
|
|
76
|
-
import("./createGroundPolylineGeometry.js"),
|
|
77
|
-
"./createPlaneGeometry.js": () => import("./createPlaneGeometry.js"),
|
|
78
|
-
"./createPlaneOutlineGeometry.js": () =>
|
|
79
|
-
import("./createPlaneOutlineGeometry.js"),
|
|
80
|
-
"./createPolygonGeometry.js": () => import("./createPolygonGeometry.js"),
|
|
81
|
-
"./createPolygonOutlineGeometry.js": () =>
|
|
82
|
-
import("./createPolygonOutlineGeometry.js"),
|
|
83
|
-
"./createPolylineGeometry.js": () => import("./createPolylineGeometry.js"),
|
|
84
|
-
"./createPolylineVolumeGeometry.js": () =>
|
|
85
|
-
import("./createPolylineVolumeGeometry.js"),
|
|
86
|
-
"./createPolylineVolumeOutlineGeometry.js": () =>
|
|
87
|
-
import("./createPolylineVolumeOutlineGeometry.js"),
|
|
88
|
-
"./createRectangleGeometry.js": () => import("./createRectangleGeometry.js"),
|
|
89
|
-
"./createRectangleOutlineGeometry.js": () =>
|
|
90
|
-
import("./createRectangleOutlineGeometry.js"),
|
|
91
|
-
"./createSimplePolylineGeometry.js": () =>
|
|
92
|
-
import("./createSimplePolylineGeometry.js"),
|
|
93
|
-
"./createSphereGeometry.js": () => import("./createSphereGeometry.js"),
|
|
94
|
-
"./createSphereOutlineGeometry.js": () =>
|
|
95
|
-
import("./createSphereOutlineGeometry.js"),
|
|
96
|
-
"./createTaskProcessorWorker.js": () =>
|
|
97
|
-
import("./createTaskProcessorWorker.js"),
|
|
98
|
-
"./createVectorTileClampedPolylines.js": () =>
|
|
99
|
-
import("./createVectorTileClampedPolylines.js"),
|
|
100
|
-
"./createVectorTileGeometries.js": () =>
|
|
101
|
-
import("./createVectorTileGeometries.js"),
|
|
102
|
-
"./createVectorTilePoints.js": () => import("./createVectorTilePoints.js"),
|
|
103
|
-
"./createVectorTilePolygons.js": () =>
|
|
104
|
-
import("./createVectorTilePolygons.js"),
|
|
105
|
-
"./createVectorTilePolylines.js": () =>
|
|
106
|
-
import("./createVectorTilePolylines.js"),
|
|
107
|
-
"./createVerticesFromGoogleEarthEnterpriseBuffer.js": () =>
|
|
108
|
-
import("./createVerticesFromGoogleEarthEnterpriseBuffer.js"),
|
|
109
|
-
"./createVerticesFromHeightmap.js": () =>
|
|
110
|
-
import("./createVerticesFromHeightmap.js"),
|
|
111
|
-
"./createVerticesFromQuantizedTerrainMesh.js": () =>
|
|
112
|
-
import("./createVerticesFromQuantizedTerrainMesh.js"),
|
|
113
|
-
"./createWallGeometry.js": () => import("./createWallGeometry.js"),
|
|
114
|
-
"./createWallOutlineGeometry.js": () =>
|
|
115
|
-
import("./createWallOutlineGeometry.js"),
|
|
116
|
-
"./decodeDraco.js": () => import("./decodeDraco.js"),
|
|
117
|
-
"./decodeGoogleEarthEnterprisePacket.js": () =>
|
|
118
|
-
import("./decodeGoogleEarthEnterprisePacket.js"),
|
|
119
|
-
"./decodeI3S.js": () => import("./decodeI3S.js"),
|
|
120
|
-
"./transcodeKTX2.js": () => import("./transcodeKTX2.js"),
|
|
121
|
-
"./transferTypedArrayTest.js": () => import("./transferTypedArrayTest.js"),
|
|
122
|
-
"./upsampleQuantizedTerrainMesh.js": () =>
|
|
123
|
-
import("./upsampleQuantizedTerrainMesh.js"),
|
|
124
|
-
});
|
|
125
|
-
var f = {};
|
|
126
|
-
async function h(s, t) {
|
|
127
|
-
let e = k(f[t], f[s]);
|
|
128
|
-
return r(e)
|
|
129
|
-
? e
|
|
130
|
-
: r(t)
|
|
131
|
-
? (typeof exports == "object"
|
|
132
|
-
? (e = a(t))
|
|
133
|
-
: (e = (await import(t)).default),
|
|
134
|
-
(f[t] = e),
|
|
135
|
-
e)
|
|
136
|
-
: (typeof exports == "object"
|
|
137
|
-
? (e = a(`Workers/${s}`))
|
|
138
|
-
: (e = (r(t) ? await import(t) : await b(`./${s}.js`)).default),
|
|
139
|
-
(f[s] = e),
|
|
140
|
-
e);
|
|
141
|
-
}
|
|
142
|
-
async function x(s, t) {
|
|
143
|
-
let e = s.subTasks,
|
|
144
|
-
n = e.length,
|
|
145
|
-
u = new Array(n);
|
|
146
|
-
for (let o = 0; o < n; o++) {
|
|
147
|
-
let i = e[o],
|
|
148
|
-
m = i.geometry,
|
|
149
|
-
l = i.moduleName,
|
|
150
|
-
c = i.modulePath;
|
|
151
|
-
if (r(l) && r(c)) throw new y("Must only set moduleName or modulePath");
|
|
152
|
-
r(l) || r(c) ? (u[o] = h(l, c).then((g) => g(m, i.offset))) : (u[o] = m);
|
|
153
|
-
}
|
|
154
|
-
return Promise.all(u).then(function (o) {
|
|
155
|
-
return d.packCreateGeometryResults(o, t);
|
|
156
|
-
});
|
|
157
|
-
}
|
|
158
|
-
var P = w(x);
|
|
159
|
-
export { P as default };
|