Table that serves to record the points configured for the map layer
Data model

Fields
Field |
Type |
Description |
point_description |
VARCHAR (255) |
Field containing the description of the point associated with the corresponding layer |
point_id* |
INT |
Primary key of the table with configured layer point identifier |
point_is_active* |
BIT |
A field that allows you to identify whether the corresponding point is in an active or inactive state |
point_latitude* |
DECIMAL |
Field containing the latitude of the point associated with the corresponding layer |
point_layer_id* |
INT |
A field that allows you to associate each configured point with the corresponding layer. |
point_longitude* |
DECIMAL |
Field containing the length of the point associated with the corresponding layer |
point_name* |
VARCHAR (100) |
Field containing in name of the point associated with the corresponding layer |
Primary Key
PK_AFLS_LAYERS_POINTS |
point_id |
References
Column |
Referenced Table |
Referenced column |
Name |
point_layer_id* |
dbo.AFLS_LAYERS |
layer_id |
FK01_AFLS_LAYERS_POINTS |