diff --git a/iphone/CoreApi/CoreApi/Framework/MWMFrameworkHelper.h b/iphone/CoreApi/CoreApi/Framework/MWMFrameworkHelper.h index 1643a1b32f..96806e9add 100644 --- a/iphone/CoreApi/CoreApi/Framework/MWMFrameworkHelper.h +++ b/iphone/CoreApi/CoreApi/Framework/MWMFrameworkHelper.h @@ -23,6 +23,7 @@ NS_SWIFT_NAME(FrameworkHelper) + (MWMMarkGroupID)invalidCategoryId; + (void)zoomMap:(MWMZoomMode)mode; + (void)moveMap:(UIOffset)offset; ++ (void)scrollMap:(double)distanceX :(double) distanceY; + (void)deactivateMapSelection:(BOOL)notifyUI NS_SWIFT_NAME(deactivateMapSelection(notifyUI:)); + (void)switchMyPositionMode; + (void)stopLocationFollow; diff --git a/iphone/CoreApi/CoreApi/Framework/MWMFrameworkHelper.mm b/iphone/CoreApi/CoreApi/Framework/MWMFrameworkHelper.mm index 2f1190a324..e9b0811dd8 100644 --- a/iphone/CoreApi/CoreApi/Framework/MWMFrameworkHelper.mm +++ b/iphone/CoreApi/CoreApi/Framework/MWMFrameworkHelper.mm @@ -112,6 +112,10 @@ GetFramework().Move(offset.horizontal, offset.vertical, true); } ++ (void)scrollMap:(double) distanceX :(double) distanceY { + GetFramework().Scroll(distanceX, distanceY); +} + + (void)deactivateMapSelection:(BOOL)notifyUI { GetFramework().DeactivateMapSelection(notifyUI); } diff --git a/iphone/Maps/Classes/CarPlay/CarPlayService.swift b/iphone/Maps/Classes/CarPlay/CarPlayService.swift index 25ab63b3af..b90af524e1 100644 --- a/iphone/Maps/Classes/CarPlay/CarPlayService.swift +++ b/iphone/Maps/Classes/CarPlay/CarPlayService.swift @@ -375,6 +375,11 @@ extension CarPlayService: CPMapTemplateDelegate { isUserPanMap = true } + func mapTemplate(_ mapTemplate: CPMapTemplate, didUpdatePanGestureWithTranslation translation: CGPoint, velocity: CGPoint) { + let scaleFactor = self.carplayVC?.mapView?.contentScaleFactor ?? 1 + FrameworkHelper.scrollMap(-scaleFactor * translation.x, -scaleFactor * translation.y); + } + func mapTemplate(_ mapTemplate: CPMapTemplate, startedTrip trip: CPTrip, using routeChoice: CPRouteChoice) { guard let info = routeChoice.userInfo as? RouteInfo else { if let info = routeChoice.userInfo as? [String: Any],