Skip to content

Commit f06415c

Browse files
committed
Add markers to viewpoints
1 parent 8cb334f commit f06415c

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

Documentation/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -561,6 +561,14 @@ Lines can be used to add markup in 3D. Each line is defined by three dimensional
561561

562562
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.
563563

564+
### Markers (optional)
565+
566+
A marker is a way to pinpoint a location in the 3D model. Each vendor can decide how these markers should be rendered.
567+
568+
**Best practice**
569+
Render the markers based on the topic properties.
570+
Example: Red markers for open topics, and green markers for closed topics
571+
564572
### Bitmap (optional)
565573

566574
A list of bitmaps can be used to add more information, for example, text in the visualization. It has the following elements:

Schemas/visinfo.xsd

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,13 @@
3131
</xs:sequence>
3232
</xs:complexType>
3333
</xs:element>
34+
<xs:element name="Markers" minOccurs="0">
35+
<xs:complexType>
36+
<xs:sequence>
37+
<xs:element name="Marker" type="Marker" minOccurs="0" maxOccurs="unbounded"/>
38+
</xs:sequence>
39+
</xs:complexType>
40+
</xs:element>
3441
<xs:element name="Bitmaps" minOccurs="0">
3542
<xs:complexType>
3643
<xs:sequence>
@@ -217,6 +224,11 @@
217224
<xs:element name="Direction" type="Direction"/>
218225
</xs:sequence>
219226
</xs:complexType>
227+
<xs:complexType name="Marker">
228+
<xs:sequence>
229+
<xs:element name="Location" type="Point"/>
230+
</xs:sequence>
231+
</xs:complexType>
220232
<xs:complexType name="Bitmap">
221233
<xs:sequence>
222234
<xs:element name="Format" type="BitmapFormat"/>

0 commit comments

Comments
 (0)