Add 511MN cameras layer
This commit is contained in:
parent
61ee67875c
commit
a6ff3d42f0
5 changed files with 156 additions and 0 deletions
40
layers/511mn/query.graphql
Normal file
40
layers/511mn/query.graphql
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
query MapFeatures($input: MapFeaturesArgs!, $plowType: String) {
|
||||
mapFeaturesQuery(input: $input) {
|
||||
mapFeatures {
|
||||
bbox
|
||||
tooltip
|
||||
uri
|
||||
features {
|
||||
id
|
||||
geometry
|
||||
properties
|
||||
}
|
||||
... on Event {
|
||||
priority
|
||||
}
|
||||
__typename
|
||||
... on Camera {
|
||||
views(limit: 5) {
|
||||
uri
|
||||
... on CameraView {
|
||||
url
|
||||
}
|
||||
category
|
||||
}
|
||||
}
|
||||
... on Plow {
|
||||
views(limit: 5, plowType: $plowType) {
|
||||
uri
|
||||
... on PlowCameraView {
|
||||
url
|
||||
}
|
||||
category
|
||||
}
|
||||
}
|
||||
}
|
||||
error {
|
||||
message
|
||||
type
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue