根据用户指定的坐标显示mapview

时间:2013-10-07 11:34:38

标签: iphone ios objective-c

我正在开发iphone中的应用程序。在我的应用程序中,我有一个地图视图,显示用户在地图上的当前位置,并显示经度和纬度坐标。现在我想编辑坐标,根据mapview应该更新地图上的位置。

提前致谢。

2 个答案:

答案 0 :(得分:0)

enter image description here尝试此参考教程

Current Location & MapView

如果您有任何问题,请告诉我。

更新回答

CLLocationCoordinate2D placeCoord;
placeCoord.latitude=Your Latitude;
placeCoord.longitude=Your Longitude;

//Pass this where
//userLocation.coordinate is written in the tutorial
userLocation.coordinate = placeCoord;

更新了Answer2

Mapview

答案 1 :(得分:0)

-(void)animateMapToLocation:(CGFloat)latitude (CGFloat)longitude
{
  CLLocationCoordinate2D coordinate;
 coordinate.latitude=latitude;
 coordinate.longitude=longitude;

  [yourMKMapView setCenterCoordinate:coordinate animated:YES];

}

希望这会对你有所帮助。