mirror of https://gitee.com/antv-l7/antv-l7
修复要素创建索引的笔误
This commit is contained in:
parent
b5d12f9451
commit
e683c1a024
|
@ -2,7 +2,7 @@ import rbush from 'rbush';
|
|||
import turfBox from '@turf/bbox';
|
||||
export default class FeatureIndex {
|
||||
constructor(data) {
|
||||
this.tree = rbush();
|
||||
this.tree = new rbush();
|
||||
this.rawData = data;
|
||||
data.features.forEach(feature => {
|
||||
this.insert(feature);
|
||||
|
|
Loading…
Reference in New Issue