venue-js 1.3.1 → 1.4.0-next.10

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.ts CHANGED
@@ -1,14 +1,15 @@
1
1
  import { QueryClient, QueryObserver, EnsureQueryDataOptions } from '@tanstack/query-core';
2
2
  export { QueryObserver } from '@tanstack/query-core';
3
3
  import * as geojson from 'geojson';
4
- import { Position, Geometry, GeoJsonProperties, Feature, Point, Polygon, MultiPolygon, LineString, GeometryCollection } from 'geojson';
4
+ import { Position, Geometry, GeoJsonProperties, Point, Polygon, MultiPolygon, LineString, MultiLineString, GeometryCollection, Feature } from 'geojson';
5
+ import { FuseResult } from 'fuse.js';
5
6
  import * as maptalks_dist_core_Class from 'maptalks/dist/core/Class';
6
7
  import * as maptalks$1 from 'maptalks-gl';
7
8
  import { Map, Coordinate as Coordinate$1 } from 'maptalks-gl';
8
9
  import { BaseObject, ThreeLayer } from 'maptalks.three';
9
10
  import * as maptalks from 'maptalks';
10
- import { Coordinate, Extent, Marker, ui, LineString as LineString$1, Polygon as Polygon$1, MultiPolygon as MultiPolygon$1, MultiLineString } from 'maptalks';
11
- import { BaseObjectOptionType, ExtrudePolygonOptionType, ExtrudeLineOptionType } from 'maptalks.three/dist/type';
11
+ import { Coordinate, Extent, Marker, ui, LineString as LineString$1, Polygon as Polygon$1, MultiPolygon as MultiPolygon$1, MultiLineString as MultiLineString$1 } from 'maptalks';
12
+ import { BaseObjectOptionType, BarOptionType, ExtrudePolygonOptionType, ExtrudeLineOptionType } from 'maptalks.three/dist/type';
12
13
  import { PolygonOptionsType } from 'maptalks/dist/geometry/Polygon';
13
14
  import { LineStringOptionsType } from 'maptalks/dist/geometry/LineString';
14
15
  import { MapViewType, MapAnimationOptionsType, MapPaddingType } from 'maptalks/dist/map/Map';
@@ -74,9 +75,9 @@ type SymbolProperties = {
74
75
  polygonPatternFile?: string;
75
76
  };
76
77
  type TransalatableString = Record<string, string>;
77
- type ImdfFeature<G extends Geometry | null = Geometry, P = GeoJsonProperties> = Feature<G, P> & {
78
+ type ImdfFeature<G extends Geometry | null = Geometry, P = GeoJsonProperties, T extends string = FeatureType | string> = Feature<G, P> & {
78
79
  id: Id;
79
- feature_type: string;
80
+ feature_type: T;
80
81
  };
81
82
  type AnchorGeometry = Point;
82
83
  type AnchorProperties = EntityTimestamps & {
@@ -84,7 +85,7 @@ type AnchorProperties = EntityTimestamps & {
84
85
  unit_id: Id;
85
86
  locale: string;
86
87
  };
87
- type AnchorFeature = ImdfFeature<AnchorGeometry, AnchorProperties>;
88
+ type AnchorFeature = ImdfFeature<AnchorGeometry, AnchorProperties, "anchor">;
88
89
  type AmenityGeometry = Point;
89
90
  type AmenityProperties = EntityTimestamps & {
90
91
  amenity_logo: Media | null;
@@ -100,17 +101,16 @@ type AmenityProperties = EntityTimestamps & {
100
101
  style: unknown;
101
102
  unit_ids: Id[];
102
103
  venue_id: Id;
104
+ hours: string | null;
103
105
  };
104
- type AmenityFeature = ImdfFeature<AmenityGeometry, AmenityProperties> & {
105
- feature_type: "amenity";
106
- };
106
+ type AmenityFeature = ImdfFeature<AmenityGeometry, AmenityProperties, "amenity">;
107
107
  type DetailGeometry = Point;
108
108
  type DetailProperties = {
109
109
  level_id: Id;
110
110
  [k: string]: any;
111
111
  };
112
112
  type DetailFeature = ImdfFeature<DetailGeometry, DetailProperties>;
113
- type FixtureGeometry = Point;
113
+ type FixtureGeometry = Polygon | MultiPolygon | LineString | MultiLineString;
114
114
  type FixtureProperties = EntityTimestamps & {
115
115
  anchor_id: Id | null;
116
116
  category: string;
@@ -123,7 +123,7 @@ type FixtureProperties = EntityTimestamps & {
123
123
  venue_id: Id;
124
124
  [k: string]: any;
125
125
  };
126
- type FixtureFeature = ImdfFeature<FixtureGeometry, FixtureProperties>;
126
+ type FixtureFeature = ImdfFeature<FixtureGeometry, FixtureProperties, "fixture">;
127
127
  type KioskGeometry = Polygon | MultiPolygon;
128
128
  type KioskProperties = EntityTimestamps & {
129
129
  alt_name: string;
@@ -136,7 +136,7 @@ type KioskProperties = EntityTimestamps & {
136
136
  style: SymbolProperties;
137
137
  venue_id: Id;
138
138
  };
139
- type KioskFeature = ImdfFeature<KioskGeometry, KioskProperties>;
139
+ type KioskFeature = ImdfFeature<KioskGeometry, KioskProperties, "fixture">;
140
140
  type LevelGeometry = Polygon | MultiPolygon;
141
141
  type LevelProperties = EntityTimestamps & {
142
142
  alt_name: string | null;
@@ -146,7 +146,13 @@ type LevelProperties = EntityTimestamps & {
146
146
  properties: unknown;
147
147
  venue_id: Id;
148
148
  };
149
- type LevelFeature = ImdfFeature<LevelGeometry, LevelProperties>;
149
+ type LevelFeature = ImdfFeature<LevelGeometry, LevelProperties, "level">;
150
+ type ExternalLink = {
151
+ id: number;
152
+ link?: string;
153
+ ios_link?: string;
154
+ android_link?: string;
155
+ };
150
156
  type OccupantGeometry = null;
151
157
  type OccupantProperties = EntityTimestamps & {
152
158
  anchor_id: Id;
@@ -186,12 +192,18 @@ type OccupantProperties = EntityTimestamps & {
186
192
  unit_ids: Id[];
187
193
  website_link: string | null;
188
194
  show_name_on_all_units: boolean;
195
+ reservations?: ExternalLink[];
196
+ can_reserve?: boolean;
197
+ display_settings?: {
198
+ card_style?: string | null;
199
+ };
189
200
  };
190
- type OccupantFeature = ImdfFeature<OccupantGeometry, OccupantProperties>;
201
+ type OccupantFeature = ImdfFeature<OccupantGeometry, OccupantProperties, "occupant">;
202
+ type OpeningCategories = "automobile" | "bicycle" | "emergencyexit" | "pedestrian" | "pedestrian.principal" | "pedestrian.transit" | "service" | string;
191
203
  type OpeningGeometry = LineString;
192
204
  type OpeningProperties = EntityTimestamps & {
193
205
  alt_name: string;
194
- category: string;
206
+ category: OpeningCategories;
195
207
  door: {
196
208
  type: string;
197
209
  };
@@ -200,15 +212,17 @@ type OpeningProperties = EntityTimestamps & {
200
212
  style: SymbolProperties;
201
213
  venue_id: Id;
202
214
  };
203
- type OpeningFeature = ImdfFeature<OpeningGeometry, OpeningProperties>;
215
+ type OpeningFeature = ImdfFeature<OpeningGeometry, OpeningProperties, "opening">;
216
+ type RelationshipCategories = "elevator" | "escalator" | "movingwalkway" | "ramp" | "stairs" | "stairs.emergencyexit" | "traversal" | "traversal.path" | string;
217
+ type RelationshipDirectionTypes = "directed" | "undirected";
204
218
  type RelationshipGeometry = Geometry | null;
205
- type RelationshipProperties = EntityTimestamps & {
206
- category: string;
219
+ type RelationshipProperties<T extends RelationshipCategories = RelationshipCategories> = EntityTimestamps & {
220
+ category: RelationshipCategories;
207
221
  destination: {
208
222
  id: Id;
209
223
  feature_type: FeatureType;
210
224
  };
211
- direction: string;
225
+ direction: RelationshipDirectionTypes;
212
226
  hours: string | null;
213
227
  intermediary: {
214
228
  id: Id;
@@ -230,9 +244,15 @@ type SectionProperties = EntityTimestamps & {
230
244
  category: string;
231
245
  ordinal: number;
232
246
  imdf_category: string;
247
+ local_category_ids: string[];
248
+ feature_image: Media | null;
249
+ cover_image: Media | null;
250
+ gallery: Media[] | null;
251
+ is_featured: boolean;
252
+ hours: string | null;
233
253
  [k: string]: any;
234
254
  };
235
- type SectionFeature = ImdfFeature<SectionGeometry, SectionProperties>;
255
+ type SectionFeature = ImdfFeature<SectionGeometry, SectionProperties, "section">;
236
256
  type UnitGeometry = Polygon | MultiPolygon;
237
257
  type UnitProperties = EntityTimestamps & {
238
258
  alt_name: string | null;
@@ -245,7 +265,7 @@ type UnitProperties = EntityTimestamps & {
245
265
  style: SymbolProperties;
246
266
  venue_id: Id;
247
267
  };
248
- type UnitFeature = ImdfFeature<UnitGeometry, UnitProperties>;
268
+ type UnitFeature = ImdfFeature<UnitGeometry, UnitProperties, "unit">;
249
269
  type VenueGeometry = Polygon | MultiPolygon;
250
270
  type VenueProperties = EntityTimestamps & {
251
271
  address: string;
@@ -269,7 +289,7 @@ type VenueProperties = EntityTimestamps & {
269
289
  theme_color: string;
270
290
  zoom: string | null;
271
291
  };
272
- type VenueFeature = ImdfFeature<VenueGeometry, VenueProperties>;
292
+ type VenueFeature = ImdfFeature<VenueGeometry, VenueProperties, "venue">;
273
293
  /**
274
294
  * Non-IMDF
275
295
  *********************** */
@@ -396,18 +416,16 @@ type Page = {
396
416
  };
397
417
  type Model3dGeometry = null;
398
418
  type Model3dProperties = {
399
- name: {
400
- en: string;
401
- };
419
+ name: TransalatableString;
402
420
  model: string;
403
- level_id: null;
404
- project_id: string;
421
+ level_id: Id;
422
+ project_id: Id;
405
423
  rotation_x: number;
406
424
  rotation_y: number;
407
425
  rotation_z: number;
408
426
  center: number[];
409
427
  scale: number;
410
- altitude: 0;
428
+ bottom_height: number;
411
429
  translation_x: number;
412
430
  translation_y: number;
413
431
  translation_z: number;
@@ -454,9 +472,13 @@ type AmenityFeaturePopulated = AmenityFeature & {
454
472
  */
455
473
  units: UnitFeaturePopulated[];
456
474
  /**
457
- * [venue.in.th] Venue that kiosk is in
475
+ * [venue.in.th] Venue that amenity is in
458
476
  */
459
477
  venue: VenueFeaturePopulated;
478
+ /**
479
+ * [IMDF] Level that amenity is on
480
+ */
481
+ level: LevelFeaturePopulated;
460
482
  /**
461
483
  * [Derived] From units[0] --> level's ordinal
462
484
  * This is added during feature enrichment and not part of the original IMDF dataset.
@@ -489,6 +511,10 @@ type AnchorFeaturePopulated = AnchorFeature & {
489
511
  * [IMDF] Level that kiosk is on
490
512
  */
491
513
  level: LevelFeaturePopulated;
514
+ /**
515
+ * [venue.in.th] Venue that anchor is in
516
+ */
517
+ venue: VenueFeaturePopulated;
492
518
  /**
493
519
  * [Derived] The section this anchor is on.
494
520
  * This is added during feature enrichment and not part of the original IMDF dataset.
@@ -510,6 +536,10 @@ type FixtureFeaturePopulated = FixtureFeature & {
510
536
  * [IMDF] Venue that kiosk is in
511
537
  */
512
538
  venue?: VenueFeaturePopulated;
539
+ /**
540
+ * [Derived] Level's ordinal that fixture is on
541
+ */
542
+ ordinal: number;
513
543
  };
514
544
  };
515
545
  type KioskFeaturePopulated = KioskFeature & {
@@ -536,6 +566,10 @@ type KioskFeaturePopulated = KioskFeature & {
536
566
  * This is added during feature enrichment and not part of the original IMDF dataset.
537
567
  */
538
568
  section?: SectionFeaturePopulated;
569
+ /**
570
+ * [Derived] Level's ordinal that fixture is on
571
+ */
572
+ ordinal: number;
539
573
  };
540
574
  };
541
575
  type LevelFeaturePopulated = LevelFeature & {
@@ -552,6 +586,9 @@ type OccupantFeaturePopulated = OccupantFeature & {
552
586
  * [IMDF] Occupant's position
553
587
  */
554
588
  anchor: AnchorFeaturePopulated;
589
+ /**
590
+ * [Derived] Level's ordinal that occupant is on
591
+ */
555
592
  ordinal: number;
556
593
  /**
557
594
  * [venue.in.th] Occupant's category
@@ -643,6 +680,14 @@ type TaxonomyFeaturePopulated = TaxonomyFeature & {
643
680
  venue: VenueFeaturePopulated;
644
681
  };
645
682
  };
683
+ type Model3dPopulated = Model3dFeature & {
684
+ properties: Model3dFeature["properties"] & {
685
+ /**
686
+ * [IMDF] Level that model 3D is on
687
+ */
688
+ level: LevelFeaturePopulated;
689
+ };
690
+ };
646
691
  type FeaturePopulatedResponseMap = {
647
692
  address: ImdfFeature;
648
693
  amenity: AmenityFeaturePopulated;
@@ -666,7 +711,7 @@ type FeaturePopulatedResponseMap = {
666
711
  promotion: PromotionFeature;
667
712
  label: LabelFeature;
668
713
  element: ImdfFeature;
669
- model3d: Model3dFeature;
714
+ model3d: Model3dPopulated;
670
715
  "sponsored-content": SponsoredContentFeature;
671
716
  page: Page;
672
717
  };
@@ -707,6 +752,9 @@ interface FeatureQueryOptions {
707
752
  }
708
753
  type InternalFindById = <T extends FeatureType>(id: Id) => Promise<FeatureResponseMap[T]>;
709
754
  type InternalFilterByType = <T extends FeatureType>(featureType: T) => Promise<FeatureResponseMap[T][]>;
755
+ type SearchClient = {
756
+ search: (txt: string) => FuseResult<ImdfFeature>[];
757
+ };
710
758
  interface VenueDataClient {
711
759
  projectId: string;
712
760
  queryClient: QueryClient;
@@ -717,6 +765,7 @@ interface VenueDataClient {
717
765
  createFindByIdQueryOptions: <T extends FeatureType = FeatureType>(featureType: T, id: string, params: FindParams, options: FeatureQueryOptions) => EnsureQueryDataOptions<FeatureResponseMap[T] | FeaturePopulatedResponseMap[T]>;
718
766
  filterByType: <T extends FeatureType>(featureType: T, params?: FilterParams) => Promise<FeatureResponseMap[T][] | FeaturePopulatedResponseMap[T][]>;
719
767
  findById: <T extends FeatureType>(featureType: T, id: string, params?: FindParams) => Promise<FeatureResponseMap[T] | FeaturePopulatedResponseMap[T]>;
768
+ search: (txt: string) => Promise<FuseResult<ImdfFeature>[]>;
720
769
  }
721
770
 
722
771
  declare const DEFAULT_BASE_URL = "https://service.venue.in.th/api";
@@ -827,6 +876,15 @@ declare class TextSpriteMarker extends BaseObject {
827
876
  setAltitude(altitude: number): this;
828
877
  }
829
878
 
879
+ type ImageMarkerOptions = BaseObjectOptionType & {
880
+ src: string;
881
+ bottomHeight?: number;
882
+ leg?: Omit<BarOptionType, 'height'> & {
883
+ color: string;
884
+ };
885
+ };
886
+ type AnyMarkerOptions = TextMarkerOptions | ImageMarkerOptions;
887
+
830
888
  type Stop = [zoom: number, value: number];
831
889
  type MapElement = maptalks.Geometry | BaseObject;
832
890
  /** 2D */
@@ -868,17 +926,15 @@ type BaseRenderManagerOptions = {
868
926
  };
869
927
  type RendererManagerOptions = BaseRenderManagerOptions & {
870
928
  type: "2D";
871
- elements: Element2DRendererOptions;
929
+ elements?: Element2DRendererOptions;
872
930
  } | BaseRenderManagerOptions & {
873
931
  type: "3D";
874
- elements: Element3DRendererOptions;
932
+ elements?: Element3DRendererOptions;
875
933
  };
876
934
  type HighlightElementOptions = {
877
935
  reset: boolean;
878
936
  };
879
937
 
880
- type AnyMarkerOptions = TextMarkerOptions;
881
-
882
938
  declare class RendererManager extends EventTarget {
883
939
  #private;
884
940
  map: maptalks$1.Map;
@@ -906,7 +962,7 @@ declare class RendererManager extends EventTarget {
906
962
  * ======================================================================== */
907
963
  _getMarkersByOrdinal: (ordinal: number) => BaseObject[] | maptalks$1.ui.UIMarker[];
908
964
  _addMarkersToManager: (id: any, markers: any, ordinal: any) => void;
909
- createMarker(coordinate: Position, ordinal: number, text: string, options: AnyMarkerOptions): void;
965
+ createMarker(type: 'text' | 'image', coordinate: Position, ordinal: number, textOrPath: string, options: AnyMarkerOptions): void;
910
966
  clearMarkers(): void;
911
967
  }
912
968
 
@@ -1188,7 +1244,7 @@ declare function styledFeatureGenerator(mapTheme: any): {
1188
1244
  createFixture: (feature: any) => any;
1189
1245
  createLineStringFromGeometries: (geometries: any) => LineString$1;
1190
1246
  create3DStepPath: (feature: any, threeLayer: any, option?: {}) => NavigationPath;
1191
- createDecoration: (decoration: any, options: any) => LineString$1 | Polygon$1 | MultiPolygon$1 | MultiLineString;
1247
+ createDecoration: (decoration: any, options: any) => LineString$1 | Polygon$1 | MultiPolygon$1 | MultiLineString$1;
1192
1248
  create3DBillboard: (billboard: any, threeLayer: any) => Billboard;
1193
1249
  create3DAmenityMarker: (feature: any, threeLayer: any, config: any) => SpriteMarker;
1194
1250
  create3DOccupantAmenityMarker: (feature: any, threeLayer: any, config: any) => SpriteMarker;
@@ -1281,4 +1337,4 @@ declare const VENUE_EVENTS: {
1281
1337
  VENUE_MOVEINTOVIEW: string;
1282
1338
  };
1283
1339
 
1284
- 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, 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 };
1340
+ 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 Model3dPopulated, 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, type RelationshipFeature, type RelationshipGeometry, type RelationshipProperties, type SearchClient, 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 };