22 lines
641 B
JavaScript
22 lines
641 B
JavaScript
|
|
/**
|
|||
|
|
* @description 定位API的配置
|
|||
|
|
* @type {{URL: string, token: string}}
|
|||
|
|
*/
|
|||
|
|
export const MapApiConfig = {
|
|||
|
|
/**
|
|||
|
|
* @description API接口地址
|
|||
|
|
*/
|
|||
|
|
URL: 'https://tiles.geovisearth.com/geo/v1/geocode/regeo',
|
|||
|
|
/**
|
|||
|
|
* @description 接口鉴权Token
|
|||
|
|
*/
|
|||
|
|
token: '66c87c897f0251295afdc794e4fbf73046a070338a726fe04f06cece6cb1ffdf',
|
|||
|
|
/**
|
|||
|
|
* @description 打卡类型:西安办事处
|
|||
|
|
*/
|
|||
|
|
XI_AN_BAN: {latitude: 34.1360, longitude: 108.9126, typeName: '西安办事处位置打卡'},
|
|||
|
|
/**
|
|||
|
|
* @description 打卡类型:第三方维护
|
|||
|
|
*/
|
|||
|
|
OTHER: {typeName: '第三方维护打卡'}
|
|||
|
|
}
|