Skip to content

Commit

Permalink
ProtoFeature扩充,属性中支持数据、对象、数组与对象的相互嵌套,允许feature中的形状、属性为空
Browse files Browse the repository at this point in the history
  • Loading branch information
codingmiao committed Oct 31, 2022
1 parent 54e5f86 commit e4f72e3
Show file tree
Hide file tree
Showing 5 changed files with 2,613 additions and 1,830 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ public Feature(Geometry geometry) {
this.geometry = geometry;
}

public Feature(Map<String, Object> properties) {
this.properties = properties;
}

public Feature() {
}

Expand Down
Loading

0 comments on commit e4f72e3

Please sign in to comment.