作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这就是我定义多边形特征的方式:
let polygon = MGLPolygonFeature(coordinates: &coordinates, count: UInt(coordinates.count))
polygon.attributes = ["name": card.name, "identifier": card.identifier, "color": card.set.colorMode] //UIColor
let cardSource = MGLShapeSource(identifier: "cards", features: [polygon], options: [:])
let polygonLayer = MGLFillStyleLayer(identifier: "polygon-level", source: cardSource)
polygonLayer.fillColor = MGLStyleValue(rawValue: "{color}")
polygonLayer.fillOpacity = MGLStyleValue(rawValue: 0.4)
但这行不通。如何根据属性设置填充颜色?
最佳答案
如果您想根据属性字典中的颜色值设置多边形的颜色,可以使用an identity function。 .
polygonLayer.fillColor = MGLStyleValue(interpolationMode: .identity,
sourceStops: nil,
attributeName: "color",
options: nil)
feature selection示例显示了根据值设置填充样式图层样式的其他方法。
关于ios - 如何根据多边形要素的属性值设置填充颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50917178/
我从 mapbox 中获取了这个演示: https://docs.mapbox.com/mapbox-gl-js/example/hover-styles/ 我用自己的 GeoJson 文件替换了演示
链接:http://www1.qhoach.com/ 当您拖动时,这张 map 会被平移...但是如果您拖动 KML 要素(带圆圈的图标),则什么也不会发生 最佳答案 首先,在您的应用程序中有四个级别
我是一名优秀的程序员,十分优秀!