diff --git a/iphone/CoreApi/CoreApi/Bookmarks/MWMBookmarkGroup.h b/iphone/CoreApi/CoreApi/Bookmarks/MWMBookmarkGroup.h index 151ab867f1..f82add8a4a 100644 --- a/iphone/CoreApi/CoreApi/Bookmarks/MWMBookmarkGroup.h +++ b/iphone/CoreApi/CoreApi/Bookmarks/MWMBookmarkGroup.h @@ -17,19 +17,20 @@ NS_SWIFT_NAME(BookmarkGroup) bookmarksManager:(MWMBookmarksManager *)manager; @property(nonatomic, readonly) MWMMarkGroupID categoryId; -@property(nonatomic, readonly, nullable) NSURL *photoUrl; @property(nonatomic, readonly) NSString *title; @property(nonatomic, readonly) NSString *author; -@property(nonatomic, readonly, nullable) NSString *authorIconPath; @property(nonatomic, readonly) NSString *annotation; @property(nonatomic, readonly) NSString *detailedAnnotation; @property(nonatomic, readonly) NSString *serverId; +@property(nonatomic, readonly, nullable) NSURL *imageUrl; @property(nonatomic, readonly) NSInteger bookmarksCount; @property(nonatomic, readonly) NSInteger trackCount; @property(nonatomic, readonly, getter=isVisible) BOOL visible; @property(nonatomic, readonly, getter=isEmpty) BOOL empty; @property(nonatomic, readonly, getter=isEditable) BOOL editable; @property(nonatomic, readonly, getter=isGuide) BOOL guide; +@property(nonatomic, readonly, getter=isLonelyPlanet) BOOL lonelyPlanet; +@property(nonatomic, readonly) BOOL hasDescription; @property(nonatomic, readonly) MWMBookmarkGroupAccessStatus accessStatus; @property(nonatomic, readonly) NSArray *bookmarks; @property(nonatomic, readonly) NSArray *tracks; diff --git a/iphone/CoreApi/CoreApi/Bookmarks/MWMBookmarkGroup.m b/iphone/CoreApi/CoreApi/Bookmarks/MWMBookmarkGroup.m index 0f37755141..f6d251a3d9 100644 --- a/iphone/CoreApi/CoreApi/Bookmarks/MWMBookmarkGroup.m +++ b/iphone/CoreApi/CoreApi/Bookmarks/MWMBookmarkGroup.m @@ -24,19 +24,10 @@ return [self.manager getCategoryName:self.categoryId]; } -- (NSURL *)photoUrl { - return [self.manager getCategoryPhotoUrl:self.categoryId]; -} - - (NSString *)author { return [self.manager getCategoryAuthorName:self.categoryId]; } -- (NSString *)authorIconPath { - // TODO: (boriskov) fixme - return nil; -} - - (NSString *)annotation { return [self.manager getCategoryAnnotation:self.categoryId]; } @@ -49,6 +40,10 @@ return [self.manager getServerId:self.categoryId]; } +- (NSString *)imageUrl { + return [self.manager getCategoryImageUrl:self.categoryId]; +} + - (NSInteger)bookmarksCount { return [self.manager getCategoryMarksCount:self.categoryId]; } @@ -73,6 +68,14 @@ return [self.manager isGuide:self.categoryId]; } +- (BOOL)isLonelyPlanet { + return [[self.manager getCategoryAuthorId:self.categoryId] isEqualToString: @"28035594-6457-466d-8f6f-8499607df570"]; +} + +- (BOOL)hasDescription { + return [self.manager hasExtraInfo:self.categoryId]; +} + - (MWMBookmarkGroupAccessStatus)accessStatus { return [self.manager getCategoryAccessStatus:self.categoryId]; } diff --git a/iphone/CoreApi/CoreApi/Bookmarks/MWMBookmarksManager.h b/iphone/CoreApi/CoreApi/Bookmarks/MWMBookmarksManager.h index 3f3646cb8a..d1f5152e93 100644 --- a/iphone/CoreApi/CoreApi/Bookmarks/MWMBookmarksManager.h +++ b/iphone/CoreApi/CoreApi/Bookmarks/MWMBookmarksManager.h @@ -50,8 +50,9 @@ NS_SWIFT_NAME(BookmarksManager) - (NSString *)getCategoryAnnotation:(MWMMarkGroupID)groupId; - (NSString *)getCategoryDescription:(MWMMarkGroupID)groupId; - (NSString *)getCategoryAuthorName:(MWMMarkGroupID)groupId; -- (NSURL *)getCategoryPhotoUrl:(MWMMarkGroupID)groupId; - (NSString *)getCategoryAuthorId:(MWMMarkGroupID)groupId; +- (nullable NSURL *)getCategoryImageUrl:(MWMMarkGroupID)groupId; +- (BOOL)hasExtraInfo:(MWMMarkGroupID)groupId; - (MWMMarkGroupID)createCategoryWithName:(NSString *)name; - (void)setCategory:(MWMMarkGroupID)groupId name:(NSString *)name; diff --git a/iphone/CoreApi/CoreApi/Bookmarks/MWMBookmarksManager.mm b/iphone/CoreApi/CoreApi/Bookmarks/MWMBookmarksManager.mm index a7df43b9a3..5c66b5d728 100644 --- a/iphone/CoreApi/CoreApi/Bookmarks/MWMBookmarksManager.mm +++ b/iphone/CoreApi/CoreApi/Bookmarks/MWMBookmarksManager.mm @@ -379,12 +379,12 @@ static BookmarkManager::SortingType convertSortingTypeToCore(MWMBookmarksSorting } - (NSString *)getCategoryAnnotation:(MWMMarkGroupID)groupId { - return @(kml::GetDefaultStr(self.bm.GetCategoryData(groupId).m_annotation).c_str()); + return @(GetPreferredBookmarkStr(self.bm.GetCategoryData(groupId).m_annotation).c_str()); } - (NSString *)getCategoryDescription:(MWMMarkGroupID)groupId { - return @(kml::GetDefaultStr(self.bm.GetCategoryData(groupId).m_description).c_str()); + return @(GetPreferredBookmarkStr(self.bm.GetCategoryData(groupId).m_description).c_str()); } - (NSString *)getCategoryAuthorName:(MWMMarkGroupID)groupId @@ -392,15 +392,21 @@ static BookmarkManager::SortingType convertSortingTypeToCore(MWMBookmarksSorting return @(self.bm.GetCategoryData(groupId).m_authorName.c_str()); } -- (NSURL *)getCategoryPhotoUrl:(MWMMarkGroupID)groupId { - return [[NSURL alloc] initWithString:@(self.bm.GetCategoryData(groupId).m_imageUrl.c_str())]; -} - - (NSString *)getCategoryAuthorId:(MWMMarkGroupID)groupId { return @(self.bm.GetCategoryData(groupId).m_authorId.c_str()); } +- (nullable NSURL *)getCategoryImageUrl:(MWMMarkGroupID)groupId { + NSString *urlString = @(self.bm.GetCategoryData(groupId).m_imageUrl.c_str()); + return [NSURL URLWithString:urlString]; +} + +- (BOOL)hasExtraInfo:(MWMMarkGroupID)groupId { + auto data = self.bm.GetCategoryData(groupId); + return !data.m_description.empty() || !data.m_annotation.empty(); +} + - (MWMMarkGroupID)createCategoryWithName:(NSString *)name { auto groupId = self.bm.CreateBookmarkCategory(name.UTF8String); diff --git a/iphone/Maps/Bookmarks/BookmarksList/BookmarksListInfoViewController.swift b/iphone/Maps/Bookmarks/BookmarksList/BookmarksListInfoViewController.swift new file mode 100644 index 0000000000..332a6c67bd --- /dev/null +++ b/iphone/Maps/Bookmarks/BookmarksList/BookmarksListInfoViewController.swift @@ -0,0 +1,49 @@ +import UIKit + +protocol IBookmakrsListInfoViewModel { + var title: String { get } + var author: String { get } + var hasDescription: Bool { get } + var imageUrl: URL? { get } + var hasLogo: Bool { get } //TODO: maybe replace with logo url or similar +} + +protocol BookmarksListInfoViewControllerDelegate: AnyObject { + func didPressDescription() + func didUpdateContent() +} + +class BookmarksListInfoViewController: UIViewController { + var info: IBookmakrsListInfoViewModel! + weak var delegate: BookmarksListInfoViewControllerDelegate? + + @IBOutlet var titleImageView: UIImageView! + @IBOutlet var titleLabel: UILabel! + @IBOutlet var descriptionButton: UIButton! + @IBOutlet var descriptionButtonView: UIView! + @IBOutlet var authorImageView: UIImageView! + @IBOutlet var authorLabel: UILabel! + @IBOutlet var infoStack: UIStackView! + + @IBAction func onDescription(_ sender: UIButton) { + delegate?.didPressDescription() + } + + override func viewDidLoad() { + super.viewDidLoad() + descriptionButton.setTitle(L("description_guide").uppercased(), for: .normal) + titleLabel.text = info.title + authorLabel.text = String(coreFormat: L("author_name_by_prefix"), arguments: [info.author]) + authorImageView.isHidden = !info.hasLogo + descriptionButtonView.isHidden = !info.hasDescription + + titleImageView.isHidden = true + if let imageUrl = info.imageUrl { + titleImageView.wi_setImage(with: imageUrl, transitionDuration: 0) { [weak self] (image, error) in + guard image != nil else { return } + self?.titleImageView.isHidden = false + self?.delegate?.didUpdateContent() + } + } + } +} diff --git a/iphone/Maps/Bookmarks/BookmarksList/BookmarksListInfoViewController.xib b/iphone/Maps/Bookmarks/BookmarksList/BookmarksListInfoViewController.xib new file mode 100644 index 0000000000..670f75544b --- /dev/null +++ b/iphone/Maps/Bookmarks/BookmarksList/BookmarksListInfoViewController.xib @@ -0,0 +1,175 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/iphone/Maps/Bookmarks/BookmarksList/BookmarksListInteractor.swift b/iphone/Maps/Bookmarks/BookmarksList/BookmarksListInteractor.swift index 2882b3f160..5f4b7ecf65 100644 --- a/iphone/Maps/Bookmarks/BookmarksList/BookmarksListInteractor.swift +++ b/iphone/Maps/Bookmarks/BookmarksList/BookmarksListInteractor.swift @@ -1,5 +1,6 @@ protocol IBookmarksListInteractor { func getBookmarkGroup() -> BookmarkGroup + func hasDescription() -> Bool func prepareForSearch() func search(_ text: String, completion: @escaping ([Bookmark]) -> Void) func availableSortingTypes(hasMyPosition: Bool) -> [BookmarksListSortingType] @@ -83,6 +84,10 @@ extension BookmarksListInteractor: IBookmarksListInteractor { bookmarksManager.category(withId: markGroupId) } + func hasDescription() -> Bool { + bookmarksManager.hasExtraInfo(markGroupId) + } + func prepareForSearch() { bookmarksManager.prepare(forSearch: markGroupId) } diff --git a/iphone/Maps/Bookmarks/BookmarksList/BookmarksListPresenter.swift b/iphone/Maps/Bookmarks/BookmarksList/BookmarksListPresenter.swift index 9014dfc47a..df4a57ac64 100644 --- a/iphone/Maps/Bookmarks/BookmarksList/BookmarksListPresenter.swift +++ b/iphone/Maps/Bookmarks/BookmarksList/BookmarksListPresenter.swift @@ -8,6 +8,7 @@ protocol IBookmarksListPresenter { func more() func deleteBookmark(in section: IBookmarksListSectionViewModel, at index: Int) func viewOnMap(in section: IBookmarksListSectionViewModel, at index: Int) + func showDescription() } protocol BookmarksListDelegate: AnyObject { @@ -190,6 +191,13 @@ extension BookmarksListPresenter: IBookmarksListPresenter { view.setTitle(bookmarkGroup.title) view.setMoreItemTitle(bookmarkGroup.isEditable ? L("placepage_more_button") : L("view_on_map_bookmarks")) view.enableEditing(bookmarkGroup.isEditable) + + let info = BookmarksListInfo(title: bookmarkGroup.title, + author: bookmarkGroup.author, + hasDescription: bookmarkGroup.hasDescription, + imageUrl: bookmarkGroup.imageUrl, + hasLogo: bookmarkGroup.isLonelyPlanet) + view.setInfo(info) } func activateSearch() { @@ -260,6 +268,10 @@ extension BookmarksListPresenter: IBookmarksListPresenter { fatalError("Wrong section type: \(section.self)") } } + + func showDescription() { + router.showDescription(bookmarkGroup) + } } extension BookmarksListPresenter: BookmarksSharingViewControllerDelegate { @@ -347,3 +359,19 @@ fileprivate struct BookmarksListMenuItem: IBookmarksListMenuItem { self.action = action } } + +fileprivate struct BookmarksListInfo: IBookmakrsListInfoViewModel { + let title: String + let author: String + let hasDescription: Bool + let imageUrl: URL? + let hasLogo: Bool + + init(title: String, author: String, hasDescription:Bool, imageUrl: URL? = nil, hasLogo: Bool = false) { + self.title = title + self.author = author + self.hasDescription = hasDescription + self.imageUrl = imageUrl + self.hasLogo = hasLogo + } +} diff --git a/iphone/Maps/Bookmarks/BookmarksList/BookmarksListRouter.swift b/iphone/Maps/Bookmarks/BookmarksList/BookmarksListRouter.swift index 4ef67006d8..d12a025574 100644 --- a/iphone/Maps/Bookmarks/BookmarksList/BookmarksListRouter.swift +++ b/iphone/Maps/Bookmarks/BookmarksList/BookmarksListRouter.swift @@ -2,6 +2,7 @@ protocol IBookmarksListRouter { func listSettings(_ bookmarkGroup: BookmarkGroup, delegate: CategorySettingsViewControllerDelegate?) func sharingOptions(_ bookmarkGroup: BookmarkGroup) func viewOnMap(_ bookmarkGroup: BookmarkGroup) + func showDescription(_ bookmarkGroup: BookmarkGroup) } final class BookmarksListRouter { @@ -31,4 +32,9 @@ extension BookmarksListRouter: IBookmarksListRouter { func viewOnMap(_ bookmarkGroup: BookmarkGroup) { coordinator?.hide(categoryId: bookmarkGroup.categoryId) } + + func showDescription(_ bookmarkGroup: BookmarkGroup) { + let descriptionViewController = GuideDescriptionViewController(category: bookmarkGroup) + mapViewController.navigationController?.pushViewController(descriptionViewController, animated: true) + } } diff --git a/iphone/Maps/Bookmarks/BookmarksList/BookmarksListViewController.swift b/iphone/Maps/Bookmarks/BookmarksList/BookmarksListViewController.swift index d9d122edc7..9e007be61e 100644 --- a/iphone/Maps/Bookmarks/BookmarksList/BookmarksListViewController.swift +++ b/iphone/Maps/Bookmarks/BookmarksList/BookmarksListViewController.swift @@ -47,6 +47,7 @@ protocol IBookmarksListMenuItem { protocol IBookmarksListView: AnyObject { func setTitle(_ title: String) + func setInfo(_ info: IBookmakrsListInfoViewModel) func setSections(_ sections: [IBookmarksListSectionViewModel]) func setMoreItemTitle(_ itemTitle: String) func showMenu(_ items: [IBookmarksListMenuItem]) @@ -68,6 +69,8 @@ final class BookmarksListViewController: MWMViewController { @IBOutlet var toolBar: UIToolbar! @IBOutlet var sortToolbarItem: UIBarButtonItem! @IBOutlet var moreToolbarItem: UIBarButtonItem! + + private var infoViewController: BookmarksListInfoViewController? override func viewDidLoad() { super.viewDidLoad() @@ -83,6 +86,22 @@ final class BookmarksListViewController: MWMViewController { presenter.viewDidLoad() } + override func viewDidLayoutSubviews() { + super.viewDidLayoutSubviews() + updateInfoSize() + } + + private func updateInfoSize() { + guard let infoView = infoViewController?.view else { + return + } + let infoViewSize = infoView.systemLayoutSizeFitting(CGSize(width: view.width, height: 0), + withHorizontalFittingPriority: .required, + verticalFittingPriority: .fittingSizeLevel) + infoView.size = infoViewSize + tableView.tableHeaderView = infoView + } + @IBAction func onSortItem(_ sender: UIBarButtonItem) { presenter.sort() } @@ -188,6 +207,16 @@ extension BookmarksListViewController: IBookmarksListView { self.title = title } + func setInfo(_ info: IBookmakrsListInfoViewModel) { + let infoViewController = BookmarksListInfoViewController() + infoViewController.info = info + infoViewController.delegate = self + addChild(infoViewController) + tableView.tableHeaderView = infoViewController.view + infoViewController.didMove(toParent: self) + self.infoViewController = infoViewController + } + func setSections(_ sections: [IBookmarksListSectionViewModel]) { self.sections = sections tableView.reloadData() @@ -228,3 +257,13 @@ extension BookmarksListViewController: IBookmarksListView { MWMAlertViewController.activeAlert().presentInfoAlert(title, text: message) } } + +extension BookmarksListViewController: BookmarksListInfoViewControllerDelegate { + func didPressDescription() { + presenter.showDescription() + } + + func didUpdateContent() { + updateInfoSize() + } +} diff --git a/iphone/Maps/Bookmarks/BookmarksList/BookmarksListViewController.xib b/iphone/Maps/Bookmarks/BookmarksList/BookmarksListViewController.xib index 0232a7e1d6..e21be46984 100644 --- a/iphone/Maps/Bookmarks/BookmarksList/BookmarksListViewController.xib +++ b/iphone/Maps/Bookmarks/BookmarksList/BookmarksListViewController.xib @@ -1,9 +1,9 @@ - + - + @@ -42,7 +42,7 @@ - + @@ -74,6 +74,7 @@ + @@ -91,11 +92,15 @@ - + + + + + diff --git a/iphone/Maps/Bookmarks/GuideDescription/GuideDescriptionViewController.swift b/iphone/Maps/Bookmarks/GuideDescription/GuideDescriptionViewController.swift index a80afefdd7..ea40ad595e 100644 --- a/iphone/Maps/Bookmarks/GuideDescription/GuideDescriptionViewController.swift +++ b/iphone/Maps/Bookmarks/GuideDescription/GuideDescriptionViewController.swift @@ -28,7 +28,7 @@ class GuideDescriptionViewController: MWMViewController { subtitleLabel.attributedText = NSMutableAttributedString(htmlString: category.annotation, baseFont: UIFont.regular16()) descriptionText.attributedText = NSMutableAttributedString(htmlString: category.detailedAnnotation, baseFont: UIFont.regular16()) - if FrameworkHelper.isNetworkConnected(), let photoUrl = category.photoUrl { + if let photoUrl = category.imageUrl { photo.wi_setImage(with: photoUrl, transitionDuration: 0) { [weak self] _, error in if error != nil { self?.photoViewContainer.isHidden = true @@ -40,11 +40,6 @@ class GuideDescriptionViewController: MWMViewController { photoActivityIndicator.stopAnimating() } - if let authorIconPath = category.authorIconPath, - let authorImage = UIImage(contentsOfFile: authorIconPath) { - providerIcon.image = authorImage - } else { - providerIcon.isHidden = true - } + providerIcon.isHidden = !category.isLonelyPlanet } } diff --git a/iphone/Maps/Bookmarks/GuideDescription/GuideDescriptionViewController.xib b/iphone/Maps/Bookmarks/GuideDescription/GuideDescriptionViewController.xib index 77cf07c262..f8d4b95b5e 100644 --- a/iphone/Maps/Bookmarks/GuideDescription/GuideDescriptionViewController.xib +++ b/iphone/Maps/Bookmarks/GuideDescription/GuideDescriptionViewController.xib @@ -1,10 +1,11 @@ - + - + + @@ -42,7 +43,6 @@ - @@ -75,7 +75,6 @@ - @@ -94,7 +93,7 @@ - + @@ -105,15 +104,14 @@ - - - - - - + + + + + - - + @@ -134,7 +132,6 @@ - @@ -153,14 +150,18 @@ - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. - + + + + + + + - @@ -182,6 +183,7 @@ + @@ -189,11 +191,19 @@ - + + + + + + + + + diff --git a/iphone/Maps/Core/Theme/BookmarksStyleSheet.swift b/iphone/Maps/Core/Theme/BookmarksStyleSheet.swift index 9233c4f170..9c14ecc928 100644 --- a/iphone/Maps/Core/Theme/BookmarksStyleSheet.swift +++ b/iphone/Maps/Core/Theme/BookmarksStyleSheet.swift @@ -18,6 +18,10 @@ class BookmarksStyleSheet: IStyleSheet { s.tintColor = colors.linkBlue } + theme.add(styleName: "LonelyPlanetLogo") { (s) -> (Void) in + s.tintColor = colors.lonelyPlanetLogoColor + } + theme.add(styleName: "BookmarkSharingLicense", from: "TermsOfUseLinkText") { (s) -> (Void) in s.fontColor = colors.blackSecondaryText s.font = fonts.regular14 diff --git a/iphone/Maps/Core/Theme/Colors.swift b/iphone/Maps/Core/Theme/Colors.swift index 0b57e0dbf0..7a50df7798 100644 --- a/iphone/Maps/Core/Theme/Colors.swift +++ b/iphone/Maps/Core/Theme/Colors.swift @@ -71,6 +71,7 @@ class DayColors: IColors { var chartShadow = UIColor(red: 0.118, green: 0.588, blue: 0.941, alpha: 0.12) var cityColor = UIColor(red: 0.4, green: 0.225, blue: 0.75, alpha: 1) var outdoorColor = UIColor(red: 0.235, green: 0.549, blue: 0.235, alpha: 1) + var lonelyPlanetLogoColor = UIColor(red: 0, green: 0.286, blue: 0.565, alpha: 1) } class NightColors: IColors { @@ -146,4 +147,5 @@ class NightColors: IColors { var chartShadow = UIColor(red: 0.294, green: 0.725, blue: 0.902, alpha: 0.12) var cityColor = UIColor(152, 103, 252, alpha100) var outdoorColor = UIColor(147, 191, 57, alpha100) + var lonelyPlanetLogoColor = UIColor(red: 1, green: 1, blue: 1, alpha: 0.7) } diff --git a/iphone/Maps/Core/Theme/Components/IColors.swift b/iphone/Maps/Core/Theme/Components/IColors.swift index 140e39ec61..b334039f86 100644 --- a/iphone/Maps/Core/Theme/Components/IColors.swift +++ b/iphone/Maps/Core/Theme/Components/IColors.swift @@ -81,4 +81,5 @@ let alpha100: CGFloat = 1.0 var chartShadow: UIColor { get } var cityColor: UIColor { get } var outdoorColor: UIColor { get } + var lonelyPlanetLogoColor: UIColor { get } } diff --git a/iphone/Maps/Images.xcassets/Catalog/Contents.json b/iphone/Maps/Images.xcassets/Catalog/Contents.json index da4a164c91..73c00596a7 100644 --- a/iphone/Maps/Images.xcassets/Catalog/Contents.json +++ b/iphone/Maps/Images.xcassets/Catalog/Contents.json @@ -1,6 +1,6 @@ { "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/iphone/Maps/Images.xcassets/Catalog/img_lp.imageset/Contents.json b/iphone/Maps/Images.xcassets/Catalog/img_lp.imageset/Contents.json new file mode 100644 index 0000000000..59d3048e40 --- /dev/null +++ b/iphone/Maps/Images.xcassets/Catalog/img_lp.imageset/Contents.json @@ -0,0 +1,15 @@ +{ + "images" : [ + { + "filename" : "LP_logo.pdf", + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + }, + "properties" : { + "template-rendering-intent" : "template" + } +} diff --git a/iphone/Maps/Images.xcassets/Catalog/img_lp.imageset/LP_logo.pdf b/iphone/Maps/Images.xcassets/Catalog/img_lp.imageset/LP_logo.pdf new file mode 100644 index 0000000000..7a29578dca --- /dev/null +++ b/iphone/Maps/Images.xcassets/Catalog/img_lp.imageset/LP_logo.pdf @@ -0,0 +1,273 @@ +%PDF-1.7 + +1 0 obj + << /BBox [ 0.000000 0.000000 70.000000 35.000000 ] + /Resources << >> + /Subtype /Form + /Length 2 0 R + /Group << /Type /Group + /S /Transparency + >> + /Type /XObject + >> +stream +/DeviceRGB CS +/DeviceRGB cs +q +1.000000 0.000000 -0.000000 1.000000 0.000000 0.000000 cm +1.000000 1.000000 1.000000 scn +34.882458 32.998676 m +41.535191 32.998676 47.178127 28.729744 49.276306 22.662079 c +50.151699 22.966873 l +51.021687 23.276825 l +48.731209 30.143017 42.375782 35.000000 34.877357 35.000000 c +27.422731 35.000000 21.057688 30.092974 18.730911 23.303812 c +20.468496 22.636303 l +22.580175 28.661812 28.249523 32.998676 34.882458 32.998676 c +h +23.009769 15.737961 m +20.914593 16.057306 l +19.854403 15.245735 18.644814 15.666693 18.261118 16.744843 c +23.351765 16.744843 l +23.351765 13.395449 l +25.881639 13.395449 l +25.881639 15.116848 l +26.300735 13.411522 28.382717 12.831953 29.565905 14.106930 c +29.565905 13.732080 29.527203 13.293247 29.411703 12.932953 c +29.032808 12.011293 27.765026 12.011286 27.108334 12.628454 c +25.616148 10.679598 l +26.567739 9.920797 27.531324 9.554134 28.761612 9.670290 c +29.776203 9.772495 30.420300 9.953854 31.193092 10.657154 c +31.780485 11.321634 32.060078 12.011288 32.097275 12.902014 c +32.097275 21.219088 l +29.611204 21.219088 l +29.611204 16.463095 l +29.611204 15.601788 28.364113 15.593903 28.364113 16.463095 c +28.364113 21.219088 l +25.881639 21.219088 l +25.881639 24.271877 l +23.351765 24.271877 l +23.351765 18.762541 l +22.538174 20.523670 21.000093 21.431686 19.072912 21.157825 c +17.686327 20.844542 16.702637 20.069969 16.169241 18.762541 c +15.689246 20.312592 14.558256 21.132957 12.980272 21.219088 c +11.307789 21.219088 10.061601 20.390533 9.559406 18.762541 c +8.714615 20.640434 7.027730 21.548752 5.016550 21.087162 c +3.808462 20.704426 3.079768 20.061783 2.530474 18.927526 c +2.530474 24.271877 l +0.000000 24.271877 l +0.000000 13.395449 l +2.530474 13.395449 l +2.530474 15.836521 l +3.250467 14.380487 4.451357 13.575901 6.059641 13.543449 c +7.770824 13.645351 8.869113 14.466928 9.559406 16.000904 c +9.559406 13.395449 l +11.996579 13.395449 l +11.996579 18.088053 l +12.090178 19.113129 13.630963 19.144064 13.724863 18.088053 c +13.724863 13.395449 l +16.169241 13.395449 l +16.169241 15.852596 l +16.732935 14.593088 17.615524 13.833378 18.941212 13.489159 c +21.843681 13.211964 22.993568 15.229366 23.009769 15.737961 c +h +5.958842 15.782238 m +5.075651 15.782238 4.357757 16.511318 4.357757 17.403561 c +4.357757 18.295801 5.075651 19.023966 5.958842 19.023966 c +6.842334 19.023966 7.561425 18.296104 7.561425 17.403561 c +7.561725 16.511621 6.842634 15.782238 5.958842 15.782238 c +h +21.317490 17.730789 m +18.205917 17.730789 l +18.688612 19.330273 20.816793 19.358175 21.317490 17.730789 c +h +34.869556 1.964325 m +28.217724 1.964325 22.574474 6.157133 20.477497 12.112888 c +19.601204 11.814156 l +18.730614 11.510582 l +21.021391 4.769035 27.379526 0.000000 34.874050 0.000000 c +42.329277 0.000000 48.694309 4.818161 51.021687 11.483585 c +49.285004 12.139572 l +47.171227 6.223242 41.501591 1.964325 34.869556 1.964325 c +h +69.905907 16.450054 m +69.792198 16.348457 l +69.343407 15.979673 68.676514 16.093096 68.442818 16.601692 c +68.203117 17.329557 68.327316 18.112013 68.327316 18.886887 c +69.876503 18.886887 l +69.876503 21.176022 l +68.327316 21.176022 l +68.327316 22.737288 l +65.882339 22.737288 l +65.882339 18.762541 l +65.441643 19.834930 64.775948 20.452709 63.730160 20.938255 c +61.633183 21.689775 59.629204 20.805719 58.705814 18.762541 c +58.342518 19.834930 57.792923 20.492128 56.772331 20.977978 c +54.744953 21.697958 52.793175 20.844841 52.089081 18.762541 c +51.532585 20.070272 50.726791 20.757801 49.342308 21.141750 c +47.476624 21.455036 45.889938 20.633461 45.069748 18.927526 c +45.069748 24.271877 l +42.537479 24.271877 l +42.537479 18.927526 l +42.220982 19.568958 41.879581 20.023266 41.331787 20.476665 c +38.737114 22.378819 35.323147 20.483641 35.260750 17.284370 c +35.260750 10.507032 l +37.784924 10.507032 l +37.784924 11.188799 37.706921 13.841867 37.706921 13.841867 c +37.985924 13.723289 l +39.875008 13.238653 41.802788 14.201862 42.537479 15.694897 c +42.537479 13.395144 l +45.069748 13.395144 l +45.069748 15.694897 l +45.796940 14.131502 47.189529 13.231371 48.914513 13.356928 c +49.712505 13.304462 50.378799 15.438023 50.381199 14.845419 c +50.382401 13.356928 l +51.357983 13.356928 l +52.074085 13.356928 l +54.534950 13.395144 l +54.534950 18.096245 l +54.534950 19.073708 56.121643 19.158016 56.204144 18.157505 c +56.223343 16.620193 56.219440 14.904554 56.219440 13.395144 c +58.706116 13.395144 l +58.706116 15.852291 l +59.164211 14.802347 59.775307 14.193972 60.789597 13.692656 c +62.795380 13.032118 64.887550 13.354807 65.669945 15.827728 c +63.554665 16.174376 l +63.068970 15.437412 61.331692 15.280315 60.781494 16.744537 c +65.882645 16.744537 l +65.882645 15.530519 65.906044 14.610075 66.989937 13.812761 c +68.074425 13.013929 70.022606 13.780909 69.999802 14.297997 c +69.905907 16.450054 l +h +39.173306 15.739479 m +38.289814 15.739479 37.569229 16.468252 37.569229 17.360189 c +37.569229 18.252432 38.289814 18.980597 39.173306 18.980597 c +40.054996 18.980597 40.774696 18.252735 40.774696 17.360189 c +40.774395 16.468252 40.054996 15.739479 39.173306 15.739479 c +h +48.523018 15.739479 m +47.638329 15.739479 46.920429 16.468252 46.920429 17.360189 c +46.920429 18.252432 47.638329 18.980597 48.523018 18.980597 c +49.405010 18.980597 50.124397 18.252735 50.124397 17.360189 c +50.124397 16.468252 49.404709 15.739479 48.523018 15.739479 c +h +60.764694 17.859383 m +61.181992 19.377892 63.347969 19.443399 63.831562 17.859383 c +60.764694 17.859383 l +h +f* +n +Q + +endstream +endobj + +2 0 obj + 5436 +endobj + +3 0 obj + << /BBox [ 0.000000 0.000000 70.000000 35.000000 ] + /Resources << >> + /Subtype /Form + /Length 4 0 R + /Group << /Type /Group + /S /Transparency + >> + /Type /XObject + >> +stream +/DeviceRGB CS +/DeviceRGB cs +q +1.000000 0.000000 -0.000000 1.000000 0.000000 0.000000 cm +0.000000 0.000000 0.000000 scn +0.000000 35.000000 m +70.000000 35.000000 l +70.000000 0.000000 l +0.000000 0.000000 l +0.000000 35.000000 l +h +f +n +Q + +endstream +endobj + +4 0 obj + 232 +endobj + +5 0 obj + << /XObject << /X1 1 0 R >> + /ExtGState << /E1 << /SMask << /Type /Mask + /G 3 0 R + /S /Alpha + >> + /Type /ExtGState + >> >> + >> +endobj + +6 0 obj + << /Length 7 0 R >> +stream +/DeviceRGB CS +/DeviceRGB cs +q +/E1 gs +/X1 Do +Q + +endstream +endobj + +7 0 obj + 46 +endobj + +8 0 obj + << /Annots [] + /Type /Page + /MediaBox [ 0.000000 0.000000 70.000000 35.000000 ] + /Resources 5 0 R + /Contents 6 0 R + /Parent 9 0 R + >> +endobj + +9 0 obj + << /Kids [ 8 0 R ] + /Count 1 + /Type /Pages + >> +endobj + +10 0 obj + << /Type /Catalog + /Pages 9 0 R + >> +endobj + +xref +0 11 +0000000000 65535 f +0000000010 00000 n +0000005694 00000 n +0000005717 00000 n +0000006197 00000 n +0000006219 00000 n +0000006517 00000 n +0000006619 00000 n +0000006640 00000 n +0000006813 00000 n +0000006887 00000 n +trailer +<< /ID [ (some) (id) ] + /Root 10 0 R + /Size 11 +>> +startxref +6947 +%%EOF \ No newline at end of file diff --git a/iphone/Maps/Maps.xcodeproj/project.pbxproj b/iphone/Maps/Maps.xcodeproj/project.pbxproj index db4bf84795..b807d77a8d 100644 --- a/iphone/Maps/Maps.xcodeproj/project.pbxproj +++ b/iphone/Maps/Maps.xcodeproj/project.pbxproj @@ -312,6 +312,8 @@ 470B3630244E2DB400C0EA9E /* GuidesGalleryViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470B362F244E2DB400C0EA9E /* GuidesGalleryViewController.swift */; }; 470B3632244E2DE200C0EA9E /* GuidesGalleryCityCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470B3631244E2DE200C0EA9E /* GuidesGalleryCityCell.swift */; }; 470B3634244E2DF900C0EA9E /* GuidesGalleryOutdoorCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470B3633244E2DF900C0EA9E /* GuidesGalleryOutdoorCell.swift */; }; + 470E1674252AD7F2002D201A /* BookmarksListInfoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470E1672252AD7F2002D201A /* BookmarksListInfoViewController.swift */; }; + 470E1675252AD7F2002D201A /* BookmarksListInfoViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 470E1673252AD7F2002D201A /* BookmarksListInfoViewController.xib */; }; 470F0B7D238842EA006AEC94 /* ExpandableLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470F0B7C238842EA006AEC94 /* ExpandableLabel.swift */; }; 470F0B7F2388431E006AEC94 /* StarRatingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470F0B7E2388431E006AEC94 /* StarRatingView.swift */; }; 470F5A5B2181DE7500754295 /* PaidRouteViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470F5A592181DE7400754295 /* PaidRouteViewController.swift */; }; @@ -1456,6 +1458,8 @@ 470B362F244E2DB400C0EA9E /* GuidesGalleryViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GuidesGalleryViewController.swift; sourceTree = ""; }; 470B3631244E2DE200C0EA9E /* GuidesGalleryCityCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GuidesGalleryCityCell.swift; sourceTree = ""; }; 470B3633244E2DF900C0EA9E /* GuidesGalleryOutdoorCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GuidesGalleryOutdoorCell.swift; sourceTree = ""; }; + 470E1672252AD7F2002D201A /* BookmarksListInfoViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BookmarksListInfoViewController.swift; sourceTree = ""; }; + 470E1673252AD7F2002D201A /* BookmarksListInfoViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BookmarksListInfoViewController.xib; sourceTree = ""; }; 470F0B7C238842EA006AEC94 /* ExpandableLabel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ExpandableLabel.swift; sourceTree = ""; }; 470F0B7E2388431E006AEC94 /* StarRatingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StarRatingView.swift; sourceTree = ""; }; 470F5A592181DE7400754295 /* PaidRouteViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PaidRouteViewController.swift; sourceTree = ""; }; @@ -3605,6 +3609,8 @@ 47CA68D52500448D00671019 /* BookmarksListInteractor.swift */, 47CA68D7250044C500671019 /* BookmarksListRouter.swift */, 47CA68D92500469400671019 /* BookmarksListBuilder.swift */, + 470E1672252AD7F2002D201A /* BookmarksListInfoViewController.swift */, + 470E1673252AD7F2002D201A /* BookmarksListInfoViewController.xib */, ); path = BookmarksList; sourceTree = ""; @@ -5299,6 +5305,7 @@ F6E2FE1C1E097BA00083EBEC /* MWMOpeningHoursTimeSpanTableViewCell.xib in Resources */, F6BD1D241CA412E40047B8E8 /* MWMOsmAuthAlert.xib in Resources */, F6FE3C3C1CC5106500A73196 /* MWMPlaceDoesntExistAlert.xib in Resources */, + 470E1675252AD7F2002D201A /* BookmarksListInfoViewController.xib in Resources */, F6E407D41FC4722F001F7821 /* MWMDiscoveryController.xib in Resources */, F6E2FE7F1E097BA00083EBEC /* MWMPlacePageOpeningHoursCell.xib in Resources */, 34AB66711FC5AA330078E451 /* TransportTransitTrain.xib in Resources */, @@ -5691,6 +5698,7 @@ 346DB8281E5C4F6700E3123E /* GalleryCell.swift in Sources */, 993DF12223F6BDB100AC231A /* UINavigationItemRenderer.swift in Sources */, 993DF12B23F6BDB100AC231A /* StyleManager.swift in Sources */, + 470E1674252AD7F2002D201A /* BookmarksListInfoViewController.swift in Sources */, 47B9065521C7FA400079C85E /* NSString+MD5.m in Sources */, CDB4D5022231412900104869 /* SettingsTemplateBuilder.swift in Sources */, F6EBB26F1FD7E33300B69B6A /* DiscoveryNoResultsCell.swift in Sources */,