Google Maps API Flashcards

1
Q

What are some of the features of the Google Maps API

A

● Google Maps comes packaged with many features including geospatial data, mapping tools, map details, map gesture responses, map locations, etc.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the features in Maps SDK for Android

A

– Adding maps to an Android application
– Customizing the maps to include things like markers, custom colors, or custom icons
– Control the user’s view through rotation, tilt, zoom, and various other perspectives
– Add street view to a given application

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Lowest Android version for Maps SDK

A

4

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the API key

A

The API key is a unique identifier that authenticates requests associated with your project for usage and billing purposes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the elements of interest in maps activity file

A

● SupportMapFragment object manages the life cycle of the
map and is the parent element of the app’s UI.
● GoogleMap object provides access to the map data and view.
● moveCamera function centers the map at the LatLng coordinates for Sydney Australia.
● addMarker function adds a marker to the coordinates for
Sydney

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are the elements of interest in activity_maps.xml file

A

● tools:context sets the default activity of the fragment to
MapsActivity, which is defined in the maps activity file.
● android:name sets the class name of the fragment to
SupportMapFragment, which is the fragment type used
in the maps activity file.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly