Reputation: 213
I'm looking for a way to add POIs to SKMapView heat map which are generated from my app. In the example provided with SDK there's only a way to show categories from internal data source.
I looked at category from SKMaps SDK and there're only two methods:
@interface SKMapView (HeatMaps)
- (void)showHeatMapWithPOIType:(NSArray *)poiTypes;
- (void)clearHeatMap;
@end
Also I have another question: how to set minimal and maximal zoom level for heat maps?
As an alternative I'm looking for a way to add custom overlay like in Apple Maps:
[self.mapView addOverlay:self.heatMap];
Upvotes: 3
Views: 284
Reputation: 11429
Currently heat maps work only with OSM POI types - generating heat maps from a custom POI data set is on the roadmap in the second part of 2015
Upvotes: 4