我们可以在 Swift 中显示一些动态文本以及 Google 地图上的标记吗?

发布于 2025-01-16 00:43:10 字数 822 浏览 1 评论 0原文

我正在尝试在标记下添加一些文本,如下图所示,我正在使用谷歌地图,Swift

在此处输入图像描述

我想在标记下添加一些文本。有办法做到这一点吗?

我的代码

self.mapView.clear();
        var bounds = GMSCoordinateBounds();
        if let lat = alert?.latitude, let lon = alert?.longitude{
            let position = CLLocationCoordinate2D(latitude: lat, longitude: lon)
            let marker = GMSMarker(position: position);
            marker.title = alert?.deviceName;
            marker.groundAnchor = CGPoint(x: 0.5, y: 0.5);
            marker.map = mapView;
            bounds = bounds.includingCoordinate(position);
        }
        let update = GMSCameraUpdate.fit(bounds)
        self.mapView.animate(with: update);

I'm trying to add some text under marker like in the picture mentioned below,I'm using google maps, Swift

enter image description here

I want to add some text under my marker. There is a way to do that?

My Code

self.mapView.clear();
        var bounds = GMSCoordinateBounds();
        if let lat = alert?.latitude, let lon = alert?.longitude{
            let position = CLLocationCoordinate2D(latitude: lat, longitude: lon)
            let marker = GMSMarker(position: position);
            marker.title = alert?.deviceName;
            marker.groundAnchor = CGPoint(x: 0.5, y: 0.5);
            marker.map = mapView;
            bounds = bounds.includingCoordinate(position);
        }
        let update = GMSCameraUpdate.fit(bounds)
        self.mapView.animate(with: update);

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

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

发布评论

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

评论(1

浊酒尽余欢 2025-01-23 00:43:10

您可以使用 Maps SDK for iOS 实用程序库自定义标记。请参阅 CustomerMarkerViewController 作为示例。

You can use the Maps SDK for iOS Utility Library to customize the marker. See CustomerMarkerViewController as an example.

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