- add bulma style

- add components: messages, locate-button
- move index.html into src folder
- move to angular build tools
- styles.css -> styles.scss
This commit is contained in:
Arno Kaimbacher 2021-09-07 08:36:17 +02:00
parent 220944b115
commit df3561235d
37 changed files with 12724 additions and 645 deletions

View file

@ -1,10 +1,10 @@
export class Station {
public id: string;
public label: string;
public geometry: GeoJSON.GeometryObject;
public properties?: StationProperties;
export interface Station {
id: string;
label: string;
geometry: GeoJSON.GeometryObject;
properties: StationProperties;
}
export interface StationProperties {
@ -17,18 +17,18 @@ export interface StationProperties {
// [key: string]: ParameterConstellation;
// }
class Timeseries {
public id: string;
public label: string;
public url: string;
public uom: string;
public internalId: string;
public firstValue;
public lastValue;
public referenceValues;
public station: Station;
public parameters;
public statusIntervals?;
public hasData = false;
public renderingHints;
interface Timeseries {
id: string;
label: string;
url: string;
uom: string;
internalId: string;
// firstValue;
// lastValue;
// referenceValues;
station: Station;
// parameters;
// statusIntervals?;
// hasData = false;
// public renderingHints;
}