Asad Fida
Asad Fida

Reputation: 216

How to create highcharts maps using Angularjs?

I want to create Highcharts maps using Angularjs, how can I do this? Any directive/library?

thanks

Upvotes: 1

Views: 821

Answers (1)

Christian A
Christian A

Reputation: 377

I didn't found one but you can easily create a directive by your own. Just create a directiv which is configured like this:

.directive('highmap',function($timeout){
    return{
        scope:{ },
        restrict: 'EAC',
        replace: true,
        transclude: true,
        template: '<div ng-transclude></div>',
        controller: function($scope, $compile, $attrs, $element){
        }
    }
})

Inside the controller you can handle all the map config stuff. Don't forget to set the render target to the id of your div.

That's kind of how I am doing it, sadly I am not allowed to share it.

Upvotes: 1

Related Questions