This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"featureType": "administrative", | |
"stylers": [ | |
{ | |
"visibility": "off" | |
} | |
] | |
}, | |
{ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# -*- coding: utf-8 -*- | |
# git redmine | |
# - show all issue list | |
# | |
# git redmine n | |
# - show issue #n | |
# | |
# git redmine issue n status_id |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($){ | |
var TILE_SIZE = 256; | |
var TILE_URL = "http://tile.openstreetmap.org/"; | |
$.fn.staticMap = function(point, lines, zoom){ | |
return this.each(function(i){ | |
var _this = this; | |
var width = $(this).width(); | |
var height = $(this).height(); |