venue-js 1.2.0-next.13 → 1.2.0-next.15

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/dist/index.d.mts CHANGED
@@ -150,7 +150,8 @@ type LevelFeature = ImdfFeature<LevelGeometry, LevelProperties>;
150
150
  type OccupantGeometry = null;
151
151
  type OccupantProperties = EntityTimestamps & {
152
152
  anchor_id: Id;
153
- category: string;
153
+ category: string | null;
154
+ category_group: string | null;
154
155
  cover_image: Media | null;
155
156
  description: TransalatableString;
156
157
  featured_image: Media | null;
@@ -328,10 +329,7 @@ type PrivilegeProperties = {
328
329
  venue_id: Id;
329
330
  };
330
331
  type PrivilegeFeature = ImdfFeature<PrivilegeGeometry, PrivilegeProperties>;
331
- type LabelGeometry = {
332
- geometry_type: string;
333
- cooordinates: Position[][];
334
- };
332
+ type LabelGeometry = Polygon;
335
333
  type LabelProperties = {
336
334
  name: string;
337
335
  ordinal: number;
@@ -339,12 +337,7 @@ type LabelProperties = {
339
337
  angle: number;
340
338
  fontSize: number;
341
339
  };
342
- type LabelFeature = {
343
- type: "Feature";
344
- geometry: LabelGeometry;
345
- id: Id;
346
- properties: LabelProperties;
347
- };
340
+ type LabelFeature = ImdfFeature<LabelGeometry, LabelProperties>;
348
341
  type ElementGeometry = null;
349
342
  type ElementProperties = EntityTimestamps & {
350
343
  geometries: Array<{
@@ -401,6 +394,29 @@ type Page = {
401
394
  id: Id;
402
395
  attributes: Record<string, unknown>;
403
396
  };
397
+ type Model3dGeometry = null;
398
+ type Model3dProperties = {
399
+ name: {
400
+ en: string;
401
+ };
402
+ model: string;
403
+ level_id: null;
404
+ project_id: string;
405
+ rotation_x: number;
406
+ rotation_y: number;
407
+ rotation_z: number;
408
+ center: number[];
409
+ scale: number;
410
+ altitude: 0;
411
+ translation_x: number;
412
+ translation_y: number;
413
+ translation_z: number;
414
+ createdAt: string;
415
+ updatedAt: string;
416
+ publishedAt: string;
417
+ locale: string;
418
+ };
419
+ type Model3dFeature = ImdfFeature<Model3dGeometry, Model3dProperties>;
404
420
  type FeatureResponseMap = {
405
421
  address: ImdfFeature;
406
422
  amenity: AmenityFeature;
@@ -424,6 +440,7 @@ type FeatureResponseMap = {
424
440
  promotion: PromotionFeature;
425
441
  label: LabelFeature;
426
442
  element: ElementFeature;
443
+ model3d: Model3dFeature;
427
444
  "sponsored-content": SponsoredContentFeature;
428
445
  page: Page;
429
446
  };
@@ -649,6 +666,7 @@ type FeaturePopulatedResponseMap = {
649
666
  promotion: PromotionFeature;
650
667
  label: LabelFeature;
651
668
  element: ImdfFeature;
669
+ model3d: Model3dFeature;
652
670
  "sponsored-content": SponsoredContentFeature;
653
671
  page: Page;
654
672
  };
@@ -1033,7 +1051,6 @@ declare class IndoorMap extends EventTarget {
1033
1051
  set detectVenueInView(value: any);
1034
1052
  set billboards(value: any);
1035
1053
  set mapDecorations(value: any);
1036
- set groundLabels(value: any);
1037
1054
  set pixelRatio(value: number);
1038
1055
  set onClickElement(func: any);
1039
1056
  set locale(value: string);
@@ -1116,29 +1133,6 @@ declare class Billboard extends BaseObject {
1116
1133
  #private;
1117
1134
  }
1118
1135
 
1119
- declare class GroundLabel extends BaseObject {
1120
- #private;
1121
- constructor(bound: any, options: any, layer: any);
1122
- set bearing(value: any);
1123
- get angle(): number;
1124
- get currentAngle(): number;
1125
- get text(): string;
1126
- get offsetX(): number;
1127
- get offsetY(): number;
1128
- get offset(): {
1129
- x: number;
1130
- y: number;
1131
- };
1132
- set offsetX(value: number);
1133
- set offsetY(value: number);
1134
- set angle(newAngle: number);
1135
- setOffset(offsetX: any, offsetY: any): void;
1136
- addOffset(deltaX: any, deltaY: any): void;
1137
- resetOffset(): void;
1138
- moveToPosition(targetX: any, targetY: any): void;
1139
- updateText(newText: any, options?: Record<string, unknown>): void;
1140
- }
1141
-
1142
1136
  interface IOptions {
1143
1137
  scale: number;
1144
1138
  altitude: number;
@@ -1202,8 +1196,6 @@ declare function styledFeatureGenerator(mapTheme: any): {
1202
1196
  createDecoration: (decoration: any, options: any) => LineString$1 | Polygon$1 | MultiPolygon$1 | MultiLineString;
1203
1197
  /** Three JS */
1204
1198
  create3DFootprint: (feature: any, threeLayer: any, options: any) => Promise<any[]>;
1205
- create3DGroundLabel: (label: any, threeLayer: any) => GroundLabel;
1206
- createOccupantGroundLabel: (feature: any, location: any, mapConfig: any, threeLayer: any) => GroundLabel;
1207
1199
  create3DBillboard: (billboard: any, threeLayer: any) => Billboard;
1208
1200
  create3DAmenityMarker: (feature: any, threeLayer: any, config: any) => SpriteMarker;
1209
1201
  create3DOccupantAmenityMarker: (feature: any, threeLayer: any, config: any) => SpriteMarker;
@@ -1296,4 +1288,4 @@ declare const VENUE_EVENTS: {
1296
1288
  VENUE_MOVEINTOVIEW: string;
1297
1289
  };
1298
1290
 
1299
- export { ALL_FEATURE_TYPES, type AmenityFeature, type AmenityFeaturePopulated, type AmenityGeometry, type AmenityProperties, type AnchorFeature, type AnchorFeaturePopulated, type AnchorGeometry, type AnchorProperties, BASE_LAYER_NAME, DEFAULT_BASE_URL, DEFAULT_LOCALE, DESTINATION_MARKER_ID, type DetailFeature, type DetailGeometry, type DetailProperties, type ElementFeature, type ElementGeometry, type ElementProperties, type EventFeature, type EventGeometry, type EventProperties, type FeaturePopulatedResponseMap, type FeatureQueryOptions, type FeatureResponseMap, type FeatureType, type FilterParams, type FindParams, type FixtureFeature, type FixtureFeaturePopulated, type FixtureGeometry, type FixtureProperties, GEOJSON_FEATURE_TYPES, HIGHLIGHT_LAYER_NAME, type IAllVenuesViewConfig, type IExtrudeConfig, type IGraphFeatureOptions, type IGraphOptions, type IHighlightOptions, IMDF_FEATURE_TYPES, type IMapAnimation, type IMapConfig, type IMapExtrudeConfig, type ISetHighlight2DElementIdsOptions, type IUnitDistanceModifier, type IVerticalGraphOptions, type Id, type ImdfFeature, IndoorMap, type IndoorMapOptions, type InternalFilterByType, type InternalFindById, type KioskFeature, type KioskFeaturePopulated, type KioskGeometry, type KioskProperties, LAST_USER_LOCATION_ELEMENT_ID_PREFIX, LAYERS, LAYER_FEATURE_TYPE_OBJ, LAYER_OPTIONS, LOCALE_SYMBOL_KEY, type LabelFeature, type LabelGeometry, type LabelProperties, type LevelFeature, type LevelFeaturePopulated, type LevelGeometry, type LevelProperties, MARKER_LAYER_NAME, type Media, type MediaFile, type Model3d, NONIMDF_FEATURE_TYPES, ORIGIN_MARKER_ID, type OccupantFeature, type OccupantFeaturePopulated, type OccupantGeometry, occupantHelper as OccupantHelpers, type OccupantProperties, type OpeningFeature, type OpeningFeaturePopulated, type OpeningGeometry, type OpeningProperties, POI_MARKER_LAYER_NAME, type Page, type PolygonalFeature, type PopulatableFeatureType, type PopulatedParams, type PrivilegeFeature, type PrivilegeGeometry, type PrivilegeProperties, type PromotionFeature, type PromotionProperties, PulsingMarker, type RelationshipFeature, type RelationshipGeometry, type RelationshipProperties, type SectionFeature, type SectionFeaturePopulated, type SectionGeometry, type SectionProperties, type SponsoredContentFeature, type SponsoredContentLegacyType, type SponsoredContentPlacementType, type SponsoredContentStrapiV4ApiResponse, type SymbolSet, type TaxonomyFeature, type TaxonomyFeaturePopulated, type TaxonomyGeometry, type TaxonomyProperties, type TextMarkerOptions, TextSpriteMarker, USER_LOCATION_ELEMENT_ID, USER_LOCATION_LAYER_NAME, type UnitFeature, type UnitFeaturePopulated, type UnitGeometry, type UnitProperties, VENUE_EVENTS, type VenueClientOptions, type VenueDataClient, type VenueFeature, type VenueFeaturePopulated, type VenueGeometry, type VenueProperties, createPolygonFromLineString, createSpriteMaterialByLabelSymbol, createStyledUIMarkerElement, defaultFeatureQueryOptionsMap, fetchDeliveryApi, fetchPreviewApi, getBearingBetweenPoints, getCenterFromGeometry, getDataClient, getExtrudeConfigByFeature, getFeatureByLocationId, getLocationByAmenity, getLocationByFeature, getLocationByOccupant, getLocationIdByFeature, getOrdinalByLocationId, getRelatedLocationIdsByFeature, getRelatedLocationsByAmenity, getRelatedLocationsByFeature, getRelatedLocationsByOccupant, getSuitablyValueBetweenBearings, isClickableFeature, isValidCoordinate, isValidLineString, isValidLineStringCoordinates, isValidMultiPolygon, isValidMultiPolygonCoordinates, isValidPoint, isValidPolygon, isValidPolygonCoordinates, matchFilter, matchFilters, safeFetchFeature, styledFeatureGenerator };
1291
+ export { ALL_FEATURE_TYPES, type AmenityFeature, type AmenityFeaturePopulated, type AmenityGeometry, type AmenityProperties, type AnchorFeature, type AnchorFeaturePopulated, type AnchorGeometry, type AnchorProperties, BASE_LAYER_NAME, DEFAULT_BASE_URL, DEFAULT_LOCALE, DESTINATION_MARKER_ID, type DetailFeature, type DetailGeometry, type DetailProperties, type ElementFeature, type ElementGeometry, type ElementProperties, type EventFeature, type EventGeometry, type EventProperties, type FeaturePopulatedResponseMap, type FeatureQueryOptions, type FeatureResponseMap, type FeatureType, type FilterParams, type FindParams, type FixtureFeature, type FixtureFeaturePopulated, type FixtureGeometry, type FixtureProperties, GEOJSON_FEATURE_TYPES, HIGHLIGHT_LAYER_NAME, type IAllVenuesViewConfig, type IExtrudeConfig, type IGraphFeatureOptions, type IGraphOptions, type IHighlightOptions, IMDF_FEATURE_TYPES, type IMapAnimation, type IMapConfig, type IMapExtrudeConfig, type ISetHighlight2DElementIdsOptions, type IUnitDistanceModifier, type IVerticalGraphOptions, type Id, type ImdfFeature, IndoorMap, type IndoorMapOptions, type InternalFilterByType, type InternalFindById, type KioskFeature, type KioskFeaturePopulated, type KioskGeometry, type KioskProperties, LAST_USER_LOCATION_ELEMENT_ID_PREFIX, LAYERS, LAYER_FEATURE_TYPE_OBJ, LAYER_OPTIONS, LOCALE_SYMBOL_KEY, type LabelFeature, type LabelGeometry, type LabelProperties, type LevelFeature, type LevelFeaturePopulated, type LevelGeometry, type LevelProperties, MARKER_LAYER_NAME, type Media, type MediaFile, type Model3d, type Model3dFeature, type Model3dGeometry, type Model3dProperties, NONIMDF_FEATURE_TYPES, ORIGIN_MARKER_ID, type OccupantFeature, type OccupantFeaturePopulated, type OccupantGeometry, occupantHelper as OccupantHelpers, type OccupantProperties, type OpeningFeature, type OpeningFeaturePopulated, type OpeningGeometry, type OpeningProperties, POI_MARKER_LAYER_NAME, type Page, type PolygonalFeature, type PopulatableFeatureType, type PopulatedParams, type PrivilegeFeature, type PrivilegeGeometry, type PrivilegeProperties, type PromotionFeature, type PromotionProperties, PulsingMarker, type RelationshipFeature, type RelationshipGeometry, type RelationshipProperties, type SectionFeature, type SectionFeaturePopulated, type SectionGeometry, type SectionProperties, type SponsoredContentFeature, type SponsoredContentLegacyType, type SponsoredContentPlacementType, type SponsoredContentStrapiV4ApiResponse, type SymbolSet, type TaxonomyFeature, type TaxonomyFeaturePopulated, type TaxonomyGeometry, type TaxonomyProperties, type TextMarkerOptions, TextSpriteMarker, USER_LOCATION_ELEMENT_ID, USER_LOCATION_LAYER_NAME, type UnitFeature, type UnitFeaturePopulated, type UnitGeometry, type UnitProperties, VENUE_EVENTS, type VenueClientOptions, type VenueDataClient, type VenueFeature, type VenueFeaturePopulated, type VenueGeometry, type VenueProperties, createPolygonFromLineString, createSpriteMaterialByLabelSymbol, createStyledUIMarkerElement, defaultFeatureQueryOptionsMap, fetchDeliveryApi, fetchPreviewApi, getBearingBetweenPoints, getCenterFromGeometry, getDataClient, getExtrudeConfigByFeature, getFeatureByLocationId, getLocationByAmenity, getLocationByFeature, getLocationByOccupant, getLocationIdByFeature, getOrdinalByLocationId, getRelatedLocationIdsByFeature, getRelatedLocationsByAmenity, getRelatedLocationsByFeature, getRelatedLocationsByOccupant, getSuitablyValueBetweenBearings, isClickableFeature, isValidCoordinate, isValidLineString, isValidLineStringCoordinates, isValidMultiPolygon, isValidMultiPolygonCoordinates, isValidPoint, isValidPolygon, isValidPolygonCoordinates, matchFilter, matchFilters, safeFetchFeature, styledFeatureGenerator };
package/dist/index.d.ts CHANGED
@@ -150,7 +150,8 @@ type LevelFeature = ImdfFeature<LevelGeometry, LevelProperties>;
150
150
  type OccupantGeometry = null;
151
151
  type OccupantProperties = EntityTimestamps & {
152
152
  anchor_id: Id;
153
- category: string;
153
+ category: string | null;
154
+ category_group: string | null;
154
155
  cover_image: Media | null;
155
156
  description: TransalatableString;
156
157
  featured_image: Media | null;
@@ -328,10 +329,7 @@ type PrivilegeProperties = {
328
329
  venue_id: Id;
329
330
  };
330
331
  type PrivilegeFeature = ImdfFeature<PrivilegeGeometry, PrivilegeProperties>;
331
- type LabelGeometry = {
332
- geometry_type: string;
333
- cooordinates: Position[][];
334
- };
332
+ type LabelGeometry = Polygon;
335
333
  type LabelProperties = {
336
334
  name: string;
337
335
  ordinal: number;
@@ -339,12 +337,7 @@ type LabelProperties = {
339
337
  angle: number;
340
338
  fontSize: number;
341
339
  };
342
- type LabelFeature = {
343
- type: "Feature";
344
- geometry: LabelGeometry;
345
- id: Id;
346
- properties: LabelProperties;
347
- };
340
+ type LabelFeature = ImdfFeature<LabelGeometry, LabelProperties>;
348
341
  type ElementGeometry = null;
349
342
  type ElementProperties = EntityTimestamps & {
350
343
  geometries: Array<{
@@ -401,6 +394,29 @@ type Page = {
401
394
  id: Id;
402
395
  attributes: Record<string, unknown>;
403
396
  };
397
+ type Model3dGeometry = null;
398
+ type Model3dProperties = {
399
+ name: {
400
+ en: string;
401
+ };
402
+ model: string;
403
+ level_id: null;
404
+ project_id: string;
405
+ rotation_x: number;
406
+ rotation_y: number;
407
+ rotation_z: number;
408
+ center: number[];
409
+ scale: number;
410
+ altitude: 0;
411
+ translation_x: number;
412
+ translation_y: number;
413
+ translation_z: number;
414
+ createdAt: string;
415
+ updatedAt: string;
416
+ publishedAt: string;
417
+ locale: string;
418
+ };
419
+ type Model3dFeature = ImdfFeature<Model3dGeometry, Model3dProperties>;
404
420
  type FeatureResponseMap = {
405
421
  address: ImdfFeature;
406
422
  amenity: AmenityFeature;
@@ -424,6 +440,7 @@ type FeatureResponseMap = {
424
440
  promotion: PromotionFeature;
425
441
  label: LabelFeature;
426
442
  element: ElementFeature;
443
+ model3d: Model3dFeature;
427
444
  "sponsored-content": SponsoredContentFeature;
428
445
  page: Page;
429
446
  };
@@ -649,6 +666,7 @@ type FeaturePopulatedResponseMap = {
649
666
  promotion: PromotionFeature;
650
667
  label: LabelFeature;
651
668
  element: ImdfFeature;
669
+ model3d: Model3dFeature;
652
670
  "sponsored-content": SponsoredContentFeature;
653
671
  page: Page;
654
672
  };
@@ -1033,7 +1051,6 @@ declare class IndoorMap extends EventTarget {
1033
1051
  set detectVenueInView(value: any);
1034
1052
  set billboards(value: any);
1035
1053
  set mapDecorations(value: any);
1036
- set groundLabels(value: any);
1037
1054
  set pixelRatio(value: number);
1038
1055
  set onClickElement(func: any);
1039
1056
  set locale(value: string);
@@ -1116,29 +1133,6 @@ declare class Billboard extends BaseObject {
1116
1133
  #private;
1117
1134
  }
1118
1135
 
1119
- declare class GroundLabel extends BaseObject {
1120
- #private;
1121
- constructor(bound: any, options: any, layer: any);
1122
- set bearing(value: any);
1123
- get angle(): number;
1124
- get currentAngle(): number;
1125
- get text(): string;
1126
- get offsetX(): number;
1127
- get offsetY(): number;
1128
- get offset(): {
1129
- x: number;
1130
- y: number;
1131
- };
1132
- set offsetX(value: number);
1133
- set offsetY(value: number);
1134
- set angle(newAngle: number);
1135
- setOffset(offsetX: any, offsetY: any): void;
1136
- addOffset(deltaX: any, deltaY: any): void;
1137
- resetOffset(): void;
1138
- moveToPosition(targetX: any, targetY: any): void;
1139
- updateText(newText: any, options?: Record<string, unknown>): void;
1140
- }
1141
-
1142
1136
  interface IOptions {
1143
1137
  scale: number;
1144
1138
  altitude: number;
@@ -1202,8 +1196,6 @@ declare function styledFeatureGenerator(mapTheme: any): {
1202
1196
  createDecoration: (decoration: any, options: any) => LineString$1 | Polygon$1 | MultiPolygon$1 | MultiLineString;
1203
1197
  /** Three JS */
1204
1198
  create3DFootprint: (feature: any, threeLayer: any, options: any) => Promise<any[]>;
1205
- create3DGroundLabel: (label: any, threeLayer: any) => GroundLabel;
1206
- createOccupantGroundLabel: (feature: any, location: any, mapConfig: any, threeLayer: any) => GroundLabel;
1207
1199
  create3DBillboard: (billboard: any, threeLayer: any) => Billboard;
1208
1200
  create3DAmenityMarker: (feature: any, threeLayer: any, config: any) => SpriteMarker;
1209
1201
  create3DOccupantAmenityMarker: (feature: any, threeLayer: any, config: any) => SpriteMarker;
@@ -1296,4 +1288,4 @@ declare const VENUE_EVENTS: {
1296
1288
  VENUE_MOVEINTOVIEW: string;
1297
1289
  };
1298
1290
 
1299
- export { ALL_FEATURE_TYPES, type AmenityFeature, type AmenityFeaturePopulated, type AmenityGeometry, type AmenityProperties, type AnchorFeature, type AnchorFeaturePopulated, type AnchorGeometry, type AnchorProperties, BASE_LAYER_NAME, DEFAULT_BASE_URL, DEFAULT_LOCALE, DESTINATION_MARKER_ID, type DetailFeature, type DetailGeometry, type DetailProperties, type ElementFeature, type ElementGeometry, type ElementProperties, type EventFeature, type EventGeometry, type EventProperties, type FeaturePopulatedResponseMap, type FeatureQueryOptions, type FeatureResponseMap, type FeatureType, type FilterParams, type FindParams, type FixtureFeature, type FixtureFeaturePopulated, type FixtureGeometry, type FixtureProperties, GEOJSON_FEATURE_TYPES, HIGHLIGHT_LAYER_NAME, type IAllVenuesViewConfig, type IExtrudeConfig, type IGraphFeatureOptions, type IGraphOptions, type IHighlightOptions, IMDF_FEATURE_TYPES, type IMapAnimation, type IMapConfig, type IMapExtrudeConfig, type ISetHighlight2DElementIdsOptions, type IUnitDistanceModifier, type IVerticalGraphOptions, type Id, type ImdfFeature, IndoorMap, type IndoorMapOptions, type InternalFilterByType, type InternalFindById, type KioskFeature, type KioskFeaturePopulated, type KioskGeometry, type KioskProperties, LAST_USER_LOCATION_ELEMENT_ID_PREFIX, LAYERS, LAYER_FEATURE_TYPE_OBJ, LAYER_OPTIONS, LOCALE_SYMBOL_KEY, type LabelFeature, type LabelGeometry, type LabelProperties, type LevelFeature, type LevelFeaturePopulated, type LevelGeometry, type LevelProperties, MARKER_LAYER_NAME, type Media, type MediaFile, type Model3d, NONIMDF_FEATURE_TYPES, ORIGIN_MARKER_ID, type OccupantFeature, type OccupantFeaturePopulated, type OccupantGeometry, occupantHelper as OccupantHelpers, type OccupantProperties, type OpeningFeature, type OpeningFeaturePopulated, type OpeningGeometry, type OpeningProperties, POI_MARKER_LAYER_NAME, type Page, type PolygonalFeature, type PopulatableFeatureType, type PopulatedParams, type PrivilegeFeature, type PrivilegeGeometry, type PrivilegeProperties, type PromotionFeature, type PromotionProperties, PulsingMarker, type RelationshipFeature, type RelationshipGeometry, type RelationshipProperties, type SectionFeature, type SectionFeaturePopulated, type SectionGeometry, type SectionProperties, type SponsoredContentFeature, type SponsoredContentLegacyType, type SponsoredContentPlacementType, type SponsoredContentStrapiV4ApiResponse, type SymbolSet, type TaxonomyFeature, type TaxonomyFeaturePopulated, type TaxonomyGeometry, type TaxonomyProperties, type TextMarkerOptions, TextSpriteMarker, USER_LOCATION_ELEMENT_ID, USER_LOCATION_LAYER_NAME, type UnitFeature, type UnitFeaturePopulated, type UnitGeometry, type UnitProperties, VENUE_EVENTS, type VenueClientOptions, type VenueDataClient, type VenueFeature, type VenueFeaturePopulated, type VenueGeometry, type VenueProperties, createPolygonFromLineString, createSpriteMaterialByLabelSymbol, createStyledUIMarkerElement, defaultFeatureQueryOptionsMap, fetchDeliveryApi, fetchPreviewApi, getBearingBetweenPoints, getCenterFromGeometry, getDataClient, getExtrudeConfigByFeature, getFeatureByLocationId, getLocationByAmenity, getLocationByFeature, getLocationByOccupant, getLocationIdByFeature, getOrdinalByLocationId, getRelatedLocationIdsByFeature, getRelatedLocationsByAmenity, getRelatedLocationsByFeature, getRelatedLocationsByOccupant, getSuitablyValueBetweenBearings, isClickableFeature, isValidCoordinate, isValidLineString, isValidLineStringCoordinates, isValidMultiPolygon, isValidMultiPolygonCoordinates, isValidPoint, isValidPolygon, isValidPolygonCoordinates, matchFilter, matchFilters, safeFetchFeature, styledFeatureGenerator };
1291
+ export { ALL_FEATURE_TYPES, type AmenityFeature, type AmenityFeaturePopulated, type AmenityGeometry, type AmenityProperties, type AnchorFeature, type AnchorFeaturePopulated, type AnchorGeometry, type AnchorProperties, BASE_LAYER_NAME, DEFAULT_BASE_URL, DEFAULT_LOCALE, DESTINATION_MARKER_ID, type DetailFeature, type DetailGeometry, type DetailProperties, type ElementFeature, type ElementGeometry, type ElementProperties, type EventFeature, type EventGeometry, type EventProperties, type FeaturePopulatedResponseMap, type FeatureQueryOptions, type FeatureResponseMap, type FeatureType, type FilterParams, type FindParams, type FixtureFeature, type FixtureFeaturePopulated, type FixtureGeometry, type FixtureProperties, GEOJSON_FEATURE_TYPES, HIGHLIGHT_LAYER_NAME, type IAllVenuesViewConfig, type IExtrudeConfig, type IGraphFeatureOptions, type IGraphOptions, type IHighlightOptions, IMDF_FEATURE_TYPES, type IMapAnimation, type IMapConfig, type IMapExtrudeConfig, type ISetHighlight2DElementIdsOptions, type IUnitDistanceModifier, type IVerticalGraphOptions, type Id, type ImdfFeature, IndoorMap, type IndoorMapOptions, type InternalFilterByType, type InternalFindById, type KioskFeature, type KioskFeaturePopulated, type KioskGeometry, type KioskProperties, LAST_USER_LOCATION_ELEMENT_ID_PREFIX, LAYERS, LAYER_FEATURE_TYPE_OBJ, LAYER_OPTIONS, LOCALE_SYMBOL_KEY, type LabelFeature, type LabelGeometry, type LabelProperties, type LevelFeature, type LevelFeaturePopulated, type LevelGeometry, type LevelProperties, MARKER_LAYER_NAME, type Media, type MediaFile, type Model3d, type Model3dFeature, type Model3dGeometry, type Model3dProperties, NONIMDF_FEATURE_TYPES, ORIGIN_MARKER_ID, type OccupantFeature, type OccupantFeaturePopulated, type OccupantGeometry, occupantHelper as OccupantHelpers, type OccupantProperties, type OpeningFeature, type OpeningFeaturePopulated, type OpeningGeometry, type OpeningProperties, POI_MARKER_LAYER_NAME, type Page, type PolygonalFeature, type PopulatableFeatureType, type PopulatedParams, type PrivilegeFeature, type PrivilegeGeometry, type PrivilegeProperties, type PromotionFeature, type PromotionProperties, PulsingMarker, type RelationshipFeature, type RelationshipGeometry, type RelationshipProperties, type SectionFeature, type SectionFeaturePopulated, type SectionGeometry, type SectionProperties, type SponsoredContentFeature, type SponsoredContentLegacyType, type SponsoredContentPlacementType, type SponsoredContentStrapiV4ApiResponse, type SymbolSet, type TaxonomyFeature, type TaxonomyFeaturePopulated, type TaxonomyGeometry, type TaxonomyProperties, type TextMarkerOptions, TextSpriteMarker, USER_LOCATION_ELEMENT_ID, USER_LOCATION_LAYER_NAME, type UnitFeature, type UnitFeaturePopulated, type UnitGeometry, type UnitProperties, VENUE_EVENTS, type VenueClientOptions, type VenueDataClient, type VenueFeature, type VenueFeaturePopulated, type VenueGeometry, type VenueProperties, createPolygonFromLineString, createSpriteMaterialByLabelSymbol, createStyledUIMarkerElement, defaultFeatureQueryOptionsMap, fetchDeliveryApi, fetchPreviewApi, getBearingBetweenPoints, getCenterFromGeometry, getDataClient, getExtrudeConfigByFeature, getFeatureByLocationId, getLocationByAmenity, getLocationByFeature, getLocationByOccupant, getLocationIdByFeature, getOrdinalByLocationId, getRelatedLocationIdsByFeature, getRelatedLocationsByAmenity, getRelatedLocationsByFeature, getRelatedLocationsByOccupant, getSuitablyValueBetweenBearings, isClickableFeature, isValidCoordinate, isValidLineString, isValidLineStringCoordinates, isValidMultiPolygon, isValidMultiPolygonCoordinates, isValidPoint, isValidPolygon, isValidPolygonCoordinates, matchFilter, matchFilters, safeFetchFeature, styledFeatureGenerator };