Community of VE/MapPoint Users and Developers
This is a discussion on Drawing / Zoom within the MapPoint 2006/2009 Discussion forums, part of the Map Forums category; Hi, I have to draw Arrows between two points and then I want both points to be in the zoom ...
| |||||||
| Register | Blogs | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| |||
| Drawing / Zoom I have to draw Arrows between two points and then I want both points to be in the zoom and not only one. Code: Dim objApp As New MapPoint.Application Dim objMap As MapPoint.Map Dim objLoc1 As MapPoint.Location Dim objLoc2 As MapPoint.Location Dim Arrow As MapPoint.Shape Dim begin As String Dim finish As String 'Set up the application Set objMap = objApp.ActiveMap objApp.Visible = False objApp.UserControl = True 'Get two locations and zoom to it begin = TextBox1.Value finish = TextBox2.Value Set objLoc1 = objMap.FindResults(begin).Item(1) Set objLoc2 = objMap.FindResults(finish).Item(1) Set objMap.Location = objLoc1 'Zoom to begin 'Add an Arrow from one location to the other Set Arrow = objMap.Shapes.AddLine(objLoc1, objLoc2) Arrow.Line.EndArrowhead = True Arrow.Line.Weight = 1 Arrow.SizeVisible = True objApp.Visible = True |
| |||
|
Hi, I think this should do it: Code: MP.ActiveMap.DataSets.ZoomTo();
__________________ rgds, Wilfried Mestdagh www.mestdagh.biz MapPoint coding demo Order MapPoint 2009 with Routing and User Tools Spreadsheet |
![]() |
| Tags |
| drawing, zoom |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Mappoint-ZOOM | Anonymous | MapPoint 2006/2009 Discussion | 1 | 10-28-2004 08:56 AM |
| Zoom to Waypoint | BobIDEAS | MapPoint 2006/2009 Discussion | 3 | 09-08-2004 02:41 PM |
| Zoom to selection? | sthurlock | MapPoint 2006/2009 Discussion | 6 | 12-10-2003 07:53 PM |
| zoom in on pushpin | starbuck | MapPoint 2006/2009 Discussion | 5 | 10-24-2003 12:26 PM |
| Zoom In and Zoom Out event detection | victorf | MapPoint 2006/2009 Discussion | 2 | 10-22-2003 01:56 AM |