- Source:
Namespaces
Methods
-
<static> AND(filters)
-
This function joins the filters so that all the filters are fulfilled
Parameters:
Name Type Description filters
Array.<M.Fiter> Filters to joins
- Source:
Returns:
Filters joins
- Type
- M.Filter
-
<static> EQUAL(nameAtt, value)
-
This function compares the value of the indicated attribute with the indicated value.
Parameters:
Name Type Description nameAtt
string Name Attribute
value
string | number Value to compare
- Source:
Returns:
Filter - Filter to compare the value of an attribute
- Type
- M.Filter
-
<static> Function(filterFunction)
-
Creates a Filter Function to filter features
Parameters:
Name Type Description filterFunction
function Function to execute
- Source:
-
<static> GT(nameAtt, value)
-
This function returns if the value of the indicated attribute of the feature is greater than the indicated value.
Parameters:
Name Type Description nameAtt
string name Attribute
value
string | number value to compare
- Source:
Returns:
Filter - Filter
- Type
- M.Filter
-
<static> GTE(nameAtt, value)
-
This function returns if the value of the indicated attribute of the feature is greater than or equal to the indicated value.
Parameters:
Name Type Description nameAtt
string name Attribute
value
string | number value to compare
- Source:
Returns:
Filter - Filter
- Type
- M.Filter
-
<static> LIKE(nameAtt, value)
-
This function return the value of the indicated attribute of the feature if it satisfies the condition of the regular expression
Parameters:
Name Type Description nameAtt
string Name Attribute
value
string | number Regular expression
- Source:
Returns:
Filter - Filter
- Type
- M.Filter
-
<static> LT(nameAtt, value)
-
This function returns if the value of the indicated attribute of the feature is less than the indicated value.
Parameters:
Name Type Description nameAtt
string name Attribute
value
string | number value to compare
- Source:
Returns:
Filter - Filter
- Type
- M.Filter
-
<static> LTE(nameAtt, value)
-
This function returns if the value of the indicated attribute of the feature is less than or equal to the indicated value.
Parameters:
Name Type Description nameAtt
string name Attribute
value
string | number value to compare
- Source:
Returns:
Filter - Filter
- Type
- M.Filter
-
<static> NOT(filters)
-
This function run the opposite of the filter
Parameters:
Name Type Description filters
M.Fiter Filters to joins
- Source:
Returns:
opposite filter
- Type
- M.Filter
-
<static> OR(filters)
-
This function joins the filters so that at least one of the filters
Parameters:
Name Type Description filters
Array.<M.Fiter> Filters to joins
- Source:
Returns:
Filters joins
- Type
- M.Filter
-
<static> Spatial(filterFunction)
-
Creates a Filter Spatial to filter features
Parameters:
Name Type Description filterFunction
function filter function
TODO @param {object} options- Source: