[ * 'bundles' => [ * 'dosamigos\leaftlet\LeafLetAsset' => [ * 'sourcePath' => null, * 'js' => [ 'http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js' ], * 'css' => [ 'http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css' ] * ] * ] * ] * ] * ``` * * @author Antonio Ramirez * @link http://www.ramirezcobos.com/ * @link http://www.2amigos.us/ * @package dosamigos\leaflet */ class LeafLetAsset extends AssetBundle { public $sourcePath = '@bower/leaflet/dist'; public $css = [ 'leaflet.css' ]; public function init() { $this->js = YII_DEBUG ? ['leaflet-src.js'] : ['leaflet.js']; } }