We are currently using the MVC Edition to generate map bitmap images that we include in pdf reports. We use the ThinkGeo.MapSuite.MvcEdition.Map instance for generating our maps and use the GetBitmap method to generate the images for our reports. This works great, however; we are working on offloading our report processing/generation to Hangfire. Our issue is that in the Hangfire service thread the HttpContext does not exist. There appears to be a hard dependency on the existence of HttpContext when calling the ThinkGeo.MapSuite.MvcEdition.Map constructor. When we call the constructor it returns a null reference exception.
Is there any way around this that will allow us to create a Map instance and execute GetBitmap without having HttpContext available?
Thanks
Greg