View Single Post

  #2 (permalink)  
Old 07-20-2004
Eric Frost's Avatar
Eric Frost Eric Frost is offline
Senior Member
Black Belt
 
Join Date: Jul 1992
Posts: 2,530
Blog Entries: 1
Hey Jake,

Yes, definitely. Check this out in the Help File:

Projection property

Returns or sets whether the map is displayed as a flat map (Miller Cylindrical projection) or globe map (orthographic projection) at zoom levels above 5,700 miles (9,200 kilometers). Below this altitude, the map is always displayed as a globe map. Read/write GeoMapProjection.

Here's the example they include:

Code:
  Sub ChangeToGlobeView()

  Dim objApp As New MapPoint.Application

  'Set up the application
  objApp.Visible = True
  objApp.UserControl = True

  'Change the map projection to
  ' globe view and zoom out to see it
  objApp.ActiveMap.Projection = geoGlobeViewWhenZoomedOut
  objApp.ActiveMap.ZoomOut

  End Sub
__________________
~ Now taking orders for MapPoint 2009 ~
~
~ Upgrade to MapForums Plus membership ~
Reply With Quote