Skip to content

Commit

Permalink
updated the example app venueID to support full mapId string as well …
Browse files Browse the repository at this point in the history
…as numeric value
  • Loading branch information
iamravisingh committed Oct 28, 2024
1 parent 7aa0b00 commit 065bc4a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
9 changes: 5 additions & 4 deletions indoor-map-movement/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ const yourApikey = 'ZKBUeAgkzH4JWhg93AA7cIE_kZotbMGhVI0_UYC0COY';
// Replace with your indoor map platform collection hrn
const indoorMapHrn = 'hrn:here:data::org651595200:indoormap-ed6d5667-cfe0-4748-bbf5-88b00e7e3b21-collection';

// Replace with the venue id for your map. This example works for maps:
// 7348 - Zurich Airport
// 27158 - Tiefgarage Riem Arcaden APCOA Parking garage
// Specify the venue ID for your map. You can use either the numeric value or the full map ID string.
// Examples:
// 7348 or indoormap-00000000-0000-4000-a000-000000007348 for Zurich Airport
// 27158 or indoormap-00000000-0000-4000-a000-000000027158 for Tiefgarage Riem Arcaden APCOA Parking garage
// 22766 - Mall of Berlin
const venueId = '27158';
const venueId = 'indoormap-00000000-0000-4000-a000-000000027158';

/**
* Load and add indoor data on the map.
Expand Down
9 changes: 5 additions & 4 deletions indoor-map-ui-interaction/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ const yourApikey = 'ZKBUeAgkzH4JWhg93AA7cIE_kZotbMGhVI0_UYC0COY';
// Replace with your indoor map platform collection hrn
const indoorMapHrn = 'hrn:here:data::org651595200:indoormap-ed6d5667-cfe0-4748-bbf5-88b00e7e3b21-collection';

// Replace with the venue id for your map. This example works for maps:
// 7348 - Zurich Airport
// 27158 - Tiefgarage Riem Arcaden APCOA Parking garage
// Specify the venue ID for your map. You can use either the numeric value or the full map ID string.
// Examples:
// 7348 or indoormap-00000000-0000-4000-a000-000000007348 for Zurich Airport
// 27158 or indoormap-00000000-0000-4000-a000-000000027158 for Tiefgarage Riem Arcaden APCOA Parking garage
// 22766 - Mall of Berlin
const venueId = '22766';
const venueId = 'indoormap-00000000-0000-4000-a000-000000022766';

var infoBubble;

Expand Down
9 changes: 5 additions & 4 deletions indoor-map/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ const yourApikey = 'ZKBUeAgkzH4JWhg93AA7cIE_kZotbMGhVI0_UYC0COY';
// Replace with your indoor map platform collection hrn
const indoorMapHrn = 'hrn:here:data::org651595200:indoormap-ed6d5667-cfe0-4748-bbf5-88b00e7e3b21-collection';

// Replace with the venue id for your map. This example works for maps:
// 7348 - Zurich Airport
// 27158 - Tiefgarage Riem Arcaden APCOA Parking garage
// Specify the venue ID for your map. You can use either the numeric value or the full map ID string.
// Examples:
// 7348 or indoormap-00000000-0000-4000-a000-000000007348 for Zurich Airport
// 27158 or indoormap-00000000-0000-4000-a000-000000027158 for Tiefgarage Riem Arcaden APCOA Parking garage
// 22766 - Mall of Berlin
const venueId = '7348';
const venueId = 'indoormap-00000000-0000-4000-a000-000000007348';

// The value of the drawing id varies as per the venue being loaded. Replace with appropriate value.
const drawingId = 'structure-7880';
Expand Down

0 comments on commit 065bc4a

Please sign in to comment.