我使用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)
}