private getFromUrl(url: string): Observable<Car[]> {
    return this.http.get(url)
      .map(this.extractData);
  }