components/about/about.component.ts
About page for services application.
selector | app-about |
imports |
NshmpLibNgAboutContentComponent
NshmpLibNgAboutDescriptionComponent
NshmpLibNgAboutDescriptionTitleComponent
NshmpLibNgAboutUsingApplicationExpansionPanelComponent
|
templateUrl | ./about.component.html |
styleUrl | ./about.component.scss |
constructor()
|
Defined in components/about/about.component.ts:23
|
import {Component} from '@angular/core';
import {
NshmpLibNgAboutContentComponent,
NshmpLibNgAboutDescriptionComponent,
NshmpLibNgAboutDescriptionTitleComponent,
NshmpLibNgAboutUsingApplicationExpansionPanelComponent,
} from '@ghsc/nshmp-lib-ng/about';
/**
* About page for services application.
*/
@Component({
imports: [
NshmpLibNgAboutContentComponent,
NshmpLibNgAboutDescriptionComponent,
NshmpLibNgAboutDescriptionTitleComponent,
NshmpLibNgAboutUsingApplicationExpansionPanelComponent,
],
selector: 'app-about',
styleUrl: './about.component.scss',
templateUrl: './about.component.html',
})
export class AboutComponent {
constructor() {}
}
<nshmp-lib-ng-about-content [showSavingSettingPanel]="false">
<nshmp-lib-ng-about-description>
<nshmp-lib-ng-about-description-title>
The services component of the USGS Earthquake Hazard Toolbox provides
documentation and examples of the web service endpoints used by the
individual applications in the USGS Earthquake Hazard Toolbox.
</nshmp-lib-ng-about-description-title>
While these web services are publicly accessible, we ask that users not
over-use them, for example by making many calls in a short period of time.
If web service usage impacts the performance of our web applications or the
cost of maintaining the services increases due to increased usage, we
reserve the right to limit access in the future.
<br /><br />
We request that users who want to perform many calculations use the USGS
<a href="https://code.usgs.gov/ghsc/nshmp/nshmp-haz" target="_blank">
hazard codes
</a>
directly.
</nshmp-lib-ng-about-description>
<nshmp-lib-ng-about-using-application-expansion-panel>
<div>Click to expand panels to learn more about each service.</div>
</nshmp-lib-ng-about-using-application-expansion-panel>
</nshmp-lib-ng-about-content>