最近一個(gè)項(xiàng)目中用到了高德地圖Android SDK辐真,做了一些略微復(fù)雜一點(diǎn)的效果和功能,現(xiàn)在將其抽離出來(lái)崖堤,整理為一篇關(guān)于高德地圖的實(shí)用技能侍咱。
前言
1、基礎(chǔ)jar包選擇
最基礎(chǔ)的地圖功能有兩個(gè)jar包可以實(shí)現(xiàn)密幔,一個(gè)是3d的楔脯,一個(gè)是2d。2d的只需要一個(gè)jar包胯甩,3d的還要引入so文件昧廷,apk體積會(huì)增大。以我的經(jīng)驗(yàn)偎箫,但凡復(fù)雜一點(diǎn)的功能木柬,還是優(yōu)先使用3d的,以下內(nèi)容均是基于3d包淹办。
2眉枕、jar包分類
- 定位:AMap_Location_V4.7.0_20190708.jar
- 搜索:AMap_Search_V6.5.0_20180930.jar
這個(gè)包里包含反地理編碼、獲取天氣信息功能 - 基礎(chǔ)功能:Android_Map3D_SDK_V6.8.0_20190401.jar
設(shè)置縮放按鈕是否可見(jiàn)
高德sdk自帶縮放按鈕功能,但是一般都不滿足設(shè)計(jì)師的要求速挑。
uiSettings.setZoomControlsEnabled(false);
設(shè)置旋轉(zhuǎn)手勢(shì)是否可用
uiSettings.setRotateGesturesEnabled(false);
設(shè)置旋轉(zhuǎn)手勢(shì)可用谤牡,實(shí)現(xiàn)指南針效果
aMap.setOnCameraChangeListener(new AMap.OnCameraChangeListener() {
@Override
public void onCameraChange(CameraPosition cameraPosition) {
startIvCompass(cameraPosition.bearing);
}
@Override
public void onCameraChangeFinish(CameraPosition cameraPosition) {
}
});
// 指南針旋轉(zhuǎn)
private void rotateCompass(float bearing) {
bearing = 360 - bearing;
RotateAnimation rotateAnimation = new RotateAnimation(lastBearing, bearing, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
rotateAnimation.setFillAfter(true);
ivCompass.startAnimation(rotateAnimation);
lastBearing = bearing;
}
設(shè)置傾斜手勢(shì)是否可用
uiSettings.setTiltGesturesEnabled(false);
縮放移動(dòng)地圖,保證所有自定義marker在可視范圍中
代碼基本參考高德地圖官方demo
//縮放移動(dòng)地圖姥宝,保證所有自定義marker在可視范圍中翅萤。
public void zoomToSpan(LatLng centerPoint) {
List<LatLng> pointList = new ArrayList<>();
// add latlan of your markers to poinList
...
if (pointList.isEmpty()) {
if(centerPoint == null){
return;
}else {
aMap.moveCamera(CameraUpdateFactory.changeLatLng(centerPoint));
}
}
LatLngBounds bounds;
if (centerPoint == null) {
bounds = getLatLngBounds(pointList);
}else {
bounds = getLatLngBounds(centerPoint, pointList);
}
aMap.moveCamera(CameraUpdateFactory.newLatLngBounds(bounds, 150));
}
//根據(jù)中心點(diǎn)和自定義內(nèi)容獲取縮放bounds
private LatLngBounds getLatLngBounds(LatLng centerPoint, List<LatLng> pointList) {
LatLngBounds.Builder b = LatLngBounds.builder();
if (centerPoint != null){
for (int i = 0; i < pointList.size(); i++) {
LatLng p = pointList.get(i);
LatLng p1 = new LatLng((centerPoint.latitude * 2) - p.latitude, (centerPoint.longitude * 2) - p.longitude);
b.include(p);
b.include(p1);
}
}
return b.build();
}
//根據(jù)自定義內(nèi)容獲取縮放bounds
private LatLngBounds getLatLngBounds(List<LatLng> pointList) {
LatLngBounds.Builder b = LatLngBounds.builder();
for (int i = 0; i < pointList.size(); i++) {
LatLng p = pointList.get(i);
b.include(p);
}
return b.build();
}
添加marker
- 使用圖片資源
LatLng latLng = new LatLng(markerInfo.lat, markerInfo.lon);
BitmapDescriptor bitmapDescriptor = BitmapDescriptorFactory.fromResource(R.drawable.start);
MarkerOptions markerOptions = new MarkerOptions().setFlat(true)
.anchor(0.5f, 0.5f)
.infoWindowEnable(false)
.position(latLng)
.icon(bitmapDescriptor);
aMap.addMarker(markerOptions);
- 使用布局文件
LatLng latLng = new LatLng(markerInfo.lat, markerInfo.lon);
View v = getLayoutInflater().inflate(R.layout.info_window, null);
TextView tvInfo = v.findViewById(R.id.tv_info);
tvInfo.setText(info);
BitmapDescriptor bitmapDescriptor = BitmapDescriptorFactory.fromView(v);
MarkerOptions markerOptions = new MarkerOptions().setFlat(true)
.anchor(0.5f, 0.5f)
.title(info)
.infoWindowEnable(false)
.position(latLng)
.icon(bitmapDescriptor);
aMap.addMarker(markerOptions);
其中這三個(gè)api值得注意:
使用布局文件的場(chǎng)景是:marker不再是單一圖片;或者說(shuō)所有marker需要同時(shí)顯示文本信息腊满,而使用sdk原生的彈出InfoWindow的方式套么,最終只有最后一個(gè)調(diào)用該方法的marker會(huì)彈出。
添加折線糜烹,實(shí)現(xiàn)軌跡效果
/**
* 添加折線
* @param latLng 經(jīng)緯度
* @param dotted 是否虛線
* @param color 顏色
* @param width 寬度
* @return 折線
*/
private Polyline addPolyline(LatLng latLng, boolean dotted, int color, int width) {
return aMap.addPolyline((new PolylineOptions())
.add(latLng)
.width(width)
.setDottedLine(dotted)
.color(color));
}
gif文件太大违诗,無(wú)法上傳,上傳幾張圖片疮蹦,源碼和動(dòng)圖在文末诸迟。