Reputation: 29
I am working with Angular 6 and Leaflet 1.4.7 to implement a heatmap feature in two ways:
1.Heatmap with Colored Icons
2.Heatmap Without Icons
I have attached a reference image for clarity for #2. Any guidance or examples would be appreciated.
Also using only leaflet is not compulsory. If you know any better free library which can provide satellite view and physical map view along with these features please suggest.
I couldn't find any examples of highcharts with physical/ satellite view.
Upvotes: 0
Views: 37
Reputation: 161
As for the first approach, I can give you some steps related to Highcharts. Once you have your dynamically created icons, you can use ColorAxis to determine color range, see the API reference here: https://api.highcharts.com/highmaps/colorAxis
As for the traditional heatmap, again you can workout colors with ColorAxs, please see a sample demo here: https://www.highcharts.com/demo/maps/geoheatmap-europe
While Highcharts Maps doesn't directly provide satellite or physical map views, you can overlay Highcharts on maps from other libraries like Mapbox or Google Maps by synchronizing the data and using custom overlays.
Best regards,
Upvotes: 1