修复要素创建索引的笔误

This commit is contained in:
Tomxuetao 2019-08-27 17:40:41 +08:00
parent f5710d1d44
commit dbf6ad2806
1 changed files with 1 additions and 1 deletions

View File

@ -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);