Commit 77fa31a4 authored by lmj_521aiau@163.com's avatar lmj_521aiau@163.com

no message

parent ded8db1f
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
ignoresPersistentStateOnLaunch = "NO" ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES" debugDocumentVersioning = "YES"
debugServiceExtension = "internal" debugServiceExtension = "internal"
allowLocationSimulation = "NO"> allowLocationSimulation = "YES">
<BuildableProductRunnable <BuildableProductRunnable
runnableDebuggingMode = "0"> runnableDebuggingMode = "0">
<BuildableReference <BuildableReference
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
</BuildableReference> </BuildableReference>
</BuildableProductRunnable> </BuildableProductRunnable>
<LocationScenarioReference <LocationScenarioReference
identifier = "New York, NY, USA" identifier = "com.apple.dt.IDEFoundation.CurrentLocationScenarioIdentifier"
referenceType = "1"> referenceType = "1">
</LocationScenarioReference> </LocationScenarioReference>
</LaunchAction> </LaunchAction>
......
...@@ -110,7 +110,7 @@ ...@@ -110,7 +110,7 @@
[self setPoint:camera.target target:1]; [self setPoint:camera.target target:1];
// self.GDMapView = [[MAMapView alloc] initWithFrame:self.view.bounds]; self.GDMapView = [[MAMapView alloc] initWithFrame:self.view.bounds];
_GDMapView.delegate = self; _GDMapView.delegate = self;
_GDMapView.zoomLevel = 14; _GDMapView.zoomLevel = 14;
_GDMapView.showsScale = false; _GDMapView.showsScale = false;
...@@ -127,7 +127,7 @@ ...@@ -127,7 +127,7 @@
_GDMapView.mapLanguage = @1; _GDMapView.mapLanguage = @1;
[_GDMapView performSelector:NSSelectorFromString(@"setMapLanguage:") withObject:@(1)]; [_GDMapView performSelector:NSSelectorFromString(@"setMapLanguage:") withObject:@(1)];
} }
// [self.view addSubview: _GDMapView]; [self.view addSubview: _GDMapView];
_GDMapView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight; _GDMapView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
_GDMapView.hidden = YES; _GDMapView.hidden = YES;
......
...@@ -189,7 +189,7 @@ ...@@ -189,7 +189,7 @@
_GGMapView.hidden = YES; _GGMapView.hidden = YES;
// self.GDMapView = [[MAMapView alloc] initWithFrame:self.view.bounds]; self.GDMapView = [[MAMapView alloc] initWithFrame:self.view.bounds];
_GDMapView.delegate = self; _GDMapView.delegate = self;
_GDMapView.zoomLevel = 14; _GDMapView.zoomLevel = 14;
_GDMapView.showsScale = false; _GDMapView.showsScale = false;
...@@ -206,7 +206,7 @@ ...@@ -206,7 +206,7 @@
_GDMapView.mapLanguage = @1; _GDMapView.mapLanguage = @1;
[_GDMapView performSelector:NSSelectorFromString(@"setMapLanguage:") withObject:@(1)]; [_GDMapView performSelector:NSSelectorFromString(@"setMapLanguage:") withObject:@(1)];
} }
// [self.view addSubview: _GDMapView]; [self.view addSubview: _GDMapView];
_GDMapView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight; _GDMapView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
_GDMapView.hidden = YES; _GDMapView.hidden = YES;
...@@ -708,7 +708,7 @@ ...@@ -708,7 +708,7 @@
self.tttCount = 0; self.tttCount = 0;
// 4.0/self.initiallinepath.count // 4.0/self.initiallinepath.count
_ttt = [NSTimer scheduledTimerWithTimeInterval:0.15 target:self selector:@selector(animate) userInfo:nil repeats:YES]; _ttt = [NSTimer scheduledTimerWithTimeInterval:4.0/self.initiallinepath.count target:self selector:@selector(animate) userInfo:nil repeats:YES];
[[NSRunLoop currentRunLoop] addTimer:_ttt forMode:NSRunLoopCommonModes]; [[NSRunLoop currentRunLoop] addTimer:_ttt forMode:NSRunLoopCommonModes];
} }
......
...@@ -169,8 +169,8 @@ static ZJLocationManager * manager; ...@@ -169,8 +169,8 @@ static ZJLocationManager * manager;
BOOL isChina = NO; BOOL isChina = NO;
isChina = [placemark.ISOcountryCode isEqualToString:@"CN"]; isChina = [placemark.ISOcountryCode isEqualToString:@"CN"];
// _mapType = isChina ? ZJ_MAMapType : ZJ_GMSMapType; _mapType = isChina ? ZJ_MAMapType : ZJ_GMSMapType;
_mapType = ZJ_GMSMapType; // _mapType = ZJ_GMSMapType;
[self.data WirteDic:@(_mapType) Key:@"mapType"]; [self.data WirteDic:@(_mapType) Key:@"mapType"];
[self.data WirteDic:@(coord.latitude) Key:@"latitude"]; [self.data WirteDic:@(coord.latitude) Key:@"latitude"];
[self.data WirteDic:@(coord.longitude) Key:@"longitude"]; [self.data WirteDic:@(coord.longitude) Key:@"longitude"];
......
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