dependencies { compile 'com.google.android.support:wearable:1.2.0' provided 'com.google.android.wearable:wearable:1.0.0' }
<application> <uses-library android:name="com.google.android.wearable" android:required="false" /> ... </application>
<uses-permission android:name="android.permission.WAKE_LOCK" />
[ { "featureType": "water", "elementType": "geometry.fill", "stylers": [ { "color": "#cc00ff" } ] },{ "elementType": "labels", "stylers": [ { "visibility": "off" } ] } ]
[ { "stylers": [ { "visibility": "off" } ] },{ "featureType": "landscape", "stylers": [ { "visibility": "on" }, { "color": "#e5e3df" } ] },{ "featureType": "water", "elementType": "geometry", "stylers": [ { "visibility": "on" }, { "color": "#d4d4d4" } ] } ]
<script src="https://maps.googleapis.com/maps/api/js"></script> ... <script> function initMap() { var map = new google.maps.Map(document.getElementById('map'), { center: {lat: -34.397, lng: 150.644}, zoom: 8 }); } google.maps.event.addDomListener(window, 'load', initMap); </script>
<script> function initMap() { var map = new google.maps.Map(document.getElementById('map'), { center: {lat: -34.397, lng: 150.644}, zoom: 8 }); } </script> <script src="https://maps.googleapis.com/maps/api/js?callback=initMap" async defer></script>
<fragment android:id="@+id/streetview" android:name= "com.google.android.gms.maps.StreetViewPanoramaFragment" android:layout_width="match_parent" android:layout_height="match_parent"/>
streetViewPanorama.setPosition(targetLatLng); StreetViewPanoramaCamera camera = new StreetViewPanoramaCamera(zoom, tilt, bearing); mStreetViewPanorama.animateTo(camera, duration);
mAnimHandler.post(new Runnable() { @Override public void run() { marker.setIcon(mSteamFrames.nextFrame()); // Next frame in 32 ms mAnimHandler.postDelayed(this, 32); } });
ColorMatrix desatMatrix = new ColorMatrix(); desatMatrix.setSaturation(restaurantRating); ColorFilter paintColorFilter = new ColorMatrixColorFilter(desatMatrix); Paint paint = new Paint(); paint.setColorFilter(paintColorFilter); Canvas canvas = new Canvas(newImage); canvas.drawBitmap(oldImage, 0, 0, paint);
compile 'com.google.maps.android:android-maps-utils:0.3+'
public interface ClusterItem { LatLng getPosition(); }
mClusterManager = new ClusterManager<>(this, mMap); mMap.setOnCameraChangeListener(mClusterManager); mMap.setOnMarkerClickListener(mClusterManager);
mClusterManager.addItem(clusterItem);
mHeatmapTileProvider = new HeatmapTileProvider.Builder() .data(mLatLngCollection) .build();
mTileOverlay = mMap.addTileOverlay( new TileOverlayOptions().tileProvider(mHeatmapTileProvider));
Give us feedback in our Product Forums.