You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 3, 2022. It is now read-only.
Had to modify this:
protected function _formatParametersForURL() {
if (!empty($this->_address)) {
return self::ADDRESS_FIELD_NAME.'='.$this->_address .
'&'.self::COMPONENTS_FIELD_NAME.'='.$this->_components .
'&'.self::LANGUAGE_FIELD_NAME.'='.$this->_language .
'&'.self::BOUNDS_FIELD_NAME.'='.$this->_bounds .
'&'.self::REGION_FIELD_NAME.'='.$this->_region .
'&'.self::SENSOR_FIELD_NAME.'='.$this->_sensor;
}
else {
return self::LAT_LNG_FIELD_NAME.'='.$this->_latlng .
'&'.self::COMPONENTS_FIELD_NAME.'='.$this->_components .
'&'.self::LANGUAGE_FIELD_NAME.'='.$this->_language .
'&'.self::BOUNDS_FIELD_NAME.'='.$this->_bounds .
'&'.self::REGION_FIELD_NAME.'='.$this->_region .
'&'.self::SENSOR_FIELD_NAME.'='.$this->_sensor;
}
And add $URLToCall = $this->_apiUrl . '/' . $this->_outputType . '?key='.$this->_apiKey . '&' . $urlParameters; @ line 54.
The text was updated successfully, but these errors were encountered: