Looking to create a unique shaped div that will house a Google Maps map. I have the custom border covered with a .png, but creating the actual shape is where I'm stuck. I believe using HTML canvas may be the solution, along with CSS overflow:hidden
to keep everything contained within the div.
At the moment, my structure looks like this:
<html>
<body>
<div class="Orange_Background"></div>
<div class="FX_Lines_over_background"></div>
<div class="GoogleMaps_Container"></div>
</body>
</html>
Unfortunately, using a background .png won't work as I need the map to remain clickable. Here's an image to further illustrate my point.
PS: Open to solutions involving jQuery as well.