zoom in SSRS 2008 R2 MAP during Runtime

假如想象 提交于 2019-12-25 01:36:24

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!