grails.mongodb.geo._geometryCollection.gson Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of views-json-templates Show documentation
Show all versions of views-json-templates Show documentation
Grace Views : Views Json Templates
/**
* A template for rendering a GeoJSON GeometryCollection in MongoDB
*/
import grails.mongodb.geo.*
model {
GeometryCollection geometryCollection
}
json {
type "GeometryCollection"
geometries( geometryCollection ) { GeoJSON current ->
type current.getClass().simpleName
coordinates current.asList()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy