hart-estate-widget 3.4.5 → 3.5.1
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 +10 -1
- package/build/widget.bundle.js +1 -1
- package/build/widget.module.js +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
@@ -232,7 +232,16 @@ Here you can see a list of accessible options and examples of usage. There are a
|
|
232
232
|
},
|
233
233
|
},
|
234
234
|
|
235
|
-
movementType: 'interroom' // allows movement only within a room or between rooms
|
235
|
+
movementType: 'interroom', // allows movement only within a room or between rooms
|
236
|
+
|
237
|
+
defaultLinkOptions: {
|
238
|
+
hasRealSize: false, // enable real size icons in classic navigation mode
|
239
|
+
realSize: 300, // real size
|
240
|
+
realSizeMobileScale: 1, // mobile scale factor in real size
|
241
|
+
realSizeMinDistance: 100, // minimal distance to scale down real size icon
|
242
|
+
realSizeDistanceMinScale: 0.1, // minimal scale for minimal distance scale down
|
243
|
+
hoverScale: 1.2 // hover scale factor
|
244
|
+
},
|
236
245
|
}
|
237
246
|
|
238
247
|
```
|