有沒有一種方法可以顯示距離刻度 - 以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);
而這就是我得到:
我不知道CodeIgniter庫,但這看起來像一個bug ... – MrUpsidown