generated osrm service

This commit is contained in:
Janis Meister
2022-01-14 13:25:46 +01:00
parent af818ce10b
commit 42043fd7b5
2 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { OsrmService } from './osrm.service';
describe('OsrmService', () => {
let service: OsrmService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(OsrmService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});

11
src/app/osrm.service.ts Normal file
View File

@@ -0,0 +1,11 @@
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
// http://router.project-osrm.org/route/v1/driving/13.388860,52.517037;13.397634,52.529407;13.428555,52.523219?overview=full&steps=true&geometries=geojson
export class OsrmService {
constructor() { }
}