File

src/app/map/containers/map.component.ts

Implements

OnInit

Metadata

selector app-map
styleUrls map.component.scss
templateUrl ./map.component.html

Index

Properties
Methods

Constructor

constructor(store: Store)

Methods

ngOnInit
ngOnInit()
Returns : void

Properties

markers
markers: Observable<Array>
Type : Observable<Array>
position
position: Observable<AgmPosition>
Type : Observable<AgmPosition>
zoom
zoom: Observable<number>
Type : Observable<number>
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>
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""