ty.map.openGeofenceMap
打开地理围栏地图页面,获取地理围栏信息(新建或者编辑地理围栏)
权限: [scope.location]
需引入
MapKit,且在>=3.0.1版本才可使用
参数
Object object
| 属性 | 类型 | 默认值 | 必填 | 说明 |
|---|---|---|---|---|
| geoTitle | string |
否 | 地理围栏名称 | |
| longitude | number |
否 | 经度 | |
| latitude | number |
否 | 纬度 | |
| radius | number |
否 | 半径 | |
| geofenceId | string |
否 | id | |
| type | number |
否 | 半径 0:进度地理围栏 1:离开地理围栏 | |
| complete | function |
否 | 接口调用结束的回调函数(调用成功、失败都会执行) | |
| success | function |
否 | 接口调用成功的回调函数 | |
| fail | function |
否 | 接口调用失败的回调函数 |
函数定义示例
/**
* 打开地理围栏地图页面,获取地理围栏信息(新建或者编辑地理围栏)
*权限: [scope.location]
*/
export function openGeofenceMap(params?: {
/** 地理围栏名称 */
geoTitle?: string;
/** 经度 */
longitude?: number;
/** 纬度 */
latitude?: number;
/** 半径 */
radius?: number;
/** id */
geofenceId?: string;
/**
* 半径
* 0:进度地理围栏
* 1:离开地理围栏
*/
type?: number;
/** 接口调用结束的回调函数(调用成功、失败都会执行) */
complete?: () => void;
/** 接口调用成功的回调函数 */
success?: (params: null) => void;
/** 接口调用失败的回调函数 */
fail?: (params: {
errorMsg: string;
errorCode: string | number;
innerError: {
errorCode: string | number;
errorMsg: string;
};
}) => void;
}): void;
👉 立即开发。
ty.map.openMapAppLocation
使用三方地图查看位置
需引入
MapKit,且在>=2.1.1版本才可使用
参数
Object object
| 属性 | 类型 | 默认值 | 必填 |
|---|
小程序位置 API 集合介绍

文章介绍了Ty.Map库中的四个相关函数:openGeofenceMap用于查看和管理地理围栏,openMapAppLocation显示地图上的位置,registerGeofence和unregisterGeofence用于注册和取消地理围栏,transformLocation则用于转换经纬度获取地址。这些功能均需要在特定版本的MapKit支持下使用,并且涉及权限管理和回调机制。
最低0.47元/天 解锁文章
2716

被折叠的 条评论
为什么被折叠?



