brh55 / react-native-open-maps

🗺 A simple react-native library to perform cross-platform map actions (Google, Apple, or Yandex Maps)
MIT License
359 stars 47 forks source link

iOS14 navigation not working #34

Closed jdegger closed 4 years ago

jdegger commented 4 years ago

Hi, we use the following code which works absolutely fine on iOS13:

openMap({
  latitude: position.latitude,
  longitude: position.longitude,
  provider: 'apple',
  end: `${position.latitude},${position.longitude}`,
  navigate_mode: 'navigate',
  query: position.address,
});

However, on iOS14 (beta), this seems to have stopped working. This might as well be a big of the iOS14 beta but I'm still reporting it here in case somebody else knows what's up.

Anybody know how to solve the issue?

jdegger commented 4 years ago

I spoke too soon, seemed like a temporary hick-up and the code is still working fine.