テレコムGIS 5分間シリーズの別のエピソードへようこそ。今週は、ArcGIS Instant appを使ってブロードバンドの利用可能性を伝える方法についてさらに深掘りします。
サービスエリアレイヤーを管理するために使用されるArcGIS Solution - https://doc.arcgis.com/en/arcgis-solutions/latest/reference/introduction-to-communications-data-management.htm
サービスが利用可能な場合に画像を表示するためのArcade Expression -
var imageUrl = '';
if ($feature.Internet == 'Yes') {
imageUrl = 'https://telecomrc.maps.arcgis.com/sharing/rest/content/items/3ab7d2bc3e8d42c7b6e9f1f877acd87c/data';
}
return imageUrl;
ポップアップのテキストセクション用HTML -
<figure>
<figure class="table" style="float:none;">
<table>
<tbody>
<tr style="display:{expression/expr0};">
<td style="background-color:#323232;border:1px solid white;padding:5px;width:400px;">
<p style="text-align:center;">
<span style="color:#d5dcdc;">Service Connection</span>
</p>
<p style="text-align:center;">
<span style="color:#FFAA00;font-size:18px;"><strong>{techcode} </strong></span>
</p>
</td>
</tr>
<tr style="display:{expression/expr1};">
<td style="background-color:#323232;border:1px solid white;padding:5px;width:400px;">
<p style="text-align:center;">
<span style="color:#d5dcdc;">Max Internet Speeds</span>
</p>
<p style="text-align:center;">
<span style="color:#FFAA00;font-size:18px;"><strong>{maxaddn} mbps</strong></span>
</p>
</td>
</tr>
<tr>
<td style="background-color:#323232;border:1px solid white;padding:10px;width:400px;">
<p style="text-align:center;">
<a rel="nofollow ugc" href="https://web.bd.esri.com/utilities/telco/Apps/HomePage/index.html"><img src="{expression/expr0}" alt="" width="50"></a> <a rel="nofollow ugc" href="https://web.bd.esri.com/utilities/telco/Apps/HomePage/index.html"><img src="{expression/expr1}" alt="" width="50"></a> <a rel="nofollow ugc" href="https://web.bd.esri.com/utilities/telco/Apps/HomePage/index.html"><img src="{expression/expr2}" alt="" width="50"></a> <a rel="nofollow ugc" href="https://web.bd.esri.com/utilities/telco/Apps/HomePage/index.html"><img src="{expression/expr3}" alt="" width="50"></a> <a rel="nofollow ugc" href="https://web.bd.esri.com/utilities/telco/Apps/HomePage/index.html"><img src="{expression/expr4}" alt="" width="50"></a>
</p>
</td>
</tr>
</tbody>
</table>
</figure>
</figure>
サービス検索に使用されるArcGIS Instant App - https://www.arcgis.com/home/item.html?id=8f483bc1de854f7783495ffe96ef1ea8
***Solution Templateの公開およびArcGIS Instant appの設定にはCreator Level User Typeライセンスが必要です。
それでは次回まで、失礼します。
Patrick Huls