Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
A
amap_flutter_location
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
amap_flutter_location
Commits
759ca3bf
提交
759ca3bf
authored
1月 08, 2025
作者:
史晓晨
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat:调试web获取定位信息
上级
de761f65
隐藏空白字符变更
内嵌
并排
正在显示
10 个修改的文件
包含
211 行增加
和
13 行删除
+211
-13
.gitignore
example/.gitignore
+0
-1
main.dart
example/lib/main.dart
+39
-7
index.html
example/web/index.html
+1
-0
amap_flutter_location.dart
lib/amap_flutter_location.dart
+2
-2
amap_location_plugin_method_channel.dart
lib/amap_location_plugin_method_channel.dart
+1
-1
amap_location_plugin_platform_interface.dart
lib/amap_location_plugin_platform_interface.dart
+1
-1
amap_location_plugin_web.dart
lib/amap_location_plugin_web.dart
+77
-1
amap.dart
lib/web/amap.dart
+66
-0
loader.dart
lib/web/loader.dart
+21
-0
pubspec.yaml
pubspec.yaml
+3
-0
没有找到文件。
example/.gitignore
浏览文件 @
759ca3bf
...
...
@@ -32,7 +32,6 @@
/build/
# Web related
lib/generated_plugin_registrant.dart
# Symbolication related
app.*.symbols
...
...
example/lib/main.dart
浏览文件 @
759ca3bf
import
'dart:async'
;
import
'dart:io'
;
import
'dart:html'
;
import
'dart:ui'
as
ui
;
import
'package:flutter/material.dart'
;
import
'package:amap_flutter_location/amap_flutter_location.dart'
;
import
'package:amap_flutter_location/amap_location_option.dart'
;
import
'package:flutter/scheduler.dart'
;
import
'package:permission_handler/permission_handler.dart'
;
void
main
(
)
{
...
...
@@ -21,9 +23,12 @@ class _MyAppState extends State<MyApp> {
AMapFlutterLocation
_locationPlugin
=
new
AMapFlutterLocation
();
String
?
_divId
;
@override
void
initState
()
{
super
.
initState
();
/// 设置是否已经包含高德隐私政策并弹窗展示显示用户查看,如果未包含或者没有弹窗展示,高德定位SDK将不会工作
///
/// 高德SDK合规使用方案请参考官网地址:https://lbs.amap.com/news/sdkhgsy
...
...
@@ -48,12 +53,33 @@ class _MyAppState extends State<MyApp> {
/// 动态申请定位权限
requestPermission
();
/// 这里使用时间作为唯一标识
_divId
=
DateTime
.
now
().
toIso8601String
();
DivElement
_element
;
/// 先创建div并注册
// ignore: undefined_prefixed_name
ui
.
platformViewRegistry
.
registerViewFactory
(
_divId
??
""
,
(
int
viewId
)
{
/// 地图需要的Div
_element
=
DivElement
()
..
style
.
width
=
'100%'
..
style
.
height
=
'100%'
..
style
.
margin
=
'0'
;
return
_element
;
});
///设置Android和iOS的apiKey<br>
///key的申请请参考高德开放平台官网说明<br>
///Android: https://lbs.amap.com/api/android-location-sdk/guide/create-project/get-key
///iOS: https://lbs.amap.com/api/ios-location-sdk/guide/create-project/get-key
/// ios key使用的是承运司机iOS
AMapFlutterLocation
.
setApiKey
(
"1dbf56e2e8a4d0e4cdc2df9efd36bc71"
,
"125a8a531a3a740654c9e75bbefa7beb"
);
SchedulerBinding
.
instance
.
addPostFrameCallback
((
_
)
{
AMapFlutterLocation
.
setApiKey
(
"1dbf56e2e8a4d0e4cdc2df9efd36bc71"
,
"125a8a531a3a740654c9e75bbefa7beb"
,
"83f7b7835d1d9d6ab93444950c84c003"
);
});
///iOS 获取native精度类型
// if (Platform.isIOS) {
...
...
@@ -61,7 +87,9 @@ class _MyAppState extends State<MyApp> {
// }
///注册定位结果监听
_locationListener
=
_locationPlugin
.
onLocationChanged
().
listen
((
Map
<
String
,
Object
>
result
)
{
_locationListener
=
_locationPlugin
.
onLocationChanged
()
.
listen
((
Map
<
String
,
Object
>
result
)
{
setState
(()
{
_locationResult
=
result
;
});
...
...
@@ -94,7 +122,8 @@ class _MyAppState extends State<MyApp> {
///逆地理信息的语言类型
locationOption
.
geoLanguage
=
GeoLanguage
.
DEFAULT
;
locationOption
.
desiredLocationAccuracyAuthorizationMode
=
AMapLocationAccuracyAuthorizationMode
.
ReduceAccuracy
;
locationOption
.
desiredLocationAccuracyAuthorizationMode
=
AMapLocationAccuracyAuthorizationMode
.
ReduceAccuracy
;
locationOption
.
fullAccuracyPurposeKey
=
"AMapLocationScene"
;
...
...
@@ -211,10 +240,13 @@ class _MyAppState extends State<MyApp> {
///获取iOS native的accuracyAuthorization类型
void
requestAccuracyAuthorization
()
async
{
AMapAccuracyAuthorization
currentAccuracyAuthorization
=
await
_locationPlugin
.
getSystemAccuracyAuthorization
();
if
(
currentAccuracyAuthorization
==
AMapAccuracyAuthorization
.
AMapAccuracyAuthorizationFullAccuracy
)
{
AMapAccuracyAuthorization
currentAccuracyAuthorization
=
await
_locationPlugin
.
getSystemAccuracyAuthorization
();
if
(
currentAccuracyAuthorization
==
AMapAccuracyAuthorization
.
AMapAccuracyAuthorizationFullAccuracy
)
{
print
(
"精确定位类型"
);
}
else
if
(
currentAccuracyAuthorization
==
AMapAccuracyAuthorization
.
AMapAccuracyAuthorizationReducedAccuracy
)
{
}
else
if
(
currentAccuracyAuthorization
==
AMapAccuracyAuthorization
.
AMapAccuracyAuthorizationReducedAccuracy
)
{
print
(
"模糊定位类型"
);
}
else
{
print
(
"未知定位类型"
);
...
...
example/web/index.html
浏览文件 @
759ca3bf
...
...
@@ -38,6 +38,7 @@
</script>
<!-- This script adds the flutter initialization JS code -->
<script
src=
"flutter.js"
defer
></script>
<script
src=
"https://webapi.amap.com/loader.js"
></script>
</head>
<body>
<script>
...
...
lib/amap_flutter_location.dart
浏览文件 @
759ca3bf
...
...
@@ -42,8 +42,8 @@ class AMapFlutterLocation {
/// iOS端: https://lbs.amap.com/api/ios-location-sdk/guide/create-project/get-key<br>
/// [androidKey] Android平台的key<br>
/// [iosKey] ios平台的key<br>
static
void
setApiKey
(
String
androidKey
,
String
iosKey
)
{
AmapLocationPluginPlatform
.
instance
.
setApiKey
(
androidKey
,
iosKey
);
static
void
setApiKey
(
String
androidKey
,
String
iosKey
,
String
webKey
)
{
AmapLocationPluginPlatform
.
instance
.
setApiKey
(
androidKey
,
iosKey
,
webKey
);
}
/// 设置定位参数
...
...
lib/amap_location_plugin_method_channel.dart
浏览文件 @
759ca3bf
...
...
@@ -72,7 +72,7 @@ class AmapLocationPluginMethodChannel extends AmapLocationPluginPlatform {
///iOS端: https://lbs.amap.com/api/ios-location-sdk/guide/create-project/get-key<br>
///[androidKey] Android平台的key<br>
///[iosKey] ios平台的key<br>
void
setApiKey
(
String
androidKey
,
String
iosKey
)
{
void
setApiKey
(
String
androidKey
,
String
iosKey
,
String
webKey
)
{
_methodChannel
.
invokeMethod
(
'setApiKey'
,
{
'android'
:
androidKey
,
'ios'
:
iosKey
});
}
...
...
lib/amap_location_plugin_platform_interface.dart
浏览文件 @
759ca3bf
...
...
@@ -52,7 +52,7 @@ abstract class AmapLocationPluginPlatform extends PlatformInterface {
///iOS端: https://lbs.amap.com/api/ios-location-sdk/guide/create-project/get-key<br>
///[androidKey] Android平台的key<br>
///[iosKey] ios平台的key<br>
void
setApiKey
(
String
androidKey
,
String
iosKey
)
{
void
setApiKey
(
String
androidKey
,
String
iosKey
,
String
webKey
)
{
throw
UnimplementedError
(
'setApiKey() has not been implemented.'
);
}
...
...
lib/amap_location_plugin_web.dart
浏览文件 @
759ca3bf
...
...
@@ -2,17 +2,93 @@
// of your plugin as a separate package, instead of inlining it in the same
// package as the core of your plugin.
// ignore: avoid_web_libraries_in_flutter
import
'dart:html'
as
html
show
window
;
import
'dart:convert'
;
import
'dart:ui'
;
import
'package:amap_flutter_location/amap_location_plugin_platform_interface.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter_web_plugins/flutter_web_plugins.dart'
;
import
'package:fluttertoast/fluttertoast.dart'
;
import
'package:js/js_util.dart'
;
import
'amap_location_option.dart'
;
import
'web/amap.dart'
;
import
'web/loader.dart'
;
/// A web implementation of the TestWebPluginPlatform of the TestWebPlugin plugin.
class
AmapLocationPluginWeb
extends
AmapLocationPluginPlatform
{
/// Constructs a AmapLocationPluginWeb
AmapLocationPluginWeb
();
late
AMap
_aMap
;
static
void
registerWith
(
Registrar
registrar
)
{
AmapLocationPluginPlatform
.
instance
=
AmapLocationPluginWeb
();
}
@override
void
initKey
()
{}
@override
void
updatePrivacyShow
(
bool
hasContains
,
bool
hasShow
)
{}
@override
void
updatePrivacyAgree
(
bool
hasAgree
)
{}
@override
void
setApiKey
(
String
androidKey
,
String
iosKey
,
String
webKey
)
{
var
promise
=
load
(
LoaderOptions
(
key:
webKey
,
version:
'1.4.15'
,
plugins:
[
'AMap.Geolocation'
],
));
promiseToFuture
(
promise
).
then
((
value
)
{
print
(
'初始化成功'
);
MapOptions
_mapOptions
=
MapOptions
(
zoom:
10
,
);
_aMap
=
AMap
(
'container'
,
_mapOptions
);
},
onError:
(
e
)
{
print
(
'初始化错误:
$e
'
);
});
}
@override
Stream
<
Map
<
String
,
Object
>>
onLocationChanged
()
{
return
Stream
.
value
({});
}
@override
void
setLocationOption
(
AMapLocationOption
locationOption
)
{
}
@override
void
startLocation
()
{
_aMap
.
plugin
([
'AMap.Geolocation'
],
allowInterop
(()
{
GeolocationOptions
_geolocationOptions
=
GeolocationOptions
(
enableHighAccuracy:
false
,
timeout:
10000
,
offset:
[
10
,
20
],
zoomToAccuracy:
true
,
position:
"RB"
,
);
var
geolocation
=
Geolocation
(
_geolocationOptions
);
geolocation
.
getCurrentPosition
(
allowInterop
((
status
,
result
)
{
Fluttertoast
.
showToast
(
msg:
"
${status}
${result.message}
"
,
toastLength:
Toast
.
LENGTH_LONG
,
gravity:
ToastGravity
.
CENTER
,
// timeInSecForIos: 1,
backgroundColor:
const
Color
(
0xB3000000
),
textColor:
Colors
.
white
,
fontSize:
17.0
);
print
(
"=====11111
${status}
${result.message}
"
);
}));
}));
}
}
lib/web/amap.dart
0 → 100644
浏览文件 @
759ca3bf
@JS
(
'AMap'
)
library
amap
;
import
'package:js/js.dart'
;
import
'dart:html'
as
html
show
window
;
// 这里`new Map(id)` 调用js的`new AMap.Map(id)`
@JS
(
'Map'
)
class
AMap
{
external
AMap
(
dynamic
/*String|HTMLDivElement*/
div
,
MapOptions
opts
);
/// 加载插件
external
plugin
(
dynamic
/*String|List*/
name
,
void
Function
()
callback
);
}
@JS
()
@anonymous
class
MapOptions
{
external
LngLat
get
center
;
external
set
center
(
LngLat
v
);
external
factory
MapOptions
({
LngLat
center
,
num
zoom
,
String
/*‘2D’|‘3D’*/
viewMode
,
});
}
@JS
()
class
LngLat
{
external
num
getLng
();
external
num
getLat
();
external
LngLat
(
num
lng
,
num
lat
);
}
/// 定位
@JS
()
class
Geolocation
{
external
Geolocation
(
GeolocationOptions
opts
);
external
getCurrentPosition
(
void
Function
(
String
status
,
GeolocationResult
result
)
callback
);
}
@JS
()
@anonymous
class
GeolocationOptions
{
external
factory
GeolocationOptions
({
bool
enableHighAccuracy
,
num
timeout
,
List
<
int
>
offset
,
bool
zoomToAccuracy
,
String
position
,
});
}
@JS
()
@anonymous
class
GeolocationResult
{
external
LngLat
get
position
;
external
String
get
message
;
}
lib/web/loader.dart
0 → 100644
浏览文件 @
759ca3bf
@JS
(
'AMapLoader'
)
library
loader
;
import
'package:js/js.dart'
;
/// 高德地图 Loader js
external
load
(
LoaderOptions
options
);
@JS
()
@anonymous
class
LoaderOptions
{
external
factory
LoaderOptions
({
///您申请的key值
String
key
,
/// JSAPI 版本号
String
version
,
//同步加载的插件列表
List
<
String
>
plugins
,
});
}
pubspec.yaml
浏览文件 @
759ca3bf
...
...
@@ -13,6 +13,9 @@ dependencies:
flutter_web_plugins
:
sdk
:
flutter
plugin_platform_interface
:
^2.0.2
js
:
^0.7.1
# toast https://pub.dev/packages/fluttertoast
fluttertoast
:
^8.2.1
dev_dependencies
:
flutter_test
:
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论