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
When we want to add a shadow to a rectangle or ot...
symptom I set a crontab task on a centos7 host, b...
Table of contents 1. Introduction to platform bus...
1. Spring boot does not support jsp jar package, ...
First, let’s take an example: There is a type fie...
Asynchronous replication MySQL replication is asy...
When switching users in the docker container, it ...
Find the problem When retrieving the top SQL stat...
Table of contents Effects Documentation first ste...
1. Install kvm virtualization : : : : : : : : : :...
2D transformations in CSS allow us to perform som...
In our recent project, we need to use Google robo...
Table of contents Overview 1. Compositon API 1. W...
SpringBoot is like a giant python, slowly winding...
I always feel that designers are the most sensiti...