var app = angular.module(sakeetApp, ['ngRoute', 'ngCookies','ngStorage','angular-mapbox','angularFileUpload']);
app.config(['$routeProvider', '$locationProvider', '$httpProvider',
function ($routeProvider, $locationProvider, $httpProvider) {
'use strict';
(function () {
var injectParams = ['$scope','$rootScope','$location','$route','$localStorage','$window','$cookieStore',
'ConfigService', 'UserService','CategoryService','angular-mapbox', 'FeedService','NotifyService'];
var controller = function ($scope,$rootScope, $location,$route,$localStorage,$window,$cookieStore,
ConfigService, UserService, CategoryService,FeedService, NotifyService) {

--
You received this message because you are subscribed to the Google Groups "AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email to angular+u...@googlegroups.com.
To post to this group, send email to ang...@googlegroups.com.
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.
As of Mapbox.js 2.0, a Mapbox API access token is also required. In your Angular app, set the access token with the following line:
mapboxService.init({ accessToken: 'YOUR_ACCESS_TOKEN' });Hi Prudvi,
Try doing the mapboxService.init({ accessToken: 'YOUR_ACCESS_TOKEN' }) inside the modules .run callback.
Regards
Sander
...