Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Display Map given Lat/Lon

Status
Not open for further replies.

jbs

Programmer
Feb 19, 2000
121
US
How do I display, using the Map Point control, a map of the surrounding area of a lat/lon when the lat/lon is known?

/J
 
Got it....

For those that are interested...MS really has done a neat job on their product.

The code the answers the question for those that are interested...

Dim objMap as MapPointCtl.Map
Dim objLoc as MapPointCtl.Location
Dim objFindResults as MapPointCtl.FindResults
Set objMap = Form1.MappointControl1.ActiveMap
Set objLoc = objMap.GetLocation(89,169)
objLoc.GoTo

/Jerry
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top