THIS SDK ISDEPRECATED.

We rolled out a new and better SDK for you.

Map tiles

IMPORTANT: In May 2020, the methods used to switch between vector and raster tiles were deprecated and will be removed after one year. From that point, to display raster tiles it will be required to reload the style to one which contains raster layers. Before the deprecation period is over, a map is still going to be initialized with the style that contains raster and vector tiles. However, if your style is obtained from the Style Merger you need to set MapStyleSource to STYLE_MERGER in MapProperties described here. This approach will only load vector tiles.

In order to display a map, you need to provide a map style file which includes information required to render a map. Sources include information about the types of tiles (e.g., raster or vector) and the URL(s) for the tile service(s). For more information take a look at the Map Style Specification. The default map display in the Maps SDK is based on vector tiles. It utilizes a map style file which sets the URL to the Vector Tile endpoint. The default style file for the map and traffic display is fetched from the Style Merger. It is also possible to display a map with raster tiles in the Maps SDK. In order to do that, you need to provide a map style defining the raster type and the raster tiles endpoint URL. This style must be loaded into the Maps SDK. This example provides a simple map JSON-style file that can be used to display TomTom raster tiles and shows how to use such a style in the Maps SDK.

  • Raster tiles are served as images. They require less processing power and memory to render, but have a larger file size than vector tiles.
  • Vector tiles take the form of data that describes map entries such as geographic points, forests, lakes, built-up areas (as polygons), and roads (as lines). They are styled by means of a style sheet. Vector tiles can be scaled to different sizes without losing quality. The file size of vector tiles is smaller than that of raster tiles.

Sample use case 1: Your app is designed to use raster tiles for map display. You want to update the app with TomTom Map Display API raster tiles.

Sample use case 2: You want to take advantage of vector tiles features such as map 2.5 D perspective, custom map styles, etc.

Sample use case 3: Your app runs on devices with different capabilities. You want to use vector tiles for map display on powerful devices and raster tiles on devices with less processing power.

Use the following code snippets in your app to display the map with raster or vector tiles.

Depending on how the map was initialized there are two ways to switch between raster and vector tiles.

If the map was initialized with MapStyleSource set to STYLE_MERGER, then to switch to raster tiles you will need to reload the style with proper Raster layers having appropriately set source names. The raster style can be loaded from the URL or be stored in assets. The styles used in the following examples can be found at the MapsSDK for Android Examples.

To load raster tiles use:

tomtomMap.getUiSettings().setStyleUrl("asset://styles/mapssdk-raster_style.json")
tomtomMap.uiSettings.setStyleUrl("asset://styles/mapssdk-raster_style.json")

To load vector tiles use:

tomtomMap.getUiSettings().loadDefaultStyle();
tomtomMap.uiSettings.loadDefaultStyle()

If a map was initialized in the legacy mode i.e., MapStyleSource is not set to STYLE_MERGER then the tile mode can be changed using the following code:

To select raster tiles use:

tomtomMap.getUiSettings().setMapTilesType(MapTilesType.RASTER);
tomtomMap.uiSettings.mapTilesType = MapTilesType.RASTER

To select vector tiles use:

tomtomMap.getUiSettings().setMapTilesType(MapTilesType.VECTOR);
tomtomMap.uiSettings.mapTilesType = MapTilesType.VECTOR

To turn off all tiles use:

tomtomMap.getUiSettings().setMapTilesType(MapTilesType.NONE);
tomtomMap.uiSettings.mapTilesType = MapTilesType.NONE

In this example you will see buttons that allow switching between raster and vector tiles at runtime:

image

Raster tiles

image

Vector tiles