hart-estate-widget 2.4.12 → 2.5.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -1
- package/build/widget.bundle.js +1 -1
- package/build/widget.module.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -123,10 +123,11 @@ body
|
|
123
123
|
height: 1080,
|
124
124
|
resizable: true, // automatically resize the widget to the size of the container when the window is resized
|
125
125
|
|
126
|
-
//
|
126
|
+
// values
|
127
127
|
rotationMode: 'default', // mode of operation for plan images
|
128
128
|
panoramaFov: 75, // camera field of view angle for panoramic tour
|
129
129
|
enableCameraTransitionBetweenPanoramas: true, // enable / disable camera rotation transition between panoramas (if CameraPoint.Rotation.Yaw is defined in json)
|
130
|
+
primaryCameraPointId: null, // primary camera point id for panorama tour
|
130
131
|
floors: [ // array of floors, contains 360° images and panoramic tour data
|
131
132
|
{
|
132
133
|
original_plan_img: '', // path to the original plan image (required for panoramic tour)
|
@@ -142,6 +143,12 @@ body
|
|
142
143
|
main: '#HEX', // main color of buttons, elements
|
143
144
|
mainText: '#HEX', // text color for buttons, elements contrasting with the main color
|
144
145
|
},
|
146
|
+
|
147
|
+
// panorama icons
|
148
|
+
panoramaIcons: {
|
149
|
+
spot: 'URL', // icon for camera points in one room
|
150
|
+
door: 'URL' // icon for door
|
151
|
+
},
|
145
152
|
}
|
146
153
|
|
147
154
|
```
|