Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
coord-picker
Advanced tools
Dependencies: vue element-ui
// 全局引入
import 'coord-picker/dist/style.css'
import CoordPicker from 'coord-picker'
Vue.use(CoordPicker, {
// 全局配置
})
<!-- 局部引入 -->
<template>
<CoordPicker v-bind="config"/>
</template>
<script>
import 'coord-picker/dist/style.css'
import CoordPicker from 'coord-picker'
export default {
components: { CoordPicker },
data () {
return {
config: {
// 局部配置
}
}
}
}
</script>
Attribute | Description | Type | Accepted Values | Default |
---|---|---|---|---|
show.sync | 开关 | boolean | false | |
apiKey | 高德地图 js api key | string | ||
city | 初始行政区 | string | ||
mapOptions.sync | 地图初始化参数对象 | object | ||
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
)
:::
v-model
/ value
/ *.sync
)仅支持局部配置权重:
“根据传参情况智能初始化至合适的位置”
,具体参数权重排序如下:
中心点
点位(单个)
详细地址
覆盖物、点位(多个)
参数指定的行政区
IP所在行政区(调用高德 CitySearch
接口)
1、2、3以
setCenter
方式定位,4以setFitView
方式定位,5、6以setCity
方式定位
markerCount > 0
时,开启编辑点位功能
markerCount === 0
时,也会依据marker参数渲染点位(只读)
[
// 点位1
{
lng: '',
lat: '',
address: '',
name: ''
},
// 点位2
{
lng: '',
lat: '',
address: '',
name: ''
}
]
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 21 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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.