首页 / 浏览问题 / 三维GIS / 问题详情
webgl热力图 如何用真实的坐标投放?
5EXP 2019年03月03日

现在使用的是这个 webgl的DEMO

http://support.supermap.com.cn:8090/webgl/examples/editor.html#Project_heatmap

怎么把这里投放的区域的随机坐标  换成  真实的坐标?

投放区域的坐标 和 真实的坐标怎么转化?

while(len--) {
        var val = Math.floor(Math.random()*100);
        max = Math.max(max, val);
        var point = {
            x : Math.floor(Math.random()*width),
            y : Math.floor(Math.random()*height),
            value : val
        };
    points.push(point)
    }
    var data = {
        max : max,
        data : points
    }
    heatmapInstance.setData(data);

1个回答

对 projectionImage.viewPosition = [x,y,z];属性进行设置
2,701EXP 2019年03月04日
这个是设置投放点的位置,我是希望用真实的经纬度坐标,设置热力点位置。
在idesktop中点数据集的中心的位置,然后设置投放点位置
...