All Projects → dverbovyi → angular-heremaps

dverbovyi / angular-heremaps

Licence: MIT license
AngularJS directive for working with Here Maps

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to angular-heremaps

here-map-widget-for-jupyter
Use HERE Maps API for JavaScript in your Jupyter Notebook.
Stars: ✭ 29 (+52.63%)
Mutual labels:  here, heremaps
router
Keep your Angular2+ router state in Redux
Stars: ✭ 28 (+47.37%)
Mutual labels:  angularjs
laravel5Angular4
Laravel 5.4 & Angular 4.3.4
Stars: ✭ 37 (+94.74%)
Mutual labels:  angularjs
angular
Repository for my tutorial course: Learning AngularJS on LinkedIn Learning and Lynda.com. http://raybo.org/angular
Stars: ✭ 79 (+315.79%)
Mutual labels:  angularjs
angular-downloader
Angular Downloader is an angularjs directive that enables you to manage browser download - https://720kb.github.io/angular-downloader
Stars: ✭ 16 (-15.79%)
Mutual labels:  angularjs
ccms-components
数云PC angular1.x 组件库 (不再维护更新)
Stars: ✭ 51 (+168.42%)
Mutual labels:  angularjs
front-end-notes
前端课程学习笔记汇总
Stars: ✭ 57 (+200%)
Mutual labels:  angularjs
Beetle.js
🪲 Javascript ORM, manage your data easily.
Stars: ✭ 53 (+178.95%)
Mutual labels:  angularjs
gravitee-management-webui
Gravitee.io - API Management - Management UI
Stars: ✭ 107 (+463.16%)
Mutual labels:  angularjs
vogon-java
Vogon - A simple personal finance tracker using Spring Boot and AngularJS
Stars: ✭ 16 (-15.79%)
Mutual labels:  angularjs
angular-spa-demo
Demo code for a Single Page Application using AngularJS
Stars: ✭ 20 (+5.26%)
Mutual labels:  angularjs
popmovies-web
Starter project using nodejs expressjs and angular 2
Stars: ✭ 17 (-10.53%)
Mutual labels:  angularjs
angularjs-es6-starter-kit
Basic AngularJS, ES6, Webpack Starter Kit Project which includes Bootstrap 4 also. This is a boilerplate for AngularJS SPA with Bootstrap 4.
Stars: ✭ 28 (+47.37%)
Mutual labels:  angularjs
smartcitizen-web
The Smart Citizen Kit platform
Stars: ✭ 13 (-31.58%)
Mutual labels:  angularjs
ypereirareis.github.io
DevOps, Symfony and VueJs developer. Articles and experiences on docker, grafana, prometheus, RabbitMQ, PHP, MySQL, Admin, Nginx, Haproxy, SSH,...
Stars: ✭ 15 (-21.05%)
Mutual labels:  angularjs
teammanager
Small team manager written in MEAN stack
Stars: ✭ 30 (+57.89%)
Mutual labels:  angularjs
angular2-trim-directive
the directive trims whitespaces from the end of an input text value.
Stars: ✭ 45 (+136.84%)
Mutual labels:  angularjs
keycloak-spring-boot-rest-angular-demo
Demo for configuring Keycloak authentication for a spring-boot rest service and AngularJs web client
Stars: ✭ 24 (+26.32%)
Mutual labels:  angularjs
percy-node
Utilities for visual regression testing in node based testing setups (like Protractor) for use with percy.io
Stars: ✭ 17 (-10.53%)
Mutual labels:  angularjs
angular-sticky-navigation-directive
Angular directive to make a sticky element, quick demo here: http://ng-milk.github.io/angular-sticky-navigation-directive/
Stars: ✭ 20 (+5.26%)
Mutual labels:  angularjs

Build Status Code Climate npm version

angular-heremaps

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

AngularJS directive for working with Here Maps

0.1.9 latest release

see release notes

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

Please report, any issue here

To Contribute

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
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].