[Geoserver-devel] [JIRA] (GEOS-7551) GeoJson Support for List and Map types

Jody Garnett [Administrator] created an issue

GeoServer / New FeatureGEOS-7551

GeoJson Support for List and Map types

Issue Type:

New FeatureNew Feature

Assignee:

Unassigned

Components:

WFS

Created:

21/May/16 1:40 AM

Priority:

MediumMedium

Reporter:

Jody Garnett [Administrator]

Previously lists/maps were toString()'d instead of using JSON Arrays and Objects as allowed in the geojson spec:

"someMapAttr": "{key=value, foo=bar}",
"someListAttr": "[Edward, Bill, Harry]",

New encoding is like this for properties who bindings are java.util.List or java.util.Map:

"someMapAttr": {
   "foo": "bar",
   "key": "value"
},
"someListAttr": [
    "Edward",
    "Bill",
    "Harry"
],

Add Comment

Add Comment

This message was sent by Atlassian JIRA (v1000.5.2#72002-sha1:b4422fe)

Atlassian logo