This example demonstrates how to connect to the Bing Maps using the BingMapDataProvider object.
Note that if you run this sample as is, you will get a warning message saying that the specified Bing Maps key is invalid. To learn more about Bing Map keys, please refer to the How to: Get a Bing Maps Key tutorial.
Form1.cs |
mapControl1.Layers.Add(new ImageLayer() {
DataProvider = new BingMapDataProvider() {
BingKey = "YOUR BING KEY"
}
});
|
Form1.vb |
mapControl1.Layers.Add(New ImageLayer() With { _
.DataProvider = New BingMapDataProvider() With {.BingKey = "YOUR BING KEY"} _
})
|