// // AIRGoogleMapManager.m // AirMaps // // Created by Gil Birman on 9/1/16. // #ifdef HAVE_GOOGLE_MAPS #import "AIRGoogleMapManager.h" #import #import #import #import #import #import #import #import #import "RCTConvert+GMSMapViewType.h" #import "AIRGoogleMap.h" #import "AIRMapMarker.h" #import "AIRMapPolyline.h" #import "AIRMapPolygon.h" #import "AIRMapCircle.h" #import "SMCalloutView.h" #import "AIRGoogleMapMarker.h" #import "RCTConvert+AirMap.h" #import #import static NSString *const RCTMapViewKey = @"MapView"; @interface AIRGoogleMapManager() { BOOL didCallOnMapReady; } @end @implementation AIRGoogleMapManager RCT_EXPORT_MODULE() - (UIView *)view { [GMSServices setMetalRendererEnabled:YES]; AIRGoogleMap *map = [AIRGoogleMap new]; map.bridge = self.bridge; map.delegate = self; map.isAccessibilityElement = NO; map.accessibilityElementsHidden = NO; map.settings.consumesGesturesInView = NO; UIPanGestureRecognizer *drag = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handleMapDrag:)]; [drag setMinimumNumberOfTouches:1]; [drag setMaximumNumberOfTouches:1]; [map addGestureRecognizer:drag]; UIPinchGestureRecognizer *pinch = [[UIPinchGestureRecognizer alloc] initWithTarget:self action:@selector(handleMapDrag:)]; [map addGestureRecognizer:pinch]; return map; } RCT_EXPORT_VIEW_PROPERTY(isAccessibilityElement, BOOL) RCT_REMAP_VIEW_PROPERTY(testID, accessibilityIdentifier, NSString) RCT_EXPORT_VIEW_PROPERTY(initialCamera, GMSCameraPosition) RCT_REMAP_VIEW_PROPERTY(camera, cameraProp, GMSCameraPosition) RCT_EXPORT_VIEW_PROPERTY(initialRegion, MKCoordinateRegion) RCT_EXPORT_VIEW_PROPERTY(region, MKCoordinateRegion) RCT_EXPORT_VIEW_PROPERTY(showsBuildings, BOOL) RCT_EXPORT_VIEW_PROPERTY(showsCompass, BOOL) //RCT_EXPORT_VIEW_PROPERTY(showsScale, BOOL) // Not supported by GoogleMaps RCT_EXPORT_VIEW_PROPERTY(showsTraffic, BOOL) RCT_EXPORT_VIEW_PROPERTY(zoomEnabled, BOOL) RCT_EXPORT_VIEW_PROPERTY(rotateEnabled, BOOL) RCT_EXPORT_VIEW_PROPERTY(scrollEnabled, BOOL) RCT_EXPORT_VIEW_PROPERTY(scrollDuringRotateOrZoomEnabled, BOOL) RCT_EXPORT_VIEW_PROPERTY(pitchEnabled, BOOL) RCT_EXPORT_VIEW_PROPERTY(zoomTapEnabled, BOOL) RCT_EXPORT_VIEW_PROPERTY(showsUserLocation, BOOL) RCT_EXPORT_VIEW_PROPERTY(showsMyLocationButton, BOOL) RCT_EXPORT_VIEW_PROPERTY(showsIndoors, BOOL) RCT_EXPORT_VIEW_PROPERTY(showsIndoorLevelPicker, BOOL) RCT_EXPORT_VIEW_PROPERTY(customMapStyleString, NSString) RCT_EXPORT_VIEW_PROPERTY(mapPadding, UIEdgeInsets) RCT_REMAP_VIEW_PROPERTY(paddingAdjustmentBehavior, paddingAdjustmentBehaviorString, NSString) RCT_EXPORT_VIEW_PROPERTY(onMapReady, RCTBubblingEventBlock) RCT_EXPORT_VIEW_PROPERTY(onMapLoaded, RCTBubblingEventBlock) RCT_EXPORT_VIEW_PROPERTY(onKmlReady, RCTBubblingEventBlock) RCT_EXPORT_VIEW_PROPERTY(onPress, RCTBubblingEventBlock) RCT_EXPORT_VIEW_PROPERTY(onLongPress, RCTBubblingEventBlock) RCT_EXPORT_VIEW_PROPERTY(onPanDrag, RCTBubblingEventBlock) RCT_EXPORT_VIEW_PROPERTY(onUserLocationChange, RCTBubblingEventBlock) RCT_EXPORT_VIEW_PROPERTY(onChange, RCTBubblingEventBlock) RCT_EXPORT_VIEW_PROPERTY(onMarkerPress, RCTDirectEventBlock) RCT_EXPORT_VIEW_PROPERTY(onRegionChange, RCTDirectEventBlock) RCT_EXPORT_VIEW_PROPERTY(onRegionChangeComplete, RCTDirectEventBlock) RCT_EXPORT_VIEW_PROPERTY(onPoiClick, RCTDirectEventBlock) RCT_EXPORT_VIEW_PROPERTY(onIndoorLevelActivated, RCTDirectEventBlock) RCT_EXPORT_VIEW_PROPERTY(onIndoorBuildingFocused, RCTDirectEventBlock) RCT_EXPORT_VIEW_PROPERTY(mapType, GMSMapViewType) RCT_EXPORT_VIEW_PROPERTY(minZoomLevel, CGFloat) RCT_EXPORT_VIEW_PROPERTY(maxZoomLevel, CGFloat) RCT_EXPORT_VIEW_PROPERTY(kmlSrc, NSString) RCT_EXPORT_METHOD(getCamera:(nonnull NSNumber *)reactTag resolver: (RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject) { [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, NSDictionary *viewRegistry) { id view = viewRegistry[reactTag]; if (![view isKindOfClass:[AIRGoogleMap class]]) { reject(@"Invalid argument", [NSString stringWithFormat:@"Invalid view returned from registry, expecting AIRGoogleMap, got: %@", view], NULL); } else { AIRGoogleMap *mapView = (AIRGoogleMap *)view; resolve(@{ @"center": @{ @"latitude": @(mapView.camera.target.latitude), @"longitude": @(mapView.camera.target.longitude), }, @"pitch": @(mapView.camera.viewingAngle), @"heading": @(mapView.camera.bearing), @"zoom": @(mapView.camera.zoom), }); } }]; } RCT_EXPORT_METHOD(setCamera:(nonnull NSNumber *)reactTag camera:(id)json) { [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, NSDictionary *viewRegistry) { id view = viewRegistry[reactTag]; if (![view isKindOfClass:[AIRGoogleMap class]]) { RCTLogError(@"Invalid view returned from registry, expecting AIRGoogleMap, got: %@", view); } else { AIRGoogleMap *mapView = (AIRGoogleMap *)view; GMSCameraPosition *camera = [RCTConvert GMSCameraPositionWithDefaults:json existingCamera:[mapView camera]]; [mapView setCamera:camera]; } }]; } RCT_EXPORT_METHOD(animateCamera:(nonnull NSNumber *)reactTag withCamera:(id)json withDuration:(CGFloat)duration) { [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, NSDictionary *viewRegistry) { id view = viewRegistry[reactTag]; if (![view isKindOfClass:[AIRGoogleMap class]]) { RCTLogError(@"Invalid view returned from registry, expecting AIRGoogleMap, got: %@", view); } else { [CATransaction begin]; [CATransaction setAnimationDuration:duration/1000]; AIRGoogleMap *mapView = (AIRGoogleMap *)view; GMSCameraPosition *camera = [RCTConvert GMSCameraPositionWithDefaults:json existingCamera:[mapView camera]]; [mapView animateToCameraPosition:camera]; [CATransaction commit]; } }]; } RCT_EXPORT_METHOD(animateToRegion:(nonnull NSNumber *)reactTag withRegion:(MKCoordinateRegion)region withDuration:(CGFloat)duration) { [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, NSDictionary *viewRegistry) { id view = viewRegistry[reactTag]; if (![view isKindOfClass:[AIRGoogleMap class]]) { RCTLogError(@"Invalid view returned from registry, expecting AIRGoogleMap, got: %@", view); } else { // Core Animation must be used to control the animation's duration // See http://stackoverflow.com/a/15663039/171744 [CATransaction begin]; [CATransaction setAnimationDuration:duration/1000]; AIRGoogleMap *mapView = (AIRGoogleMap *)view; GMSCameraPosition *camera = [AIRGoogleMap makeGMSCameraPositionFromMap:mapView andMKCoordinateRegion:region]; [mapView animateToCameraPosition:camera]; [CATransaction commit]; } }]; } RCT_EXPORT_METHOD(fitToElements:(nonnull NSNumber *)reactTag edgePadding:(nonnull NSDictionary *)edgePadding animated:(BOOL)animated) { [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, NSDictionary *viewRegistry) { id view = viewRegistry[reactTag]; if (![view isKindOfClass:[AIRGoogleMap class]]) { RCTLogError(@"Invalid view returned from registry, expecting AIRGoogleMap, got: %@", view); } else { AIRGoogleMap *mapView = (AIRGoogleMap *)view; CLLocationCoordinate2D myLocation = ((AIRGoogleMapMarker *)(mapView.markers.firstObject)).realMarker.position; GMSCoordinateBounds *bounds = [[GMSCoordinateBounds alloc] initWithCoordinate:myLocation coordinate:myLocation]; for (AIRGoogleMapMarker *marker in mapView.markers) bounds = [bounds includingCoordinate:marker.realMarker.position]; GMSCameraUpdate* cameraUpdate; if ([edgePadding count] != 0) { // Set Map viewport CGFloat top = [RCTConvert CGFloat:edgePadding[@"top"]]; CGFloat right = [RCTConvert CGFloat:edgePadding[@"right"]]; CGFloat bottom = [RCTConvert CGFloat:edgePadding[@"bottom"]]; CGFloat left = [RCTConvert CGFloat:edgePadding[@"left"]]; cameraUpdate = [GMSCameraUpdate fitBounds:bounds withEdgeInsets:UIEdgeInsetsMake(top, left, bottom, right)]; } else { cameraUpdate = [GMSCameraUpdate fitBounds:bounds withPadding:55.0f]; } if (animated) { [mapView animateWithCameraUpdate: cameraUpdate]; } else { [mapView moveCamera: cameraUpdate]; } } }]; } RCT_EXPORT_METHOD(fitToSuppliedMarkers:(nonnull NSNumber *)reactTag markers:(nonnull NSArray *)markers edgePadding:(nonnull NSDictionary *)edgePadding animated:(BOOL)animated) { [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, NSDictionary *viewRegistry) { id view = viewRegistry[reactTag]; if (![view isKindOfClass:[AIRGoogleMap class]]) { RCTLogError(@"Invalid view returned from registry, expecting AIRGoogleMap, got: %@", view); } else { AIRGoogleMap *mapView = (AIRGoogleMap *)view; NSPredicate *filterMarkers = [NSPredicate predicateWithBlock:^BOOL(id evaluatedObject, NSDictionary *bindings) { AIRGoogleMapMarker *marker = (AIRGoogleMapMarker *)evaluatedObject; return [marker isKindOfClass:[AIRGoogleMapMarker class]] && [markers containsObject:marker.identifier]; }]; NSArray *filteredMarkers = [mapView.markers filteredArrayUsingPredicate:filterMarkers]; CLLocationCoordinate2D myLocation = ((AIRGoogleMapMarker *)(filteredMarkers.firstObject)).realMarker.position; GMSCoordinateBounds *bounds = [[GMSCoordinateBounds alloc] initWithCoordinate:myLocation coordinate:myLocation]; for (AIRGoogleMapMarker *marker in filteredMarkers) bounds = [bounds includingCoordinate:marker.realMarker.position]; // Set Map viewport CGFloat top = [RCTConvert CGFloat:edgePadding[@"top"]]; CGFloat right = [RCTConvert CGFloat:edgePadding[@"right"]]; CGFloat bottom = [RCTConvert CGFloat:edgePadding[@"bottom"]]; CGFloat left = [RCTConvert CGFloat:edgePadding[@"left"]]; GMSCameraUpdate* cameraUpdate = [GMSCameraUpdate fitBounds:bounds withEdgeInsets:UIEdgeInsetsMake(top, left, bottom, right)]; if (animated) { [mapView animateWithCameraUpdate:cameraUpdate ]; } else { [mapView moveCamera: cameraUpdate]; } } }]; } RCT_EXPORT_METHOD(fitToCoordinates:(nonnull NSNumber *)reactTag coordinates:(nonnull NSArray *)coordinates edgePadding:(nonnull NSDictionary *)edgePadding animated:(BOOL)animated) { [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, NSDictionary *viewRegistry) { id view = viewRegistry[reactTag]; if (![view isKindOfClass:[AIRGoogleMap class]]) { RCTLogError(@"Invalid view returned from registry, expecting AIRGoogleMap, got: %@", view); } else { AIRGoogleMap *mapView = (AIRGoogleMap *)view; CLLocationCoordinate2D myLocation = coordinates.firstObject.coordinate; GMSCoordinateBounds *bounds = [[GMSCoordinateBounds alloc] initWithCoordinate:myLocation coordinate:myLocation]; for (AIRMapCoordinate *coordinate in coordinates) bounds = [bounds includingCoordinate:coordinate.coordinate]; // Set Map viewport CGFloat top = [RCTConvert CGFloat:edgePadding[@"top"]]; CGFloat right = [RCTConvert CGFloat:edgePadding[@"right"]]; CGFloat bottom = [RCTConvert CGFloat:edgePadding[@"bottom"]]; CGFloat left = [RCTConvert CGFloat:edgePadding[@"left"]]; GMSCameraUpdate *cameraUpdate = [GMSCameraUpdate fitBounds:bounds withEdgeInsets:UIEdgeInsetsMake(top, left, bottom, right)]; if (animated) { [mapView animateWithCameraUpdate: cameraUpdate]; } else { [mapView moveCamera: cameraUpdate]; } } }]; } RCT_EXPORT_METHOD(takeSnapshot:(nonnull NSNumber *)reactTag withWidth:(nonnull NSNumber *)width withHeight:(nonnull NSNumber *)height withRegion:(MKCoordinateRegion)region format:(nonnull NSString *)format quality:(nonnull NSNumber *)quality result:(nonnull NSString *)result withCallback:(RCTResponseSenderBlock)callback) { NSTimeInterval timeStamp = [[NSDate date] timeIntervalSince1970]; NSString *pathComponent = [NSString stringWithFormat:@"Documents/snapshot-%.20lf.%@", timeStamp, format]; NSString *filePath = [NSHomeDirectory() stringByAppendingPathComponent: pathComponent]; [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, NSDictionary *viewRegistry) { id view = viewRegistry[reactTag]; if (![view isKindOfClass:[AIRGoogleMap class]]) { RCTLogError(@"Invalid view returned from registry, expecting AIRMap, got: %@", view); } else { AIRGoogleMap *mapView = (AIRGoogleMap *)view; // TODO: currently we are ignoring width, height, region UIGraphicsBeginImageContextWithOptions(mapView.frame.size, YES, 0.0f); [mapView.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); NSData *data; if ([format isEqualToString:@"png"]) { data = UIImagePNGRepresentation(image); } else if([format isEqualToString:@"jpg"]) { data = UIImageJPEGRepresentation(image, quality.floatValue); } if ([result isEqualToString:@"file"]) { [data writeToFile:filePath atomically:YES]; callback(@[[NSNull null], filePath]); } else if ([result isEqualToString:@"base64"]) { callback(@[[NSNull null], [data base64EncodedStringWithOptions:NSDataBase64EncodingEndLineWithCarriageReturn]]); } } UIGraphicsEndImageContext(); }]; } RCT_EXPORT_METHOD(pointForCoordinate:(nonnull NSNumber *)reactTag coordinate:(NSDictionary *)coordinate resolver: (RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject) { CLLocationCoordinate2D coord = CLLocationCoordinate2DMake( [coordinate[@"latitude"] doubleValue], [coordinate[@"longitude"] doubleValue] ); [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, NSDictionary *viewRegistry) { id view = viewRegistry[reactTag]; if (![view isKindOfClass:[AIRGoogleMap class]]) { RCTLogError(@"Invalid view returned from registry, expecting AIRMap, got: %@", view); } else { AIRGoogleMap *mapView = (AIRGoogleMap *)view; CGPoint touchPoint = [mapView.projection pointForCoordinate:coord]; resolve(@{ @"x": @(touchPoint.x), @"y": @(touchPoint.y), }); } }]; } RCT_EXPORT_METHOD(coordinateForPoint:(nonnull NSNumber *)reactTag point:(NSDictionary *)point resolver: (RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject) { CGPoint pt = CGPointMake( [point[@"x"] doubleValue], [point[@"y"] doubleValue] ); [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, NSDictionary *viewRegistry) { id view = viewRegistry[reactTag]; if (![view isKindOfClass:[AIRGoogleMap class]]) { RCTLogError(@"Invalid view returned from registry, expecting AIRMap, got: %@", view); } else { AIRGoogleMap *mapView = (AIRGoogleMap *)view; CLLocationCoordinate2D coordinate = [mapView.projection coordinateForPoint:pt]; resolve(@{ @"latitude": @(coordinate.latitude), @"longitude": @(coordinate.longitude), }); } }]; } RCT_EXPORT_METHOD(getMarkersFrames:(nonnull NSNumber *)reactTag onlyVisible:(BOOL)onlyVisible resolver: (RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject) { [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, NSDictionary *viewRegistry) { id view = viewRegistry[reactTag]; if (![view isKindOfClass:[AIRGoogleMap class]]) { RCTLogError(@"Invalid view returned from registry, expecting AIRMap, got: %@", view); } else { AIRGoogleMap *mapView = (AIRGoogleMap *)view; resolve([mapView getMarkersFramesWithOnlyVisible:onlyVisible]); } }]; } RCT_EXPORT_METHOD(getMapBoundaries:(nonnull NSNumber *)reactTag resolver:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject) { [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, NSDictionary *viewRegistry) { id view = viewRegistry[reactTag]; if (![view isKindOfClass:[AIRGoogleMap class]]) { RCTLogError(@"Invalid view returned from registry, expecting AIRGoogleMap, got: %@", view); } else { NSArray *boundingBox = [view getMapBoundaries]; resolve(@{ @"northEast" : @{ @"longitude" : boundingBox[0][0], @"latitude" : boundingBox[0][1] }, @"southWest" : @{ @"longitude" : boundingBox[1][0], @"latitude" : boundingBox[1][1] } }); } }]; } RCT_EXPORT_METHOD(setMapBoundaries:(nonnull NSNumber *)reactTag northEast:(CLLocationCoordinate2D)northEast southWest:(CLLocationCoordinate2D)southWest) { [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, NSDictionary *viewRegistry) { id view = viewRegistry[reactTag]; if (![view isKindOfClass:[AIRGoogleMap class]]) { RCTLogError(@"Invalid view returned from registry, expecting AIRGoogleMap, got: %@", view); } else { AIRGoogleMap *mapView = (AIRGoogleMap *)view; GMSCoordinateBounds *bounds = [[GMSCoordinateBounds alloc] initWithCoordinate:northEast coordinate:southWest]; mapView.cameraTargetBounds = bounds; } }]; } RCT_EXPORT_METHOD(setIndoorActiveLevelIndex:(nonnull NSNumber *)reactTag levelIndex:(NSInteger) levelIndex) { [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, NSDictionary *viewRegistry) { id view = viewRegistry[reactTag]; if (![view isKindOfClass:[AIRGoogleMap class]]) { RCTLogError(@"Invalid view returned from registry, expecting AIRGoogleMap, got: %@", view); } else { AIRGoogleMap *mapView = (AIRGoogleMap *)view; if (!mapView.indoorDisplay) { return; } if ( levelIndex < [mapView.indoorDisplay.activeBuilding.levels count]) { mapView.indoorDisplay.activeLevel = mapView.indoorDisplay.activeBuilding.levels[levelIndex]; } } }]; } + (BOOL)requiresMainQueueSetup { return YES; } - (NSDictionary *)constantsToExport { return @{ @"legalNotice": [GMSServices openSourceLicenseInfo] }; } - (void)mapView:(GMSMapView *)mapView willMove:(BOOL)gesture{ self.isGesture = gesture; } - (void)mapViewDidStartTileRendering:(GMSMapView *)mapView { AIRGoogleMap *googleMapView = (AIRGoogleMap *)mapView; [googleMapView didPrepareMap]; } - (void)mapViewDidFinishTileRendering:(GMSMapView *)mapView { AIRGoogleMap *googleMapView = (AIRGoogleMap *)mapView; [googleMapView mapViewDidFinishTileRendering]; } - (BOOL)mapView:(GMSMapView *)mapView didTapMarker:(GMSMarker *)marker { AIRGoogleMap *googleMapView = (AIRGoogleMap *)mapView; return [googleMapView didTapMarker:marker]; } - (void)mapView:(GMSMapView *)mapView didTapOverlay:(GMSPolygon *)polygon { AIRGoogleMap *googleMapView = (AIRGoogleMap *)mapView; [googleMapView didTapPolygon:polygon]; } - (void)mapView:(GMSMapView *)mapView didTapAtCoordinate:(CLLocationCoordinate2D)coordinate { AIRGoogleMap *googleMapView = (AIRGoogleMap *)mapView; [googleMapView didTapAtCoordinate:coordinate]; } - (void)mapView:(GMSMapView *)mapView didLongPressAtCoordinate:(CLLocationCoordinate2D)coordinate { AIRGoogleMap *googleMapView = (AIRGoogleMap *)mapView; [googleMapView didLongPressAtCoordinate:coordinate]; } - (void)mapView:(GMSMapView *)mapView didChangeCameraPosition:(GMSCameraPosition *)position { AIRGoogleMap *googleMapView = (AIRGoogleMap *)mapView; [googleMapView didChangeCameraPosition:position isGesture:self.isGesture]; } - (void)mapView:(GMSMapView *)mapView idleAtCameraPosition:(GMSCameraPosition *)position { AIRGoogleMap *googleMapView = (AIRGoogleMap *)mapView; [googleMapView idleAtCameraPosition:position isGesture:self.isGesture]; } - (UIView *)mapView:(GMSMapView *)mapView markerInfoWindow:(GMSMarker *)marker { AIRGMSMarker *aMarker = (AIRGMSMarker *)marker; return [aMarker.fakeMarker markerInfoWindow];} - (UIView *)mapView:(GMSMapView *)mapView markerInfoContents:(GMSMarker *)marker { AIRGMSMarker *aMarker = (AIRGMSMarker *)marker; return [aMarker.fakeMarker markerInfoContents]; } - (void)mapView:(GMSMapView *)mapView didTapInfoWindowOfMarker:(GMSMarker *)marker { AIRGMSMarker *aMarker = (AIRGMSMarker *)marker; [aMarker.fakeMarker didTapInfoWindowOfMarker:aMarker]; } - (void)mapView:(GMSMapView *)mapView didBeginDraggingMarker:(GMSMarker *)marker { AIRGMSMarker *aMarker = (AIRGMSMarker *)marker; [aMarker.fakeMarker didBeginDraggingMarker:aMarker]; } - (void)mapView:(GMSMapView *)mapView didEndDraggingMarker:(GMSMarker *)marker { AIRGMSMarker *aMarker = (AIRGMSMarker *)marker; [aMarker.fakeMarker didEndDraggingMarker:aMarker]; } - (void)mapView:(GMSMapView *)mapView didDragMarker:(GMSMarker *)marker { AIRGMSMarker *aMarker = (AIRGMSMarker *)marker; [aMarker.fakeMarker didDragMarker:aMarker]; } - (void)mapView:(GMSMapView *)mapView didTapPOIWithPlaceID:(NSString *)placeID name:(NSString *)name location:(CLLocationCoordinate2D)location { AIRGoogleMap *googleMapView = (AIRGoogleMap *)mapView; [googleMapView didTapPOIWithPlaceID:placeID name:name location:location]; } #pragma mark Gesture Recognizer Handlers - (void)handleMapDrag:(UIPanGestureRecognizer*)recognizer { AIRGoogleMap *map = (AIRGoogleMap *)recognizer.view; if (!map.onPanDrag) return; CGPoint touchPoint = [recognizer locationInView:map]; CLLocationCoordinate2D coord = [map.projection coordinateForPoint:touchPoint]; map.onPanDrag(@{ @"coordinate": @{ @"latitude": @(coord.latitude), @"longitude": @(coord.longitude), }, @"position": @{ @"x": @(touchPoint.x), @"y": @(touchPoint.y), }, }); } @end #endif