It's funny that I always goolge things I need and can't never find a good tutorial or explanation, but I always end up on one of your videos. And it's always clear and direct to the point. thank you so much!
This tutorial was very helpful, thank you so much for this.. Just subscribed to your channel, hoping to learn more from you in the future.. Thanks once again.
Hi, thanks for the good explanation, I have an issue of my app crashing when it reaches the map view screen on android, I have reproduced the steps given in the documentation but I don't know what the issue is
do I need Api key for using Geocode and reverse geocode , I have notice that it works without api key in iOS ,but in android app ,every time it seeks location permission ,my App crashes and notice in error that it require Api key
Hey thank you for the video very informative, just wanted to ask since I don't have a credit card of any sort can I still do basic stuff like pin location and zoom in with out the Google map ? Will it only be the how the map looks that's effected ? I would like to use react native maps but I want to make sure if I can use it for free completely without adding a payment method would that be possible? Thank you
Mam the new expo sdk 48 released so there is some changes like the useProxy is now deprecated could you please make a video that how can we do google/facebook oauth with the new guidelines please
This video was so usefull to understand Basics of Maps. But It will be Great if add or give some adviseabout how to Get Direction to Mark from userLocation. Thank you for this content : )
This is great, a quick and simple maps tutorial. I found a couple of Android bugs though: buttons don't work in Callouts (only can onPress the callout itself) and the Overlay causes an index error that I'll sort another way of doing to get the buttons to work against tapping a pin.
But for me, i found another issue, The text for mapOverlay, show entire the screen but i just only put the location name: Like London. There is a white textbox block the entire screen and just show the London in first line
Latest I fix the problem ady, ChatGPT is really powerful return (
{centerName} {data.DistanceInKm} KM
dasda
); }; const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#fff', alignItems: 'center', justifyContent: 'center', }, map: { width: '100%', height: '100%', }, mapOverlay: { position: 'absolute', // Position the text box absolutely bottom: 10, // Distance from the bottom of the container left: 10, // Distance from the left of the container right: 10, // Distance from the right of the container backgroundColor: 'white', // White background for the text box padding: 10, // Padding inside the text box borderRadius: 5, // Optional: rounded corners for the text box // Add more styling as needed for the text box appearance }
oooh so you have that too! i tried to do that in my app with the same version of react native maps- but a higher version of react native and expo 48, and had the same problem. as i see in the comments, that kind of thing was not working for months. weird!I also tried all of the weird combinations, touchable opacities, my own custom components... i tried looking at the app here, from github, and the callout there seems to be even more destroyed(the buttons wont even show now on this callout) @MissCoding coulde we get an update on this awesome tutorial? the buttons in callouts are what interests me, and I see thats a problem that happens to a lot of people, based on comments. maybe the buttons in callouts work on the expo 49 tho... a lot of those dead ends that force us to create some other solutions, i kind of love that in react native XD
It's funny that I always goolge things I need and can't never find a good tutorial or explanation, but I always end up on one of your videos. And it's always clear and direct to the point. thank you so much!
As a new learner, I must say your guides are extremely helpful!
Glad they are helpful to you :)
Your tutorials are excellent, keep up the work they are very helpful!
This tutorial was very helpful, thank you so much for this.. Just subscribed to your channel, hoping to learn more from you in the future..
Thanks once again.
Thanks for the sub! Is there anything particular you’re interested in learning?
The buttons in callout are not working in the same code. What should I do
lol,i feel youre reading my mind cause you always release videos on what i need help in
Glad it could help 🎉
Hi, thanks for the good explanation, I have an issue of my app crashing when it reaches the map view screen on android, I have reproduced the steps given in the documentation but I don't know what the issue is
It’s always cashing mapview don’t work on android ! Or have you solve the issue
It requires Maps API key in development build.
You have good explanations thank you for sharing knowledge 👍👍👍👍👍👍👍
thank you so much, you have no idea how much you helped
do I need Api key for using Geocode and reverse geocode , I have notice that it works without api key in iOS ,but in android app ,every time it seeks location permission ,my App crashes and notice in error that it require Api key
È possibile inserire al posto di Apple maps la mappa di open street map?
Hey thank you for the video very informative, just wanted to ask since I don't have a credit card of any sort can I still do basic stuff like pin location and zoom in with out the Google map ? Will it only be the how the map looks that's effected ?
I would like to use react native maps but I want to make sure if I can use it for free completely without adding a payment method would that be possible? Thank you
Hi, I was wondering why putting elements inside the MapView in android doesnt show anything. Thx
Mam the new expo sdk 48 released so there is some changes like the useProxy is now deprecated could you please make a video that how can we do google/facebook oauth with the new guidelines please
You're a legend
you are a blessing, many kisses from a new fan and a definite admirer 😙😙😙
Thanks for the video! you are great!
This video was so usefull to understand Basics of Maps. But It will be Great if add or give some adviseabout how to Get Direction to Mark from userLocation. Thank you for this content : )
how can i clustering data in this maps?
This is great, a quick and simple maps tutorial. I found a couple of Android bugs though: buttons don't work in Callouts (only can onPress the callout itself) and the Overlay causes an index error that I'll sort another way of doing to get the buttons to work against tapping a pin.
that index error in overlay, means u put the text in the wrong line, u should put below and also not outside of
But for me, i found another issue, The text for mapOverlay, show entire the screen but i just only put the location name: Like London. There is a white textbox block the entire screen and just show the London in first line
Latest I fix the problem ady, ChatGPT is really powerful
return (
{centerName}
{data.DistanceInKm} KM
dasda
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
map: {
width: '100%',
height: '100%',
},
mapOverlay: {
position: 'absolute', // Position the text box absolutely
bottom: 10, // Distance from the bottom of the container
left: 10, // Distance from the left of the container
right: 10, // Distance from the right of the container
backgroundColor: 'white', // White background for the text box
padding: 10, // Padding inside the text box
borderRadius: 5, // Optional: rounded corners for the text box
// Add more styling as needed for the text box appearance
}
Is api key necessary for development also ?
you just got a subscriber
Looks like that adding buttons iniside Callout component does not trigger the onPress event, in iOS and Android
oooh so you have that too! i tried to do that in my app with the same version of react native maps- but a higher version of react native and expo 48, and had the same problem.
as i see in the comments, that kind of thing was not working for months. weird!I also tried all of the weird combinations, touchable opacities, my own custom components...
i tried looking at the app here, from github, and the callout there seems to be even more destroyed(the buttons wont even show now on this callout)
@MissCoding coulde we get an update on this awesome tutorial? the buttons in callouts are what interests me, and I see thats a problem that happens to a lot of people, based on comments.
maybe the buttons in callouts work on the expo 49 tho...
a lot of those dead ends that force us to create some other solutions, i kind of love that in react native XD
Hi please can you make an OCR app with react-native and google ML kit? 🙏🙏🙏🙏🙏
what software are you using for this please
hello , I use Callout like you but it doesn't work . Can you help me :(( (sorry my english is not good)
Are you having issues with onPress function?
Thank you
can you do a videon on notification
Will add to my backlog 👍