เมื่อใช้ Maps SDK สำหรับ iOS คุณสามารถฟังเหตุการณ์ที่เกิดขึ้นบน เช่น เหตุการณ์การเปลี่ยนกล้อง หรือเหตุการณ์การแตะของเครื่องหมาย
บทนำ
หากต้องการตรวจสอบเหตุการณ์ คุณต้องติดตั้งใช้งานโปรโตคอล GMSMapViewDelegate
โดยปกติแล้วคุณจะใช้
โปรโตคอลนี้บนตัวควบคุมมุมมองที่แสดงแผนที่ ตัวอย่างด้านล่างนี้
Swift
import GoogleMaps class Events: UIViewController, GMSMapViewDelegate { // ... }
Objective-C
@import GoogleMaps; @interface Events : UIViewController <GMSMapViewDelegate> @end
เมื่อสร้าง GMSMapView
แล้ว คุณจะสามารถกำหนดผู้รับมอบสิทธิ์ให้กับข้อมูลพร็อพเพอร์ตี้ของคุณได้
GMSMapViewDelegate
มีเฉพาะเมธอดที่ไม่บังคับเท่านั้น ฟัง
คุณต้องนำวิธีการที่เกี่ยวข้องไปใช้
Swift
override func loadView() { super.loadView() let camera = GMSCameraPosition.camera( withLatitude: 1.285, longitude: 103.848, zoom: 12 ) let mapView = GMSMapView.map(withFrame: .zero, camera: camera) mapView.delegate = self self.view = mapView } // MARK: GMSMapViewDelegate func mapView(_ mapView: GMSMapView, didTapAt coordinate: CLLocationCoordinate2D) { print("You tapped at \(coordinate.latitude), \(coordinate.longitude)") }
Objective-C
- (void)loadView { [super loadView]; GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:1.285 longitude:103.848 zoom:12]; GMSMapView *mapView = [GMSMapView mapWithFrame:CGRectZero camera:camera]; mapView.delegate = self; self.view = mapView; } #pragma mark - GMSMapViewDelegate - (void)mapView:(GMSMapView *)mapView didTapAtCoordinate:(CLLocationCoordinate2D)coordinate { NSLog(@"You tapped at %f,%f", coordinate.latitude, coordinate.longitude); }
ตำแหน่งกล้อง
คุณจะใช้ GMSMapViewDelegate
เพื่อฟังการเปลี่ยนแปลงตำแหน่งของกล้องได้
ที่ใช้เพื่อแสดงแผนที่ โดยมี 3 เหตุการณ์ที่แตกต่างกัน
mapView:willMove:
บ่งบอกว่าตำแหน่งของกล้องกำลังจะเปลี่ยน หากตั้งค่าอาร์กิวเมนต์gesture
เป็นYES
กรณีนี้เกิดจากผู้ใช้ดำเนินการ เป็นท่าทางสัมผัสที่เป็นธรรมชาติในGMSMapView
เช่น การแพนหรือเอียง ไม่เช่นนั้นNO
จะระบุว่านี่คือส่วนหนึ่งของการเปลี่ยนแปลงแบบเป็นโปรแกรม ตัวอย่างเช่น ใช้วิธีการอย่างanimateToCameraPosition:
หรือการอัปเดต เลเยอร์ของแผนที่โดยตรง ค่านี้อาจเป็นNO
ได้ด้วยหากผู้ใช้แตะ ปุ่มตำแหน่งหรือเข็มทิศ ซึ่งจะสร้างภาพเคลื่อนไหวที่เปลี่ยน กล้องอาจมีการเรียกใช้วิธีการนี้หลายครั้งก่อน มีการเรียกใช้
mapView:idleAtCameraPosition:
แม้ว่าโดยปกติจะมีการเรียกใช้ จะเกิดขึ้นก็ต่อเมื่อภาพเคลื่อนไหวและท่าทางสัมผัสเกิดขึ้นพร้อมกัน ซึ่งก็คือท่าทางสัมผัส ยกเลิกภาพเคลื่อนไหวปัจจุบัน เช่นmapView:willMove:
ครั้งที่ 2ถูกเรียก
mapView:didChangeCameraPosition:
ซ้ำๆ ระหว่างการแสดงท่าทาง หรือ ภาพเคลื่อนไหว ทุกครั้งหลังจากเรียกmapView:willMove:
ซึ่งผ่าน ตำแหน่งกล้องระดับกลางระบบเรียกใช้
mapView:idleAtCameraPosition:
เมื่อตำแหน่งกล้อง เมื่อGMSMapView
ไม่มีการใช้งาน และระบุตำแหน่งกล้องที่เกี่ยวข้อง ที่จุดนี้ ภาพเคลื่อนไหวและท่าทางสัมผัสทั้งหมดหยุดลงแล้วแอปพลิเคชันสามารถใช้เหตุการณ์นี้เพื่อทริกเกอร์การรีเฟรชเครื่องหมายหรือ เนื้อหาที่แสดงใน
GMSMapView
แทนที่จะเป็น โหลดเนื้อหาในกล้องซ้ำทุกครั้ง
ตัวอย่างเช่น แอปพลิเคชันสามารถล้าง GMSMapView
ขณะเคลื่อนไหว จากนั้น
เข้ารหัสพิกัดภูมิศาสตร์แบบย้อนกลับตำแหน่งของกล้อง
Swift
let geocoder = GMSGeocoder() func mapView(_ mapView: GMSMapView, willMove gesture: Bool) { mapView.clear() } func mapView(_ mapView: GMSMapView, idleAt cameraPosition: GMSCameraPosition) { geocoder.reverseGeocodeCoordinate(cameraPosition.target) { (response, error) in guard error == nil else { return } if let result = response?.firstResult() { let marker = GMSMarker() marker.position = cameraPosition.target marker.title = result.lines?[0] marker.snippet = result.lines?[1] marker.map = mapView } } }
Objective-C
GMSGeocoder *geocoder; - (void)mapView:(GMSMapView *)mapView willMove:(BOOL)gesture { [mapView clear]; } - (void)mapView:(GMSMapView *)mapView idleAtCameraPosition:(GMSCameraPosition *)cameraPosition { id handler = ^(GMSReverseGeocodeResponse *response, NSError *error) { if (error != nil) { return; } GMSReverseGeocodeResult *result = response.firstResult; GMSMarker *marker = [GMSMarker markerWithPosition:cameraPosition.target]; marker.title = result.lines[0]; marker.snippet = result.lines[1]; marker.map = mapView; }; [geocoder reverseGeocodeCoordinate:cameraPosition.target completionHandler:handler]; }
กิจกรรมในธุรกิจและจุดที่น่าสนใจอื่นๆ
โดยค่าเริ่มต้น จุดที่น่าสนใจ (POI) จะปรากฏบนแผนที่ฐานพร้อมกับไอคอนของจุดที่น่าสนใจ จุดที่น่าสนใจ ได้แก่ สวนสาธารณะ โรงเรียน อาคารหน่วยงานราชการ และอื่นๆ รวมถึงจุดที่น่าสนใจของธุรกิจ เช่น ร้านค้า ร้านอาหาร และโรงแรม
คุณสามารถตอบสนองต่อเหตุการณ์การคลิกในจุดที่น่าสนใจได้ ดูคู่มือสำหรับ ธุรกิจและจุดที่น่าสนใจอื่นๆ
เหตุการณ์อื่นๆ
ดูรายการวิธีการทั้งหมดใน GMSMapViewDelegate
ได้ที่คู่มืออ้างอิง