2018-03-31 03:30:30 +08:00
|
|
|
import {Injectable} from '@angular/core';
|
|
|
|
import {NetworkService} from '../../model/network/network.service';
|
|
|
|
import {ClientConfig} from '../../../../common/config/public/ConfigClass';
|
|
|
|
import {SettingsService} from '../settings.service';
|
|
|
|
import {AbstractSettingsService} from '../_abstract/abstract.settings.service';
|
2017-07-14 05:39:09 +08:00
|
|
|
|
|
|
|
@Injectable()
|
2017-07-15 20:27:12 +08:00
|
|
|
export class MapSettingsService extends AbstractSettingsService<ClientConfig.MapConfig> {
|
|
|
|
constructor(private _networkService: NetworkService,
|
|
|
|
_settingsService: SettingsService) {
|
2017-07-15 23:29:40 +08:00
|
|
|
super(_settingsService);
|
2017-07-14 05:39:09 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-07-15 18:47:11 +08:00
|
|
|
public updateSettings(settings: ClientConfig.MapConfig): Promise<void> {
|
2018-03-31 03:30:30 +08:00
|
|
|
return this._networkService.putJson('/settings/map', {settings: settings});
|
2017-07-14 05:39:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|