Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
A
amap_flutter_location
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
amap_flutter_location
Commits
1c0daea1
提交
1c0daea1
authored
1月 07, 2023
作者:
张国庆
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改 计算点距离方法
上级
6431f053
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
9 行增加
和
6 行删除
+9
-6
build.gradle
android/build.gradle
+0
-1
AMapFlutterLocationPlugin.java
.../com/amap/flutter/location/AMapFlutterLocationPlugin.java
+0
-3
amap_flutter_location.dart
lib/amap_flutter_location.dart
+9
-2
没有找到文件。
android/build.gradle
浏览文件 @
1c0daea1
...
...
@@ -32,6 +32,5 @@ android {
}
dependencies
{
compileOnly
'com.amap.api:location:5.6.0'
api
"com.blankj:utilcodex:1.31.1"
}
}
android/src/main/java/com/amap/flutter/location/AMapFlutterLocationPlugin.java
浏览文件 @
1c0daea1
...
...
@@ -2,10 +2,8 @@ package com.amap.flutter.location;
import
android.content.Context
;
import
android.text.TextUtils
;
import
android.util.Log
;
import
com.amap.api.location.AMapLocationClient
;
import
com.blankj.utilcode.util.LogUtils
;
import
java.lang.reflect.Method
;
import
java.util.Map
;
...
...
@@ -106,7 +104,6 @@ public class AMapFlutterLocationPlugin implements FlutterPlugin, MethodCallHandl
double
lat2
=
(
double
)
argsMap
.
get
(
"lat2"
);
double
lng2
=
(
double
)
argsMap
.
get
(
"lng2"
);
double
distance
=
AMapLocationClientImpl
.
calculateDistance
(
lat1
,
lng1
,
lat2
,
lng2
);
LogUtils
.
d
(
"calculateDistance"
,
"lat1:"
+
lat1
+
" lng1:"
+
lng1
+
" lat2:"
+
lat2
+
" lng2:"
+
lng2
+
" distance:"
+
distance
);
result
.
success
(
distance
);
}
...
...
lib/amap_flutter_location.dart
浏览文件 @
1c0daea1
...
...
@@ -56,8 +56,8 @@ class AMapFlutterLocation {
}
///计算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
,
'lon
2'
:
lon2
});
return
result
;
var
result
=
await
_methodChannel
.
invokeMethod
<
double
>(
'calculateDistance'
,
{
'lat1'
:
lat1
,
'lng1'
:
lon1
,
'lat2'
:
lat2
,
'lng
2'
:
lon2
});
return
result
!
;
}
///设置Android和iOS的apikey,建议在weigdet初始化时设置<br>
...
...
@@ -142,7 +142,14 @@ class AMapFlutterLocation {
Map
<
String
,
Object
>
newEvent
=
Map
<
String
,
Object
>.
of
(
event
);
newEvent
.
remove
(
'pluginKey'
);
_receiveStream
?.
add
(
newEvent
);
print
(
'onLocationChanged:
$newEvent
'
);
}
},
onError:
(
Object
error
)
{
print
(
'onLocationChanged error:
$error
'
);
_receiveStream
?.
addError
(
error
);
},
onDone:
()
{
print
(
'onLocationChanged done'
);
_receiveStream
?.
close
();
});
}
return
_receiveStream
!.
stream
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论