@wemap/providers 3.2.18 → 3.3.0

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/package.json CHANGED
@@ -12,9 +12,9 @@
12
12
  "@wemap/geomagnetism": "^0.1.1",
13
13
  "@wemap/graph": "^3.2.17",
14
14
  "@wemap/logger": "^3.2.17",
15
- "@wemap/map": "^3.2.17",
15
+ "@wemap/map": "^3.3.0",
16
16
  "@wemap/maths": "^3.2.17",
17
- "@wemap/utils": "^3.2.16",
17
+ "@wemap/utils": "^3.3.0",
18
18
  "lodash.isempty": "^4.4.0",
19
19
  "lodash.noop": "^3.0.1"
20
20
  },
@@ -42,6 +42,6 @@
42
42
  "url": "git+https://github.com/wemap/wemap-modules-js.git"
43
43
  },
44
44
  "type": "module",
45
- "version": "3.2.18",
46
- "gitHead": "5b5342754059b05298d7961f78c13b8198685a85"
45
+ "version": "3.3.0",
46
+ "gitHead": "7f37a3730385ddae4a20beba4d45e92b3b4ebdda"
47
47
  }
@@ -7,7 +7,7 @@ import { Network } from '@wemap/graph';
7
7
  import EventType from './events/EventType.js';
8
8
  import MetaProvider from './providers/MetaProvider.js';
9
9
  import {
10
- AbsoluteAttitude, AbsolutePosition, Barcode, CameraNative, CameraProjectionMatrix, Inclination
10
+ AbsoluteAttitude, AbsolutePosition, Barcode, CameraNative, CameraProjectionMatrix, Inclination, RelativeAttitude
11
11
  } from './Providers.js';
12
12
  import ProvidersLoggerOld from './events/ProvidersLoggerOld.js';
13
13
 
@@ -74,6 +74,9 @@ class ProvidersInterface {
74
74
  case EventType.Network:
75
75
  return AbsolutePosition;
76
76
 
77
+ case EventType.RelativeAttitude:
78
+ return RelativeAttitude;
79
+
77
80
  case EventType.Inclination:
78
81
  return Inclination;
79
82