Merge pull request #4 from Kirillcpp/coordinatesParseFix
Parsing coordinates fix
This commit is contained in:
commit
5e8555a5af
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