Android实现百度地图两点画弧线
作者:miskss 时间:2022-08-17 14:52:03
本文实例为大家分享了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,h2;
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));
h2 = h / 2;
double lng3 = h2 * Math.cos(t2) + lng1;
double lat3 = h2 * 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;
}
}
来源:https://blog.csdn.net/wanping321/article/details/85990561
标签:Android,百度地图
0
投稿
猜你喜欢
浅谈Android View绘制三大流程探索及常见问题
2022-03-02 00:01:26
C#实现对Json字符串处理实例
2023-06-21 08:26:24
c# 编写一个轻量级的异步写日志的实用工具类(LogAsyncWriter)
2021-11-23 01:56:14
Android系列---JSON数据解析的实例
2022-07-04 19:52:50
java对double数组排序示例分享
2022-07-13 03:22:14
Android上传文件到服务端并显示进度条
2023-06-23 07:48:33
C#调用SQLite的方法实例分析
2022-09-25 06:02:22
Android编程之SharedPreferences文件存储操作实例分析
2023-07-18 04:07:31
Flutter 实现网易云音乐字幕的代码
2023-04-01 11:50:45
java反射深入剖析(推荐)
2022-10-10 18:50:35
Spring应用抛出NoUniqueBeanDefinitionException异常的解决方案
2023-11-25 07:36:19
java定义受限制的类型参数操作
2022-12-16 09:44:03
springMVC利用FastJson接口返回json数据相关配置详解
2023-02-24 10:51:58
通过源码角度看看AccessibilityService
2023-07-25 09:31:43
RocketMQ消息存储文件的加载与恢复机制源码分析
2021-12-29 20:23:19
C#读写Config配置文件案例
2022-10-22 20:11:09
Android基于Xposed修改微信运动步数实例
2022-11-06 19:46:57
SpringBoot配置外部静态资源映射问题
2021-07-22 00:27:50
Java编程用两个栈实现队列代码分享
2023-03-22 01:05:05
C#实现带搜索功能的ComboBox
2022-08-29 06:52:48