You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
367 B
24 lines
367 B
1 year ago
|
//
|
||
|
// MAOfflineItemCommonCity.h
|
||
|
// MapKit_static
|
||
|
//
|
||
|
// Created by songjian on 14-4-23.
|
||
|
// Copyright © 2016 Amap. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "MAConfig.h"
|
||
|
|
||
|
#if MA_INCLUDE_OFFLINE
|
||
|
|
||
|
#import "MAOfflineCity.h"
|
||
|
|
||
|
///普通城市
|
||
|
@interface MAOfflineItemCommonCity : MAOfflineCity
|
||
|
|
||
|
///所属省份
|
||
|
@property (nonatomic, weak) MAOfflineItem *province;
|
||
|
|
||
|
@end
|
||
|
|
||
|
#endif
|