Hello, I have a map control inside UpdatePanel like this:
asp:UpdatePanel ID=“UpdatePanelMapa” runat=“server” UpdateMode=“Conditional” ChildrenAsTriggers=“false”
ContentTemplate
cc1:Map ID=“Map1” runat=“server” Height=“200px” Width=“400px” onclick=“Map1_Click” OnTrackShapeFinished=“Map1_TrackShapeFinished”
/cc1:Map
/ContentTemplate
/asp:UpdatePanel
Everything is working fine however, if I pan or change the zoom and after that I click on any other control (from other updatepanels) the extend of map changes to the previous view, I mean, the extend when I´ve updated the map panel, is there a solution for this?? If the map control is inside of conditional updatepanel the map extend must not be updated.
Thanks in advance.