標記事件和手勢

設定特定的進階標記屬性後,即可監控標記事件 例如輕觸和手勢 如果輕觸標記,即可查看其他資訊,例如標記標題 或程式碼片段。此外,使用長按手勢即可移動可拖曳的標記。

回應標記事件

回應標記事件,只需新增 對檢視區塊使用 GMSMapViewDelegate 通訊協定,以及 實作對應的回呼。這個範例會指出 title snippet所選標記。

Swift

// MARK: GMSMapViewDelegate

func mapView(_ mapView: GMSMapView, didTap marker: GMSMarker) -> Bool {
  if let title = marker.title {
    if let snippet = marker.snippet {
      print("marker title: \(title): snippet: \(snippet)")
    }
  }
  return true
}

Objective-C

// MARK: GMSMapViewDelegate

-   (BOOL)mapView:(GMSMapView *)mapView didTapMarker:(GMSMarker *)marker {
  if (marker.title && marker.snippet) {
    NSLog(@"marker with title:%@ snippet: %@", marker.title,  marker.snippet)
  }
  return YES;
}

依地圖縮放等級控管標記顯示設定

如要控制 GMSMarker 的顯示設定,請實作 GMSMapViewDelegate 通訊協定,然後新增要設定的條件 GMSMarker.map

Swift

// MARK: GMSMapViewDelegate

func mapView(_ mapView: GMSMapView, didChange position: GMSCameraPosition) {
    marker.map = position.zoom >= 14 ? mapView : nil
}

Objective-C

// MARK: GMSMapViewDelegate

-   (void)mapView:(GMSMapView *)mapView didChangeCameraPosition:(GMSCameraPosition *)position {
  marker.map = position.zoom >= 14 ? mapView : nil;
}

將標記設為可拖曳

啟用 draggable 屬性後,使用者就能透過 長按手勢如要將標記設計為可拖曳,請設定 GMSMarker.draggable 屬性設為 true。

Swift

marker.draggable = true

Objective-C

marker.draggable = YES;