File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
source/fundamentals/crud/read-operations Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -267,11 +267,7 @@ To search for geospatial data within a specified shape use the ``geoWithin()``
267
267
static utility method of the ``Filters`` builder class. The ``geoWithin()``
268
268
method constructs a query with the ``$geoWithin`` query operator.
269
269
270
- .. figure:: /includes/figures/geo_geometry.png
271
- :alt: Area of Long Island we are searching for movie theaters
272
-
273
- The following example searches for movie theaters in the section of Long Island
274
- described in the figure above.
270
+ The following example searches for movie theaters in a section of Long Island.
275
271
276
272
.. _example_range_query:
277
273
@@ -292,6 +288,12 @@ The output of the code snippet should look something like this:
292
288
{"location": {"address": {"city": "Mount Vernon"}}}
293
289
{"location": {"address": {"city": "Massapequa"}}}
294
290
291
+ The following figure shows the polygon defined by the
292
+ ``longIslandTriangle`` variable and dots representing the locations of
293
+ the movie theaters returned by our query.
294
+
295
+ .. figure:: /includes/figures/geo_geometry.png
296
+ :alt: Area of Long Island we are searching for movie theaters
295
297
296
298
For more information on the ``$geoWithin`` operator, see the
297
299
:manual:`reference documentation for $geoWithin </reference/operator/query/geoWithin/>`
You can’t perform that action at this time.
0 commit comments