Examples and use cases

Indoor Map is only available with the Navigate license.

Explore practical examples and use cases to effectively utilize indoor maps and venues with the HERE SDK. This section covers a range of topics to help you get the most out of our indoor mapping capabilities.

List all indoor maps

The HERE SDK for Android (Navigate) allows you to list all private venues that are accessible for your account and the selected collection. VenueMap contains a list which holds VenueInfo elements containing venue identifier, venue ID and venue Name.

List<VenueInfo> venueInfo = venueEngine.getVenueMap().getVenueInfoList();
for (int i = 0; i< venueInfo.size(); i++) {
    Log.d(TAG, "Venue Identifier: " + venueInfo.get(i).getVenueIdentifier() + " Venue Id: "+venueInfo.get(i).getVenueId() + " Venue Name: "+venueInfo.get(i).getVenueName());
}

For maps with venue identifier as UUID, getVenueId() would return 0.

Load and show a venue

The HERE SDK for Android (Navigate) allows you to load and visualize venues by Identifier. You must know the venue's identifier for the current set of credentials. There are several ways to load and visualize the venues.

VenueMap has two methods to add a venue to the map: selectVenueAsync() and addVenueAsync(). Both methods use getVenueService().addVenueToLoad() to load the venue by Identifier and then add it to the map. The method selectVenueAsync() also selects the venue:

venueEngine.getVenueMap().selectVenueAsync(String venueIdentifier);
venueEngine.getVenueMap().addVenueAsync(String venueIdentifier);

Note

For legacy maps with an int based venue ID, VenueMap still supports selectVenueAsync(int venueID) and addVenueAsync(int venueID) to load the venue by venue ID.

Once the venue is loaded, the VenueService calls the VenueMapListener.onGetVenueCompleted() method:

// Listener for the venue loading event
private final VenueMapListener venueMapListener = (venueIdentifier, venueModel, online, venueStyle) -> {
    if (venueModel == null) {
        Log.e(TAG, "Failed to load the venue: " + venueIdentifier);
    }
};

Note

For legacy maps with an int based venue ID, VenueService calls the VenueListener.onGetVenueCompleted(venueID, venueModel, online, venueStyle) method.

Once the venue is loaded successfully, if you are using the addVenueAsync() method, only the VenueMapLifecycleListener.onVenueAdded() method will be triggered. If you are using the selectVenueAsync() method, the VenueSelectionListener.onSelectedVenueChanged() method will also be triggered:

// Listener for the venue selection event.
private final VenueSelectionListener venueSelectionListener =
    (deselectedVenue, selectedVenue) -> {
        if (selectedVenue != null) {
            // Move camera to the selected venue.
            GeoCoordinates venueCenter = selectedVenue.getVenueModel().getCenter();
            final double distanceInMeters = 500;
            MapMeasure mapMeasureZoom = new MapMeasure(MapMeasure.Kind.DISTANCE_IN_METERS, distanceInMeters);
            mapView.getCamera().lookAt(
                    new GeoCoordinates(venueCenter.latitude, venueCenter.longitude),
                    mapMeasureZoom);
            // This functions is used to facilitate the toggling of topology visibility.
            // Setting isTopologyVisible property to true will render the topology on scene and false will lead to hide the topology.
            selectedVenue.setTopologyVisible(true);
        }
    };

A Venue can also be removed from the VenueMap, which triggers the VenueMapLifecycleListener.onVenueRemoved(venueIdentifier) method:

venueEngine.getVenueMap().removeVenue(venue);

Note

For legacy maps with an int based venue ID, if you are using the addVenueAsync() method, the VenueLifecycleListener.onVenueAdded() method will be triggered.
When removing an int based venue ID from VenueMap, the VenueLifecycleListener.onVenueRemoved(venueID) is triggered.

Label text preference

You can override the default label text preference for a venue.

Once the VenueEngine is initialized, a callback is called. From this point on, there is access to the VenueService. The optional method setLabeltextPreference() can be called to set the label text preference during rendering. Overriding the default style label text preference provides an opportunity to set the following options as a list where the order defines the preference:

  • "OCCUPANT_NAMES"
  • "SPACE_NAME"
  • "INTERNAL_ADDRESS"
  • "SPACE_TYPE_NAME"
  • "SPACE_CATEGORY_NAME"

These can be set in any desired order. For example, if the label text preference does not contain "OCCUPANT_NAMES" then it will switch to "SPACE_NAME" and so on, based on the order of the list. Nothing is displayed if no preference is found.

private void onVenueEngineInitCompleted() {
    // Get VenueService and VenueMap objects.
    VenueService service = venueEngine.getVenueService();
    VenueMap venueMap = venueEngine.getVenueMap();

    // Add needed listeners.
    service.add(serviceListener);
    service.add(venueListener);
    venueMap.add(venueSelectionListener);

    // Start VenueEngine. Once authentication is done, the authentication callback
    // will be triggered. After, VenueEngine will start VenueService. Once VenueService
    // is initialized, VenueServiceListener.onInitializationCompleted method will be called.
    venueEngine.start((authenticationError, authenticationData) -> {
        if (authenticationError != null) {
            Log.e(TAG, "Failed to authenticate, reason: " + authenticationError.value);
        }
    });

    if(HRN != "") {
        // Set platform catalog HRN
        service.setHrn(HRN);
    }

    // Set label text preference
    service.setLabeltextPreference(LabelPref);
}

Select venue drawings and levels

A Venue object allows you to control the state of the venue.

The methods getSelectedDrawing() and setSelectedDrawing() allow you to get and set a drawing which is visible on the map. When a new drawing is selected, the VenueDrawingSelectionListener.onDrawingSelected() method is triggered.

The following provides an example of how to select a drawing when an item is clicked in a ListView:

@Override
public void onItemClick(AdapterView<?> parent, final View view, int position, long id) {
    VenueModel venueModel = venue.getVenueModel();
    // Set the selected drawing when a user clicks on the item in the list.
    venue.setSelectedDrawing(venueModel.getDrawings().get(position));
}

The methods getSelectedLevelIndex() and setSelectedLevelIndex() allow you to get and set a level based on the location within the list of levels. When a new level is selected, the VenueLevelSelectionListener.onLevelSelected() method is triggered.

The following provides an example of how to select a level based on a reversed levels list from ListView:

listView.setOnItemClickListener((parent, view, position, id) -> {
    if (venueMap.getSelectedVenue() != null) {
        // Revers an index, as levels in LevelSwitcher appear in a different order
        venueMap.getSelectedVenue().setSelectedLevelIndex(maxLevelIndex - position);
    }
});

A full example of the UI switchers to control drawings and levels is available in the "IndoorMap" example app, available on GitHub.

Customize the style of a venue

You can change the visual style of VenueGeometry objects. Geometry style and/or label style objects must be created and provided to the Venue.setCustomStyle() method:

private final VenueGeometryStyle geometryStyle = new VenueGeometryStyle(
        SELECTED_COLOR, SELECTED_OUTLINE_COLOR, 1);
private final VenueLabelStyle labelStyle = new VenueLabelStyle(
        SELECTED_TEXT_COLOR, SELECTED_TEXT_OUTLINE_COLOR, 1, 28);
ArrayList<VenueGeometry> geometries =
        new ArrayList<>(Collections.singletonList(geometry));
venue.setCustomStyle(geometries, geometryStyle, labelStyle);

Select space by identifier

The ID of spaces, levels and drawings can be extracted using getIdentifier(), e.g. for spaces call: spaces.getIdentifier(). Then, for using those id values, a specific space can be searched in a level or a drawing with getGeometryById(String id).

ArrayList<String> geometriesID;
ArrayList<VenueGeometry> geometries;
for(String id : geometriesID)
{
    VenueGeometry geometry = selectVenue.getSelectedDrawing().getGeometryById(id);
    geometries.add(geometry);
}
private final VenueGeometryStyle geometryStyle = new VenueGeometryStyle(
        SELECTED_COLOR, SELECTED_OUTLINE_COLOR, 1);
private final VenueLabelStyle labelStyle = new VenueLabelStyle(
        SELECTED_TEXT_COLOR, SELECTED_TEXT_OUTLINE_COLOR, 1, 28);
selectVenue.setCustomStyle(geometries, geometryStyle, labelStyle);

Handle tap gestures on a venue

You can select a venue object by tapping it. First, set the tap listener:

mapView.getGestures().setTapListener(tapListener);

Inside the tap listener, you can use the tapped geographic coordinates as parameter for the VenueMap.getGeometry() and VenueMap.getVenue() methods:

private final TapListener tapListener = origin -> {
    deselectGeometry();

    // Get geo position of the tap.
    GeoCoordinates position = mapView.viewToGeoCoordinates(origin);
    if (position == null) {
        return;
    }

    VenueMap venueMap = venueEngine.getVenueMap();
    // Get VenueGeometry under the tapped position.
    VenueGeometry geometry = venueMap.getGeometry(position);

    if (geometry != null) {
        // If there is a geometry, put a marker on top of it.
        marker = new MapMarker(position, markerImage, new Anchor2D(0.5f, 1f));
        mapView.getMapScene().addMapMarker(marker);
    } else {
        // If no geometry was tapped, check if there is a not-selected venue under
        // the tapped position. If there is one, select it.
        Venue venue = venueMap.getVenue(position);
        if (venue != null) {
            venueMap.setSelectedVenue(venue);
        }
    }
};

private void deselectGeometry() {
    // If marker is already on the screen, remove it.
    if (marker != null) {
        mapView.getMapScene().removeMapMarker(marker);
    }
}

HERE recommends that you deselect the tapped geometry when the selected venue, drawing, or level has changed:

private final VenueSelectionListener venueSelectionListener =
        (deselectedController, selectedController) -> deselectGeometry();

private final VenueDrawingSelectionListener drawingSelectionListener =
        (venue, deselectedController, selectedController) -> deselectGeometry();

private final VenueLevelSelectionListener levelChangeListener =
        (venue, drawing, oldLevel, newLevel) -> deselectGeometry();

void setVenueMap(VenueMap venueMap) {
    if (this.venueMap == venueMap) {
        return;
    }

    // Remove old venue map listeners.
    removeListeners();
    this.venueMap = venueMap;

    if (this.venueMap != null) {
        this.venueMap.add(venueSelectionListener);
        this.venueMap.add(drawingSelectionListener);
        this.venueMap.add(levelChangeListener);
        deselectGeometry();
    }
}

private void removeListeners() {

    if (this.venueMap != null) {
        this.venueMap.remove(venueSelectionListener);
        this.venueMap.remove(drawingSelectionListener);
        this.venueMap.remove(levelChangeListener);
    }
}

A full example showing usage of the map tap event with venues is available in the "IndoorMap" example app, available on GitHub.

Indoor Routing

The HERE SDK for Android (Navigate) provides comprehensive indoor routing capabilities, allowing you to calculate and visualize routes within venues. This section covers how to set up and use indoor routing features.

Indoor route at HERE Berlin office.

Indoor Route calculation

To calculate an indoor route, you need to create an IndoorRoutingEngine and specify waypoints with venue and level information. A waypoint would be created for each departure and arrival locations.

First, create the routing engine:

IndoorRoutingEngine routingEngine = new IndoorRoutingEngine(venueEngine.getVenueService());

Create waypoints for the start and destination locations. For indoor locations, specify the venue ID and level ID:

IndoorWaypoint startPoint = new IndoorWaypoint(
    position,
    String.valueOf(venueModel.getIdentifier()),
    String.valueOf(venue.getSelectedLevel().getIdentifier()));

IndoorWaypoint destinationPoint = new IndoorWaypoint(
    position,
    String.valueOf(venueModel.getIdentifier()),
    String.valueOf(venue.getSelectedLevel().getIdentifier()));

Calculate the route using the routingEngine:

IndoorRouteOptions routeOptions = new IndoorRouteOptions();
engine.calculateRoute(startPoint, destinationPoint, routeOptions, 
    (routingError, routeList, routeNotices) -> {
        // Handle route notices (available even on success)
        if (routeNotices != null && !routeNotices.isEmpty()) {
            for (IndoorRouteNotice notice : routeNotices) {
                Log.d(TAG, notice.severity + ": " + notice.title);
            }
        }
        
        if (routingError == null && routeList != null) {
            Route route = routeList.get(0);
            // Use the calculated route
        }
    });

Multilevel route calculation

Indoor routes can span multiple levels within a venue. The SDK automatically handles level transitions and provides information about level changes in the route.

To access indoor section details and level information:

for (Section section : route.getSections()) {
    // Check if section has indoor details
    if (section.getIndoorSectionDetails() != null) {
        IndoorSectionDetails indoorDetails = section.getIndoorSectionDetails();
        Log.d(TAG, "Indoor Section - Departure: " +
            indoorDetails.getDeparturePlace().venueId);
        Log.d(TAG, "Indoor Section - Arrival: " +
            indoorDetails.getArrivalPlace().venueId);

        // Iterate through indoor maneuvers
        for (IndoorManeuver indoorManeuver : indoorDetails.getIndoorManeuvers()) {
            if (indoorManeuver.getAction() != null) {
                Log.d(TAG, "IndoorManeuver Action: " + indoorManeuver.getAction());
            }
            Log.d(TAG, "IndoorManeuver Location Info: Level_Z_Index: " +
                indoorManeuver.getLevelZIndex());

            // Check for level change data
            if (indoorManeuver.getIndoorLevelChangeData() != null) {
                Log.d(TAG, "IndoorManeuver Level change using: " +
                    indoorManeuver.getIndoorLevelChangeData().connector +
                    " changeInLevel: " +
                    indoorManeuver.getIndoorLevelChangeData().deltaZ);
            }
        }
    }
}

The IndoorLevelChangeData provides information about:

  • connector: The type of level connector used (elevator, stairs, escalator, ramp, etc.)
  • deltaZ: The change in level (positive for going up, negative for going down)

Error handling and route notices

The route calculation callback provides both error information and route notices. Route notices provide detailed information about issues or warnings during route calculation, while routing errors indicate failures in the routing process itself.

Handling Route Notices

Route notices are provided in the callback even when routing succeeds. They contain important information about the calculated route:

engine.calculateRoute(startPoint, destinationPoint, routeOptions, 
    (routingError, routeList, routeNotices) -> {
        // Handle route notices first (available even on success)
        if (routeNotices != null && !routeNotices.isEmpty()) {
            for (IndoorRouteNotice notice : routeNotices) {
                String logMessage = notice.title;
                
                // Log based on severity
                if (notice.severity == NoticeSeverity.CRITICAL) {
                    Log.e(TAG, "CRITICAL: " + logMessage);
                } else {
                    Log.w(TAG, "INFO: " + logMessage);
                }
                
                // Handle specific notice codes
                switch (notice.code) {
                    // CRITICAL notices - route calculation failed
                    case NO_ROUTE_FOUND:
                        // No Route was found
                        break;
                    case COULD_NOT_MATCH_ORIGIN:
                        // Origin waypoint could not be matched
                        break;
                    case COULD_NOT_MATCH_DESTINATION:
                        // Destination waypoint could not be matched
                        break;
                    
                    // INFO notices - vehicle usage violations
                    case VIOLATED_ROUTE_HEAD_CONDITION:
                        // Cannot provide route with the given vehicle routeHead condition
                        Log.w(TAG, "Cannot provide route with the given vehicle routeHead condition");
                        break;
                    case VIOLATED_ROUTE_TAIL_CONDITION:
                        // Cannot provide route with the given vehicle routeTail condition
                        Log.w(TAG, "Cannot provide route with the given vehicle routeTail condition");
                        break;
                    case VIOLATED_ENTIRE_ROUTE_CONDITION:
                        // Cannot provide route with the given vehicle entireRoute condition
                        Log.w(TAG, "Cannot provide route with the given vehicle entireRoute condition");
                        break;
                }
                
                // Access additional details
                if (notice.details != null && !notice.details.isEmpty()) {
                    for (IndoorRouteNoticeDetails detail : notice.details) {
                        Log.d(TAG, "Detail - Type: " + detail.type + 
                                   ", Cause: " + detail.cause + 
                                   ", Title: " + detail.title);
                    }
                }
            }
        }
        
        // Handle routing errors
        if (routingError != null) {
            String errorMsg;
            switch (routingError) {
                case MAP_NOT_FOUND:
                    errorMsg = "Requested map not found";
                    break;
                case PARSING_ERROR:
                    errorMsg = "Routing response not in correct format";
                    break;
                case UNKNOWN_ERROR:
                default:
                    errorMsg = "Unknown error encountered";
                    break;
            }
            Log.e(TAG, "Routing error: " + errorMsg);
            return;
        }
        
        // Process successful route
        if (routeList != null && !routeList.isEmpty()) {
            Route route = routeList.get(0);
            // Use the calculated route
        }
    });
Route-level Notice Codes

The following route-level notices appear at the top level of the response and generally indicate a high-level failure or condition violation:

Notice CodeSeverityCategoryDescription
NO_ROUTE_FOUNDCRITICALRoute FailureNo Route was found
COULD_NOT_MATCH_ORIGINCRITICALRoute FailureOrigin waypoint could not be matched
COULD_NOT_MATCH_DESTINATIONCRITICALRoute FailureDestination waypoint could not be matched
NO_ROUTE_FOUND_WITH_WAYPOINTCRITICALRoute FailureNo route available between given origin and destination with given waypoint
COULD_NOT_MATCH_WAYPOINTCRITICALRoute FailureWaypoint could not be matched. Nearest routing node not found
VIOLATED_ROUTE_HEAD_CONDITIONINFOVehicle ViolationCannot provide route with the given vehicle routeHead condition
VIOLATED_ROUTE_TAIL_CONDITIONINFOVehicle ViolationCannot provide route with the given vehicle routeTail condition
VIOLATED_ENTIRE_ROUTE_CONDITIONINFOVehicle ViolationCannot provide route with the given vehicle entireRoute condition
IGNORED_VEHICLE_ENABLEINFOIgnored ParameterVehicle enable option is ignored for the given transport mode
IGNORED_VEHICLE_SPEEDINFOIgnored ParameterVehicle speed is ignored for the given transport mode
IGNORED_VEHICLE_AVOID_FEATURESINFOIgnored ParameterLevelConnectors associated with vehicle are ignored which are received as a part of avoid features
VIOLATED_TRANSPORT_MODEINFOTransport ModeCannot provide route with the selected transport mode.

Note: CRITICAL notices indicate route calculation failure. INFO notices provide warnings about parameter violations or ignored options but routing may still succeed.

Section-level Notice Codes

The following section-level notices appear within an individual route section and indicate that a route restriction could not be avoided for that section:

Notice CodeSeverityCategoryDescription
VIOLATED_AVOID_STAIRSINFOAvoidance ViolationRoute violates avoid constraint for stairs
VIOLATED_AVOID_ELEVATORINFOAvoidance ViolationRoute violates avoid constraint for elevator
VIOLATED_AVOID_RAMPINFOAvoidance ViolationRoute violates avoid constraint for ramp
VIOLATED_AVOID_ESCALATORINFOAvoidance ViolationRoute violates avoid constraint for escalator
VIOLATED_AVOID_PEDESTRIAN_RAMPINFOAvoidance ViolationRoute violates avoid constraint for pedestrian ramp
VIOLATED_AVOID_CAR_LIFTINFOAvoidance ViolationRoute violates avoid constraint for car lift
VIOLATED_AVOID_DRIVE_RAMPINFOAvoidance ViolationRoute violates avoid constraint for drive ramp
VIOLATED_AVOID_ELEVATOR_BANKINFOAvoidance ViolationRoute violates avoid constraint for elevator bank

Note: Section-level violatedAvoid... notices are informational and have severity info.

Avoidance option for level connector

You can configure the routing engine to avoid specific types of level connectors based on user preferences or accessibility requirements when calculating the Indoor Route.

IndoorRouteOptions routeOptions = new IndoorRouteOptions();

// Add features to avoid
routeOptions.indoorAvoidanceOptions.indoorFeatures.add(
    IndoorLevelChangeFeatures.ELEVATOR);
routeOptions.indoorAvoidanceOptions.indoorFeatures.add(
    IndoorLevelChangeFeatures.ESCALATOR);
routeOptions.indoorAvoidanceOptions.indoorFeatures.add(
    IndoorLevelChangeFeatures.STAIRS);

Available level connector types that can be avoided:

  • ELEVATOR: Elevators
  • ESCALATOR: Escalators
  • STAIRS: Stairs
  • RAMP: General ramps
  • PEDESTRIAN_RAMP: Pedestrian-specific ramps
  • DRIVE_RAMP: Drive ramps (for vehicle routes)
  • CAR_LIFT: Car lifts (for vehicle routes)
  • ELEVATOR_BANK: Elevator banks
  • CONNECTOR: Generic connectors

Example for vehicle routes avoiding drive ramps and car lifts:

IndoorRouteOptions routeOptions = new IndoorRouteOptions();
routeOptions.transportMode = VenueTransportMode.CAR;

// Avoid vehicle-specific features
routeOptions.indoorAvoidanceOptions.indoorFeatures.add(
    IndoorLevelChangeFeatures.CAR_LIFT);
routeOptions.indoorAvoidanceOptions.indoorFeatures.add(
    IndoorLevelChangeFeatures.DRIVE_RAMP);

To remove an avoidance option:

routeOptions.indoorAvoidanceOptions.indoorFeatures.remove(
    IndoorLevelChangeFeatures.ELEVATOR);

Route Preferences

Configure route calculation preferences using the IndoorRouteOptions object.

Route Optimization Mode

Choose between fastest and shortest route:

IndoorRouteOptions routeOptions = new IndoorRouteOptions();

// For fastest route
routeOptions.routeOptions.optimizationMode = OptimizationMode.FASTEST;

// For shortest route
routeOptions.routeOptions.optimizationMode = OptimizationMode.SHORTEST;

Multi-Modal Transport Support

The HERE SDK supports multiple transport modes for indoor routing: pedestrian, car, taxi, and scooter. You can configure transport-specific parameters using VenueTransportSpecification.

Pedestrian Routes

For pedestrian routes, use VenuePedestrianSpecification to set walking speed:

// Create pedestrian specification
VenuePedestrianSpecification pedestrianSpec = new VenuePedestrianSpecification();
pedestrianSpec.walkingSpeedInMetersPerSecond = 1.5; // Valid range: 0.5 to 2.0 m/s

// Create transport specification using Builder
VenueTransportSpecification transportSpec = 
    new VenueTransportSpecification.PedestrianBuilder()
        .withPedestrianSpecification(pedestrianSpec)
        .build();

// Create route options
IndoorRouteOptions routeOptions = new IndoorRouteOptions();
routeOptions.transportMode = VenueTransportMode.PEDESTRIAN;
routeOptions.venueTransportSpecification = transportSpec;

Vehicle Routes (Car, Taxi, Scooter)

For vehicle-based routes, configure vehicle-specific parameters:

// Create car specification
VenueCarSpecification carSpec = new VenueCarSpecification();
carSpec.speedInMetersPerSecond = 3.0; // Valid range: 2.0 to 5.0 m/s
carSpec.enableOption = EnableOption.ROUTE_HEAD; // Use car only at route start

// Also set pedestrian spec for walking portions
VenuePedestrianSpecification pedestrianSpec = new VenuePedestrianSpecification();
pedestrianSpec.walkingSpeedInMetersPerSecond = 1.4;

// Create transport specification using Builder
VenueTransportSpecification transportSpec = 
    new VenueTransportSpecification.CarBuilder()
        .withCarSpecification(carSpec)
        .build();

// Create route options
IndoorRouteOptions routeOptions = new IndoorRouteOptions();
routeOptions.transportMode = VenueTransportMode.CAR;
routeOptions.venueTransportSpecification = transportSpec;

The same pattern applies to VenueTaxiSpecification and VenueScooterSpecification.

Vehicle Enable Options

The EnableOption enum controls where a vehicle can be used along the route:

  • ROUTE_HEAD: Use vehicle only at the start of the route (e.g., park car near entrance, then walk)
  • ROUTE_TAIL: Use vehicle only at the end of the route (e.g., walk first, then drive from parking)
  • ENTIRE_ROUTE: Use vehicle for the entire route

Example with scooter at route tail:

VenueScooterSpecification scooterSpec = new VenueScooterSpecification();
scooterSpec.speedInMetersPerSecond = 5.0;
scooterSpec.enableOption = EnableOption.ROUTE_TAIL;

VenueTransportSpecification transportSpec = 
    new VenueTransportSpecification.ScooterBuilder()
        .withScooterSpecification(scooterSpec)
        .build();

IndoorRouteOptions routeOptions = new IndoorRouteOptions();
routeOptions.transportMode = VenueTransportMode.SCOOTER;
routeOptions.venueTransportSpecification = transportSpec;

Section-Based Routes with Transport Mode Changes

Routes with vehicle transport modes may have multiple sections with different transport modes:

for (Section section : route.getSections()) {
    // Get transport mode for this section
    SectionTransportMode sectionMode = section.getSectionTransportMode();
    
    switch (sectionMode) {
        case PEDESTRIAN:
            Log.d(TAG, "Walking section");
            break;
        case CAR:
            Log.d(TAG, "Driving section");
            break;
        case TAXI:
            Log.d(TAG, "Taxi section");
            break;
        case SCOOTER:
            Log.d(TAG, "Scooter section");
            break;
    }
    
    Log.d(TAG, "Section distance: " + section.getLengthInMeters() + " meters");
}

Waypoint Support

The HERE SDK supports waypoints for indoor routing, allowing you to specify intermediate points that the route must pass through between the origin and destination. Waypoints are processed in the exact order provided.

Creating waypoints

Waypoints are created using IndoorWaypoint and added to the IndoorRouteOptions.viaWaypoints list. A maximum of 5 waypoints are allowed.

IndoorWaypoint represents an indoor waypoint used as input for indoor route calculation. It can specify the origin, destination, and waypoints in a route request. Each waypoint type has different constraints on the supported properties:

Origin Waypoint:

  • Does NOT support stopDuration
  • Does NOT support passThrough
  • Use the basic constructor: new IndoorWaypoint(coordinates, venueId, levelId)

Destination Waypoint:

  • Supports stopDuration (e.g., for specifying arrival/waiting time)
  • Does NOT support passThrough
  • Use new IndoorWaypoint(coordinates, venueId, levelId) or new IndoorWaypoint(coordinates, venueId, levelId, stopDuration)

Indoor Waypoint:

  • Supports both stopDuration and passThrough
  • Use new IndoorWaypoint(coordinates, venueId, levelId), new IndoorWaypoint(coordinates, venueId, levelId, stopDuration), or new IndoorWaypoint(coordinates, venueId, levelId, passThrough)
  • When passThrough is true, the route continues without stopping
  • When passThrough is false or null, the route stops at the waypoint
  • When stopDuration is specified, the route stops for the given duration

Validation

When a route request is made, the waypoints are validated according to the rules above. If validation fails (e.g., origin has stopDuration or passThrough, or destination has passThrough), the route request returns an error with IndoorRoutingError.BAD_REQUEST.

There are two types of waypoints:

  • Stopover Point: The route stops at the waypoint. Optionally, a stopDuration (in seconds) can be specified to indicate a waiting time. Stopover Points create separate section in route.
  • Passthrough Point: The route passes through the waypoint without stopping. Passthrough Points do not create section and appear in the section's passthrough points list.

Note

A waypoint cannot have both passThrough enabled and stopDuration set. These options are mutually exclusive.

Stopover Points

To create a waypoint where the route stops, use the default constructor or the constructor with stopDuration:

// Basic stopover point (creates a section in route response)
IndoorWaypoint waypointStop = new IndoorWaypoint(
    position,
    String.valueOf(venueModel.getIdentifier()),
    String.valueOf(venue.getSelectedLevel().getIdentifier()));

// Stopover point with a duration (in seconds, range: 1-49999)
IndoorWaypoint waypointStopWithDuration = new IndoorWaypoint(
    position,
    String.valueOf(venueModel.getIdentifier()),
    String.valueOf(venue.getSelectedLevel().getIdentifier()),
    60); // Stop for 60 seconds

Passthrough Points

To create a waypoint that the route passes through without stopping, use the constructor with passThrough set to true:

// Passthrough point (does not create a section in route response)
IndoorWaypoint waypointPassThrough = new IndoorWaypoint(
    position,
    String.valueOf(venueModel.getIdentifier()),
    String.valueOf(venue.getSelectedLevel().getIdentifier()),
    true); // passThrough = true

Setting waypoints in route options

Add waypoints to IndoorRouteOptions before calculating the route:

IndoorRouteOptions routeOptions = new IndoorRouteOptions();

// Create waypoints
List<IndoorWaypoint> waypoints = new ArrayList<>();
waypoints.add(waypoint1);
waypoints.add(waypoint2);

// Set waypoints in route options
routeOptions.viaWaypoints = waypoints;

// Calculate the route
engine.calculateRoute(startPoint, destinationPoint, routeOptions,
    (routingError, routeList, routeNotices) -> {
        if (routingError == null && routeList != null && !routeList.isEmpty()) {
            Route route = routeList.get(0);
            // Use the calculated route
        }
    });

Accessing passthrough points in the route

When passthrough points are used, they appear in the IndoorSectionDetails.getPassthroughWaypoints() list along with their offset within the section polyline:

for (Section section : route.getSections()) {
    if (section.getIndoorSectionDetails() != null) {
        IndoorSectionDetails indoorDetails = section.getIndoorSectionDetails();

        // Access passthrough points within this section
        for (IndoorPassThroughWaypoint passthrough :
                indoorDetails.getPassthroughWaypoints()) {
            Log.d(TAG, "Passthrough point at offset: " + passthrough.offset);
            Log.d(TAG, "Venue ID: " + passthrough.place.venueId);
            Log.d(TAG, "Level ID: " + passthrough.place.levelId);
        }
    }
}

Accessing post actions for stopover points

When stopover points with stopDuration are used, a WAIT action is added to the section's post actions list:

for (Section section : route.getSections()) {
    if (section.getIndoorSectionDetails() != null) {
        IndoorSectionDetails indoorDetails = section.getIndoorSectionDetails();

        // Access post actions (e.g., WAIT actions at waypoints)
        for (IndoorManeuver postAction : indoorDetails.getPostActions()) {
            if (postAction.getAction() == IndoorManeuverActions.WAIT) {
                Log.d(TAG, "Wait action at waypoint");
            }
        }
    }
}

Waypoint error handling

The route calculation may return specific notice codes related to waypoints:

Notice CodeSeverityCategoryDescription
COULD_NOT_MATCH_WAYPOINTCRITICALRoute FailureWaypoint could not be matched. Nearest routing node not found
NO_ROUTE_FOUND_WITH_WAYPOINTCRITICALRoute FailureNo route available between given origin and destination with given waypoint
engine.calculateRoute(startPoint, destinationPoint, routeOptions,
    (routingError, routeList, routeNotices) -> {
        if (routeNotices != null) {
            for (IndoorRouteNotice notice : routeNotices) {
                switch (notice.code) {
                    case COULD_NOT_MATCH_WAYPOINT:
                        Log.e(TAG, "Waypoint could not be matched. Nearest routing node not found");
                        break;
                    case NO_ROUTE_FOUND_WITH_WAYPOINT:
                        Log.e(TAG, "No route available between given origin and destination with given waypoint");
                        break;
                }
            }
        }
    });

Turn by turn actions

Indoor routes provide detailed turn-by-turn maneuver information through the IndoorManeuver class.

for (Section section : route.getSections()) {
    if (section.getIndoorSectionDetails() != null) {
        IndoorSectionDetails indoorDetails = section.getIndoorSectionDetails();

        for (IndoorManeuver indoorManeuver : indoorDetails.getIndoorManeuvers()) {
            // Get the maneuver action
            if (indoorManeuver.getAction() != null) {
                Log.d(TAG, "Action: " + indoorManeuver.getAction());
            }

            // Get the level information
            Log.d(TAG, "Level Z-Index: " + indoorManeuver.getLevelZIndex());

            // Check for level change information
            if (indoorManeuver.getIndoorLevelChangeData() != null) {
                Log.d(TAG, "Level change via: " +
                    indoorManeuver.getIndoorLevelChangeData().connector);
                Log.d(TAG, "Change in levels: " +
                    indoorManeuver.getIndoorLevelChangeData().deltaZ);
            }

            // Get space information (room/area details)
            if (indoorManeuver.getIndoorSpaceData() != null) {
                Log.d(TAG, "Space Category: " +
                    indoorManeuver.getIndoorSpaceData().spaceCategory);
                Log.d(TAG, "Space Type: " +
                    indoorManeuver.getIndoorSpaceData().spaceType);
            }
        }
    }
}

The IndoorManeuver provides:

  • Action: The type of maneuver to perform
  • Level Z-Index: The vertical level of the maneuver
  • Indoor Level Change Data: Information about level transitions including the connector type and change in level
  • Indoor Space Data: Details about the space being entered or traversed, including category and type

Route ETA and distance covered

You can retrieve the estimated time of arrival (ETA) and total distance from the calculated route.

Route route = routeList.get(0);

// Get the total duration in seconds
long durationInSeconds = route.getDuration().getSeconds();

// Get the total length in meters
int lengthInMeters = route.getLengthInMeters();

// Format for display
Log.d(TAG, "Route duration: " + durationInSeconds + " seconds");
Log.d(TAG, "Route distance: " + lengthInMeters + " meters");

// Convert to more readable format
long minutes = durationInSeconds / 60;
long seconds = durationInSeconds % 60;
double kilometers = lengthInMeters / 1000.0;

Log.d(TAG, String.format("ETA: %d min %d sec", minutes, seconds));
Log.d(TAG, String.format("Distance: %.2f km", kilometers));

For section-level details:

for (Section section : route.getSections()) {
    long sectionDuration = section.getDuration().getSeconds();
    int sectionLength = section.getLengthInMeters();

    Log.d(TAG, "Section duration: " + sectionDuration + " seconds");
    Log.d(TAG, "Section distance: " + sectionLength + " meters");
}

Route rendering

The IndoorRoutingController handles the visualization of indoor routes on the map.

First, create the controller:

IndoorRoutingController controller = new IndoorRoutingController(venueMap, mapView);

Polyline rendering

To display a route on the map, use the showRoute() method.

// Create route style
IndoorRouteStyle routeStyle = new IndoorRouteStyle();

// Show the route
controller.showRoute(route, routeStyle);

To hide the route:

controller.hideRoute();

Level change icons placing

Configure custom markers for different route elements and level change indicators:

IndoorRouteStyle routeStyle = new IndoorRouteStyle();

// Set start and destination markers
Anchor2D middleBottomAnchor = new Anchor2D(0.5, 1.0);
MapImage startImage = MapImageFactory.fromResource(
    context.getResources(), R.drawable.ic_route_start);
MapMarker startMarker = new MapMarker(
    new GeoCoordinates(0.0, 0.0), startImage, middleBottomAnchor);
routeStyle.setStartMarker(startMarker);

MapImage endImage = MapImageFactory.fromResource(
    context.getResources(), R.drawable.ic_route_end);
MapMarker endMarker = new MapMarker(
    new GeoCoordinates(0.0, 0.0), endImage, middleBottomAnchor);
routeStyle.setDestinationMarker(endMarker);

// Set transport mode markers
MapImage walkImage = MapImageFactory.fromResource(
    context.getResources(), R.drawable.indoor_walk);
MapMarker walkMarker = new MapMarker(
    new GeoCoordinates(0.0, 0.0), walkImage, new Anchor2D());
routeStyle.setWalkMarker(walkMarker);

MapImage driveImage = MapImageFactory.fromResource(
    context.getResources(), R.drawable.indoor_drive);
MapMarker driveMarker = new MapMarker(
    new GeoCoordinates(0.0, 0.0), driveImage, new Anchor2D());
routeStyle.setDriveMarker(driveMarker);

Configure markers for level change features with directional indicators:

// Configure markers for each level change feature
IndoorLevelChangeFeatures[] features = new IndoorLevelChangeFeatures[] {
    IndoorLevelChangeFeatures.ELEVATOR,
    IndoorLevelChangeFeatures.ESCALATOR,
    IndoorLevelChangeFeatures.STAIRS,
    IndoorLevelChangeFeatures.RAMP
};

for (IndoorLevelChangeFeatures feature : features) {
    // Create markers for up, down, and neutral directions
    MapMarker upMarker = createMarkerForFeature(feature, 1);    // Going up
    MapMarker downMarker = createMarkerForFeature(feature, -1); // Going down
    MapMarker neutralMarker = createMarkerForFeature(feature, 0); // No vertical change

    routeStyle.setIndoorMarkersFor(feature, upMarker, downMarker, neutralMarker);
}

Helper method to create markers based on feature type and direction:

private MapMarker createMarkerForFeature(IndoorLevelChangeFeatures feature, int deltaZ) {
    int resourceId = getResourceForFeature(feature, deltaZ);
    if (resourceId == 0) {
        return null;
    }

    MapImage image = MapImageFactory.fromResource(
        context.getResources(), resourceId);
    if (image != null) {
        return new MapMarker(new GeoCoordinates(0.0, 0.0), image, new Anchor2D());
    }
    return null;
}

private int getResourceForFeature(IndoorLevelChangeFeatures feature, int deltaZ) {
    switch (feature) {
        case ELEVATOR:
            if (deltaZ > 0) return R.drawable.indoor_elevator_up;
            if (deltaZ < 0) return R.drawable.indoor_elevator_down;
            return R.drawable.indoor_elevator;
        case ESCALATOR:
            if (deltaZ > 0) return R.drawable.indoor_escalator_up;
            if (deltaZ < 0) return R.drawable.indoor_escalator_down;
            return R.drawable.indoor_escalator;
        case STAIRS:
            if (deltaZ > 0) return R.drawable.indoor_stairs_up;
            if (deltaZ < 0) return R.drawable.indoor_stairs_down;
            return R.drawable.indoor_stairs;
        case RAMP:
            if (deltaZ > 0) return R.drawable.indoor_ramp_up;
            if (deltaZ < 0) return R.drawable.indoor_ramp_down;
            return R.drawable.indoor_ramp;
        default:
            return 0;
    }
}

The deltaZ parameter indicates the direction:

  • 1 (positive): Going up to a higher level
  • -1 (negative): Going down to a lower level
  • 0: No vertical level change

The showRoute() method only supports limited customization for rendering a route, if you wish to apply advanced level customization you can do so by using a MapPolyline that is drawn between each coordinate of the route; refer to Show the route on the map.

A full example showing usage of indoor routing with venues is available in the "IndoorMap" example app, available on GitHub.


Did this page help you?