溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Android怎么實(shí)現(xiàn)百度地圖兩點(diǎn)畫弧線

發(fā)布時(shí)間:2021-04-16 11:11:31 來源:億速云 閱讀:250 作者:小新 欄目:移動(dòng)開發(fā)

這篇文章給大家分享的是有關(guān)Android怎么實(shí)現(xiàn)百度地圖兩點(diǎn)畫弧線的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

具體內(nèi)容如下

import android.support.annotation.NonNull;

import com.baidu.mapapi.map.ArcOptions;
import com.baidu.mapapi.map.OverlayOptions;
import com.baidu.mapapi.model.LatLng;

/**
 *
 * http://lbsyun.baidu.com/index.php?title=androidsdk/guide/render-map/ploygon
 * 通過兩點(diǎn)來繪制弧線
 * @author peter 2018-12-24 15:09
 */
public class ArcOverlay {
 private LatLng start;
 private LatLng end;
 /**
 * {@link com.baidu.mapapi.map.ArcOptions#color(int)}
 */
 private int color;//弧線的顏色
 private int arcWidth = 4;//弧線寬度

 public ArcOverlay(@NonNull LatLng start, @NonNull LatLng end, int color) {
 this.start = start;
 this.end = end;
 this.color = color;
 }

 /**
 * 獲取一個(gè)弧線Overlay
 * @param start 起點(diǎn)
 * @param end 終點(diǎn)
 * @param color 顏色
 * @param arcWidth 弧線寬度
 */
 public ArcOverlay(@NonNull LatLng start, @NonNull LatLng end, int color, int arcWidth) {
 this.start = start;
 this.end = end;
 this.color = color;
 this.arcWidth = arcWidth;
 }

 public OverlayOptions toBmapOverlayOptions() {
 return new ArcOptions()
  .color(color)
  .width(arcWidth)
  .points(start, getMidPoint(), end);
 }

 /**
 * 參考前端百度提供的畫弧線js文件中計(jì)算第三個(gè)點(diǎn)的方式
 * <a>http://lbsyun.baidu.com/jsdemo.htm#c1_13</a>
 * <a>view-source:http://api.map.baidu.com/library/CurveLine/1.5/src/CurveLine.min.js<a/>
 * @return 中間點(diǎn)的經(jīng)緯度
 */
 private LatLng getMidPoint() {
 double t, t2, h,h3;
 double lng1 = start.longitude;
 double lng2 = end.longitude;
 double lat1 = start.latitude;
 double lat2 = end.latitude;

 if (lng2 > lng1) {
  if ((lng2 - lng1) > 180) {
  if (lng1 < 0) {
   lng1 = (180 + 180 + lng1);
  }
  }
 }
 if (lng1 > lng2) {
  if ((lng1 - lng2) > 180) {
  if (lng2 < 0) {
   lng2 = (180 + 180 + lng2);
  }
  }
 }
 if (lat2 == lat1) {
  t = 0;
  h = lng1 - lng2;
 } else {
  if (lng2 == lng1) {
  t = Math.PI / 2;
  h = lat1 - lat2;
  } else {
  t = Math.atan((lat2 - lat1) / (lng2 - lng1));
  h = (lat2 - lat1) / Math.sin(t);
  }
 }
 t2 = (t + (Math.PI / 5));
 h3 = h / 2;
 double lng3 = h3 * Math.cos(t2) + lng1;
 double lat3 = h3 * Math.sin(t2) + lat1;
 return new LatLng(lat3,lng3);
 }


 public LatLng getStart() {
 return start;
 }

 public void setStart(LatLng start) {
 this.start = start;
 }

 public LatLng getEnd() {
 return end;
 }

 public void setEnd(LatLng end) {
 this.end = end;
 }

 public int getColor() {
 return color;
 }

 public void setColor(int color) {
 this.color = color;
 }

 public int getArcWidth() {
 return arcWidth;
 }

 public void setArcWidth(int arcWidth) {
 this.arcWidth = arcWidth;
 }
}

感謝各位的閱讀!關(guān)于“Android怎么實(shí)現(xiàn)百度地圖兩點(diǎn)畫弧線”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI