1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/settings/map/map.settings.component.ts
2017-07-13 23:39:09 +02:00

33 lines
1.1 KiB
TypeScript

import {Component} from "@angular/core";
import {MapConfig} from "../../../../common/config/public/ConfigClass";
import {MapSettingsService} from "./map.settings.service";
import {SettingsComponent} from "../_abstract/abstract.settings.component";
import {AuthenticationService} from "../../model/network/authentication.service";
import {NavigationService} from "../../model/navigation.service";
import {NotificationService} from "../../model/notification.service";
@Component({
selector: 'settings-map',
templateUrl: './map.settings.component.html',
styleUrls: ['./map.settings.component.css'],
providers: [MapSettingsService],
})
export class MapSettingsComponent extends SettingsComponent<MapConfig> {
public settings: MapConfig = <MapConfig> {
enabled: true,
googleApiKey: ""
};
constructor(_authService: AuthenticationService,
_navigation: NavigationService,
_settingsSettings: MapSettingsService,
notification: NotificationService) {
super("Map", _authService, _navigation, _settingsSettings, notification);
}
}