gpt4 book ai didi

Java + Google map API + GWT + 地理编码尝试 : Getting this exception at run time- compiling fine

转载 作者:行者123 更新时间:2023-12-01 15:18:34 27 4
gpt4 key购买 nike

我有一个使用 Google map 的 GWT 应用程序,我正在尝试创建一个使用 Googele 的 geocoder 的方法。获取地址 LatLng 的类。

这是我的代码:

Geocoder gc = new Geocoder();
gc.getLatLng(this.testAddress, new LatLngCallback()
{
public void onFailure()
{
System.out.println("ERROR: Could not obtain the Coordinates for address" + testAddress);
}
public void onSuccess(LatLng point)
{
System.out.println("For Address= "+testAddress +"are Latitude: "+point.getLatitude() + "Longitude: "+ point.getLongitude());
}

});

它编译得很好,但在运行时抛出此异常:

06:25:09.359 [ERROR] [foodvendor] Unable to load module entry point class cs310.client.Main (see associated exception for details)

com.google.gwt.core.client.JavaScriptException: (TypeError): undefined is not a function
at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:248)
at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:136)
at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:561)
at com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:269)
at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:91)
at com.google.gwt.maps.client.impl.__GeocoderImplImpl.construct(__GeocoderImplImpl.java)
at com.google.gwt.maps.client.geocode.Geocoder.<init>(Geocoder.java:41)
at cs310.client.AshTestClass.<init>(AshTestClass.java:25)
at cs310.client.Main.onModuleLoad(Main.java:37)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.google.gwt.dev.shell.ModuleSpace.onLoad(ModuleSpace.java:396)
at com.google.gwt.dev.shell.OophmSessionHandler.loadModule(OophmSessionHandler.java:200)
at com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:525)
at com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:363)
at java.lang.Thread.run(Thread.java:680)

我不确定这个异常是什么意思,有人可以帮助我理解吗?谢谢

最佳答案

您可能需要先使用 Maps.loadMapsApi(...) 加载 Maps JS API,然后您的 GWT 代码才能访问地理编码方法。

关于Java + Google map API + GWT + 地理编码尝试 : Getting this exception at run time- compiling fine,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11294787/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com