java - 如何使用经度/纬度在数组列表中绘制 map ?

标签 java android google-maps arraylist

这是我的 map 类...

public class Mapa extends FragmentActivity implements LocationListener    {

public GoogleMap map;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_mapa);

获取 Google Play 可用性状态

    int status =GooglePlayServicesUtil.isGooglePlayServicesAvailable(getBaseContext());

显示状态 if(status!=ConnectionResult.SUCCESS){//Google Play 服务不可用

        int requestCode = 10;
        Dialog dialog = GooglePlayServicesUtil.getErrorDialog(status, this, requestCode);
        dialog.show();

    }else { 

获取对 SupportMapFragment 的引用

        SupportMapFragment fm = (SupportMapFragment) 
        getSupportFragmentManager().findFragmentById(R.id.map);

从 fragment 获取 GoogleMap 对象

        map = fm.getMap();

启用 Google map 的 MyLocation 图层

        map.setMyLocationEnabled(true);

从系统服务LOCATION_SERVICE获取LocationManager对象

        LocationManager locationManager = (LocationManager) 

    getSystemService(LOCATION_SERVICE);

创建条件对象来检索提供程序

        Criteria criteria = new Criteria();

获取最佳提供商的名称

        String provider = locationManager.getBestProvider(criteria, true);

获取当前位置

        Location location = locationManager.getLastKnownLocation(provider);

        if(location!=null){
            onLocationChanged(location);
        }
        locationManager.requestLocationUpdates(provider, 20000, 0, this);



    }
}

public void onLocationChanged(Location location) {

    TextView tvLocation = (TextView) findViewById(R.id.tv_location);

获取当前位置的纬度

    double latitude = location.getLatitude();

获取当前位置的经度

    double longitude = location.getLongitude();

为当前位置创建 LatLng 对象

    LatLng latLng = new LatLng(latitude, longitude);

在 Google map 中显示当前位置

    map.moveCamera(CameraUpdateFactory.newLatLng(latLng));

放大 Google map

    map.animateCamera(CameraUpdateFactory.zoomTo(15));

在 TextView tv_location 中设置纬度和经度

    tvLocation.setText("Latitude:" +  latitude  + ", Longitude:"+ longitude );

}

@Override
public void onProviderDisabled(String provider) {

}

@Override
public void onProviderEnabled(String provider) {
       }

@Override
public void onStatusChanged(String provider, int status, Bundle extras) {

}

这是我的数组列表类

  public void getPontos(View view) {

    String codigo;

    codigo = linhaList.get(spinner.getSelectedItemPosition()).getCodigo();

    new WebServiceGetPontosLinha().execute(codigo);

}

private class WebServiceGetPontosLinha extends
        AsyncTask<String, Void, Void> {

    @Override
    protected void onPreExecute() {

        progressDialog = ProgressDialog.show(MainActivity.this, "",
                getResources().getText(R.string.connecting), true, false);
    }

    @Override
    protected Void doInBackground(String... params) {

        WebServiceConsumer webServiceConsumer = new WebServiceConsumer(
                MainActivity.this);

        pontoList = webServiceConsumer.getPontos(params[0]);

        return null;
    }

    @Override
    protected void onPostExecute(Void result) {

        progressDialog.dismiss();

        pontoArrayAdapter = new ArrayAdapter<PontosLinhas>(
                MainActivity.this,
                android.R.layout.simple_spinner_dropdown_item, pontoList);
        spinner1.setAdapter(pontoArrayAdapter);
    }
}

如何像图像一样在 map 上绘制微调器的内容?

最佳答案

这涉及到很多您不需要的细节,但希望您能理解。

我开发了一个应用程序,除其他外,它在 map 上显示消防栓的位置,这就是我将消防栓加载到 map 上的方法:

    private class LoadHydrantsToMapTask extends
        AsyncTask<Hydrant, Integer, List<MarkerOptions>> {

    private int loadHydrantsGoal = 0;

    public LoadHydrantsToMapTask(int loadHydrantsGoal) {
        this.loadHydrantsGoal = loadHydrantsGoal;
    }

    // Before running code in separate thread
    @Override
    protected void onPreExecute() {
        Device.lockOrientation((Activity)context);
        // Create a new progress dialog.
        progressDialog = new ProgressDialog(context);
        // Set the progress dialog to display a horizontal bar .
        progressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
        progressDialog.setMessage(context
                .getString(R.string.adding_hydrants));
        // This dialog can't be canceled by pressing the back key.
        progressDialog.setCancelable(false);
        // This dialog isn't indeterminate.
        progressDialog.setIndeterminate(false);
        // The maximum number of progress items is 100.
        progressDialog.setMax(loadHydrantsGoal);
        // Set the current progress to zero.
        progressDialog.setProgress(0);
        // Display the progress dialog.
        progressDialog.show();

    }

    // The code to be executed in a background thread.
    @Override
    protected List<MarkerOptions> doInBackground(Hydrant... hydrants) {
        List<MarkerOptions> markers = new ArrayList<MarkerOptions>();

        for (Hydrant hydrant : hydrants) {

            final String hydrant_type = hydrant.getHydrantType();
            final String hydrant_icon_path = hydrant.getIconPath();
            double latitude = hydrant.getLatitude();
            double longitude = hydrant.getLongitude();

            final LatLng position = new LatLng(latitude, longitude);

            final String address = hydrant.getAddress();
            final String addressNumber = hydrant.getAddressNumber();
            final String addressremark = hydrant.getAddressRemark();
            final String remark = hydrant.getRemark();


            BitmapDescriptor icon = BitmapDescriptorFactory
                    .defaultMarker(BitmapDescriptorFactory.HUE_RED);

            if (!hydrant_icon_path.isEmpty()) {
                File iconfile = new File(hydrant_icon_path);
                if (iconfile.exists()) {
                    BitmapDescriptor loaded_icon = BitmapDescriptorFactory
                            .fromPath(hydrant_icon_path);
                    if (loaded_icon != null) {
                        icon = loaded_icon;
                    } else {
                        Log.e(TAG, "loaded_icon was null");
                    }
                } else {
                    Log.e(TAG, "iconfile did not exist: "
                            + hydrant_icon_path);
                }
            } else {
                Log.e(TAG, "iconpath was empty on hydrant type: "
                        + hydrant_type);
            }

            StringBuffer snippet = new StringBuffer();
            if (!address.isEmpty())
                snippet.append("\n" + address + " " + addressNumber);
            if (addressremark.isEmpty())
                snippet.append("\n" + addressremark);
            if (!remark.isEmpty())
                snippet.append("\n" + remark);

            markers.add(new MarkerOptions().position(position)
                    .title(hydrant_type).snippet(snippet.toString())
                    .icon(icon));

            publishProgress(markers.size());
        }
        return markers;
    }

    // Update the progress
    @Override
    protected void onProgressUpdate(Integer... values) {
        // set the current progress of the progress dialog
        progressDialog.setProgress(values[0]);
    }

    // after executing the code in the thread
    @Override
    protected void onPostExecute(List<MarkerOptions> markers) {

        GoogleMap map = GoogleMapsModule.getInstance().getMap();

        for (MarkerOptions marker : markers) {
            if (marker != null)
            map.addMarker(marker);
        }

        if (markers.size() == mHydrants.size()) {
            setAllHydrantAdded(true);
            setNearbyHydrantsAdded(true);
        } else {
            setNearbyHydrantsAdded(true);
        }
        Device.releaseOrientation((Activity) context);
    }
}

当我调用任务时,我有一个 Hydrant 对象列表。要将列表解析为 AsyncTask,我将列表转换为数组:

        new LoadHydrantsToMapTask(hydrants.size()).execute(hydrants
            .toArray(new Hydrant[hydrants.size()]));

关于java - 如何使用经度/纬度在数组列表中绘制 map ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19734252/

相关文章:

java - 我如何告诉 Hibernate 在自连接 @OneToOne 中忽略 "0"

java - 卡片 View 中的图像,顶部半径不显示角半径

ios - Google Directions API 未授权访问 iOS

javascript - 在回调函数中引用更正这个

java - 将 SWT 按钮添加到 ButtonGroup

java - 子模块的故障安全注入(inject)器。 google guice 中的可选绑定(bind)

android - 中心颜色可以在 android 径向渐变绘图中重新定位吗?

r - 更改 googleVis R 包中 gvisMap 上的点颜色

java - 优化多个文件的并行处理

android - 由于 : 'null' - Android Studio 3. 5,安装失败