12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- //
- // JXGooMapVC.h
- // shiku_im
- //
- // Created by Apple on 16/12/6.
- // Copyright © 2016年 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #ifdef USE_GOOGLEMAP
- #import <GoogleMaps/GoogleMaps.h>
- #endif
- @interface JXGooMapVC : UIViewController {
- ATMHud * _wait;
- }
- #ifdef USE_GOOGLEMAP
- @property (nonatomic,strong) GMSMarker * lastMarkerView;//上次被选择的大头针
- #endif
- @property (nonatomic,assign) double locX;
- @property (nonatomic,assign) double locY;
- @property (nonatomic,assign) float zoomLevel;
- @property (nonatomic,strong) NSMutableArray * nearbyData;//数据源
- @property (nonatomic,strong) UIButton * resetLoca;
- @property (nonatomic,assign) int dataType;//依据VC获取不同的数据
- @property (nonatomic,assign) int currentDataType;//依据VC获取不同的数据
- @property (nonatomic,strong) NSMutableArray * allMarkerView;//所有标签
- @property (nonatomic,strong) UIView * scaleView;//放大缩小按钮父视图
- @property (nonatomic,assign) int fnId;
- @property (nonatomic,assign) int cityId;
- @property (nonatomic,assign) int currentIndex;//当前显示ScrollView的index,点击后展示
- @property (nonatomic,assign) CGPoint lastContentSet;//旧的位置,用于判断ScrollView左划还是右划
- @property (nonatomic,assign) int direction;//ScrollView左划还是右划
- @property (nonatomic,strong) UIScrollView * resumeScrolView;
- @property (nonatomic,strong) UIScrollView * topScrolView;
- @property (nonatomic,strong) UIView * topMinView;
- @property (nonatomic,strong) UIView * scrollBackground;
- @property (nonatomic,strong) UIView * jobDetailOne;
- @property (nonatomic,strong) UIView * jobDetailTwo;
- @property (nonatomic,strong) UIView * jobDetailThree;
- //标题
- @property (nonatomic,strong) UILabel * titleLabelOne;
- @property (nonatomic,strong) UILabel * titleLabelTwo;
- @property (nonatomic,strong) UILabel * titleLabelThree;
- //付费方式
- @property (nonatomic,strong) UILabel * payLabelOne;
- @property (nonatomic,strong) UILabel * payLabelTwo;
- @property (nonatomic,strong) UILabel * payLabelThree;
- //详情
- @property (nonatomic,strong) UILabel * detailLabelOne;
- @property (nonatomic,strong) UILabel * detailLabelTwo;
- @property (nonatomic,strong) UILabel * detailLabelThree;
- //头像
- @property (nonatomic,strong) UIImageView * headImageOne;
- @property (nonatomic,strong) UIImageView * headImageTwo;
- @property (nonatomic,strong) UIImageView * headImageThree;
- //昵称
- @property (nonatomic,strong) UILabel * nameLabelOne;
- @property (nonatomic,strong) UILabel * nameLabelTwo;
- @property (nonatomic,strong) UILabel * nameLabelThree;
- //认证
- @property (nonatomic,strong) UIImageView * identImageOne;
- @property (nonatomic,strong) UIImageView * identImageTwo;
- @property (nonatomic,strong) UIImageView * identImageThree;
- //信誉积分背景
- @property (nonatomic,strong) UIImageView * integralImageOne;
- @property (nonatomic,strong) UIImageView * integralImageTwo;
- @property (nonatomic,strong) UIImageView * integralImageThree;
- //信誉积分
- @property (nonatomic,strong) UILabel * integralLabelOne;
- @property (nonatomic,strong) UILabel * integralLabelTwo;
- @property (nonatomic,strong) UILabel * integralLabelThree;
- //距离
- @property (nonatomic,strong) UILabel * distanceLabelOne;
- @property (nonatomic,strong) UILabel * distanceLabelTwo;
- @property (nonatomic,strong) UILabel * distanceLabelThree;
- @property (nonatomic, strong) searchData *search;
- - (instancetype)initWithFrame:(CGRect)frame andType:(int)dataType;
- -(void)getDataByCurrentLocation;
- @end
|