ngx-neshan
v0.0.12
Published
Angular 6+ Neshan map (neshan.org) service
Downloads
7
Readme
NGX NESHAN
An Angular 6+ library to access Neshan Maps Platform
Getting Start
Signup and get your API ACCESS KEY at Neshan Developers Panel
Installation
npm i ngx-neshan --save
Usage
Import NgxNeshanModule, NESHAN_API_KEY
into your app's modules:
import { NgxNeshanModule, NESHAN_API_KEY } from 'ngx-neshan';
@NgModule({
imports: [
...
NgxNeshanModule,
...
],
providers: [
{ provide: NESHAN_API_KEY, useValue: 'NESHAN_API_KEY' }
],
})