0.0.1 • Published 7 years ago

shuaibin v0.0.1

Weekly downloads
3
License
ISC
Repository
github
Last release
7 years ago

cordova-plugin-reverseGeocoding

一个OC版的逆地理编码插件

该插件直到deviceready事件发生后才可用; document.addEventListener("deviceready", onDeviceReady, false); function onDeviceReady() { console.log("deviceready"); }

安装 cordova plugin add cordova-plugin-reverseGeocoding

支持的平台 iOS

使用示例 document.addEventListener("deviceready", onDeviceReady, false); function onDeviceReady() { function success(msg){ alert("定位成功:" + msg); };

function error(msg){ alert("定位失败:" + msg); };

cordova.plugins.reverseGeocoding.address(24.840882, 102.843752, success, error); }