在运行时放大SSRS 2008 R2 MAP

时间:2011-07-26 12:59:36

标签: ssrs-2008

如何在SSRS报告页面的文本框中显示缩放值?
我的代码是这样的:

<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 个答案:

答案 0 :(得分:1)

替换:

<Zoom>229.739669799805</Zoom> 

使用:

<Zoom>=Parameters!Zoom.Value</Zoom>