Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 JSNI 从 GWT 中的地图中获取地图类型。我想打电话map.getCurrentMapType().getName(),但我不知道如何从 div 获取地图对象#map_canvas。
map.getCurrentMapType().getName()
#map_canvas
任何帮助,将不胜感激
让我们假设您要访问的分区(地图对象)在 DOM 中,并且有一个 id(map_canvas),您可以如下访问:
Document.get().getElementById("map_canvas")
来自java,或
$doc.getElementById("map_canvas")
来自 javascript :)