MapPoint Forums

MapForums

Community of VE/MapPoint Users and Developers




LatLong to Address ??

This is a discussion on LatLong to Address ?? within the MapPoint 2006/2009 Discussion forums, part of the Map Forums category; Does anybody know how to convert a LatLong to an Address?? Btw I am working in Java, but if you ...


Go Back   MapPoint Forums > Map Forums > MapPoint 2006/2009 Discussion

Register Blogs FAQ Members List Calendar Search Today's Posts Mark Forums Read



Click here to register

Reply

 

LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 06-03-2006
Junior Member
White Belt
 
Join Date: Jun 2006
Posts: 3
LatLong to Address ??

Does anybody know how to convert a LatLong to an Address??
Btw I am working in Java, but if you work in any other programming language and know how to do it that will help.
If you don't know how to convert a LatLong to address but to zip code that will work for me as well.

Thank you in advance!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #2 (permalink)  
Old 06-03-2006
Member
Green Belt
 
Join Date: Mar 2005
Posts: 96
Hi xaxas,

I invite u to do a search in this forum with keys like "reverse geocoding, calcpos, etc. ). You will have the response to your question. As you are a programmer, you can find a lot of posts about that.

Ciao
__________________
Mohamed
www.AtlasCouscous.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3 (permalink)  
Old 06-03-2006
Junior Member
White Belt
 
Join Date: Jun 2006
Posts: 3
I searched there but I didn't find what I was looking for.
Howerver I played a bit with the API and came up with a working idea which gives me the ability to do pretty much everything (search, route etc.) given a GPS location.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4 (permalink)  
Old 06-03-2006
Member
Green Belt
 
Join Date: Mar 2005
Posts: 96
Hi,

There is some Wilfried's posts about that:


Code:
            Map map = MP.ActiveMap;
            Location Loc = map.GetLocation(Lat, Lon, 1);
            FindResults StreetResults = map.ObjectsFromPoint(map.LocationToX(Loc), map.LocationToY(Loc));

            foreach (object o in StreetResults) {
                Location StreetLoc = o as Location;
                if(StreetLoc != null && StreetLoc.StreetAddress != null) {
                    Console.WriteLine("value    " + StreetLoc.StreetAddress.Value);
                    Console.WriteLine("street   " + StreetLoc.StreetAddress.Street);
                    Console.WriteLine("postcode " + StreetLoc.StreetAddress.PostalCode);
                    Console.WriteLine("city     " + StreetLoc.StreetAddress.City);
                }
            }
Good night
__________________
Mohamed
www.AtlasCouscous.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5 (permalink)  
Old 06-03-2006
Junior Member
White Belt
 
Join Date: Jun 2006
Posts: 3
I ran into this piece of code, but in my case (I wanted Java code and there are some major differences) didn't help. Thanks though!

Anyways, I overcame all issues !!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6 (permalink)  
Old 10-19-2008
Junior Member
White Belt
 
Join Date: Oct 2008
Posts: 1
Re: LatLong to Address ??

does the sample code for Google Maps or Microsoft
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
address, latlong


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
Obtain LatLong with Address ivan MapPoint Web Service and Virtual Earth 5 05-24-2007 05:00 PM
odd and even address chris2 MapPoint 2006/2009 Discussion 1 05-24-2006 12:07 PM
Getting informations about geographic coordinates (LatLong) badzio MapPoint Web Service and Virtual Earth 4 08-02-2005 09:34 AM
Anyone willing to look up an address for me? Anonymous MapPoint 2006/2009 Discussion 11 02-07-2004 08:09 PM
Getting Lat/Lon from a given address Anonymous MapPoint 2006/2009 Discussion 5 09-12-2003 04:01 PM


All times are GMT -5. The time now is 10:43 AM.


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
MP2K Magazine
Visitor Map


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55