You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TileEdge.js 243B

123456789101112131415
  1. /**
  2. * @private
  3. */
  4. var TileEdge = {
  5. WEST: 0,
  6. NORTH: 1,
  7. EAST: 2,
  8. SOUTH: 3,
  9. NORTHWEST: 4,
  10. NORTHEAST: 5,
  11. SOUTHWEST: 6,
  12. SOUTHEAST: 7
  13. };
  14. export default TileEdge;