使用 Javascript 在 ArcGIS 地图中使用图钉
在地图上添加图钉以便单击时会在图钉顶部显示详细信息弹出窗口的方法是什么?
谢谢。
What would be the way to add a pushpin on a map so that when clicked, it will show a detail popup on top of the pushpin?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您想使用 ArcGIS JavaScript API 及其一些基本工具。您将需要使用属于地图对象一部分的图形图层和默认信息窗口。我在 JSFiddle 上整理了一个小示例,展示了基础知识。
确保在页面的标题部分包含以下内容
http://jsfiddle.net/SummerTop/jn5rw /1/
这将创建一个地图对象,然后当单击地图时,向地图添加一个具有一些非常基本属性的图形。您应该看到一个没有填充的小黑色圆圈,只有黑色轮廓,如果单击新符号,它将显示一个弹出窗口,其中包含我们最初赋予它的属性。
Sounds like you want to use the ArcGIS JavaScript API and some of it's basic tools. You'll want to use the graphics layer that is part of the map object and the default info window. I put together a small sample on JSFiddle that show's the basics.
make sure to include the following in the head section of your page
http://jsfiddle.net/SummerTop/jn5rw/1/
This will create a map object, then when the map is clicked, add a graphic to the map with some very basic attributes. You should see a small black circle with no fill, just the black outline, if you click the new symbol, it will show a pop-up with the attribute we initially gave it.