丑陋的动态谷歌图标 - 有什么补救办法吗?

发布于 2024-12-11 07:04:29 字数 859 浏览 0 评论 0原文

我正在尝试为 GM API v3 制作自定义图标(我想要数字 1-20,所有引脚大小相同),我发现 Google 图表中的动态图标

输入图像描述此处 在此处输入图像描述 在此处输入图像描述 在此处输入图像描述

( http://chart.googleapis.com/ Chart?chst=d_map_spin&chld=0.65|0|FF8800|14|_|1

你看“1”和“11”没有很好地居中!有什么想法吗?

如此好的 API 却如此丑陋的图标!


PS: note that this API is now deprecated, and no remedy has been found.

I'm trying to make custom icons for GM API v3 (I want numbers 1-20, all pins same size) and I found Dynamic icons in Google Charts:

enter image description here enter image description here enter image description here enter image description here

( http://chart.googleapis.com/chart?chst=d_map_spin&chld=0.65|0|FF8800|14|_|1 )

You see that "1" and "11" are not centered nicely! Any thoughts?

So nice API and so ugly icons!


PS: note that this API is now deprecated, and no remedy has been found.

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

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

发布评论

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

评论(1

皓月长歌 2024-12-18 07:04:29

某些尺寸组合效果更好,但看起来右侧总是多了一个像素。

或者可能是一个绝望的黑客,比如:

<style>
    .pin{
        background:url(http://chart.googleapis.com/chart?chst=d_map_spin&chld=0.65|0|FF8800|14|_|) no-repeat 50% 50%;
        width:29px;
        height:44px;
        text-align:center;
        float:left;
        padding-top:6px
    }
</style>

    ...

<div class="pin">1</div>
<div class="pin">2</div>
<div class="pin">3</div>
<div class="pin">4</div>
<div class="pin">5</div>
<div class="pin">11</div>

    ...

Some combination of sizes are better, but it looks there is always one pixel too much on the right.

Or may be a desperate hack like:

<style>
    .pin{
        background:url(http://chart.googleapis.com/chart?chst=d_map_spin&chld=0.65|0|FF8800|14|_|) no-repeat 50% 50%;
        width:29px;
        height:44px;
        text-align:center;
        float:left;
        padding-top:6px
    }
</style>

    ...

<div class="pin">1</div>
<div class="pin">2</div>
<div class="pin">3</div>
<div class="pin">4</div>
<div class="pin">5</div>
<div class="pin">11</div>

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