GuidesAPI Reference
Guides

Specify features to be rendered on a map tile

Specify features to be rendered on the map tile

HERE Raster Tile API provides a features parameter that you can use to select optional tile content.

  1. Get map tile with the environmental_zones feature:

    • Example:

      https://maps.hereapi.com/v3/base/mc/9/275/171/png
      ?features=environmental_zones:all
      &apiKey=YOUR_HERE_API_KEY
    • Response:

  2. Get map tile with the environmental_zones and vehicle_restrictions features:

    • Example:

      https://maps.hereapi.com/v3/base/mc/9/275/171/png
      ?features=environmental_zones:all,vehicle_restrictions:active_and_inactive
      &apiKey=YOUR_HERE_API_KEY
    • Response:

  3. Get map tile with the environmental_zones and vehicle_restrictions features, but pois feature disabled:

    • Example:

      https://maps.hereapi.com/v3/base/mc/9/275/171/png
      ?features=environmental_zones:all,vehicle_restrictions:active_and_inactive,pois:disabled
      &apiKey=YOUR_HERE_API_KEY
    • Response:

  4. Get map tile with the environmental_zones feature, but pois feature disabled:

    • Example:

      https://maps.hereapi.com/v3/base/mc/9/275/171/png
      ?features=environmental_zones:all,pois:disabled
      &apiKey=YOUR_HERE_API_KEY
    • Response:

  5. Get map tile with the vehicle_restrictions feature, but pois feature disabled:

    • Example:

      https://maps.hereapi.com/v3/base/mc/9/275/171/png
      ?features=environmental_zones:disabled,vehicle_restrictions:active_and_inactive,pois:disabled
      &apiKey=YOUR_HERE_API_KEY
    • Response:

  6. Get truckonlytile by using blank resource with features=vehicle_restrictions:active_and_inactive:

    • Example:

      https://maps.hereapi.com/v3/blank/mc/9/275/171/png
      ?features=vehicle_restrictions:active_and_inactive
      &apiKey=YOUR_HERE_API_KEY
    • Response:

  7. Get a tile with vehicle restrictions showing visual differentiation between active and inactive restrictions for a specific time period:

    • Example:

      https://maps.hereapi.com/v3/base/mc/10/548/336/png
      ?features=vehicle_restrictions:active_and_inactive_differentiated
      &size=256&startTime=2025-12-11T08:00&endTime=2025-12-11T12:00
      &apiKey=YOUR_HERE_API_KEY
    • Response:

  8. Get a tile with only active vehicle restrictions for a specific time period:

    • Example:

      https://maps.hereapi.com/v3/base/mc/10/548/336/png
      ?features=vehicle_restrictions:active_only
      &size=256&startTime=2025-12-11T08:00&endTime=2025-12-11T12:00
      &apiKey=YOUR_HERE_API_KEY
    • Response:

  9. Get a tile with the public_transit feature enabled:

    • Example:

      https://maps.hereapi.com/v3/base/mc/13/4323/2647/png
      ?features=public_transit:all_systems
      &apiKey=YOUR_HERE_API_KEY
    • Response:

      Hamburg - Public Transit

  10. Get a tile with the low_speed_zones feature enabled:

    • Example:

      https://maps.hereapi.com/v3/base/mc/15/29107/12899/png
      ?features=low_speed_zones:all
      &apiKey=YOUR_HERE_API_KEY
    • Response:

      Tokyo - Low-Speed Zones

  11. Get a tile with the truck_preferred_roads feature enabled:

    • Example:

      https://maps.hereapi.com/v3/base/mc/9/270/165/png
      ?features=truck_preferred_roads:all
      &apiKey=YOUR_HERE_API_KEY
    • Response:

      Hamburg - Truck Preferred Roads

Next steps

For more information, see Features.