Android Google Map
Android provides facility to integrate Google map in our application. Google map displays your current location, navigate location direction, search location etc. We can also customize Google map according to our requirement.
Types of Google Maps
There are four different types of Google maps, as well as an optional to no map at all. Each of them gives different view on map. These maps are as follow:
- Normal: This type of map displays typical road map, natural features like river and some features build by humans.
- Hybrid: This type of map displays satellite photograph data with typical road maps. It also displays road and feature labels.
- Satellite: Satellite type displays satellite photograph data, but doesn't display road and feature labels.
- Terrain: This type displays photographic data. This includes colors, contour lines and labels and perspective shading.
- None: This type displays an empty grid with no tiles loaded.
Syntax of different types of map
Methods of Google map
Google map API provides several methods that help to customize Google map. These methods are as following:
Methods | Description |
---|---|
addCircle(CircleOptions options) | This method add circle to map. |
addPolygon(PolygonOptions options) | This method add polygon to map. |
addTileOverlay(TileOverlayOptions options) | This method add tile overlay to the map. |
animateCamera(CameraUpdate update) | This method moves the map according to the update with an animation. |
clear() | This method removes everything from the map. |
getMyLocation() | This method returns the currently displayed user location. |
moveCamera(CameraUpdate update) | This method reposition the camera according to the instructions defined in the update. |
setTrafficEnabled(boolean enabled) | This method set the traffic layer on or off. |
snapshot(GoogleMap.SnapshotReadyCallback callback) | This method takes a snapshot of the map. |
stopAnimation() | This method stops the camera animation if there is any progress. |
0 comments:
Post a Comment