Reputation: 532
Is the colorize-alpha method (aka: poor man's heatmap) specified here - https://www.mapbox.com/blog/colorize-alpha-image-filter/ - able to be used within the MapBox iOS SDK - https://www.mapbox.com/mapbox-ios-sdk/ - or is this only for web?
Upvotes: 1
Views: 1985
Reputation: 2187
You can try LFHeatMaps to generate a similar effect: https://github.com/gpolak/LFHeatMap
Upvotes: 0
Reputation: 5128
This sort of functionality isn't available in the MapBox iOS API, but unlike web, there are a lot of this sort of graphics capabilities in the base Cocoa/UIKit frameworks. Specifically check out this blog post for an example of colorizing imagery on the fly. It's not exactly a heat map, but if you produced a grayscale heat map like in Artem's post, you could color it in a similar way.
Upvotes: 1