Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/378.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/202.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 谷歌地图错误;无法查看输出_Java_Android_Google Maps - Fatal编程技术网

Java 谷歌地图错误;无法查看输出

Java 谷歌地图错误;无法查看输出,java,android,google-maps,Java,Android,Google Maps,我不熟悉安卓谷歌地图。在一些教程之后,我在地图上编写了一些代码,但是,我看不到输出。我生成并使用了映射键APIv2。请帮我查一下密码 Manifest.xml MainActivity.java main.xml 这是谷歌地图的一个常见问题,很多人都会问这个问题,调查显示有很多主观问题。。。试试这个: 检查您是否已在谷歌API控制台上启用谷歌地图Android API v2服务。如果没有,则启用它,然后按Generate new键重新创建API键 双重和三重检查所有必需的权限以及您复制和粘贴的A

我不熟悉安卓谷歌地图。在一些教程之后,我在地图上编写了一些代码,但是,我看不到输出。我生成并使用了映射键APIv2。请帮我查一下密码

Manifest.xml

MainActivity.java

main.xml


这是谷歌地图的一个常见问题,很多人都会问这个问题,调查显示有很多主观问题。。。试试这个:

检查您是否已在谷歌API控制台上启用谷歌地图Android API v2服务。如果没有,则启用它,然后按Generate new键重新创建API键

双重和三重检查所有必需的权限以及您复制和粘贴的API密钥

卸载设备或AVD上的应用程序,然后重新安装,然后重试。。。有时它需要彻底刷新

使用板条前往特定位置

这里有一个简单易用的方法,我设计去一个特定的位置。将其放入活动中或创建一个新类,然后将数据传递给它:

/** goToLocation
 * @param map - You GoogleMap reference
 * @param location - your LatLng value
 * @param zoom Float - ie. 15
 * @param b Boolean - Animate camera movement: true or false
 */
public void goToLocation(GoogleMap map, LatLng ll, float zoom, boolean b) {
    if (b == true) {
        map.animateCamera(CameraUpdateFactory.newLatLngZoom(ll, zoom));
    } else {
        map.moveCamera(CameraUpdateFactory.newLatLngZoom(ll, zoom));
    }
}

在你的舱单上你提到了这一点。使用android库:name=com.google.android.maps删除该库。这是旧版本ie谷歌地图v1

并检查您的密钥是否使用调试密钥或释放密钥

这里有释放钥匙的程序


查看我编辑的关于“转到特定位置”问题的答案。

您是否收到错误,请参阅logcat,它说明了什么?logcat中的错误是什么??在这里分享一些代码谢谢你的回复。它工作…:我想通过使用纬度和经度值导航到特定位置。请给我一些建议。我复制了你的代码并粘贴到了活动中。但我无法导航到特定位置。是否有任何错误?在上面的主要帖子中发布您的全部活动代码,以便我可以查看:
package com.examp.nowmap;

@SuppressLint("NewApi")
public class MainActivity extends Fragment {

private Location currentLocation = null;
private LocationManager locationManager;
private GeoPoint currentPoint;

TextView location1;

ArrayList<LatLng> markerPoints;
GoogleMap map;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

getLastLocation();
}

@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle  savedInstanceState) {
View view = inflater.inflate(R.layout.main, container, false);
//  ...some other stuff being done here...
// Return view
return view;
}

public void getLastLocation(){
String provider = getBestProvider();
currentLocation = locationManager.getLastKnownLocation(provider);

this.markerPoints = new ArrayList<LatLng>();

LatLng fromPosition = new LatLng(currentLocation.getLatitude(),   currentLocation.getLongitude());
LatLng toPosition = new LatLng(29.633289, -82.305838);

LatLng toPosition1 = new LatLng(40.044438,-106.197281);


MainActivity.this.markerPoints.add(fromPosition);
MainActivity.this.markerPoints.add(toPosition);

// Getting URL to the Google Directions API
String url = MainActivity.this.getDirectionsUrl(fromPosition, toPosition);

DownloadTask downloadTask = new DownloadTask();

// Start downloading json data from Google Directions API
downloadTask.execute(url);

if(currentLocation != null) {
    setCurrentLocation(currentLocation);
} else { 
    // do something
}
}

public String getBestProvider() {
locationManager = (LocationManager)    getActivity().getSystemService(Context.LOCATION_SERVICE);
Criteria criteria = new Criteria();
criteria.setPowerRequirement(Criteria.NO_REQUIREMENT);
criteria.setAccuracy(Criteria.NO_REQUIREMENT);
String bestProvider = locationManager.getBestProvider(criteria, true);
return bestProvider;
}

public void setCurrentLocation(Location location){
// Get current location
int currLatitude = (int) (location.getLatitude()*1E6);
int currLongitude = (int) (location.getLongitude()*1E6);
currentPoint = new GeoPoint(currLatitude,currLongitude); 
// Set current location
currentLocation = new Location("");
currentLocation.setLatitude(currentPoint.getLatitudeE6() / 1e6);
currentLocation.setLongitude(currentPoint.getLongitudeE6() / 1e6);
}

private String getDirectionsUrl(LatLng origin, LatLng dest) {
// Origin of route
String str_origin = "origin=" + origin.latitude + "," + origin.longitude;
// Destination of route
String str_dest = "destination=" + dest.latitude + "," + dest.longitude;
// Sensor enabled
String sensor = "sensor=false";
// Building the parameters to the web service
String parameters = str_origin + "&" + str_dest + "&" + sensor;
// Output format
String output = "json";
// Building the url to the web service
String url = "https://maps.googleapis.com/maps/api/directions/" + output + "?" +  parameters;

return url;
}

/** A method to download json data from url */
private String downloadUrl(String strUrl) throws IOException {
String data = "";
InputStream iStream = null;
HttpURLConnection urlConnection = null;
try
{
    URL url = new URL(strUrl);
    // Creating an http connection to communicate with url
    urlConnection = (HttpURLConnection) url.openConnection();
    // Connecting to url
    urlConnection.connect();
    // Reading data from url
    iStream = urlConnection.getInputStream();
    BufferedReader br = new BufferedReader(new InputStreamReader(iStream));
    StringBuffer sb = new StringBuffer();
    String line = "";
    while ((line = br.readLine()) != null) {
        sb.append(line);
    }

    data = sb.toString();
    br.close();
} catch (Exception e) {
    Log.d("Exception while downloading url", e.toString());
} finally {
    iStream.close();
    urlConnection.disconnect();
}
return data;
}

// Fetches data from url passed
private class DownloadTask extends AsyncTask<String, Void, ArrayList<String>> {
@Override
protected ArrayList<String> doInBackground(String... urlList) {
    try {
        ArrayList<String> returnList = new ArrayList<String>();
        for (String url : urlList) {
            // Fetching the data from web service
            String data = MainActivity.this.downloadUrl(url);
            returnList.add(data);
        }
        return returnList;
    } catch (Exception e) {
        Log.d("Background Task", e.toString());
        return null; // Failed, return null
    }
}

// Executes in UI thread, after the execution of
// doInBackground()
@Override
protected void onPostExecute(ArrayList<String> results) {
    super.onPostExecute(results);

    ParserTask parserTask = new ParserTask();

    for (String url : results) {
        parserTask.execute(url);
    }

    // Invokes the thread for parsing the JSON data
    // parserTask.execute(results);
}
}

/** A class to parse the Google Places in JSON format */
private class ParserTask extends AsyncTask<String, Integer,    ArrayList<List<HashMap<String, String>>>> {
// Parsing the data in non-ui thread
@Override
protected ArrayList<List<HashMap<String, String>>> doInBackground(String... jsonData) {
    try {
        ArrayList<List<HashMap<String, String>>> routes = new  ArrayList<List<HashMap<String, String>>>();

        // for (String url : jsonData) {
        for (int i = 0; i < jsonData.length; i++) {
            JSONObject jObject = new JSONObject(jsonData[i]);

            DirectionsJSONParser parser = new DirectionsJSONParser();
            // Starts parsing data
            routes = (ArrayList<List<HashMap<String, String>>>) parser.parse(jObject);
        }
        return routes;
    } catch (Exception e) {
        Log.d("Background task", e.toString());
        return null; // Failed, return null
    }
}

// Executes in UI thread, after the parsing process
@Override
protected void onPostExecute(List<List<HashMap<String, String>>> result)  
{
    if (result.size() < 1) 
    {
        Toast.makeText(getActivity(), "No Points", Toast.LENGTH_SHORT).show();
        return;
    }

    TextView tv1 = (TextView) getActivity().findViewById(R.id.location1);
    TextView tv2 = (TextView) getActivity().findViewById(R.id.location2);
    TextView tv3 = (TextView) getActivity().findViewById(R.id.location3);
    TextView tv4 = (TextView) getActivity().findViewById(R.id.location4);

    TextView[] views = {tv1, tv2, tv3, tv4};


    // Traversing through all the routes
    for (int i = 0; i < result.size(); i++) 
    {
        // Fetching i-th route
        List<HashMap<String, String>> path = result.get(i);
        String distance = "No distance";

        // Fetching all the points in i-th route
        for (int j = 0; j < path.size(); j++) 
        {
            HashMap<String, String> point = path.get(j);

            if (j == 0)  
            {
                distance = point.get("distance");
                continue;
            }
        }

        // Set text
        views[i].setText(distance);
    }
}
}
}
<?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<fragment
    android:name="com.google.android.gms.maps.SupportMapFragment"
    xmlns:map="http://schemas.android.com/apk/res-auto"
    android:id="@+id/map"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />
</LinearLayout>
/** goToLocation
 * @param map - You GoogleMap reference
 * @param location - your LatLng value
 * @param zoom Float - ie. 15
 * @param b Boolean - Animate camera movement: true or false
 */
public void goToLocation(GoogleMap map, LatLng ll, float zoom, boolean b) {
    if (b == true) {
        map.animateCamera(CameraUpdateFactory.newLatLngZoom(ll, zoom));
    } else {
        map.moveCamera(CameraUpdateFactory.newLatLngZoom(ll, zoom));
    }
}