如何在struts2应用程序中集成google地图
我需要将谷歌地图集成到我的 struts2 应用程序中。 我该怎么做?
谢谢
I need to integrate the google map inside my struts2 application.
How can i do this ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Google 地图是基于 Java 脚本的 API,您可以向它提供所需的数据,它将发送到 Google API 服务器以发回结果。
您所能做的就是在 Action 类中准备所需的数据,这些数据需要发送到 Google MAP API,如纬度、经度或任何地址组件等。
剩下的如何处理 Google 地理代码功能是在 jsp 级别。
Google Map is java script based API all you can provide it the required data which it will send to the Google API server to send back the results.
All you can do is to prepare the required data in side the Action class which needs to be send to Google MAP API like latitude,longitude or any address component etc.
Rest how you will handle Google geo code functionality is at jsp level.
我找到了一个链接 http://googlemap- struts2.blogspot.com/2009/12/dynamic-google-map-with-struts2.html 其中显示了必须如何完成此操作。我希望这也能起作用:)
I have found a link http://googlemap-struts2.blogspot.com/2009/12/dynamic-google-map-with-struts2.html which shows how this must be done. I hope this works too :)
这是将谷歌地图添加到 struts2 web 应用程序 https://github.com 的最佳且最简单的方法/lalotech/struts2-map-plugin
避免了很多 JavaScript,您可以使用 struts2 方式,即使用标签库来完成它。
精彩,需要更多曝光。
This is the best and most simple way to add google maps to struts2 web app https://github.com/lalotech/struts2-map-plugin
Lot of javascript is avoided and you can do it struts2 way i.e using tag lib.
Wonderful and needs more exposure.