-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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): add missing features and fix wrong definitions #1815
Merged
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
c7d1f23
Update index.ts
wf9a5m75 f20d61a
Update index.ts
wf9a5m75 17a06ec
Add missing features, and bug fix of methods
7dabc77
update: classname must be in pascal case
9897a1e
remove: duplicated class definition
c476025
export encode and spherical static classes
dde96b1
Add comma
ccee755
Fix Encoding and Spherical
ihadeed 46127c0
Add convenience methods
ihadeed 9216c00
Fix decorators for Encoding and Spherical
ihadeed 1720dcc
Update: getMap() methods return the instance of the wrapper plugin
wf9a5m75 980f35d
Update: getMap() methods return the instance of the wrapper plugin
wf9a5m75 4b29aec
Remove `@CordovaInstance` decorators from getMap()
wf9a5m75 dd77ec4
Update: GoogleMapOptions (all fields are not optional).
wf9a5m75 93311ea
Follow up: version `2.0.0-beta2-20170719-2226` of cordova-plugin-goo…
wf9a5m75 2337316
Fix: tslint error
wf9a5m75 73a670b
Fix: tslint error
wf9a5m75 e679868
No more isAvailable() method.
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Remove the
@CordovaIntance
decorator from thegetMap
methods.Cordova
,CordovaInstance
,CordovaProperty
andInstanceProperty
decorators override your custom definition. Since you are defining your own functionality here, you have to remove the decorators.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.
Could you tell me how different each decorators
Cordova
,CordovaInstance
,CordovaProperty
andInstanceProperty
?Where should I read the document?