Java Code Examples for com.google.android.gms.maps.GoogleMap#setMapStyle()
The following examples show how to use
com.google.android.gms.maps.GoogleMap#setMapStyle() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Home.java From UberClone with MIT License | 6 votes |
@Override public void onMapReady(GoogleMap googleMap) { mMap = googleMap; mMap.getUiSettings().setZoomControlsEnabled(true); mMap.getUiSettings().setZoomGesturesEnabled(true); mMap.setInfoWindowAdapter(new CustomInfoWindow(this)); googleMap.setMapStyle(MapStyleOptions.loadRawResourceStyle(this, R.raw.uber_style_map)); mMap.setOnMapClickListener(new GoogleMap.OnMapClickListener() { @Override public void onMapClick(LatLng latLng) { if(destinationMarker!=null) destinationMarker.remove(); destinationMarker=mMap.addMarker(new MarkerOptions().position(latLng) .icon(BitmapDescriptorFactory.fromResource(R.drawable.icon_destination_marker)) .title("Destination")); mMap.animateCamera(CameraUpdateFactory.newLatLngZoom(latLng, 15.0f)); BottomSheetRiderFragment mBottomSheet=BottomSheetRiderFragment.newInstance(String.format("%f,%f", currentLat, currentLng), String.format("%f,%f",latLng.latitude, latLng.longitude), true); mBottomSheet.show(getSupportFragmentManager(), mBottomSheet.getTag()); } }); mMap.setOnInfoWindowClickListener(this); }
Example 2
Source File: Home.java From Taxi-App-Android-XML with GNU General Public License v3.0 | 6 votes |
@Override public void onMapReady(GoogleMap googleMap) { mMap = googleMap; boolean success = googleMap.setMapStyle(new MapStyleOptions(getResources() .getString(R.string.style_json))); if (!success) { Log.e("Style", "Style parsing failed."); } LatLng jakarta = new LatLng(-6.232812, 106.820933); LatLng southjakarta = new LatLng(-6.22865,106.8151753); mMap.addMarker(new MarkerOptions().position(jakarta).icon(BitmapDescriptorFactory.fromBitmap(getBitmapFromView("Set Pickup Location", R.drawable.dot_pickup)))); mMap.addMarker(new MarkerOptions().position(southjakarta).icon(BitmapDescriptorFactory.fromBitmap(getBitmapFromView("Set Dropoff Location", R.drawable.dot_dropoff)))); mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(jakarta, 15f)); }
Example 3
Source File: DriverHome.java From UberClone with MIT License | 5 votes |
@Override public void onMapReady(GoogleMap googleMap) { mMap = googleMap; mMap.setTrafficEnabled(false); mMap.setIndoorEnabled(false); mMap.setBuildingsEnabled(false); mMap.getUiSettings().setZoomControlsEnabled(true); googleMap.setMapStyle(MapStyleOptions.loadRawResourceStyle(this, R.raw.uber_style_map)); }
Example 4
Source File: TripDetail.java From UberClone with MIT License | 5 votes |
@Override public void onMapReady(GoogleMap googleMap) { mMap = googleMap; googleMap.setMapStyle(MapStyleOptions.loadRawResourceStyle(this, R.raw.uber_style_map)); settingInformation(); }
Example 5
Source File: MyTrip.java From Taxi-App-Android-XML with GNU General Public License v3.0 | 5 votes |
@Override public void onMapReady(GoogleMap googleMap) { mMap = googleMap; boolean success = googleMap.setMapStyle(new MapStyleOptions(getResources() .getString(R.string.style_json))); if (!success) { Log.e("Style", "Style parsing failed."); } LatLng jakarta = new LatLng(-6.232812, 106.820933); mMap.addMarker(new MarkerOptions().position(jakarta).icon(BitmapDescriptorFactory.fromBitmap(getBitmapFromView("Set Pickup Location", R.drawable.dot_pickup)))); mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(jakarta, 15f)); }
Example 6
Source File: BaseNiboFragment.java From Nibo with MIT License | 5 votes |
@Override public void onMapReady(GoogleMap googleMap) { mMap = googleMap; mMap.getUiSettings().setMyLocationButtonEnabled(false); mMap.setMaxZoomPreference(20); if (getMapStyle() != null) { googleMap.setMapStyle(getMapStyle()); } }
Example 7
Source File: SnazzyMapsStyle.java From snazzymaps-browser with Apache License 2.0 | 5 votes |
/** * Shortcut for applying this style to a {@link GoogleMap}. * * @param map The {@link GoogleMap} object to style. */ void applyToMap(GoogleMap map) { try { map.setMapStyle(new MapStyleOptions(mJson.getString("json"))); } catch (JSONException e) { Log.e(TAG, e.toString()); } }
Example 8
Source File: ProfileActivity.java From mage-android with Apache License 2.0 | 4 votes |
@Override public void onMapReady(GoogleMap map) { SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(getApplicationContext()); map.setMapType(preferences.getInt(getString(R.string.baseLayerKey), getResources().getInteger(R.integer.baseLayerDefaultValue))); int dayNightMode = getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK; if (dayNightMode == Configuration.UI_MODE_NIGHT_NO) { map.setMapStyle(null); } else { map.setMapStyle(MapStyleOptions.loadRawResourceStyle(getApplicationContext(), R.raw.map_theme_night)); } if (latLng != null && icon != null) { map.addMarker(new MarkerOptions() .position(latLng) .icon(icon)); LocationProperty accuracyProperty = location.getPropertiesMap().get("accuracy"); if (accuracyProperty != null) { float accuracy = Float.parseFloat(accuracyProperty.getValue().toString()); int color = LocationBitmapFactory.locationColor(getApplicationContext(), location); map.addCircle(new CircleOptions() .center(latLng) .radius(accuracy) .fillColor(ColorUtils.setAlphaComponent(color, (int) (256 * .20))) .strokeColor(ColorUtils.setAlphaComponent(color, (int) (256 * .87))) .strokeWidth(2.0f)); double latitudePadding = (accuracy / 111325); LatLngBounds bounds = new LatLngBounds( new LatLng(latLng.latitude - latitudePadding, latLng.longitude), new LatLng(latLng.latitude + latitudePadding, latLng.longitude)); int minDimension = Math.min(mapView.getWidth(), mapView.getHeight()); int padding = (int) Math.floor(minDimension / 5f); map.animateCamera(CameraUpdateFactory.newLatLngBounds(bounds, padding)); } else { map.animateCamera(CameraUpdateFactory.newLatLngZoom(latLng, 17)); } } }