custom:api_js_openmaptab_edit_geometry

Apertura scheda mappa/planimetria Layout2D ed edit di specifica geometria

La gwCalendar è una particolare tipologia di scheda descritta qui.

Si puo editare una geometria di uno specifico record in mappa/planimetria usando la function editGeometryOnMap().

  • gwClassName, String, required
  • itemId String, required, alternative to 'cod'/'columnCod'. For new record 'newItem' had to be provided.
  • cod , String, required, used in conjunction with 'columnCod', is alternative to 'itemId'
  • columnCod , String, required, used in conjunction with 'cod', is alternative to 'itemId'
  • geometryColumn, String, optional. If omitted the main geometry column configured for the gwClass is used
  • geometryType, String or String[], optional. Automatically retrieved from the Geometry widget. It can to forced using one or more (as array) of allowed values: [“point”, “multipoint”, “linestring”, “multilinestring”, “polygon”, “multipolygon”, “geometrycollection”] It influence the map edito UI, that chenges following the supported geometryType.
  • coordinateSystem, String, optional, default null. Automatically retrieved from the widget xml configuration. If provided the default is overridden
  • editPolygonAsRectangle, Boolean, optional, default false. Automatically retrieved from the widget xml configuration. It has meaning only when geometryType is 'polygon' or 'multipolygon'
  • wktGeom, String, optional, default null. If provided is used as starting geometry to edit. If omitted the current WKT value in db is used
  • drawingSetId, Integer, optional, default null. It's alternative to 'drawingId'. Automatically retrieved. If provided it's used.
  • drawingId, Integer, optional, default null. It's alternative to 'drawingSetId'. Automatically retrieved. If provided it's used.
  • startedFromGwClassDetail, Boolean, optional, default false. When true, the starting gwClassDetail is temporaneally hidden, if floatingPane/dialog, and restored when editing has ended.
  • gwClassDetailContainer, Object, optional, default null, evaluated only when startedFromGwClassDetail is true
  • wktGeomTextBox, Object, optional, default null, evaluated only when startedFromGwClassDetail is true
  • successCallback, function, optional. Callback executed when editing ends correctly. Execution context is olMapWidget. Incoming params object holds:
    • for single edit: gwClassName, itemId, geometryAttributeGwid, wktGeom
    • for multiple edit: gwClassName, changesMap
  • abortedCallback, function, optional. Callback executed when editing is cancelled. Execution context is olMapWidget. Incoming params object holds:
    • for single edit: gwClassName, itemId, geometryAttributeGwid
    • for multiple edit: none

Codice minimale. Viene aperta la mappa in edit per l'inserimento di una nuova geometria. Viene inserito un record valorizzando la geometria il cui columnName è specificato come principale per la gwClass, utilizzato geometryType, coordinateSystem, editPolygonAsRectangle coem specificato nell'xml del widget.

example.js
var params = {
    gwClassName: gwClassName,
    itemId: 'newItem'
};
editGeometryOnMap(params);

Codice minimale. Viene aperta la mappa in edit per la modifica della geometria di un record esistente, identificato dalla coppia gwClassNameed itemId.

example.js
var params = {
    gwClassName: gwClassName,
    itemId: '12345'
};
editGeometryOnMap(params);

Viene aperta la mappa in edit per la modifica della geometria di un record esistente, identificato da gwClassName e dalla coppia cod/columnCod. Si specifica inoltre una geometryColumn differente da quella dichiarata come principale per la gwClass.

example.js
var params = {
    gwClassName: gwClassName,
    cod: 'abc_123',
    columnCod: 'cod_column',
    geometryColumn: 'geometry_secondary_for_gwclass'
};
editGeometryOnMap(params);

Esempio con utilizzo di tutti i parametri, anche opzionali. Viene aperta la mappa in edit per la modifica della geometria di un record esistente, identificato da gwClassName e itemId. Si specifica inoltre una geometryColumn differente da quella dichiarata come principale per la gwClass. Si sovrascrivono le proprietà nell xml del widget geometryType, coordinateSystem, editPolygonAsRectangle. Si fa partire la UI in edit con la geometria wktGeom 'POINT(10 20)' a prescindere dal valore sul db. Si forza il drawingset da utilizzare (che normalmente, in caso di drawing true su xmld el widget verrebbe ricavato in automatico in base al drawingType e alla configurazione sulle tabelle dei dati). Si specifica che la modifica parte da un dettaglio di classe gwClassDetail, e si fornisce il wktGeomTextBox, che verrà popolato in automatico al ritorno dalla modifica, per poter poi essere salvato nel solito modo. Fornite anche callback per l'edit completatao e l'uscita senza senza modifiche.

example.js
var params = {
    gwClassName: gwClassName,
    itemId: '12345',
    geometryColumn: 'secondary_geometry',
    geometryType: 'polygon',
    coordinateSystem: coordinateSystem,
    editPolygonAsRectangle: true,
 
    wktGeom: 'POINT(10 20)',
 
    drawingSetId: 123456,
 
    startedFromGwClassDetail: true,
    gwClassDetailContainer: gwClassDetailContainer,
    wktGeomTextBox: wktGeomTextBox,
 
    successCallback: function(params){
        var gwClassName = params.gwClassName;
        var itemId = params.itemId;
        var geometryAttributeGwid = params.geometryAttributeGwid;
        var wktGeom = params.wktGeom;
	//TODO
    },
    abortedCallback: function(params){
        var gwClassName = params.gwClassName;
        var itemId = params.itemId;
        var geometryAttributeGwid = params.geometryAttributeGwid;
        //TODO
    }
};
editGeometryOnMap(params);
  • custom/api_js_openmaptab_edit_geometry.txt
  • Ultima modifica: 2021/07/30 12:27
  • da giorgio.scali