Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
ShenghuoquanBusiness
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bp
ShenghuoquanBusiness
Commits
02a0e876
Commit
02a0e876
authored
Jun 28, 2021
by
宋永孟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add 添加初始定位
parent
65f2b6b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
7 deletions
+22
-7
SelectAddressActivity.kt
...dian/shenghuoquan/newscontent/ui/SelectAddressActivity.kt
+22
-7
No files found.
Components/newscontent/src/main/java/com/yidian/shenghuoquan/newscontent/ui/SelectAddressActivity.kt
View file @
02a0e876
...
...
@@ -5,6 +5,9 @@ import android.os.Bundle
import
android.util.Log
import
android.view.View
import
android.widget.Toast
import
com.amap.api.location.AMapLocation
import
com.amap.api.location.AMapLocationClient
import
com.amap.api.location.AMapLocationListener
import
com.amap.api.maps.AMap
import
com.amap.api.maps.AMap.OnMyLocationChangeListener
import
com.amap.api.maps.MapView
...
...
@@ -28,7 +31,7 @@ import kotlinx.android.synthetic.main.activity_select_address.*
* Date: 2021/6/24 2:10 PM
* Describe:
*/
class
SelectAddressActivity
:
BaseActivity
<
ActivitySelectAddressBinding
>(),
OnMyLocationChangeListener
,
AMap
.
OnMapClickListener
,
OnPoiSearchListener
{
class
SelectAddressActivity
:
BaseActivity
<
ActivitySelectAddressBinding
>(),
OnMyLocationChangeListener
,
AMap
.
OnMapClickListener
,
OnPoiSearchListener
,
AMapLocationListener
{
private
lateinit
var
mapView
:
MapView
private
var
adapter
=
PoiListAdapter
()
private
var
myLocationStyle
:
MyLocationStyle
?
=
null
...
...
@@ -36,6 +39,7 @@ class SelectAddressActivity : BaseActivity<ActivitySelectAddressBinding>(), OnMy
private
var
markerView
:
View
?
=
null
private
var
currentMarker
:
Marker
?
=
null
private
var
boundsBuilder
:
LatLngBounds
.
Builder
?
=
null
private
var
mlocationClient
=
AMapLocationClient
(
this
)
var
aMap
:
AMap
?
=
null
...
...
@@ -52,8 +56,9 @@ class SelectAddressActivity : BaseActivity<ActivitySelectAddressBinding>(), OnMy
mapView
=
viewBind
.
map
viewBind
.
poiList
.
adapter
=
adapter
mapView
.
onCreate
(
savedInstanceState
)
bitmapDescriptor
=
BitmapDescriptorFactory
.
fromView
(
markerView
)
markerView
=
layoutInflater
.
inflate
(
R
.
layout
.
layout_service_addr_map_marker
,
null
)
bitmapDescriptor
=
BitmapDescriptorFactory
.
fromView
(
markerView
)
boundsBuilder
=
LatLngBounds
.
Builder
()
if
(
aMap
==
null
)
{
...
...
@@ -63,10 +68,7 @@ class SelectAddressActivity : BaseActivity<ActivitySelectAddressBinding>(), OnMy
//设置SDK 自带定位消息监听
aMap
!!
.
setOnMyLocationChangeListener
(
this
)
aMap
!!
.
myLocationStyle
=
myLocationStyle
!!
.
myLocationType
(
MyLocationStyle
.
LOCATION_TYPE_LOCATE
)
viewBind
.
selectAddBackBtn
.
setOnClickListener
{
finish
()
}
...
...
@@ -102,9 +104,13 @@ class SelectAddressActivity : BaseActivity<ActivitySelectAddressBinding>(), OnMy
// 如果要设置定位的默认状态,可以在此处进行设置
myLocationStyle
=
MyLocationStyle
()
aMap
!!
.
myLocationStyle
=
myLocationStyle
aMap
!!
.
uiSettings
.
isMyLocationButtonEnabled
=
false
// 设置默认定位按钮是否显示
aMap
!!
.
isMyLocationEnabled
=
true
// 设置为true表示显示定位层并可触发定位,false表示隐藏定位层并不可触发定位,默认是false
aMap
!!
.
setOnMapClickListener
(
this
)
// 设置点击marker事件监听器
//设置定位监听
mlocationClient
.
setLocationListener
(
this
)
mlocationClient
.
startLocation
()
}
//定位
...
...
@@ -119,6 +125,11 @@ class SelectAddressActivity : BaseActivity<ActivitySelectAddressBinding>(), OnMy
// 定位类型,可能为GPS WIFI等,具体可以参考官网的定位SDK介绍
val
locationType
=
bundle
.
getInt
(
MyLocationStyle
.
LOCATION_TYPE
)
aMap
!!
.
isMyLocationEnabled
=
false
// 设置为true表示显示定位层并可触发定位,false表示隐藏定位层并不可触发定位,默认是false
updataCurrentMarker
(
LatLng
(
location
.
latitude
,
location
.
longitude
))
/*
errorCode
errorInfo
...
...
@@ -166,7 +177,6 @@ class SelectAddressActivity : BaseActivity<ActivitySelectAddressBinding>(), OnMy
//cityCode表示POI搜索区域,(这里可以传空字符串,空字符串代表全国在全国范围内进行搜索)
val
query
:
PoiSearch
.
Query
=
PoiSearch
.
Query
(
""
,
typeRange
,
""
)
query
.
pageSize
=
10
// 设置每页最多返回多少条poiitem
query
.
pageNum
=
1
//设置查第一页
val
poiSearch
=
PoiSearch
(
this
,
query
)
poiSearch
.
bound
=
PoiSearch
.
SearchBound
(
LatLonPoint
(
latLng
.
latitude
,
...
...
@@ -196,4 +206,9 @@ class SelectAddressActivity : BaseActivity<ActivitySelectAddressBinding>(), OnMy
override
fun
onPoiItemSearched
(
p0
:
PoiItem
?,
p1
:
Int
)
{
}
override
fun
onLocationChanged
(
p0
:
AMapLocation
?)
{
Log
.
d
(
"song_test"
,
"有数据过来"
)
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment