react-native-maps-navigation
react-native-maps-navigation copied to clipboard
Missing Icons
I got this up and running, but it's missing map marker icons, nav icons and the user/device icon. Any ideas?
Hello! I also got this up and running using expo and I noticed the icons are missing as well. I looked further into this and discovered that the icons are not in a traditional utf-16 format of /u#### but instead in a format of /ue###
In React-Native > 0.60 you have to add a react-native.config.js
file to the root folder with the following content:
module.exports = {
project: {
ios: {},
android: {},
},
assets: ['./assets/fonts'],
};
Then you have to copy the navigation font from the package to your asset folder
I have an unrecognized font family "Navigation", how can I fix that ? I put a font named "Navigation" in the fonts folder and linked but it doesn't seems to work ? Or can I change the font family of the lib ?
And the icons are not working too. Any Idea ?
Hello! I also got this up and running using expo and I noticed the icons are missing as well. I looked further into this and discovered that the icons are not in a traditional utf-16 format of /u#### but instead in a format of /ue###
hi, did you fix it somehow?
I got this up and running, but it's missing map marker icons, nav icons and the user/device icon. Any ideas?
hi, did you fix it somehow?