Added compass calibration

This commit is contained in:
2019-07-09 18:40:01 -04:00
parent 1eef462494
commit f96440b82c
7 changed files with 945 additions and 264 deletions

View File

@ -11,12 +11,15 @@ import {MapComponent} from "./map/map.component";
import {HomeComponent} from "./home/home.component";
import {AgmCoreModule} from "@agm/core";
import {MaterialModule} from "./material.module";
import {CalibtrateComponent} from "./map/calibrate/calibtrate.component";
import {MatInputModule} from "@angular/material";
@NgModule({
declarations: [
AppComponent,
CalibtrateComponent,
HomeComponent,
MapComponent
],
@ -28,8 +31,10 @@ import {MaterialModule} from "./material.module";
FormsModule,
MaterialModule,
ServiceWorkerModule.register('ngsw-worker.js', {enabled: environment.production}),
MatInputModule,
],
providers: [],
entryComponents: [CalibtrateComponent],
bootstrap: [AppComponent]
})
export class AppModule {