Showing all points on MAP graph

Hey there !

I’m starting to really like this tool and trying it to build some internal dashboard to manage some IoT equipements.
Rookie there, here is my question :
I’m using the map feature on the cloud based solution influxdata, and I can’t find a way to show “all” the points of my lat/lon data (based on the time range selected).
Transformed it into a geo-temporal data as seen there Work with geo-temporal data | InfluxDB OSS 2.0 Documentation

How can I manage to show all the points here instead of just the last one ? (cf picture, showing only the last point :frowning: )

import "experimental/geo"
option geo.units = {distance: "km"}
from(bucket: "{hidden} Bucket")
  |> range(start: v.timeRangeStart, stop: v.timeRangeStop)
  |> filter(fn: (r) => r["_measurement"] == "geo")
  |> filter(fn: (r) => r["_field"] == "latitude" or r["_field"] == "longitude")
  |> filter(fn: (r) => r["camera"] == v.tikee)
  |> geo.shapeData(latField: "latitude", lonField: "longitude", level: 10)

Thanks ! :smiley: