我正在使用monotouch来使用c#代码创建iOS应用程序...我正在尝试使用此代码来使用导航/地图应用程序:
var addressDictionary = new NSMutableDictionary();
addressDictionary.Add(NSObject.FromObject("Name"), NSObject.FromObject(selectedLocation.Name));
MKPlacemark pMark = new MKPlacemark(new CLLocationCoordinate2D (loc.Latitude, loc.Longitude), null);
MKMapItem mapItem = new MKMapItem(pMark);
mapItem.OpenInMaps();
您可以创建一个NSDictionary并传入有关该位置的信息 - 如地址,名称等。但是,我不知道如何在c#代码中创建和使用该字典 - 所有编码示例我发现已经客观了......
我的目标是在地图应用中打开一个位置,并使用openinmaps()传递要在地图应用中的地标中显示的位置名称...
有没有办法使用c#代码创建这个“地址字典”,以便使用openinmaps函数将信息传递到地图应用程序中?
以下是一些客观c代码的示例:
-(void)showMap
{
NSDictionary *address = @{
(NSString *)kABPersonAddressStreetKey: _address.text,
(NSString *)kABPersonAddressCityKey: _city.text,
(NSString *)kABPersonAddressStateKey: _state.text,
(NSString *)kABPersonAddressZIPKey: _zip.text
};
MKPlacemark *place = [[MKPlacemark alloc]
initWithCoordinate:_coords
addressDictionary:address];
MKMapItem *mapItem = [[MKMapItem alloc]initWithPlacemark:place];
NSDictionary *options = @{
MKLaunchOptionsDirectionsModeKey:MKLaunchOptionsDirectionsModeDriving
};
[mapItem openInMapsWithLaunchOptions:options];
}
答案 0 :(得分:4)
我没试过这个,但是这样的东西应该可行 - MKPlacemark
使用的AddressDictionary与AddressBook使用的格式相同
NSMutableDictionary a = new NSMutableDictionary();
a.Add(ABPersonAddressKey.City, new NSString(city));
a.Add(ABPersonAddressKey.State, new NSString(state));
a.Add(ABPersonAddressKey.Zip, new NSString(zip));
a.Add(ABPersonAddressKey.Street, new NSString(addr1));