Google 可视化 API 地理地图背景颜色

发布于 2024-10-15 15:19:59 字数 165 浏览 5 评论 0原文

我有一张由 Visualization API 生成的地图。它的类型是 GeoMap。 我想知道如何为其设置与原始蓝色背景不同的颜色。我知道为区域设置颜色很容易,但我需要海洋,即。黑色的。可以通过API来做吗?也许我应该创建一些半永久的黑色图形文件并将其放在地图的顶部?还有其他想法吗?

多谢, 杰克

I've got a map generated by Visualization API. Its type is GeoMap.
I'm wondering how I can set a different that original blue background for it. I know that it is very easy to set a color for regions but I need the oceans to be, ie. black. Is it possible to do via API? Maybe I should create some black graphic file that is half permanent and put it at the top of the map? Any other ideas?

Thanks a lot,
Jack

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

最后的乘客 2024-10-22 15:19:59

新的 GeoChart 允许通过“背景”选项来完成此操作。 http://code.google.com/apis/chart/interactive /docs/gallery/geochart.html

The new GeoChart allows this to be done via the 'background' option. http://code.google.com/apis/chart/interactive/docs/gallery/geochart.html

合约呢 2024-10-22 15:19:59

目前不支持此功能。但是您可以更改地图颜色,请查看此处的标记示例:
http://code.google.com/apis/visualization/documentation/gallery /geomap.html

Currently this is not supported. however you can change the map colors, check Markers Example here:
http://code.google.com/apis/visualization/documentation/gallery/geomap.html

离笑几人歌 2024-10-22 15:19:59

使用此选项

options = { 

datalessRegionColor: '#29ABE2',

backgroundColor: '#F3F3F3',

colorAxis: {colors: ['#0071BC']},

keepAspectRatio: false,

legend: false,


tooltip: { textStyle: { color: '#0099CB', fontName: 'Arial', fontSize: '10'} }

};

use this options

options = { 

datalessRegionColor: '#29ABE2',

backgroundColor: '#F3F3F3',

colorAxis: {colors: ['#0071BC']},

keepAspectRatio: false,

legend: false,


tooltip: { textStyle: { color: '#0099CB', fontName: 'Arial', fontSize: '10'} }

};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文