Skip to content

Commit 503f87c

Browse files
committed
updated the example app venueID to support full mapId string as well as numeric value
Signed-off-by: Ravi Singh <[email protected]>
1 parent 7aa0b00 commit 503f87c

File tree

3 files changed

+21
-15
lines changed

3 files changed

+21
-15
lines changed

indoor-map-movement/demo.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@ const yourApikey = 'ZKBUeAgkzH4JWhg93AA7cIE_kZotbMGhVI0_UYC0COY';
88
// Replace with your indoor map platform collection hrn
99
const indoorMapHrn = 'hrn:here:data::org651595200:indoormap-ed6d5667-cfe0-4748-bbf5-88b00e7e3b21-collection';
1010

11-
// Replace with the venue id for your map. This example works for maps:
12-
// 7348 - Zurich Airport
13-
// 27158 - Tiefgarage Riem Arcaden APCOA Parking garage
14-
// 22766 - Mall of Berlin
15-
const venueId = '27158';
11+
// Specify the venue ID for your map. Examples of the map ID mentioned below.
12+
// For legacy maps, you can continue to use the numeric value.
13+
// Examples:
14+
// indoormap-00000000-0000-4000-a000-000000007348 for Zurich Airport (legacy id 7348)
15+
// indoormap-00000000-0000-4000-a000-000000027158 for Tiefgarage Riem Arcaden APCOA Parking garage (legacy id 27158)
16+
// indoormap-00000000-0000-4000-a000-000000022766 for Mall of Berlin (legacy id 22766)
17+
const venueId = 'indoormap-00000000-0000-4000-a000-000000027158';
1618

1719
/**
1820
* Load and add indoor data on the map.

indoor-map-ui-interaction/demo.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@ const yourApikey = 'ZKBUeAgkzH4JWhg93AA7cIE_kZotbMGhVI0_UYC0COY';
88
// Replace with your indoor map platform collection hrn
99
const indoorMapHrn = 'hrn:here:data::org651595200:indoormap-ed6d5667-cfe0-4748-bbf5-88b00e7e3b21-collection';
1010

11-
// Replace with the venue id for your map. This example works for maps:
12-
// 7348 - Zurich Airport
13-
// 27158 - Tiefgarage Riem Arcaden APCOA Parking garage
14-
// 22766 - Mall of Berlin
15-
const venueId = '22766';
11+
// Specify the venue ID for your map. Examples of the map ID mentioned below.
12+
// For legacy maps, you can continue to use the numeric value.
13+
// Examples:
14+
// indoormap-00000000-0000-4000-a000-000000007348 for Zurich Airport (legacy id 7348)
15+
// indoormap-00000000-0000-4000-a000-000000027158 for Tiefgarage Riem Arcaden APCOA Parking garage (legacy id 27158)
16+
// indoormap-00000000-0000-4000-a000-000000022766 for Mall of Berlin (legacy id 22766)
17+
const venueId = 'indoormap-00000000-0000-4000-a000-000000022766';
1618

1719
var infoBubble;
1820

indoor-map/demo.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@ const yourApikey = 'ZKBUeAgkzH4JWhg93AA7cIE_kZotbMGhVI0_UYC0COY';
88
// Replace with your indoor map platform collection hrn
99
const indoorMapHrn = 'hrn:here:data::org651595200:indoormap-ed6d5667-cfe0-4748-bbf5-88b00e7e3b21-collection';
1010

11-
// Replace with the venue id for your map. This example works for maps:
12-
// 7348 - Zurich Airport
13-
// 27158 - Tiefgarage Riem Arcaden APCOA Parking garage
14-
// 22766 - Mall of Berlin
15-
const venueId = '7348';
11+
// Specify the venue ID for your map. Examples of the map ID mentioned below.
12+
// For legacy maps, you can continue to use the numeric value.
13+
// Examples:
14+
// indoormap-00000000-0000-4000-a000-000000007348 for Zurich Airport (legacy id 7348)
15+
// indoormap-00000000-0000-4000-a000-000000027158 for Tiefgarage Riem Arcaden APCOA Parking garage (legacy id 27158)
16+
// indoormap-00000000-0000-4000-a000-000000022766 for Mall of Berlin (legacy id 22766)
17+
const venueId = 'indoormap-00000000-0000-4000-a000-000000007348';
1618

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

0 commit comments

Comments
 (0)