0
上の特定の領域を教えてくださいことはできますか?表示Googleマップ
上の特定の領域を教えてくださいことはできますか?表示Googleマップ
チェック:地域を使用でき
にカメラを制限するhttps://developers.google.com/maps/documentation/android-api/views#restrict-panning
:
private GoogleMap mGoogleMap;
// Create a LatLngBounds that includes Australia.
private LatLngBounds YOUR_CITY_OR_COUNTRY = new LatLngBounds(
new LatLng(-23, -66), new LatLng(-43, -68));
// Set the camera to the greatest possible zoom level that includes the
// bounds
mGoogleMap.setLatLngBoundsForCameraTarget(YOUR_CITY_OR_COUNTRY);