hi,
im creating a custom app plugin on kibana
the idea is to add a map using leaflet
this the content of my controller :
//leaflet
angular.extend($scope, {
london: {
lat: 51.505,
lng: -0.09,
zoom: 8
},
defaults: {
tileLayer: "http://{s}.tile.opencyclemap.org/cycle/{z}/{x}/{y}.png",
tileLayerOptions: {
opacity: 0.9,
detectRetina: true,
reuseTiles: true,
},
scrollWheelZoom: false
}
});
in my template :
<leaflet center="london" defaults="defaults" width=400 height=400></leaflet>
i have no error and i don't have the map too.
any idea?