Skip to content

Instantly share code, notes, and snippets.

@stoolrossa
Created October 25, 2011 16:41
Show Gist options
  • Save stoolrossa/1313388 to your computer and use it in GitHub Desktop.
Save stoolrossa/1313388 to your computer and use it in GitHub Desktop.
Couchbase Spatial View Function
function(doc) {
if (doc.geometry) {
emit(doc.geometry, { "id": doc._id });
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment