简体   繁体   English

打开网络分析; 热图的正确实施有人吗?

[英]Open Web Analytics; correct implementation of heatmaps anyone?

the heatmap feature on open web analytics is a really cool one;开放式网络分析的热图功能非常酷; if you get it to work.如果你让它工作。 The documentation is incomplete and the wiki is totally unclear.文档不完整,维基也完全不清楚。 The forum has nothing come up so quite frustrating.论坛什么都没有出现,所以很令人沮丧。 Who has implemented heatmaps in OWA and could share how to do it?谁在 OWA 中实施了热图并可以分享如何做?

So this is the basic example code:所以这是基本的示例代码:

<script type="text/javascript">
//<![CDATA[
var owa_baseUrl = 'http://stats.viewcom.nl/';
var owa_cmds = owa_cmds || [];
owa_cmds.push(['setSiteId', 'xxx']);
owa_cmds.push(['trackPageView']);
owa_cmds.push(['trackClicks']);
owa_cmds.push(['trackDomStream']);

(function() {
    var _owa = document.createElement('script'); _owa.type = 'text/javascript'; _owa.async = true;
    owa_baseUrl = ('https:' == document.location.protocol ? window.owa_baseSecUrl || owa_baseUrl.replace(/http:/, 'https:') : owa_baseUrl );
    _owa.src = owa_baseUrl + 'modules/base/js/owa.tracker-combined-min.js';
    var _owa_s = document.getElementsByTagName('script')[0]; _owa_s.parentNode.insertBefore(_owa, _owa_s);
}());
//]]>

The wiki refers to:维基指的是:

http://wiki.openwebanalytics.com/index.php?title=Heatmap

adding somehow, somewhere( unclear ):以某种方式在某处添加(不清楚):

//create the object
var heatmap = new owa.heatmap();
heatmap.generate();

Sorry for late answer, but i got here via the Google search myself and was quite disapointed that nobody have answered.抱歉回复晚了,但我自己是通过谷歌搜索来到这里的,对没有人回答感到非常失望。 I was struggling with the same question - "How to enable/see heatmpas in OWA" until i scanned their demo page from az.我一直在努力解决同样的问题——“如何在 OWA 中启用/查看 heatmpas”,直到我从 az 扫描了他们的演示页面。 Looks like heat maps are already engaged by default.看起来热图已经默认启用。 Just open report for any page and you should see a bottom link in "reports" section.只需打开任何页面的报告,您应该会在“报告”部分看到底部链接。看截图

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM