Add 511MN cameras layer

This commit is contained in:
Chandler Swift 2024-01-29 02:24:53 -06:00
parent 61ee67875c
commit a6ff3d42f0
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F
5 changed files with 156 additions and 0 deletions

View 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
}
}
}