Heatmap Analysis

更新时间:
复制 MD 格式
Note

This document provides usage and technical integration instructions for the Quick Tracking product. It is not a sales commitment. The specific products and technical services are subject to the terms of the commercial contract.

Overview

Quick Tracking provides a heatmap feature for PC web pages. After you enable this feature, you can perform heatmap analysis in the Behavior Analysis module. Note: Heatmaps are supported only for PC web pages, not for H5 pages. We recommend viewing heatmaps at a resolution of 1440 pixels wide.

Instructions

Integration method

Step 1. Integrate the SDK

Integrate the software development kit (SDK) by following the instructions in the web SDK integration guide.

Step 2. Enable the heatmap feature

<meta name="aplus-heatmap-enabled" content="1">

When this feature is enabled, the default heatmap sample rate is 1.

Step 3. Set the sample rate (Optional)

To manually configure the sample rate, add the following declaration. The value of {rate} must be between 0 and 1, and accurate to three decimal places.

<meta name="aplus-rate-ahot" content="{rate}">

Note: 1. Add the two meta tags to the <head> section of your HTML page. We recommend adding them to the source file instead of injecting them on the client at runtime. If you must inject the tags dynamically, ensure they are injected before the aplus.js file runs. 2. Recommended sample rates: Page clicks < 1,000: 1 1,000 < Page clicks < 10,000: 0.1 10,000 < Page clicks < 100,000: 0.01 Page clicks > 100,000: 0.001

A standard implementation is as follows:

<head> ... <meta name="aplus-heatmap-enabled" content="1"> <meta name="aplus-rate-ahot" content="1"> ... </head>