-
Notifications
You must be signed in to change notification settings - Fork 270
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Filter out points on lower zoom tiles #8
Comments
should this be left to supercluster now, or is it still planned to address this in geojson-vt? |
I'm not sure. We might want to still add some kind of point dropping like Tippecanoe does, although it might be difficult to implement. |
I would not view this as an enhancement. If your data is too dense then that should be dealt with by controlling at what zoom level the data is shown to the user. It could be confusing for the user if what is shown on a map is not a true representation and complicated for the developer to account for missing data at various zoom levels. If it is implemented it should be optional. |
@reyemtm yeah, it would probably be opt-in if implemented. |
I would be interested in point filtering or a different type of clustering. The existing marker cluster option is not sufficient if the dataset is not designed to cluster. E.g. 100,000 point data collected over a 100 ha field. Say we wanted to style each point based on its value then as you zoom out filter out should thin points out. Another interesting option would be to cluster points based on an average value inside a radius. |
We could just filter out same-coord points, but that's probably not enough. We can apply more sophisticated filtering algorithms, but it's tough to make a generic point filtering algorithm that suites any kind of data.
The text was updated successfully, but these errors were encountered: