Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var indoorMaps = indoorMaps({
  2.     floorSections: [
  3.         {
  4.             x: 0,
  5.             y: 0,
  6.             width: 100,
  7.             height: 100,
  8.             backgroundColor: "#03A9F4",
  9.             label: {
  10.                 color: "rgb(255, 255, 255)",
  11.                 text: "Meeting Room",
  12.                 alignment: "center|center",
  13.                 fontStyle: "Verdana",
  14.                 fontSize: "12"
  15.             }
  16.         },
  17.         {
  18.             type: 'path',
  19.             id: '1',
  20.             x: 100,
  21.             y: 0,
  22.             width: 20,
  23.             height: 100,
  24.             backgroundColor: "#BDBDBD"
  25.         },
  26.         {
  27.             type: 'path',
  28.             id: '2',
  29.             x: 0,
  30.             y: 100,
  31.             width: 320,
  32.             height: 20,
  33.             backgroundColor: "#BDBDBD"
  34.         },
  35.         {
  36.             x: 120,
  37.             y: 0,
  38.             width: 200,
  39.             height: 100,
  40.             backgroundColor: "#8BC34A",
  41.             label: {
  42.                 color: "rgb(255, 255, 255)",
  43.                 text: "Pantry",
  44.                 alignment: "center|center",
  45.                 fontStyle: "Verdana",
  46.                 fontSize: "12"
  47.             }
  48.         },
  49.         {
  50.             x: 0,
  51.             y: 120,
  52.             width: 500,
  53.             height: 100,
  54.             backgroundColor: "#795548",
  55.             label: {
  56.                 color: "rgb(255, 255, 255)",
  57.                 text: "Workspace",
  58.                 alignment: "center|center",
  59.                 fontStyle: "Verdana",
  60.                 fontSize: "12"
  61.             }
  62.         }
  63.     ]
  64. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement