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 "../../indicator_component.hpp"
11#include "../../result.hpp"
12
13#include <cstdint>
14#include <optional>
15#include <utility>
16#include <vector>
17
18namespace rerun::blueprint::archetypes {
19 /// **Archetype**: Configuration for the background map of the map view.
20 ///
21 /// ⚠ **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**
22 ///
24 /// Map provider and style to use.
25 ///
26 /// **Note**: Requires a Mapbox API key in the `RERUN_MAPBOX_ACCESS_TOKEN` environment variable.
27 std::optional<ComponentBatch> provider;
28
29 public:
30 static constexpr const char IndicatorComponentName[] =
31 "rerun.blueprint.components.MapBackgroundIndicator";
32
33 /// Indicator component, used to identify the archetype when converting to a list of components.
35 /// The name of the archetype as used in `ComponentDescriptor`s.
36 static constexpr const char ArchetypeName[] = "rerun.blueprint.archetypes.MapBackground";
37
38 /// `ComponentDescriptor` for the `provider` field.
40 ArchetypeName, "provider",
42 );
43
44 public:
45 MapBackground() = default;
46 MapBackground(MapBackground&& other) = default;
47 MapBackground(const MapBackground& other) = default;
48 MapBackground& operator=(const MapBackground& other) = default;
49 MapBackground& operator=(MapBackground&& other) = default;
50
51 explicit MapBackground(rerun::blueprint::components::MapProvider _provider)
52 : provider(ComponentBatch::from_loggable(std::move(_provider), Descriptor_provider)
53 .value_or_throw()) {}
54
55 /// Update only some specific fields of a `MapBackground`.
57 return MapBackground();
58 }
59
60 /// Clear all the fields of a `MapBackground`.
62
63 /// Map provider and style to use.
64 ///
65 /// **Note**: Requires a Mapbox API key in the `RERUN_MAPBOX_ACCESS_TOKEN` environment variable.
66 MapBackground with_provider(const rerun::blueprint::components::MapProvider& _provider) && {
67 provider =
68 ComponentBatch::from_loggable(_provider, Descriptor_provider).value_or_throw();
69 return std::move(*this);
70 }
71
72 /// Partitions the component data into multiple sub-batches.
73 ///
74 /// Specifically, this transforms the existing `ComponentBatch` data into `ComponentColumn`s
75 /// instead, via `ComponentBatch::partitioned`.
76 ///
77 /// This makes it possible to use `RecordingStream::send_columns` to send columnar data directly into Rerun.
78 ///
79 /// The specified `lengths` must sum to the total length of the component batch.
81
82 /// Partitions the component data into unit-length sub-batches.
83 ///
84 /// This is semantically similar to calling `columns` with `std::vector<uint32_t>(n, 1)`,
85 /// where `n` is automatically guessed.
87 };
88
89} // namespace rerun::blueprint::archetypes
90
91namespace rerun {
92 /// \private
93 template <typename T>
94 struct AsComponents;
95
96 /// \private
97 template <>
98 struct AsComponents<blueprint::archetypes::MapBackground> {
99 /// Serialize all set component batches.
100 static Result<Collection<ComponentBatch>> as_batches(
102 );
103 };
104} // 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=rerun::Loggable< T >::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:14
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:23
std::optional< ComponentBatch > provider
Map provider and style to use.
Definition map_background.hpp:27
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:39
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:36
MapBackground with_provider(const rerun::blueprint::components::MapProvider &_provider) &&
Map provider and style to use.
Definition map_background.hpp:66
static MapBackground update_fields()
Update only some specific fields of a MapBackground.
Definition map_background.hpp:56
Collection< ComponentColumn > columns()
Partitions the component data into unit-length sub-batches.
Indicator component used by archetypes when converting them to component lists.
Definition indicator_component.hpp:32