laravel-eloquent-spatial icon indicating copy to clipboard operation
laravel-eloquent-spatial copied to clipboard

Laravel Eloquent spatial package.

Results 7 laravel-eloquent-spatial issues
Sort by recently updated
recently updated
newest added

Thank you for your work on this package! I've been fighting an issue for the past week that I can't find a resolution to. I don't know if this is...

It would be brilliant if the API spatial scopes could be expanded to support [`ST_Buffer`](https://dev.mysql.com/doc/refman/8.0/en/spatial-operator-functions.html#function_st-buffer), e.g. --- ### whereBuffer Filters records within a buffer. Uses [ST_Buffer](https://dev.mysql.com/doc/refman/8.0/en/spatial-operator-functions.html#function_st-buffer). | parameter name |...

The AAA (Arrange, Act Assert) pattern's purpose is to organize your test in a way that is easier to read and understand. You can read about it here: https://github.com/goldbergyoni/javascript-testing-best-practices#-%EF%B8%8F-12-structure-tests-by-the-aaa-pattern In...

good first issue

The current implementation of GeometryCast requires SRID to pressent in the expression. The `ST_GeomFromText` specifications allows SRID not to be specified * [Mysql](https://dev.mysql.com/doc/refman/8.4/en/gis-wkt-functions.html#function_st-geomfromtext) * [PostGIS](https://postgis.net/docs/ST_GeomFromText.html) I have adjusted GeometryCast to...

I have a `geography` column (called `location`) and the built-in `withDistance` and `whereDistance` functions are casting the column to a `geometry` (via `GeometryExpression:normalize()`). Are `geography` columns not supported? ``` public...