Indoor Navigation Widget

With the help IndoorDirectionService you can use the navigation widget for better navigation experience such as turn by turn navigation.

  1. Example
  2. Running the Sample Locally

Example

Indoor Navigation Widget
        let map: woosmap.map.Map;
let indoorRenderer: woosmap.map.IndoorRenderer;
let indoorNavigation: woosmap.map.NavigationWidget;
let indoorService: woosmap.map.IndoorService;
let venue: string;

function initMap(): void {
  venue = "gdn_doc";
  map = new window.woosmap.map.Map(
    document.getElementById("map") as HTMLElement,
    { center: { lat: 43.6066, lng: 3.9218 } },
  );

  const conf: woosmap.map.IndoorRendererOptions = {
    venue: venue,
    responsive: "desktop",
  };

  indoorRenderer = new woosmap.map.IndoorRenderer(conf);

  indoorRenderer.setMap(map);

  // Indoor event that is triggered when the indoor venue is loaded.
  indoorRenderer.addListener("indoor_venue_loaded", (venue) => {
    indoorService = new window.woosmap.map.IndoorService();

    const request: woosmap.map.IndoorDirectionRequest = {
      venueId: "gdn_doc",
      origin: new window.woosmap.map.LatLng(48.8801287, 2.3548678),
      originLevel: 0,
      destination: new window.woosmap.map.LatLng(48.8799341, 2.3563779),
      destinationLevel: 0,
      units: "metric",
      originId: null,
      destinationId: null,
    };
    indoorService.directions(request, (response) => {
      if (response) {
        indoorRenderer.setDirections(response);
        indoorNavigation = new window.woosmap.map.NavigationWidget(
          indoorRenderer,
          exitNavigation,
        );
        indoorNavigation.setMap(map);
        hideLoader();
      }
    });
  });
}

const exitNavigation = () => {
  indoorNavigation.setMap(null);
  indoorRenderer.setDirections(null);
};

const hideLoader = () => {
  (document.querySelector(".progress") as HTMLElement).remove();
};

declare global {
  interface Window {
    initMap: () => void;
  }
}
window.initMap = initMap;

    
        let map;
let indoorRenderer;
let indoorNavigation;
let indoorService;
let venue;

function initMap() {
  venue = "gdn_doc";
  map = new window.woosmap.map.Map(document.getElementById("map"), {
    center: { lat: 43.6066, lng: 3.9218 },
  });

  const conf = {
    venue: venue,
    responsive: "desktop",
  };

  indoorRenderer = new woosmap.map.IndoorRenderer(conf);
  indoorRenderer.setMap(map);
  // Indoor event that is triggered when the indoor venue is loaded.
  indoorRenderer.addListener("indoor_venue_loaded", (venue) => {
    indoorService = new window.woosmap.map.IndoorService();

    const request = {
      venueId: "gdn_doc",
      origin: new window.woosmap.map.LatLng(48.8801287, 2.3548678),
      originLevel: 0,
      destination: new window.woosmap.map.LatLng(48.8799341, 2.3563779),
      destinationLevel: 0,
      units: "metric",
      originId: null,
      destinationId: null,
    };

    indoorService.directions(request, (response) => {
      if (response) {
        indoorRenderer.setDirections(response);
        indoorNavigation = new window.woosmap.map.NavigationWidget(
          indoorRenderer,
          exitNavigation,
        );
        indoorNavigation.setMap(map);
        hideLoader();
      }
    });
  });
}

const exitNavigation = () => {
  indoorNavigation.setMap(null);
  indoorRenderer.setDirections(null);
};

const hideLoader = () => {
  document.querySelector(".progress").remove();
};

window.initMap = initMap;

    
        /*
 * Always set the map height explicitly to define the size of the div element
 * that contains the map.
 */
#map {
  height: 100%;
}

/*
 * Optional: Makes the sample page fill the window.
 */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

#app {
  height: 100%;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.progress .spinner {
  border: 10px solid #f3f3f3;
  border-top: 10px solid #444444;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
}


    
        <html>
  <head>
    <title>Indoor Navigation Widget</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta charset="utf-8" />

    <link rel="stylesheet" type="text/css" href="./style.css" />
    <script type="module" src="./index.js"></script>
  </head>
  <body>
    <div id="app">
      <div class="progress">
        <div class="spinner"></div>
      </div>
      <!--The div element for the map -->
      <div id="map"></div>
    </div>

    <script
      src="https://sdk.woosmap.com/map/map.js?key=woos-48c80350-88aa-333e-835a-07f4b658a9a4&callback=initMap&libraries=widgets"
      defer
    ></script>
  </body>
</html>

    

Running the Sample Locally

Before you can run this sample on your local machine, you need to have Git and Node.js installed. If they’re not already installed, follow these instructions to get them set up.

Once you have Git and Node.js installed, you can run the sample by following these steps:

  1. Clone the repository and navigate to the directory of the sample.

  2. Install the necessary dependencies.

  3. Start running the sample.

Here are the commands you can use in your terminal to do this:

Shell
        git clone -b sample/indoor-navigation-widget https://github.com/woosmap/js-samples.git
cd js-samples
npm i
npm start

    

You can experiment with other samples by switching to any branch that starts with the pattern sample/SAMPLE_NAME.

Shell
        git checkout sample/SAMPLE_NAME
npm i
npm start

    
Was this article helpful?
Have more questions? Submit a request