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
console.log("%cBALDEMARUCHO", "color: green; font-size: 50px; text-shadow: 2px 2px 0 red, 3px 3px 0 blue;"); |
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
<script> | |
var centerControlDiv = document.createElement('div') | |
var centerControl = new CenterControl(centerControlDiv, map) | |
centerControlDiv.index = 1 | |
map.controls[google.maps.ControlPosition.TOP_RIGHT].push(centerControlDiv) | |
//Custom google map view | |
function CenterControl(controlDiv, map) { | |
// Set CSS for the control border. | |
var controlUI = document.createElement('div'); |