Last active
September 17, 2016 19:04
-
-
Save Pan-Maciek/de334d0dc4931a0e0dad5292ebea53e3 to your computer and use it in GitHub Desktop.
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
var powiekszenie = 15 | |
$(document).ready(function () { | |
$("#przesuwanie3").on("input", function () { | |
powiekszenie = parseInt($("#przesuwanie3").val()) | |
$("#mapa").gmap3({ | |
map: { | |
options: { | |
zoom: powiekszenie | |
} | |
} | |
}) | |
}) | |
$("#mapa").gmap3({ | |
map: { | |
options: { | |
center: [50.047074, 19.921541], | |
zoom: powiekszenie, | |
disableDefaultUI: true | |
}, | |
} | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment