Skip to main content

Visualizing data

Contents

Typically the Maps SDK will be used to visualize data on top of the map. Data could vary from simple dots-on-a-map to more complex pieces like 3D buildings, route paths, geofences, and more.

The recommended way to visualize custom data on top of the map is through the use of Sources and Layers.

Sources store the data you want to visualize. Layers, depending on the type set, will visualize that data on the map.

  • Sources and Layers are attached to the map’s style. Therefore if you change styles after setting those sources and layers, you will need to re-apply them.

  • Sources and Layers should not be added to a style until the onStyleLoaded() callback is fired.

Sources

Sources store and contain the data you wish to visualize on the map. A Layer will reference a source by its id, and pull from the source for rendering purposes. The two required parameters for a source are a unique String id and the type of data being stored. There are a variety of source types such as vector and raster, but the most commonly used is the GeoJson type. A simple GeoJsonSource example:

In the example above, once the onStyleLoaded() callback is fired, two GeoJson points / features are created. They are added to a FeatureCollection which is then assigned to the source. Finally, the source is added to the style.

Using JSON / URI in a source

While you can create Features manually as shown above, a URI can also be used as the data for a source. The Source will pull the data from that URI location, negating the need to manually create a FeatureCollection yourself. See below:

The above will use the data the URI points to, and that will become the geojson data used by the source.

Last updated September 19, 2023.
Contents