23 lines
507 B
Objective-C
23 lines
507 B
Objective-C
//
|
|
// ANavPointModel.m
|
|
// AMapNavIOSSDK
|
|
//
|
|
// Created by admin on 2026/3/25.
|
|
//
|
|
|
|
#import "ANavPointModel.h"
|
|
|
|
@implementation ANavPointModel
|
|
///初始化
|
|
+ (instancetype)instanceWithCoordinate:(CLLocationCoordinate2D)coordinate name:(NSString *)name address:(NSString *)address {
|
|
ANavPointModel *instance = [[ANavPointModel alloc] init];
|
|
if (instance) {
|
|
instance.coordinate = coordinate;
|
|
instance.name = name;
|
|
instance.address = address;
|
|
}
|
|
return instance;
|
|
}
|
|
|
|
@end
|