Created
February 21, 2016 13:58
-
-
Save hewerthomn/42ae1097e1ce8ba8de4e to your computer and use it in GitHub Desktop.
Filter places by coordinates radius
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$latlng = "-8.769926868691913 -63.88429307573199"; | |
$radius = 5000; | |
$places = Place::where(DB::raw("ST_Distance_Sphere(places.latlng, ST_GeometryFromText('SRID=4326;POINT({latlng})'))"), '<', $radius) | |
->select('offers.*', DB::raw("ST_Distance_Sphere(places.latlng, ST_GeometryFromText('SRID=4326;POINT({$latlng})')) AS distance")) | |
->get(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment