如何使热图可单击



我已经在下面连接了我的代码,我一直在尝试生成可点击的热图。实际的热图是生成的,但我无法产生点击事件。

这是我的代码:

const centerLocation = new google.maps.LatLng(
  Number(28.555040),
  Number(77.241920)
);
const mapProp = {
  center: centerLocation,
  zoom: 12,
  mapTypeId: google.maps.MapTypeId.ROADMAP,
  clickableIcons: true
};
this.map = new google.maps.Map(this.gmapElement.nativeElement, mapProp);
const location = new google.maps.LatLng(
  Number(28.555040),
  Number(77.241920)
);
for (let i = 0; i < userData.length; i++) {
  this.marker = new google.maps.Marker({
    position: new google.maps.LatLng(+userData[i][1], +userData[i][2]),
    map: this.map,
    icon: this.userimage,
    title: userData[i][0]
  });
  // tslint:disable-next-line:no-shadowed-variable
  google.maps.event.addListener(this.marker, 'click', (function (marker, i) {
    return function () {
      infowindow.setContent('<a href="#">' + userData[i][0] + '</a>');
      infowindow.open(this.map, this);
    };
  })(this.marker, i));
}
const infowindow = new google.maps.InfoWindow();
for (let i = 0; i < eventData.length; i++) {
  this.marker = new google.maps.Marker({
    position: new google.maps.LatLng(+eventData[i][1], +eventData[i][2]),
    map: this.map,
    icon: this.image,
    title: eventData[i][0]
  });

  // tslint:disable-next-line:no-shadowed-variable
  google.maps.event.addListener(this.marker, 'click', (function (marker, i) {
    return function () {
      infowindow.setContent('<a href="#">' + eventData[i][0] + '</a>');
      infowindow.open(this.map, this);
    };
  })(this.marker, i));
}
// console.warn(location);
this.marker.setPosition(location);
this.heatmap = new google.maps.visualization.HeatmapLayer({
  data: heatmapData,
  dissipating: true,
  radius: 50
});
this.heatmap.setMap(this.map);
// For heatmap color
const gradient = [
  'rgba(0, 255, 255, 0)',
  'rgba(0, 255, 255, 1)',
  'rgba(0, 191, 255, 1)',
  'rgba(0, 127, 255, 1)',
  'rgba(0, 63, 255, 1)',
  'rgba(0, 0, 255, 1)',
  'rgba(0, 0, 223, 1)',
  'rgba(0, 0, 191, 1)',
  'rgba(0, 0, 159, 1)',
  'rgba(0, 0, 127, 1)',
  'rgba(63, 0, 91, 1)',
  'rgba(127, 0, 63, 1)',
  'rgba(191, 0, 31, 1)',
  'rgba(255, 0, 0, 1)'
];
this.heatmap.set('gradient', gradient);
// For heatmap color
this.heatmap.set('opacity', 0.6);

如果通过'Clickable',则意味着交互式您可能需要查看提供该特定实用程序的复杂HeatMaps。支持文档可以在此处找到。可以在此页面上找到可以找到哪种交互性的一个示例。

使用以下一项下载软件包...

最新的(您必须使用force = true):

library(devtools)
install_github("jokergoo/ComplexHeatmap", force = TRUE)
library(ComplexHeatmap)

稳定:

if (!requireNamespace("BiocManager", quietly = TRUE))
    install.packages("BiocManager")
BiocManager::install("ComplexHeatmap", version = "3.8")

另外,您可能想考虑使用IHEATMAPR,尽管我对此一无所知。由于它的设计具有互动性,因此可能对您有用。这是《开源软件杂志》中描述的方式。

R中有很棒的工具用于创建简单的交互式热图 (Galili 2016,Cheng and Galili(2016))或创建静态综合体 热图(GU,EILS和Schlesner 2016)。但是,没有工具 促进复杂的互动热图的创建。 theiheatmapr软件包填补了这一空白,从而创造了高度 可自定义,交互式,复杂的热图使用绘图库 (Sievert等人,2016年)。由此产生的交互式可视化可以 轻松将可重现的R Markdown报告纳入以进行共享 与合作者

相关内容

  • 没有找到相关文章

最新更新