I try to select Points with different selection methods in a Feature layer.
If I try SELECTION_ADD or SELECTION_NEW or SELECTION_SUBTRACT the selection is always like SELECTION_NEW and the result-Method is always "3".
lyrZE.selectFeatures(selectQuery,
//lyrZE.SELECTION_ADD,
lyrZE.SELECTION_NEW,
//lyrZE.SELECTION_SUBTRACT,
function(RE_Geometry,RE_Method){
console.log(RE_Geometry);
console.log(RE_Method)
});
I need the add and subtract method.
thx
Thomas