ThinkGeo.com    |     Documentation    |     Premium Support

AzureMaps integration

Hi Team,

Could you please guide me on where I can find the documentation for integrating Azure Maps into a WPF application ?

Which ThinkGeo package includes support for Azure Maps?

Currently, we are using the ThinkGeo 14.2.6 package.

Thanks,
Jayshree

Hi Jayshree,

AzureMaps was supported since v14.3.1.

You can use it as following:

       var azureMapsOverlay = new AzureMapsRasterOverlay(applicationId, AzureMapsRasterTileSet.Imagery)
            {
                TileCache = new FileRasterTileCache(@".\cache", "azureMapsImagery")
            };
            MapView.Overlays.Add(azureMapsOverlay);

It’s also added to the latest HowDoI Samples:

Thanks,
Ben

Hi Ben,

Could you please provide the link for HowDoI?

As I cannot see the Azure Map option in My HowDo I samples

Sorry Jayshree, I forgot to mention the sample now only in the dev branch.

samples/wpf/HowDoISample/Samples/MapOnlineData/AzureMap.xaml.cs · develop

In fact, let us merge to the main branch in a couple days.

Thanks,
Ben