Adding a Wrld polygon indoors

Enter the Intercontinental Hotel to view the polygons.

<!DOCTYPE HTML>
<html>
  <head>
    <script src="https://unpkg.com/wrld.js@1.x.x"></script>
    <link href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.1/leaflet.css" rel="stylesheet" />
    <style>
      #floorButtons {
        position: absolute;
        z-index: 20;
      }

      #floorButtons button {
        display: block;
        width: 100%;
      }
    </style>
  </head>
  
  <body>
  <div style="position: relative">
    <div id="floorButtons">
      <button type="button" onclick="topFloor()">Top Floor</button>
      <button type="button" onclick="moveUp()">Move Up</button>
      <button type="button" onclick="moveDown()">Move Down</button>
      <button type="button" onclick="bottomFloor()">Bottom Floor</button>
      <button type="button" onclick="exitIndoors()">Exit</button>
    </div>

    <div id="map" style="height: 400px"></div>
    
    <script>
      var map = Wrld.map("map", "your_api_key_here", {
        center: [37.782084, -122.404578],
        zoom: 17,
        indoorsEnabled: true,
      });

      var polygonPoints = [
        [37.782084, -122.404578],
        [37.782126, -122.404530],
        [37.782057, -122.404440],
        [37.782012, -122.404491]
      ];

      // the intercontinental hotel in SF has 5 floors. Let's add a polygon to each of them.
      const floorCount = 5;
      for(var floorId = 0; floorId < floorCount; floorId++)
      {
        var polygonOptions = {
          indoorMapId: "intercontinental_hotel_8628",
          indoorMapFloorId: floorId
        };

        var indoorPoly = Wrld.native.polygon(polygonPoints, polygonOptions).addTo(map);
      }

      function topFloor() {
        var indoorMap = map.indoors.getActiveIndoorMap();

        if (indoorMap) {
          map.indoors.setFloor(indoorMap.getFloorCount() - 1);
        }
      }

      function moveUp() {
        map.indoors.moveUp();
      }

      function moveDown() {
        map.indoors.moveDown();
      }

      function bottomFloor() {
        map.indoors.setFloor(0);
      }

      function exitIndoors() {
        map.indoors.exit();
      }
    </script>

  </div>
  </body>
</html>
v1.1.0