我是使用作曲家包的新手。我已经完成了一些工作,但我遇到了一个我想使用的 Google 地图包,但我无法正确加载它。
我尝试使用该软件包:
<?php
require './vendor/autoload.php';
use \PHPGoogleMaps\Service\Geocoder;
use \PHPGoogleMaps\Service\GeocodeError;
use \PHPGoogleMaps\Service\GeocodeResult;
use \PHPGoogleMaps\Service\GeocodeException;
$map = new \PHPGoogleMaps\Map;
// Rest of GMap code goes here...
?>
这失败并显示消息Class 'PHPGoogleMaps\Map' not found
作曲家.json 文件:
{
"require" : {
"nategood/httpful":"*",
"nesbot/carbon": "dev-master",
"php-google-maps/php-google-maps": "dev-master"
}
}