Guest User

Untitled

a guest
Jun 25th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. $users = User::where('location', 'geoWithin', [
  2. '$geometry' => [
  3. 'type' => 'Polygon',
  4. 'coordinates' => [[
  5. [
  6. -0.1450383,
  7. 51.5069158,
  8. ],
  9. [
  10. -0.1367563,
  11. 51.5100913,
  12. ],
  13. [
  14. -0.1270247,
  15. 51.5013233,
  16. ],
  17. [
  18. -0.1450383,
  19. 51.5069158,
  20. ],
  21. ]],
  22. ],
  23. ]);
  24.  
  25. "bounds" : [
  26. [
  27. 0.4614208,
  28. 179.7144413
  29. ],
  30. [
  31. -0.812961,
  32. 178.5828495
  33. ],
  34. [
  35. -2.0210651,
  36. -178.890295
  37. ],
  38. [
  39. 0.2307123,
  40. -177.5719357
  41. ]
  42. ],
  43.  
  44. $users = User::where('location', 'geoWithin', [
  45. '$geometry' => [
  46. 'type' => 'Polygon',
  47. 'coordinates' => [$shop->bounds],
  48. ],
  49. ]);
Add Comment
Please, Sign In to add comment