Skip to content

Instantly share code, notes, and snippets.

@rterp
Created August 19, 2016 22:08
Embed
What would you like to do?
@Override
public void mapInitialized() {
MapOptions options = new MapOptions();
options.center(new LatLong(47.606189, -122.335842))
.zoomControl(true)
.zoom(12)
.overviewMapControl(false)
.mapType(MapTypeIdEnum.ROADMAP);
GoogleMap map = mapView.createMap(options);
directionsService = new DirectionsService();
directionsPane = mapView.getDirec();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment