如何在 OpenLayers 中使用较大图像的一部分作为标记?
是否可以使用 OpenLayers 来使用较大图像的一部分作为标记?
像这样(在谷歌地图中):
var icon = new google.maps.MarkerImage(
"img/marker_sprite.png",
new google.maps.Size(26, 44),
new google.maps.Point(0, 44)
);
Is it possible to use part of a larger image as a marker with OpenLayers?
Like this (in google maps):
var icon = new google.maps.MarkerImage(
"img/marker_sprite.png",
new google.maps.Size(26, 44),
new google.maps.Point(0, 44)
);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 OpenLayers 中向地图添加标记的基本方法是从向地图添加标记图层开始,您可以这样做:
然后您需要向该图层添加标记,其过程如下:
不幸的是,这是不可能的据我所知,因此请在图像文件中设置标记的原点,以便您可以只使用图像的一部分。好吧,你可以,但前提是你想要的部分在角落里,这不是很有帮助。
The basic recipe for adding a marker to a map in OpenLayers starts with adding a Marker layer to your map, which you can do like this:
Then you will need to add markers to that layer, which goes something like this:
Unfortunately it's not possible, as far as I know, so set the origin for the marker within the image file so you can just use part of the image. Well you can, but only if the part you want is in the corner, which isn't very helpful.