From 1d663e185b69fe0ef17ae32cc723eb42d32571fd Mon Sep 17 00:00:00 2001 From: Josh Baker Date: Thu, 10 Mar 2016 18:41:35 -0700 Subject: [PATCH] mention search object support --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 23194d13..70616d9f 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,8 @@ To set a field when an object already exists: ## Searching +Tile38 has support to search for objects and points that are within or intersects other objects. All object types can be searched including Polygons, MultiPolygons, GeometryCollections, etc. + Search Within #### Within WITHIN searches a collection for objects that are fully contained inside a specified bounding area. @@ -103,6 +105,9 @@ NEARBY searches a collection for objects that intersect a specified radius.
+ + + ### Search options **SPARSE** - This option will distribute the results of a search evenly across the requested area. This is very helpful for example; when you have many (perhaps millions) of objects and do not want them all clustered together on a map. Sparse will limit the number of objects returned and provide them evenly distributed so that your map looks clean.