如何在点击地址时打开谷歌地图应用程序



我的应用程序中有一个地址参数,上面写着" 921 比佛利山庄, 加利福尼亚州, CA- 09001"点击此按钮后,我希望谷歌地图打开并显示此确切地址的注释。我该怎么做?有什么线索吗?

启动地图

有很多资源可以帮助您开始,这是一个示例。 在实际应用程序中,您可能希望使用自己的地图活动来处理意图;也许添加边界和摄像头来放大或其他什么......

Location sf = new Location("");

  sf.setLatitude(37.7749);
  sf.setLongitude(-122.4194);
  requestLocation("your address");

public  void requestLocation(Location location) {

    // Create a Uri from an intent string. Use the result to 
    //   create an Intent.
    Uri gmmIntentUri = Uri.parse("geo:" + location.getLatitude() + "," + location.getLongitude());
    // Create an Intent from gmmIntentUri. Set the action to 
    //   ACTION_VIEW
    Intent mapIntent = new Intent(Intent.ACTION_VIEW, 
    gmmIntentUri);
    // Make the Intent explicit by setting the Google Maps 
    //   package
    mapIntent.setPackage("com.google.android.apps.maps");

    if (mapIntent.resolveActivity(getPackageManager()) != null) {
        startActivityForResult(mapIntent, REQUEST_LOCATION);
    }
}
public  void requestLocation(String address) {
       // Create a Uri from an intent string. Use the result to create 
      //an Intent.
    Uri gmmIntentUri = Uri.parse("geo:" + address);
    // Make the Intent explicit by setting the Google Maps 
    //   package
    mapIntent.setPackage("com.google.android.apps.maps");

    if (mapIntent.resolveActivity(getPackageManager()) != null) {
        startActivityForResult(mapIntent, REQUEST_LOCATION);
    }
}      

在这里,您可以找到有关如何使用意图启动带有地址的 Google 地图的概述:

https://developers.google.com/maps/documentation/urls/android-intents

相关内容

  • 没有找到相关文章

最新更新