Community of VE/MapPoint Users and Developers
This is a discussion on Extract Lat/Long by Zip Code within the MapPoint 2006/2009 Discussion forums, part of the Map Forums category; Hi, I need to determine Lat/Long from Zip Codes. I want to do this by inputting a file of Zip ...
| |||||||
| Register | Blogs | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| |||
| Extract Lat/Long by Zip Code I need to determine Lat/Long from Zip Codes. I want to do this by inputting a file of Zip Codes and then adding the Lat/Long to this file. I would like to do this using Excel VBA, if possible. Does anyone know how to do this? Thanks! Sharon |
| |||
|
Hi, Code: FindResults Results;
Results = MP.ActiveMap.FindAddressResults("", "", "", "", zip, GeoCountry.geoCountryBelgium);
foreach(object o in Results) {
Location Loc = o as Location;
if (Loc != null) {
// find lat/long from Location
}
rgds, Wilfried http://www.mestdagh.biz |
| |||
|
Hi, Just found the article (but there are more) on finding lat/long from location object: http://www.mp2kmag.com/a13--kohl.ext....mappoint.html rgds, Wilfried http://www.mestdagh.biz |
![]() |
| Tags |
| code, extract, lat or long, zip |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Lat/Long of my Postal Code | jamesbond | MapPoint 2006/2009 Discussion | 6 | 11-29-2005 06:47 PM |
| setting up macro in excel to extract lat/long from map point | TransportationNut05 | MapPoint 2006/2009 Discussion | 2 | 08-24-2005 11:45 AM |
| Locate City and zip code using lat and long (Excel Macro) | sberhe | Wish List | 0 | 04-01-2005 10:31 AM |
| UTM to Lat / Long ?? Anybody know of code?? | mnman | MapPoint 2006/2009 Discussion | 0 | 12-01-2004 08:39 PM |
| How to obtain ZIP code from lat-long? | BC | MapPoint 2006/2009 Discussion | 1 | 04-29-2003 06:49 AM |