|
@@ -31,7 +31,43 @@ class Preview extends CatchController
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
+ function randFloat($min=0, $max=1){
|
|
|
+ return $min + mt_rand()/mt_getrandmax() * ($max-$min);
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * 获取地图上所有设备地址 以及信号统计 井类型统计
|
|
|
+ *
|
|
|
+ */
|
|
|
+ public function getDeviceAddressList(){
|
|
|
+ // $deviceList=$this->mainDevice->select()->toArray();
|
|
|
+ $start=$_REQUEST['start']?$_REQUEST['start']*10000:0;
|
|
|
+ $limit=$_REQUEST['limit']?:10000;
|
|
|
+
|
|
|
+ // $deviceList=$this->deviceModel->dataRange()->limit($start,$limit)->cache(60)->column('id,point_x,point_y,addr,well_type');
|
|
|
+ // var_dump($deviceList);
|
|
|
+ $addrList=array();
|
|
|
+ for($i=0;$i<50;$i++){
|
|
|
+ $a=mt_rand();
|
|
|
+ $b=mt_getrandmax();
|
|
|
+ $c=$a/$b;
|
|
|
+ $lng=mt_rand(100, 118)+$c;
|
|
|
+ $lat=mt_rand(25, 35)+$c;
|
|
|
+ // var_dump($lng);
|
|
|
+ // var_dump($lat);
|
|
|
+ $item=array('value'=>[$lng, $lat],'name'=>"测试风场".$i,'address'=>'风场位置'.$i,'number'=>mt_rand(0, 20));
|
|
|
+ array_push($addrList,$item);
|
|
|
+ }
|
|
|
+ // foreach($deviceList as $val){
|
|
|
+ // $item=array('value'=>[$val['point_y'], $val['point_x']],'name'=>$val['addr']);
|
|
|
+ // array_push($addrList,$item);
|
|
|
+ // }
|
|
|
+ $res['addrList']=$addrList;
|
|
|
+ // $res['total']=$this->deviceModel->dataRange()->count();
|
|
|
+ $res['total']=80;
|
|
|
+ return CatchResponse::success($res);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 获取智能插座统计
|
|
|
*
|