当前位置 : 主页 > 手机开发 > 其它 >

swift – 为GMSMarker设置自定义accessibilityIdentifier

来源:互联网 收集:自由互联 发布时间:2021-06-11
我使用Google Maps Api来制作地图和标记. 我通过设置:mapView.accessibilityElementsHidden = false来启用标记的可访问性 现在,我在地图上的所有自定义标记都具有可访问性ID,例如:myappname.GMSPlaceM
我使用Google Maps Api来制作地图和标记.

我通过设置:mapView.accessibilityElementsHidden = false来启用标记的可访问性

现在,我在地图上的所有自定义标记都具有可访问性ID,例如:myappname.GMSPlaceMarker_somenumbers,例如myappname.GMSPlaceMarker_0x600000170200.

我怎样才能为所有引脚设置一个accessibilityIdentifier,例如Map pin?

我已经尝试过:

> marker.accessibilityLabel =“Map pin”但它设置标签值,而不是id
> marker.title =“地图引脚”没有任何变化
> marker.setValue(“Map pin”,forKey:“accessibilityIdentifier”)没有任何变化

我的标记是让mark = GMSPlaceMarker(),其中GMSPlaceMarker类:​​GMSMarker

试试这个,

func markPoints() {
    var annotationCoord : CLLocationCoordinate2D = CLLocationCoordinate2D()
    annotationCoord.latitude = (selectedLocation.latitude as NSString).doubleValue
    annotationCoord.longitude = (selectedLocation.longitude as NSString).doubleValue

    let annotationPoint: MKPointAnnotation = MKPointAnnotation()
    annotationPoint.coordinate = annotationCoord
    annotationPoint.title = selectedLocation.name
    annotationPoint.subtitle = "Anand: 7348858742"
    theMap.addAnnotation(annotationPoint)
}
网友评论