在Google地图中点击标记时如何防止相机移动?

时间:2016-05-05 02:46:09

标签: ios google-maps-sdk-ios

我正在使用Google Maps SDK for iOS。我想点击标记时防止相机移动。我该怎么做?

1 个答案:

答案 0 :(得分:4)

在viewDidLoad中添加以下代码

- (BOOL) mapView:(GMSMapView *)mapView didTapMarker:(GMSMarker *)marker {
     mapView.selectedMarker = marker;
     return TRUE;
}

积分

How to change default camera behavior when marker is tapped?