Skip to content

Instantly share code, notes, and snippets.

@derickr
Forked from meghangill/gist:6a0f5511b2b362556bf0
Last active September 23, 2015 10:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save derickr/c99f833b919fb2028cdc to your computer and use it in GitHub Desktop.
Save derickr/c99f833b919fb2028cdc to your computer and use it in GitHub Desktop.
<?php
$c = (new MongoClient())->demo->points;
$c->find( [
'loc' => [
'$geoWithin' => [
'$geometry' => [
'type' => 'Polygon',
'coordinates' => [ [
[ -0.91, 51.74 ],
[ -0.91, 51.27 ],
[ 0.67, 51.27 ],
[ 0.67, 51.74 ],
[ -0.91, 51.74 ]
] ]
]
]
]
] );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment