Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
f277813
feat(services): add DisplacementDisclaimerService for shared dialog a…
artisticlight Jan 7, 2026
3401a35
feat(map): add OPERA disclaimer logo to map template
artisticlight Jan 7, 2026
65dac42
style(map): add OPERA logo positioning and hover effects
artisticlight Jan 7, 2026
747d3b6
feat(map): wire up OPERA logo click to open disclaimer dialog
artisticlight Jan 7, 2026
4888f09
refactor(info-bar): remove displacement disclaimer text link
artisticlight Jan 7, 2026
4e51f98
refactor(info-bar): remove unused disclaimer dialog code
artisticlight Jan 7, 2026
6111139
style: fix prettier formatting in map template
artisticlight Jan 7, 2026
890167c
feat(search-type-selector): add disclaimer link for Displacement search
artisticlight Jan 7, 2026
d120193
fix(search-type-selector): adjust disclaimer link size and fix click
artisticlight Jan 7, 2026
cba3a7f
fix(search-type-selector): update disclaimer styling and fix click
artisticlight Jan 7, 2026
e7daff1
style(search-type-selector): move disclaimer down 2px
artisticlight Jan 7, 2026
d1b7f51
refactor(search-type-selector): use translation key for disclaimer
artisticlight Jan 7, 2026
cdbe5df
feat(timeseries-results-menu): add disclaimer link to data credits
artisticlight Jan 7, 2026
df0b218
Merge remote-tracking branch 'Discovery-SearchUI/test' into andy/DS-6…
artisticlight Jan 8, 2026
de74d57
Merge remote-tracking branch 'Discovery-SearchUI/test' into andy/DS-6…
artisticlight Jan 8, 2026
2d334de
npm run lint -- --fix
artisticlight Jan 8, 2026
915e6df
Merge remote-tracking branch 'Discovery-SearchUI/test' into andy/DS-6…
artisticlight Jan 8, 2026
cff945a
Added icon/link to StoryMaps for Displacement
artisticlight Jan 8, 2026
7207199
Merge remote-tracking branch 'Discovery-SearchUI/test' into andy/DS-6…
artisticlight Jan 8, 2026
6016600
Merge remote-tracking branch 'Discovery-SearchUI/test' into andy/DS-6…
artisticlight Jan 8, 2026
ebfd795
Merge branch 'test' into andy/DS-6227-Displacemen-story-map
artisticlight Jan 9, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,24 @@
}
@if (searchType === searchTypes.DISPLACEMENT) {
<app-search-button></app-search-button>
<button
class="spacing nav-icon-buttons"
color="basic"
mat-button
matTooltip="{{ 'STORYMAP' | translate }}"
(click)="onOpenStoryMap()"
style="padding: 0"
>
<img
src="assets/StoryMaps.png"
alt="StoryMap"
class="storymap-icon"
/>
<div class="text-under faint-text" style="margin-top: -3px">
{{ 'STORYMAP' | translate }}
<mat-icon class="external-link-icon">open_in_new</mat-icon>
</div>
</button>
<button class="spacing nav-icon-buttons" color="basic" mat-button>
<app-docs-modal
class="icon-description"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,17 @@
display: flex;
flex-direction: column;
height: 100%;
}

.external-link-icon {
font-size: 12px;
width: 12px;
height: 12px;
vertical-align: middle;
margin-left: 2px;
}

.storymap-icon {
width: 30px;
height: 30px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,17 @@ export class HeaderButtonsComponent implements OnInit, OnDestroy {
this.openNewWindow(url, analyticsEvent);
}

public onOpenStoryMap(): void {
const url =
'https://storymaps.arcgis.com/collections/c52e34d6f5a34538a45a9c9c4dfbc3dc';
const analyticsEvent = {
name: 'open-storymap',
value: url,
};

this.openNewWindow(url, analyticsEvent);
}

public onOpenOnDemandDocs(): void {
const url = 'https://hyp3-docs.asf.alaska.edu/';
const analyticsEvent = {
Expand Down
Binary file added src/assets/StoryMaps.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.