[feat] add descriptions about exclude/include points
Browse files
static/src/components/PagePredictionMap.vue
CHANGED
@@ -59,6 +59,7 @@
|
|
59 |
</div>
|
60 |
|
61 |
<h1 id="id-ml-request-prompt">ML request prompt</h1>
|
|
|
62 |
<div v-if="promptsArrayRef.filter(el => {return el.type === 'point'}).length > 0">
|
63 |
<TableGenericComponent
|
64 |
:header="['id', 'data', 'label']"
|
@@ -127,8 +128,8 @@ const driverObj = driver({
|
|
127 |
steps: [
|
128 |
{ element: 'id-prediction-map-container', popover: { title: 'SamGIS', description: 'A quick tour about SamGIS functionality' } },
|
129 |
{ element: '#map', popover: { title: 'Webmap for ML prompt', description: 'Add here your machine learning prompt' } },
|
130 |
-
{ element: '.leaflet-pm-icon-marker-include', popover: { title: '"Include" point prompt', description: 'add "include" points prompt for machine learning request' } },
|
131 |
-
{ element: '.leaflet-pm-icon-marker-exclude', popover: { title: '"Exclude" point prompt', description: 'add "exclude" points prompt for machine learning request' } },
|
132 |
{ element: '.leaflet-pm-icon-rectangle', popover: { title: '"Include" rectangle prompt', description: 'add "include" rectangles prompt for machine learning request' } },
|
133 |
{ element: "#id-button-submit", popover: { title: 'ML submit button', description: 'Machine learning submit button' } },
|
134 |
{ element: '.leaflet-control-layers-toggle', popover: { title: 'Map provider selector', description: 'select a different map provider' } },
|
|
|
59 |
</div>
|
60 |
|
61 |
<h1 id="id-ml-request-prompt">ML request prompt</h1>
|
62 |
+
<p>Exclude points: label 0, include points: label 1.</p>
|
63 |
<div v-if="promptsArrayRef.filter(el => {return el.type === 'point'}).length > 0">
|
64 |
<TableGenericComponent
|
65 |
:header="['id', 'data', 'label']"
|
|
|
128 |
steps: [
|
129 |
{ element: 'id-prediction-map-container', popover: { title: 'SamGIS', description: 'A quick tour about SamGIS functionality' } },
|
130 |
{ element: '#map', popover: { title: 'Webmap for ML prompt', description: 'Add here your machine learning prompt' } },
|
131 |
+
{ element: '.leaflet-pm-icon-marker-include', popover: { title: '"Include" point prompt', description: 'add "include" points prompt (label 1) for machine learning request' } },
|
132 |
+
{ element: '.leaflet-pm-icon-marker-exclude', popover: { title: '"Exclude" point prompt', description: 'add "exclude" points prompt (label 0) for machine learning request' } },
|
133 |
{ element: '.leaflet-pm-icon-rectangle', popover: { title: '"Include" rectangle prompt', description: 'add "include" rectangles prompt for machine learning request' } },
|
134 |
{ element: "#id-button-submit", popover: { title: 'ML submit button', description: 'Machine learning submit button' } },
|
135 |
{ element: '.leaflet-control-layers-toggle', popover: { title: 'Map provider selector', description: 'select a different map provider' } },
|