Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
A
amap_flutter_location
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
amap_flutter_location
Commits
4ef29091
提交
4ef29091
authored
1月 07, 2023
作者:
张国庆
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加计算2点距离
上级
284d2f06
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
21 行增加
和
1 行删除
+21
-1
AMapFlutterLocationPlugin.java
.../com/amap/flutter/location/AMapFlutterLocationPlugin.java
+0
-0
AMapLocationClientImpl.java
...ava/com/amap/flutter/location/AMapLocationClientImpl.java
+16
-1
amap_flutter_location.dart
lib/amap_flutter_location.dart
+5
-0
没有找到文件。
android/src/main/java/com/amap/flutter/location/AMapFlutterLocationPlugin.java
浏览文件 @
4ef29091
差异被折叠。
点击展开。
android/src/main/java/com/amap/flutter/location/AMapLocationClientImpl.java
浏览文件 @
4ef29091
...
@@ -7,6 +7,8 @@ import com.amap.api.location.AMapLocation;
...
@@ -7,6 +7,8 @@ import com.amap.api.location.AMapLocation;
import
com.amap.api.location.AMapLocationClient
;
import
com.amap.api.location.AMapLocationClient
;
import
com.amap.api.location.AMapLocationClientOption
;
import
com.amap.api.location.AMapLocationClientOption
;
import
com.amap.api.location.AMapLocationListener
;
import
com.amap.api.location.AMapLocationListener
;
import
com.amap.api.location.CoordinateConverter
;
import
com.amap.api.location.DPoint
;
import
java.util.Map
;
import
java.util.Map
;
...
@@ -58,6 +60,18 @@ public class AMapLocationClientImpl implements AMapLocationListener {
...
@@ -58,6 +60,18 @@ public class AMapLocationClientImpl implements AMapLocationListener {
}
}
public
static
float
calculateDistance
(
double
lat1
,
double
lon1
,
double
lat2
,
double
lon2
)
{
DPoint
dPoint1
=
new
DPoint
();
dPoint1
.
setLatitude
(
lat1
);
dPoint1
.
setLongitude
(
lon1
);
DPoint
dPoint2
=
new
DPoint
();
dPoint2
.
setLatitude
(
lat2
);
dPoint2
.
setLongitude
(
lon2
);
return
CoordinateConverter
.
calculateLineDistance
(
dPoint1
,
dPoint2
);
}
/**
/**
* 停止定位
* 停止定位
*/
*/
...
@@ -70,11 +84,12 @@ public class AMapLocationClientImpl implements AMapLocationListener {
...
@@ -70,11 +84,12 @@ public class AMapLocationClientImpl implements AMapLocationListener {
}
}
public
void
destroy
()
{
public
void
destroy
()
{
if
(
null
!=
locationClient
)
{
if
(
null
!=
locationClient
)
{
locationClient
.
onDestroy
();
locationClient
.
onDestroy
();
locationClient
=
null
;
locationClient
=
null
;
}
}
}
}
/**
/**
* 定位回调
* 定位回调
*
*
...
...
lib/amap_flutter_location.dart
浏览文件 @
4ef29091
...
@@ -54,6 +54,11 @@ class AMapFlutterLocation {
...
@@ -54,6 +54,11 @@ class AMapFlutterLocation {
_methodChannel
.
invokeMethod
(
'stopLocation'
,
{
'pluginKey'
:
_pluginKey
});
_methodChannel
.
invokeMethod
(
'stopLocation'
,
{
'pluginKey'
:
_pluginKey
});
return
;
return
;
}
}
///计算2点之间的距离
Future
<
double
>
calculateDistance
(
double
lat1
,
double
lon1
,
double
lat2
,
double
lon2
)
async
{
double
result
=
await
_methodChannel
.
invokeMethod
(
'calculateDistance'
,
{
'lat1'
:
lat1
,
'lon1'
:
lon1
,
'lat2'
:
lat2
,
'lon2'
:
lon2
});
return
result
;
}
///设置Android和iOS的apikey,建议在weigdet初始化时设置<br>
///设置Android和iOS的apikey,建议在weigdet初始化时设置<br>
///apiKey的申请请参考高德开放平台官网<br>
///apiKey的申请请参考高德开放平台官网<br>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论