Jump to content

Search the Community

Showing results for tags 'geolocation'.

  • 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 3 results

  1. Why pay google ? Use leaflet API and be happy ! Simple geolocation (Desktop and Mobile) using Leaflet JS API. Get latitude and longitude coordinates to use wherever you want. Cheers... PS: Download only to uniGUI subscribers. Forum/uniGUI Staff Rules. http://www.uniguiexpress.com https://www.uniguiexpress.com/Promopack04.htm <--- See more example and buy others no long available here. Our group at Telegram: https://t.me/uniguiexpress Visite http://www.unigui.com.br/ Nosso grupo no Telegram: Livros, packs de projetos, cursos, serviços, consultoria e tudo sobre unigui ! https://t.me/uniguiBrazil Project available only in the pack Silver at https://www.uniguiexpress.com
  2. Example for consumption of Geolocation API enabling complete data collection from a given ip. Get you free API Key at http://ipstack.com/ (free untill 10.000/day ) Project available at https://www.uniguiexpress.com
  3. Hi to you all, Anyone has an example on how to get the current location of the connected client? I found the following script in "Stack overflow", but don't know how to return back the 'loc.lat' and 'loc.lng' to my code ++++++++++++++++++++++++++++++ <script type="text/javascript" src="http://www.google.com/jsapi"></script> <script type="text/javascript"> function initialize() { var loc = {}; var geocoder = new google.maps.Geocoder(); if(google.loader.ClientLocation) { loc.lat = google.loader.ClientLocation.latitude; loc.lng = google.loader.ClientLocation.longitude; var latlng = new google.maps.LatLng(loc.lat, loc.lng); geocoder.geocode({'latLng': latlng}, function(results, status) { if(status == google.maps.GeocoderStatus.OK) { alert(results[0]['formatted_address']); }; }); } } google.load("maps", "3.x", {other_params: "sensor=false", callback:initialize}); </script> ++++++++++++++++++++++++++++++ Regards
×
×
  • Create New...