release: 1.0.9, add map language support

This commit is contained in:
Kuloud
2024-08-24 11:24:07 +08:00
parent b582025ac7
commit 4602f30730
16 changed files with 186 additions and 46 deletions

View File

@ -262,6 +262,15 @@
// logo
self.logoCenter = logoCenter;
//
NSString *mapLanguage = dict[@"mapLanguage"];
// :@0: :@1. 使1使2MAMapTypeStandard
if ([mapLanguage isEqualToString:@"zh_cn"]) {
self.mapLanguage = @0;
} else if ([mapLanguage isEqualToString:@"en"]) {
self.mapLanguage = @1;
}
}
@end