Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
longitude
- Page 1
Longitude and Latitude calculation for Google earth KML
Community Center
Geeks' Lounge
13 Years Ago
by susheelsundar
… am not able to understand how to calculate latitude and
longitude
into double values, that is 119°44'58.31"…
Get location from Latitude and Longitude - Google Maps API V3
Programming
Web Development
13 Years Ago
by tusharbhatia
…google.maps.GeocoderStatus.OK) { //location of first address (latitude +
longitude
) location1 = results[0].geometry.location; } else { alert("…maps.GeocoderStatus.OK) { //location of second address (latitude +
longitude
) location2 = results[0].geometry.location; // calling the showMap() …
Shortest pairs problem. Longitude / Latitude, to x,y coordinates?
Programming
Software Development
13 Years Ago
by thompsonSensibl
…a series of cities, and their locations in [B]
longitude
and latitude[/B]. The goal is to find the …. I have an algorithm which, given the geographical locations (
longitude
and latitude) of two cities, [B]calculates the distance[/… of x,y coordinates, and NOT
longitude
/ latutude :( ... How could I [B]change
longitude
,latitude to x,y,[/B] in…
How do I create a pair of longitude and latitudes to show a 2 mile radius o
Programming
Software Development
11 Years Ago
by LyingInAHammock
… depth a little :-) How do I create a pair of
longitude
and latitudes to create a polygon showing a 2 mile… radius of a particular
longitude
and latitude? in Java Android. I know how to find… your current
longitude
and latitude but I just can't figure out the…
Re: Get location from Latitude and Longitude - Google Maps API V3
Programming
Web Development
13 Years Ago
by tajendra
Do you want place name from
longitude
and latitude ? Check this out for reference :- [URL="http://tajendrasengar.blogspot.com/2011/09/distance-between-two-locations-with.html"]Geocoder [/URL] Also check demo of it [URL="http://tajendrasengar.blogspot.com/2011/09/distance-google-map-api-demo.html"]here[/URL]
Re: Get location from Latitude and Longitude - Google Maps API V3
Programming
Web Development
13 Years Ago
by sftranna
i have found a simple article to find lang/latitude on google maps http://eaziweb.blogspot.com/2012/04/get-latitude-and-
longitude
-with-google.html
Re: How do I create a pair of longitude and latitudes to show a 2 mile radius o
Programming
Software Development
11 Years Ago
by LyingInAHammock
…m wanting to accomplish): 1. System identifies user location in
longitude
and latitude (as above) 2. System then utilises user location… (
longitude
and latitude) to form a radius of 2 miles from … of a polygon parameter expressed as multiple pairs of
longitude
and latitude coordinates
Latitude and longitude conversion
Programming
Web Development
14 Years Ago
by karthik_ppts
Hi frendz, I need to calculate the decimal latitude and
longitude
value from the following latitude and
longitude
value. latitude 11006805N
longitude
076577304E
Re: How do I filter a SQL result based on distance when I have the latitude and longitude
Programming
Web Development
13 Years Ago
by sv3tli0
If you have an exact latitude and
longitude
for all zipcodes I think you have to do: 1st …- SELECT the latitude and
longitude
of the user who is searching (with query or with… WHERE latitude>$lt_min AND latitude<$lt_max AND
longitude
>$lg_min AND
longitude
<$lg_max"; $all_zips='('; $sql=mysql_query($query); …
Re: How do I create a pair of longitude and latitudes to show a 2 mile radius o
Programming
Software Development
11 Years Ago
by LyingInAHammock
I apologise, I've made a mistake. There should actually three pairs of
longitude
and latitude coordinates to form a radius of 2 miles around the user's location expressed earlier. Hopefully this helps. sorry again :-)
Re: How do I create a pair of longitude and latitudes to show a 2 mile radius o
Programming
Software Development
11 Years Ago
by LyingInAHammock
No, I'm asking how I figure out the
longitude
and latitude coordinates necessary to create a 1 mile radius around the user's location?(expressed above) I don't mind how many coordinates there it takes, but I'd like to create a circular radius around one location.
Re: How do I create a pair of longitude and latitudes to show a 2 mile radius o
Programming
Software Development
11 Years Ago
by JamesCherrill
^ that's what I thought too, and I asked him if he had any circle-drawing methods available, but his answer is perfectly clear: "*by means of a polygon parameter expressed as multiple pairs of
longitude
and latitude coordinates*". So I guess that's that.
How to Find the Latitude and Longitude values from the Google Maps
Programming
Software Development
17 Years Ago
by ttamilvanan81
Hai everyone, I need to find the Latitude and
Longitude
values for any one of the Particular location from the … or country or pincode, then we get the Latitude and
Longitude
values for the particulars in the google maps. If anyone…
Re: How to find latitude and longitude using javascripts
Programming
Web Development
17 Years Ago
by MidiMagic
…And I haven't found a way to find
longitude
and latitude on Google Maps. They don't display… it. Terraserver displays
longitude
and latitude: [url]http://terraserver.microsoft.com[/url] …Google Earth displays
longitude
and latitude, but it is not a website, in…
Getting latitude and longitude info into text boxes
Programming
Web Development
14 Years Ago
by raghujosh
… in the postal address, it gives the corresponding latitude and
longitude
as a pop up info window on a google map… do is to be able to get the latitude and
longitude
info into two text boxes on the html page. I…
Re: How to find latitude and longitude using javascripts
Programming
Web Development
14 Years Ago
by tmmi
…gt;results[0]->geometry->location->lat; $
longitude
= $output->results[0]->geometry->location-&…;map")); var point = new GPoint(<?php echo $
longitude
; ?>,<?php echo $latitude; ?>); address = …'<?php echo $
longitude
; ?> ,<?php echo $latitude; ?>'; var mark …
Poi based on latitude and longitude
Programming
Databases
13 Years Ago
by newbie14
… poi's based on latitude and
longitude
. So then based on a given latitude and
longitude
I would like to find the…
How do I filter a SQL result based on distance when I have the latitude and longitude
Programming
Web Development
13 Years Ago
by xecure
… in the U.S. along with with their latitude and
longitude
. I have written distance function where it calculates the distance… of 2 zipcodes based on their latitude and
longitude
values. I understand I can sort the users by sex…
How do I filter a SQL result based on distance when I have the latitude and longitude
Programming
Databases
13 Years Ago
by xecure
… in the U.S. along with with their latitude and
longitude
. I have written distance function where it calculates the distance… of 2 zipcodes based on their latitude and
longitude
values. I understand I can sort the users by sex…
How to convert from (x, y) to (latitude, longitude) and reverse?
Programming
Software Development
12 Years Ago
by bazzer14
… like to know about convertion from (x, y) to (latitude,
longitude
)? For Example: In my project(windows form - VB.NET) i… convert it to?: Label1.text = Latitude(e.X) Label2.text =
Longitude
(e.Y) Your answer would be greatly appreciated. *Thanks,* **Bazzer…
Re: How to Find the Latitude and Longitude values from the Google Maps
Programming
Software Development
17 Years Ago
by ashishjannela
Hi , I need to find the Latitude and
Longitude
values for moving vehicle from the Google Maps, using javascripts. Can you give the sample code, please help me.
Re: Getting latitude and longitude info into text boxes
Programming
Web Development
13 Years Ago
by Doug08536
You're also calling the latitude method and placing it in the
longitude
box: document.getElementBy('long').value= results[0].geometry.location.lat();
Re: How to convert from (x, y) to (latitude, longitude) and reverse?
Programming
Software Development
12 Years Ago
by M.Waqas Aslam
hello please see these links hope they will solve your prob [Click Here](http://code.google.com/p/geocoordconversion/) [Click Here](http://www.codeproject.com/Articles/15659/
Longitude
-Latitude-String-Parser-and-Formatter)
Re: How to get near by (around 5km) locations using latitude and longitude?
Programming
Web Development
9 Years Ago
by rubberman
… an arbitrary reference point (latitude and
longitude
). Compute what the L&L (latitude and
longitude
) would be for a distance of…
How to find latitude and longitude using javascripts
Programming
Web Development
17 Years Ago
by ashishjannela
Hi everyone, I need to find the Latitude and
Longitude
values for a moving vehicle from the Google Maps, using javascripts. Can you give the sample code, please help me.
IP address to country, region, city, latitude, longitude, ZIPcode, timezone, ISP, domain and netspeed in ASP
Programming
Web Development
18 Years Ago
by IP2Location
… is ASP script to enable lookup country, region, city, latitude,
longitude
, ZIPcode, Timezone and netspeedomain and netspeed from IP address by…
distance between two latitude and longitude points
Programming
Web Development
13 Years Ago
by karthik_ppts
Dear Frendz, How to find distance between two latitude and
longitude
points using php.
Pinpoint location with latitude and longitude on Google Map
Digital Media
UI / UX Design
12 Years Ago
by veledrom
Hi, Is there any specific URL that I can attach latitude and
longitude
to it and open Google Map in another page to see the location? Thanks
Get country, state, zip code and Latitude and Longitude from an ip address
Programming
Software Development
11 Years Ago
by krunal1986
hi all, how to Get country, state, zip code and Latitude and
Longitude
from an ip address? Thanks, kk
convert x,y coordinates to latitude and longitude
Programming
Software Development
11 Years Ago
by johnrosswrock
I have a pictude box which i want to load with a map,i know now how toget picture box coordinates and would like to conver it into latitude and
longitude
. thank you ps: i seached the net but could'nt understand it ,so please be simple as i am a new in this
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC