google-maps-angular
v2.1.9
Published
This library is use to render google maps in angular application. We will have to pass 'latLong' as an input to display google maps in our application. in case we want to add markers of our map neary by locations we will have to pass markers data as per t
Downloads
238
Maintainers
Readme
Documentation
This library is use to render google maps in angular application. We will have to pass 'latLong' as an input to display google maps in our application. in case we want to add markers of our map neary by locations we will have to pass markers data as per the below defined format. when user click on any particular marker an event will execute and user will notify on which marker user has been clicked
Installation
npm install google-maps-angular
import GoogleMapsAngularModule in app.module and inject as a Root
import { GoogleMapsAngularModule } from 'google-maps-angular';
imports: [
GoogleMapsAngularModule.forRoot({googleMapsKey: 'your google maps api key'})
]
google-maps-angular library usage in our application
<lib-google-maps-angular (markerClicked)="markerClicked($event)" [markers]="markers"
[latLong]="latLong" [googleMapDefaultIcon]="googleMapDefaultIcon"></lib-google-maps-angular>
latLong config format
latLong = {
lat: 'your latitide',
long: 'your longitude'
};
markers config format
markers = [
{
lat: 'marker latitude',
long: 'marker longitude',
labelDetails: {
text: 'Marker Text display on marker this is required',
fontWeight: 'normal',
fontSize: '12px',
color: 'white'
}
}
];
Inputs
| Input | Type | Required/Optional| Uses | | ------ | ------ | ------ | ------ | | latLong | object | required | We will pass lat/long to display map of that particular area | | googleMapDefaultIcon | string | optional | Custom icon path which we want to display as a marker icon | | markers | array | optional | We will pass as an array in case we want to display nearby by markers in that particular map |
Events
| Output | Uses | | ------ | ------ | | markerClicked | This emitter will trigger when user click on any particular marker and return that particular marker information|