-
Notifications
You must be signed in to change notification settings - Fork 600
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(google-maps): Refactored options and added feature to update the map options #1618
Conversation
4c9160f
to
6444061
Compare
I also fixed an issue with the padding values in Android, that were used as DP value. I used the |
a375723
to
c80305e
Compare
c80305e
to
586c177
Compare
586c177
to
ac75252
Compare
@@ -19,13 +20,6 @@ | |||
CAP_PLUGIN_METHOD(disableClustering, CAPPluginReturnPromise); | |||
CAP_PLUGIN_METHOD(destroy, CAPPluginReturnPromise); | |||
CAP_PLUGIN_METHOD(setCamera, CAPPluginReturnPromise); | |||
CAP_PLUGIN_METHOD(getMapType, CAPPluginReturnPromise); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a breaking change - these should be kept, perhaps marked as deprecated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ac75252#diff-e887271a6e743973df748b0b83f29f5250ad28c088c82e1aacadfbb4ffc3d1b4R460
The method still exists in the map.ts with the same return type and is marked as deprecetd there. It was just removed from the native implementations because its replaced by the new solution.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you still waiting for an update here or is it 'solved' with my comment? I just want to make sure that I am not the reason why this is on hold.
ac75252
to
13b9ec7
Compare
0326863
to
4e7c35b
Compare
4e7c35b
to
6c9963d
Compare
This refactorings simplify the map options handling and therefore remove many methods, that can now be set in the instantiation of the map but also be updated with a new method.
Closes #1617