Hi All,
I have noticed a bug in the way the application handles the extentchanged event:
When one isn't tapped into the event (no event handler added) zooming and panning occurs gracefully:
test.lightstone.co.za/mapsuite/compsales2.aspx?req_id=85ee8c4b-b013-4d7e-9447-d9320836d331
but, when the event is handled it seems to reload the entire map out every time the event is fired (in staid of partial reloads in the case of panning and keeping the previous map on the screen when zooming).
test.lightstone.co.za/mapsuite/compsales2.aspx?req_id=85ee8c4b-b013-4d7e-9447-d9320836d331&evt=1
I have noticed that this happens with the click event as well:
test.lightstone.co.za/mapsuite/compsales2.aspx?req_id=85ee8c4b-b013-4d7e-9447-d9320836d331&clk=1
In both cases i am just handling the event, but not doing anything inside the handlers:
Protected Sub Map1_ExtentChanged(ByVal sender As Object, ByVal e As ThinkGeo.MapSuite.WebEdition.ExtentChangedEventArgs)
End Sub
Protected Sub Map1_Click(ByVal sender As Object, ByVal e As ThinkGeo.MapSuite.WebEdition.MapClickedEventArgs)
End Sub
yet it still does a complete reload.
Is this a known bug and if so is there any resolution to it?