带有自定义图钉的 bing 地图 api 静态地图图像
我正在使用 Bingmap api,想要使用静态地图,我正在使用以下 api 参考
http ://msdn.microsoft.com/en-us/library/ff701724.aspx
我的问题是静态地图,我们可以显示自定义图钉图像吗?
任何快速的想法
I am using using Bingmap api, want to use static map i am using following api reference
http://msdn.microsoft.com/en-us/library/ff701724.aspx
My question is over static map can we display custom pushpin image ?
any quick idea
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
否 - 您可以从 37 种内置图钉样式中选择一种,但无法提供自己的自定义图标。请参阅 http://msdn.microsoft.com/en-us/library/ff701719。 aspx 供参考。
No - you can choose from one of the 37 built-in pushpin styles, but you can't provide your own custom icon. See http://msdn.microsoft.com/en-us/library/ff701719.aspx for reference.
否,但如果您使用“&mmd=1”参数向 Microsoft API 发出相同的请求,您将获得一个 JSON 对象,其中包含所有标记的像素偏移量。有了这些信息,您就可以相当轻松地使用 CSS 渲染自定义标记,或者使用 ImageMagick 或类似工具自行合成图像。
No, but if you make the same request to Microsoft API with the "&mmd=1" parameter you get a JSON object which includes the pixel offsets of all the markers. With this info you could fairly easily render custom markers with CSS, or composite an image yourself with ImageMagick or similar.
静态地图 api 本身不支持自定义图钉,但正如 @Ed 所说,如果需要这样做,您可以获取有关图钉位置的元数据。
这将需要单独调用与地图图像相同的端点,并在 URL 中附加 &mmd=1 或 &mapMetadata=1 查询。这将返回一个对象,其中包含有关地图的元数据,包括图钉位置(减去地图图像本身)
http://msdn.microsoft.com/en-us/library/hh667439.aspx
下面的代码片段显示了如何执行此操作的示例:
Custom pushpins are not supported natively in the static map api, but as @Ed said you can get metadata about the pushpin location if you need to do this.
This will require a separate call to the same endpoint as the map image with the &mmd=1 or &mapMetadata=1 query appended in the url. This returns an object with a metadata about the map including the pushpin position (minus the map image itself)
http://msdn.microsoft.com/en-us/library/hh667439.aspx
Below is a snippet showing an example of how to do this:
如果您只需要将单个图钉居中(这可能是此类事情最常见的用例),您还可以生成没有图钉的静态图像,然后使用 CSS 将您的自定义居中用别针固定在图像上。
示例 HTML:
示例 CSS:
这是一个工作小提琴: http://jsfiddle.net/jaredjensen/fem4a556/
If you only need to center a single pin, which is probably the most common use case for this sort of thing, you can also generate a static image without a pin, and then use CSS to center your custom pin over the image.
Example HTML:
Example CSS:
Here's a working fiddle: http://jsfiddle.net/jaredjensen/fem4a556/