Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
coord-picker
Advanced tools
npm add coord-picker vue@2 @amap/amap-jsapi-loader element-ui
// 全局引入
import 'coord-picker/dist/style.css'
import CoordPicker from 'coord-picker'
Vue.use(CoordPicker, {
// 全局配置
})
<!-- 局部引入 -->
<template>
<CoordPicker v-bind="{/* 局部配置 */}"/>
</template>
<script>
import 'coord-picker/dist/style.css'
import CoordPicker from 'coord-picker'
export default {
components: { CoordPicker },
}
</script>
Attribute | Description | Type | Accepted Values | Default |
---|---|---|---|---|
show.sync | 开关 | boolean | false | |
loadOptions | AMapLoader.load的参数 ,其中 loadOptions.key 必传 | object | ||
mapOptions[.sync] | AMap.Map的参数2 | object | ||
city | 初始行政区 | string | ||
precision | 坐标精度(保留几位小数) | number | 6 | |
addressComponent* | 地址成分 | object, function |
Attribute | Description | Type | Accepted Values | Default |
---|---|---|---|---|
lng.sync | 经度 | number, string | ||
lat.sync | 纬度 | number, string | ||
address.sync | 地址 | string |
Attribute | Description | Type | Accepted Values | Default |
---|---|---|---|---|
marker.sync | 点位列表 | object[] | ||
markerCount | 点位数量限制 | number, number[] | 1 |
Attribute | Description | Type | Accepted Values | Default |
---|---|---|---|---|
rectangle.sync | 矩形 | object[] | ||
rectangleCount | 矩形数量限制 | number, number[] | 0 | |
rectangleImage | 嵌在矩形内的贴图url | string, string[] |
Attribute | Description | Type | Accepted Values | Default |
---|---|---|---|---|
polygon.sync | 多边形列表 | object[] | ||
polygonCount | 多边形数量限制 | number, number[] | 0 |
::: warning 坐标值类型
number和string都能接收 但返回时 由于js的number类型存在精度丢失问题 故返回string
:::
高德Web服务API的同名参数
可选值:指定城市的中文(如北京)、指定城市的中文全拼(beijing)、citycode(010)、adcode(110000),不支持县级市。当指定城市查询内容为空时,会进行全国范围内的地址转换检索。
adcode信息可参考城市编码表获取
::: tip 长度超过6位数?
组件内部做了处理,如果你传入的city超过6位数,也会以仅保留前6位的形式支持。
:::
数量上限
number[]
获取的address默认是包含省市区的完整地址,你可以用以下两种方式来自定义地址成分:
{
province: true, // address中是否包含省
city: true, // address中是否包含市
district: true // address中是否包含区县
}
自由组合
({ province, city, district ... }) => `${province} - ${city} - ${district}`
::: tip 为什么支持双向绑定?
mapOptions包含可能发生变化的属性,如缩放比例(zoom
)
:::
name | description | callback's arguments |
---|---|---|
load | 高德地图加载完成时,即AMapLoader.load().then | AMap(同高德) |
error | 调用高德API报错时,含AMapLoader.load().catch | 同高德 |
confirm | 点击确认按钮时 | |
cancel | 点击取消按钮时 | |
...el-dialog事件 |
v-model
/ value
/ *.sync
)仅支持局部配置权重:
“根据传参情况智能初始化至合适的位置”
,具体参数权重排序如下:
中心点
点位(单个)
详细地址
覆盖物、点位(多个)
参数指定的行政区
IP所在行政区(调用高德 CitySearch
接口)
1、2、3以
setCenter
方式定位,4以setFitView
方式定位,5、6以setCity
方式定位
使用
AMap.Marker
markerCount > 0
时,开启编辑点位功能
markerCount === 0
时,也会依据marker参数渲染点位(只读)
[
// 点位1
{
lng: '',
lat: '',
address: '',
name: ''
},
// 点位2
{
lng: '',
lat: '',
address: '',
name: ''
}
]
使用
AMap.Rectangle
和AMap.ImageLayer
rectangleCount > 0
时,开启编辑矩形功能
rectangleCount === 0
时,也会依据rectangle参数渲染矩形(只读)
[
// 矩形1
{
image: '贴图链接',
southwest: { lng: '经度', lat: '纬度' }, // 西南角坐标(兼容东南角)
northeast: { lng: '经度', lat: '纬度' }, // 东北角坐标(兼容西北角)
},
// 矩形2
{
image: '贴图链接',
southwest: { lng: '经度', lat: '纬度' }, // 西南角坐标(兼容东南角)
northeast: { lng: '经度', lat: '纬度' }, // 东北角坐标(兼容西北角)
},
]
polygonCount > 0
时,开启编辑多边形功能
polygonCount === 0
时,也会依据polygon参数渲染多边形(只读)
[
// 多边形1
{
path: [
{ 'lng': '106.44294', 'lat': '26.644338' },
{ 'lng': '106.431267', 'lat': '26.504937' },
{ 'lng': '106.569282', 'lat': '26.585405' }
]
},
// 多边形2
{
path: [
{ 'lng': '106.623527', 'lat': '26.52767' },
{ 'lng': '106.602241', 'lat': '26.415188' },
{ 'lng': '106.721031', 'lat': '26.472979' }
]
}
]
为什么不使用全称 longitude
和 latitude
?
lng
和 lat
高德、腾讯地图通用的 GCJ-02
1.4.15
(2.0存在诸多问题,性能也不如1.x,等待后续更新)
在打开coord-picker之前,请确保所有参数已传入,为避免与用户的操作发生冲突,组件内部不会监听参数后续的变化
FAQs
Coordinates picker for AMap & TMap.
The npm package coord-picker receives a total of 22 weekly downloads. As such, coord-picker popularity was classified as not popular.
We found that coord-picker demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.