@Override | |
public void mapInitialized() { | |
geocodingService = new GeocodingService(); | |
MapOptions mapOptions = new MapOptions(); | |
mapOptions.center(new LatLong(47.6097, -122.3331)) | |
.mapType(MapTypeIdEnum.ROADMAP) | |
.overviewMapControl(false) | |
.panControl(false) | |
.rotateControl(false) | |
.scaleControl(false) | |
.streetViewControl(false) | |
.zoomControl(false) | |
.zoom(12); | |
map = mapView.createMap(mapOptions); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment