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