Maximo 地图识别工具:添加超链接?

Maximo map identify tool: Add a hyperlink?

Maximo 7.6.1.1/Spatial 7.6.0.5

我在 Maximo Spatial 的 GIS 图层中有 URL 个:

有没有办法将 URL 显示为超链接,以便用户可以在浏览器的新 tab/window 中打开它?

(或在服务器端调用 URL REST 请求——任何适用。)

关键字:Maximo Spatial

解决方案是在 URL 中使用 HTML。

  • 网页在 Google Chrome 中的新选项卡中打开(很好)。

<a href='http://maps.google.com/maps?q=&layer=c&cbll=43.000000,-78.000000'> Link </a>


这后面的SQL是:

'<a href=''http://maps.google.com/maps?q=' ||chr(38)|| 'layer=c' ||chr(38)|| 
    'cbll=43.000000,-78.000000''> Link </a>' as description,

Hint:

In Toad, the ampersand was being interpreted as a variable. I had to escape/replace the ampersand with ||chr(38)|| .

More info here: Escaping ampersand character in SQL string