Ssrs 2008 在运行时放大SSRS 2008 R2地图

Ssrs 2008 在运行时放大SSRS 2008 R2地图,ssrs-2008,Ssrs 2008,如何在SSRS报告页面的文本框中显示缩放值? 我的代码如下: <ReportSection> <Body> <ReportItems> <Map Name="Map2"> <MapViewport> <MapCustomView> <CenterX>34.6386680603027</CenterX>

如何在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>  

34.6386680603027
42.2658576965332
229.739669799805
更换:

<Zoom>229.739669799805</Zoom> 
229.739669799805
与:

=参数!缩放值

将:229.739669799805替换为:=参数!Zoom.Value我的地图上有一个点图层,但在运行时它会消失,我只能看到平铺图层:(我使用了嵌入图层,它工作了。)
<Zoom>=Parameters!Zoom.Value</Zoom>