📅  最后修改于: 2023-12-03 14:57:12.585000             🧑  作者: Mango
在使用 Google Map API 前,需要先获取 API Key。下面介绍如何在 PHP 中获取 Google Map API Key。
首先需要创建一个 Google Cloud Platform 帐号。如果已有 Google 帐号,则可直接登录。如果没有,则需要先注册。
在 Google Cloud Platform 控制台中创建一个新项目。具体操作如下:
点击“选择项目”按钮,然后点击“新建项目”按钮。
输入项目名称和所属组织,然后点击“创建”按钮。
获取了 API Key 后,就可以在 PHP 中使用 Google Map API 了。示例代码如下:
<?php
$api_key = "your-api-key";
$url = "https://maps.googleapis.com/maps/api/js?key=" . $api_key;
?>
<!DOCTYPE html>
<html>
<head>
<title>Google Map API Example</title>
<script src="<?php echo $url ?>"></script>
</head>
<body>
<div id="map"></div>
<script>
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 8,
center: {lat: 37.7749, lng: -122.4194}
});
}
initMap();
</script>
</body>
</html>
以上示例代码中 $api_key
需要替换为真正的 API Key。
以上是在 PHP 中获取 Google Map API 的步骤。需要注意的是,获取 API Key 后应该妥善保管,避免泄露造成安全问题。