我正在开发iphone中的应用程序。在我的应用程序中,我有一个地图视图,显示用户在地图上的当前位置,并显示经度和纬度坐标。现在我想编辑坐标,根据mapview应该更新地图上的位置。
提前致谢。
答案 0 :(得分:0)
尝试此参考教程
如果您有任何问题,请告诉我。
更新回答
CLLocationCoordinate2D placeCoord;
placeCoord.latitude=Your Latitude;
placeCoord.longitude=Your Longitude;
//Pass this where
//userLocation.coordinate is written in the tutorial
userLocation.coordinate = placeCoord;
更新了Answer2
答案 1 :(得分:0)
-(void)animateMapToLocation:(CGFloat)latitude (CGFloat)longitude
{
CLLocationCoordinate2D coordinate;
coordinate.latitude=latitude;
coordinate.longitude=longitude;
[yourMKMapView setCenterCoordinate:coordinate animated:YES];
}
希望这会对你有所帮助。