
Untitled
By: a guest on
Jun 17th, 2012 | syntax:
None | size: 0.78 KB | hits: 19 | expires: Never
Error in assigning latitude and logitude
double latitude1;
double longitude1;
@property (assign) double latitude1;
@property (assign) double longitude1;
CLLocationCoordinate2D theCoordinate;
theCoordinate.latitude = [ classObj.latitude1 doubleValue];
theCoordinate.longitude = [ classObj.longitude1 doubleValue];
theCoordinate.latitude = classObj.latitude1;
LLocationCoordinate2D theCoordinate = CLLocationCoordinate2DMake(classObj.latitude1, classObj.longitude1);
CLLocationCoordinate2D theCoordinate;
theCoordinate.latitude = classObj.latitude1;
theCoordinate.longitude = classObj.longitude1;
CLLocationCoordinate2D theCoordinate;
theCoordinate.latitude = classObj.latitude1;
theCoordinate.longitude = classObj.longitude1;