Rerun C++ SDK
Loading...
Searching...
No Matches
map_background.hpp
1// DO NOT EDIT! This file was auto-generated by crates/build/re_types_builder/src/codegen/cpp/mod.rs
2// Based on "crates/store/re_types/definitions/rerun/blueprint/archetypes/map_background.fbs".
3
4#pragma once
5
6#include "../../blueprint/components/map_provider.hpp"
7#include "../../collection.hpp"
8#include "../../component_batch.hpp"
9#include "../../component_column.hpp"
10#include "../../result.hpp"
11
12#include <cstdint>
13#include <optional>
14#include <utility>
15#include <vector>
16
17namespace rerun::blueprint::archetypes {
18 /// **Archetype**: Configuration for the background map of the map view.
19 ///
20 /// ⚠ **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**
21 ///
23 /// Map provider and style to use.
24 ///
25 /// **Note**: Requires a Mapbox API key in the `RERUN_MAPBOX_ACCESS_TOKEN` environment variable.
26 std::optional<ComponentBatch> provider;
27
28 public:
29 /// The name of the archetype as used in `ComponentDescriptor`s.
30 static constexpr const char ArchetypeName[] = "rerun.blueprint.archetypes.MapBackground";
31
32 /// `ComponentDescriptor` for the `provider` field.
34 ArchetypeName, "MapBackground:provider",
36 );
37
38 public:
39 MapBackground() = default;
40 MapBackground(MapBackground&& other) = default;
41 MapBackground(const MapBackground& other) = default;
42 MapBackground& operator=(const MapBackground& other) = default;
43 MapBackground& operator=(MapBackground&& other) = default;
44
45 explicit MapBackground(rerun::blueprint::components::MapProvider _provider)
46 : provider(ComponentBatch::from_loggable(std::move(_provider), Descriptor_provider)
47 .value_or_throw()) {}
48
49 /// Update only some specific fields of a `MapBackground`.
51 return MapBackground();
52 }
53
54 /// Clear all the fields of a `MapBackground`.
56
57 /// Map provider and style to use.
58 ///
59 /// **Note**: Requires a Mapbox API key in the `RERUN_MAPBOX_ACCESS_TOKEN` environment variable.
60 MapBackground with_provider(const rerun::blueprint::components::MapProvider& _provider) && {
61 provider =
62 ComponentBatch::from_loggable(_provider, Descriptor_provider).value_or_throw();
63 return std::move(*this);
64 }
65
66 /// Partitions the component data into multiple sub-batches.
67 ///
68 /// Specifically, this transforms the existing `ComponentBatch` data into `ComponentColumn`s
69 /// instead, via `ComponentBatch::partitioned`.
70 ///
71 /// This makes it possible to use `RecordingStream::send_columns` to send columnar data directly into Rerun.
72 ///
73 /// The specified `lengths` must sum to the total length of the component batch.
75
76 /// Partitions the component data into unit-length sub-batches.
77 ///
78 /// This is semantically similar to calling `columns` with `std::vector<uint32_t>(n, 1)`,
79 /// where `n` is automatically guessed.
81 };
82
83} // namespace rerun::blueprint::archetypes
84
85namespace rerun {
86 /// \private
87 template <typename T>
88 struct AsComponents;
89
90 /// \private
91 template <>
92 struct AsComponents<blueprint::archetypes::MapBackground> {
93 /// Serialize all set component batches.
94 static Result<Collection<ComponentBatch>> as_batches(
96 );
97 };
98} // namespace rerun
Generic collection of elements that are roughly contiguous in memory.
Definition collection.hpp:49
A class for representing either a usable value, or an error.
Definition result.hpp:14
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:23
Arrow-encoded data of a single batch of components together with a component descriptor.
Definition component_batch.hpp:28
static Result< ComponentBatch > from_loggable(const rerun::Collection< T > &components, const ComponentDescriptor &descriptor)
Creates a new component batch from a collection of component instances.
Definition component_batch.hpp:46
A ComponentDescriptor fully describes the semantics of a column of data.
Definition component_descriptor.hpp:16
The Loggable trait is used by all built-in implementation of rerun::AsComponents to serialize a colle...
Definition loggable.hpp:11
Archetype: Configuration for the background map of the map view.
Definition map_background.hpp:22
std::optional< ComponentBatch > provider
Map provider and style to use.
Definition map_background.hpp:26
static MapBackground clear_fields()
Clear all the fields of a MapBackground.
static constexpr auto Descriptor_provider
ComponentDescriptor for the provider field.
Definition map_background.hpp:33
Collection< ComponentColumn > columns(const Collection< uint32_t > &lengths_)
Partitions the component data into multiple sub-batches.
static constexpr const char ArchetypeName[]
The name of the archetype as used in ComponentDescriptors.
Definition map_background.hpp:30
MapBackground with_provider(const rerun::blueprint::components::MapProvider &_provider) &&
Map provider and style to use.
Definition map_background.hpp:60
static MapBackground update_fields()
Update only some specific fields of a MapBackground.
Definition map_background.hpp:50
Collection< ComponentColumn > columns()
Partitions the component data into unit-length sub-batches.