Community of VE/MapPoint Users and Developers
This is a discussion on I have read you can zoom the map to any lat/long f.... within the MapPoint 2006/2009 Discussion forums, part of the Map Forums category; I have read you can zoom the map to any lat/long from code once done can you display an icon ...
| |||||||
| Register | Blogs | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| |||
| What is the likely overhead of doing this many times in a small area leaving thse icons on the map david |
| |||
|
To do this, simply add a pushpin. The following code does the trick: (MapPoint must be started) <pre> ' Attach to running instance of MapPoint Set oMpApp = GetObject(, "MapPoint.Application") ' Retrieve the active map Dim oMap As MapPoint.Map Set oMap = oMpApp.ActiveMap ' Set a pushpin at 49 North, 10 East Dim oPin As MapPoint.Pushpin Set oPin = oMap.AddPushpin(oMap.GetLocation(49, 10)) ' Set the symbol property of the pushpin oPin.Symbol = 42 </pre> Check out the documentation of the Symbol property of the Pushpin object for available symbols. MapPoint 2002 supports adding your own icons, their symbol codes start at 256. The overhead / efficiency largely depends on type of CPU and amount of memory available. -gk |
![]() |
| Tags |
| lat or long, map, read, zoom |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| how to read .shp files | shaileshganatra | MapPoint 2006/2009 Discussion | 1 | 09-10-2008 08:46 PM |
| Zoom In and Zoom Out event detection | victorf | MapPoint 2006/2009 Discussion | 2 | 10-22-2003 01:56 AM |
| set note read-only | Anonymous | MapPoint 2006/2009 Discussion | 0 | 08-05-2003 10:50 AM |
| I have just read B.J. Holtgrewe's v.interesting a.... | Anonymous | MapPoint 2006/2009 Discussion | 1 | 09-06-2001 06:15 AM |
| Is There any way to Zoom Specific Lat/Long and be.... | Anonymous | MapPoint 2006/2009 Discussion | 1 | 08-08-2001 09:49 AM |