简体   繁体   中英

MARKERS or POLY LINES not displaying in google map

maps activity package com.example.user.pavai;

import android.support.v4.app.FragmentActivity;
import android.os.Bundle;
import android.util.Log;
import android.widget.Toast;

import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.OnMapReadyCallback;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.MarkerOptions;
import com.google.android.gms.maps.model.Polyline;
import com.google.android.gms.maps.model.PolylineOptions;

public class MapsActivity extends FragmentActivity implements 
OnMapReadyCallback {

    private GoogleMap mMap;
    private  String lat1;
    private String long1;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_maps);
        // Obtain the SupportMapFragment and get notified when the map is 
ready to be used.
        SupportMapFragment mapFragment = (SupportMapFragment) 
getSupportFragmentManager()
                .findFragmentById(R.id.map);

        Bundle route = getIntent().getExtras();
        lat1 =route.getString("lat1");
        long1 = route.getString("long1");
        // Log.d("lat",lat1);

        //Log.d("long",long1);

        //Toast.makeText(MapsActivity.this,lat1,Toast.LENGTH_SHORT).show();

        //Toast.makeText(MapsActivity.this,long1,Toast.LENGTH_SHORT).show();

    }


    /**
     * Manipulates the map once available.
     * This callback is triggered when the map is ready to be used.
     * This is where we can add markers or lines, add listeners or move the 
camera. In this case,
     * we just add a marker near Sydney, Australia.
     * If Google Play services is not installed on the device, the user will 
be prompted to install
     * it inside the SupportMapFragment. This method will only be triggered 
once the user has
     * installed Google Play services and returned to the app.
     */
    @Override
    public void onMapReady(GoogleMap googleMap) {
        mMap = googleMap;





        // Add a marker in Sydney and move the camera
        LatLng ne = new 
LatLng(Double.parseDouble(lat1),Double.parseDouble(long1));
        mMap.addMarker(new MarkerOptions().position(ne).title("Marker in 
Sample"));
        googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(new 
LatLng(Double.parseDouble(lat1),Double.parseDouble(long1)), 10));


        //drawing route


       Polyline disp = mMap.addPolyline(new 
PolylineOptions().clickable(true).add(
                new LatLng(Float.parseFloat(lat1),Float.parseFloat(long1)),
                new LatLng(13.118055,80.261054),
                new LatLng(13.131398,80.237838),
                new LatLng(13.146812,80.217019),
                new LatLng(13.205292,80.196488)
        ));

    }
}

MANIFEST

 <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.user.pavai">

<!--
     The ACCESS_COARSE/FINE_LOCATION permissions are not required to use
     Google Maps Android API v2, but you must specify either coarse or fine
     location permissions for the 'MyLocation' functionality. 
-->
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />


<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".Login">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".User" >
        <intent-filter>
        <action android:name="android.intent.action.SEND" />

        <category android:name="android.intent.category.DEFAULT" />

        <data android:mimeType="text/plain" />
    </intent-filter>
</activity>
    <!--
         The API key for Google Maps-based APIs is defined as a string 
resource.
         (See the file "res/values/google_maps_api.xml").
         Note that the API key is linked to the encryption key used to sign 
the APK.
         You need a different API key for each encryption key, including the 
release key that is used to
         sign the APK for publishing.
         You can define the keys for the debug and release targets in 
src/debug/ and src/release/. 
    -->
    <meta-data
        android:name="com.google.android.geo.API_KEY"
        android:value="@string/google_maps_key" />

    <activity
        android:name=".MapsActivity"
        android:label="@string/title_activity_maps">
        <intent-filter>
            <action android:name="android.intent.action.VIEW" />
        </intent-filter>


    </activity>

</application>

</manifest>

I am getting a string value from previous activity and parsing it into double value and using it for latitude and longitude but when running the app there is no map and poly line displayed what can i do to fix this issue

but when i tried the same code with other app it worked but i don't know why it does not work with this

我得到的答案我忘记添加getMapAsync方法

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM