Home  >  Article  >  Backend Development  >  Use PHP and Baidu Map API to generate and display static maps

Use PHP and Baidu Map API to generate and display static maps

WBOY
WBOYOriginal
2023-07-31 12:06:371645browse

Use PHP and Baidu Map API to generate and display static maps

1. Overview
In many web applications, maps need to be generated and displayed according to user needs. This article will introduce how to use PHP and Baidu Map API to generate and display static maps. Through Baidu Map API, we can flexibly control the size, field of view, marker points and other contents of the map to meet the needs of different scenarios.

2. Environment preparation
Before starting, make sure that PHP and the corresponding Web server environment have been installed. At the same time, you need to apply for and obtain the key of Baidu Map API. You can register an account on Baidu Open Platform and create an application to obtain an API key.

3. Use Baidu Map API to generate static maps

  1. Import Baidu Map API
    First, introduce the JavaScript file of Baidu Map API into the PHP page. The code is as follows:
<script src="http://api.map.baidu.com/api?v=2.0&ak=您的密钥"></script>

Replace "your key" in the above code with your own Baidu Maps API key.

  1. Create a map container
    Next, create a container for displaying the map in the HTML page. You can use a dc6dce4a544fdca2df29d5ac0ea9906b element, the code is as follows:
<div id="map"></div>
  1. Generate a static map
    Use the BMap.Map# provided by Baidu Map API ## Class, you can create a map instance object and specify the center point, zoom level and container of the map. The code is as follows:
  2. <script>
        // 创建地图实例
        var map = new BMap.Map("map");
        // 设置地图中心点和缩放级别
        var point = new BMap.Point(116.404, 39.915);
        map.centerAndZoom(point, 15);
    </script>
Replace the latitude and longitude in the above code with the latitude and longitude of the center point of the map you need to display.

    Add marker points
  1. If you need to add marker points on the map, you can use the
    BMap.Marker class. The code is as follows:
  2. <script>
        // 添加标记点
        var marker = new BMap.Marker(point);
        map.addOverlay(marker);
    </script>
Put the above code after the code that generates the map, and you can display a marker point on the map.

4. Generate static map with PHP

    Get the URL of Baidu Map Static Map API
  1. Use Baidu Map API to generate the URL of static map. The code is as follows:
  2. $ak = '您的密钥';
    $center = '116.404, 39.915';
    $zoom = 15;
    $width = 500;
    $height = 300;
    $url = 'http://api.map.baidu.com/staticimage/v2?ak=' . $ak . '&center=' . $center . '&zoom=' . $zoom . '&width=' . $width . '&height=' . $height;
Replace "your key" in the above code with your own Baidu Map API key, and set the longitude and latitude of the map center point, zoom level and image as required. width and height.

    Generate a static map and display it
  1. Using the URL obtained in the previous step, you can generate a static map and display it on the page. The code is as follows:
  2. echo '<img src="' . $url . '">';
Put the above code at the appropriate location in the PHP page, and the generated static map can be displayed on the page.

The above is a simple example of using PHP and Baidu Map API to generate and display static maps. By flexibly adjusting parameters in the code, static maps that meet different needs can be generated. I hope this article can provide you with some help in using maps in web application development.

The above is the detailed content of Use PHP and Baidu Map API to generate and display static maps. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn