Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 iphone 中开发一个应用程序。在我的应用程序中,我有一个地图视图,它在地图上显示用户当前位置,还显示经度和纬度坐标。现在我想编辑坐标并根据该地图视图应该更新地图上的位置。
提前致谢。
试试这个参考教程
当前位置和地图视图
如果您有任何问题,请告诉我。
更新的答案
CLLocationCoordinate2D placeCoord; placeCoord.latitude=Your Latitude; placeCoord.longitude=Your Longitude; //Pass this where //userLocation.coordinate is written in the tutorial userLocation.coordinate = placeCoord;
更新答案2
地图视图
-(void)animateMapToLocation:(CGFloat)latitude (CGFloat)longitude { CLLocationCoordinate2D coordinate; coordinate.latitude=latitude; coordinate.longitude=longitude; [yourMKMapView setCenterCoordinate:coordinate animated:YES]; }
希望这对您有所帮助。