Skip to content

Add markers to viewpoints #387

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
8 changes: 8 additions & 0 deletions Documentation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -561,6 +561,14 @@ Lines can be used to add markup in 3D. Each line is defined by three dimensional

ClippingPlanes can be used to define a subsection of a building model that is related to the topic. Each clipping plane is defined by Location and Direction. The Direction vector points in the _invisible_ direction meaning the half-space that is clipped.

### Markers (optional)

A marker is a way to pinpoint a location in the 3D model. Each vendor can decide how these markers should be rendered.

**Best practice**
Render the markers based on the topic properties.
Example: Red markers for open topics, and green markers for closed topics

### Bitmap (optional)

A list of bitmaps can be used to add more information, for example, text in the visualization. It has the following elements:
Expand Down
12 changes: 12 additions & 0 deletions Schemas/visinfo.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Markers" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="Marker" type="Marker" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Bitmaps" minOccurs="0">
<xs:complexType>
<xs:sequence>
Expand Down Expand Up @@ -217,6 +224,11 @@
<xs:element name="Direction" type="Direction"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Marker">
<xs:sequence>
<xs:element name="Location" type="Point"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Bitmap">
<xs:sequence>
<xs:element name="Format" type="BitmapFormat"/>
Expand Down
Loading