1. Baidu Map API Access1. Search Baidu Map Development Platform 2. Register a Baidu account 3. Log in and apply to become a developer 4. Select the console on the homepage of the Baidu Map Development Platform and create an application in the console After creating the application, you can see it in the console's My Applications. The most important thing is AK, which is a special key assigned to our application by Baidu Maps. You must use the key to access the Baidu Maps API. 2. Using Baidu Map API in HTML1. Introduce Baidu map js file in HTML<script type="text/javascript" src="http://api.map.baidu.com/api?v=1.0&type=webgl&ak=your key"></script> Replace the value after ak with our own secret key. 2. Define a DIV in the web page to display the mapThe DIV that displays the map must have an id attribute. 3. Display the map on the web pageBasic steps: var map = new BMapGL.Map("container"); // Create a map instance var point = new BMapGL.Point(116.404, 39.915); // Create point coordinates by latitude and longitude of geographic location map.centerAndZoom(point, 15); // Initialize the map, set the center point coordinates and map level Optional steps: map.centerAndZoom(point, 15); // Initialize the map, set the center point coordinates and map levelmap.enableScrollWheelZoom(true); // Enable mouse wheel zoommap.setMapType(BMAP_EARTH_MAP); // Set the map type to earth mode 4. Add optional controlsvar scaleCtrl = new BMapGL.ScaleControl(); // Add scale controlmap.addControl(scaleCtrl); var zoomCtrl = new BMapGL.ZoomControl(); // Add zoom controlmap.addControl(zoomCtrl); var cityCtrl = new BMapGL.CityListControl(); // Add city list controlmap.addControl(cityCtrl); var locationControl = new BMapGL.LocationControl(); // Add positioning controlmap.addControl(locationControl); 5. Positioning functionBaidu Maps supports browser positioning and IP positioning. When browser positioning fails, IP positioning will be used by default. Browser positioning is more accurate, while IP positioning can only locate an approximate location. Baidu Maps' built-in positioning control does not use IP positioning //Get the current geographic location and move the center of the map to the positioning location var geolocation = new BMapGL.Geolocation(); //Create a positioning object geolocation.getCurrentPosition(function (r) { //Call the positioning function through the positioning object, the callback function parameter r represents the positioning result if (this.getStatus() == BMAP_STATUS_SUCCESS) { //If the positioning is successful var mk = new BMapGL.Marker(r.point); //Create a marker, r is the positioning result, r.point is the current positioning location map.addOverlay(mk); //Add the marker object to the map map.panTo(r.point); //Move the map center to the positioning location // alert('Your location: ' + r.point.lng + ',' + r.point.lat); } else { alert('failed' + this.getStatus()); } }); 6. Add map markers//Add click event to the mapmap.addEventListener("click",function(e){ //Parameter name e map click event source //console.log(e.latlng.lng+","+e.latlng.lat); var mk = new BMapGL.Marker(e.latlng); //Create a marker, r is the positioning result, r.point is the current positioning location map.addOverlay(mk); //Add the marker object to the map }) 7. Add click events to map markers//Add click event to the mapmap.addEventListener("click",function(e){ //Parameter name e map click event source //console.log(e.latlng.lng+","+e.latlng.lat); var mk = new BMapGL.Marker(e.latlng);//Create a marker, r is the positioning result, r.point is the current positioning locationmk.addEventListener("click",function(){//Add a click event to the markerconsole.log(this);//this refers to the marker//Because the marker is a subtag of the map object map, when we click the marker, bubbles will appear and the click event of the map will also be triggered//You can use the stopPropagation function of the event source object to organize subsequent event bubblesevent.stopPropagation(); }); map.addOverlay(mk); //Add the marker object to the map}) 8. Add information window//Add information window (encapsulated function) function addInfoWindow(content,point,width,height,title) { //Required parameters content and point //content can be either text or a label //point is the latitude and longitude of a geographic location //The following three parameters are optional var opts = { width: width, // information window width height: height, // information window height title: title // information window title} var infoWindow = new BMapGL.InfoWindow(content, opts); // Create information window object map.openInfoWindow(infoWindow, point); // Open the information window } 9. Path PlanningDriving route planning //Driving route planning object //This object must be created after the map is loaded. It is usually placed after the map object map is created. And a web page should only be created once, otherwise the last planned path will not be cleared. driving = new BMapGL.DrivingRoute(map, { renderOptions: { map: map, autoViewport: true } }); //Use the path planning object to find the route driving.clearResults(); //Clear the last planned path from the map driving.search(startPoint, endPoint); //Start path planning, pass in the start point and end point Bus route planning //Bus route planning object //The creation of bus route planning object must be done after the map is loaded. It is usually placed after the map object map is created. And a web page should only be created once, otherwise the last planned route will not be cleared. transit = new BMapGL.TransitRoute(map, { renderOptions: { map: map }, onSearchComplete: function (results) { if (transit.getStatus() != BMAP_STATUS_SUCCESS) { return; } //alert(results.getNumPlans());//Get the total number of bus planning schemes//Design the html template for bus route planning display here var output = ''; for(var i=0;i<results.getNumPlans();i++){ var plan = results.getPlan(i); output +='<div style="margin-top:5px; background-color:#CCC"><p>Total duration:'+plan.getDuration(true)+'</p>';//Get timeoutput += '<p>Total distance:'+plan.getDistance(true)+'</p>'; //Get distanceoutput +=plan.getDescription(true)+"</div>"; } $('#result').css('display', 'block'); //#result is a div we defined ourselves. We hide it by absolute positioning. The path planning is successfully displayed. $('#result').html(output); // Put the assembled path planning HTML tag template into the #result div to display it. }, }); transit.clearResults(); // Clear the last planned route transit.search(startPoint, endPoint); // Bus route planning 10. Forward and reverse address resolutionFind location based on latitude and longitude // Create a geocoding instance var myGeo = new BMapGL.Geocoder(); // Get the address description based on the coordinates myGeo.getLocation(longitude and latitude coordinates, function(result){ //funcation is a callback function that is executed only after specific geographic information is found if (result){ alert(result.address); } }); Query latitude and longitude coordinates based on geographic location //Create an address parser instance var myGeo = new BMapGL.Geocoder(); // Display the address resolution result on the map and adjust the map view myGeo.getPoint(address string (Hongqihegou, Chongqing), function(point){ if(point){ //point is the latitude and longitude point}else{ alert('The address you selected did not resolve to any result!'); } }, optional parameter) //Optional parameter to pass in the city name. If not passed, search globally. Pass in the city name and search only in this city. This concludes this article on the steps to access Baidu Map API with JavaScript. For more information on how to access Baidu Map with JavaScript, please search previous articles on 123WORDPRESS.COM or continue browsing the related articles below. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: The process of installing SVN on Ubuntu 16.04.5LTS
>>: Analysis of a MySQL deadlock scenario example
MySQL replace and replace into are both frequentl...
Introduction react-i18next is a powerful internat...
1. Enter the virtualization vcenter, log in with ...
Table of contents Preface What are dynamic proper...
This article example shares the specific code for...
CSS naming rules header: header Content: content/c...
This article records the installation tutorial of...
Table of contents Preface Front-end structure Bac...
Table of contents Where are the logs stored? View...
1. Background Although I have read many blogs or ...
Prerequisites: Docker is already installed 1. Fin...
[LeetCode] 180. Consecutive Numbers Write a SQL q...
Use Javascript to implement a drop-down menu for ...
View container logs First, use docker run -it --r...
1. Add a new user Only allow local IP access crea...