co-maps/iphone/Maps/Core/Routing/MWMRoutePoint+CPP.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
741 B
C
Raw Normal View History

2025-11-22 13:58:55 +01:00
#import "MWMRoutePoint.h"
#include "map/mwm_url.hpp"
#include "map/routing_mark.hpp"
@interface MWMRoutePoint (CPP)
@property(nonatomic, readonly) RouteMarkData routeMarkData;
- (instancetype)initWithURLSchemeRoutePoint:(url_scheme::RoutePoint const &)point
type:(MWMRoutePointType)type
intermediateIndex:(size_t)intermediateIndex;
- (instancetype)initWithRouteMarkData:(RouteMarkData const &)point;
- (instancetype)initWithPoint:(m2::PointD const &)point
title:(NSString *)title
subtitle:(NSString *)subtitle
type:(MWMRoutePointType)type
intermediateIndex:(size_t)intermediateIndex;
@end