How to use Mini Program api to get the user's geographic location
Today, I would like to share with you how to use Mini Program api to obtain users' geographical location related knowledge points, the content is detailed, the logic is clear, I believe most people still know too much about this knowledge, so share this article for your reference, I hope you can get something after reading this article, let's learn about it.
API
In order to make it easy for developers to call up the capabilities provided by Wechat, such as access to user information, WeChat Pay, etc., Mini Program provides a lot of API for developers to use.
To get the user's geographic location, simply:
Wx.getLocation ({
Type: 'wgs84'
Success: (res) = > {
Var latitude = res.latitude / / longitude
Var longitude = res.longitude / / latitude
}
})
To call Wechat to scan the ability, you only need to:
Wx.scanCode ({
Success: (res) = > {
Console.log (res)
}
})
It is important to note that most API callbacks are asynchronous, and you need to deal with the async of code logic.
The above is all the content of the article "how to use Mini Program api to get users' geographic location". Thank you for reading! I believe you will gain a lot after reading this article. The editor will update different knowledge for you every day. If you want to learn more knowledge, please pay attention to the industry information channel.