Created
August 17, 2016 14:57
-
-
Save maptastik/8c15866dea4e404f7730c499eb61084a to your computer and use it in GitHub Desktop.
Remove parcel lines from Fayette County Pictometry maps in qPublic app
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
// 1. Click Pictometry link for a parcel | |
// 2. Open up your console (F12 in Chrome) | |
// 3. In the console, hit ctrl-shift-c or hit the "Select an element in a page to inspect it" button in the top left corner | |
// 4. In the window with the Pictometry imagery, click anywhere on the image. | |
// 5. In the console, go to Sources>Snippets. If this code isn't there, add it. | |
// 6. Right click this script in the Snippets tab and hit "Run" | |
function removeParcel(){ | |
var element = document.getElementById("OpenLayers_Layer_Vector_45"); | |
element.parentNode.removeChild(element); | |
} | |
removeParcel() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment