Jesus Bracho
Jesus Bracho
We'd need to configure the layers / make a different non-clustered layer, this is the source of the features that are rendered and displayed on the side ```ts // src/components/PropertyMap.tsx...
Hmm. So we can toggle clustering, but only for `Source`s with a geojson type (missing from `VectorSourceSpecification`) ``` export type GeoJSONSourceSpecification = { "type": "geojson"; ... "cluster"?: boolean; ``` ```...
> @HeyZoos @nlebovits If we just use the polygon geojson data, would there be any potential performance issues? Would it slow down our map's load/rerender time? Technically yes, because with...
Hey gang, so it seems like the GeoJSON approach is a no-go. With the vector tile format, requests can be made to fetch a subset of the data resulting in...
Ok gang I tried it with an un-clustered version of the pmtiles and that did not work either ``` tippecanoe \ --force \ --no-feature-limit \ --no-tile-size-limit \ --drop-rate=0 \ -z14...
Features would still be dropped based on the zoom level, I think what it comes down to is that we can't display saved properties based on just the tile data...
Hello! I'd like to take a crack at this