问题
how can you display Zoom value in a textbox in SSRS report page?
my code is like this:
<ReportSection>
<Body>
<ReportItems>
<Map Name="Map2">
<MapViewport>
<MapCustomView>
<CenterX>34.6386680603027</CenterX>
<CenterY>42.2658576965332</CenterY>
<Zoom>229.739669799805</Zoom>
</MapCustomView>
</MapViewport>
</Map>
</ReportItems>
</Body>
</ReportSection>
回答1:
Replace:
<Zoom>229.739669799805</Zoom>
with:
<Zoom>=Parameters!Zoom.Value</Zoom>
来源:https://stackoverflow.com/questions/6830380/zoom-in-ssrs-2008-r2-map-during-runtime