-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(map-overlay): missing property for MapOverlay Interface (#1114)
* refactor(map-overlay): missin property for MapOverlay Interface * refactor(mapOverlay): move from string to enum (media and mapoverlay class)
- Loading branch information
Showing
2 changed files
with
24 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
export enum MapOverlayCssClass { | ||
TopLeft = 'top-left', | ||
CenterLeft = 'center-left', | ||
BottomLeft = 'bottom-left', | ||
TopCenter = 'top-center', | ||
CenterCenter = 'center-center', | ||
BottomCenter = 'bottom-center', | ||
TopRight = 'top-right', | ||
CenterRight = 'center-right', | ||
BottoMRight = 'bottom-right' | ||
} |
29 changes: 13 additions & 16 deletions
29
src/app/pages/portal/map-overlay/map-overlay.interface.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters