forked from lookingstars/meituan
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d87f903
commit 21e0830
Showing
16 changed files
with
550 additions
and
54 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file modified
BIN
+4.38 KB
(110%)
meituan.xcworkspace/xcuserdata/jinzelu.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// | ||
// JZMAAroundAnnotation.h | ||
// meituan | ||
// | ||
// Created by jinzelu on 15/7/15. | ||
// Copyright (c) 2015年 jinzelu. All rights reserved. | ||
// | ||
|
||
#import <MAMapKit/MAMapKit.h> | ||
#import "JZMAAroundModel.h" | ||
|
||
@interface JZMAAroundAnnotation : MAPointAnnotation | ||
|
||
@property(nonatomic, strong) JZMAAroundModel *jzmaaroundM; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// JZMAAroundAnnotation.m | ||
// meituan | ||
// | ||
// Created by jinzelu on 15/7/15. | ||
// Copyright (c) 2015年 jinzelu. All rights reserved. | ||
// | ||
|
||
#import "JZMAAroundAnnotation.h" | ||
|
||
@implementation JZMAAroundAnnotation | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// | ||
// JZMAAroundModel.h | ||
// meituan | ||
// | ||
// Created by jinzelu on 15/7/15. | ||
// Copyright (c) 2015年 jinzelu. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
@interface JZMAAroundModel : NSObject | ||
|
||
@property(nonatomic, strong) NSString *mname;//标题 | ||
@property(nonatomic, strong) NSNumber *price;//价格 | ||
@property(nonatomic, strong) NSString *imgurl;//图片 | ||
|
||
@property(nonatomic, strong) NSMutableArray *rdplocs;//坐标等 | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// JZMAAroundModel.m | ||
// meituan | ||
// | ||
// Created by jinzelu on 15/7/15. | ||
// Copyright (c) 2015年 jinzelu. All rights reserved. | ||
// | ||
|
||
#import "JZMAAroundModel.h" | ||
|
||
@implementation JZMAAroundModel | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// | ||
// CustomAnnotationView.h | ||
// meituan | ||
// | ||
// Created by jinzelu on 15/7/15. | ||
// Copyright (c) 2015年 jinzelu. All rights reserved. | ||
// | ||
|
||
#import <MAMapKit/MAMapKit.h> | ||
#import "CustomCalloutView.h" | ||
#import "JZMAAroundAnnotation.h" | ||
|
||
@interface CustomAnnotationView : MAAnnotationView | ||
|
||
@property(nonatomic, strong) CustomCalloutView *calloutView; | ||
|
||
/*! | ||
@brief 关联的annotation | ||
*/ | ||
@property (nonatomic, strong) JZMAAroundAnnotation *jzAnnotation; | ||
|
||
@end |
Oops, something went wrong.