Is it possible to use <iframe src="www.google.com"></iframe> to show webpage images in an arcgis online popup?
Brandon
Solved! Go to Solution.
Hi Robert,
This is what I have:
<div style="position:absolute; left:11.5px; top:242px; z-Index:999;">
<div data-dojo-type="dijit/TitlePane"
data-dojo-props="title:' ', open:false">
<div data-dojo-type="dijit/layout/ContentPane" style="width:380px; height:280px; overflow:auto;">
<iframe width="600" height="490" src="https://egis3.lacounty.gov/dataportal/2013/11/07/los-angeles-county-sanitary-sewers)" style="margin-left: -268px; margin-top: -326px;"></iframe>
</div>
</div>
</div>
I would like to replace the sprite arrows in the title pane with this:
<i class="fa fa-download" aria-hidden="true"></i>
Is this easy to do?
Brandon
Brandon,
What you need to focus on is this. is your app using the https://egis3.lacounty.gov/ url? if so then you can have an iFrame that uses https://egis3.lacounty.gov/
We seem to have left the original question about using an iFrame in a popup and now are talking about a contentPane but that does not change any of the X-Frame-Options issues.
Hi Robert,
I was able to get this to show:
All with html:
<div id="stormwaterdownload">
<div style="position:absolute; left:10px; top:242px; z-Index:999;">
<div data-dojo-type="dijit/TitlePane"
data-dojo-props='open:false'>
<div data-dojo-type="dijit/layout/ContentPane" style="width:640px; height:284px; overflow:auto; font-size: 11px;">
<iframe width="870" height="500" frameBorder="0" scrolling="no" src="https://egis3.lacounty.gov/dataportal/2013/08/08/los-angeles-county-storm-drain-system)" style="margin-left: -270px; margin-top: -310px;"></iframe>
<p>______________________________________________________________________________________________________________________________<p> <p>Click <b>"File geodatabase"</b> to download all LA County DPW Storm Drain layers (feature classes) in a zipped folder</p>
<p>Visit the LA County GIS Data Portal Storm Drainage Page for more information at:</p> <p></p><a target="_blank" href="https://egis3.lacounty.gov/dataportal/2013/08/08/los-angeles-county-storm-drain-system/" style="color: blue">https://egis3.lacounty.gov/dataportal/2013/08/08/los-angeles-county-storm-drain-system/</a></p>
</div>
</div>
Brandon
(Better image)