Parsing coordinates fix
This commit is contained in:
parent
0a3f9a8ae7
commit
2ef4a45f2f
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ static BOOL openUrlOnBalloonClick = NO;
|
|||
NSString * key = [values objectAtIndex:0];
|
||||
if ([key isEqualToString:@"ll"])
|
||||
{
|
||||
NSArray * coords = [param componentsSeparatedByString:@","];
|
||||
NSArray * coords = [[values objectAtIndex:1] componentsSeparatedByString:@","];
|
||||
if (coords.count == 2)
|
||||
{
|
||||
pin.lat = [[NSDecimalNumber decimalNumberWithString:[coords objectAtIndex:0]] doubleValue];
|
||||
|
|
Loading…
Add table
Reference in a new issue