hart-estate-widget 3.9.5 → 3.9.7

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 CHANGED
@@ -226,7 +226,7 @@ type TConfig = {
226
226
  instructionVisible: true;
227
227
  /** Enable/disable auto rotation in 3D tour */
228
228
  autoRotate: false;
229
- /** Array of scale keys used as filter, can be x05, x1, x2, x3, x4 */
229
+ /** Array of scale keys used as filter, can be x05, x1, x13, x16, x2 */
230
230
  scales: ['x05', 'x1'];
231
231
  /** Enable/disable device gyroscope for AR */
232
232
  enableGyroscope: true;
@@ -324,18 +324,20 @@ type TConfig = {
324
324
  type: 'default';
325
325
  /** Upscale top view resolution for better rendering */
326
326
  top_view_upscale: 2;
327
+ /** Crop transparent bounds in multimap */
328
+ crop_transparent?: true;
327
329
  };
328
330
 
329
331
  /** Options for Scene camera */
330
332
  camera_options: {
331
333
  /** Speed of fov changing per deltaTime */
332
- fov_change_speed?: number;
334
+ fov_change_speed?: 0;
333
335
  };
334
336
 
335
337
  /** Options for Portal link graphics */
336
338
  portal_options?: {
337
339
  /** Use overlay div elements instead of three.js graphics */
338
- use_overlay?: boolean;
340
+ use_overlay?: true;
339
341
  };
340
342
 
341
343
  /** Options for DefaultLink graphics */
@@ -393,11 +395,11 @@ locale: [
393
395
  'ja', // Japanese language
394
396
  ],
395
397
  scales: [
398
+ 'x05',
399
+ 'x13',
400
+ 'x16',
396
401
  'x1',
397
402
  'x2',
398
- 'x3',
399
- 'x4',
400
- 'x05'
401
403
  ],
402
404
  ```
403
405