angular-heremaps

https://dverbovyi.github.io/angular-heremaps/

Angular directive for working with Nokia Here Maps

Install guide:

    npm install angular-heremaps
include angular-heremaps file
    <script src="/node_modules/angular-heremaps/dist/angular-heremaps.min.js" type="text/javascript"></script>
add dependency in your angular application
    angular.module('exampleModule', ['heremaps'])
add config provider:

Before, you should register here and get your app id. Then pass it below

    angular.module('exampleModule')
        .config(["HereMapsConfigProvider", function(HereMapsConfigProvider) {
            HereMapsConfigProvider.setOptions({
                'app_id': 'your_app_id_here',
                'app_code': 'your_app_code_here',
                'useHTTPS': true
            });
        }]);

Simple directive initialization with default options.

        <div heremaps></div>

See details on wiki pages

Any issue please report here