This repository was archived by the owner on Jul 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathseat-selection.ts
More file actions
28 lines (28 loc) · 4.42 KB
/
seat-selection.ts
File metadata and controls
28 lines (28 loc) · 4.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
* seatSelection geojson
*/
//tslint:disable
export let seatData: any =
{"type":"FeatureCollection", "features": [
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0,0],[0,20],[20,20],[20,0],[0,0]]],[[[0,22],[0,27],[20,27],[20,22],[0,22]]]]},"properties":{"seatno":19,"fill":"gray"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0,47],[0,67],[20,67],[20,47],[0,47]]],[[[0,69],[0,74],[20,74],[20,69],[0,69]]]]},"properties":{"seatno":18,"fill":"gray"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0,94],[0,114],[20,114],[20,94],[0,94]]],[[[0,116],[0,121],[20,121],[20,116],[0,116]]]]},"properties":{"seatno":13,"fill":"gray"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0,141],[0,161],[20,161],[20,141],[0,141]]],[[[0,163],[0,168],[20,168],[20,163],[0,163]]]]},"properties":{"seatno":12,"fill":"gray"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0,188],[0,208],[20,208],[20,188],[0,188]]],[[[0,210],[0,215],[20,215],[20,210],[0,210]]]]},"properties":{"seatno":7,"fill":"gray"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0,235],[0,255],[20,255],[20,235],[0,235]]],[[[0,257],[0,262],[20,262],[20,257],[0,257]]]]},"properties":{"seatno":6,"fill":"gray"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0,282],[0,302],[20,302],[20,282],[0,282]]],[[[0,304],[0,309],[20,309],[20,304],[0,304]]]]},"properties":{"seatno":1,"fill":"gray"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[50,0],[50,20],[70,20],[70,0],[50,0]]],[[[50,22],[50,27],[70,27],[70,22],[50,22]]]]},"properties":{"seatno":20,"fill":"gray"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[50,47],[50,67],[70,67],[70,47],[50,47]]],[[[50,69],[50,74],[70,74],[70,69],[50,69]]]]},"properties":{"seatno":17,"fill":"gray"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[50,94],[50,114],[70,114],[70,94],[50,94]]],[[[50,116],[50,121],[70,121],[70,116],[50,116]]]]},"properties":{"seatno":14,"fill":"Orange"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[50,141],[50,161],[70,161],[70,141],[50,141]]],[[[50,163],[50,168],[70,168],[70,163],[50,163]]]]},"properties":{"seatno":11,"fill":"gray"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[50,188],[50,208],[70,208],[70,188],[50,188]]],[[[50,210],[50,215],[70,215],[70,210],[50,210]]]]},"properties":{"seatno":8,"fill":"gray"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[50,235],[50,255],[70,255],[70,235],[50,235]]],[[[50,257],[50,262],[70,262],[70,257],[50,257]]]]},"properties":{"seatno":5,"fill":"gray"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[50,282],[50,302],[70,302],[70,282],[50,282]]],[[[50,304],[50,309],[70,309],[70,304],[50,304]]]]},"properties":{"seatno":2,"fill":"Orange"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[80,0],[80,20],[100,20],[100,0],[80,0]]],[[[80,22],[80,27],[100,27],[100,22],[80,22]]]]},"properties":{"seatno":21,"fill":"gray"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[80,47],[80,67],[100,67],[100,47],[80,47]]],[[[80,69],[80,74],[100,74],[100,69],[80,69]]]]},"properties":{"seatno":16,"fill":"gray"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[80,94],[80,114],[100,114],[100,94],[80,94]]],[[[80,116],[80,121],[100,121],[100,116],[80,116]]]]},"properties":{"seatno":15,"fill":"Orange"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[80,141],[80,161],[100,161],[100,141],[80,141]]],[[[80,163],[80,168],[100,168],[100,163],[80,163]]]]},"properties":{"seatno":10,"fill":"gray"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[80,188],[80,208],[100,208],[100,188],[80,188]]],[[[80,210],[80,215],[100,215],[100,210],[80,210]]]]},"properties":{"seatno":9,"fill":"gray"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[80,235],[80,255],[100,255],[100,235],[80,235]]],[[[80,257],[80,262],[100,262],[100,257],[80,257]]]]},"properties":{"seatno":4,"fill":"gray"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[80,282],[80,302],[100,302],[100,282],[80,282]]],[[[80,304],[80,309],[100,309],[100,304],[80,304]]]]},"properties":{"seatno":3,"fill":"gray"}}
]};