What do you mean? I just tested and I am able to view the live application and I am able to download the code and get the ScrollableMap.cs file.
Hi,I managed to get the code (the proxy on my workplace was blocking the page), but I couldn't use the "hack" to assign the mouseLeftButtonDown/Up to the map. The path to my map is something like this:I have my ScrollViwer, and inside of it a Grid. The Grid gets through code the UserControl I use to define the ScrollViwer's content. It has another Grid that holds a StackPanel, that has Border countaining a Grid that has the Map, and a Navigator.<ScrollViewer Margin="0,8,8,8"
BorderBrush="{x:Null}"
HorizontalScrollBarVisibility="Auto"
VerticalScrollBarVisibility="Auto">
<Grid x:Name="GridThatHoldsTheContent"/>
</ScrollViewer><!-- ... -->
<StackPanel Grid.Row="0"
MaxHeight="1454"
VerticalAlignment="Top"
Margin="25,25,28,0">
<Border BorderThickness="1"
BorderBrush="Black">
<Grid>
<esri:Map x:Name="Mapa"
VerticalAlignment="Top"
WrapAround="True"
Background="#FFC3D2E5"
IsLogoVisible="False"
Height="1187">
<i:Interaction.Triggers>
<i:EventTrigger EventName="ExtentChanged">
<i:InvokeCommandAction Command="{Binding AcaoExtentChanged}"
CommandParameter="{Binding ElementName=Mapa}"/>
<ei:CallMethodAction MethodName="InvocaOMetodoDeHistoricosDoMapaNaViewModel"
TargetObject="{Binding ElementName=PaginaRetratoA3}"/>
<ei:CallMethodAction MethodName="ConfiguraExibicaoDeLegenda"
TargetObject="{Binding ElementName=PaginaRetratoA3}"/>
</i:EventTrigger>
</i:Interaction.Triggers>
</esri:Map>
<esri:Navigation VerticalAlignment="Bottom"
Margin="10,0,0,10" Background="#FF336397"
Style="{StaticResource EstiloNavegadorImpressao}"
Map="{Binding ElementName=Mapa}"/>
</Grid>
</Border>
<!-- ... -->
</StackPanel>What should I do?