PC Futures
Results
2
issues of
PC Futures
General cleaning of code: - Set all indentation to 4 spaces instead of tabs/2 spaces/3 spaces (?!) etc. - Wrapped lines that were too long - Removed unnecessary line breaks
Currently, Geocoder.geocodePosition() takes an object like: ```JavaScript { lat: 40.7809261, lng: -73.9637594, } ``` this PR allows `lat` and `lng` to be `latitude` or `longitude` instead, respectively: ```JavaScript { latitude:...