如何设置 Bing Map API 层的不透明度但保留 PushPins 对象的完全 100% 不透明度?
我想通过设置不透明度来淡化航空地图图层。 但是,我想为渲染在地图顶部的任何对象(即图钉)保留任何 alpha(无不透明度)。
有人知道这是否可行(API 是否以某种方式支持这一点)?
谢谢!
I'd like to fade the Aerial map layer by setting the opacity.
BUT, i'd like to retain no alpha (no opacity) for any objects (i.e. pushpins) that are rendered on top of the map.
Anyone know if this is feasible (does API support this in some way)?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们需要的是一种对地图控件用来显示地图本身的内部
MapTileLayer
进行样式设置的方法。不幸的是,API 不提供该级别的访问权限。不过,我们可以使用 VisualTreeHelper 来访问 MapTileLayer。我在此 博客 中使用扩展类对此提供帮助。使用项目中存在的此类,我们可以做一些像这样的笨拙的事情:-
但是,最好通过创建一个从
Map
派生的新类并分配一个样式而不是单个属性来正确地做到这一点不透明度
。有了这个导数,我们就可以做到这一点: -
图钉将保持完全不透明,但地图图像本身将淡出。
What is needed is a way to style the internal
MapTileLayer
that the Map control uses to display the map itself. Unfortunately the API does not provide that level of access.However we can use the VisualTreeHelper to gain access to the
MapTileLayer
. I use the extensions class in this blog to help with that. With this class present in the project we could do something cludgy like this:-However its probably best to do it properly by creating a new class that derives from
Map
and assigning a style instead of a single property likeOpacity
.With this derivative in place we can do this:-
The pushpins will remain fully opaque but the map image itself will be faded out.