Based on the forest template, I have made a project that inserts a generated image into a map, which shows up as an Extension Object in the Map Maker. I’d like to add a note to it though.
The trees in the forest are type 5, though, and in the Map Maker, it looks like objects (like e.g. the atomic reactor) that have notes on them have type 6.
Is there a way to add notes on the type 5 object created through the API?
I’ve seen the InteractionEnum
in the protobuf sources and I wonder whether this is the same type. What difference does the InteractionEnum make?
message InteractionEnum {
enum ENUM {
NONE = 0;
EMBEDDED_WEBSITE = 1;
POSTER = 2;
VIDEO = 3;
EXTERNAL_CALL = 4;
EXTENSION = 5;
NOTE = 6;
MODAL_EXTENSION = 7;
COMPONENT_MODAL = 8;
SIDE_PANEL_TRIGGER = 9;
}
}