Commit 5a8767c5 authored by lmj_521aiau@163.com's avatar lmj_521aiau@163.com

no message

parent 74c96e68
......@@ -201,6 +201,16 @@
_GDMapView.showsCompass = false;
//如果您需要进入地图就显示定位小蓝点,则需要下面两行代码
_GDMapView.showsUserLocation = false;
_GDMapView.mapType = 0;
_GDMapView.showsWorldMap = @YES;
[_GDMapView performSelector:@selector(setShowsWorldMap:) withObject:@(YES)];
if ([ZJUserInfoManager CNLanguage]) {
_GDMapView.mapLanguage = @0;
[_GDMapView performSelector:NSSelectorFromString(@"setMapLanguage:") withObject:@(0)];
}else{
_GDMapView.mapLanguage = @1;
[_GDMapView performSelector:NSSelectorFromString(@"setMapLanguage:") withObject:@(1)];
}
[self.view addSubview: _GDMapView];
_GDMapView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment