Beispiel #1
0
 public static function addRectangle($NElat, $NElng, $SWlat, $SWlng, $type, $id)
 {
     $model = Venue::firstByAttributes(array('rec_id' => $id));
     if (!$model) {
         $model = new Venue();
     }
     $model->venue_type_id = 1;
     $model->lat_top_right = $NElat;
     $model->lng_top_right = $NElng;
     $model->lat_bottom_left = $SWlat;
     $model->lng_bottom_left = $SWlng;
     $model->rec_id = $id;
     if ($model->save()) {
         return TRUE;
     }
     return FALSE;
 }