forked from organicmaps/organicmaps
[ios] refactor CoreApi to support the Track selection and ElevationProfile
1. setElevationActivePoint is changed to work withe the CLLocationCoordinate2D that allows to pass the selected point to the core and show the blue mark on the track in the correct place 2. initWithElevationInfo is removed from the PlacePagePreviewData because the elevation profile is a part of track now and the PP header is configured in the core 3. ElevationHeightPoint stores the coordinates for easily track marks creation 4. add PlacePageTrackData to the PlacePageDate Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
parent
d881cb952b
commit
8efd7d30ac
12 changed files with 66 additions and 49 deletions
|
@ -1,9 +1,10 @@
|
|||
#import <CoreLocation/CoreLocation.h>
|
||||
|
||||
#import "MWMTypes.h"
|
||||
|
||||
#import "MWMBookmarksObserver.h"
|
||||
#import "PlacePageBookmarkData.h"
|
||||
|
||||
@class CLLocation;
|
||||
@class MWMBookmark;
|
||||
@class MWMBookmarkGroup;
|
||||
@class MWMBookmarksSection;
|
||||
|
@ -157,7 +158,7 @@ NS_SWIFT_NAME(BookmarksManager)
|
|||
+ (instancetype)allocWithZone:(struct _NSZone *)zone __attribute__((unavailable("call +manager instead")));
|
||||
+ (instancetype) new __attribute__((unavailable("call +manager instead")));
|
||||
|
||||
- (void)setElevationActivePoint:(double)distance trackId:(uint64_t)trackId;
|
||||
- (void)setElevationActivePoint:(CLLocationCoordinate2D)point distance:(double)distance trackId:(uint64_t)trackId;
|
||||
- (void)setElevationActivePointChanged:(uint64_t)trackId callback:(ElevationPointChangedBlock)callback;
|
||||
- (void)resetElevationActivePointChanged;
|
||||
- (void)setElevationMyPositionChanged:(uint64_t)trackId callback:(ElevationPointChangedBlock)callback;
|
||||
|
|
|
@ -830,9 +830,8 @@ static KmlFileType convertFileTypeToCore(MWMKmlFileType fileType) {
|
|||
}
|
||||
}
|
||||
|
||||
- (void)setElevationActivePoint:(double)distance trackId:(uint64_t)trackId {
|
||||
// TODO: Pass correct coordinates to show mark point on the map
|
||||
self.bm.SetElevationActivePoint(trackId, {0,0}, distance);
|
||||
- (void)setElevationActivePoint:(CLLocationCoordinate2D)point distance:(double)distance trackId:(uint64_t)trackId {
|
||||
self.bm.SetElevationActivePoint(trackId, mercator::FromLatLon(point.latitude, point.longitude), distance);
|
||||
}
|
||||
|
||||
- (void)setElevationActivePointChanged:(uint64_t)trackId callback:(ElevationPointChangedBlock)callback {
|
||||
|
|
|
@ -15,16 +15,16 @@ typedef NS_ENUM(NSInteger, PlacePageDataHotelType) {
|
|||
};
|
||||
|
||||
typedef NS_ENUM(NSInteger, PlacePageDataOpeningHours) {
|
||||
PlacePageDataOpeningHoursUnknown,
|
||||
PlacePageDataOpeningHoursAllDay,
|
||||
PlacePageDataOpeningHoursOpen,
|
||||
PlacePageDataOpeningHoursClosed,
|
||||
PlacePageDataOpeningHoursUnknown
|
||||
PlacePageDataOpeningHoursClosed
|
||||
};
|
||||
|
||||
typedef struct {
|
||||
PlacePageDataOpeningHours state;
|
||||
time_t nextTimeOpen;
|
||||
time_t nextTimeClosed;
|
||||
PlacePageDataOpeningHours state;
|
||||
time_t nextTimeOpen;
|
||||
time_t nextTimeClosed;
|
||||
} PlacePageDataSchedule;
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
@ -35,10 +35,9 @@ NS_ASSUME_NONNULL_BEGIN
|
|||
@property(nonatomic, readonly, nullable) NSString *secondaryTitle;
|
||||
@property(nonatomic, readonly, nullable) NSString *subtitle;
|
||||
@property(nonatomic, readonly, nullable) NSString *coordinates;
|
||||
@property(nonatomic, readonly, nullable) NSString *address;
|
||||
@property(nonatomic, readonly, nullable) NSString *secondarySubtitle;
|
||||
@property(nonatomic, readonly) PlacePageDataSchedule schedule;
|
||||
@property(nonatomic, readonly) BOOL isMyPosition;
|
||||
//@property(nonatomic, readonly) BOOL isPopular;
|
||||
|
||||
@end
|
||||
|
||||
|
|
|
@ -56,11 +56,13 @@ static PlacePageDataSchedule convertOpeningHours(std::string_view rawOH)
|
|||
_title = rawData.GetTitle().empty() ? nil : @(rawData.GetTitle().c_str());
|
||||
_secondaryTitle = rawData.GetSecondaryTitle().empty() ? nil : @(rawData.GetSecondaryTitle().c_str());
|
||||
_subtitle = rawData.GetSubtitle().empty() ? nil : @(rawData.GetSubtitle().c_str());
|
||||
_coordinates = @(rawData.GetFormattedCoordinate(place_page::CoordinatesFormat::LatLonDMS).c_str());
|
||||
_address = rawData.GetSecondarySubtitle().empty() ? nil : @(rawData.GetSecondarySubtitle().c_str());
|
||||
_isMyPosition = rawData.IsMyPosition();
|
||||
//_isPopular = rawData.GetPopularity() > 0;
|
||||
_schedule = convertOpeningHours(rawData.GetOpeningHours());
|
||||
_secondarySubtitle = rawData.GetSecondarySubtitle().empty() ? nil : @(rawData.GetSecondarySubtitle().c_str());
|
||||
|
||||
if (!rawData.IsTrack()) {
|
||||
_coordinates = @(rawData.GetFormattedCoordinate(place_page::CoordinatesFormat::LatLonDMS).c_str());
|
||||
_isMyPosition = rawData.IsMyPosition();
|
||||
_schedule = convertOpeningHours(rawData.GetOpeningHours());
|
||||
}
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
|
|
@ -1,13 +1,15 @@
|
|||
#import <Foundation/Foundation.h>
|
||||
#import <CoreLocation/CoreLocation.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface ElevationHeightPoint : NSObject
|
||||
|
||||
@property(nonatomic, readonly) CLLocationCoordinate2D coordinates;
|
||||
@property(nonatomic, readonly) double distance;
|
||||
@property(nonatomic, readonly) double altitude;
|
||||
|
||||
- (instancetype)initWithDistance:(double)distance andAltitude:(double)altitude;
|
||||
- (instancetype)initWithCoordinates:(CLLocationCoordinate2D)coordinates distance:(double)distance andAltitude:(double)altitude;
|
||||
|
||||
@end
|
||||
|
||||
|
|
|
@ -2,9 +2,10 @@
|
|||
|
||||
@implementation ElevationHeightPoint
|
||||
|
||||
- (instancetype)initWithDistance:(double)distance andAltitude:(double)altitude {
|
||||
- (instancetype)initWithCoordinates:(CLLocationCoordinate2D)coordinates distance:(double)distance andAltitude:(double)altitude {
|
||||
self = [super init];
|
||||
if (self) {
|
||||
_coordinates = coordinates;
|
||||
_distance = distance;
|
||||
_altitude = altitude;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#import "ElevationProfileData.h"
|
||||
#import "MWMTypes.h"
|
||||
|
||||
#include "map/elevation_info.hpp"
|
||||
|
||||
|
@ -6,9 +7,10 @@ NS_ASSUME_NONNULL_BEGIN
|
|||
|
||||
@interface ElevationProfileData (Core)
|
||||
|
||||
- (instancetype)initWithElevationInfo:(ElevationInfo const &)elevationInfo
|
||||
activePoint:(double)activePoint
|
||||
myPosition:(double)myPosition;
|
||||
- (instancetype)initWithTrackId:(MWMTrackID)trackId
|
||||
elevationInfo:(ElevationInfo const &)elevationInfo
|
||||
activePoint:(double)activePoint
|
||||
myPosition:(double)myPosition;
|
||||
|
||||
@end
|
||||
|
||||
|
|
|
@ -13,14 +13,8 @@ typedef NS_ENUM(NSInteger, ElevationDifficulty) {
|
|||
@interface ElevationProfileData : NSObject
|
||||
|
||||
@property(nonatomic, readonly) uint64_t trackId;
|
||||
@property(nonatomic, readonly) NSString *serverId;
|
||||
@property(nonatomic, readonly) NSUInteger ascent;
|
||||
@property(nonatomic, readonly) NSUInteger descent;
|
||||
@property(nonatomic, readonly) NSUInteger maxAttitude;
|
||||
@property(nonatomic, readonly) NSUInteger minAttitude;
|
||||
@property(nonatomic, readonly) ElevationDifficulty difficulty;
|
||||
@property(nonatomic, readonly) NSUInteger trackTime;
|
||||
@property(nonatomic, readonly) NSArray<ElevationHeightPoint *> *points;
|
||||
@property(nonatomic, readonly) NSArray<ElevationHeightPoint *> * points;
|
||||
@property(nonatomic, readonly) double activePoint;
|
||||
@property(nonatomic, readonly) double myPosition;
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#import "ElevationProfileData+Core.h"
|
||||
|
||||
#include "geometry/mercator.hpp"
|
||||
|
||||
static ElevationDifficulty convertDifficulty(uint8_t difficulty) {
|
||||
switch (difficulty) {
|
||||
case ElevationInfo::Difficulty::Easy:
|
||||
|
@ -20,21 +22,24 @@ static ElevationDifficulty convertDifficulty(uint8_t difficulty) {
|
|||
|
||||
@implementation ElevationProfileData (Core)
|
||||
|
||||
- (instancetype)initWithElevationInfo:(ElevationInfo const &)elevationInfo
|
||||
activePoint:(double)activePoint
|
||||
myPosition:(double)myPosition {
|
||||
- (instancetype)initWithTrackId:(MWMTrackID)trackId
|
||||
elevationInfo:(ElevationInfo const &)elevationInfo
|
||||
activePoint:(double)activePoint
|
||||
myPosition:(double)myPosition {
|
||||
self = [super init];
|
||||
if (self) {
|
||||
_ascent = elevationInfo.GetAscent();
|
||||
_descent = elevationInfo.GetDescent();
|
||||
_maxAttitude = elevationInfo.GetMaxAltitude();
|
||||
_minAttitude = elevationInfo.GetMinAltitude();
|
||||
_trackId = trackId;
|
||||
_difficulty = convertDifficulty(elevationInfo.GetDifficulty());
|
||||
NSMutableArray *pointsArray = [NSMutableArray array];
|
||||
for (auto const &p : elevationInfo.GetPoints()) {
|
||||
ElevationHeightPoint *point = [[ElevationHeightPoint alloc] initWithDistance:p.m_distance
|
||||
andAltitude:p.m_point.GetAltitude()];
|
||||
[pointsArray addObject:point];
|
||||
|
||||
auto const & points = elevationInfo.GetPoints();
|
||||
NSMutableArray * pointsArray = [[NSMutableArray alloc] initWithCapacity:points.size()];
|
||||
for (auto const & point : points) {
|
||||
auto pointLatLon = mercator::ToLatLon(point.m_point.GetPoint());
|
||||
CLLocationCoordinate2D coordinates = CLLocationCoordinate2DMake(pointLatLon.m_lat, pointLatLon.m_lon);
|
||||
ElevationHeightPoint * elevationPoint = [[ElevationHeightPoint alloc] initWithCoordinates:coordinates
|
||||
distance:point.m_distance
|
||||
andAltitude:point.m_point.GetAltitude()];
|
||||
[pointsArray addObject:elevationPoint];
|
||||
}
|
||||
_points = [pointsArray copy];
|
||||
_activePoint = activePoint;
|
||||
|
|
|
@ -4,11 +4,12 @@
|
|||
#import "MWMTypes.h"
|
||||
|
||||
@class PlacePageButtonsData;
|
||||
@class PlacePageTrackData;
|
||||
@class PlacePagePreviewData;
|
||||
@class PlacePageInfoData;
|
||||
@class PlacePageBookmarkData;
|
||||
@class ElevationProfileData;
|
||||
@class MWMMapNodeAttributes;
|
||||
@class TrackRecordingInfo;
|
||||
|
||||
typedef NS_ENUM(NSInteger, PlacePageRoadType) {
|
||||
PlacePageRoadTypeToll,
|
||||
|
@ -17,6 +18,13 @@ typedef NS_ENUM(NSInteger, PlacePageRoadType) {
|
|||
PlacePageRoadTypeNone
|
||||
};
|
||||
|
||||
typedef NS_ENUM(NSInteger, PlacePageObjectType) {
|
||||
PlacePageObjectTypePOI,
|
||||
PlacePageObjectTypeBookmark,
|
||||
PlacePageObjectTypeTrack,
|
||||
PlacePageObjectTypeTrackRecording
|
||||
};
|
||||
|
||||
@protocol IOpeningHoursLocalization;
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
@ -31,12 +39,13 @@ NS_ASSUME_NONNULL_BEGIN
|
|||
@property(nonatomic, readonly, nullable) PlacePageBookmarkData *bookmarkData;
|
||||
@property(nonatomic, readonly) PlacePageRoadType roadType;
|
||||
@property(nonatomic, readonly, nullable) NSString *wikiDescriptionHtml;
|
||||
@property(nonatomic, readonly, nullable) ElevationProfileData *elevationProfileData;
|
||||
@property(nonatomic, readonly, nullable) PlacePageTrackData *trackData;
|
||||
@property(nonatomic, readonly, nullable) MWMMapNodeAttributes *mapNodeAttributes;
|
||||
@property(nonatomic, readonly, nullable) NSString *bookingSearchUrl;
|
||||
@property(nonatomic, readonly) BOOL isMyPosition;
|
||||
@property(nonatomic, readonly) BOOL isPreviewPlus;
|
||||
@property(nonatomic, readonly) BOOL isRoutePoint;
|
||||
@property(nonatomic, readonly) PlacePageObjectType objectType;
|
||||
@property(nonatomic, readonly) CLLocationCoordinate2D locationCoordinate;
|
||||
@property(nonatomic, copy, nullable) MWMVoidBlock onBookmarkStatusUpdate;
|
||||
@property(nonatomic, copy, nullable) MWMVoidBlock onMapNodeStatusUpdate;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#import "PlacePagePreviewData+Core.h"
|
||||
#import "PlacePageInfoData+Core.h"
|
||||
#import "PlacePageBookmarkData+Core.h"
|
||||
#import "ElevationProfileData+Core.h"
|
||||
#import "PlacePageTrackData+Core.h"
|
||||
#import "MWMMapNodeAttributes.h"
|
||||
|
||||
#include <CoreApi/CoreApi.h>
|
||||
|
@ -42,6 +42,7 @@ static PlacePageRoadType convertRoadType(RoadWarningMarkType roadType) {
|
|||
_infoData = [[PlacePageInfoData alloc] initWithRawData:rawData() ohLocalization:localization];
|
||||
|
||||
if (rawData().IsBookmark()) {
|
||||
_objectType = PlacePageObjectTypeBookmark;
|
||||
_bookmarkData = [[PlacePageBookmarkData alloc] initWithRawData:rawData()];
|
||||
}
|
||||
|
||||
|
@ -63,8 +64,10 @@ static PlacePageRoadType convertRoadType(RoadWarningMarkType roadType) {
|
|||
}
|
||||
|
||||
if (rawData().IsTrack()) {
|
||||
// TODO: (KK) implement init with a track
|
||||
_infoData = nil;
|
||||
_objectType = PlacePageObjectTypeTrack;
|
||||
auto const & track = GetFramework().GetBookmarkManager().GetTrack(rawData().GetTrackId());
|
||||
_trackData = [[PlacePageTrackData alloc] initWithTrack:*track];
|
||||
_isPreviewPlus = track->HasAltitudes();
|
||||
}
|
||||
_previewData = [[PlacePagePreviewData alloc] initWithRawData:rawData()];
|
||||
|
||||
|
|
|
@ -63,8 +63,8 @@ NSString * httpGe0Url(NSString * shortUrl)
|
|||
return data.previewData.title;
|
||||
else if (data.previewData.subtitle.length)
|
||||
return data.previewData.subtitle;
|
||||
else if (data.previewData.address.length)
|
||||
return data.previewData.address;
|
||||
else if (data.previewData.secondarySubtitle.length)
|
||||
return data.previewData.secondarySubtitle;
|
||||
else
|
||||
return @"";
|
||||
};
|
||||
|
@ -138,7 +138,7 @@ NSString * httpGe0Url(NSString * shortUrl)
|
|||
NSMutableString * result = [L(@"sharing_call_action_look") mutableCopy];
|
||||
std::vector<NSString *> strings{self.data.previewData.title,
|
||||
self.data.previewData.subtitle,
|
||||
self.data.previewData.address,
|
||||
self.data.previewData.secondarySubtitle,
|
||||
self.data.infoData.phone,
|
||||
url,
|
||||
ge0Url};
|
||||
|
|
Loading…
Add table
Reference in a new issue