sparkscoding/static-maps
Composer 安装命令:
composer require sparkscoding/static-maps
包简介
A PHP library to make working with the Google Static Maps API a little more friendly.
README 文档
README
A PHP library to make working with the Google Static Maps API (and, eventually, others) a little more friendly.
Note: This library is in active development. Refactoring needs to be done, features need added, and the API needs finalized. While the code should be relatively stable, you're cautioned against using this in a production environment.
Installation
Composer is the recommended method of installation.
composer require sparkscoding/static-maps
Quick Example
use SparksCoding\StaticMaps\StaticMap; use SparksCoding\StaticMaps\Components\Map; use SparksCoding\StaticMaps\Components\Marker; use SparksCoding\StaticMaps\Components\Feature; use SparksCoding\StaticMaps\Components\Element; use SparksCoding\StaticMaps\Components\Path; // Initialize the map by adding your API key $staticMap = StaticMap::key('123yOUrAPIkeYGoeSHerE123'); // Set the builder $staticMap->setBuilder( '\SparksCoding\StaticMaps\Builders\GoogleStaticMapBuilder' ); // Add a map $staticMap->setMap( Map::create()->center('New York, NY')->zoom(10) ); // Add a couple markers $staticMap->addMarkers( Marker::location('New York, NY'), Marker::location('Brooklyn, NY') ); // Style the roads $staticMap->addStyles( Feature::name('road')->elements( Element::name('geometry')->color('blue') ) ); // Add a path $staticMap->addPath( Path::points([ 'Empire State Building', 'Webster Hall', 'The Spotted Pig', 'The High Line', 'Empire State Building', ])->color('0x000000ff')->fillcolor('0xFFFF0033')->weight(2) ); echo '<img src="' . $staticMap->uri() . '">';
Output:
Documentation
Documentation, including installation instructions and examples, can be found on the Wiki.
统计信息
- 总下载量: 12.83k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 8
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-07-03
