jxmaps 在显示地图时出错
jxmaps giving error while showing map
我在使用 Jxmaps 的 Java swing 应用程序上显示 Google 地图时遇到错误。
它告诉我
"Oops! Something went wrong. This page didn't load Google Maps correctly. See the JavaScript console for technical details."
我的地图组件上的消息。
有人帮我吗?
此错误可能是由于 API KEY 丢失或不正确造成的。 Google 地图在没有 API KEY 的情况下每天允许有限数量的请求。
你在JxMaps里设置了吗?您可以使用以下代码来完成:
MapViewOptions options = new MapViewOptions();
options.setApiKey("<YOUR_API_KEY>");
MapView view = new MapView(options);
有关 Google 地图 API 键的更多详细信息,您可以在此处找到:https://developers.google.com/maps/pricing-and-plans/
我在使用 Jxmaps 的 Java swing 应用程序上显示 Google 地图时遇到错误。
它告诉我 "Oops! Something went wrong. This page didn't load Google Maps correctly. See the JavaScript console for technical details."
我的地图组件上的消息。
有人帮我吗?
此错误可能是由于 API KEY 丢失或不正确造成的。 Google 地图在没有 API KEY 的情况下每天允许有限数量的请求。
你在JxMaps里设置了吗?您可以使用以下代码来完成:
MapViewOptions options = new MapViewOptions();
options.setApiKey("<YOUR_API_KEY>");
MapView view = new MapView(options);
有关 Google 地图 API 键的更多详细信息,您可以在此处找到:https://developers.google.com/maps/pricing-and-plans/