mohsen-angular-leaflet-directive
Version:
angular-leaflet-directive - An AngularJS directive to easily interact with Leaflet maps
25 lines • 873 B
JavaScript
app.controller('MarkersLabelController', [ '$scope', function($scope) {
angular.extend($scope, {
london: {
lat: 51.505,
lng: -0.09,
zoom: 8
},
markers: {
main_marker: {
lat: 51.5,
lng: 0,
focus: true,
//message: "Hey, drag me if you want",
title: "Marker",
draggable: true,
label: {
message: "Hey, drag me if you want",
options: {
noHide: true
}
}
}
}
});
} ]);