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