MapPoint Forums

MapForums

Community of MapPoint and Bing Maps Users and Developers




Latitude/Longitude Address on Map

This is a discussion on Latitude/Longitude Address on Map within the MapPoint Desktop Discussion forums, part of the Map Forums category; Hi Hope someone could help, I have an access data base that has all my customer addresses on a Table ...


Go Back   MapPoint Forums > Map Forums > MapPoint Desktop Discussion

Today's Posts Twitter Feed Register Blogs FAQ Members List Calendar Search Today's Posts Mark Forums Read
  1 links from elsewhere to this Post. Click to view. #1 (permalink)  
Old 11-25-2005
Junior Member
White Belt
 
Join Date: Nov 2005
Posts: 1
Latitude/Longitude Address on Map

Hi Hope someone could help,

I have an access data base that has all my customer addresses on a Table and would like to add a latitude and Longitude to the table to pin point the customer location as I understand this is the best way to make sure customers don’t overlap each other, also it there a way or code to place on the event procedure on click of a button in Microsoft Access to export customer address and pin them on Map Point? I would like to be able to export more then on load number, for example each customer has a Load # (150) and Stop # (111) the load number represents a Truck and what I would like to do is in some way to export more then one load at time and map it on one click. If you could help it would be greatly appreciated.

Thanks
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 11-26-2005
Senior Member
Black Belt
 
Join Date: Nov 2004
Location: Belgium
Posts: 2,318
Hi,

I'm not sure I understeand your question completely, but I understeand that you wants to program in VBA to display your customar locations on the map. I type example in C# because if I should do it in VB then I will type too many syntax errors

There is a method:
Code:
FindResults results = mp.ActiveMap.FindAddressResults(street, city, othercity, region, zip, country);
Which returns a collection of Location objects. This Location object can be used to put a push pin on the map, like this:

Code:
if (results.ResultsQuality <= GeoFindResultsQuality.geoAmbiguousResults)
    foreach (object o in results) {
        Location Loc = o as Location;
        if (Loc != null) {
            Pushpin PP = mp.ActiveMap.AddPushpin(Loc, "");
            return;
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, latitude or longitude, map


LinkBacks (?)
LinkBack to this Thread: http://www.mapforums.com/latitude-longitude-address-map-4640.html

Posted By For Type Date
| mapaddress.info This thread Pingback 11-03-2007 10:16 PM

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
How to get latitude and longitude ma2005pp MapPoint Desktop Discussion 3 09-28-2005 01:57 AM
Latitude and Longitude virgilar MapPoint Desktop Discussion 1 03-21-2005 01:01 PM
Latitude and Longitude Anonymous MapPoint Desktop Discussion 1 11-25-2003 12:52 PM
NMEA latitude/longitude and mappoint latitude/longitude muurman MapPoint Desktop Discussion 3 11-22-2003 04:42 AM
Convert address to latitude/longitude jia_1980 MapPoint Desktop Discussion 1 01-21-2003 04:42 PM


All times are GMT -5. The time now is 08:23 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.2
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 56 57 58 59 60 61 62 63 64 65 66 67