@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