我已經嘗試了很多,但無法爲我的應用程序製作qibla指南針。 我不明白我在做什麼。我需要使用恰布拉指南針來完善我。 謝謝 paragQibla Compass in Android
6
A
回答
7
你知道麥加的位置,你知道用戶目前的位置(如果你有GPS或其他位置提供商)。方位由此公式給出,緯度和經度應以弧度表示。
float lonDelta = (lon2 - lon1);
float y = Math.sin(lonDelta) * Math.cos(lat2);
float x = Math.cos(lat1) * Math.sin(lat2) - Math.sin(lat1) * Math.cos(lat2) * Math.cos(lonDelta);
float brng = Math.atan2(y, x).toDeg();
brng是以度爲單位的方向。
您還可以探索Location.bearingTo()方法。
由於達累斯薩拉姆 - Alaikum
相關問題
- 1. Compass Sprites in Rails 3.2
- 2. 尋找:Android Compass API
- 3. Gulpfile.js和Gulp-Compass
- 4. Docker-compose - Ruby - Compass - inotify
- 5. SASS Compass Complie
- 6. Sass,Compass和JavaScript
- 7. LESS vs. COMPASS
- 8. Meteor.js&SCSS/Compass
- 9. Symfony2中的Sass/Compass
- 10. Compass font-face mixin bold
- 11. android aapt in eclipse
- 12. Octicons in Android
- 13. java.lang.ClassCastException:org.ksoap2.serialization.SoapObject in android
- 14. Tabbar in phonegap android
- 15. Android in Car Audio
- 16. Transparecy in canvas android
- 17. Log.e in Android
- 18. Linkify in android TextView
- 19. com.thoughtworks.xstream.mapper.CannotResolveClassException in android
- 20. phonegap in android
- 21. Ruby in android
- 22. Listview Footer in Android
- 23. PhoneFactory.getDefaultphone in android
- 24. ContextMenu like in Android
- 25. Socat in Android
- 26. setpixel in bitmap android
- 27. AudioManager in android
- 28. MathML in Android
- 29. Android -RecyclerView in kitkat
- 30. TextView in android
你需要很多更具體的。 – Hassan
@Hassan yes Hassan –
您是否想要編程?你有什麼麻煩?你有什麼嘗試? – CaseyB