There is a MapPoint Europe 2006 Trial version available!
The information page MapPoint 2006 European Maps has a link to "Contact Us" at the bottom of the page. I put in my question there and...
Type: Posts; User: brianmcg
There is a MapPoint Europe 2006 Trial version available!
The information page MapPoint 2006 European Maps has a link to "Contact Us" at the bottom of the page. I put in my question there and...
Is the trial version of MP2006 Europe still available (or was it ever available)? The Microsoft links to this version end up at a dead end.
There was a trial version for MapPoint Europe 2004...
Is there a way to delete all the pushpins that fall within a drive-time polygon without having to resort to writing an application?
I have a set of points that I have imported from excel and I...
I don't think there is a commercial add-in that is specifically built for your purpose, but I have developed a number of custom applications that do what you are looking for (as I'm sure others on...
Hi Dawa,
Your code is calculating the great circle distance between the two points, but to get MapPoint to tell you the driving distance, you'll have to get it to calculate the route between the...
Any idea what new regions will be available with 2006? (Like Australia and SE Asia, maybe) :) !
Brian.
How about using the SelectionChange event? You can test for TypeOf is WayPoint then do your stuff:
Private Sub map_SelectionChange(ByVal pNewSelection As Object, ByVal pOldSelection As Object)
...
Hi Makaza,
Based on your description (that all error locations are being shown at the same location), it sounds like the addresses are being validated based on the State or Postal/Zip Code or some...
Hi Mike,
While I'm not sure about C#, you can do it in VB by updating the Symbol property of the pushpin object you create in the AddPushPin method. I would expect that it would be similar in C#....
Our company develops applications for the public safety industry based on MapPoint and we are beginning to get interest from several Australian clients.
Microsoft released its MapPoint...
I worked around the problem by testing the new point before adding the line and only using the new point if it was different (by some preset limit) from the previous point. I don't know if ignoring...
I seem to remember that I would run into a problem when adding a zero-length line (Lat1=Lat2 and Long1=Long2) in Mappoint 2002 (programming in VB6), but I have no way to test that now. Your two...
I'm a vb6 developer and haven't done anything with .net yet, but having said that, the XYtoLocation function must be passed the mouse coordinates in order to create the locations. In vb6, the event...
I use MapPoint as the GIS brains of an Emergency Services dispatch training simulator that operates as an interface to VisiCAD - a computer-aided dispatch system developed by TriTech Software Systems...
You could try something like this (pseudo VB code):
' assuming an array of your GPS latitudes 'aLat', and longitudes 'aLong'
dim aObjLocs(0 to Ubound(aLat)) as MapPoint.Location
' now create...
I'd suggest geocoding the address to create a location then use the location to derive the Lat/Long ising this code:
http://www.mp2kmag.com/articles.asp?ArticleID=13
I've used it and it's a...
How about if you want to get the Lat/Long of pushpins programatically?
I have considered using the .LocationToX and .LocationToY methods and interpolating values by referencing a set of pushpins...