26 lines
644 B
Objective-C
26 lines
644 B
Objective-C
//
|
|
// AMapNaviHeaderHandler.h
|
|
// AMapNaviKit
|
|
//
|
|
// Created by eidan on 2018/9/21.
|
|
// Copyright © 2018年 Amap. All rights reserved.
|
|
//
|
|
|
|
#if __has_include(<AMapNaviKit/MAMapKit.h>)
|
|
#import <AMapNaviKit/MAMapKit.h>
|
|
#elif __has_include(<MAMapKit/MAMapKit.h>)
|
|
#import <MAMapKit/MAMapKit.h>
|
|
#elif __has_include("MAMapKit.h")
|
|
#import "MAMapKit.h"
|
|
#endif
|
|
|
|
#if __has_include(<AMapFoundationKit/AMapFoundationKit.h>)
|
|
#import <AMapFoundationKit/AMapFoundationKit.h>
|
|
#elif __has_include(<AMapNaviKit/AMapFoundationKit.h>)
|
|
#import <AMapNaviKit/AMapFoundationKit.h>
|
|
#elif __has_include("AMapFoundationKit.h")
|
|
#import "AMapFoundationKit.h"
|
|
#endif
|
|
|
|
|