@here/harp-datasource-protocol
TypeScript icon, indicating that this package has built-in type declarations

0.28.0 • Public • Published

@here/harp-datasource-protocol

Overview

The DataSource Protocol package contains components used for the decoding and styling of data that is used by the Datasources. This code is shared between the ui-thread and the web-workers which are used to parallelise the decoding of the data.

Techniques

This module contains interfaces for choosing techniques form the techniques catalog that are applied via the theme files to draw geometries on the map canvas.

The supported techniques that can be used to draw on the map are:

  • Points: [[PoiTechnique]], [[SquaresTechnique]], [[CirclesTechnique]]
  • Text: [[TextTechnique]]
  • Lines: [[LineMarkerTechnique]], [[LineTechnique]], [[SolidLineTechnique]]
  • Segments: [[SegmentsTechnique]]
  • Fill: [[FillTechnique]]
  • Extruded: [[BasicExtrudedLineTechnique]], [[StandardExtrudedLineTechnique]], [[ExtrudedPolygonTechnique]]
  • Standard: [[StandardTechnique]]
  • Terrain: [[TerrainTechnique]]
  • Shader: [[ShaderTechnique]]

All the techniques are documented in the Techniques class' source code.

To set a technique in a theme file, you can use a technique property. See examples below.

How to Style a Map? - Overview of harp.gl's Map Styling

Techniques can be used to render map objects on the canvas in a certain way. The visual attributes of these techniques are defined and placed in the theme file.

The theme JSON file enables writing conditions which the data received from the datasource must match for a style to be applied to it. When a condition is met a set of attributes are applied to the map object is changed according to a set of predefined attributes. There is an example of a minimal theme file below. It styles the names of continents and draws a line around islands, archipelagos, cliffs and bridges.

The theme file enables to define multiple styles which are bound to the data format received from a datasource (for example a tilezen based one, check here for more information on tilezen vector tile datasource).

{
    "styles": [
        {
            "styleSet": "tilezen",
            "layer": "earth",
            "when": "kind in ['continent']",
            "technique": "text",
            "priority": ["step", ["zoom"], 0,
                2, 120,
                3, 100,
                4, 60
            ],
            "color": "#E48892",
            "fontVariant": "AllCaps",
            "opacity": 0.6
        },
        {
            "styleSet": "tilezen",
            "layer": "earth",
            "when": ["match", ["get", "kind"],
                ["archipelago", "cliff", "ridge", "island"], true,
                false
            ],
            "technique": "line",
            "color": "#C1BDB3"
        }
    ]

The conditions can be based on the datasource metadata (for example data layer like water or buildings or a specific flag like isBridge).

An example theme file used in harp-examples could be found in the berlin_tilezen_base.json. Theme file is closely connected with the type of data received from the datasource.

"technique" - determines which technique should be applied to objects fulfilling the condition

{
    "styleSet": "tilezen",
    "description": "Exemplary theme condition",
    "when": ["any",
        ["==", ["get", "kind_detail"], "pier"],
        ["==", ["get", "landuse_kind"], "pier"],
    ],
    "technique": "solid-line",
    "color": "#00f",
    "lineWidth": ["interpolate", ["linear"], ["zoom"],
        13, "1.5px",
        14, "1.2px",
        15, "0.9px"
    ]
}

Feature Selection Expressions

In the above example there is a condition used within the theme which is applying a solid-line technique to a map feature which has a kind_detail or landuse_kind property equal to pier. The line is rendered with different line widths depending on the current map zoom level.

Note that the typical logical operators like:

  • all for computing the conjunction of sub-conditions
  • any for computing the alternative of sub-conditions

"when" - is a property that holds a description of the condition. This condition queries the feature data which and uses one or many of the following operators:

  • ~= (tilde equal), returns true when the value on the left contains the value on the right, for example:
    "when": ["~=", ["get", "kind_detail"], "park"]

this condition would match kind_details like national_park, natural_park, theme_park but also parking

  • ^= (caret equal), returns true when the value on the left starts with the value on the right, for example:
    "when": ["^=", ["get", "kind_detail"], "water"]

the above condition would match kind_details like: water_park, water_slide or water_works but not drinking_water

  • $= (dollar equal), returns true when the value on the left ends with the value on the right, for example:
    "when": ["$=", ["get", "kind_detail"], "water"]

the above condition would match kind_details like: drinking_water but not water_park

  • == (equal equal), returns true when the value on the left is equal to the value on the right, for example:
    "layer": "roads",
    "when": ["==", ["get", "kind"], "rail"],

the above condition would match roads $layer and the kind of rail

  • != (exclamation mark equal), returns true when the value on the left is not equal to the value on the right, for example:
    "description": "All land roads except rail",
    "layer": "roads",
    "when": ["!=", ["get", "kind"], "rail"],

the above condition would match all kinds which are not rail on the roads $layer

For more in-depth details about the equality operators check the @here/harp-datasource-protocol/lib/Theme.ts.

Additionally there are two more operators available (has and in):

  • has(variable name) returns true when the feature contains the specified variable and it is not undefined, for example:
    "description": "lakes (on high zoom level show only biggest lakes)",
    "when": ["any",
        ["==", ["get", "kind"] "lake"],
        ["has", "area"],
    ]

the above condition would match all kinds which have the value lake or the area property defined.

  • in[array of possible values] returns true when the feature contains one of the values specified in the array, for example:
{
    "description": "Earth layer",
    "layer": "earth",
    "styleset": "tilezen",
    "when": ["in", ["get", "kind"],
        ["literal", ["archipelago",
                     "cliff",
                     "island"]]
    ],
    (...)
}

the above conditions would match all features from earth layer which kind is equal either to 'archipelago', 'cliff' or 'island'.

Where to put style changes for a certain feature or map object?

A style for a certain feature (map object) on the map is kept in the attr object. Here is an example:

    "color": "#E48892",
    "fontVariant": "AllCaps",
    "opacity": 0.6,
    "priority": ["step", ["zoom"], 0,
        2, 120,
        3, 100,
        4, 60
    ]

A list of possible style modifier for each techniques can be found in the Techniques class' source code.

Most common properties include:

  • priority: Sets a priority of a map object, defaults to 0. Objects with highest priority get placed first. Can be defined to vary depending on the zoom level with some default value. (see the example above).

  • renderOrder: which enables to define the render order of the objects created using a particular technique.

  • color: color in hexadecimal or CSS-style notation, for example: "#e4e9ec", "#fff", "rgb(255, 0, 0)", "rgba(127, 127, 127, 1.0)", or "hsl(35, 11%, 88%)".

Readme

Keywords

none

Package Sidebar

Install

npm i @here/harp-datasource-protocol

Weekly Downloads

10

Version

0.28.0

License

Apache-2.0

Unpacked Size

470 kB

Total Files

100

Last publish

Collaborators

  • here-bot
  • here-maps
  • heremaps