Skip to content

Commit

Permalink
Feature/847 support for common datatypes (#884)
Browse files Browse the repository at this point in the history
  • Loading branch information
hitomin21 authored Nov 11, 2021
1 parent 642a39b commit 65ca528
Show file tree
Hide file tree
Showing 11 changed files with 776 additions and 88 deletions.
12 changes: 10 additions & 2 deletions backend/mapservice/Models/Config/WFSTConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,20 @@ public class WFSTConfig : ILayerConfig

public List<EditableField> editableFields { get; set; }

public List<EditableField> nonEditableFields { get; set; }

public bool editPoint{ get; set; }

public bool editMultiPoint { get; set; }

public bool editPolygon { get; set; }

public bool editLine { get; set; }

public bool editMultiPolygon { get; set; }

public bool editLine { get; set; }

public bool editMultiLine { get; set; }

public bool infoVisible { get; set; }

public string infoTitle { get; set; }
Expand Down
4 changes: 4 additions & 0 deletions backend/mapservice/Models/EditableField.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ public class EditableField

public string name { get; set; }

public string alias { get; set; }

public string description { get; set; }

public string dataType { get; set; }

public string textType { get; set; }
Expand Down
4 changes: 4 additions & 0 deletions new-admin/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,10 @@ body.dragging * {
margin: 0 !important;
}

.edit-fields-table-default {
width: 184px !important;
}

.list-value:first-child {
margin-left: 0 !important;
}
Expand Down
Loading

0 comments on commit 65ca528

Please sign in to comment.