作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当从我的应用程序点击按钮时,是否可以更改旅行模式谷歌地图以在 Android 上请求乘车选项卡?
我用过:
Intent intent = new Intent(Intent.ACTION_VIEW,
Uri.parse("http://maps.google.com/maps?daddr="+ mLocation.latitude + ","+ mLocation.longitude +"&f=d&dirflg=r"));
startActivity(intent);
但参数 dirflg 仅限于:
dirflg=h - Switches on "Avoid Highways" route finding mode.
dirflg=t - Switches on "Avoid Tolls" route finding mode.
dirflg=r - Switches on "Public Transit" - only works in some areas.
dirflg=w - Switches to walking directions - still in beta.
dirflg=d - Switches to driving directions
最佳答案
似乎(叫车 -> taXi)并且:
dirflg=x - Switches on "request a ride tab" - only works in some areas.
并且您可以像这样对请求使用 Intent :
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("http://maps.google.com/maps?saddr=-7.328306+112.715478&daddr=Jl.+Frontage+Ahmad+Yani+Siwalankerto&dirflg=x"));
startActivity(intent);
得到这样的结果:
(将 -7.328306+112.71547
替换为 mLocation.latitude + "+"+ mLocation.longitude
请求中的 LatLng)
关于android - 谷歌地图 旅行模式 : request a ride,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49945036/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!