我正在尝试在地图信息窗口中显示图像和文本。我正在使用Map Quest。我想在地图信息窗口中显示图像和文本。我在动作脚本中使用Map Quest。
var stringContent:String = new String();
stringContent += "Map Info Window";
stringContent += "Display Image";
stringContent += "<img src='app-storage:/img123.jpg'/>";
poi.infoContent = (stringContent);
我尝试使用HTML标记显示图像。但是这不会在地图信息窗口中显示图像。图像保存在应用程序存储目录中。
http://developer.mapquest.com/content/as/v/mq/samples/samplesexplorer/index.html#samplegroup=PoisAndInfoWindows&sample=PoiWithHTMLInfoWindow
我引用了上面的链接在地图信息窗口中显示图像。