Guest User

Untitled

a guest
Mar 19th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. this.layer.setMap(null);
  2.  
  3. // Uncheck the box per default
  4. $("#check_layer").prop("checked", false);
  5.  
  6. $("#check_layer").change(function() {
  7. if ($("#check_layer").prop("checked")) {
  8. that.layer.setMap(that.map);
  9. } else {
  10. that.layer.setMap(null);
  11. }
  12. }).change();
Add Comment
Please, Sign In to add comment