欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  资讯频道

Prototype教程:生成Google地图API和热点地图API

程序员文章站 2022-07-06 11:46:54
...
Prototype教程:生成Google地图API和热点地图API

Jeffrey Barke写了一个教程,使用Prototype生成Google地图API热点地图API

热点地图API相当酷,下面是例子:

addHeatMap: function() {

var heatMap = new GEOHeatmap();

heatMap.Init(this.width, this.height);

heatMap.SetData(this.data);

var preUrl = heatMap.GetURL();

var heatmapOverlay = new HMGoogleOverlay(preUrl);

this.map.addOverlay(heatmapOverlay);

}



相关标签: prototype Google