Skip to content

Instantly share code, notes, and snippets.

@rterp
Created August 19, 2016 22:08
Show Gist options
  • Save rterp/732aabb6edda59a72d18649dcbba73e6 to your computer and use it in GitHub Desktop.
Save rterp/732aabb6edda59a72d18649dcbba73e6 to your computer and use it in GitHub Desktop.
@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