我是 ios 新手,在地图视图上工作我已经使用 lat、long 在地图视图(注释)上显示了位置。地图视图正在显示位置,但需要进行捏合以获得确切位置。(用两个手指缩放)我正在使用以下代码,但它没有显示确切位置的确切位置我需要使用缩放然后显示确切位置但我想在不触摸地图视图的情况下显示它??
zoomLocation.latitude = latmpa.doubleValue;
zoomLocation.longitude = logmpa.doubleValue;
annotationPoint = [[MKPointAnnotation alloc] init];
annotationPoint.coordinate = zoomLocation;
annotationPoint.title = @"masjid....";
[mapView selectAnnotation:annotationPoint animated:YES];
[mapView addAnnotation:annotationPoint];
mapView.centerCoordinate = annotationPoint.coordinate;