Xcode version: 8.1
aim:
To replace native infoWindow by custom one
problem:
- When I click on the marker, my custom infoWindow did not show up but the native one, Or
- Thread 1:signal SIGABRT shown if I don't delete
myView.delegate = self
(See my code & my research #21)
what I have done:
- Created a .swift file and a .xib file with my custom infoWindow design.
Inserted mapView function into ViewController.swift:
override func viewDidLoad() { super.viewDidLoad()
...
let camera = GMSCameraPosition.camera(withLatitude: latitude, longitude: Longitude, zoom: 16) let mapView = GMSMapView.map(withFrame: CGRect.zero, camera: camera) mapView.delegate = self // Thread 1:signal SIGABRT shown if i add this line mapView.isMyLocationEnabled = true self.view = mapView let marker = GMSMarker() marker.position = CLLocationCoordinate2DMake(latitude, Longitude) marker.title = "Me" marker.map = mapView mapView.selectedMarker = marker } func mapView(_ mapView: GMSMapView, markerInfoWindow marker: GMSMarker) -> UIView? { let infoWindow = Bundle.main.loadNibNamed("CustomInfoWindow", owner: self.view, options: nil)!.first! as! CustomInfoWindow infoWindow.title.text = marker.title return infoWindow }
my research:
- https://developers.google.com/maps/documentation/ios-sdk/marker
- https://developers.google.com/maps/documentation/ios-sdk/reference/protocol_g_m_s_map_view_delegate-p
- https://forums.developer.apple.com/thread/8462
- http://kevinxh.github.io/swift/custom-and-interactive-googlemaps-ios-sdk-infowindow.html
- https://productforums.google.com/forum/#!topic/maps/w0sP7r3XAF4
- Custom InfoWindow for marker Google Maps SDK, Swift 2.0
- https://www.youtube.com/watch?v=ILiBXYscsyY
- Custom annotation view in Google Maps SDK
- Creating custom info window in swift with the Google maps iOS sdk?
- How to show a Info window in iOS Google maps without tapping on Marker?
- Custom info window in IOS google maps sdk
- IOS Google Map Custom InfoWindow Xib error
- Google Maps Info window's resizing based on the internal content
- Custom Info Window for Google Maps
- Custom InfoWindows issue -Google Maps iOS SDK-
- How to customize the InfoWindow of google map iOS SDK?
- swift 3 google maps custom infowindow
- How to initialise a UIView Class with a xib file in Swift, iOS
- https://github.com/ziyang0621/GoogleMaps-Swift/blob/master/GoogleMapSwift/ViewController.swift
- https://github.com/ryanmaxwell/GoogleMapsCalloutView
- Implementing custom markerInfoWindow in swift not working
- https://codedump.io/share/hh7CO7c2j3PI/1/custom-infowindow-for-marker-google-maps-sdk-swift-20