lat = $lat; } public function getLat() { return $this->lat; } /** * @param SafeUrlProto */ public function setLocationUrl(SafeUrlProto $locationUrl) { $this->locationUrl = $locationUrl; } /** * @return SafeUrlProto */ public function getLocationUrl() { return $this->locationUrl; } public function setLong($long) { $this->long = $long; } public function getLong() { return $this->long; } /** * @param MapTile[] */ public function setMapTile($mapTile) { $this->mapTile = $mapTile; } /** * @return MapTile[] */ public function getMapTile() { return $this->mapTile; } /** * @param int */ public function setZoom($zoom) { $this->zoom = $zoom; } /** * @return int */ public function getZoom() { return $this->zoom; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(MapInfo::class, 'Google_Service_CloudSearch_MapInfo');