geolocation Questions

4

Solved

I am trying to get my current location in react native, using react-native-geolocation I get latitude and longitude of my location. Now I want to convert them into the location's address without us...
Hurwit asked 14/5, 2020 at 12:4

6

I am developing an Android app. I want to determine the location of the device using its IP address. Where do I start? The links on Google APIs are not conclusive enough. Thanks.
Confederation asked 31/12, 2012 at 11:37

3

Solved

I know that this code: string ipAddress = Request.ServerVariables["HTTP_X_FORWARDED_FOR"]; if (string.IsNullOrEmpty(ipAddress)) { ipAddress = Request.ServerVariables["REMOTE_ADDR"]; } will g...
Deemphasize asked 8/8, 2014 at 12:20

1

I am trying to create an app that will allow users to rent a car nearest to them. I want to build a cardView with a textView and imageView once i find the nearest car, I created the method buildCar...
Forsooth asked 29/11, 2022 at 1:40

3

Solved

I ran into an issue where if my Mac denied location sharing, then nothing happens in JS code... this is dangerous, anyway to get around this? If system denies location sharing, I would expect an ex...
Oxazine asked 2/1, 2021 at 20:27

3

Solved

I'm using the following function to generate random geo coordinates within a specified radius from a seed point: function randomGeo(center, radius) { var y0 = center.latitude; var x0 = center.lo...
Civilian asked 2/7, 2015 at 18:54

6

Solved

I once read about an open source database for postal codes with geolocation data but now I can't remember its name. Can someone help?
Cupbearer asked 21/11, 2008 at 6:10

1

Solved

I am trying to iterate over a pandas dataframe to plot multiple geolocations on a Folium map using custom icons as markers instead of the default one. First I create a pandas dataframe as follows: ...
Priapitis asked 25/10, 2022 at 20:55

16

Solved

I am trying to get the users current location using the LocationManager. I have done a lot of research and can't seem to find anyone with the same problem. The OnLocationChanged callback never seem...
Ulrich asked 25/1, 2012 at 17:53

3

Solved

What S2Region and how should I use to get all s2 cells at certain parent level(let say 9) covered by the circle drawn from given lat, long and radius. Below is an example which use python s2 librar...
Marna asked 20/6, 2017 at 9:57

7

Solved

I would like to redirect my users to specific location areas in my website, by detecting their location from their IP address. What would be the best way to achieve this under Django 1.1.1 ? Than...
Stepmother asked 7/2, 2010 at 19:57

3

Solved

I have implemented a locationlistener in my app which uses the Network Provider. This all works fine because i want a location quickly and with GPS Provider it takes ages. But I've come to a poin...
Lashawn asked 4/1, 2011 at 15:49

4

I have been doing some research and can't find any information on the topic. I am running a Windows 10 version that has a GPS feature for apps to use, this can be enabled or disabled by the user. I...
Brutus asked 6/6, 2017 at 22:14

1

Solved

I set up everything without skipping a single point from this plugin. It's working in all debug modes (Foreground, Background, Kill stat). ERROR LOG: While killing the app in release mode E/Flutter...
Corgi asked 21/9, 2022 at 6:31

3

I've been reading through a lot of questions/answers relating to the simulation of location on the iOS simulators, but none touching on my specific issue. I have a prototype of a location aware app...
Thissa asked 5/9, 2012 at 18:50

1

My app (code on GitHub) was rejected by Google Play with reason: Please remove the background location permission requested and submit an update to your app. However, my app does not declare the ...

8

I have to retrieve a user's location in a WebView. I do this with the following Javascript: function getLocation() { navigator.geolocation.getCurrentPosition(displayLocation, handleError); } Bu...
Mitten asked 16/3, 2011 at 18:2

11

Solved

I need a list of countries, states & cities based on a collection of lat/long values I have. I need to store this information in a manner that hierarchy is preserve and without duplicates (e.g....
Denunciate asked 25/10, 2010 at 10:18

1

I have created an ios app (Xcode) with a single WebKit View component that loads an external website. This website tries to get the current geolocation with this Javascript: navigator.geolocation. ...
Bettis asked 22/2, 2018 at 15:54

6

Solved

I have a WKWebView in my app and when I start browsing www.google.com or any other website that requires location service, a pop up window appears, asking for the permission to access the location ...
Varhol asked 23/9, 2016 at 16:19

9

Solved

I'm using navigator.geolocation.watchPosition in JavaScript, and I want a way to deal with the possibility that the user might submit a form relying on location before watchPosition has found its l...
Josi asked 25/8, 2011 at 15:40

5

I'm getting ReferenceError: navigator is not defined running the following code on node.js: navigator.geolocation.getCurrentPosition((data) => { console.log(data); }); I assume that the prob...
Fading asked 25/2, 2020 at 16:32

12

Solved

I'm trying to extend the native geolocation function if(navigator.geolocation) { navigator.geolocation.getCurrentPosition(function(position) { var latitude = position.coords.latitude; var...
Forbidden asked 15/8, 2010 at 22:2

13

Solved

I want to create 2 new longitude and 2 new latitudes based on a coordinate and a distance in meters, I want to create a nice bounding box around a certain point. It is for a part of a city and max ...
Berndt asked 19/9, 2011 at 20:35

2

I upgraded to react native 60 and with it came Pods. Its too late to revert now. I get the error @react-native-community/geolocation NativeModule.RNCGeolocation is Null. Ive linked the modul...
Communal asked 4/9, 2019 at 4:20

© 2022 - 2024 — McMap. All rights reserved.