亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android怎么實現百度地圖兩點畫弧線

發布時間:2021-04-16 11:11:31 來源:億速云 閱讀:250 作者:小新 欄目:移動開發

這篇文章給大家分享的是有關Android怎么實現百度地圖兩點畫弧線的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

具體內容如下

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
 * 通過兩點來繪制弧線
 * @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;
 }

 /**
 * 獲取一個弧線Overlay
 * @param start 起點
 * @param end 終點
 * @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文件中計算第三個點的方式
 * <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 中間點的經緯度
 */
 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;
 }
}

感謝各位的閱讀!關于“Android怎么實現百度地圖兩點畫弧線”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

荥阳市| 原平市| 泾源县| 衡阳市| 通渭县| 马边| 仙游县| 陆川县| 洛隆县| 拜城县| 固原市| 崇州市| 东阿县| 广饶县| 西青区| 江孜县| 中山市| 卢龙县| 南乐县| 河北省| 佛山市| 图们市| 旅游| 洛阳市| 江津市| 克拉玛依市| 大厂| 东阳市| 湖口县| 偃师市| 梁山县| 绵阳市| 天门市| 封开县| 古丈县| 长乐市| 双鸭山市| 沅陵县| 宁国市| 汪清县| 油尖旺区|