1.0.13 • Published 4 years ago

tgg-amap v1.0.13

Weekly downloads
-
License
ISC
Repository
github
Last release
4 years ago

tgg-amap

近期地图的项目较多, 采用高德地图amap, 对其二次封装, 方便后期复用

key和安全密钥的使用

(自2021年12月02日升级,升级之后所申请的 key 必须配备安全密钥 jscode 一起使用)

<script type="text/javascript">
  window._AMapSecurityConfig = {
      securityJsCode:'您申请的安全密钥',
      serviceHost:'您的代理服务器域名或地址/_AMapService',  
      // 例如 :serviceHost:'http://1.1.1.1:80/_AMapService',
  }
</script>
<script type="text/javascript" src="https://webapi.amap.com/maps?v=1.4.15&key=您申请的key值"></script> 

Install

# with npm
npm install tgg-amap
# with yarn
yarn add tgg-amap

Props

props 配置 config 对象

API说明必填类型默认值
polygon行政区边界falsePolygon{ }
points点位falsePoints{ }
API说明类型默认值
show是否显示booleanfalse
value区名称string'钱塘区'
config = {
  polygon: {
    show: false,
    value: '钱塘区'
  }
}

Points

此字段配置地图中, 点位信息

API说明类型默认值
show是否显示booleanfalse
data点位数据集Array[][120.087722, 30.12957]
config = {
  polygon: {
    show: false,
    data: [[120.087722, 30.12957]]
  }
}

引用示例

<TggAMap config={{ 
    polygon: { show: true, value: '滨江区' } },
    points: { show: true, data: [[120.087722, 30.129573]] }
  }} 
/>

Image text

1.0.13

4 years ago

1.0.12

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago