|
@@ -70,12 +70,13 @@ class Station extends Model
|
|
|
|
|
|
return $res;
|
|
return $res;
|
|
}
|
|
}
|
|
- public function getAllList(){
|
|
|
|
|
|
+ public function getAllList($start=0,$limit=4000){
|
|
$res = $this
|
|
$res = $this
|
|
->catchSearch()
|
|
->catchSearch()
|
|
// ->field('mac,name,latitude,longitude,online_time')
|
|
// ->field('mac,name,latitude,longitude,online_time')
|
|
->append(['is_online_text','is_online'])
|
|
->append(['is_online_text','is_online'])
|
|
->cache(120)
|
|
->cache(120)
|
|
|
|
+ ->limit($start,$limit)
|
|
->select()
|
|
->select()
|
|
->each(function($item, $key) {
|
|
->each(function($item, $key) {
|
|
$wgsLoc = \algorithm\Geometry::gcj02ToWgs84((float)$item['latitude'],(float)$item['longitude']);
|
|
$wgsLoc = \algorithm\Geometry::gcj02ToWgs84((float)$item['latitude'],(float)$item['longitude']);
|