0

所以让我们说我这种类型的数据:

  'Latitude' => string '45.798889' (length=9)
  'Longitude' => string '21.500833' (length=9)

现在我想找到这个位置附近的一些城市,这可能吗?

4

1 回答 1

0

不需要任何复杂的PHP使用Geospatial Indexing非常容易使用

$col->find(array('loc'=>array('$near'=>array(45.798889, 21.500833))));

其他选项包括$geoWithin, $geoIntersects,$nearSphere

于 2013-05-29T16:08:52.277 回答