Updated the angular version and removed the AGM Module.
This commit is contained in:
parent
714e23dfae
commit
f579d6879d
366 changed files with 169157 additions and 13270 deletions
|
@ -1,52 +1,58 @@
|
|||
import { BrowserModule } from '@angular/platform-browser';
|
||||
import { NgModule } from '@angular/core';
|
||||
import { BrowserModule } from "@angular/platform-browser";
|
||||
import { NgModule } from "@angular/core";
|
||||
|
||||
import { AppComponent } from './app.component';
|
||||
import { HizmetlerimizComponent } from './hizmetlerimiz/hizmetlerimiz.component';
|
||||
import { SitegörselleriComponent } from './sitegörselleri/sitegörselleri.component';
|
||||
import { GenelkurulComponent } from './genelkurul/genelkurul.component';
|
||||
import { FaaliyetComponent } from './faaliyet/faaliyet.component';
|
||||
import { KurumsalComponent } from './kurumsal/kurumsal.component';
|
||||
import { FooterComponent } from './footer/footer.component';
|
||||
import { DuyurularComponent } from './duyurular/duyurular.component';
|
||||
import { IletisimComponent } from './iletisim/iletisim.component';
|
||||
import { AnasayfaComponent } from './anasayfa/anasayfa.component';
|
||||
import { SocialComponent } from './social/social.component';
|
||||
import { NavigationComponent } from './navigation/navigation.component';
|
||||
import { Duyuru1Component } from './duyurular/duyuru1/duyuru1.component';
|
||||
import { Duyuru2Component } from './duyurular/duyuru2/duyuru2.component';
|
||||
import { Duyuru3Component } from './duyurular/duyuru3/duyuru3.component';
|
||||
import { AppRoutingModule } from './app-routing.module';
|
||||
import { AgmCoreModule } from '@agm/core';
|
||||
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
||||
import { ServicesService } from './services.service';
|
||||
import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
|
||||
import { AppComponent } from "./app.component";
|
||||
import { HizmetlerimizComponent } from "./hizmetlerimiz/hizmetlerimiz.component";
|
||||
import { SitegörselleriComponent } from "./sitegörselleri/sitegörselleri.component";
|
||||
import { GenelkurulComponent } from "./genelkurul/genelkurul.component";
|
||||
import { FaaliyetComponent } from "./faaliyet/faaliyet.component";
|
||||
import { KurumsalComponent } from "./kurumsal/kurumsal.component";
|
||||
import { FooterComponent } from "./footer/footer.component";
|
||||
import { DuyurularComponent } from "./duyurular/duyurular.component";
|
||||
import { IletisimComponent } from "./iletisim/iletisim.component";
|
||||
import { AnasayfaComponent } from "./anasayfa/anasayfa.component";
|
||||
import { SocialComponent } from "./social/social.component";
|
||||
import { NavigationComponent } from "./navigation/navigation.component";
|
||||
import { Duyuru1Component } from "./duyurular/duyuru1/duyuru1.component";
|
||||
import { Duyuru2Component } from "./duyurular/duyuru2/duyuru2.component";
|
||||
import { Duyuru3Component } from "./duyurular/duyuru3/duyuru3.component";
|
||||
import { AppRoutingModule } from "./app-routing.module";
|
||||
/*import { AgmCoreModule } from '@agm/core';*/ //AGM Module is deprecated.
|
||||
import { FormsModule, ReactiveFormsModule } from "@angular/forms";
|
||||
import { ServicesService } from "./services.service";
|
||||
import {
|
||||
provideHttpClient,
|
||||
withInterceptorsFromDi,
|
||||
} from "@angular/common/http";
|
||||
|
||||
@NgModule({ declarations: [
|
||||
AppComponent,
|
||||
HizmetlerimizComponent,
|
||||
SitegörselleriComponent,
|
||||
GenelkurulComponent,
|
||||
FaaliyetComponent,
|
||||
KurumsalComponent,
|
||||
FooterComponent,
|
||||
IletisimComponent,
|
||||
DuyurularComponent,
|
||||
AnasayfaComponent,
|
||||
Duyuru1Component,
|
||||
Duyuru2Component,
|
||||
Duyuru3Component,
|
||||
SocialComponent,
|
||||
NavigationComponent,
|
||||
],
|
||||
bootstrap: [AppComponent], imports: [FormsModule,
|
||||
ReactiveFormsModule,
|
||||
BrowserModule,
|
||||
AppRoutingModule,
|
||||
AgmCoreModule.forRoot({
|
||||
@NgModule({
|
||||
declarations: [
|
||||
AppComponent,
|
||||
HizmetlerimizComponent,
|
||||
SitegörselleriComponent,
|
||||
GenelkurulComponent,
|
||||
FaaliyetComponent,
|
||||
KurumsalComponent,
|
||||
FooterComponent,
|
||||
IletisimComponent,
|
||||
DuyurularComponent,
|
||||
AnasayfaComponent,
|
||||
Duyuru1Component,
|
||||
Duyuru2Component,
|
||||
Duyuru3Component,
|
||||
SocialComponent,
|
||||
NavigationComponent,
|
||||
],
|
||||
bootstrap: [AppComponent],
|
||||
imports: [
|
||||
FormsModule,
|
||||
ReactiveFormsModule,
|
||||
BrowserModule,
|
||||
AppRoutingModule,
|
||||
/*AgmCoreModule.forRoot({
|
||||
apiKey: 'AIzaSyC5TiZoTEwEcB_HUZRhe_rXrcSWW1Z5x8I'
|
||||
})], providers: [
|
||||
ServicesService,
|
||||
provideHttpClient(withInterceptorsFromDi())
|
||||
] })
|
||||
})*/ //AGM Module is deprecated.
|
||||
],
|
||||
providers: [ServicesService, provideHttpClient(withInterceptorsFromDi())],
|
||||
})
|
||||
export class AppModule {}
|
||||
|
|
|
@ -19,9 +19,10 @@
|
|||
|
||||
<div class="col-2-3">
|
||||
<br>
|
||||
<!-- AGM Module is deprecated.
|
||||
<agm-map [latitude]="lat" [longitude]="lng" [mapDraggable]="false" [zoom]="17" [scrollwheel]="false">
|
||||
<agm-marker [latitude]="lat" [longitude]="lng"></agm-marker>
|
||||
</agm-map>
|
||||
</agm-map>-->
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -77,4 +78,4 @@
|
|||
</div>
|
||||
|
||||
</section>
|
||||
<!--End of Iletisim-->
|
||||
<!--End of Iletisim-->
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue