本文整理匯總了PHP中app\models\Location::getAddress方法的典型用法代碼示例。如果您正苦於以下問題:PHP Location::getAddress方法的具體用法?PHP Location::getAddress怎麽用?PHP Location::getAddress使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類app\models\Location
的用法示例。
在下文中一共展示了Location::getAddress方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: location
public function location()
{
$hideWhereAmI = true;
$location = new Location();
$location->load();
if (!empty($_GET)) {
$location = new Location();
if (!empty($_GET['lat']) and !empty($_GET['lng'])) {
$location->getPoint()->setLat($_GET['lat']);
$location->getPoint()->setLng($_GET['lng']);
$location->save();
} elseif (!empty($_GET['cep'])) {
$address = new Address();
$address->setZipcode($_GET['cep']);
$geocode = $this->api->geocode($address);
if (!empty($geocode)) {
$location->getPoint()->setLat($geocode->getLat());
$location->getPoint()->setLng($geocode->getLng());
$revgeocode = $this->api->revgeocode($geocode->getLat(), $geocode->getLng());
$location->setAddress($revgeocode);
$location->save();
} else {
$this->redirect("profile/location");
}
} elseif (!empty($_GET['cityState'])) {
if (!strstr($_GET['cityState'], ',')) {
$this->redirect("profile/location");
}
$cityStateToUpper = strtoupper($_GET['cityState']);
list($cityField, $stateField) = \explode(',', $cityStateToUpper);
$city = new City();
$city->setName(trim($cityField));
$city->setState(trim($stateField));
$address = new Address();
$address->setCity(new City($city));
$geocode = $this->api->geocode($address);
if (!empty($geocode)) {
$location->getPoint()->setLat($geocode->getLat());
$location->getPoint()->setLng($geocode->getLng());
$location->getAddress()->setCity($city);
$location->save();
} else {
$this->redirect("profile/location");
}
}
$this->redirect("/");
}
$title = 'Onde estou';
return compact('title', 'geocode', 'hideWhereAmI', 'location');
}