-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update basic layer settings #107
Update basic layer settings #107
Conversation
Include type to layer basic settings. Added function to map layer type to name, since, user is interested in name. Signed-off-by: Vijayan Balasubramanian <[email protected]>
Added text area to accept description. Added properties to save description. Signed-off-by: Vijayan Balasubramanian <[email protected]>
Rename Zoom text to Zoom levels on display Signed-off-by: Vijayan Balasubramanian <[email protected]>
import { OSMLayerFunctions } from './OSMLayerFunctions'; | ||
import { DocumentLayerFunctions } from './documentLayerFunctions'; | ||
|
||
export const layersFunctionMap: { [key: string]: any } = { | ||
[DASHBOARDS_MAPS_LAYER_TYPE.OPENSEARCH_MAP]: OSMLayerFunctions, | ||
[DASHBOARDS_MAPS_LAYER_TYPE.DOCUMENTS]: DocumentLayerFunctions, | ||
}; | ||
|
||
export const layersTypeNameMap: { [key: string]: any } = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
export const layersTypeNameMap: { [key: string]: any } = { | |
export const layersTypeNameMap: { [key: string]: string } = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated
Signed-off-by: Vijayan Balasubramanian <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good, thx!
Description
Include following fields to basic layer settings
Signed-off-by: Vijayan Balasubramanian [email protected]
Issues Resolved
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.