summaryrefslogtreecommitdiff
path: root/platform/macos/app/MGLVectorSource+MBXAdditions.m
blob: 644b43a6512f497e5cd7e919725a9eaba5f98627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#import "MGLVectorSource+MBXAdditions.h"

@implementation MGLVectorSource (MBXAdditions)

+ (NS_SET_OF(NSString *) *)mapboxStreetsLanguages {
    // https://www.mapbox.com/vector-tiles/mapbox-streets-v7/#overview
    static dispatch_once_t onceToken;
    static NS_SET_OF(NSString *) *mapboxStreetsLanguages;
    dispatch_once(&onceToken, ^{
        mapboxStreetsLanguages = [NSSet setWithObjects:@"en", @"es", @"fr", @"de", @"ru", @"zh", nil];
    });
    return mapboxStreetsLanguages;
}

+ (nullable NSString *)preferredMapboxStreetsLanguage {
    for (NSString *language in [NSLocale preferredLanguages]) {
        NSString *languageCode = [[NSLocale localeWithLocaleIdentifier:language] objectForKey:NSLocaleLanguageCode];
        if ([[MGLVectorSource mapboxStreetsLanguages] containsObject:languageCode]) {
            return languageCode;
        }
    }
    return nil;
}

- (BOOL)isMapboxStreets {
    NSURL *url = self.configurationURL;
    if (![url.scheme isEqualToString:@"mapbox"]) {
        return NO;
    }
    NSArray *identifiers = [url.host componentsSeparatedByString:@","];
    return [identifiers containsObject:@"mapbox.mapbox-streets-v7"] || [identifiers containsObject:@"mapbox.mapbox-streets-v6"];
}

- (NS_DICTIONARY_OF(NSString *, NSString *) *)localizedKeysByKeyForPreferredLanguage:(nullable NSString *)preferredLanguage {
    if (!self.mapboxStreets) {
        return @{};
    }

    // Replace {name} and {name_*} with the matching localized name tag.
    NSString *localizedKey = preferredLanguage ? [NSString stringWithFormat:@"name_%@", preferredLanguage] : @"name";
    NSMutableDictionary *localizedKeysByKey = [NSMutableDictionary dictionaryWithObject:localizedKey forKey:@"name"];
    for (NSString *languageCode in [MGLVectorSource mapboxStreetsLanguages]) {
        NSString *key = [NSString stringWithFormat:@"name_%@", languageCode];
        localizedKeysByKey[key] = localizedKey;
    }
    return localizedKeysByKey;
}

@end