放大 SSRS 2008 R2 空间地图

发布于 2024-11-16 10:01:53 字数 100 浏览 1 评论 0原文

是否可以放大 SSRS 2008 R2 中已生成的地图?

我可以看到如何在设计时设置缩放级别,但不能在运行时设置缩放级别

提前致谢,

吉姆

Is it possible to zoom in on a map which has already been generated in SSRS 2008 R2?

I can see how to set the zoom level at design time, but not at run time

Thanks in advance,

Jim

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

翻身的咸鱼 2024-11-23 10:01:53

您可以做的是将缩放级别设置为具有不同缩放级别值的参数。它不允许您缩放地图上的任何位置,但它通常会放大该点。就我个人而言,我对 SSRS 2008 中的映射缺乏交互性感到有点失望。

What you can do is set the zoom level to a parameter with values of different zoom levels. It doesn't let you zoom anywhere on the map, but it typically will zoom in on the point. Personally, I have been a little disappointed with the lack of interactivity with the mapping in SSRS 2008.

网白 2024-11-23 10:01:53

看起来这是一个“不”。

我见过的所有示例都讨论了地图上的链接(例如在某个点上),单击这些链接时基本上会显示另一个报告,该报告恰好处于不同的缩放级别。

It looks like this is a "no".

All the examples I've seen talk about links on the map (e.g. on a point) which when clicked basically show another report, which happens to be at a different zoom level.

计㈡愣 2024-11-23 10:01:53

创建一个参数@Zoom,
然后您可以

<MapCustomView>
        <CenterX>34.6386680603027</CenterX>
        <CenterY>42.2658576965332</CenterY>
        <Zoom>229.739669799805</Zoom>  

在代码文件中用 =Parameters!Zoom.Value 替换标记的值。

<MapCustomView>
        <CenterX>34.6386680603027</CenterX>
        <CenterY>42.2658576965332</CenterY>
        <Zoom>=Parameters!Zoom.Value</Zoom>  

现在使用过滤器手动输入金额。

create a Parameter @Zoom,
then you can replace value of tag

<MapCustomView>
        <CenterX>34.6386680603027</CenterX>
        <CenterY>42.2658576965332</CenterY>
        <Zoom>229.739669799805</Zoom>  

with =Parameters!Zoom.Value in code file.

<MapCustomView>
        <CenterX>34.6386680603027</CenterX>
        <CenterY>42.2658576965332</CenterY>
        <Zoom>=Parameters!Zoom.Value</Zoom>  

now use a filter to enter the amount manually.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文