Exif\Location::__toString PHP Method

__toString() public method

Echos the entire location as lat, lng
public __toString ( ) : string
return string
    public function __toString()
    {
        return trim(trim($this->lat() . ', ' . $this->lng(), ','));
    }