<?php
/**
* Checks for a partial match in the geocode response
*
* @return boolean
*/
public function isPartialResponse() {
if (isset($this->geocodeResponse['results'][0]['partial_match']) && $this->geocodeResponse['results'][0]['partial_match'] == 'true')
return true;
return false;
}