Android地图找到附近的药房

时间:2015-03-28 17:33:44

标签: android

我创建了以下代码来查找附近的药店。我想知道我的代码是否需要进行任何更改。它会引发一些错误。

package com.example.maps;

import android.content.Intent;
import android.net.Uri;


public class MapActivity {
    Intent mapintent=new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("http://maps.google.co.uk/maps?q=Pharmacy&hl=en"));
     startActivity(mapintent);

    }

1 个答案:

答案 0 :(得分:0)

Google刚刚在最新的Play服务中发布了Places API:请阅读here

您当然可以将其与位置服务结合使用,但解析地图查询结果的想法不再具有多大意义。