我怎样才能制作一个简单的交互式网络地图(比谷歌图表API允许的更大)
我有一个电子表格,其中包含:URL、2 位国家/地区代码、主要值、不太重要的值...
我只想制作一个简单的地图,该地图可以比 Google Charts API 允许的更大(该地图限制为 600x600),但是类似程度的简单性。
如果它看起来不错并且具有交互性(将鼠标悬停在国家/地区上显示数据)那就更好了。如果我必须托管自己的 javascript,那也没关系。
I have a spreadsheet with: URL, 2 digit country code, Main Value, Less important values ...
I just want to make a simple map that can be bigger than what Google Charts API allows (that one is limited to 600x600), but a similar level of simplicity.
If it looks nice and is interactive (hovering on country shows data) all the better. If I have to host my own javascript, that's OK.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
地图可以是您想要的任何尺寸:
http://code .google.com/apis/maps/documentation/javascript/v2/reference.html#GMapOptions
它默认为其所在容器的大小,因此如果您将其放入
div
即 600x600,它将是该尺寸。Maps can be any size you want:
http://code.google.com/apis/maps/documentation/javascript/v2/reference.html#GMapOptions
It defaults to the size of the container it is in, so if you put it in a
div
that is 600x600, it will be that size.