• JMap.Map.Filter.applyAttributeValueBetween

    Render only layer's features that has attributeId having value between start and end attributes, including equals values.

    Only one attribute filter can be set for a specific layer and attributeId at the same time.

    Parameters

    • layerId: JId

      The JMap layer id

    • attributeId: string

      The JMap attribute id

    • start: any

      The min value

    • end: any

    Returns string

    The filter id. By example for layer 4 and attribute 'on_off' => "attribute-4-on_off"

    Throws

    Error if layer or attribute is not found

    Example

    // Will render only features having "level" greater or equals to 2 and lower or equals to 10 for layer 4
    JMap.Map.Filter.applyAttributeValueBetween(4, "level", 2, 10)