2014-03-28 179 views
0

有沒有一種方法可以顯示距離刻度 - 以KM或英里數或任何合理的方式顯示 - 如http://maps.google.com中所示,使用CodeIgniter-Google-Maps-V3-API-Library時會顯示?使用CodeIgniter-Google-Maps-V3-API-Library在Google地圖中顯示距離比例?


編輯

這是我做了什麼:

$this->load->library('googlemaps'); 

    $config['center'] = $center['latitude'].' '.$center['longitude']; 
    $config['zoom'] = '5'; 
    $config['cluster'] = false; 
    $config['disableScaleControl'] = false; 
    $config['scaleControlPosition'] = 'TOP_RIGHT'; 
    $config['disableDefaultUI']=false; 

    $this->googlemaps->initialize($config); 

而這就是我得到: enter image description here

+0

我不知道CodeIgniter庫,但這看起來像一個bug ... – MrUpsidown

回答

0

mapOptions對象有一個scaleControl屬性,它是默認設置爲false。請參閱documentation

+0

我已經看過Google的文檔。它使用JavaScript。我期望通過使用Codeigniter谷歌地圖庫的PHP來做到這一點。 – maan81

+0

似乎Codeigniter文檔顯示相同的選項。你看看'$ disableScaleControl'和'$ scaleControlPosition'嗎? – MrUpsidown

+0

我試過了,沒有運氣。我期待顯示比例。 – maan81

相關問題