I have a dataset with several polylines created by GPS points of car trips. I am trying to create a simple heatmap where roads with more traffic (where polylines intersect) get darker.
I already tried overlapping each polyline and then applying a sligh opacity to each one and that works. The problem is that with huge amounts of data, the request to the server for the data is too big.
My idea is, in the server, process each trip and merge each overlapping polyline into a single one with and associated weight. Is there any way of doing this?