地图上的移动
如何将箭头(标记)指向用户的移动?
在模拟器上,我朝红色箭头的方向移动(skrinshot) ,并且标记向侧面移动。
我的代码,在地图上添加箭头:
LinearLayout vGoing = (LinearLayout) View.inflate(getApplicationContext(), R.layout.mylocationidentificationgoing, null);
mapView.addView(vGoing, new MapView.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,ViewGroup.LayoutParams.WRAP_CONTENT,point,MapView.LayoutParams.BOTTOM_CENTER));
How do you direct an arrow (marker) to the movement of the user?
On the emulator I move in the direction of a red arrow (skrinshot), and the marker goes sideways.
My code,which adds arrow on map:
LinearLayout vGoing = (LinearLayout) View.inflate(getApplicationContext(), R.layout.mylocationidentificationgoing, null);
mapView.addView(vGoing, new MapView.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,ViewGroup.LayoutParams.WRAP_CONTENT,point,MapView.LayoutParams.BOTTOM_CENTER));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 GPS 跟踪经纬度的增量变化,并使用它来显示箭头的方向。
You can use GPS to track delta changes in Lat Long and use that to show direction of the arrow.