From a8ce097f87dc2df593c68149157ae7d75bc48b4c Mon Sep 17 00:00:00 2001 From: Joonas Kerttula Date: Mon, 3 Jun 2024 22:13:14 +0300 Subject: [PATCH] fix: fixes onMapClick event handling on iOS (#167) --- components/navigation/navigationView/index.tsx | 1 + package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/components/navigation/navigationView/index.tsx b/components/navigation/navigationView/index.tsx index ca2f86d..41c8c61 100644 --- a/components/navigation/navigationView/index.tsx +++ b/components/navigation/navigationView/index.tsx @@ -74,6 +74,7 @@ export default class NavigationView extends React.Component 'onRecenterButtonClick': this.onRecenterButtonClick, 'onRouteStatusResult': this.onRouteStatusResult, 'onMapReady': this.onMapReady, + 'onMapClick': this.onMapClick, 'onReroutingRequestedByOffRoute': this.onReroutingRequestedByOffRoute, 'onLocationChanged': this.onLocationChanged, 'onNavigationInitError': this.onNavigationInitError, diff --git a/package-lock.json b/package-lock.json index 195e829..4301bba 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "react-native-navigation-sdk", - "version": "0.2.2-beta", + "version": "0.3.2-beta", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "react-native-navigation-sdk", - "version": "0.2.2-beta", + "version": "0.3.2-beta", "license": "UNLICENSED", "devDependencies": { "@types/jest": "^29.5.3", diff --git a/package.json b/package.json index d45855a..89242ab 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-navigation-sdk", - "version": "0.3.1-beta", + "version": "0.3.2-beta", "author": "Google", "description": "A react-native library for Google's Navigation SDK", "private": false,