1. Rendering2. Operation steps1. Apply for Tencent Map key——Address 2. Add Tencent plug-in to the mini program background - development document 3. Mini Program Code app.json Settings let plugin = requirePlugin('routePlan'); let key = ''; //Use the key applied for in Tencent location service let referer = ''; //The name of the app that calls the plugin let endPoint = JSON.stringify({ //End point 'name': 'Yoshinoya (Beijing West Railway Station North Exit)', 'latitude': 39.89631551, 'longitude': 116.323459711 }); wx.navigateTo({ url: 'plugin://routePlan/index?key=' + key + '&referer=' + referer + '&endPoint=' + endPoint }); Or you can also use the built-in map navigation of the applet Use the applet built-in map wx.getLocation and wx.openLocationOfficial website link //wxml <button type="default" bindtap="openMap">Open map</button> //js Page({ data: { }, openMap: function () { wx.getLocation({ type: 'gcj02', // default is wgs84 returns gps coordinates, gcj02 returns coordinates that can be used for wx.openLocation success: function (res) { // success console.log(res.latitude); console.log(res.longitude); wx.openLocation({ latitude: res.latitude, // Latitude, range is -90~90, negative number indicates south latitude longitude: res.longitude, // Longitude, range is -180~180, negative number indicates west longitude scale: 28, // Scaling ratio name:"Name of the place to be found (such and such restaurant)", address: "Address: Detailed description of the place to go" }) } }) } }) SummarizeThis is the end of this article about how to implement navigation in WeChat Mini Programs. For more information about the navigation function in WeChat Mini Programs, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: MySQL database master-slave configuration tutorial under Windows
>>: Example of configuring multiple SSL certificates for a single Nginx IP address
background nginx-kafka-module is a plug-in for ng...
Introduction to Docker Docker is an open source c...
The replace statement is generally similar to ins...
1. What is a calculated attribute? In plain words...
What you learn from books is always shallow, and ...
Code: Copy code The code is as follows: <!DOCTY...
Table of contents Overview 1. Path module 2. Unti...
Docker container connection 1. Network port mappi...
Usage Environment In cmd mode, enter mysql --vers...
1. Percentage basis for element width/height/padd...
1. Spread Operator The spread operator is three d...
Table of contents 1. Back up the old MySQL5.7 dat...
Table of contents 1. List traversal 2. The role o...
The async_hooks module is an experimental API off...
This is an effect created purely using CSS. To pu...