Skip to content

Instantly share code, notes, and snippets.

@derickr
Forked from meghangill/gist:9da9505374d2287ecb89
Last active September 23, 2015 10:32
Show Gist options
  • Save derickr/296a8f154d93cdf09146 to your computer and use it in GitHub Desktop.
Save derickr/296a8f154d93cdf09146 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 ]
] ],
'crs' => [
'type' => 'name',
'properties' => [
'name' => 'urn:x-mongodb:crs:strictwinding:EPSG:4326'
]
]
]
]
]
] );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment