git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| import {Injectable, provide} from 'angular2/core'; | |
| import {Observable} from 'rxjs'; | |
| const GEOLOCATION_ERRORS = { | |
| 'errors.location.unsupportedBrowser': 'Browser does not support location services', | |
| 'errors.location.permissionDenied': 'You have rejected access to your location', | |
| 'errors.location.positionUnavailable': 'Unable to determine your location', | |
| 'errors.location.timeout': 'Service timeout has been reached' | |
| }; | 
| import { GoogleMapsAPIWrapper } from '@agm/core'; | |
| import { Directive, Output, EventEmitter } from '@angular/core'; | |
| declare var google: any; | |
| @Directive({ | |
| selector: 'agm-location-marker' | |
| }) | |
| export class AgmLocationMarker { | |
| marker: any; |