62 | | * Allow the set of selected layers to differ per region. |
63 | | Options for implementation: |
| 62 | * Allow the set of available base layers and the initial selected base layer to differ per region. |
| 63 | (Implementation detail: Take enabled flag out of gis_layer_* and instead have a list multiple field in gis_config that enumerates the enabled layers for that config. Add a field for the selected base layer.) |
| 64 | * Allow the set of available (resource) overlays (a.k.a. "internal" overlays or "internal features") and the initial selected overlays to differ per region. |
| 65 | Options for implementation: (Pat: In the following, I believe we were referring to different aspects -- which overlays were selected, i.e. "visible" versus which were made available to select, i.e. "enabled". In any case, both suggested implementations now seem incorrect.) |
66 | | * Pat: Take the enabled flag out of gis_layer_* and instead have a list multiple field in gis_config that enumerates the enabled layers for that config. The decision whether all layers or none are enabled if this gis_config field is empty can be made in the map display function. Only place that choice affects gis_config is in the tooltip for this field, and other user help info. |
| 68 | * Pat: (After getting that confusion cleared up...): |
| 69 | * Take the "enabled" flag out of gis_layer_feature and instead have a list multiple field in gis_config that enumerates the enabled internal overlays for that config. |
| 70 | * Take the "visible" field out of gis_layer_feature and add another list multiple field in gis_config for which are initially selected. |
| 71 | * Allow selection of "external" overlays to be specified in gis_config (both "enabled" and "visible" as for internal overlays). (The set of possible external overlays might be hard coded -- changed when support is added for each.) (Note Fran says adding another "folder" in the map viewer is "not so easy".) |