- 1、本文档共15页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
android多点触摸(Android多点触摸)
android多点触摸(Android多点触摸)
In Android, you can use the following code to get the distance:
Java code
Public, double, getDistance (double, LAT1, double, lon1, double, lat2, double, lon2) {
Float[] results=new float[1];
Location.distanceBetween (LAT1, lon1, lat2, lon2, results);
Return results[0];
}
In other devices, if there is no Location like Androids distanceBetween method, use the following code to obtain:
Java code
Double, distance (double, LAT1, double, lon1, double, lat2, double, lon2) {
Double theta = lon1 - lon2;
Double dist = Math.sin (deg2rad (LAT1)) * Math.sin (deg2rad (lat2))
+ Math.cos (deg2rad (LAT1)) * Math.cos (deg2rad (lat2))
* Math.cos (deg2rad (theta));
Dist = Math.acos (dist);
Dist = rad2deg (dist);
Double miles = dist * 60 * 1.1515;
Return miles;
}
/ / angle conversion to radians
Static, double, deg2rad (double, degree) {
Return degree / 180 * Math.PI;
}
Converts radians to / / angle
Static, double, rad2deg (double, radian) {
Return radian * 180 / Math.PI;
}
This calculation results in miles, and if converted to kilometers, you need to multiply by 1.609344, if the sea needs to multiply by 0.8684
Calculate the geometric distance between two points according to the longitude and latitude coordinates
According to the GPS latitude and longitude coordinates between two points on the earth, the geometric distance between two points is calculated.
The source code is as follows:
Note: the parameters of ArcGis calculated DOUBLE values, if you want the incoming parameters for the transformation requires degrees minutes. The calculation results are in meters. After my own verification, the error is very small.
Public class Distance
{...
Private, static, final, double, EARTH_RADIUS = 6378137;
Private, static, double, RAD (double, d)
{...
Return d * Math.PI / 180;
}
*//** / * *
* calculate the distance between two points according to the latitude and longitude coordinate (double value) between two points. The unit is meters
* @param lng1
* @param LAT1
* @param
您可能关注的文档
- %国外生活必备的英文词汇-饮食%(Foreign essential English Vocabulary - diet%).doc
- (all鸣)小鸣争夺战((all Ming) Xiaoming battle).doc
- (免费)值得一看_高数考研150谈经验((free of charge) is worth a look _ high number of PubMed 150 to talk about the experience).doc
- (转载)健康的真正内涵((Reprint) the true meaning of health).doc
- (持续添加修正)各地名店名厨多款流行火锅蘸料、味碟配方经典总汇(麻酱、沙茶、海鲜、香辣、肥牛等)((continue to add a variety of popular famous chefs around the Amendment) Hot pot Zhanliao, Weidie classical formula (sesame, barbecue, seafood confluence, s.doc
- (pmu专稿)项目经理在电子政务建设中遭遇的种种困境((PMU) project managers encountered various difficulties in the construction of E-government).doc
- (第1章) 单片机教案((first chapter) SCM lesson plan).doc
- + 有用的第7章_风湿病、痛风及骨科疾病(The seventh chapter _ + useful for rheumatism, gout and Department of orthopedics disease).doc
- + 有用的执医考试(Useful medical examination).doc
- +有用 的第6章_血液系统疾病用药(The sixth chapter _ + useful treatment of blood system diseases).doc
文档评论(0)