Add WI DOT cams layer

This commit is contained in:
Chandler Swift 2024-01-29 19:28:41 -06:00
parent f8e1126444
commit 3dadd8f592
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F
9 changed files with 161 additions and 5 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
}
}
}