Skip to content

Instantly share code, notes, and snippets.

View TunvirRahman's full-sized avatar
🎯
Focusing

Tunvir Rahman Tusher TunvirRahman

🎯
Focusing
View GitHub Profile
@DejanEnspyra
DejanEnspyra / infowindow.swift
Last active September 7, 2020 22:26
Set up custom Info Window in Google Maps iOS SDK
extension ViewController: GMSMapViewDelegate{
/* handles Info Window tap */
func mapView(_ mapView: GMSMapView, didTapInfoWindowOf marker: GMSMarker) {
print("didTapInfoWindowOf")
}
/* handles Info Window long press */
func mapView(_ mapView: GMSMapView, didLongPressInfoWindowOf marker: GMSMarker) {
print("didLongPressInfoWindowOf")
}