Hi, I'm trying to read some geoJson features which includes properties with
nested json.

For example:

{
    "type": "Feature",
    "geometry": {
        "type": "Point",
        "coordinates": [
            100.1,
            0.1
        ]
    },
    "properties": {
        "id": 123,
        "otherProp": {
            "id": 1
            "name": "Name"
        }
    }
}

But, when parsed with FeatureJSON.readFeature, it simply discard the nested
properties (it appears with a null value).

There is any way to get this working?

Thanks!
------------------------------------------------------------------------------
_______________________________________________
GeoTools-Devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geotools-devel

Reply via email to