Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding support for realtime marker arrays #83

Merged
merged 3 commits into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
## [0.171.0] - 2025-01-22

- Add support for realtime marker arrays.

## [0.170.10] - 2024-12-09

- Bump data-sdk version: fix realtime subscriptions for pointclouds.
- Bump data-sdk version: fix realtime subscriptions for pointclouds.

## [0.170.9] - 2024-11-13

- Map offset now works as intended.

## [0.170.8] - 2024-10-16

- bump data-sdk version: Prevent repeated and out of order requests in subscribeToOdometry and subscribeToPath
- bump data-sdk version: Prevent repeated and out of order requests in subscribeToOdometry and subscribeToPath

## [0.170.7] - 2024-10-10

Expand All @@ -29,4 +33,4 @@

## [0.170.3] - 2024-9-18

- bump data-sdk version, fixing path layer flickering issues.
- bump data-sdk version, fixing path layer flickering issues.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ At a very high level there's 3 important things you need to do:

# Where are versions

| Env | Url | Version |
| ----- | ------------------------------------------------------------ | ------- |
| Env | Url | Version |
| ----- | ------------------------------------------------------------ | -------- |
| Prod | https://formantio.github.io/3d-viewer-module/versions/prod/ | 0.170.10 |
| Stage | https://formantio.github.io/3d-viewer-module/versions/stage/ | 0.170.10 |
| Dev | https://formantio.github.io/3d-viewer-module/versions/dist/ | 0.17.10 |
| Dev | https://formantio.github.io/3d-viewer-module/versions/dist/ | 0.171.0 |

# How do I run 3D viewer when i'm developing on it?

Expand Down
10 changes: 5 additions & 5 deletions dist/assets/index-743e72ed.js → dist/assets/index-a691494e.js

Large diffs are not rendered by default.

12 changes: 11 additions & 1 deletion dist/config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,12 @@
"description": "Realtime stream containing point cloud data. If specified, point cloud will always reflect realtime state and will disconnect from the timeline.",
"$formant.visible.when": ["visualizationType", "=", "Point cloud"]
},
"markerArrayRealtimeStream": {
"title": "Realtime stream",
"type": "string",
"description": "Realtime stream containing marker array data. If specified, marker array will always reflect realtime state and will disconnect from the timeline.",
"$formant.visible.when": ["visualizationType", "=", "Marker array"]
},
"telemetryLatestDataPoint": {
"title": "Use historical data?",
"type": "boolean",
Expand Down Expand Up @@ -380,6 +386,8 @@
},
"transformLocalizationStream": {
"title": "Localization stream",
"description": "Telemetry localization stream. You can override odometry with realtime data below.",
"$formant.documentationUrl": "https://docs.formant.io/docs/3d-viewer-module-reference#transforms",
"type": "string",
"$formant.streams.byType": "localization",
"$formant.placeholder": "Select",
Expand All @@ -404,7 +412,9 @@
"$formant.visible.when": ["transformType", "=", "Odometry"]
},
"transformLocalizationRealtimeStream": {
"title": "Localization realtime stream",
"title": "Realtime odometry stream",
"description": "If set, will override odometry topic in telemetry localization stream.",
"$formant.documentationUrl": "https://docs.formant.io/docs/3d-viewer-module-reference#transforms",
"type": "string",
"$formant.visible.when": ["transformType", "=", "Odometry"]
},
Expand Down
2 changes: 1 addition & 1 deletion dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
left: 50px !important;
}
</style>
<script type="module" crossorigin src="./assets/index-743e72ed.js"></script>
<script type="module" crossorigin src="./assets/index-a691494e.js"></script>
</head>
<body>
<div id="root"></div>
Expand Down
Loading