Jump to content

Search the Community

Showing results for 'gps'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • uniGUI Public
    • Announcements
    • General
    • Feature Requests
    • Installation
    • Deployment
    • Other Platforms
  • Licensing
    • Licensing
    • Ordering uniGUI
  • Bug Reports
    • Active Reports
    • Closed Reports
    • Old Bug Reports
  • uniGUI Development
    • General Development
    • uniGUI Releases & Roadmaps
    • Utilities
  • Mobile Platform
    • uniGUI Mobile
    • Mobile Browsers
  • Users Area
    • Sample Projects
    • Components and Code Samples
    • Third Party Components
  • Non-English
    • Non-English
  • Miscellaneous
    • Hosting
    • Server Security
    • Jobs

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 6 results

  1. i forgot how to get results from a javascript.. ;-) Actually - i need latitude and longitude as Double-Delphi-variables if i click on a button (on desktop and Mobile).. the html example : - https://www.w3schools.com/html/tryit.asp?filename=tryhtml5_geolocation <!DOCTYPE html> <html> <body> <p>Click the button to get your coordinates.</p> <button onclick="getLocation()">Try It</button> <p id="demo"></p> <script> var x = document.getElementById("demo"); function getLocation() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(showPosition); } else { x.innerHTML = "Geolocation is not supported by this browser."; } } function showPosition(position) { x.innerHTML = "Latitude: " + position.coords.latitude + "<br>Longitude: " + position.coords.longitude; } </script> </body> </html>
  2. Good morning, I run the following code to get the GPS location: 1 . If the form is made with unigui movile on the desktop it shows the data of the gps position on the screen, but it does not work on the mobile 2.if I do it in the form of a desktop it works on the desktop BUT it doesn't work on the mobile. I could see if the desktop code is different than the mobile code or if it's something else, thanks for your contribution. <!DOCTYPE html> <html> <head> <style> .btn { width: 200px; /* Ancho del botón */ height: 50px; /* Altura del botón */ } </style> </head> <body> <p>Click the button to get your coordinates.</p> <button class="btn" onclick="getLocation()">Try It</button> <p id="demo"></p> <script> var x = document.getElementById("demo"); function getLocation() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(showPosition); } else { x.innerHTML = "Geolocation is not supported by this browser."; } } function showPosition(position) { x.innerHTML = "Latitude: " + position.coords.latitude + "<br>Longitude: " + position.coords.longitude; top.ajaxRequest(Ext.get(document.getElementById('uniqueFrameID')).component, 'coords', {latitude: position.coords.latitude, longitude: position.coords.longitude}); } </script> </body> </html>
  3. Hi , I am looking at putting some simple fleet management into one of my projects. I need to be able to record locations of vehicles. I have all of the code to place a marker using longitude and latitude in Google maps, I just need a bit of advice on what device to use to get this information from a vehicle. Has anyone got any experience on using a tracking device in a car, that allows you to connect to a API, or some sort of service so I can at least get the longitude and latitude at that moment in time. I could probably implement what I need using a phone, but that is easy for a user to turn off location access and thus no GPS. I need something like a black box that can be put into the vehicle, and queried to get the current location. Like a tracker device. Any advice or suggestion would be greatly appreciated. Sent from my Pixel using Tapatalk
  4. Hi, I would like store latitude and longitude from GPS mobile. I need to store when web app is in background too. And when mobile is screen locked any ideas ?
  5. hello How do get the location with mobile gps? Can i use the sensor component? I want lat and long to show on the unimedit Please help me Thanks
  6. Hello, I want to know if it was possible by using a UNIGUI form, a smatphone and a browser, create a form page / frame where I can acquire data from the GPS directly by the device with some API (for example) and then be able to save the lat./long. on a database? Thanks
×
×
  • Create New...