I make up a GeoJSON object for my MongoDB's 2dsphere
index like so (in PHP):
array (size=2)
'type' => string 'Point' (length=5)
'coordinates' =>
array (size=2)
0 => float 45
1 => float 95
Except this does not work in MongoDB, returning an error of:
Can't extract geo keys from object, malformed geometry
Why cannot not save this valid GeoJSON point?