How to implement navigation function in WeChat Mini Program

How to implement navigation function in WeChat Mini Program

1. Rendering

2. Operation steps

1. 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.openLocation

Official 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"
  })
  }
 })
 }
})

Summarize

This 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:
  • How to implement map navigation function in WeChat applet
  • Detailed explanation of WeChat applet capsule button return | home page custom navigation bar function
  • WeChat applet custom navigation hide and show function
  • WeChat applet custom bottom navigation with jump function
  • Example of dynamically setting the navigation bar title function implemented by WeChat applet
  • WeChat applet MUI navigation bar transparent gradient function example (by changing opacity)
  • WeChat Mini Program Series: Custom Top Navigation Function
  • WeChat applet navigation bar sliding positioning function example (implementing CSS3 positionsticky effect)
  • WeChat applet map navigation function to achieve complete source code with renderings (recommended)
  • WeChat applet scroll-view realizes the function of scrolling to the anchor point on the left navigation bar to order food (click on the type and scroll to the anchor point)

<<:  MySQL database master-slave configuration tutorial under Windows

>>:  Example of configuring multiple SSL certificates for a single Nginx IP address

Recommend

Example of integrating Kafka with Nginx

background nginx-kafka-module is a plug-in for ng...

Detailed tutorial on installing Docker on CentOS 7.5

Introduction to Docker Docker is an open source c...

Detailed description of mysql replace into usage

The replace statement is generally similar to ins...

Detailed explanation of Vue's calculated properties

1. What is a calculated attribute? In plain words...

A brief discussion on the maximum number of open files for MySQL system users

What you learn from books is always shallow, and ...

Add ico mirror code to html (favicon.ico is placed in the root directory)

Code: Copy code The code is as follows: <!DOCTY...

Detailed explanation of nodejs built-in modules

Table of contents Overview 1. Path module 2. Unti...

Docker connects to a container through a port

Docker container connection 1. Network port mappi...

Mysql command line mode access operation mysql database operation

Usage Environment In cmd mode, enter mysql --vers...

JS ES new features: Introduction to extension operators

1. Spread Operator The spread operator is three d...

Upgrade Docker version of MySQL 5.7 to MySQL 8.0.13, data migration

Table of contents 1. Back up the old MySQL5.7 dat...

v-for directive in vue completes list rendering

Table of contents 1. List traversal 2. The role o...

Node uses async_hooks module for request tracking

The async_hooks module is an experimental API off...

CSS to achieve the sticky effect of two balls intersecting sample code

This is an effect created purely using CSS. To pu...