boundCenter()/boundCenterBottom()对于 ItemizedOverlay 中的标记是必需的吗?

发布于 10-26 23:53 字数 369 浏览 2 评论 0原文

除非您在默认标记上调用 boundCenter()boundCenterBottom(),否则 ItemizedOverlay 中的标记似乎不会显示在地图中。

这是正确的吗?如果是,为什么?是不是默认情况下根本没有设置 (0,0) 点,因此 Android 不知道如何放置标记?

更新:

我发现您也有 Drawable.setBounds(),因此我假设 boundCenter()boundCenterBottom() 正在调用此方法。如何决定将 Drawable 的哪一部分用作地图上的定位点?

It seems that markers in an ItemizedOverlay are not shown in the map unless you call boundCenter() or boundCenterBottom() on the default marker.

Is this correct, and if so, why? Is it that a (0,0) point is not set at all by default, and thus Android has no idea how to place the markers?

Update:

I see that you also have Drawable.setBounds(), so I assume boundCenter() and boundCenterBottom() is calling this method. How is it decided which part of the Drawable is used as the pin point on the map?

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

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

发布评论

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

评论(2

东京女2024-11-02 23:53:07

请参阅此示例了解如何使用 boundCenter( )

我相信为了使boundCenter()调用起作用,你的Drawable应该有一些固有的宽度和高度。我猜它的工作原理是这样的:

public static Drawable boundCenter(Drawable d)
{
     d.setBounds(d.getIntrinsicWidth() /- 2, d.getIntrinsicHeight() / -2,
                 d.getIntrinsicWidth / 2, d.getIntrinsicHeight() / 2);
     return d;
}

这偏移了从上/左到下/中心的边界。

See this example of how to use the boundCenter()

I believe for the boundCenter() call to work, your Drawable should have some intrinsic width and height. I'm guessing it works something like this:

public static Drawable boundCenter(Drawable d)
{
     d.setBounds(d.getIntrinsicWidth() /- 2, d.getIntrinsicHeight() / -2,
                 d.getIntrinsicWidth / 2, d.getIntrinsicHeight() / 2);
     return d;
}

This offsets the bounds from Top/Left, to Bottom/Center.

夜吻♂芭芘2024-11-02 23:53:07

如果您希望边界出现,则必须以某种方式设置边界。使用哪种方法并不重要,但如果您的可绘制对象没有边界,则其边界为 0,0,0,0 或类似的值,并且您将看不到任何内容。

You must set the BOUNDS in some fashion if you wish them to appear. It doesn't matter which method you use, but if there are no bounds on your drawable, its bounds are 0,0,0,0 or something like that, and you will see nothing.

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