如何绘制用户的图表JavaScript 地图上的国家/地区信息为“Pins”;针对每个国家的数据点?地理编码的东西
这是一个简单的“如何做”问题。
我的数据库中有用户及其国家/地区名称。我想要获取所有用户的国家/地区信息,并将其显示在 JavaScript 地图上作为数据点的“图钉”。例如,如果我有来自巴西的用户,就会有巴西的 Pin 图,等等。
由于我只查看国家/地区,因此最好的方法是什么?我刚刚看到这个,但我不确定这就是答案。在鼠标悬停时显示包含该国家/地区用户总数的工具提示将是一个很大的优势。
This is a simple 'how-to' question.
I have users in my database with their country name. I want get this country information of all the users and show it on a JavaScript Map as 'Pins' of data points. Like, for example, if I have users from Brazil, there will be a Pin on Brazil, etc.
What is the best method to do this, since I'm only looking at countries? I just saw this but I'm not sure it is the answer. Displaying a tooltip with total number of users within that country, onhover, would be a big plus.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在地图上创建图钉的示例脚本如下:
我。如果您使用的是 asp.net MVC,您可以创建一个返回 JsonResult 的操作
二.您可以使用 ajax 调用服务器方法并获取结果。
A sample script to create the pins on the map is as below:
i. if you are using asp.net MVC, you could create an action that returns JsonResult
ii. you could use ajax to make a call to a server method and get the results.