提交 7d082eab 编写于 作者: DCloud-WZF's avatar DCloud-WZF 💬

feat(h5 map): 高德地图支持 polygons

上级 90c37f42
import { hexToRgba } from 'uni-shared'
import { MapType, getMapInfo } from '../../../helpers/location'
const mapInfo = getMapInfo()
const ISAMAP = mapInfo.type === MapType.AMAP
export default {
props: {
......@@ -65,7 +69,7 @@ export default {
const path = points.map(item => {
const { latitude, longitude } = item
return new _maps.LatLng(latitude, longitude)
return ISAMAP ? [longitude, latitude] : new _maps.LatLng(latitude, longitude)
})
const { r: fcR, g: fcG, b: fcB, a: fcA } = hexToRgba(fillColor)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册