Has anyone embedded a web map in an email?

436
0
08-02-2017 03:03 PM
DaneHopkins
New Contributor II

Has anyone embedded a web map in an email using HTML? I've been able to do it multiple ways with a web page, but unable to embed the map in an email. I'm looking to send an email containing an embedded map at the end of the day to field techs who are completing digital as-builts. Below are 2 simple examples I've tried, but no luck.

Example HTML:

<html>
<head></head>
<body>
<embed width="500" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"
title="Web Map" src="https://webadapter/portal/apps/webappviewer/index.html?id=appID&extent=-106.28759,42.8526,-106.28504...">

</body>
</html>

Another example:

<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>As-Built Approval Map</title>
<link href="https://esri.github.io/calcite-bootstrap/assets/css/calcite-bootstrap-open.min.css" rel="stylesheet">
</head>

<body>
<div class="container">
<div class="embed-container">
<iframe width="500" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" title="Operations Web Map"
src="https://webadapter/portal/apps/webappviewer/index.html?id=appID&extent=-106.28759,42.8526,-106.28504...">
</iframe>
</div>
</div>

</body>

</html>

Tags (3)
0 Kudos
0 Replies