Angular directive for working with Nokia Here Maps
npm install angular-heremaps


AngularJS directive for working with Nokia Here Maps
npm install angular-heremaps
##### include angular-heremaps file
``html`
##### add dependency in your angular application
`javascript `
angular.module('exampleModule', ['heremaps'])
##### add config provider:
Before, you should register here and get your app id. Then pass it below
`javascript`
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.
`html``
See details on wiki pages
Please report, any issue here
#### Fork and clone the project
git clone https://github.com/{{username}}/angular-heremaps.git
and make pull request
#### Install dependencies
cd angular-heremaps
npm i
#### Start dev-server
gulp serve
#### Build resources
gulp build