mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-20 21:33:59 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
21 lines
741 B
Objective-C
21 lines
741 B
Objective-C
#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
|