码迷,mamicode.com
首页 > Web开发 > 详细

PHP性状的使用

时间:2016-11-27 00:09:31      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:isset   maps   set   turn   style   oda   adapter   this   false   

<?php
trait Geocodable{
    /** @var string */
    protected $address;
    
    /** @var \Geocoder\Geocoder */ 
    protected $geocoder;
    
    /** @var \Geocoder\Result\Geocoded */
    protected $geocoderResult;
    
    public function setGeocoder(\GeoCoder\GeocoderInterface $gocoder)
    {
        $this->geocoder = $gocoder;
    }
    
    public function setAddress($address)
    {
        $this->address = $address;
    }
    
    public function getLatitude()
    {
        if (isset($this->geocoderResult) == false){
            $this->geocodeAddress();
        }
        
        return $this->geocoderResult->getLatitude();
    }
    
    public function getLongitude()
    {
        if (isset($this->geocoderResult) === false){
            $this->geocodeAddress();
        }
        
        return $this->geocoderResult->getLongitude();
    }
    
    protected function geocodeAddress()
    {
        $this->geocoderResult = $this->geocoder->geocode($this->address);
        
        return true;
    }
}

//使用性状
class RetailStore
{
    use Geocodable;
    
    
    //这里是类的实现
}


$geocoderAdapter = new \Geocoder\HttpAdapter\CurlHttpAdapter();
$geocoderProvider = new \Geocoder\Provider\GoogleMapsProvider($geocoderAdapter);
$geocoder = new \Geocoder\Geocoder($geocoderProvider);

$store = new RetailStore();
$store->setAddress(‘420 9th Avenue, New York, NY 10001 USA‘);
$store->setGeocoder($gocoder);

$latitude = $store->getLatitude();
$longitude = $store->getLongitude();
 echo $latitude, ‘:‘, $longitude;

 

PHP性状的使用

标签:isset   maps   set   turn   style   oda   adapter   this   false   

原文地址:http://www.cnblogs.com/yangcclg/p/6105451.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!