Skip to content

Commit

Permalink
fixed multipoint feature in geojson
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmtech committed Oct 1, 2018
1 parent d313e6f commit 62705c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/map/geodata-import/geojson.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ MapGeodataImportGeoJSON.prototype.processGeometry = function(geometry, feature)
break;

case 'MultiPoint':
this.builder.addPointArray(cords, this.heightMode, feature['properties'], feature['properties'] ? feature['properties']['id'] : null, this.srs);
this.builder.addPointArray(coords, this.heightMode, feature['properties'], feature['properties'] ? feature['properties']['id'] : null, this.srs);
break;

case 'LineString':
Expand Down

0 comments on commit 62705c7

Please sign in to comment.