Interface ILayerFilter
Namespace:Mapbox.Unity.Map
Assembly:cs.temp.dll.dll
Syntax
public interface ILayerFilter
Properties
GetFilterOperationType
Declaration
LayerFilterOperationType GetFilterOperationType { get; }
Property Value
GetKey
Declaration
Property Value
Type |
Description |
System.String |
|
GetMaxValue
Declaration
float GetMaxValue { get; }
Property Value
Type |
Description |
System.Single |
|
GetMinValue
Declaration
float GetMinValue { get; }
Property Value
Type |
Description |
System.Single |
|
GetNumberValue
Declaration
float GetNumberValue { get; }
Property Value
Type |
Description |
System.Single |
|
GetPropertyValue
Declaration
string GetPropertyValue { get; }
Property Value
Type |
Description |
System.String |
|
Methods
FilterIsInRangeValueContains(Single)
Declaration
bool FilterIsInRangeValueContains(float value)
Parameters
Type |
Name |
Description |
System.Single |
value |
|
Returns
Type |
Description |
System.Boolean |
|
FilterKeyContains(String)
Declaration
bool FilterKeyContains(string key)
Parameters
Type |
Name |
Description |
System.String |
key |
|
Returns
Type |
Description |
System.Boolean |
|
FilterKeyMatchesExact(String)
Declaration
bool FilterKeyMatchesExact(string key)
Parameters
Type |
Name |
Description |
System.String |
key |
|
Returns
Type |
Description |
System.Boolean |
|
FilterNumberValueEquals(Single)
Declaration
bool FilterNumberValueEquals(float value)
Parameters
Type |
Name |
Description |
System.Single |
value |
|
Returns
Type |
Description |
System.Boolean |
|
FilterNumberValueIsGreaterThan(Single)
Declaration
bool FilterNumberValueIsGreaterThan(float value)
Parameters
Type |
Name |
Description |
System.Single |
value |
|
Returns
Type |
Description |
System.Boolean |
|
FilterNumberValueIsLessThan(Single)
Declaration
bool FilterNumberValueIsLessThan(float value)
Parameters
Type |
Name |
Description |
System.Single |
value |
|
Returns
Type |
Description |
System.Boolean |
|
FilterPropertyContains(String)
Declaration
bool FilterPropertyContains(string property)
Parameters
Type |
Name |
Description |
System.String |
property |
|
Returns
Type |
Description |
System.Boolean |
|
FilterPropertyMatchesExact(String)
Declaration
bool FilterPropertyMatchesExact(string property)
Parameters
Type |
Name |
Description |
System.String |
property |
|
Returns
Type |
Description |
System.Boolean |
|
FilterUsesOperationType(LayerFilterOperationType)
Declaration
bool FilterUsesOperationType(LayerFilterOperationType layerFilterOperationType)
Parameters
Returns
Type |
Description |
System.Boolean |
|
SetNumberIsEqual(String, Single)
Declaration
void SetNumberIsEqual(string key, float value)
Parameters
Type |
Name |
Description |
System.String |
key |
|
System.Single |
value |
|
SetNumberIsGreaterThan(String, Single)
Declaration
void SetNumberIsGreaterThan(string key, float value)
Parameters
Type |
Name |
Description |
System.String |
key |
|
System.Single |
value |
|
SetNumberIsInRange(String, Single, Single)
Declaration
void SetNumberIsInRange(string key, float min, float max)
Parameters
Type |
Name |
Description |
System.String |
key |
|
System.Single |
min |
|
System.Single |
max |
|
SetNumberIsLessThan(String, Single)
Declaration
void SetNumberIsLessThan(string key, float value)
Parameters
Type |
Name |
Description |
System.String |
key |
|
System.Single |
value |
|
SetStringContains(String, String)
Declaration
void SetStringContains(string key, string property)
Parameters
Type |
Name |
Description |
System.String |
key |
|
System.String |
property |
|