Questions tagged [latitude-longitude]

Managing data about geographic point locations, using a latitude-longitude pair (degrees north/south, and east/west, respectively) per point.

Latitude

enter image description here

Longitude

enter image description here

2920 questions
0
votes
1 answer

Get Latitude/Longitude Button to Fill Input Boxes

I have two text boxes that I want users to fill with geolocation data (latitude and longitude). I want to have a button, so when users click it, the text boxes are filled instantly with the geolocation data. Thanks to w3schools, I can replace the…
Matt Hansen
  • 424
  • 1
  • 6
  • 16
0
votes
1 answer

java coding a solution in determining if a point lies on the interior of a polygon(rectangle)

I was reading Solution 3 (2D) in website and tried to translate this into a java code. Please comment if the java is correct. Instead of x and y coordinates, i am using latitude and longitude coordinates (note: loc.getLongitude(),loc.getLatitude()…
coollearner
  • 23
  • 2
  • 12
0
votes
1 answer

Java/Javascript Calculate fitbounds SW/NE with user location in center

What I am trying to do is trying to calculate SW, NE of given locations and then delta with user's centre location. which will result to fitbounds all locations and user's location in centre. but unfortunaly it is not working any one quick…
d-man
  • 57,473
  • 85
  • 212
  • 296
0
votes
1 answer

Google maps api v2 Longitude and Latitude of address issue

I have so far a working covert script to get Longitude and Latitude from an Address. Problem is that I can't submit, while the submit button is used to get the Longitude and Latitude. So I would like the following: Address will be placed in a…
0
votes
2 answers

How to set the latitude and longitude of an Event

On my website i'm using the PHP SDK to make api calls. And with it I am able to create an event and edit it afterwards. But what I am not able to do is to set the latitude and longitude of the event. I've searched for some similar questions, which…
0
votes
1 answer

Calculate lat/long

Can any please help me to find out the algorithm of calculating latitude and longitude from 8 byte value? 8- byte value - A027AFDF5D984840 and It's longitude is 49.1903648 8- byte value - 3AC7253383DD4B40 and It's latitude is 55.7305664 Also if…
0
votes
1 answer

Is it possible to get the latitude and longtitude value for 15mts once?

Am trying for long Days.But still i am trouble to get the latitude and longtitude value.My Goal is to get the latitude and longtitude value for 15mts once.am searching and trying follow…
Mercy
  • 1,862
  • 9
  • 39
  • 75
0
votes
1 answer

android:implementing latitude-longitude

I am developing an app in which i have to get the latituide and longitude details and i am getting the details but when i put that details in http://itouchmap.com/latlong.html i get wrong location.My code is as follows: …
user1025050
0
votes
2 answers

Print Long and Lat

I have been trying to print my lang and long coordinates for the past two days, I have chopped and changed code in order to make it work, in a bit of a muddle now and don't understand why it won't work, I am new to Android Development whilst…
PurpleSmurph
  • 2,055
  • 3
  • 32
  • 52
0
votes
2 answers

Python sort dictionary of Lat / Lons for Footprint

I am calculating satellite coverage footprints on the surface of an ellipsoid and my function returns a list of Lat / Lons that looks like below. It is a python list of dictionaries. Now if I scatter plot this in Matlab or Matplotlib I get a nice 3D…
PhilBot
  • 748
  • 18
  • 85
  • 173
0
votes
2 answers

how to find address from lat long in android

Please Help me in finding address from given lat long in android. As I have put the lat long values from gps service I need to find the user location where the user is standing.
Sumit Patel
  • 2,547
  • 8
  • 33
  • 45
0
votes
1 answer

How to pass multiple Lat and Long on KML URL?

For 1 lat and Long we can pass on URL like this: http://maps.google.com/maps?f=d&hl=en&saddr=23.08136,72.572849&daddr=22.942071,72.379461&ie=UTF8&0&om=0&output=kml but i want to pass multiple Lat and Long on this URL. for Example…
Girish Patel
  • 1,270
  • 4
  • 16
  • 30
0
votes
1 answer

implementing latitude and longitude details in android

I am making an app in which i have to get latitude and longitude of device and my code is as follows: mlocManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE); mlocListener = new MyLocationListener(); …
user1025050
0
votes
1 answer

mouse position count

Hi I'm using Jquery's mouse position to find the position of the page. I would like it to have it behave more like latitude and longitude coordinates. $().mousemove(function(e){ $('#detect').html( e.pageX + '° N, '+ e.pageY + '° E' ); …
uriah
  • 2,485
  • 5
  • 28
  • 40
0
votes
3 answers

Get info from map data file by coordinate

Imagine I have a map shape file (.shp) or osm xml, I'm able to see different kind of data from different layers in GIS oriented programs, e.g. ArcGIS, QGIS etc. But how can I get this info programmatically? Is there a specific library for that?…
kmityak
  • 461
  • 5
  • 11
1 2 3
99
100