Custom Map Styles
The HERE SDK for Flutter provides a flexible solution to customize the map by loading custom map schemes.
If you are looking for predefined map styles, see the Quick Start guide for an introduction. The HERE SDK already includes a set of pre-configured map styles such as .normalDay
or .satellite
.
Create and Load Custom Map Styles
The most flexible solution to customize the map is to create your own map styles using a configuration file generated with the WYSIWYG HERE Style Editor.
Note
To access the HERE Style Editor, please contact your HERE representative - as the editor is not yet publicly available. Please note that the resulting map styles are not compatible with the web editor, so only the HERE Style Editor can be used with the HERE SDK. This HERE SDK release is compatible with the HERE Style Editor 0.50. It is recommended to use the latest style editor and to update existing styles in case of unexpected behavior or errors.
Screenshot: The HERE Style Editor showing a custom map configuration.
As soon as you are satisfied with your custom map style, export it via File -> Export -> Here Rendering Engine Configuration. Please unzip the resulting file. You will find a few JSON files.
Copy all JSON files into the "assets" directory of your project. If not already added, you can add that folder via Android Studio (Right-click on the project: New -> Folder -> Assets folder). You can also manually generate the folder: /your_app/assets
. This folder also needs to be included into your pubspec.yaml
:
# The following section is specific to Flutter.
flutter:
# Here we store our custom map styles.
assets:
- assets/
For this example, we use the path_provider plugin to use the File
class to get the required file path to our main style file.
The main style file always ends with *.scene.json
.
Load the style into a map scene as follows:
import 'dart:io';
import 'package:flutter/services.dart' show rootBundle;
import 'package:here_sdk/core.dart';
import 'package:here_sdk/mapview.dart';
import 'package:path_provider/path_provider.dart';
...
void loadCustomMapStyle() async {
String filePath = await loadCustomStyle('omv-traffic-traffic-normal-night.scene.json');
await loadCustomStyle('omv-traffic-traffic-normal-night.jss');
await loadCustomStyle('omv-traffic-traffic-normal-night-MapOmvVisibilityRanges.json');
await loadCustomStyle('omv-traffic-traffic-normal-night-layer.properties.json');
_hereMapController.mapScene.loadSceneFromConfigurationFile(filePath, (MapError? error) {
if (error == null) {
} else {
print("Map scene not loaded. MapError: " + error.toString());
}
});
}
Future<String> loadCustomStyle(String assetFile) async {
var fileAsBytes = await rootBundle.load("assets/" + assetFile);
String applicationDirectory = (await getApplicationDocumentsDirectory()).path;
final buffer = fileAsBytes.buffer;
File file = File('$applicationDirectory/$assetFile');
file.writeAsBytes(buffer.asUint8List(fileAsBytes.offsetInBytes, fileAsBytes.lengthInBytes));
return file.path;
}
With the main *.scene.json
file the HERE SDK will find the other referenced style files - as exported from the editor, so we only need to get the file path for this file, but we have to make sure that all style files are kept together at the same folder level.
Screenshot: Another example for a custom map style configuration.
Using custom map styles can be very effective to differentiate your app from other map applications. In addition, it is possible to change map styles on-the-fly, for example, to shift the user's attention to certain map elements based on the current state of your app.