Skip to content

Commit

Permalink
filter geofences
Browse files Browse the repository at this point in the history
  • Loading branch information
jcardus committed Feb 16, 2024
1 parent 17fd95f commit 7453c32
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,21 @@
<b>{{ device && device.name }}</b>
</div>
<div class="mapboxgl-ctrl-timeline__control" style="flex-grow: 1">
<!--suppress CssUnknownTarget -->
<button
class="mapboxgl-ctrl-icon svg-button"
style="/*noinspection CssUnknownTarget*/background-image: url('backward.svg')"
style="background-image: url('backward.svg')"
@click="(i - 1 >= 0) && i--"
/>
<button
class="mapboxgl-ctrl-icon svg-button"
:style="`background-image: url('${playing ? 'pause' : 'play'}.svg')`"
@click="playing = !playing"
/>
<!--suppress CssUnknownTarget -->
<button
class="mapboxgl-ctrl-icon svg-button"
style="/*noinspection CssUnknownTarget*/background-image: url('forward.svg')"
style="background-image: url('forward.svg')"
@click="(i + 1 < path.length) && i++"
/>
<div class="mapboxgl-ctrl-timeline__label">
Expand Down

0 comments on commit 7453c32

Please sign in to comment.