Ryan McKinley created SOLR-8814:
-----------------------------------

             Summary: Suppor GeoJSON response format
                 Key: SOLR-8814
                 URL: https://issues.apache.org/jira/browse/SOLR-8814
             Project: Solr
          Issue Type: New Feature
          Components: Response Writers
            Reporter: Ryan McKinley
            Priority: Minor
             Fix For: master, 6.1


With minor changes, we can modify the existing JSON writer to produce a GeoJSON 
`FeatureCollection` for ever SolrDocumentList.  We can then pick a field to use 
as the geometry type, and use that for the Feature#geometry

{code}
"response":{"type":"FeatureCollection","numFound":1,"start":0,"features":[
      {"type":"Feature",
        "geometry":{"type":"Point","coordinates":[1,2]},
        "properties":{
          ... the normal solr doc fields here ...}}]
  }}
{code}

This will allow adding solr results directly to various mapping clients like 
[Leaflet|http://leafletjs.com/]



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to