Skip to content

Commit 641855c

Browse files
Merge pull request #400 from heremaps/esd/42350
Update example apps for release 4.23.5.0
2 parents e2fa473 + 90d3895 commit 641855c

File tree

329 files changed

+7122
-5313
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

329 files changed

+7122
-5313
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ For an overview of the existing features, please check the _Developer Guide_ for
2626

2727
> For now, HERE SDK (Navigate) is only available upon request. Please contact your HERE representative to receive access including a set of evaluation credentials.
2828
29-
## List of available example apps (Version 4.23.4.0)
29+
## List of available example apps (Version 4.23.5.0)
3030

3131
- [List of example apps for the HERE SDK for Android](https://www.here.com/docs/bundle/sdk-for-android-developer-guide/page/topics/examples.html).
3232
- [List of example apps for the HERE SDK for iOS](https://www.here.com/docs/bundle/sdk-for-ios-developer-guide/page/topics/examples.html).

examples/latest/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This folder contains the HERE SDK examples apps for version: 4.23.4.0
1+
This folder contains the HERE SDK examples apps for version: 4.23.5.0
22

33
- HERE SDK for Android ([Lite](lite/android/), [Explore](explore/android/), [Navigate](navigate/android/))
44
- HERE SDK for iOS ([Lite](lite/ios/), [Explore](explore/ios/), [Navigate](navigate/ios/))

examples/latest/explore/android/Java/CameraKeyframeTracks/app/src/main/java/com/here/camerakeyframetracks/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ private void loadMapScene() {
105105
@Override
106106
public void onLoadScene(@Nullable MapError mapError) {
107107
if (mapError == null) {
108-
// Users of the Navigate Edition can enable textured landmarks:
108+
// Textured landmarks are only available with the Navigate License:
109109
// Map<String, String> mapFeatures = new HashMap<>();
110110
// mapFeatures.put(MapFeatures.LANDMARKS, MapFeatureModes.LANDMARKS_TEXTURED);
111111
// mapView.getMapScene().enableFeatures(mapFeatures);

examples/latest/explore/android/Java/CustomMapStyles/app/src/main/assets/custom-dark-style-neon-rds.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

examples/latest/explore/android/Java/CustomMapStyles/app/src/main/java/com/here/sdk/custommapstyles/CustomMapStylesExample.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,10 @@ public void loadButtonClicked() {
5656

5757
private void loadMapStyle() {
5858
// Place the style into the "assets" directory.
59-
// Full path example: app/src/main/assets/mymapstyle.json
60-
// Adjust file name and path as appropriate for your project.
61-
String fileName = "custom-dark-style-neon-rds.json";
59+
// Full path example: app/src/main/assets/mymapstyle.zip .
60+
// Note: The file can also be a JSON file when using HERE Style Editor < v1.13.0.
61+
// Adjust file name, type and path as appropriate for your project.
62+
String fileName = "custom-dark-style-neon-rds.zip";
6263
AssetManager assetManager = context.getAssets();
6364
try {
6465
assetManager.open(fileName);

examples/latest/explore/android/Java/PublicTransit/app/src/main/java/com/here/publictransit/MainActivity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ private void loadMapScene() {
102102
mapView.getMapScene().loadScene(MapScheme.NORMAL_DAY, new MapScene.LoadSceneCallback() {
103103
@Override
104104
public void onLoadScene(@Nullable MapError mapError) {
105-
if (mapError == null) {
105+
if (mapError == null) {
106106
enablePublicTransitFeatures();
107107
publicTransportRoutingExample = new PublicTransportRoutingExample(MainActivity.this, mapView);
108108
} else {
@@ -113,7 +113,7 @@ public void onLoadScene(@Nullable MapError mapError) {
113113
}
114114

115115
// Enable the PUBLIC_TRANSIT map feature to display public transit lines for subways, trams, trains, monorails, and ferries.
116-
// Note that this API is only available for the Navigate Edition.
116+
// Note that this API is only available with the Navigate License.
117117
private void enablePublicTransitFeatures() {
118118
// Optionally, uncomment the following three lines when you are using the Navigate Edition:
119119
// Map<String,String> mapFeatures = new HashMap<>();

examples/latest/explore/android/Kotlin/CustomMapStylesKotlin/app/src/main/assets/custom-dark-style-neon-rds.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

examples/latest/explore/android/Kotlin/CustomMapStylesKotlin/app/src/main/java/com/here/custommapstylekotlin/CustomMapStylesExample.kt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,10 @@ class CustomMapStylesExample(private val context: Context, private val mapView:
4545

4646
private fun loadMapStyle() {
4747
// Place the style into the "assets" directory.
48-
// Full path example: app/src/main/assets/mymapstyle.json
49-
// Adjust file name and path as appropriate for your project.
50-
val fileName = "custom-dark-style-neon-rds.json"
48+
// Full path example: app/src/main/assets/mymapstyle.zip .
49+
// Note: The file can also be a JSON file when using HERE Style Editor < v1.13.0.
50+
// Adjust file name, type and path as appropriate for your project.
51+
val fileName = "custom-dark-style-neon-rds.zip"
5152
val assetManager = context.assets
5253
try {
5354
assetManager.open(fileName)

0 commit comments

Comments
 (0)