@vcmap/ui 5.0.0-rc.17 → 5.0.0-rc.20
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 +6 -6
- package/build/build.js +2 -2
- package/build/buildCesium.js +3 -3
- package/build/buildHelpers.js +2 -1
- package/config/base.config.json +0 -4
- package/config/dev.config.json +35 -14
- package/config/www.config.json +752 -123
- package/dist/assets/cesium/Workers/ArcType-ce2e50ab.js +37 -0
- package/dist/assets/cesium/Workers/AttributeCompression-b646d393.js +716 -0
- package/dist/assets/cesium/Workers/AxisAlignedBoundingBox-ff186ccc.js +258 -0
- package/dist/assets/cesium/Workers/BoundingRectangle-be5924f4.js +369 -0
- package/dist/assets/cesium/Workers/BoxGeometry-12eeccaf.js +884 -0
- package/dist/assets/cesium/Workers/Check-666ab1a0.js +290 -0
- package/dist/assets/cesium/Workers/Color-a84038cb.js +2262 -0
- package/dist/assets/cesium/Workers/ComponentDatatype-f7b11d02.js +341 -0
- package/dist/assets/cesium/Workers/CoplanarPolygonGeometryLibrary-3272c1b3.js +132 -0
- package/dist/assets/cesium/Workers/CorridorGeometryLibrary-0170e093.js +498 -0
- package/dist/assets/cesium/Workers/CylinderGeometry-7c5da648.js +467 -0
- package/dist/assets/cesium/Workers/CylinderGeometryLibrary-372c07d8.js +63 -0
- package/dist/assets/cesium/Workers/EllipseGeometry-797d580e.js +1304 -0
- package/dist/assets/cesium/Workers/EllipseGeometryLibrary-2939e1dc.js +366 -0
- package/dist/assets/cesium/Workers/EllipseOutlineGeometry-8b50870f.js +443 -0
- package/dist/assets/cesium/Workers/EllipsoidGeodesic-98c62a56.js +520 -0
- package/dist/assets/cesium/Workers/EllipsoidGeometry-21c0e3a5.js +637 -0
- package/dist/assets/cesium/Workers/EllipsoidOutlineGeometry-eff247c8.js +454 -0
- package/dist/assets/cesium/Workers/EllipsoidRhumbLine-19756602.js +741 -0
- package/dist/assets/cesium/Workers/EllipsoidTangentPlane-214683dc.js +373 -0
- package/dist/assets/cesium/Workers/EncodedCartesian3-81f70735.js +171 -0
- package/dist/assets/cesium/Workers/FrustumGeometry-ac42a6d9.js +2512 -0
- package/dist/assets/cesium/Workers/GeometryAttribute-7d6f1732.js +619 -0
- package/dist/assets/cesium/Workers/GeometryAttributes-f06a2792.js +91 -0
- package/dist/assets/cesium/Workers/GeometryInstance-451dc1cd.js +121 -0
- package/dist/assets/cesium/Workers/GeometryOffsetAttribute-04332ce7.js +16 -0
- package/dist/assets/cesium/Workers/GeometryPipeline-ce4339ed.js +3690 -0
- package/dist/assets/cesium/Workers/IndexDatatype-a55ceaa1.js +200 -0
- package/dist/assets/cesium/Workers/IntersectionTests-f6e6bd8a.js +1836 -0
- package/dist/assets/cesium/Workers/Math-2dbd6b93.js +1330 -0
- package/dist/assets/cesium/Workers/Matrix2-13178034.js +7086 -0
- package/dist/assets/cesium/Workers/Matrix3-315394f6.js +4283 -0
- package/dist/assets/cesium/Workers/OrientedBoundingBox-04920dc7.js +1257 -0
- package/dist/assets/cesium/Workers/Plane-900aa728.js +309 -0
- package/dist/assets/cesium/Workers/PolygonGeometryLibrary-a8680d96.js +1074 -0
- package/dist/assets/cesium/Workers/PolygonPipeline-844aab0a.js +1345 -0
- package/dist/assets/cesium/Workers/PolylinePipeline-32f36d2a.js +573 -0
- package/dist/assets/cesium/Workers/PolylineVolumeGeometryLibrary-a510d657.js +781 -0
- package/dist/assets/cesium/Workers/PrimitivePipeline-ba38434a.js +966 -0
- package/dist/assets/cesium/Workers/RectangleGeometryLibrary-bdba697e.js +280 -0
- package/dist/assets/cesium/Workers/RuntimeError-06c93819.js +68 -0
- package/dist/assets/cesium/Workers/TerrainEncoding-833187da.js +1227 -0
- package/dist/assets/cesium/Workers/Transforms-40229881.js +14696 -0
- package/dist/assets/cesium/Workers/VertexFormat-6b480673.js +312 -0
- package/dist/assets/cesium/Workers/WallGeometryLibrary-919eed92.js +211 -0
- package/dist/assets/cesium/Workers/WebGLConstants-a8cc3e8c.js +620 -0
- package/dist/assets/cesium/Workers/WebMercatorProjection-13a90d41.js +151 -0
- package/dist/assets/cesium/Workers/arrayRemoveDuplicates-c2038105.js +129 -0
- package/dist/assets/cesium/Workers/cesiumWorkerBootstrapper.js +1336 -4
- package/dist/assets/cesium/Workers/combine-ca22a614.js +82 -0
- package/dist/assets/cesium/Workers/combineGeometry.js +17 -25
- package/dist/assets/cesium/Workers/createBoxGeometry.js +12 -25
- package/dist/assets/cesium/Workers/createBoxOutlineGeometry.js +313 -25
- package/dist/assets/cesium/Workers/createCircleGeometry.js +213 -25
- package/dist/assets/cesium/Workers/createCircleOutlineGeometry.js +160 -25
- package/dist/assets/cesium/Workers/createCoplanarPolygonGeometry.js +586 -25
- package/dist/assets/cesium/Workers/createCoplanarPolygonOutlineGeometry.js +236 -25
- package/dist/assets/cesium/Workers/createCorridorGeometry.js +1407 -25
- package/dist/assets/cesium/Workers/createCorridorOutlineGeometry.js +603 -25
- package/dist/assets/cesium/Workers/createCylinderGeometry.js +12 -25
- package/dist/assets/cesium/Workers/createCylinderOutlineGeometry.js +265 -25
- package/dist/assets/cesium/Workers/createEllipseGeometry.js +14 -25
- package/dist/assets/cesium/Workers/createEllipseOutlineGeometry.js +14 -25
- package/dist/assets/cesium/Workers/createEllipsoidGeometry.js +12 -25
- package/dist/assets/cesium/Workers/createEllipsoidOutlineGeometry.js +15 -25
- package/dist/assets/cesium/Workers/createFrustumGeometry.js +12 -25
- package/dist/assets/cesium/Workers/createFrustumOutlineGeometry.js +251 -25
- package/dist/assets/cesium/Workers/createGeometry.js +55 -25
- package/dist/assets/cesium/Workers/createGroundPolylineGeometry.js +2134 -25
- package/dist/assets/cesium/Workers/createPlaneGeometry.js +250 -25
- package/dist/assets/cesium/Workers/createPlaneOutlineGeometry.js +115 -25
- package/dist/assets/cesium/Workers/createPolygonGeometry.js +1420 -25
- package/dist/assets/cesium/Workers/createPolygonOutlineGeometry.js +683 -25
- package/dist/assets/cesium/Workers/createPolylineGeometry.js +571 -25
- package/dist/assets/cesium/Workers/createPolylineVolumeGeometry.js +411 -25
- package/dist/assets/cesium/Workers/createPolylineVolumeOutlineGeometry.js +301 -25
- package/dist/assets/cesium/Workers/createRectangleGeometry.js +1476 -25
- package/dist/assets/cesium/Workers/createRectangleOutlineGeometry.js +535 -25
- package/dist/assets/cesium/Workers/createSimplePolylineGeometry.js +458 -25
- package/dist/assets/cesium/Workers/createSphereGeometry.js +123 -25
- package/dist/assets/cesium/Workers/createSphereOutlineGeometry.js +126 -25
- package/dist/assets/cesium/Workers/createTaskProcessorWorker.js +127 -25
- package/dist/assets/cesium/Workers/createVectorTileClampedPolylines.js +535 -25
- package/dist/assets/cesium/Workers/createVectorTileGeometries.js +445 -25
- package/dist/assets/cesium/Workers/createVectorTilePoints.js +79 -25
- package/dist/assets/cesium/Workers/createVectorTilePolygons.js +406 -25
- package/dist/assets/cesium/Workers/createVectorTilePolylines.js +254 -25
- package/dist/assets/cesium/Workers/createVerticesFromGoogleEarthEnterpriseBuffer.js +640 -25
- package/dist/assets/cesium/Workers/createVerticesFromHeightmap.js +2711 -27
- package/dist/assets/cesium/Workers/createVerticesFromQuantizedTerrainMesh.js +994 -25
- package/dist/assets/cesium/Workers/createWallGeometry.js +623 -25
- package/dist/assets/cesium/Workers/createWallOutlineGeometry.js +432 -25
- package/dist/assets/cesium/Workers/decodeDraco.js +381 -25
- package/dist/assets/cesium/Workers/decodeGoogleEarthEnterprisePacket.js +3687 -25
- package/dist/assets/cesium/Workers/decodeI3S.js +1040 -0
- package/dist/assets/cesium/Workers/defaultValue-0a909f67.js +51 -0
- package/dist/assets/cesium/Workers/package.js +2 -2
- package/dist/assets/cesium/Workers/transcodeKTX2.js +1516 -25
- package/dist/assets/cesium/Workers/transferTypedArrayTest.js +18 -2
- package/dist/assets/cesium/Workers/upsampleQuantizedTerrainMesh.js +1023 -25
- package/dist/assets/{cesium.41de56.js → cesium.adbd45.js} +112161 -108735
- package/dist/assets/cesium.js +1 -1
- package/dist/assets/{core.af84e3.js → core.60e74d.js} +1616 -1629
- package/dist/assets/core.f198cf.js +15993 -0
- package/dist/assets/core.js +1 -1
- package/dist/assets/{index.5b773cad.js → index.884a53ef.js} +1 -1
- package/dist/assets/{ol.5c7490.js → ol.c6ff35.js} +6992 -6972
- package/dist/assets/ol.dbd604.js +44299 -0
- package/dist/assets/ol.js +1 -1
- package/dist/assets/ui.bf504d.css +1 -0
- package/dist/assets/{ui.dffe32.js → ui.bf504d.js} +6171 -6821
- package/dist/assets/ui.js +1 -1
- package/dist/assets/{vue.25da17.js → vue.75b819.js} +0 -0
- package/dist/assets/vue.a831f1.js +4675 -0
- package/dist/assets/vue.js +2 -2
- package/dist/assets/{vuetify.e4ece7.css → vuetify.0d7360.css} +0 -0
- package/dist/assets/{vuetify.e4ece7.js → vuetify.0d7360.js} +1 -1
- package/dist/assets/vuetify.js +2 -2
- package/dist/index.html +1 -1
- package/index.js +2 -1
- package/lib/cesium.js +1 -1
- package/package.json +3 -4
- package/plugins/{simple-graph → @vcmap/simple-graph}/README.md +1 -1
- package/plugins/{simple-graph → @vcmap/simple-graph}/SimpleGraphComponent.vue +0 -0
- package/plugins/{simple-graph → @vcmap/simple-graph}/index.js +0 -0
- package/plugins/{simple-graph → @vcmap/simple-graph}/package.json +0 -0
- package/plugins/{simple-graph → @vcmap/simple-graph}/simpleGraphView.js +0 -0
- package/plugins/@vcmap-show-case/README.md +20 -0
- package/plugins/{buttonExamples/ButtonExamples.vue → @vcmap-show-case/buttons-example/ButtonsExample.vue} +19 -1
- package/plugins/@vcmap-show-case/buttons-example/README.md +4 -0
- package/plugins/{buttonExamples → @vcmap-show-case/buttons-example}/index.js +16 -8
- package/plugins/@vcmap-show-case/buttons-example/package.json +5 -0
- package/plugins/{categoryTest → @vcmap-show-case/category-tester}/Categories.vue +7 -6
- package/plugins/{categoryTest → @vcmap-show-case/category-tester}/Category.vue +4 -3
- package/plugins/@vcmap-show-case/category-tester/README.md +3 -0
- package/plugins/{categoryTest → @vcmap-show-case/category-tester}/index.js +12 -4
- package/plugins/@vcmap-show-case/category-tester/package.json +5 -0
- package/plugins/@vcmap-show-case/config-editor/README.md +3 -0
- package/plugins/{test → @vcmap-show-case/config-editor}/editor.vue +0 -0
- package/plugins/@vcmap-show-case/config-editor/index.js +47 -0
- package/plugins/@vcmap-show-case/config-editor/package.json +5 -0
- package/plugins/@vcmap-show-case/context-menu-tester/README.md +3 -0
- package/plugins/@vcmap-show-case/context-menu-tester/index.js +33 -0
- package/plugins/@vcmap-show-case/context-menu-tester/package.json +5 -0
- package/plugins/{@vcmap/pluginExample/pluginExampleComponent.vue → @vcmap-show-case/form-inputs-example/FormInputsExample.vue} +14 -13
- package/plugins/@vcmap-show-case/form-inputs-example/README.md +4 -0
- package/plugins/@vcmap-show-case/form-inputs-example/config.json +5 -0
- package/plugins/{@vcmap/pluginExample → @vcmap-show-case/form-inputs-example}/exampleActions.js +1 -1
- package/plugins/{@vcmap/pluginExample → @vcmap-show-case/form-inputs-example}/index.js +23 -22
- package/plugins/@vcmap-show-case/form-inputs-example/package.json +5 -0
- package/plugins/{@vcmap/pluginExample → @vcmap-show-case/form-inputs-example}/validation.js +0 -0
- package/plugins/@vcmap-show-case/icons-example/README.md +5 -0
- package/plugins/@vcmap-show-case/icons-example/allIconsComponent.vue +51 -0
- package/plugins/@vcmap-show-case/icons-example/index.js +44 -0
- package/plugins/@vcmap-show-case/icons-example/package.json +5 -0
- package/plugins/{test/testList.vue → @vcmap-show-case/list-example/ListExample.vue} +1 -1
- package/plugins/@vcmap-show-case/list-example/README.md +3 -0
- package/plugins/@vcmap-show-case/list-example/index.js +44 -0
- package/plugins/@vcmap-show-case/list-example/package.json +5 -0
- package/plugins/@vcmap-show-case/notifier-tester/README.md +3 -0
- package/plugins/{notifier → @vcmap-show-case/notifier-tester}/index.js +11 -6
- package/plugins/{notifier → @vcmap-show-case/notifier-tester}/notifierTester.vue +0 -0
- package/plugins/@vcmap-show-case/notifier-tester/package.json +5 -0
- package/plugins/@vcmap-show-case/textfields-example/README.md +3 -0
- package/plugins/{example/mySuperComponent.vue → @vcmap-show-case/textfields-example/TextfieldsExample.vue} +1 -7
- package/plugins/{example → @vcmap-show-case/textfields-example}/index.js +58 -62
- package/plugins/@vcmap-show-case/textfields-example/package.json +5 -0
- package/plugins/@vcmap-show-case/window-tester/README.md +3 -0
- package/plugins/{test/windowManagerExample.vue → @vcmap-show-case/window-tester/WindowExample.vue} +36 -20
- package/plugins/{test → @vcmap-show-case/window-tester}/emptyComponent.vue +8 -3
- package/plugins/@vcmap-show-case/window-tester/index.js +62 -0
- package/plugins/{test → @vcmap-show-case/window-tester}/myCustomHeader.vue +0 -0
- package/plugins/@vcmap-show-case/window-tester/package.json +5 -0
- package/plugins/@vcmap-show-case/window-tester/toolbox-data.js +211 -0
- package/plugins/{test/vcsContent.vue → @vcmap-show-case/window-tester/windowExampleContent.vue} +1 -5
- package/plugins/@vcmap-show-case/wizard-example/README.md +3 -0
- package/plugins/{wizardExample → @vcmap-show-case/wizard-example}/index.js +12 -6
- package/plugins/@vcmap-show-case/wizard-example/package.json +5 -0
- package/plugins/@vcmap-show-case/wizard-example/wizardExample.vue +95 -0
- package/plugins/package.json +2 -1
- package/src/actions/actionHelper.js +4 -4
- package/src/actions/stateRefAction.js +0 -10
- package/src/application/VcsApp.vue +42 -23
- package/src/application/VcsMap.vue +9 -0
- package/src/application/VcsNavbar.vue +1 -1
- package/src/components/buttons/VcsActionButtonList.vue +1 -0
- package/src/components/buttons/VcsButton.vue +14 -3
- package/src/components/form-inputs-controls/VcsCheckbox.vue +3 -1
- package/src/components/form-inputs-controls/VcsWizard.vue +17 -20
- package/src/components/form-inputs-controls/VcsWizardStep.vue +160 -0
- package/src/{icons → components/icons}/+all.js +0 -0
- package/src/{icons → components/icons}/2DAreaIcon.vue +0 -0
- package/src/{icons → components/icons}/2DDistanceIcon.vue +0 -0
- package/src/{icons → components/icons}/3DAreaIcon.vue +0 -0
- package/src/{icons → components/icons}/3DDistanceIcon.vue +0 -0
- package/src/{icons → components/icons}/3DHeightIcon.vue +0 -0
- package/src/{icons → components/icons}/AngleIcon.vue +0 -0
- package/src/{icons → components/icons}/AssociationsIcon.vue +0 -0
- package/src/{icons → components/icons}/AxisIcon.vue +0 -0
- package/src/{icons → components/icons}/BoundingBoxIcon.vue +0 -0
- package/src/{icons → components/icons}/CheckboxCheckedIcon.vue +0 -0
- package/src/{icons → components/icons}/CheckboxIcon.vue +0 -0
- package/src/{icons → components/icons}/CheckboxIndeterminateIcon.vue +0 -0
- package/src/{icons → components/icons}/CircleIcon.vue +0 -0
- package/src/{icons → components/icons}/ClippingHorizontalIcon.vue +0 -0
- package/src/{icons → components/icons}/ClippingIcon.vue +0 -0
- package/src/{icons → components/icons}/ClippingVerticalIcon.vue +0 -0
- package/src/{icons → components/icons}/ColorPickerIcon.vue +0 -0
- package/src/{icons → components/icons}/ColorSwatchIcon.vue +0 -0
- package/src/{icons → components/icons}/CommentIcon.vue +0 -0
- package/src/{icons → components/icons}/CompassIcon.vue +0 -0
- package/src/{icons → components/icons}/ComponentsIcon.vue +0 -0
- package/src/{icons → components/icons}/ConeIcon.vue +0 -0
- package/src/{icons → components/icons}/DimensionsHouseIcon.vue +0 -0
- package/src/{icons → components/icons}/EditIcon.vue +0 -0
- package/src/{icons → components/icons}/ElevationProfileIcon.vue +0 -0
- package/src/{icons → components/icons}/ExportAreaIcon.vue +0 -0
- package/src/{icons → components/icons}/ExportFlightIcon.vue +0 -0
- package/src/{icons → components/icons}/ExportIcon.vue +0 -0
- package/src/{icons → components/icons}/ExternalLinkIcon.vue +0 -0
- package/src/{icons → components/icons}/EyeIcon.vue +0 -0
- package/src/{icons → components/icons}/FastForwardIcon.vue +0 -0
- package/src/{icons → components/icons}/FilterIcon.vue +0 -0
- package/src/{icons → components/icons}/GlobalTerrainIcon.vue +0 -0
- package/src/{icons → components/icons}/GlobeNatureIcon.vue +0 -0
- package/src/{icons → components/icons}/GroundIcon.vue +0 -0
- package/src/{icons → components/icons}/HealthCareIndustriesIcon.vue +0 -0
- package/src/{icons → components/icons}/HelpIcon.vue +0 -0
- package/src/{icons → components/icons}/HideIcon.vue +0 -0
- package/src/{icons → components/icons}/HomePointIcon.vue +0 -0
- package/src/{icons → components/icons}/HospitalsIcon.vue +0 -0
- package/src/{icons → components/icons}/HouseIcon.vue +0 -0
- package/src/{icons → components/icons}/ImportIcon.vue +0 -0
- package/src/{icons → components/icons}/InfoIcon.vue +0 -0
- package/src/{icons → components/icons}/KebabIcon.vue +0 -0
- package/src/{icons → components/icons}/LabelIcon.vue +0 -0
- package/src/{icons → components/icons}/LayersIcon.vue +0 -0
- package/src/{icons → components/icons}/LegendIcon.vue +0 -0
- package/src/{icons → components/icons}/LineIcon.vue +0 -0
- package/src/{icons → components/icons}/LinkIcon.vue +0 -0
- package/src/{icons → components/icons}/LogoutIcon.vue +0 -0
- package/src/{icons → components/icons}/MapIcon.vue +0 -0
- package/src/{icons → components/icons}/MenuIcon.vue +0 -0
- package/src/{icons → components/icons}/MinusIcon.vue +0 -0
- package/src/{icons → components/icons}/ObjectAttributeIcon.vue +0 -0
- package/src/{icons → components/icons}/ObjectSelectIcon.vue +0 -0
- package/src/{icons → components/icons}/ObliqueViewIcon.vue +0 -0
- package/src/{icons → components/icons}/PdfIcon.vue +0 -0
- package/src/{icons → components/icons}/PedestrianIcon.vue +0 -0
- package/src/{icons → components/icons}/PenIcon.vue +0 -0
- package/src/{icons → components/icons}/PlayCircleIcon.vue +0 -0
- package/src/{icons → components/icons}/PlusIcon.vue +0 -0
- package/src/{icons → components/icons}/PoiIcon.vue +0 -0
- package/src/{icons → components/icons}/PointSelectIcon.vue +0 -0
- package/src/{icons → components/icons}/PolygonIcon.vue +0 -0
- package/src/{icons → components/icons}/PresentationModeIcon.vue +0 -0
- package/src/{icons → components/icons}/ProgressIcon.vue +0 -0
- package/src/{icons → components/icons}/QueryIcon.vue +0 -0
- package/src/{icons → components/icons}/RectangleIcon.vue +0 -0
- package/src/{icons → components/icons}/ReturnIcon.vue +0 -0
- package/src/{icons → components/icons}/RewindIcon.vue +0 -0
- package/src/{icons → components/icons}/RotateLeftIcon.vue +0 -0
- package/src/{icons → components/icons}/RotateRightIcon.vue +0 -0
- package/src/{icons → components/icons}/ScreenshotIcon.vue +0 -0
- package/src/{icons → components/icons}/SearchIcon.vue +0 -0
- package/src/{icons → components/icons}/ShadowIcon.vue +0 -0
- package/src/{icons → components/icons}/ShapesIcon.vue +0 -0
- package/src/{icons → components/icons}/ShareIcon.vue +0 -0
- package/src/{icons → components/icons}/SimpleCircleFilledIcon.vue +0 -0
- package/src/{icons → components/icons}/SimpleCircleHalfFilledIcon.vue +0 -0
- package/src/{icons → components/icons}/SimpleCircleOutlinedIcon.vue +0 -0
- package/src/{icons → components/icons}/SkipNextIcon.vue +0 -0
- package/src/{icons → components/icons}/SkipPreviousIcon.vue +0 -0
- package/src/{icons → components/icons}/SplitViewIcon.vue +0 -0
- package/src/{icons → components/icons}/TerrainBoxIcon.vue +0 -0
- package/src/{icons → components/icons}/TextStyleIcon.vue +0 -0
- package/src/{icons → components/icons}/ThreeDimensionsIcon.vue +0 -0
- package/src/{icons → components/icons}/ToolsIcon.vue +0 -0
- package/src/{icons → components/icons}/TouchIcon.vue +0 -0
- package/src/{icons → components/icons}/TrashCanIcon.vue +0 -0
- package/src/{icons → components/icons}/TriangleIcon.vue +0 -0
- package/src/{icons → components/icons}/TwoDimensionsIcon.vue +0 -0
- package/src/{icons → components/icons}/UploadIcon.vue +0 -0
- package/src/{icons → components/icons}/UserProfileIcon.vue +0 -0
- package/src/{icons → components/icons}/UserShareIcon.vue +0 -0
- package/src/{icons → components/icons}/VideoRecorderIcon.vue +0 -0
- package/src/{icons → components/icons}/ViewpointFlightIcon.vue +0 -0
- package/src/{icons → components/icons}/ViewpointIcon.vue +0 -0
- package/src/{icons → components/icons}/Viewshed360Icon.vue +0 -0
- package/src/{icons → components/icons}/ViewshedConeIcon.vue +0 -0
- package/src/{icons → components/icons}/ViewshedIcon.vue +0 -0
- package/src/{icons → components/icons}/WalkingIcon.vue +0 -0
- package/src/{icons → components/icons}/WallIcon.vue +0 -0
- package/src/{icons → components/icons}/WandIcon.vue +0 -0
- package/src/components/lists/VcsActionList.vue +2 -0
- package/src/components/lists/VcsList.vue +21 -12
- package/src/components/lists/VcsTreeviewLeaf.vue +14 -2
- package/src/components/notification/VcsTooltip.vue +1 -1
- package/src/contentTree/layerContentTreeItem.js +2 -2
- package/src/featureInfo/BalloonComponent.vue +2 -2
- package/src/featureInfo/abstractFeatureInfoView.js +1 -1
- package/src/featureInfo/addressBalloonFeatureInfoView.js +1 -1
- package/src/featureInfo/balloonFeatureInfoView.js +1 -1
- package/src/featureInfo/balloonHelper.js +6 -6
- package/src/featureInfo/featureInfo.js +2 -2
- package/src/i18n/de.js +8 -8
- package/src/i18n/en.js +6 -6
- package/src/legend/legendHelper.js +8 -8
- package/src/legend/vcsLegend.vue +33 -5
- package/src/manager/toolbox/ToolboxManager.vue +1 -0
- package/src/manager/window/WindowComponent.vue +42 -4
- package/src/manager/window/WindowComponentHeader.vue +1 -1
- package/src/manager/window/windowHelper.js +7 -11
- package/src/manager/window/windowManager.js +15 -11
- package/src/navigation/mapNavCompass.vue +13 -7
- package/src/navigation/mapNavigation.vue +66 -4
- package/src/navigation/orientationToolsButton.vue +1 -1
- package/src/navigation/overviewMap.js +26 -10
- package/src/navigation/vcsCompass.vue +4 -73
- package/src/setup.js +1 -1
- package/src/vuePlugins/vuetify.js +1 -1
- package/dist/assets/cesium/Workers/ArcType-c9b2b290.js +0 -25
- package/dist/assets/cesium/Workers/AttributeCompression-7b0f288d.js +0 -25
- package/dist/assets/cesium/Workers/AxisAlignedBoundingBox-d0c22774.js +0 -25
- package/dist/assets/cesium/Workers/BoundingRectangle-201b1a81.js +0 -25
- package/dist/assets/cesium/Workers/BoxGeometry-4985457c.js +0 -25
- package/dist/assets/cesium/Workers/Color-cc8c18b3.js +0 -25
- package/dist/assets/cesium/Workers/ComponentDatatype-0200bf8c.js +0 -25
- package/dist/assets/cesium/Workers/CoplanarPolygonGeometryLibrary-4345acdf.js +0 -25
- package/dist/assets/cesium/Workers/CorridorGeometryLibrary-850a6c35.js +0 -25
- package/dist/assets/cesium/Workers/CylinderGeometry-57a1051a.js +0 -25
- package/dist/assets/cesium/Workers/CylinderGeometryLibrary-62ce5a1f.js +0 -25
- package/dist/assets/cesium/Workers/EllipseGeometry-8627398f.js +0 -25
- package/dist/assets/cesium/Workers/EllipseGeometryLibrary-e5919563.js +0 -25
- package/dist/assets/cesium/Workers/EllipseOutlineGeometry-96fd4ae1.js +0 -25
- package/dist/assets/cesium/Workers/EllipsoidGeodesic-8bfefbff.js +0 -25
- package/dist/assets/cesium/Workers/EllipsoidGeometry-377329b9.js +0 -25
- package/dist/assets/cesium/Workers/EllipsoidOutlineGeometry-e6e16e49.js +0 -25
- package/dist/assets/cesium/Workers/EllipsoidRhumbLine-03528f73.js +0 -25
- package/dist/assets/cesium/Workers/EllipsoidTangentPlane-c080fd1b.js +0 -25
- package/dist/assets/cesium/Workers/EncodedCartesian3-ea0e408f.js +0 -25
- package/dist/assets/cesium/Workers/FrustumGeometry-a8b5d817.js +0 -25
- package/dist/assets/cesium/Workers/GeometryAttribute-8458a8fd.js +0 -25
- package/dist/assets/cesium/Workers/GeometryAttributes-ac0f8485.js +0 -25
- package/dist/assets/cesium/Workers/GeometryInstance-ee3aa3ba.js +0 -25
- package/dist/assets/cesium/Workers/GeometryOffsetAttribute-08ae0c50.js +0 -25
- package/dist/assets/cesium/Workers/GeometryPipeline-33ca229c.js +0 -25
- package/dist/assets/cesium/Workers/IndexDatatype-e713bfd2.js +0 -25
- package/dist/assets/cesium/Workers/IntersectionTests-eb4db8e0.js +0 -25
- package/dist/assets/cesium/Workers/Matrix2-eefef8eb.js +0 -25
- package/dist/assets/cesium/Workers/OrientedBoundingBox-5193f9a2.js +0 -25
- package/dist/assets/cesium/Workers/Plane-b0299683.js +0 -25
- package/dist/assets/cesium/Workers/PolygonGeometryLibrary-b61295f3.js +0 -25
- package/dist/assets/cesium/Workers/PolygonPipeline-eb527514.js +0 -25
- package/dist/assets/cesium/Workers/PolylinePipeline-0f23dd84.js +0 -25
- package/dist/assets/cesium/Workers/PolylineVolumeGeometryLibrary-2d903430.js +0 -25
- package/dist/assets/cesium/Workers/PrimitivePipeline-e2640413.js +0 -25
- package/dist/assets/cesium/Workers/RectangleGeometryLibrary-ae8bf8a5.js +0 -25
- package/dist/assets/cesium/Workers/RuntimeError-5baf5c66.js +0 -25
- package/dist/assets/cesium/Workers/TerrainEncoding-bc10ab54.js +0 -25
- package/dist/assets/cesium/Workers/Transforms-d2e5867e.js +0 -63
- package/dist/assets/cesium/Workers/VertexFormat-5ec0d9ff.js +0 -25
- package/dist/assets/cesium/Workers/WallGeometryLibrary-1a33e416.js +0 -25
- package/dist/assets/cesium/Workers/WebGLConstants-5b50ced1.js +0 -25
- package/dist/assets/cesium/Workers/WebMercatorProjection-cd2f30c2.js +0 -25
- package/dist/assets/cesium/Workers/_commonjsHelpers-bc29abbc.js +0 -25
- package/dist/assets/cesium/Workers/arrayRemoveDuplicates-f13aceb1.js +0 -25
- package/dist/assets/cesium/Workers/combine-7533016d.js +0 -25
- package/dist/assets/cesium/Workers/defaultValue-0c475b81.js +0 -25
- package/dist/assets/cesium/Workers/package.json +0 -1
- package/dist/assets/ui.dffe32.css +0 -1
- package/plugins/@vcmap/pluginExample/config.json +0 -6
- package/plugins/@vcmap/pluginExample/package.json +0 -7
- package/plugins/categoryTest/ItemEditor.vue +0 -13
- package/plugins/test/allIconsComponent.vue +0 -50
- package/plugins/test/index.js +0 -207
- package/plugins/test/toolbox-data.js +0 -154
- package/plugins/wizardExample/wizardExample.vue +0 -77
- package/src/components/form-inputs-controls/VcsColorPicker.vue +0 -85
@@ -0,0 +1,520 @@
|
|
1
|
+
define(['exports', './Matrix3-315394f6', './Check-666ab1a0', './defaultValue-0a909f67', './Math-2dbd6b93'], (function (exports, Matrix3, Check, defaultValue, Math$1) { 'use strict';
|
2
|
+
|
3
|
+
function setConstants(ellipsoidGeodesic) {
|
4
|
+
const uSquared = ellipsoidGeodesic._uSquared;
|
5
|
+
const a = ellipsoidGeodesic._ellipsoid.maximumRadius;
|
6
|
+
const b = ellipsoidGeodesic._ellipsoid.minimumRadius;
|
7
|
+
const f = (a - b) / a;
|
8
|
+
|
9
|
+
const cosineHeading = Math.cos(ellipsoidGeodesic._startHeading);
|
10
|
+
const sineHeading = Math.sin(ellipsoidGeodesic._startHeading);
|
11
|
+
|
12
|
+
const tanU = (1 - f) * Math.tan(ellipsoidGeodesic._start.latitude);
|
13
|
+
|
14
|
+
const cosineU = 1.0 / Math.sqrt(1.0 + tanU * tanU);
|
15
|
+
const sineU = cosineU * tanU;
|
16
|
+
|
17
|
+
const sigma = Math.atan2(tanU, cosineHeading);
|
18
|
+
|
19
|
+
const sineAlpha = cosineU * sineHeading;
|
20
|
+
const sineSquaredAlpha = sineAlpha * sineAlpha;
|
21
|
+
|
22
|
+
const cosineSquaredAlpha = 1.0 - sineSquaredAlpha;
|
23
|
+
const cosineAlpha = Math.sqrt(cosineSquaredAlpha);
|
24
|
+
|
25
|
+
const u2Over4 = uSquared / 4.0;
|
26
|
+
const u4Over16 = u2Over4 * u2Over4;
|
27
|
+
const u6Over64 = u4Over16 * u2Over4;
|
28
|
+
const u8Over256 = u4Over16 * u4Over16;
|
29
|
+
|
30
|
+
const a0 =
|
31
|
+
1.0 +
|
32
|
+
u2Over4 -
|
33
|
+
(3.0 * u4Over16) / 4.0 +
|
34
|
+
(5.0 * u6Over64) / 4.0 -
|
35
|
+
(175.0 * u8Over256) / 64.0;
|
36
|
+
const a1 = 1.0 - u2Over4 + (15.0 * u4Over16) / 8.0 - (35.0 * u6Over64) / 8.0;
|
37
|
+
const a2 = 1.0 - 3.0 * u2Over4 + (35.0 * u4Over16) / 4.0;
|
38
|
+
const a3 = 1.0 - 5.0 * u2Over4;
|
39
|
+
|
40
|
+
const distanceRatio =
|
41
|
+
a0 * sigma -
|
42
|
+
(a1 * Math.sin(2.0 * sigma) * u2Over4) / 2.0 -
|
43
|
+
(a2 * Math.sin(4.0 * sigma) * u4Over16) / 16.0 -
|
44
|
+
(a3 * Math.sin(6.0 * sigma) * u6Over64) / 48.0 -
|
45
|
+
(Math.sin(8.0 * sigma) * 5.0 * u8Over256) / 512;
|
46
|
+
|
47
|
+
const constants = ellipsoidGeodesic._constants;
|
48
|
+
|
49
|
+
constants.a = a;
|
50
|
+
constants.b = b;
|
51
|
+
constants.f = f;
|
52
|
+
constants.cosineHeading = cosineHeading;
|
53
|
+
constants.sineHeading = sineHeading;
|
54
|
+
constants.tanU = tanU;
|
55
|
+
constants.cosineU = cosineU;
|
56
|
+
constants.sineU = sineU;
|
57
|
+
constants.sigma = sigma;
|
58
|
+
constants.sineAlpha = sineAlpha;
|
59
|
+
constants.sineSquaredAlpha = sineSquaredAlpha;
|
60
|
+
constants.cosineSquaredAlpha = cosineSquaredAlpha;
|
61
|
+
constants.cosineAlpha = cosineAlpha;
|
62
|
+
constants.u2Over4 = u2Over4;
|
63
|
+
constants.u4Over16 = u4Over16;
|
64
|
+
constants.u6Over64 = u6Over64;
|
65
|
+
constants.u8Over256 = u8Over256;
|
66
|
+
constants.a0 = a0;
|
67
|
+
constants.a1 = a1;
|
68
|
+
constants.a2 = a2;
|
69
|
+
constants.a3 = a3;
|
70
|
+
constants.distanceRatio = distanceRatio;
|
71
|
+
}
|
72
|
+
|
73
|
+
function computeC(f, cosineSquaredAlpha) {
|
74
|
+
return (
|
75
|
+
(f * cosineSquaredAlpha * (4.0 + f * (4.0 - 3.0 * cosineSquaredAlpha))) /
|
76
|
+
16.0
|
77
|
+
);
|
78
|
+
}
|
79
|
+
|
80
|
+
function computeDeltaLambda(
|
81
|
+
f,
|
82
|
+
sineAlpha,
|
83
|
+
cosineSquaredAlpha,
|
84
|
+
sigma,
|
85
|
+
sineSigma,
|
86
|
+
cosineSigma,
|
87
|
+
cosineTwiceSigmaMidpoint
|
88
|
+
) {
|
89
|
+
const C = computeC(f, cosineSquaredAlpha);
|
90
|
+
|
91
|
+
return (
|
92
|
+
(1.0 - C) *
|
93
|
+
f *
|
94
|
+
sineAlpha *
|
95
|
+
(sigma +
|
96
|
+
C *
|
97
|
+
sineSigma *
|
98
|
+
(cosineTwiceSigmaMidpoint +
|
99
|
+
C *
|
100
|
+
cosineSigma *
|
101
|
+
(2.0 * cosineTwiceSigmaMidpoint * cosineTwiceSigmaMidpoint - 1.0)))
|
102
|
+
);
|
103
|
+
}
|
104
|
+
|
105
|
+
function vincentyInverseFormula(
|
106
|
+
ellipsoidGeodesic,
|
107
|
+
major,
|
108
|
+
minor,
|
109
|
+
firstLongitude,
|
110
|
+
firstLatitude,
|
111
|
+
secondLongitude,
|
112
|
+
secondLatitude
|
113
|
+
) {
|
114
|
+
const eff = (major - minor) / major;
|
115
|
+
const l = secondLongitude - firstLongitude;
|
116
|
+
|
117
|
+
const u1 = Math.atan((1 - eff) * Math.tan(firstLatitude));
|
118
|
+
const u2 = Math.atan((1 - eff) * Math.tan(secondLatitude));
|
119
|
+
|
120
|
+
const cosineU1 = Math.cos(u1);
|
121
|
+
const sineU1 = Math.sin(u1);
|
122
|
+
const cosineU2 = Math.cos(u2);
|
123
|
+
const sineU2 = Math.sin(u2);
|
124
|
+
|
125
|
+
const cc = cosineU1 * cosineU2;
|
126
|
+
const cs = cosineU1 * sineU2;
|
127
|
+
const ss = sineU1 * sineU2;
|
128
|
+
const sc = sineU1 * cosineU2;
|
129
|
+
|
130
|
+
let lambda = l;
|
131
|
+
let lambdaDot = Math$1.CesiumMath.TWO_PI;
|
132
|
+
|
133
|
+
let cosineLambda = Math.cos(lambda);
|
134
|
+
let sineLambda = Math.sin(lambda);
|
135
|
+
|
136
|
+
let sigma;
|
137
|
+
let cosineSigma;
|
138
|
+
let sineSigma;
|
139
|
+
let cosineSquaredAlpha;
|
140
|
+
let cosineTwiceSigmaMidpoint;
|
141
|
+
|
142
|
+
do {
|
143
|
+
cosineLambda = Math.cos(lambda);
|
144
|
+
sineLambda = Math.sin(lambda);
|
145
|
+
|
146
|
+
const temp = cs - sc * cosineLambda;
|
147
|
+
sineSigma = Math.sqrt(
|
148
|
+
cosineU2 * cosineU2 * sineLambda * sineLambda + temp * temp
|
149
|
+
);
|
150
|
+
cosineSigma = ss + cc * cosineLambda;
|
151
|
+
|
152
|
+
sigma = Math.atan2(sineSigma, cosineSigma);
|
153
|
+
|
154
|
+
let sineAlpha;
|
155
|
+
|
156
|
+
if (sineSigma === 0.0) {
|
157
|
+
sineAlpha = 0.0;
|
158
|
+
cosineSquaredAlpha = 1.0;
|
159
|
+
} else {
|
160
|
+
sineAlpha = (cc * sineLambda) / sineSigma;
|
161
|
+
cosineSquaredAlpha = 1.0 - sineAlpha * sineAlpha;
|
162
|
+
}
|
163
|
+
|
164
|
+
lambdaDot = lambda;
|
165
|
+
|
166
|
+
cosineTwiceSigmaMidpoint = cosineSigma - (2.0 * ss) / cosineSquaredAlpha;
|
167
|
+
|
168
|
+
if (!isFinite(cosineTwiceSigmaMidpoint)) {
|
169
|
+
cosineTwiceSigmaMidpoint = 0.0;
|
170
|
+
}
|
171
|
+
|
172
|
+
lambda =
|
173
|
+
l +
|
174
|
+
computeDeltaLambda(
|
175
|
+
eff,
|
176
|
+
sineAlpha,
|
177
|
+
cosineSquaredAlpha,
|
178
|
+
sigma,
|
179
|
+
sineSigma,
|
180
|
+
cosineSigma,
|
181
|
+
cosineTwiceSigmaMidpoint
|
182
|
+
);
|
183
|
+
} while (Math.abs(lambda - lambdaDot) > Math$1.CesiumMath.EPSILON12);
|
184
|
+
|
185
|
+
const uSquared =
|
186
|
+
(cosineSquaredAlpha * (major * major - minor * minor)) / (minor * minor);
|
187
|
+
const A =
|
188
|
+
1.0 +
|
189
|
+
(uSquared *
|
190
|
+
(4096.0 + uSquared * (uSquared * (320.0 - 175.0 * uSquared) - 768.0))) /
|
191
|
+
16384.0;
|
192
|
+
const B =
|
193
|
+
(uSquared *
|
194
|
+
(256.0 + uSquared * (uSquared * (74.0 - 47.0 * uSquared) - 128.0))) /
|
195
|
+
1024.0;
|
196
|
+
|
197
|
+
const cosineSquaredTwiceSigmaMidpoint =
|
198
|
+
cosineTwiceSigmaMidpoint * cosineTwiceSigmaMidpoint;
|
199
|
+
const deltaSigma =
|
200
|
+
B *
|
201
|
+
sineSigma *
|
202
|
+
(cosineTwiceSigmaMidpoint +
|
203
|
+
(B *
|
204
|
+
(cosineSigma * (2.0 * cosineSquaredTwiceSigmaMidpoint - 1.0) -
|
205
|
+
(B *
|
206
|
+
cosineTwiceSigmaMidpoint *
|
207
|
+
(4.0 * sineSigma * sineSigma - 3.0) *
|
208
|
+
(4.0 * cosineSquaredTwiceSigmaMidpoint - 3.0)) /
|
209
|
+
6.0)) /
|
210
|
+
4.0);
|
211
|
+
|
212
|
+
const distance = minor * A * (sigma - deltaSigma);
|
213
|
+
|
214
|
+
const startHeading = Math.atan2(
|
215
|
+
cosineU2 * sineLambda,
|
216
|
+
cs - sc * cosineLambda
|
217
|
+
);
|
218
|
+
const endHeading = Math.atan2(cosineU1 * sineLambda, cs * cosineLambda - sc);
|
219
|
+
|
220
|
+
ellipsoidGeodesic._distance = distance;
|
221
|
+
ellipsoidGeodesic._startHeading = startHeading;
|
222
|
+
ellipsoidGeodesic._endHeading = endHeading;
|
223
|
+
ellipsoidGeodesic._uSquared = uSquared;
|
224
|
+
}
|
225
|
+
|
226
|
+
const scratchCart1 = new Matrix3.Cartesian3();
|
227
|
+
const scratchCart2 = new Matrix3.Cartesian3();
|
228
|
+
function computeProperties(ellipsoidGeodesic, start, end, ellipsoid) {
|
229
|
+
const firstCartesian = Matrix3.Cartesian3.normalize(
|
230
|
+
ellipsoid.cartographicToCartesian(start, scratchCart2),
|
231
|
+
scratchCart1
|
232
|
+
);
|
233
|
+
const lastCartesian = Matrix3.Cartesian3.normalize(
|
234
|
+
ellipsoid.cartographicToCartesian(end, scratchCart2),
|
235
|
+
scratchCart2
|
236
|
+
);
|
237
|
+
|
238
|
+
//>>includeStart('debug', pragmas.debug);
|
239
|
+
Check.Check.typeOf.number.greaterThanOrEquals(
|
240
|
+
"value",
|
241
|
+
Math.abs(
|
242
|
+
Math.abs(Matrix3.Cartesian3.angleBetween(firstCartesian, lastCartesian)) - Math.PI
|
243
|
+
),
|
244
|
+
0.0125
|
245
|
+
);
|
246
|
+
//>>includeEnd('debug');
|
247
|
+
|
248
|
+
vincentyInverseFormula(
|
249
|
+
ellipsoidGeodesic,
|
250
|
+
ellipsoid.maximumRadius,
|
251
|
+
ellipsoid.minimumRadius,
|
252
|
+
start.longitude,
|
253
|
+
start.latitude,
|
254
|
+
end.longitude,
|
255
|
+
end.latitude
|
256
|
+
);
|
257
|
+
|
258
|
+
ellipsoidGeodesic._start = Matrix3.Cartographic.clone(
|
259
|
+
start,
|
260
|
+
ellipsoidGeodesic._start
|
261
|
+
);
|
262
|
+
ellipsoidGeodesic._end = Matrix3.Cartographic.clone(end, ellipsoidGeodesic._end);
|
263
|
+
ellipsoidGeodesic._start.height = 0;
|
264
|
+
ellipsoidGeodesic._end.height = 0;
|
265
|
+
|
266
|
+
setConstants(ellipsoidGeodesic);
|
267
|
+
}
|
268
|
+
|
269
|
+
/**
|
270
|
+
* Initializes a geodesic on the ellipsoid connecting the two provided planetodetic points.
|
271
|
+
*
|
272
|
+
* @alias EllipsoidGeodesic
|
273
|
+
* @constructor
|
274
|
+
*
|
275
|
+
* @param {Cartographic} [start] The initial planetodetic point on the path.
|
276
|
+
* @param {Cartographic} [end] The final planetodetic point on the path.
|
277
|
+
* @param {Ellipsoid} [ellipsoid=Ellipsoid.WGS84] The ellipsoid on which the geodesic lies.
|
278
|
+
*/
|
279
|
+
function EllipsoidGeodesic(start, end, ellipsoid) {
|
280
|
+
const e = defaultValue.defaultValue(ellipsoid, Matrix3.Ellipsoid.WGS84);
|
281
|
+
this._ellipsoid = e;
|
282
|
+
this._start = new Matrix3.Cartographic();
|
283
|
+
this._end = new Matrix3.Cartographic();
|
284
|
+
|
285
|
+
this._constants = {};
|
286
|
+
this._startHeading = undefined;
|
287
|
+
this._endHeading = undefined;
|
288
|
+
this._distance = undefined;
|
289
|
+
this._uSquared = undefined;
|
290
|
+
|
291
|
+
if (defaultValue.defined(start) && defaultValue.defined(end)) {
|
292
|
+
computeProperties(this, start, end, e);
|
293
|
+
}
|
294
|
+
}
|
295
|
+
|
296
|
+
Object.defineProperties(EllipsoidGeodesic.prototype, {
|
297
|
+
/**
|
298
|
+
* Gets the ellipsoid.
|
299
|
+
* @memberof EllipsoidGeodesic.prototype
|
300
|
+
* @type {Ellipsoid}
|
301
|
+
* @readonly
|
302
|
+
*/
|
303
|
+
ellipsoid: {
|
304
|
+
get: function () {
|
305
|
+
return this._ellipsoid;
|
306
|
+
},
|
307
|
+
},
|
308
|
+
|
309
|
+
/**
|
310
|
+
* Gets the surface distance between the start and end point
|
311
|
+
* @memberof EllipsoidGeodesic.prototype
|
312
|
+
* @type {Number}
|
313
|
+
* @readonly
|
314
|
+
*/
|
315
|
+
surfaceDistance: {
|
316
|
+
get: function () {
|
317
|
+
//>>includeStart('debug', pragmas.debug);
|
318
|
+
Check.Check.defined("distance", this._distance);
|
319
|
+
//>>includeEnd('debug');
|
320
|
+
|
321
|
+
return this._distance;
|
322
|
+
},
|
323
|
+
},
|
324
|
+
|
325
|
+
/**
|
326
|
+
* Gets the initial planetodetic point on the path.
|
327
|
+
* @memberof EllipsoidGeodesic.prototype
|
328
|
+
* @type {Cartographic}
|
329
|
+
* @readonly
|
330
|
+
*/
|
331
|
+
start: {
|
332
|
+
get: function () {
|
333
|
+
return this._start;
|
334
|
+
},
|
335
|
+
},
|
336
|
+
|
337
|
+
/**
|
338
|
+
* Gets the final planetodetic point on the path.
|
339
|
+
* @memberof EllipsoidGeodesic.prototype
|
340
|
+
* @type {Cartographic}
|
341
|
+
* @readonly
|
342
|
+
*/
|
343
|
+
end: {
|
344
|
+
get: function () {
|
345
|
+
return this._end;
|
346
|
+
},
|
347
|
+
},
|
348
|
+
|
349
|
+
/**
|
350
|
+
* Gets the heading at the initial point.
|
351
|
+
* @memberof EllipsoidGeodesic.prototype
|
352
|
+
* @type {Number}
|
353
|
+
* @readonly
|
354
|
+
*/
|
355
|
+
startHeading: {
|
356
|
+
get: function () {
|
357
|
+
//>>includeStart('debug', pragmas.debug);
|
358
|
+
Check.Check.defined("distance", this._distance);
|
359
|
+
//>>includeEnd('debug');
|
360
|
+
|
361
|
+
return this._startHeading;
|
362
|
+
},
|
363
|
+
},
|
364
|
+
|
365
|
+
/**
|
366
|
+
* Gets the heading at the final point.
|
367
|
+
* @memberof EllipsoidGeodesic.prototype
|
368
|
+
* @type {Number}
|
369
|
+
* @readonly
|
370
|
+
*/
|
371
|
+
endHeading: {
|
372
|
+
get: function () {
|
373
|
+
//>>includeStart('debug', pragmas.debug);
|
374
|
+
Check.Check.defined("distance", this._distance);
|
375
|
+
//>>includeEnd('debug');
|
376
|
+
|
377
|
+
return this._endHeading;
|
378
|
+
},
|
379
|
+
},
|
380
|
+
});
|
381
|
+
|
382
|
+
/**
|
383
|
+
* Sets the start and end points of the geodesic
|
384
|
+
*
|
385
|
+
* @param {Cartographic} start The initial planetodetic point on the path.
|
386
|
+
* @param {Cartographic} end The final planetodetic point on the path.
|
387
|
+
*/
|
388
|
+
EllipsoidGeodesic.prototype.setEndPoints = function (start, end) {
|
389
|
+
//>>includeStart('debug', pragmas.debug);
|
390
|
+
Check.Check.defined("start", start);
|
391
|
+
Check.Check.defined("end", end);
|
392
|
+
//>>includeEnd('debug');
|
393
|
+
|
394
|
+
computeProperties(this, start, end, this._ellipsoid);
|
395
|
+
};
|
396
|
+
|
397
|
+
/**
|
398
|
+
* Provides the location of a point at the indicated portion along the geodesic.
|
399
|
+
*
|
400
|
+
* @param {Number} fraction The portion of the distance between the initial and final points.
|
401
|
+
* @param {Cartographic} [result] The object in which to store the result.
|
402
|
+
* @returns {Cartographic} The location of the point along the geodesic.
|
403
|
+
*/
|
404
|
+
EllipsoidGeodesic.prototype.interpolateUsingFraction = function (
|
405
|
+
fraction,
|
406
|
+
result
|
407
|
+
) {
|
408
|
+
return this.interpolateUsingSurfaceDistance(
|
409
|
+
this._distance * fraction,
|
410
|
+
result
|
411
|
+
);
|
412
|
+
};
|
413
|
+
|
414
|
+
/**
|
415
|
+
* Provides the location of a point at the indicated distance along the geodesic.
|
416
|
+
*
|
417
|
+
* @param {Number} distance The distance from the inital point to the point of interest along the geodesic
|
418
|
+
* @param {Cartographic} [result] The object in which to store the result.
|
419
|
+
* @returns {Cartographic} The location of the point along the geodesic.
|
420
|
+
*
|
421
|
+
* @exception {DeveloperError} start and end must be set before calling function interpolateUsingSurfaceDistance
|
422
|
+
*/
|
423
|
+
EllipsoidGeodesic.prototype.interpolateUsingSurfaceDistance = function (
|
424
|
+
distance,
|
425
|
+
result
|
426
|
+
) {
|
427
|
+
//>>includeStart('debug', pragmas.debug);
|
428
|
+
Check.Check.defined("distance", this._distance);
|
429
|
+
//>>includeEnd('debug');
|
430
|
+
|
431
|
+
const constants = this._constants;
|
432
|
+
|
433
|
+
const s = constants.distanceRatio + distance / constants.b;
|
434
|
+
|
435
|
+
const cosine2S = Math.cos(2.0 * s);
|
436
|
+
const cosine4S = Math.cos(4.0 * s);
|
437
|
+
const cosine6S = Math.cos(6.0 * s);
|
438
|
+
const sine2S = Math.sin(2.0 * s);
|
439
|
+
const sine4S = Math.sin(4.0 * s);
|
440
|
+
const sine6S = Math.sin(6.0 * s);
|
441
|
+
const sine8S = Math.sin(8.0 * s);
|
442
|
+
|
443
|
+
const s2 = s * s;
|
444
|
+
const s3 = s * s2;
|
445
|
+
|
446
|
+
const u8Over256 = constants.u8Over256;
|
447
|
+
const u2Over4 = constants.u2Over4;
|
448
|
+
const u6Over64 = constants.u6Over64;
|
449
|
+
const u4Over16 = constants.u4Over16;
|
450
|
+
let sigma =
|
451
|
+
(2.0 * s3 * u8Over256 * cosine2S) / 3.0 +
|
452
|
+
s *
|
453
|
+
(1.0 -
|
454
|
+
u2Over4 +
|
455
|
+
(7.0 * u4Over16) / 4.0 -
|
456
|
+
(15.0 * u6Over64) / 4.0 +
|
457
|
+
(579.0 * u8Over256) / 64.0 -
|
458
|
+
(u4Over16 - (15.0 * u6Over64) / 4.0 + (187.0 * u8Over256) / 16.0) *
|
459
|
+
cosine2S -
|
460
|
+
((5.0 * u6Over64) / 4.0 - (115.0 * u8Over256) / 16.0) * cosine4S -
|
461
|
+
(29.0 * u8Over256 * cosine6S) / 16.0) +
|
462
|
+
(u2Over4 / 2.0 -
|
463
|
+
u4Over16 +
|
464
|
+
(71.0 * u6Over64) / 32.0 -
|
465
|
+
(85.0 * u8Over256) / 16.0) *
|
466
|
+
sine2S +
|
467
|
+
((5.0 * u4Over16) / 16.0 -
|
468
|
+
(5.0 * u6Over64) / 4.0 +
|
469
|
+
(383.0 * u8Over256) / 96.0) *
|
470
|
+
sine4S -
|
471
|
+
s2 *
|
472
|
+
((u6Over64 - (11.0 * u8Over256) / 2.0) * sine2S +
|
473
|
+
(5.0 * u8Over256 * sine4S) / 2.0) +
|
474
|
+
((29.0 * u6Over64) / 96.0 - (29.0 * u8Over256) / 16.0) * sine6S +
|
475
|
+
(539.0 * u8Over256 * sine8S) / 1536.0;
|
476
|
+
|
477
|
+
const theta = Math.asin(Math.sin(sigma) * constants.cosineAlpha);
|
478
|
+
const latitude = Math.atan((constants.a / constants.b) * Math.tan(theta));
|
479
|
+
|
480
|
+
// Redefine in terms of relative argument of latitude.
|
481
|
+
sigma = sigma - constants.sigma;
|
482
|
+
|
483
|
+
const cosineTwiceSigmaMidpoint = Math.cos(2.0 * constants.sigma + sigma);
|
484
|
+
|
485
|
+
const sineSigma = Math.sin(sigma);
|
486
|
+
const cosineSigma = Math.cos(sigma);
|
487
|
+
|
488
|
+
const cc = constants.cosineU * cosineSigma;
|
489
|
+
const ss = constants.sineU * sineSigma;
|
490
|
+
|
491
|
+
const lambda = Math.atan2(
|
492
|
+
sineSigma * constants.sineHeading,
|
493
|
+
cc - ss * constants.cosineHeading
|
494
|
+
);
|
495
|
+
|
496
|
+
const l =
|
497
|
+
lambda -
|
498
|
+
computeDeltaLambda(
|
499
|
+
constants.f,
|
500
|
+
constants.sineAlpha,
|
501
|
+
constants.cosineSquaredAlpha,
|
502
|
+
sigma,
|
503
|
+
sineSigma,
|
504
|
+
cosineSigma,
|
505
|
+
cosineTwiceSigmaMidpoint
|
506
|
+
);
|
507
|
+
|
508
|
+
if (defaultValue.defined(result)) {
|
509
|
+
result.longitude = this._start.longitude + l;
|
510
|
+
result.latitude = latitude;
|
511
|
+
result.height = 0.0;
|
512
|
+
return result;
|
513
|
+
}
|
514
|
+
|
515
|
+
return new Matrix3.Cartographic(this._start.longitude + l, latitude, 0.0);
|
516
|
+
};
|
517
|
+
|
518
|
+
exports.EllipsoidGeodesic = EllipsoidGeodesic;
|
519
|
+
|
520
|
+
}));
|