我正在尝试在我的 phonegap 应用程序中通过 javascript Azure Map 创建地图,但它给出了以下错误:
atlas.min.js?api-version=1.0:362 Uncaught (in promise) Error: Invalid LngLat latitude value: must be between -90 and 90
我的代码:
var map = new atlas.Map("task-map-view", {
"subscription-key": MapsAccountKey,
center: [39.749434, -104.930420],
zoom: 8
});
有什么建议么?