Community of VE/MapPoint Users and Developers
This is a discussion on Label Waypoints within the MapPoint 2006/2009 Discussion forums, part of the Map Forums category; Hello, I add waypoints to a route with the following line: Code: way = route.Waypoints.Add(loc, "Label"); How can I make ...
| |||||||
| Register | Blogs | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| |||
|
Hi, Something like this will get you going: Code: Directions dir = route.Directions;
foreach (MapPoint.Direction d in dir) {
if (d.Type == GeoDirectionType.geoDirectionWaypoint) {
if (d.Waypoint.Name == "Label")
d.Select();
__________________ rgds, Wilfried Mestdagh www.mestdagh.biz MapPoint coding demo Order MapPoint 2009 with Routing and User Tools Spreadsheet |
| |||
|
I'm not sure if I explained it right. I have the GPS latitude and longitude of several points. I added them as waypoints to MapPoint and made a route out of them. Now, I want to add additional data (like a time stamp) to each waypoint and the information should be shown in MapPoint. Bye, MD |
| |||
|
Hi, Then I suggest to put a pushpin on each waypoint an you can give it a text balloon with the additional information. You can nice format it with CrLf and Tab characters.
__________________ rgds, Wilfried Mestdagh www.mestdagh.biz MapPoint coding demo Order MapPoint 2009 with Routing and User Tools Spreadsheet |
| |||
|
Hi, You can hide each balloon with following code: Code: PP.BalloonState = GeoBalloonState.geoDisplayNone;
__________________ rgds, Wilfried Mestdagh www.mestdagh.biz MapPoint coding demo Order MapPoint 2009 with Routing and User Tools Spreadsheet |
| |||
|
Hello, I don't want to disable the balloons. I'm looking for a way to disable the numbering of the waypoints on the map. Each waypoint is indicated by a number on the map and I would like to get rid of these numbers on the map. Is there a description on the Web about all the methods provided by the MapPont COM object? Bye, MD |
| |||
|
Hi, Dont think it is possible, but a workaround could be you place your own symbols on top of each waypoint, so the original data with the number in it is then hidden. Mappoint (Europe) comes with complete help for programming. In the help is a button 'options' then 'show tabs'. then you have 'programming information' with all there is inside
__________________ rgds, Wilfried Mestdagh www.mestdagh.biz MapPoint coding demo Order MapPoint 2009 with Routing and User Tools Spreadsheet |
| |||
| Re: Label Waypoints
I have had a similar problem when displaying a route, although i have not been able to hide the numbers associated with each waypoint in the route, if you add a pushpin on top of the waypoint and then call the Select() method on the pushpin it will bring the pushpin to the front and hide the waypoints number, untill the waypoint is selected |
![]() |
| Tags |
| label, waypoints |
| ||||
| Posted By | For | Type | Date | |
| get latitude from waypoints mappoint | VIRGILIO Ricerca | Web | This thread | Refback | 08-13-2008 04:40 AM | |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Displaying a label with each pushpin | BobFromBoston | MapPoint 2006/2009 Discussion | 6 | 02-25-2007 10:46 AM |
| Modifying the Label in MapPoint | sparky | MapPoint 2006/2009 Discussion | 2 | 05-17-2006 07:11 AM |
| Textboxes Without Borders or Label Objects | malejo | Wish List | 0 | 08-17-2005 11:31 AM |
| Working with Baloons & Name (label) | Anonymous | Wish List | 2 | 11-26-2002 06:07 AM |
| specify label to all the objects of a layer | Anonymous | Wish List | 0 | 08-28-2002 08:22 AM |