Fix typos in maps api

This commit is contained in:
Marvin W 2019-05-26 21:06:16 +02:00
parent 851e44341a
commit 059c1f520a
No known key found for this signature in database
GPG Key ID: 072E9235DB996F2A
2 changed files with 2 additions and 2 deletions

View File

@ -16,5 +16,5 @@ interface ICameraUpdateFactoryDelegate {
IObjectWrapper newLatLng(in LatLng latLng); IObjectWrapper newLatLng(in LatLng latLng);
IObjectWrapper newLatLngZoom(in LatLng latLng, float zoom); IObjectWrapper newLatLngZoom(in LatLng latLng, float zoom);
IObjectWrapper newLatLngBounds(in LatLngBounds bounds, int padding); IObjectWrapper newLatLngBounds(in LatLngBounds bounds, int padding);
IObjectWrapper newLatLngBoundsWithSize(in LatLngBounds bounds, int width, int height, int size); IObjectWrapper newLatLngBoundsWithSize(in LatLngBounds bounds, int width, int height, int padding);
} }

View File

@ -11,7 +11,7 @@ interface IMapFragmentDelegate {
IGoogleMapDelegate getMap(); IGoogleMapDelegate getMap();
void onInflate(IObjectWrapper activity, in GoogleMapOptions options, in Bundle savedInstanceState); void onInflate(IObjectWrapper activity, in GoogleMapOptions options, in Bundle savedInstanceState);
void onCreate(in Bundle savedInstanceState); void onCreate(in Bundle savedInstanceState);
IObjectWrapper onCreateView(IObjectWrapper layoutInflate, IObjectWrapper container, in Bundle savedInstanceState); IObjectWrapper onCreateView(IObjectWrapper layoutInflater, IObjectWrapper container, in Bundle savedInstanceState);
void onResume(); void onResume();
void onPause(); void onPause();
void onDestroyView(); void onDestroyView();