Issue
MapView sch_map = (MapView) dialog.findViewById(R.id.schedule_map);
sch_map.onCreate(savedInstanceState);
sch_map.getMapAsync(new OnMapReadyCallback() {
@Override
public void onMapReady(final GoogleMap googleMap) {
LatLng sydney = new LatLng(-33.867, 151.206);
googleMap.moveCamera(CameraUpdateFactory.newLatLng(sydney));
}
});
I am loading map inside dialog by this due to which the map view is very slow map is loading but taking much time this is my layout in which i am defining mapview.
<com.google.android.gms.maps.MapView
android:layout_width="match_parent"
android:layout_height="300dp"
map:uiRotateGestures="true"
map:uiScrollGestures="true"
map:uiTiltGestures="true"
map:uiZoomControls="true"
map:uiZoomGestures="true"
map:liteMode="true"
android:id="@+id/schedule_map" />
Solution
1) Create one custom dialogmap.xml
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<com.google.android.gms.maps.MapView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
style="@style/MyMaterialTheme.Base">
</com.google.android.gms.maps.MapView>
</RelativeLayout>
2)Define that .xml file in java
if you want open dialog on button click. so write below code in button click event.
Dialog dialog = new Dialog(getActivity());
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setContentView(R.layout.dialogmap);
dialog.show();
GoogleMap googleMap;
MapView mMapView = (MapView) dialog.findViewById(R.id.mapView);
MapsInitializer.initialize(getActivity());
mMapView = (MapView) dialog.findViewById(R.id.mapView);
mMapView.onCreate(dialog.onSaveInstanceState());
mMapView.onResume();// needed to get the map to display immediately
googleMap = mMapView.getMap();
Answered By - Viveka Patel
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.