src/app/map/containers/map.component.ts
selector | app-map |
styleUrls | map.component.scss |
templateUrl | ./map.component.html |
Properties |
Methods |
constructor(store: Store
|
Defined in src/app/map/containers/map.component.ts:16
|
ngOnInit |
ngOnInit()
|
Defined in src/app/map/containers/map.component.ts:24
|
Returns :
void
|
markers |
markers:
|
Type : Observable<Array>
|
Defined in src/app/map/containers/map.component.ts:16
|
position |
position:
|
Type : Observable<AgmPosition>
|
Defined in src/app/map/containers/map.component.ts:14
|
zoom |
zoom:
|
Type : Observable<number>
|
Defined in src/app/map/containers/map.component.ts:15
|
import { Component, OnInit } from '@angular/core';
import { Observable } from 'rxjs/Observable';
import { Store } from '@ngrx/store';
import * as fromMap from '../reducers/index';
import { SetPositionAction, SetZoomAction } from '../actions/map.actions';
import { AgmPosition } from '../models/agm-position';
@Component({
selector: 'app-map',
templateUrl: './map.component.html',
styleUrls: ['./map.component.scss']
})
export class MapComponent implements OnInit {
position: Observable<AgmPosition>;
zoom: Observable<number>;
markers: Observable<Array<AgmPosition>>;
constructor(private store: Store<fromMap.State>) {
this.position = this.store.select(fromMap.getPosition);
this.zoom = this.store.select(fromMap.getZoom);
this.markers = this.store.select(fromMap.getMarkers);
}
ngOnInit() {
if ('geolocation' in navigator) {
navigator.geolocation.getCurrentPosition((position) => {
this.store.dispatch(new SetPositionAction({
latitude: position.coords.latitude,
longitude: position.coords.longitude
}));
this.store.dispatch(new SetZoomAction(12));
});
}
}
}
<app-map-view [position]="position | async"
[zoom]="zoom | async"
[markers]="markers | async">
</app-map-view>