Skip to content

Instantly share code, notes, and snippets.

View mickaelmonsieur's full-sized avatar
🇲🇩
hey hey

Mickael mickaelmonsieur

🇲🇩
hey hey
View GitHub Profile
@wouterds
wouterds / convert-mapstylejson-to-urlargs.php
Created January 27, 2015 14:42
Convert google maps style json to url arguments to use for google maps static images.
<?php
public function mapStylesUrlArgs($mapStyleJson)
{
$params = [];
foreach (json_decode($mapStyleJson, true) as $style) {
$styleString = '';
if (isset($style['stylers']) && count($style['stylers']) > 0) {