her/baidu-map

百度地图 SDK.

1.1.1 2019-10-20 15:11 UTC

This package is auto-updated.

Last update: 2024-04-13 08:46:18 UTC


README

可能是我用过的最好用的百度地图 SDK 了

Build Status StyleCI build status

环境要求

  • PHP >= 5.6
  • Composer
  • fileinfo 拓展(获取静态图需要用到)

安装

$ composer require "her-cat/baidu-map" -vvv

单元测试

$ composer test

使用

<?php

use HerCat\BaiduMap\Factory;

$config = [
    'ak' => 'your ak',
//    'sk' => 'your sk',
    'log' => [
        'file' => './baidu-map.log'
    ],
    'response_type' => 'array',
];

$webApi = Factory::webApi($config);

$result = $webApi->timezone->get('116.30815', '40.056878');

//    Array
//    (
//        [status] => 0
//        [timezone_id] => Asia/Shanghai
//        [dst_offset] => 0
//        [raw_offset] => 28800
//    )

文档

详细文档

Features

参考

License

MIT