コード例 #1
0
 /**
  * among the other variables we need to have the column names for longitude and latitude added in here
  *
  * @param array $options            
  */
 public function __construct($options)
 {
     Ch::ek($options, $this->requiredFields);
     $this->latitudeColumn = $options['latitudeColumn'];
     $this->longitudeColumn = $options['longitudeColumn'];
     parent::__construct($options);
 }