- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 GMSMapView 类型的 Google map ,并且我在该 map 上显示了标记,并且我还为该 mapView 实现了 Google 集群。
所以我真正想要实现的是我想点击特定集群的集群图标和图标更改。但是目前这并没有发生,因为当我点击选定的标记时,只有单个标记会发生变化,而不是集群 Item 会发生变化。
map 上显示的我的集群组
我真正想要达到的目标
我为个人标记实际取得的成就。
所以上面的图像是集群标记我想在该集群项目上呈现一个图标但不幸的是它没有呈现,因为我无法在 的代表中访问图像GMUClusterManagerDelegate 和 GMUClusterRendererDelegate .
我不知道如何在集群标记的点击操作上更改集群图标。
注意:- 我想更改集群项目的集群点击图标并且我已经为选定的单个标记 实现了
下面是我到目前为止所做的代码
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
propertyMapView.delegate = self
createListOfPOIItems()
}
// MARK : -- Map related functions
//creating POOitems for the map
func createListOfPOIItems() {
self.propertyPOIItemList = []
for index in 0..<self.propertyListModalArray.count {
let propertylistmodal = self.propertyListModalArray[index]
if UtilitySharedClass.sharedInstance.isvalidGeoLat(propertylistmodal.propertylat) && UtilitySharedClass.sharedInstance.isvalidGeoLong(propertylistmodal.propertyLong) {
let coordinate = CLLocationCoordinate2D(latitude: CLLocationDegrees(Float(propertylistmodal.propertylat!)!), longitude: CLLocationDegrees(Float(propertylistmodal.propertyLong!)!))
if universityLocation == coordinate{
continue
}
let item = POIItem(position: coordinate, name: propertylistmodal.propertyName ?? "", propertyListModal: propertylistmodal)
self.propertyPOIItemList?.append(item)
}
}
initiateClustering()
}
func initiateClustering() {
// Set up the cluster manager with the supplied icon generator and
// renderer.
let iconGenerator = ClusterIconGenerator()
let algorithm = GMUNonHierarchicalDistanceBasedAlgorithm()
let renderer = GMUDefaultClusterRenderer(mapView: propertyMapView,
clusterIconGenerator: iconGenerator)
clusterManager = GMUClusterManager(map: propertyMapView, algorithm: algorithm,
renderer: renderer)
renderer.delegate = self
renderer.minimumClusterSize = 2
//renderer.animationDuration = 0.2
// Generate and add random items to the cluster manager.
generateClusterItems()
// Call cluster() after items have been added to perform the clustering
// and rendering on map.
clusterManager.cluster()
clusterManager.setDelegate(self, mapDelegate: self)
self.setUniversityLocation()
}
为 map 添加集群
/// adds property location to the cluster manager.
private func generateClusterItems() {
guard let items = self.propertyPOIItemList else { return }
items.forEach({ (item) in
clusterManager?.add(item)
clusterManager?.cluster()
})
}
为集群实现委托(delegate)
extension SearchViewController: GMSMapViewDelegate, GMUClusterManagerDelegate, GMUClusterRendererDelegate {
func renderer(_ renderer: GMUClusterRenderer, markerFor object: Any) -> GMSMarker? {
let marker = CustomMarker()
if let itemMarker = object as? GMUCluster {
marker.markerType = .clusterType
marker.markerCount = itemMarker.items.count
} else if let itemMarker = object as? POIItem {
marker.markerType = .itemType
itemMarker.marker = marker
marker.propertyListModal = itemMarker.propertyListModal
}
return marker
}
func renderer(_ renderer: GMUClusterRenderer, didRenderMarker marker: GMSMarker) {
if let customMarker = marker as? CustomMarker {
if customMarker.markerType == .itemType {
let propertyMarker = createMarkerView(isSelected: customMarker.isSelected)
propertyMarker.markerPriceLabel.text = customMarker.propertyListModal?.propertyPrice
marker.icon = propertyMarker.asImage()
marker.groundAnchor = CGPoint(x: 0.5, y: 1)
}
}
}
// MARK: - GMUClusterManagerDelegate
func clusterManager(_ clusterManager: GMUClusterManager, didTap cluster: GMUCluster) -> Bool {
let newCamera = GMSCameraPosition.camera(withTarget: cluster.position,
zoom: propertyMapView.camera.zoom)
let update = GMSCameraUpdate.setCamera(newCamera)
propertyMapView.moveCamera(update)
isClusterTapped = true
clusterPropertyList = []
let properties = cluster.items
properties.forEach({ (property) in
if let propertyModal = property as? POIItem, propertyModal.propertyListModal != nil{
clusterPropertyList.append(propertyModal.propertyListModal!)
}
})
if let previousMarker = propertyMapView.selectedMarker as? CustomMarker{
previousMarker.isSelected = !previousMarker.isSelected
let propertyMarker = createMarkerView(isSelected: previousMarker.isSelected)
propertyMarker.markerPriceLabel.text = previousMarker.propertyListModal?.propertyPrice
previousMarker.icon = propertyMarker.asImage()
}
self.propertyMapView.selectedMarker = nil
self.propertyListContainerForMap.isHidden = false
self.propertyViewForMapCollectionView.reloadData()
return true
}
func clusterManager(_ clusterManager: GMUClusterManager, didTap clusterItem: GMUClusterItem) -> Bool {
let newCamera = GMSCameraPosition.camera(withTarget: clusterItem.position,
zoom: propertyMapView.camera.zoom)
let update = GMSCameraUpdate.setCamera(newCamera)
propertyMapView.moveCamera(update)
if let previousMarker = propertyMapView.selectedMarker as? CustomMarker{
previousMarker.isSelected = !previousMarker.isSelected
let propertyMarker = createMarkerView(isSelected: previousMarker.isSelected)
propertyMarker.markerPriceLabel.text = previousMarker.propertyListModal?.propertyPrice
previousMarker.icon = propertyMarker.asImage()
}
let item = clusterItem as? POIItem
if let tappedMarker = item?.marker as? CustomMarker{
tappedMarker.isSelected = !tappedMarker.isSelected
let propertyMarker = createMarkerView(isSelected: tappedMarker.isSelected)
propertyMarker.markerPriceLabel.text = tappedMarker.propertyListModal?.propertyPrice
tappedMarker.icon = propertyMarker.asImage()
propertyMapView.selectedMarker = tappedMarker
}
isClusterTapped = false
self.propertyListContainerForMap.isHidden = false
self.propertyViewForMapCollectionView.reloadData()
return true
}
}
我的 POItem 类
import Foundation
import GoogleMapsUtils
import GoogleMaps
class POIItem: NSObject, GMUClusterItem {
var position: CLLocationCoordinate2D
var name: String!
var propertyListModal: PeropertyListModel?
var marker: GMSMarker?
init(position: CLLocationCoordinate2D, name: String, propertyListModal: PeropertyListModel) {
self.position = position
self.name = name
self.propertyListModal = propertyListModal
}
}
IconGenerator 的类
import Foundation
import GoogleMapsUtils
class ClusterIconGenerator: GMUDefaultClusterIconGenerator {
override func icon(forSize size: UInt) -> UIImage {
let image = textToImage(drawText: String(size) as NSString,
inImage: UIImage(named: "clusterMarker")!,
font: UIFont(name: "Futura-Medium", size: 12.0) ?? UIFont.systemFont(ofSize: 12))
return image
}
private func textToImage(drawText text: NSString, inImage image: UIImage, font: UIFont) -> UIImage {
UIGraphicsBeginImageContext(image.size)
image.draw(in: CGRect(x: 0, y: 0, width: image.size.width, height: image.size.height))
let textStyle = NSMutableParagraphStyle()
textStyle.alignment = NSTextAlignment.center
let textColor = UIColor.black
let attributes=[
NSAttributedString.Key.font: font,
NSAttributedString.Key.paragraphStyle: textStyle,
NSAttributedString.Key.foregroundColor: textColor]
// vertically center (depending on font)
let textH = font.lineHeight
let textY = (image.size.height-textH)/2
let textRect = CGRect(x: 0, y: textY, width: image.size.width, height: textH)
text.draw(in: textRect.integral, withAttributes: attributes)
let result = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
return result!
}
}
The above is the code I did so far but not worth please can you find me the way out how can I achieve the solution of rendering an icon on cluster Item marker on tap action.
最佳答案
如果您有兴趣使用存储桶索引更改图标
我想要更改图像,您可以使用下面的代码。您可以使用 buckets 索引并分别显示集群标记的图标。
let iconGenerator = GMUDefaultClusterIconGenerator(buckets: [5, 10, 15], backgroundImages: [#imageLiteral(resourceName: "clusterSelectedMarker"), #imageLiteral(resourceName: "clusterSelectedMarker"), #imageLiteral(resourceName: "clusterSelectedMarker")])
let algorithm = GMUNonHierarchicalDistanceBasedAlgorithm()
clusterIconGenerator: iconGenerator)
var renderer = CustomClusterRenderer(mapView: propertyMapView, clusterIconGenerator: iconGenerator)
clusterManager = GMUClusterManager(map: propertyMapView, algorithm: algorithm,
renderer: renderer)
关于ios - 你如何改变谷歌地图的集群图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65370121/
IO 设备如何知道属于它的内存中的值在memory mapped IO 中发生了变化? ? 例如,假设内存地址 0 专用于保存 VGA 设备的背景颜色。当我们更改 memory[0] 中的值时,VGA
我目前正在开发一个使用Facebook sdk登录(通过FBLoginView)的iOS应用。 一切正常,除了那些拥有较旧版本的facebook的人。 当他们按下“使用Facebook登录”按钮时,他
假设我有: this - is an - example - with some - dashesNSRange将使用`rangeOfString:@“-”拾取“-”的第一个实例,但是如果我只想要最后
Card.io SDK提供以下详细信息: 卡号,有效期,月份,年份,CVV和邮政编码。 如何从此SDK获取国家名称。 - (void)userDidProvideCreditCardInfo:(Car
iOS 应用程序如何从网络服务下载图片并在安装过程中将它们安装到用户的 iOS 设备上?可能吗? 最佳答案 您无法控制应用在用户设备上的安装,因此无法在安装过程中下载其他数据。 只需在安装后首次启动应
我曾经开发过一款企业版 iOS 产品,我们公司曾将其出售给大型企业,供他们的员工使用。 该应用程序通过 AppStore 提供,企业用户获得了公司特定的配置文件(包含应用程序配置文件)以启用他们有权使
我正在尝试将 Card.io SDK 集成到我的 iOS 应用程序中。我想为 CardIO ui 做一个简单的本地化,如更改取消按钮标题或“在此保留信用卡”提示文本。 我在 github 上找到了这个
我正在使用 CardIOView 和 CardIOViewDelegate 类,没有可以设置为 YES 的 BOOL 来扫描 collectCardholderName。我可以看到它在 CardIOP
我有一个集成了通话工具包的 voip 应用程序。每次我从我的 voip 应用程序调用时,都会在 native 电话应用程序中创建一个新的最近通话记录。我在 voip 应用程序中也有自定义联系人(电话应
iOS 应用程序如何知道应用程序打开时屏幕上是否已经有键盘?应用程序运行后,它可以接收键盘显示/隐藏通知。但是,如果应用程序在分屏模式下作为辅助应用程序打开,而主应用程序已经显示键盘,则辅助应用程序不
我在模拟器中收到以下错误: ImageIO: CGImageReadSessionGetCachedImageBlockData *** CGImageReadSessionGetCachedIm
如 Apple 文档所示,可以通过 EAAccessory Framework 与经过认证的配件(由 Apple 认证)进行通信。但是我有点困惑,因为一些帖子告诉我它也可以通过 CoreBluetoo
尽管现在的调试器已经很不错了,但有时找出应用程序中正在发生的事情的最好方法仍然是古老的 NSLog。当您连接到计算机时,这样做很容易; Xcode 会帮助弹出日志查看器面板,然后就可以了。当您不在办公
在我的 iOS 应用程序中,我定义了一些兴趣点。其中一些有一个 Kontakt.io 信标的名称,它绑定(bind)到一个特定的 PoI(我的意思是通常贴在信标标签上的名称)。现在我想在附近发现信标,
我正在为警报提示创建一个 trigger.io 插件。尝试从警报提示返回数据。这是我的代码: // Prompt + (void)show_prompt:(ForgeTask*)task{
您好,我是 Apple iOS 的新手。我阅读并搜索了很多关于推送通知的文章,但我没有发现任何关于 APNS 从 io4 到 ios 6 的新更新的信息。任何人都可以向我提供 APNS 如何在 ios
UITabBar 的高度似乎在 iOS 7 和 8/9/10/11 之间发生了变化。我发布这个问题是为了让其他人轻松找到答案。 那么:在 iPhone 和 iPad 上的 iOS 8/9/10/11
我想我可以针对不同的 iOS 版本使用不同的 Storyboard。 由于 UI 的差异,我将创建下一个 Storyboard: Main_iPhone.storyboard Main_iPad.st
我正在写一些东西,我将使用设备的 iTunes 库中的一部分音轨来覆盖 2 个视频的组合,例如: AVMutableComposition* mixComposition = [[AVMutableC
我创建了一个简单的 iOS 程序,可以顺利编译并在 iPad 模拟器上运行良好。当我告诉 XCode 4 使用我连接的 iPad 设备时,无法编译相同的程序。问题似乎是当我尝试使用附加的 iPad 时
我是一名优秀的程序员,十分优秀!