加载库模块时,角度抛出库__WEBPACK_IMPORTED_MODULE_4__错误

时间:2019-07-10 13:21:33

标签: javascript angular typescript mapbox

我想使用库超级集群来聚类我的数据点。该库已添加并加载,但是每当我尝试实例化Supercluster类时都会抛出错误。

  

错误TypeError:supercluster__WEBPACK_IMPORTED_MODULE_4__不是构造函数

chrome开发工具中的图片显示模块正在加载:

module_loaded

这是我正在使用的相关代码的修改版本,来自超级集群自己的示例代码(https://github.com/mapbox/supercluster)中的示例。

import { Component, OnInit } from '@angular/core';
import * as Supercluster from 'supercluster';

@Component({
  selector: 'app-test-cluster-view',
  templateUrl: './test-cluster-view.component.html',
  styleUrls: ['./test-cluster-view.component.scss']
})
export class TestClusterViewComponent implements OnInit{

 ngOnInit() {
  const index = new Supercluster({
    radius: 40,
    maxZoom: 16
  });
 }

}

这是怎么回事?如果文档记录不当,是否可以提供更多代码或信息,请告诉我。预先感谢。

0 个答案:

没有答案