华为集群地图和查看标记

发布于 2025-01-21 08:45:26 字数 238 浏览 0 评论 0 原文

我正在为华为的React Native创建一个项目,并使用此库:“@hmscore/react-native-nms-map”。

创建地图时,如何将视图放在标记中? 在MapView中,我可以放入里面并绘制任何东西,但是在HMSMarker中它不允许我,有办法吗?


  1. 只有在至少有6个分数在一起的情况下,小组加入,是否有一种方法可以将2个分组合在一起?

非常感谢您。

I am creating a project in React Native for Huawei and i use this library: "@hmscore/react-native-hms-map".

When creating the map, how can I place the view inside the markup?
In MapView I can put inside and draw anything, however in HMSMarker it doesn't allow me, is there a way?


  1. Groups only join when there are at least 6 marks together, is there a way to make groups of 2 marks together?

Thank you very much in advance.

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

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

发布评论

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

评论(2

§普罗旺斯的薰衣草 2025-01-28 08:45:26
  1. 标记可以在图标模式下自定义:

您可以在此处找到参数说明:

和示例代码:

      <HMSMarker
        icon={{
          uri: Image.resolveAssetSource(
            require("../assets/galata-tower.png")
          ).uri,
          width: 140,
          height: 150,
        }}
      >
  1. 群集中的最小标记数无法更改。
  1. Marker can be customized in icon mode:

You can find the parameter description here:
https://developer.huawei.com/consumer/en/doc/development/HMS-Plugin-References/marker-0000001051150162#section8565252375

And the sample code:

      <HMSMarker
        icon={{
          uri: Image.resolveAssetSource(
            require("../assets/galata-tower.png")
          ).uri,
          width: 140,
          height: 150,
        }}
      >
  1. The min marker number in cluster cannot be changed.
神经大条 2025-01-28 08:45:26

如果要为标记设置标题和摘要,则支持以下内容:

或者您可以定义一个Infowdow。

但是,如果要定义标记的视图,则不能直接使用“视图”。

If you want to set title and snippet for the marker, it is supported like :
sample
Or you can define a InfoWindow.

But if you want to define the view of the marker, you cannot use "View" directly.

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