0
JS與Yandex的地圖定義文件:引用錯誤Ymaps沒有定義
public class Ymap {
public static final native Object getMap() /*-{
var myMap;
function init() {
// Creating an instance of the map and binding it to the container with the specified ID
// ("map").
myMap = new ymaps.Map('map', {
center : [ 55.010251, 82.958437 ], // Новосибирск
zoom : 9
}, {
searchControlProvider : 'yandex#search'
});
}
YMaps.load(init);
return myMap;
}-*/;
}
然後我把這個js在另一個文件中的代碼放置在地圖佈局SmartGWT的。
Canvas canvas = new Canvas();
canvas.addChild((Canvas)Ymap.getMap());
layoutRight.addMember(canvas);
但在瀏覽器中我收到引用錯誤:Ymaps沒有定義