deleted unneeded imports

This commit is contained in:
Janis Meister
2022-03-03 11:01:59 +01:00
parent c7d0f4421c
commit e06cc3e8e3
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ import LineString from 'ol/geom/LineString';
import { Feature } from 'ol';
import Geometry from 'ol/geom/Geometry';
import { RouteResponse } from '../interfaces/routeResponse';
import {Circle, Fill, Stroke, Style} from 'ol/style';
import {Stroke, Style} from 'ol/style';
@Component({
selector: 'app-map',

View File

@@ -1,5 +1,5 @@
import { Injectable } from '@angular/core';
import { HttpClient, HttpHeaders } from '@angular/common/http';
import { HttpClient } from '@angular/common/http';
import { RouteResponse } from '../interfaces/routeResponse';
import { Observable } from 'rxjs';
import { SearchResponse } from '../interfaces/searchResponse';