inmap icon indicating copy to clipboard operation
inmap copied to clipboard

热力图设置半径样式后,地图上的点全部消失,代码如下

Open iamllitog opened this issue 7 years ago • 0 comments

var data=[{"count":6,"geometry":{"type":"Point","coordinates":["116.395645","39.929986"]}},{"count":6,"geometry":{"type":"Point","coordinates":["121.487899","31.249162"]}},{"count":5,"geometry":{"type":"Point","coordinates":["117.210813","39.14393"]}},{"count":4,"geometry":{"type":"Point","coordinates":["106.530635","29.544606"]}},{"count":4,"geometry":{"type":"Point","coordinates":["117.216005","31.859252"]}},{"count":8,"geometry":{"type":"Point","coordinates":["117.984943","26.050118"]}},{"count":2,"geometry":{"type":"Point","coordinates":["102.457625","38.103267"]}},{"count":9,"geometry":{"type":"Point","coordinates":["113.394818","23.408004"]}},{"count":1,"geometry":{"type":"Point","coordinates":["108.924274","23.552255"]}},{"count":2,"geometry":{"type":"Point","coordinates":["106.734996","26.902826"]}},{"count":0,"geometry":{"type":"Point","coordinates":["109.733755","19.180501"]}},{"count":2,"geometry":{"type":"Point","coordinates":["115.661434","38.61384"]}},{"count":0,"geometry":{"type":"Point","coordinates":["113.486804","34.157184"]}}];
var inmap = new inMap.Map({
  id: "allmap",
  skin: "Blueness",
  center: [105.403119, 38.028658],
  zoom: {
    value: 5,
    show: true,
    max: 18,
    min: 5
  }
});
var overlay = new inMap.HeatOverlay({
  style: {
      radius: 10, // 半径
      minScope: 0, // 最小区间,小于此区间的不显示
      maxScope: 1 // 最大区间,大于此区间的不显示
  }
});
inmap.add(overlay);
overlay.setData(data);
setTimeout(() => {
  overlay.setOptionStyle({
    radius: 20
  });
},3000);

iamllitog avatar Aug 14 '18 10:08 iamllitog