Created
May 21, 2015 12:34
-
-
Save zkkmin/3951f9fe5824462d46e4 to your computer and use it in GitHub Desktop.
This file contains 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 ZoomTo(xVal, yVal) { | |
// Remove the class open from divResults, | |
// so that it will slide back out of view | |
var drawer = document.getElementById("divResults"); | |
drawer.classList.toggle('open'); | |
/// | |
OneMap.showLocation(xVal, yVal); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment