如何设置谷歌地理地图上的区域颜色?
可以为地理地图设置颜色吗?
我还想听取社区关于地理编码解决方案替代方案的意见。
谢谢。
is it possible to set color for geomap?
Also I would like to listen community opinion about alternatives in Geo Coding solutions.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
可以设置地理地图中使用的区域的颜色。此 API 页面解释了所有内容:
http://code.google.com/ apis/visualization/documentation/gallery/geomap.html
It is possible to set the color for the regions used in the geomap. This API page explains everything:
http://code.google.com/apis/visualization/documentation/gallery/geomap.html
使用版本 3 的地理地图(截至 2014 年 1 月 8 日)- 颜色从红色渐变为蓝色。
您可以在此处测试以下代码:
另外, MapBox 是 googlemaps / geomap 的替代品。
With version3 of geomap (as of 8Jan2014) - color fade from red to blue.
You can test the following code here:
Also, MapBox is an alternative to googlemaps / geomap.
作为选项对象的一部分,传递您想要的颜色的十六进制。例如
options['colors']=[0XEBEBEB,0XA3D5F8];
将为您提供这两种颜色作为基础。
As part of your options object pass in the hex for the colors you want. For instance
options['colors']=[0XEBEBEB,0XA3D5F8];
will give you those two colors as base.
您可以自定义国家、世界地图、甚至背景的颜色。还
查看:
You can customize the colors of country, world map, even background. Also
check: