How to show heatmaps on all visible elements at the same time?

I tested the Heatmaps SDK and I wanted to know if there is a setting or way to show heatmaps on all visible elements at the same time? Currently, I can view one item at a time, as shown below.

This is my setup and below are snapshots of the results:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { UIViewController *rootVC = _window.rootViewController; self.window = [[HMUIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; self.window.rootViewController = rootVC; heatmaps = [[Heatmaps alloc] init]; heatmaps.showDebug = YES; heatmaps.showMenu = YES; [heatmaps start]; //... return YES; } 

enter image description hereenter image description here

0
source share
1 answer

Currently, you can only see the heating map for one element at a time.

+1
source

Source: https://habr.com/ru/post/1383052/


All Articles