I am trying to change marker icon. I get the image from one server directory.
When I put break point every time the \"bit\" result is null
. And when I run t
Inside "onMapReady(GoogleMap googleMap)"
MarkerOptions marker = new MarkerOptions();
marker.icon(BitmapDescriptorFactory.fromResource(R.drawable._icon));
mMap = googleMap;
LatLng sydney = new LatLng(Lat,Lng);
mMap.addMarker(new MarkerOptions().position(sydney).title("Marker in Sydney").icon(BitmapDescriptorFactory.fromResource(R.drawable.icon)));
mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(sydney,12.0f));