Answers
这个很简单。
android的话,你可以先看看官方的文档
app-intent
代码,我记不得非常清晰了,应该是这样的。
Uri uri = Uri.parse("geo:0,0"); // 0, 0代表经纬度
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
iOS的话就稍微麻烦一些,你要自己根据选择去打开对应的APP,比如googlemap
google map sdk for ios
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"comgooglemaps://?center=40.765819,-73.975866&zoom=14&views=traffic"]]
或者使用官方的apple map
Map Links
NSURL *url = [NSURL URLWithString:@"http://maps.apple.com/?q=cupertino"]
所以你要做的就是
<html>
<body>
<!-- android -->
<a href="geo:0,0">my location</a>
<!-- ios -->
<a href="http://maps.apple.com/?q=cupertino">my location</a>
</body>
</html>
蓝蓝精灵鱼
answered 11 years, 6 months ago