i am newbie in Parse.in my Parse Table One Table Contain Location column and its type is object like as it is Shown in to Image.

Here i save An Array Value in to this Column like as
NSDictionary *firstJsonDictionary = [NSDictionary dictionaryWithObjectsAndKeys:
@"10.010490", @"latitude",
@"76.360779", @"longitude",
nil];
NSMutableArray * arr = [[NSMutableArray alloc] init];
[arr addObject:firstJsonDictionary];
PFObject *gameScore = [PFObject objectWithClassName:@"MapInfo"];
gameScore[@"Location"]=arr;
[gameScore saveInBackground];
Then it Give me Error like as
invalid type for key Location, expected map, but got array (Code: 111, Version: 1.6.2).
Please Give me Solution for it.
