Created
August 19, 2016 22:08
-
-
Save rterp/732aabb6edda59a72d18649dcbba73e6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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