Android实现百度地图两点画弧线
程序员文章站
2022-04-12 11:25:53
本文实例为大家分享了android实现百度地图两点画弧线的具体代码,供大家参考,具体内容如下
import android.support.annotation....
本文实例为大家分享了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; } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。