You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Retrieves the distance between 2 geometry objects. Uses [ST_Distance](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-distance).
Filters records by distance. Uses [ST_Distance](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-distance).
Orders records by distance. Uses [ST_Distance](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-distance).
@@ -159,11 +159,11 @@ echo $places[1]->name; // first
159
159
160
160
Retrieves the spherical distance between 2 geometry objects. Uses [ST_Distance_Sphere](https://dev.mysql.com/doc/refman/8.0/en/spatial-convenience-functions.html#function_st-distance-sphere).
Filters records by spherical distance. Uses [ST_Distance_Sphere](https://dev.mysql.com/doc/refman/8.0/en/spatial-convenience-functions.html#function_st-distance-sphere).
Orders records by spherical distance. Uses [ST_Distance_Sphere](https://dev.mysql.com/doc/refman/8.0/en/spatial-convenience-functions.html#function_st-distance-sphere).
@@ -245,10 +245,10 @@ echo $places[1]->name; // first
245
245
246
246
Filters records by the [ST_Within](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-within) function.
247
247
248
-
| parameter name | type
249
-
|------------------ | --------------------
250
-
| `$column` | `string`
251
-
| `$geometryOrColumn` | `Geometry \| string`
248
+
| parameter name | type |
249
+
|---------------------|---------------------|
250
+
|`$column`|`string`|
251
+
|`$geometryOrColumn`|`Geometry \ string`|
252
252
253
253
<details><summary>Example</summary>
254
254
@@ -265,10 +265,10 @@ Place::query()
265
265
266
266
Filters records by the [ST_Within](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-within) function.
267
267
268
-
| parameter name | type
269
-
|------------------ | --------------------
270
-
| `$column` | `string`
271
-
| `$geometryOrColumn` | `Geometry \| string`
268
+
| parameter name | type |
269
+
|---------------------|---------------------|
270
+
|`$column`|`string`|
271
+
|`$geometryOrColumn`|`Geometry \ string`|
272
272
273
273
<details><summary>Example</summary>
274
274
@@ -285,10 +285,10 @@ Place::query()
285
285
286
286
Filters records by the [ST_Contains](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-contains) function.
287
287
288
-
| parameter name | type
289
-
|------------------ | --------------------
290
-
| `$column` | `string`
291
-
| `$geometryOrColumn` | `Geometry \| string`
288
+
| parameter name | type |
289
+
|---------------------|---------------------|
290
+
|`$column`|`string`|
291
+
|`$geometryOrColumn`|`Geometry \ string`|
292
292
293
293
<details><summary>Example</summary>
294
294
@@ -305,10 +305,10 @@ Place::query()
305
305
306
306
Filters records by the [ST_Contains](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-contains) function.
307
307
308
-
| parameter name | type
309
-
|------------------ | --------------------
310
-
| `$column` | `string`
311
-
| `$geometryOrColumn` | `Geometry \| string`
308
+
| parameter name | type |
309
+
|---------------------|---------------------|
310
+
|`$column`|`string`|
311
+
|`$geometryOrColumn`|`Geometry \ string`|
312
312
313
313
<details><summary>Example</summary>
314
314
@@ -325,10 +325,10 @@ Place::query()
325
325
326
326
Filters records by the [ST_Touches](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-touches) function.
327
327
328
-
| parameter name | type
329
-
|------------------ | --------------------
330
-
| `$column` | `string`
331
-
| `$geometryOrColumn` | `Geometry \| string`
328
+
| parameter name | type |
329
+
|---------------------|---------------------|
330
+
|`$column`|`string`|
331
+
|`$geometryOrColumn`|`Geometry \ string`|
332
332
333
333
<details><summary>Example</summary>
334
334
@@ -345,10 +345,10 @@ Place::query()
345
345
346
346
Filters records by the [ST_Intersects](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-intersects) function.
347
347
348
-
| parameter name | type
349
-
|------------------ | --------------------
350
-
| `$column` | `string`
351
-
| `$geometryOrColumn` | `Geometry \| string`
348
+
| parameter name | type |
349
+
|---------------------|---------------------|
350
+
|`$column`|`string`|
351
+
|`$geometryOrColumn`|`Geometry \ string`|
352
352
353
353
<details><summary>Example</summary>
354
354
@@ -365,10 +365,10 @@ Place::query()
365
365
366
366
Filters records by the [ST_Crosses](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-crosses) function.
367
367
368
-
| parameter name | type
369
-
|------------------ | --------------------
370
-
| `$column` | `string`
371
-
| `$geometryOrColumn` | `Geometry \| string`
368
+
| parameter name | type |
369
+
|---------------------|---------------------|
370
+
|`$column`|`string`|
371
+
|`$geometryOrColumn`|`Geometry \ string`|
372
372
373
373
<details><summary>Example</summary>
374
374
@@ -385,10 +385,10 @@ Place::query()
385
385
386
386
Filters records by the [ST_Disjoint](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-disjoint) function.
387
387
388
-
| parameter name | type
389
-
|------------------ | --------------------
390
-
| `$column` | `string`
391
-
| `$geometryOrColumn` | `Geometry \| string`
388
+
| parameter name | type|
389
+
|---------------------|---------------------|
390
+
|`$column`|`string`|
391
+
|`$geometryOrColumn`|`Geometry \ string`|
392
392
393
393
<details><summary>Example</summary>
394
394
@@ -405,10 +405,10 @@ Place::query()
405
405
406
406
Filters records by the [ST_Equal](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-equals) function.
407
407
408
-
| parameter name | type
409
-
|------------------ | --------------------
410
-
| `$column` | `string`
411
-
| `$geometryOrColumn` | `Geometry \| string`
408
+
| parameter name | type|
409
+
|---------------------|---------------------|
410
+
|`$column`|`string`|
411
+
|`$geometryOrColumn`|`Geometry \ string`|
412
412
413
413
<details><summary>Example</summary>
414
414
@@ -425,11 +425,11 @@ Place::query()
425
425
426
426
Filters records by the [ST_Srid](https://dev.mysql.com/doc/refman/8.0/en/gis-general-property-functions.html#function_st-srid) function.
0 commit comments