fix(native-geocoder): fix callback order

This commit is contained in:
Ibby 2017-01-20 16:00:05 -05:00
parent 911537b61b
commit dbf95ea4bd

View File

@ -17,6 +17,8 @@ import { Plugin, Cordova } from './plugin';
* .then((coordinates: ForwardResult) => console.log("The coordinates are latitude=" + coordinates.latitude + " and longitude=" + coordinates.longitude)) * .then((coordinates: ForwardResult) => console.log("The coordinates are latitude=" + coordinates.latitude + " and longitude=" + coordinates.longitude))
* .catch((error: any) => console.log(error)); * .catch((error: any) => console.log(error));
* ``` * ```
* @interfaces
*
*/ */
@Plugin({ @Plugin({
name: 'NativeGeocoder', name: 'NativeGeocoder',
@ -33,7 +35,9 @@ export class NativeGeocoder {
* @param longitude {number} The longitude * @param longitude {number} The longitude
* @return {Promise<any>} * @return {Promise<any>}
*/ */
@Cordova() @Cordova({
callbackOrder: 'reverse'
})
static reverseGeocode(latitude: number, longitude: number): Promise<ReverseResult> { return; } static reverseGeocode(latitude: number, longitude: number): Promise<ReverseResult> { return; }
/** /**
@ -41,7 +45,9 @@ export class NativeGeocoder {
* @param addressString {string} The address to be geocoded * @param addressString {string} The address to be geocoded
* @return {Promise<any>} * @return {Promise<any>}
*/ */
@Cordova() @Cordova({
callbackOrder: 'reverse'
})
static forwardGeocode(addressString: string): Promise<ForwardResult> { return; } static forwardGeocode(addressString: string): Promise<ForwardResult> { return; }
} }