views:

119

answers:

2

I'm wanting to write a simple WinForms application that will be able to plot several locations on a map. Ideally, the application would embed a map that I can programmatically manipulate, and be able to add locations to the map using postal codes.

Is anyone aware of any free maps I can use within my application, ideally with either a .Net interface or a .Net library that wraps its interface?

+3  A: 

The only free map I know of is OpenStreeMaps, the others (Google, Bing) require licensing. There are a couple of related projects on Codeplex.

Henk Holterman
The link to the related projects on Codeplex turned up GMap.Net, which wraps several different maps. That project looks ideal.
adrianbanks
Thx for mentioning GMap.Net, looks great!
stej
A: 

There are some free maps (with water marks) in the trial version of Global Mapper. Here is some of the free sample data.

SwDevMan81