Javascriptを使用して、ローカル ドライブから画像を取得して表示するにはどうすればよいでしょうか。
サンプル画像のパスは次のとおりです。
file:///E://DCRMS_ATTACHED_FILES/sensor_images/Sunset.jpg
JS コード:
var h = "<table border='0' cellpadding='1' cellspacing='4' style='font-size:.8em;'>",p=feature.attributes;
if(feature.attributes.image_name)
{
alert(feature.attributes.image_name);//here i'm getting complete path to display img
h +="<tr><th style='font-weight:bold;'><img src="+feature.attributes.image_name+" width='100%' height='100%'></img><td></td></th></tr>";
h +="</table>";
}