GeoJSON - allow 'null' properties in Feature
objects [#4177]
This commit is contained in:
parent
fba418d20b
commit
7d1a559ae2
1 changed files with 1 additions and 1 deletions
|
@ -272,7 +272,7 @@ auto const feature_part_def = feature_type
|
|||
|
|
||||
(lit("\"geometry\"") > lit(':') > geometry_rule[assign_geometry])
|
||||
|
|
||||
(lit("\"properties\"") > lit(':') > lit('{') > -properties > lit('}'))
|
||||
(lit("\"properties\"") > lit(':') > ((lit('{') > -properties > lit('}')) | lit("null")))
|
||||
|
|
||||
(omit[geojson_string] > lit(':') > omit[value])
|
||||
;
|
||||
|
|
Loading…
Reference in a new issue