LBS는 각 위치의 위도, 경도 좌표를 저장하고, 주변 위치를 검색하며, 지리적 위치 색인을 구축하여 쿼리 효율성을 향상시킵니다.
mongodb 지리적 위치 인덱스, 2d 및 2dsphere는 평면과 구에 해당합니다.
1. 파운드 컬렉션 저장 위치의 좌표를 생성합니다.
use lbs; db.lbs.insert( { loc:{ type: "Point", coordinates: [113.332264, 23.156206] }, name: "广州东站" } ) db.lbs.insert( { loc:{ type: "Point", coordinates: [113.330611, 23.147234] }, name: "林和西" } ) db.lbs.insert( { loc:{ type: "Point", coordinates: [113.328095, 23.165376] }, name: "天平架" } )
db.lbs.ensureIndex( { loc: "2dsphere" } )
현재 위치는 타임스퀘어,
좌표: 113.323568, 23.146436
가까운 것부터 먼 것까지 정렬하여 1km 이내의 주변 지점을 검색합니다.
db.lbs.find( { loc: { $near:{ $geometry:{ type: "Point", coordinates: [113.323568, 23.146436] }, $maxDistance: 1000 } } } )
{ "_id" : ObjectId("556a651996f1ac2add8928fa"), "loc" : { "type" : "Point", "coordinates" : [ 113.330611, 23.147234 ] }, "name" : "林和西" }
<?php // 连接mongodb function conn($dbhost, $dbname, $dbuser, $dbpasswd){ $server = 'mongodb://'.$dbuser.':'.$dbpasswd.'@'.$dbhost.'/'.$dbname; try{ $conn = new MongoClient($server); $db = $conn->selectDB($dbname); } catch (MongoException $e){ throw new ErrorException('Unable to connect to db server. Error:' . $e->getMessage(), 31); } return $db; } // 插入坐标到mongodb function add($dbconn, $tablename, $longitude, $latitude, $name){ $index = array('loc'=>'2dsphere'); $data = array( 'loc' => array( 'type' => 'Point', 'coordinates' => array(doubleval($longitude), doubleval($latitude)) ), 'name' => $name ); $coll = $dbconn->selectCollection($tablename); $coll->ensureIndex($index); $result = $coll->insert($data, array('w' => true)); return (isset($result['ok']) && !empty($result['ok'])) ? true : false; } // 搜寻附近的坐标 function query($dbconn, $tablename, $longitude, $latitude, $maxdistance, $limit=10){ $param = array( 'loc' => array( '$nearSphere' => array( '$geometry' => array( 'type' => 'Point', 'coordinates' => array(doubleval($longitude), doubleval($latitude)), ), '$maxDistance' => $maxdistance*1000 ) ) ); $coll = $dbconn->selectCollection($tablename); $cursor = $coll->find($param); $cursor = $cursor->limit($limit); $result = array(); foreach($cursor as $v){ $result[] = $v; } return $result; } $db = conn('localhost','lbs','root','123456'); // 随机插入100条坐标纪录 for($i=0; $i<100; $i++){ $longitude = '113.3'.mt_rand(10000, 99999); $latitude = '23.15'.mt_rand(1000, 9999); $name = 'name'.mt_rand(10000,99999); add($db, 'lbs', $longitude, $latitude, $name); } // 搜寻一公里内的点 $longitude = 113.323568; $latitude = 23.146436; $maxdistance = 1; $result = query($db, 'lbs', $longitude, $latitude, $maxdistance); print_r($result); ?>
PHP를 시연하려면 코드를 작성하려면 먼저 mongodb의 lbs에 있는 사용자 생성 및 인증 실행에 코드를 추가해야 합니다. 방법은 다음과 같습니다.
use lbs; db.createUser( { "user":"root", "pwd":"123456", "roles":[] } ) db.auth( { "user":"root", "pwd":"123456" } )
위 내용은 관련 내용을 포함하여 mongodb 지리적 위치 검색을 소개한 내용이 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.