- 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:
parent
220944b115
commit
df3561235d
37 changed files with 12724 additions and 645 deletions
|
@ -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;
|
||||
}
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue