Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Is there a way to retrieve GPS location from a device in an App Maker app?
I'm trying to create a "checkin" app for my users. I want to retrieve their GPS location (lattitude, longitude) when they submit their "checkin".
Yes, you can, on a Chrome browser, see https://developers.google.com/web/fundamentals/native-hardware/user-location/ for all the details.
if (navigator.geolocation){
navigator.geolocation.getCurrentPosition(function(position){
console.log(position.coords.latitude, position.coords.longitude);
});
}
The user must consent to disclosing their location.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 days ago.
Improve this question
This is where the hosting url directs me
I was trying to deploy my simple tasks tracking application with firebase for learning purposes
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 months ago.
Improve this question
I have developed an app for students with the feature clock in and clock out. I have already connected it to firebase, but don't know how to link clock in/out with database. my options are to update firebase or create excel in a separate database.
Watch this demo
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
Xamarin Form's Device.OpenURI allows you to call an App and pass some arguments embedded within the URI. In turn, I am wondering whether there is a way for the called App to process this URI? I would prefer handling this processing only within the shared code. Any ideas?
I decided to register a URI scheme for my app (https://xamarinhelp.com/uri-scheme/)
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
There is a lot of information about how to use the Firebase realtime database, but I want to know how it works (from behind).
What is the key architecture factor that allows Firebase to store and deliver the data so fast?
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Im wants to make a live chat feature in my web applicatin in asp.net. I found signalr for live chat, but i want to save that text from one browser to How to save text user's message in signalr
SignalR is used to push changes to the client. Saving messages is not a concern for SignalR. You need to roll your own persistence for this, maybe your application have a database already?