Love your videos!! Can you please tell me how to set markers on spesific locations and make them tappable? Or can you suggest something? Thank you sirr.
Can you make a combination with firebase, to send location data to Firestone using another button like sharing location, to exploit that data stored to show it all device sync
Thanks for the tutorial video. Helped me a lot. Can you also create a tutorial on how to add event reminders for this navigation app in android studio java? Thank you!
on command: locationPuck2D.setBearingImage(AppCompatResources.getDrawable(Map_Offical.this, R.drawable.baseline_location_on_24)); Error: 'setBearingImage(com.mapbox.maps.ImageHolder)' in 'com.mapbox.maps.plugin.LocationPuck2D' cannot be applied to '(android.graphics.drawable.Drawable)' Please help me
Hello, I have the Problem on 11:02, in line 108 (locationPuck2D.setBearingImage(AppCompatResources.getDrawable(MainActivity.this, R.drawable.baseline_location_on_24)); ) he requiered type is image Holder, but I provide a Drawable. Can you help me please ?
Bro, when i coded "ACCESS_FINE_LOCATION " ( 9:21) android studio marked it as a mistake. It suggests to make a new class named "ACCESS_FINE_LOCATION " , but you did it with no problom. Could you help me pls🙏🙏
@@EverydayProgrammer Sorry, but there another issue (10:59) 'setBearingImage(com.mapbox.maps.ImageHolder)' in 'com.mapbox.maps.plugin.LocationPuck2D' cannot be applied to '(android.graphics.drawable.Drawable)' What i can do to deal with it?
Hello good sir, how were you able to learn these? I was reading the mapbox docs and I was almost brought to insanity because their docs are focused on kotlin and not java
Well actually I use mapbox's kotlin documentation to implement mapbox in Android studio using kotlin and then I'll translate the code to java. There is no proper java documentation for mapbox atleast yet.
Yeah, Actually routing is a bit harder even to implement using kotlin but I'm working on it and will upload a tutorial on it by the upcoming week (hopefully) 😅.
I'm sorry you have to do the exact opposite of what I previously said. You have to use only vector drawable from vector assets in android studio. You can also download icons from Google Material Icons. Try the following icon: fonts.google.com/icons?selected=Material%20Symbols%20Outlined%3Alocation_on%3AFILL%400%3Bwght%40400%3BGRAD%400%3Bopsz%4024
I don't know have you fixed it, But here what I have done, and it work!! ImageHolder imageHolder = ImageHolder.from(R.drawable.baseline_location_on_24); locationPuck2D.setBearingImage(imageHolder);@@aiaee
Love your videos!! Can you please tell me how to set markers on spesific locations and make them tappable? Or can you suggest something? Thank you sirr.
Check this out ua-cam.com/video/aj1JjrpYQfs/v-deo.html
Thanks , please more videos about mapbox
Sure! What tutorial would you like to see next ??
@@EverydayProgrammer This video was very helpful, it would be nice to also see a guide on how to set a route to a specified point using Mapbox
Sure! will make it.
Can you make a combination with firebase, to send location data to Firestone using another button like sharing location, to exploit that data stored to show it all device sync
There you go!: ua-cam.com/video/cWWjbVPhh0k/v-deo.html
Great informative video for Android developers sir..
Thank you so much for your kind words! I'm glad you enjoyed the content.
Great video , but try to give the more explanation regarding concept
Thank you for your feedback, I'll try my best.
Be careful, you are declaring a private token in the string, which makes it easy to access the secret token.
Would you make a series of mapbox tutorials in android studio using java? Because I hope that you will.
Sure!
@@EverydayProgrammer Thank you so much.
Thanks for the tutorial video. Helped me a lot. Can you also create a tutorial on how to add event reminders for this navigation app in android studio java? Thank you!
on command: locationPuck2D.setBearingImage(AppCompatResources.getDrawable(Map_Offical.this, R.drawable.baseline_location_on_24));
Error: 'setBearingImage(com.mapbox.maps.ImageHolder)' in 'com.mapbox.maps.plugin.LocationPuck2D' cannot be applied to '(android.graphics.drawable.Drawable)'
Please help me
Use imageHolder.from(R.drawable.location)
Nice brother ❤️
Thank you brother! 😃
what if you want to use mapbox's default puck for user location?
1 thing I suggest you test. If you take the phone and walk around, will the location updatelive, or unless you reload the app?
I just tested it. it works
thanks buddy, this is a good tutorial.
Hello, I have the Problem on 11:02, in line 108
(locationPuck2D.setBearingImage(AppCompatResources.getDrawable(MainActivity.this, R.drawable.baseline_location_on_24)); )
he requiered type is image Holder, but I provide a Drawable. Can you help me please ?
Try updating mapbox dependency version and make sure that your drawable is vector drawable.
I had the same problem as well, and I solved it.
Use the imageholder.from(R.id.baselince location on)
@@spyderkavin thanks, this was very useful !
can you help me i also have this error
Bro, when i coded "ACCESS_FINE_LOCATION " ( 9:21) android studio marked it as a mistake. It suggests to make a new class named "ACCESS_FINE_LOCATION " , but you did it with no problom. Could you help me pls🙏🙏
P.S: after adding the new class it didint work either
Replace the existing Manifest in the import section with import android.Manifest; or just use 'android.Manifest.permission.ACCESS_FINE_LOCATION'
@@EverydayProgrammer Thank you very much. I appreciate it. Your work on UA-cam helps lots of people around the world!
Thank you!!!
@@EverydayProgrammer Sorry, but there another issue (10:59) 'setBearingImage(com.mapbox.maps.ImageHolder)' in 'com.mapbox.maps.plugin.LocationPuck2D' cannot be applied to '(android.graphics.drawable.Drawable)' What i can do to deal with it?
Hello good sir, how were you able to learn these? I was reading the mapbox docs and I was almost brought to insanity because their docs are focused on kotlin and not java
Where do you get your reference on your code, mapbox has kotlin built reference, I really want to know how you create java mapbox v10 codes
Well actually I use mapbox's kotlin documentation to implement mapbox in Android studio using kotlin and then I'll translate the code to java. There is no proper java documentation for mapbox atleast yet.
@@EverydayProgrammer Do you manually translate it? Thanks for the reply, really wish you create a routing from current location to destination video
Yeah, Actually routing is a bit harder even to implement using kotlin but I'm working on it and will upload a tutorial on it by the upcoming week (hopefully) 😅.
@@EverydayProgrammer Thank you so much! it will be a huge help on our project
There you go: ua-cam.com/video/cWWjbVPhh0k/v-deo.html Hope this helps
Hello please help, it says that setBearingImage cannot be applied in android graphics drawable Drawable 😭
10:57 this part, i keep getting errors :(((
Do not use vector drawable, use PNG image. And convert the png into drawable and parse it into setBearingImage.
@@EverydayProgrammer hello, thank you but how would i do that? Im still learning sorryy
I'm sorry you have to do the exact opposite of what I previously said. You have to use only vector drawable from vector assets in android studio. You can also download icons from Google Material Icons. Try the following icon: fonts.google.com/icons?selected=Material%20Symbols%20Outlined%3Alocation_on%3AFILL%400%3Bwght%40400%3BGRAD%400%3Bopsz%4024
I don't know have you fixed it, But here what I have done, and it work!!
ImageHolder imageHolder = ImageHolder.from(R.drawable.baseline_location_on_24);
locationPuck2D.setBearingImage(imageHolder);@@aiaee
太棒啦!谢谢你!
非常感谢您的评论!
satellite 📡 View Drone View
how to add markers to the map and customize them and make popup when click on them
Did you found any answers?
Please make iptv app tutorial
Sure!
thx
You're welcome!